You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@trafficcontrol.apache.org by oc...@apache.org on 2023/02/22 22:24:21 UTC

[trafficcontrol-trafficops-types] branch master updated (c8ed497 -> 8c4185e)

This is an automated email from the ASF dual-hosted git repository.

ocket8888 pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/trafficcontrol-trafficops-types.git


    from c8ed497  Merge pull request #2 from zrhoffman/ttlOverride
     new 1a83a65  Fix missing optional ISO gen request properties
     new 8c4185e  Version bump

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 package-lock.json | 4 ++--
 package.json      | 2 +-
 src/iso.ts        | 4 ++++
 3 files changed, 7 insertions(+), 3 deletions(-)


[trafficcontrol-trafficops-types] 01/02: Fix missing optional ISO gen request properties

Posted by oc...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

ocket8888 pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/trafficcontrol-trafficops-types.git

commit 1a83a65fcd822c90acd8bc1bd76d0445849c60db
Author: ocket8888 <oc...@apache.org>
AuthorDate: Wed Feb 22 15:20:26 2023 -0700

    Fix missing optional ISO gen request properties
---
 src/iso.ts | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/src/iso.ts b/src/iso.ts
index f21e003..98b7721 100644
--- a/src/iso.ts
+++ b/src/iso.ts
@@ -25,6 +25,10 @@ interface ISOFields {
 	interfaceName?: string | null;
 	ip6Address?: string | null;
 	ip6Gateway?: string | null;
+	mgmtInterface?: string | null;
+	mgmtIpAddress?: string | null;
+	mgmtIpGateway?: string | null;
+	mgmtIpNetmask?: string | null;
 	osVersionDir: string;
 	rootPass: string;
 }


[trafficcontrol-trafficops-types] 02/02: Version bump

Posted by oc...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

ocket8888 pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/trafficcontrol-trafficops-types.git

commit 8c4185e21c0bdc55a7bf53b4b5b946e7d8837055
Author: ocket8888 <oc...@apache.org>
AuthorDate: Wed Feb 22 15:22:04 2023 -0700

    Version bump
---
 package-lock.json | 4 ++--
 package.json      | 2 +-
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/package-lock.json b/package-lock.json
index 25abd6b..96073f8 100644
--- a/package-lock.json
+++ b/package-lock.json
@@ -1,12 +1,12 @@
 {
 	"name": "trafficops-types",
-	"version": "4.0.6",
+	"version": "4.0.7",
 	"lockfileVersion": 2,
 	"requires": true,
 	"packages": {
 		"": {
 			"name": "trafficops-types",
-			"version": "4.0.6",
+			"version": "4.0.7",
 			"license": "Apache-2.0",
 			"devDependencies": {
 				"@typescript-eslint/eslint-plugin": "^5.0.0",
diff --git a/package.json b/package.json
index b186a6f..6c3c3f6 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
 {
 	"name": "trafficops-types",
-	"version": "4.0.6",
+	"version": "4.0.7",
 	"description": "A library for dealing with Apache Traffic Control objects",
 	"main": "dist/index.js",
 	"scripts": {