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 028ce1bf663d500731ab8a417b07b7d589972247 Author: ocket8888 <[email protected]> AuthorDate: Mon Sep 19 08:04:08 2022 -0600 Fix incorrectly optional SSL key generation request properties --- package-lock.json | 4 ++-- package.json | 2 +- src/ssl.ts | 11 +++++------ 3 files changed, 8 insertions(+), 9 deletions(-) diff --git a/package-lock.json b/package-lock.json index 1e3a9a3..702c600 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "trafficops-types", - "version": "3.1.0-beta-18", + "version": "3.1.0-beta-19", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "trafficops-types", - "version": "3.1.0-beta-18", + "version": "3.1.0-beta-19", "license": "GPL-3.0-or-later", "devDependencies": { "@typescript-eslint/eslint-plugin": "^5.0.0", diff --git a/package.json b/package.json index 3336bad..68afd6f 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "trafficops-types", - "version": "3.1.0-beta-18", + "version": "3.1.0-beta-19", "description": "A library for dealing with Apache Traffic Control objects", "main": "dist/index.js", "scripts": { diff --git a/src/ssl.ts b/src/ssl.ts index 1fd2fe0..d723e08 100644 --- a/src/ssl.ts +++ b/src/ssl.ts @@ -56,19 +56,18 @@ export interface DeliveryServiceSSLKeyUpload { * for a Delivery Service. */ export interface DeliveryServiceSSLKeyGenerationRequest { - businessUnit?: string | null; + businessUnit: string; cdn: string; - city?: string | null; - country?: string | null; - deliveryservice: string; + city: string; + country: string; hostname: string; /** * The XMLID of the Delivery Service for which an SSL Key/Certificate pair * will be generated. */ key: string; - organization?: string | null; - state?: string | null; + organization: string; + state: string; version: string; }
