yellowgrid-api-ts 3.2.7-dev.0 → 3.2.9-dev.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/api.ts CHANGED
@@ -2420,7 +2420,7 @@ export interface NumberPortDTO {
2420
2420
  /**
2421
2421
  * Starter Bundle ID
2422
2422
  */
2423
- 'tenantId'?: number | null;
2423
+ 'tenantId'?: string | null;
2424
2424
  /**
2425
2425
  * Requested Port Date
2426
2426
  */
@@ -12866,7 +12866,7 @@ export const NumberPortingApiAxiosParamCreator = function (configuration?: Confi
12866
12866
  * @param {string | null} [city] City
12867
12867
  * @param {string | null} [postCode] Post Code
12868
12868
  * @param {number | null} [trunkId] Trunk ID
12869
- * @param {number | null} [tenantId] Starter Bundle ID
12869
+ * @param {string | null} [tenantId] Starter Bundle ID
12870
12870
  * @param {string | null} [requestedPortDate] Requested Port Date
12871
12871
  * @param {boolean | null} [asap] Port Date ASAP
12872
12872
  * @param {string | null} [comment] Comment
@@ -12875,7 +12875,7 @@ export const NumberPortingApiAxiosParamCreator = function (configuration?: Confi
12875
12875
  * @param {*} [options] Override http request option.
12876
12876
  * @throws {RequiredError}
12877
12877
  */
12878
- postCreateNumberPort: async (companyName?: string | null, addressLine1?: string | null, addressLine2?: string | null, city?: string | null, postCode?: string | null, trunkId?: number | null, tenantId?: number | null, requestedPortDate?: string | null, asap?: boolean | null, comment?: string | null, numberRanges?: Array<NumberPortRangeRequestDTO>, cloa?: File, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
12878
+ postCreateNumberPort: async (companyName?: string | null, addressLine1?: string | null, addressLine2?: string | null, city?: string | null, postCode?: string | null, trunkId?: number | null, tenantId?: string | null, requestedPortDate?: string | null, asap?: boolean | null, comment?: string | null, numberRanges?: Array<NumberPortRangeRequestDTO>, cloa?: File, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
12879
12879
  const localVarPath = `/sip/numbers/ports`;
12880
12880
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
12881
12881
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
@@ -12960,7 +12960,7 @@ export const NumberPortingApiAxiosParamCreator = function (configuration?: Confi
12960
12960
  * @param {string | null} [city] City
12961
12961
  * @param {string | null} [postCode] Post Code
12962
12962
  * @param {number | null} [trunkId] Trunk ID
12963
- * @param {number | null} [tenantId] Starter Bundle ID
12963
+ * @param {string | null} [tenantId] Starter Bundle ID
12964
12964
  * @param {string | null} [requestedPortDate] Requested Port Date
12965
12965
  * @param {boolean | null} [asap] Port Date ASAP
12966
12966
  * @param {string | null} [comment] Comment
@@ -12969,7 +12969,7 @@ export const NumberPortingApiAxiosParamCreator = function (configuration?: Confi
12969
12969
  * @param {*} [options] Override http request option.
12970
12970
  * @throws {RequiredError}
12971
12971
  */
12972
- postSubmitNumberPort: async (id: number, companyName?: string | null, addressLine1?: string | null, addressLine2?: string | null, city?: string | null, postCode?: string | null, trunkId?: number | null, tenantId?: number | null, requestedPortDate?: string | null, asap?: boolean | null, comment?: string | null, numberRanges?: Array<NumberPortRangeRequestDTO>, cloa?: File, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
12972
+ postSubmitNumberPort: async (id: number, companyName?: string | null, addressLine1?: string | null, addressLine2?: string | null, city?: string | null, postCode?: string | null, trunkId?: number | null, tenantId?: string | null, requestedPortDate?: string | null, asap?: boolean | null, comment?: string | null, numberRanges?: Array<NumberPortRangeRequestDTO>, cloa?: File, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
12973
12973
  // verify required parameter 'id' is not null or undefined
12974
12974
  assertParamExists('postSubmitNumberPort', 'id', id)
12975
12975
  const localVarPath = `/sip/numbers/ports/{id}/submit`
@@ -13057,7 +13057,7 @@ export const NumberPortingApiAxiosParamCreator = function (configuration?: Confi
13057
13057
  * @param {string | null} [city] City
13058
13058
  * @param {string | null} [postCode] Post Code
13059
13059
  * @param {number | null} [trunkId] Trunk ID
13060
- * @param {number | null} [tenantId] Starter Bundle ID
13060
+ * @param {string | null} [tenantId] Starter Bundle ID
13061
13061
  * @param {string | null} [requestedPortDate] Requested Port Date
13062
13062
  * @param {boolean | null} [asap] Port Date ASAP
13063
13063
  * @param {string | null} [comment] Comment
@@ -13066,7 +13066,7 @@ export const NumberPortingApiAxiosParamCreator = function (configuration?: Confi
13066
13066
  * @param {*} [options] Override http request option.
13067
13067
  * @throws {RequiredError}
13068
13068
  */
13069
- postUpdateNumberPort: async (id: number, companyName?: string | null, addressLine1?: string | null, addressLine2?: string | null, city?: string | null, postCode?: string | null, trunkId?: number | null, tenantId?: number | null, requestedPortDate?: string | null, asap?: boolean | null, comment?: string | null, numberRanges?: Array<NumberPortRangeRequestDTO>, cloa?: File, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
13069
+ postUpdateNumberPort: async (id: number, companyName?: string | null, addressLine1?: string | null, addressLine2?: string | null, city?: string | null, postCode?: string | null, trunkId?: number | null, tenantId?: string | null, requestedPortDate?: string | null, asap?: boolean | null, comment?: string | null, numberRanges?: Array<NumberPortRangeRequestDTO>, cloa?: File, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
13070
13070
  // verify required parameter 'id' is not null or undefined
13071
13071
  assertParamExists('postUpdateNumberPort', 'id', id)
13072
13072
  const localVarPath = `/sip/numbers/ports/{id}`
@@ -13154,7 +13154,7 @@ export const NumberPortingApiAxiosParamCreator = function (configuration?: Confi
13154
13154
  * @param {string | null} [city] City
13155
13155
  * @param {string | null} [postCode] Post Code
13156
13156
  * @param {number | null} [trunkId] Trunk ID
13157
- * @param {number | null} [tenantId] Starter Bundle ID
13157
+ * @param {string | null} [tenantId] Starter Bundle ID
13158
13158
  * @param {string | null} [requestedPortDate] Requested Port Date
13159
13159
  * @param {boolean | null} [asap] Port Date ASAP
13160
13160
  * @param {string | null} [comment] Comment
@@ -13167,7 +13167,7 @@ export const NumberPortingApiAxiosParamCreator = function (configuration?: Confi
13167
13167
  * @param {*} [options] Override http request option.
13168
13168
  * @throws {RequiredError}
13169
13169
  */
13170
- putGetAdminNumberPort: async (id: number, companyName?: string | null, addressLine1?: string | null, addressLine2?: string | null, city?: string | null, postCode?: string | null, trunkId?: number | null, tenantId?: number | null, requestedPortDate?: string | null, asap?: boolean | null, comment?: string | null, id2?: number, customerName?: string, portDate?: string, numberRanges?: Array<NumberPortRangeDTO>, status?: number, ticketId?: number | null, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
13170
+ putGetAdminNumberPort: async (id: number, companyName?: string | null, addressLine1?: string | null, addressLine2?: string | null, city?: string | null, postCode?: string | null, trunkId?: number | null, tenantId?: string | null, requestedPortDate?: string | null, asap?: boolean | null, comment?: string | null, id2?: number, customerName?: string, portDate?: string, numberRanges?: Array<NumberPortRangeDTO>, status?: number, ticketId?: number | null, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
13171
13171
  // verify required parameter 'id' is not null or undefined
13172
13172
  assertParamExists('putGetAdminNumberPort', 'id', id)
13173
13173
  const localVarPath = `/admin/sip/numbers/ports/{id}`
@@ -13343,7 +13343,7 @@ export const NumberPortingApiFp = function(configuration?: Configuration) {
13343
13343
  * @param {string | null} [city] City
13344
13344
  * @param {string | null} [postCode] Post Code
13345
13345
  * @param {number | null} [trunkId] Trunk ID
13346
- * @param {number | null} [tenantId] Starter Bundle ID
13346
+ * @param {string | null} [tenantId] Starter Bundle ID
13347
13347
  * @param {string | null} [requestedPortDate] Requested Port Date
13348
13348
  * @param {boolean | null} [asap] Port Date ASAP
13349
13349
  * @param {string | null} [comment] Comment
@@ -13352,7 +13352,7 @@ export const NumberPortingApiFp = function(configuration?: Configuration) {
13352
13352
  * @param {*} [options] Override http request option.
13353
13353
  * @throws {RequiredError}
13354
13354
  */
13355
- async postCreateNumberPort(companyName?: string | null, addressLine1?: string | null, addressLine2?: string | null, city?: string | null, postCode?: string | null, trunkId?: number | null, tenantId?: number | null, requestedPortDate?: string | null, asap?: boolean | null, comment?: string | null, numberRanges?: Array<NumberPortRangeRequestDTO>, cloa?: File, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<NumberPortDTO>> {
13355
+ async postCreateNumberPort(companyName?: string | null, addressLine1?: string | null, addressLine2?: string | null, city?: string | null, postCode?: string | null, trunkId?: number | null, tenantId?: string | null, requestedPortDate?: string | null, asap?: boolean | null, comment?: string | null, numberRanges?: Array<NumberPortRangeRequestDTO>, cloa?: File, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<NumberPortDTO>> {
13356
13356
  const localVarAxiosArgs = await localVarAxiosParamCreator.postCreateNumberPort(companyName, addressLine1, addressLine2, city, postCode, trunkId, tenantId, requestedPortDate, asap, comment, numberRanges, cloa, options);
13357
13357
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
13358
13358
  const localVarOperationServerBasePath = operationServerMap['NumberPortingApi.postCreateNumberPort']?.[localVarOperationServerIndex]?.url;
@@ -13367,7 +13367,7 @@ export const NumberPortingApiFp = function(configuration?: Configuration) {
13367
13367
  * @param {string | null} [city] City
13368
13368
  * @param {string | null} [postCode] Post Code
13369
13369
  * @param {number | null} [trunkId] Trunk ID
13370
- * @param {number | null} [tenantId] Starter Bundle ID
13370
+ * @param {string | null} [tenantId] Starter Bundle ID
13371
13371
  * @param {string | null} [requestedPortDate] Requested Port Date
13372
13372
  * @param {boolean | null} [asap] Port Date ASAP
13373
13373
  * @param {string | null} [comment] Comment
@@ -13376,7 +13376,7 @@ export const NumberPortingApiFp = function(configuration?: Configuration) {
13376
13376
  * @param {*} [options] Override http request option.
13377
13377
  * @throws {RequiredError}
13378
13378
  */
13379
- async postSubmitNumberPort(id: number, companyName?: string | null, addressLine1?: string | null, addressLine2?: string | null, city?: string | null, postCode?: string | null, trunkId?: number | null, tenantId?: number | null, requestedPortDate?: string | null, asap?: boolean | null, comment?: string | null, numberRanges?: Array<NumberPortRangeRequestDTO>, cloa?: File, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<NumberPortDTO>> {
13379
+ async postSubmitNumberPort(id: number, companyName?: string | null, addressLine1?: string | null, addressLine2?: string | null, city?: string | null, postCode?: string | null, trunkId?: number | null, tenantId?: string | null, requestedPortDate?: string | null, asap?: boolean | null, comment?: string | null, numberRanges?: Array<NumberPortRangeRequestDTO>, cloa?: File, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<NumberPortDTO>> {
13380
13380
  const localVarAxiosArgs = await localVarAxiosParamCreator.postSubmitNumberPort(id, companyName, addressLine1, addressLine2, city, postCode, trunkId, tenantId, requestedPortDate, asap, comment, numberRanges, cloa, options);
13381
13381
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
13382
13382
  const localVarOperationServerBasePath = operationServerMap['NumberPortingApi.postSubmitNumberPort']?.[localVarOperationServerIndex]?.url;
@@ -13391,7 +13391,7 @@ export const NumberPortingApiFp = function(configuration?: Configuration) {
13391
13391
  * @param {string | null} [city] City
13392
13392
  * @param {string | null} [postCode] Post Code
13393
13393
  * @param {number | null} [trunkId] Trunk ID
13394
- * @param {number | null} [tenantId] Starter Bundle ID
13394
+ * @param {string | null} [tenantId] Starter Bundle ID
13395
13395
  * @param {string | null} [requestedPortDate] Requested Port Date
13396
13396
  * @param {boolean | null} [asap] Port Date ASAP
13397
13397
  * @param {string | null} [comment] Comment
@@ -13400,7 +13400,7 @@ export const NumberPortingApiFp = function(configuration?: Configuration) {
13400
13400
  * @param {*} [options] Override http request option.
13401
13401
  * @throws {RequiredError}
13402
13402
  */
13403
- async postUpdateNumberPort(id: number, companyName?: string | null, addressLine1?: string | null, addressLine2?: string | null, city?: string | null, postCode?: string | null, trunkId?: number | null, tenantId?: number | null, requestedPortDate?: string | null, asap?: boolean | null, comment?: string | null, numberRanges?: Array<NumberPortRangeRequestDTO>, cloa?: File, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<NumberPortDTO>> {
13403
+ async postUpdateNumberPort(id: number, companyName?: string | null, addressLine1?: string | null, addressLine2?: string | null, city?: string | null, postCode?: string | null, trunkId?: number | null, tenantId?: string | null, requestedPortDate?: string | null, asap?: boolean | null, comment?: string | null, numberRanges?: Array<NumberPortRangeRequestDTO>, cloa?: File, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<NumberPortDTO>> {
13404
13404
  const localVarAxiosArgs = await localVarAxiosParamCreator.postUpdateNumberPort(id, companyName, addressLine1, addressLine2, city, postCode, trunkId, tenantId, requestedPortDate, asap, comment, numberRanges, cloa, options);
13405
13405
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
13406
13406
  const localVarOperationServerBasePath = operationServerMap['NumberPortingApi.postUpdateNumberPort']?.[localVarOperationServerIndex]?.url;
@@ -13415,7 +13415,7 @@ export const NumberPortingApiFp = function(configuration?: Configuration) {
13415
13415
  * @param {string | null} [city] City
13416
13416
  * @param {string | null} [postCode] Post Code
13417
13417
  * @param {number | null} [trunkId] Trunk ID
13418
- * @param {number | null} [tenantId] Starter Bundle ID
13418
+ * @param {string | null} [tenantId] Starter Bundle ID
13419
13419
  * @param {string | null} [requestedPortDate] Requested Port Date
13420
13420
  * @param {boolean | null} [asap] Port Date ASAP
13421
13421
  * @param {string | null} [comment] Comment
@@ -13428,7 +13428,7 @@ export const NumberPortingApiFp = function(configuration?: Configuration) {
13428
13428
  * @param {*} [options] Override http request option.
13429
13429
  * @throws {RequiredError}
13430
13430
  */
13431
- async putGetAdminNumberPort(id: number, companyName?: string | null, addressLine1?: string | null, addressLine2?: string | null, city?: string | null, postCode?: string | null, trunkId?: number | null, tenantId?: number | null, requestedPortDate?: string | null, asap?: boolean | null, comment?: string | null, id2?: number, customerName?: string, portDate?: string, numberRanges?: Array<NumberPortRangeDTO>, status?: number, ticketId?: number | null, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<NumberPortDTO>> {
13431
+ async putGetAdminNumberPort(id: number, companyName?: string | null, addressLine1?: string | null, addressLine2?: string | null, city?: string | null, postCode?: string | null, trunkId?: number | null, tenantId?: string | null, requestedPortDate?: string | null, asap?: boolean | null, comment?: string | null, id2?: number, customerName?: string, portDate?: string, numberRanges?: Array<NumberPortRangeDTO>, status?: number, ticketId?: number | null, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<NumberPortDTO>> {
13432
13432
  const localVarAxiosArgs = await localVarAxiosParamCreator.putGetAdminNumberPort(id, companyName, addressLine1, addressLine2, city, postCode, trunkId, tenantId, requestedPortDate, asap, comment, id2, customerName, portDate, numberRanges, status, ticketId, options);
13433
13433
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
13434
13434
  const localVarOperationServerBasePath = operationServerMap['NumberPortingApi.putGetAdminNumberPort']?.[localVarOperationServerIndex]?.url;
@@ -13500,7 +13500,7 @@ export const NumberPortingApiFactory = function (configuration?: Configuration,
13500
13500
  * @param {string | null} [city] City
13501
13501
  * @param {string | null} [postCode] Post Code
13502
13502
  * @param {number | null} [trunkId] Trunk ID
13503
- * @param {number | null} [tenantId] Starter Bundle ID
13503
+ * @param {string | null} [tenantId] Starter Bundle ID
13504
13504
  * @param {string | null} [requestedPortDate] Requested Port Date
13505
13505
  * @param {boolean | null} [asap] Port Date ASAP
13506
13506
  * @param {string | null} [comment] Comment
@@ -13509,7 +13509,7 @@ export const NumberPortingApiFactory = function (configuration?: Configuration,
13509
13509
  * @param {*} [options] Override http request option.
13510
13510
  * @throws {RequiredError}
13511
13511
  */
13512
- postCreateNumberPort(companyName?: string | null, addressLine1?: string | null, addressLine2?: string | null, city?: string | null, postCode?: string | null, trunkId?: number | null, tenantId?: number | null, requestedPortDate?: string | null, asap?: boolean | null, comment?: string | null, numberRanges?: Array<NumberPortRangeRequestDTO>, cloa?: File, options?: RawAxiosRequestConfig): AxiosPromise<NumberPortDTO> {
13512
+ postCreateNumberPort(companyName?: string | null, addressLine1?: string | null, addressLine2?: string | null, city?: string | null, postCode?: string | null, trunkId?: number | null, tenantId?: string | null, requestedPortDate?: string | null, asap?: boolean | null, comment?: string | null, numberRanges?: Array<NumberPortRangeRequestDTO>, cloa?: File, options?: RawAxiosRequestConfig): AxiosPromise<NumberPortDTO> {
13513
13513
  return localVarFp.postCreateNumberPort(companyName, addressLine1, addressLine2, city, postCode, trunkId, tenantId, requestedPortDate, asap, comment, numberRanges, cloa, options).then((request) => request(axios, basePath));
13514
13514
  },
13515
13515
  /**
@@ -13521,7 +13521,7 @@ export const NumberPortingApiFactory = function (configuration?: Configuration,
13521
13521
  * @param {string | null} [city] City
13522
13522
  * @param {string | null} [postCode] Post Code
13523
13523
  * @param {number | null} [trunkId] Trunk ID
13524
- * @param {number | null} [tenantId] Starter Bundle ID
13524
+ * @param {string | null} [tenantId] Starter Bundle ID
13525
13525
  * @param {string | null} [requestedPortDate] Requested Port Date
13526
13526
  * @param {boolean | null} [asap] Port Date ASAP
13527
13527
  * @param {string | null} [comment] Comment
@@ -13530,7 +13530,7 @@ export const NumberPortingApiFactory = function (configuration?: Configuration,
13530
13530
  * @param {*} [options] Override http request option.
13531
13531
  * @throws {RequiredError}
13532
13532
  */
13533
- postSubmitNumberPort(id: number, companyName?: string | null, addressLine1?: string | null, addressLine2?: string | null, city?: string | null, postCode?: string | null, trunkId?: number | null, tenantId?: number | null, requestedPortDate?: string | null, asap?: boolean | null, comment?: string | null, numberRanges?: Array<NumberPortRangeRequestDTO>, cloa?: File, options?: RawAxiosRequestConfig): AxiosPromise<NumberPortDTO> {
13533
+ postSubmitNumberPort(id: number, companyName?: string | null, addressLine1?: string | null, addressLine2?: string | null, city?: string | null, postCode?: string | null, trunkId?: number | null, tenantId?: string | null, requestedPortDate?: string | null, asap?: boolean | null, comment?: string | null, numberRanges?: Array<NumberPortRangeRequestDTO>, cloa?: File, options?: RawAxiosRequestConfig): AxiosPromise<NumberPortDTO> {
13534
13534
  return localVarFp.postSubmitNumberPort(id, companyName, addressLine1, addressLine2, city, postCode, trunkId, tenantId, requestedPortDate, asap, comment, numberRanges, cloa, options).then((request) => request(axios, basePath));
13535
13535
  },
13536
13536
  /**
@@ -13542,7 +13542,7 @@ export const NumberPortingApiFactory = function (configuration?: Configuration,
13542
13542
  * @param {string | null} [city] City
13543
13543
  * @param {string | null} [postCode] Post Code
13544
13544
  * @param {number | null} [trunkId] Trunk ID
13545
- * @param {number | null} [tenantId] Starter Bundle ID
13545
+ * @param {string | null} [tenantId] Starter Bundle ID
13546
13546
  * @param {string | null} [requestedPortDate] Requested Port Date
13547
13547
  * @param {boolean | null} [asap] Port Date ASAP
13548
13548
  * @param {string | null} [comment] Comment
@@ -13551,7 +13551,7 @@ export const NumberPortingApiFactory = function (configuration?: Configuration,
13551
13551
  * @param {*} [options] Override http request option.
13552
13552
  * @throws {RequiredError}
13553
13553
  */
13554
- postUpdateNumberPort(id: number, companyName?: string | null, addressLine1?: string | null, addressLine2?: string | null, city?: string | null, postCode?: string | null, trunkId?: number | null, tenantId?: number | null, requestedPortDate?: string | null, asap?: boolean | null, comment?: string | null, numberRanges?: Array<NumberPortRangeRequestDTO>, cloa?: File, options?: RawAxiosRequestConfig): AxiosPromise<NumberPortDTO> {
13554
+ postUpdateNumberPort(id: number, companyName?: string | null, addressLine1?: string | null, addressLine2?: string | null, city?: string | null, postCode?: string | null, trunkId?: number | null, tenantId?: string | null, requestedPortDate?: string | null, asap?: boolean | null, comment?: string | null, numberRanges?: Array<NumberPortRangeRequestDTO>, cloa?: File, options?: RawAxiosRequestConfig): AxiosPromise<NumberPortDTO> {
13555
13555
  return localVarFp.postUpdateNumberPort(id, companyName, addressLine1, addressLine2, city, postCode, trunkId, tenantId, requestedPortDate, asap, comment, numberRanges, cloa, options).then((request) => request(axios, basePath));
13556
13556
  },
13557
13557
  /**
@@ -13563,7 +13563,7 @@ export const NumberPortingApiFactory = function (configuration?: Configuration,
13563
13563
  * @param {string | null} [city] City
13564
13564
  * @param {string | null} [postCode] Post Code
13565
13565
  * @param {number | null} [trunkId] Trunk ID
13566
- * @param {number | null} [tenantId] Starter Bundle ID
13566
+ * @param {string | null} [tenantId] Starter Bundle ID
13567
13567
  * @param {string | null} [requestedPortDate] Requested Port Date
13568
13568
  * @param {boolean | null} [asap] Port Date ASAP
13569
13569
  * @param {string | null} [comment] Comment
@@ -13576,7 +13576,7 @@ export const NumberPortingApiFactory = function (configuration?: Configuration,
13576
13576
  * @param {*} [options] Override http request option.
13577
13577
  * @throws {RequiredError}
13578
13578
  */
13579
- putGetAdminNumberPort(id: number, companyName?: string | null, addressLine1?: string | null, addressLine2?: string | null, city?: string | null, postCode?: string | null, trunkId?: number | null, tenantId?: number | null, requestedPortDate?: string | null, asap?: boolean | null, comment?: string | null, id2?: number, customerName?: string, portDate?: string, numberRanges?: Array<NumberPortRangeDTO>, status?: number, ticketId?: number | null, options?: RawAxiosRequestConfig): AxiosPromise<NumberPortDTO> {
13579
+ putGetAdminNumberPort(id: number, companyName?: string | null, addressLine1?: string | null, addressLine2?: string | null, city?: string | null, postCode?: string | null, trunkId?: number | null, tenantId?: string | null, requestedPortDate?: string | null, asap?: boolean | null, comment?: string | null, id2?: number, customerName?: string, portDate?: string, numberRanges?: Array<NumberPortRangeDTO>, status?: number, ticketId?: number | null, options?: RawAxiosRequestConfig): AxiosPromise<NumberPortDTO> {
13580
13580
  return localVarFp.putGetAdminNumberPort(id, companyName, addressLine1, addressLine2, city, postCode, trunkId, tenantId, requestedPortDate, asap, comment, id2, customerName, portDate, numberRanges, status, ticketId, options).then((request) => request(axios, basePath));
13581
13581
  },
13582
13582
  };
@@ -13648,7 +13648,7 @@ export class NumberPortingApi extends BaseAPI {
13648
13648
  * @param {string | null} [city] City
13649
13649
  * @param {string | null} [postCode] Post Code
13650
13650
  * @param {number | null} [trunkId] Trunk ID
13651
- * @param {number | null} [tenantId] Starter Bundle ID
13651
+ * @param {string | null} [tenantId] Starter Bundle ID
13652
13652
  * @param {string | null} [requestedPortDate] Requested Port Date
13653
13653
  * @param {boolean | null} [asap] Port Date ASAP
13654
13654
  * @param {string | null} [comment] Comment
@@ -13657,7 +13657,7 @@ export class NumberPortingApi extends BaseAPI {
13657
13657
  * @param {*} [options] Override http request option.
13658
13658
  * @throws {RequiredError}
13659
13659
  */
13660
- public postCreateNumberPort(companyName?: string | null, addressLine1?: string | null, addressLine2?: string | null, city?: string | null, postCode?: string | null, trunkId?: number | null, tenantId?: number | null, requestedPortDate?: string | null, asap?: boolean | null, comment?: string | null, numberRanges?: Array<NumberPortRangeRequestDTO>, cloa?: File, options?: RawAxiosRequestConfig) {
13660
+ public postCreateNumberPort(companyName?: string | null, addressLine1?: string | null, addressLine2?: string | null, city?: string | null, postCode?: string | null, trunkId?: number | null, tenantId?: string | null, requestedPortDate?: string | null, asap?: boolean | null, comment?: string | null, numberRanges?: Array<NumberPortRangeRequestDTO>, cloa?: File, options?: RawAxiosRequestConfig) {
13661
13661
  return NumberPortingApiFp(this.configuration).postCreateNumberPort(companyName, addressLine1, addressLine2, city, postCode, trunkId, tenantId, requestedPortDate, asap, comment, numberRanges, cloa, options).then((request) => request(this.axios, this.basePath));
13662
13662
  }
13663
13663
 
@@ -13670,7 +13670,7 @@ export class NumberPortingApi extends BaseAPI {
13670
13670
  * @param {string | null} [city] City
13671
13671
  * @param {string | null} [postCode] Post Code
13672
13672
  * @param {number | null} [trunkId] Trunk ID
13673
- * @param {number | null} [tenantId] Starter Bundle ID
13673
+ * @param {string | null} [tenantId] Starter Bundle ID
13674
13674
  * @param {string | null} [requestedPortDate] Requested Port Date
13675
13675
  * @param {boolean | null} [asap] Port Date ASAP
13676
13676
  * @param {string | null} [comment] Comment
@@ -13679,7 +13679,7 @@ export class NumberPortingApi extends BaseAPI {
13679
13679
  * @param {*} [options] Override http request option.
13680
13680
  * @throws {RequiredError}
13681
13681
  */
13682
- public postSubmitNumberPort(id: number, companyName?: string | null, addressLine1?: string | null, addressLine2?: string | null, city?: string | null, postCode?: string | null, trunkId?: number | null, tenantId?: number | null, requestedPortDate?: string | null, asap?: boolean | null, comment?: string | null, numberRanges?: Array<NumberPortRangeRequestDTO>, cloa?: File, options?: RawAxiosRequestConfig) {
13682
+ public postSubmitNumberPort(id: number, companyName?: string | null, addressLine1?: string | null, addressLine2?: string | null, city?: string | null, postCode?: string | null, trunkId?: number | null, tenantId?: string | null, requestedPortDate?: string | null, asap?: boolean | null, comment?: string | null, numberRanges?: Array<NumberPortRangeRequestDTO>, cloa?: File, options?: RawAxiosRequestConfig) {
13683
13683
  return NumberPortingApiFp(this.configuration).postSubmitNumberPort(id, companyName, addressLine1, addressLine2, city, postCode, trunkId, tenantId, requestedPortDate, asap, comment, numberRanges, cloa, options).then((request) => request(this.axios, this.basePath));
13684
13684
  }
13685
13685
 
@@ -13692,7 +13692,7 @@ export class NumberPortingApi extends BaseAPI {
13692
13692
  * @param {string | null} [city] City
13693
13693
  * @param {string | null} [postCode] Post Code
13694
13694
  * @param {number | null} [trunkId] Trunk ID
13695
- * @param {number | null} [tenantId] Starter Bundle ID
13695
+ * @param {string | null} [tenantId] Starter Bundle ID
13696
13696
  * @param {string | null} [requestedPortDate] Requested Port Date
13697
13697
  * @param {boolean | null} [asap] Port Date ASAP
13698
13698
  * @param {string | null} [comment] Comment
@@ -13701,7 +13701,7 @@ export class NumberPortingApi extends BaseAPI {
13701
13701
  * @param {*} [options] Override http request option.
13702
13702
  * @throws {RequiredError}
13703
13703
  */
13704
- public postUpdateNumberPort(id: number, companyName?: string | null, addressLine1?: string | null, addressLine2?: string | null, city?: string | null, postCode?: string | null, trunkId?: number | null, tenantId?: number | null, requestedPortDate?: string | null, asap?: boolean | null, comment?: string | null, numberRanges?: Array<NumberPortRangeRequestDTO>, cloa?: File, options?: RawAxiosRequestConfig) {
13704
+ public postUpdateNumberPort(id: number, companyName?: string | null, addressLine1?: string | null, addressLine2?: string | null, city?: string | null, postCode?: string | null, trunkId?: number | null, tenantId?: string | null, requestedPortDate?: string | null, asap?: boolean | null, comment?: string | null, numberRanges?: Array<NumberPortRangeRequestDTO>, cloa?: File, options?: RawAxiosRequestConfig) {
13705
13705
  return NumberPortingApiFp(this.configuration).postUpdateNumberPort(id, companyName, addressLine1, addressLine2, city, postCode, trunkId, tenantId, requestedPortDate, asap, comment, numberRanges, cloa, options).then((request) => request(this.axios, this.basePath));
13706
13706
  }
13707
13707
 
@@ -13714,7 +13714,7 @@ export class NumberPortingApi extends BaseAPI {
13714
13714
  * @param {string | null} [city] City
13715
13715
  * @param {string | null} [postCode] Post Code
13716
13716
  * @param {number | null} [trunkId] Trunk ID
13717
- * @param {number | null} [tenantId] Starter Bundle ID
13717
+ * @param {string | null} [tenantId] Starter Bundle ID
13718
13718
  * @param {string | null} [requestedPortDate] Requested Port Date
13719
13719
  * @param {boolean | null} [asap] Port Date ASAP
13720
13720
  * @param {string | null} [comment] Comment
@@ -13727,7 +13727,7 @@ export class NumberPortingApi extends BaseAPI {
13727
13727
  * @param {*} [options] Override http request option.
13728
13728
  * @throws {RequiredError}
13729
13729
  */
13730
- public putGetAdminNumberPort(id: number, companyName?: string | null, addressLine1?: string | null, addressLine2?: string | null, city?: string | null, postCode?: string | null, trunkId?: number | null, tenantId?: number | null, requestedPortDate?: string | null, asap?: boolean | null, comment?: string | null, id2?: number, customerName?: string, portDate?: string, numberRanges?: Array<NumberPortRangeDTO>, status?: number, ticketId?: number | null, options?: RawAxiosRequestConfig) {
13730
+ public putGetAdminNumberPort(id: number, companyName?: string | null, addressLine1?: string | null, addressLine2?: string | null, city?: string | null, postCode?: string | null, trunkId?: number | null, tenantId?: string | null, requestedPortDate?: string | null, asap?: boolean | null, comment?: string | null, id2?: number, customerName?: string, portDate?: string, numberRanges?: Array<NumberPortRangeDTO>, status?: number, ticketId?: number | null, options?: RawAxiosRequestConfig) {
13731
13731
  return NumberPortingApiFp(this.configuration).putGetAdminNumberPort(id, companyName, addressLine1, addressLine2, city, postCode, trunkId, tenantId, requestedPortDate, asap, comment, id2, customerName, portDate, numberRanges, status, ticketId, options).then((request) => request(this.axios, this.basePath));
13732
13732
  }
13733
13733
  }
package/dist/api.d.ts CHANGED
@@ -2392,7 +2392,7 @@ export interface NumberPortDTO {
2392
2392
  /**
2393
2393
  * Starter Bundle ID
2394
2394
  */
2395
- 'tenantId'?: number | null;
2395
+ 'tenantId'?: string | null;
2396
2396
  /**
2397
2397
  * Requested Port Date
2398
2398
  */
@@ -9461,7 +9461,7 @@ export declare const NumberPortingApiAxiosParamCreator: (configuration?: Configu
9461
9461
  * @param {string | null} [city] City
9462
9462
  * @param {string | null} [postCode] Post Code
9463
9463
  * @param {number | null} [trunkId] Trunk ID
9464
- * @param {number | null} [tenantId] Starter Bundle ID
9464
+ * @param {string | null} [tenantId] Starter Bundle ID
9465
9465
  * @param {string | null} [requestedPortDate] Requested Port Date
9466
9466
  * @param {boolean | null} [asap] Port Date ASAP
9467
9467
  * @param {string | null} [comment] Comment
@@ -9470,7 +9470,7 @@ export declare const NumberPortingApiAxiosParamCreator: (configuration?: Configu
9470
9470
  * @param {*} [options] Override http request option.
9471
9471
  * @throws {RequiredError}
9472
9472
  */
9473
- postCreateNumberPort: (companyName?: string | null, addressLine1?: string | null, addressLine2?: string | null, city?: string | null, postCode?: string | null, trunkId?: number | null, tenantId?: number | null, requestedPortDate?: string | null, asap?: boolean | null, comment?: string | null, numberRanges?: Array<NumberPortRangeRequestDTO>, cloa?: File, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
9473
+ postCreateNumberPort: (companyName?: string | null, addressLine1?: string | null, addressLine2?: string | null, city?: string | null, postCode?: string | null, trunkId?: number | null, tenantId?: string | null, requestedPortDate?: string | null, asap?: boolean | null, comment?: string | null, numberRanges?: Array<NumberPortRangeRequestDTO>, cloa?: File, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
9474
9474
  /**
9475
9475
  *
9476
9476
  * @param {number} id Number Port ID
@@ -9480,7 +9480,7 @@ export declare const NumberPortingApiAxiosParamCreator: (configuration?: Configu
9480
9480
  * @param {string | null} [city] City
9481
9481
  * @param {string | null} [postCode] Post Code
9482
9482
  * @param {number | null} [trunkId] Trunk ID
9483
- * @param {number | null} [tenantId] Starter Bundle ID
9483
+ * @param {string | null} [tenantId] Starter Bundle ID
9484
9484
  * @param {string | null} [requestedPortDate] Requested Port Date
9485
9485
  * @param {boolean | null} [asap] Port Date ASAP
9486
9486
  * @param {string | null} [comment] Comment
@@ -9489,7 +9489,7 @@ export declare const NumberPortingApiAxiosParamCreator: (configuration?: Configu
9489
9489
  * @param {*} [options] Override http request option.
9490
9490
  * @throws {RequiredError}
9491
9491
  */
9492
- postSubmitNumberPort: (id: number, companyName?: string | null, addressLine1?: string | null, addressLine2?: string | null, city?: string | null, postCode?: string | null, trunkId?: number | null, tenantId?: number | null, requestedPortDate?: string | null, asap?: boolean | null, comment?: string | null, numberRanges?: Array<NumberPortRangeRequestDTO>, cloa?: File, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
9492
+ postSubmitNumberPort: (id: number, companyName?: string | null, addressLine1?: string | null, addressLine2?: string | null, city?: string | null, postCode?: string | null, trunkId?: number | null, tenantId?: string | null, requestedPortDate?: string | null, asap?: boolean | null, comment?: string | null, numberRanges?: Array<NumberPortRangeRequestDTO>, cloa?: File, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
9493
9493
  /**
9494
9494
  *
9495
9495
  * @param {number} id Number Port ID
@@ -9499,7 +9499,7 @@ export declare const NumberPortingApiAxiosParamCreator: (configuration?: Configu
9499
9499
  * @param {string | null} [city] City
9500
9500
  * @param {string | null} [postCode] Post Code
9501
9501
  * @param {number | null} [trunkId] Trunk ID
9502
- * @param {number | null} [tenantId] Starter Bundle ID
9502
+ * @param {string | null} [tenantId] Starter Bundle ID
9503
9503
  * @param {string | null} [requestedPortDate] Requested Port Date
9504
9504
  * @param {boolean | null} [asap] Port Date ASAP
9505
9505
  * @param {string | null} [comment] Comment
@@ -9508,7 +9508,7 @@ export declare const NumberPortingApiAxiosParamCreator: (configuration?: Configu
9508
9508
  * @param {*} [options] Override http request option.
9509
9509
  * @throws {RequiredError}
9510
9510
  */
9511
- postUpdateNumberPort: (id: number, companyName?: string | null, addressLine1?: string | null, addressLine2?: string | null, city?: string | null, postCode?: string | null, trunkId?: number | null, tenantId?: number | null, requestedPortDate?: string | null, asap?: boolean | null, comment?: string | null, numberRanges?: Array<NumberPortRangeRequestDTO>, cloa?: File, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
9511
+ postUpdateNumberPort: (id: number, companyName?: string | null, addressLine1?: string | null, addressLine2?: string | null, city?: string | null, postCode?: string | null, trunkId?: number | null, tenantId?: string | null, requestedPortDate?: string | null, asap?: boolean | null, comment?: string | null, numberRanges?: Array<NumberPortRangeRequestDTO>, cloa?: File, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
9512
9512
  /**
9513
9513
  *
9514
9514
  * @param {number} id Number Port ID
@@ -9518,7 +9518,7 @@ export declare const NumberPortingApiAxiosParamCreator: (configuration?: Configu
9518
9518
  * @param {string | null} [city] City
9519
9519
  * @param {string | null} [postCode] Post Code
9520
9520
  * @param {number | null} [trunkId] Trunk ID
9521
- * @param {number | null} [tenantId] Starter Bundle ID
9521
+ * @param {string | null} [tenantId] Starter Bundle ID
9522
9522
  * @param {string | null} [requestedPortDate] Requested Port Date
9523
9523
  * @param {boolean | null} [asap] Port Date ASAP
9524
9524
  * @param {string | null} [comment] Comment
@@ -9531,7 +9531,7 @@ export declare const NumberPortingApiAxiosParamCreator: (configuration?: Configu
9531
9531
  * @param {*} [options] Override http request option.
9532
9532
  * @throws {RequiredError}
9533
9533
  */
9534
- putGetAdminNumberPort: (id: number, companyName?: string | null, addressLine1?: string | null, addressLine2?: string | null, city?: string | null, postCode?: string | null, trunkId?: number | null, tenantId?: number | null, requestedPortDate?: string | null, asap?: boolean | null, comment?: string | null, id2?: number, customerName?: string, portDate?: string, numberRanges?: Array<NumberPortRangeDTO>, status?: number, ticketId?: number | null, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
9534
+ putGetAdminNumberPort: (id: number, companyName?: string | null, addressLine1?: string | null, addressLine2?: string | null, city?: string | null, postCode?: string | null, trunkId?: number | null, tenantId?: string | null, requestedPortDate?: string | null, asap?: boolean | null, comment?: string | null, id2?: number, customerName?: string, portDate?: string, numberRanges?: Array<NumberPortRangeDTO>, status?: number, ticketId?: number | null, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
9535
9535
  };
9536
9536
  /**
9537
9537
  * NumberPortingApi - functional programming interface
@@ -9584,7 +9584,7 @@ export declare const NumberPortingApiFp: (configuration?: Configuration) => {
9584
9584
  * @param {string | null} [city] City
9585
9585
  * @param {string | null} [postCode] Post Code
9586
9586
  * @param {number | null} [trunkId] Trunk ID
9587
- * @param {number | null} [tenantId] Starter Bundle ID
9587
+ * @param {string | null} [tenantId] Starter Bundle ID
9588
9588
  * @param {string | null} [requestedPortDate] Requested Port Date
9589
9589
  * @param {boolean | null} [asap] Port Date ASAP
9590
9590
  * @param {string | null} [comment] Comment
@@ -9593,7 +9593,7 @@ export declare const NumberPortingApiFp: (configuration?: Configuration) => {
9593
9593
  * @param {*} [options] Override http request option.
9594
9594
  * @throws {RequiredError}
9595
9595
  */
9596
- postCreateNumberPort(companyName?: string | null, addressLine1?: string | null, addressLine2?: string | null, city?: string | null, postCode?: string | null, trunkId?: number | null, tenantId?: number | null, requestedPortDate?: string | null, asap?: boolean | null, comment?: string | null, numberRanges?: Array<NumberPortRangeRequestDTO>, cloa?: File, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<NumberPortDTO>>;
9596
+ postCreateNumberPort(companyName?: string | null, addressLine1?: string | null, addressLine2?: string | null, city?: string | null, postCode?: string | null, trunkId?: number | null, tenantId?: string | null, requestedPortDate?: string | null, asap?: boolean | null, comment?: string | null, numberRanges?: Array<NumberPortRangeRequestDTO>, cloa?: File, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<NumberPortDTO>>;
9597
9597
  /**
9598
9598
  *
9599
9599
  * @param {number} id Number Port ID
@@ -9603,7 +9603,7 @@ export declare const NumberPortingApiFp: (configuration?: Configuration) => {
9603
9603
  * @param {string | null} [city] City
9604
9604
  * @param {string | null} [postCode] Post Code
9605
9605
  * @param {number | null} [trunkId] Trunk ID
9606
- * @param {number | null} [tenantId] Starter Bundle ID
9606
+ * @param {string | null} [tenantId] Starter Bundle ID
9607
9607
  * @param {string | null} [requestedPortDate] Requested Port Date
9608
9608
  * @param {boolean | null} [asap] Port Date ASAP
9609
9609
  * @param {string | null} [comment] Comment
@@ -9612,7 +9612,7 @@ export declare const NumberPortingApiFp: (configuration?: Configuration) => {
9612
9612
  * @param {*} [options] Override http request option.
9613
9613
  * @throws {RequiredError}
9614
9614
  */
9615
- postSubmitNumberPort(id: number, companyName?: string | null, addressLine1?: string | null, addressLine2?: string | null, city?: string | null, postCode?: string | null, trunkId?: number | null, tenantId?: number | null, requestedPortDate?: string | null, asap?: boolean | null, comment?: string | null, numberRanges?: Array<NumberPortRangeRequestDTO>, cloa?: File, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<NumberPortDTO>>;
9615
+ postSubmitNumberPort(id: number, companyName?: string | null, addressLine1?: string | null, addressLine2?: string | null, city?: string | null, postCode?: string | null, trunkId?: number | null, tenantId?: string | null, requestedPortDate?: string | null, asap?: boolean | null, comment?: string | null, numberRanges?: Array<NumberPortRangeRequestDTO>, cloa?: File, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<NumberPortDTO>>;
9616
9616
  /**
9617
9617
  *
9618
9618
  * @param {number} id Number Port ID
@@ -9622,7 +9622,7 @@ export declare const NumberPortingApiFp: (configuration?: Configuration) => {
9622
9622
  * @param {string | null} [city] City
9623
9623
  * @param {string | null} [postCode] Post Code
9624
9624
  * @param {number | null} [trunkId] Trunk ID
9625
- * @param {number | null} [tenantId] Starter Bundle ID
9625
+ * @param {string | null} [tenantId] Starter Bundle ID
9626
9626
  * @param {string | null} [requestedPortDate] Requested Port Date
9627
9627
  * @param {boolean | null} [asap] Port Date ASAP
9628
9628
  * @param {string | null} [comment] Comment
@@ -9631,7 +9631,7 @@ export declare const NumberPortingApiFp: (configuration?: Configuration) => {
9631
9631
  * @param {*} [options] Override http request option.
9632
9632
  * @throws {RequiredError}
9633
9633
  */
9634
- postUpdateNumberPort(id: number, companyName?: string | null, addressLine1?: string | null, addressLine2?: string | null, city?: string | null, postCode?: string | null, trunkId?: number | null, tenantId?: number | null, requestedPortDate?: string | null, asap?: boolean | null, comment?: string | null, numberRanges?: Array<NumberPortRangeRequestDTO>, cloa?: File, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<NumberPortDTO>>;
9634
+ postUpdateNumberPort(id: number, companyName?: string | null, addressLine1?: string | null, addressLine2?: string | null, city?: string | null, postCode?: string | null, trunkId?: number | null, tenantId?: string | null, requestedPortDate?: string | null, asap?: boolean | null, comment?: string | null, numberRanges?: Array<NumberPortRangeRequestDTO>, cloa?: File, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<NumberPortDTO>>;
9635
9635
  /**
9636
9636
  *
9637
9637
  * @param {number} id Number Port ID
@@ -9641,7 +9641,7 @@ export declare const NumberPortingApiFp: (configuration?: Configuration) => {
9641
9641
  * @param {string | null} [city] City
9642
9642
  * @param {string | null} [postCode] Post Code
9643
9643
  * @param {number | null} [trunkId] Trunk ID
9644
- * @param {number | null} [tenantId] Starter Bundle ID
9644
+ * @param {string | null} [tenantId] Starter Bundle ID
9645
9645
  * @param {string | null} [requestedPortDate] Requested Port Date
9646
9646
  * @param {boolean | null} [asap] Port Date ASAP
9647
9647
  * @param {string | null} [comment] Comment
@@ -9654,7 +9654,7 @@ export declare const NumberPortingApiFp: (configuration?: Configuration) => {
9654
9654
  * @param {*} [options] Override http request option.
9655
9655
  * @throws {RequiredError}
9656
9656
  */
9657
- putGetAdminNumberPort(id: number, companyName?: string | null, addressLine1?: string | null, addressLine2?: string | null, city?: string | null, postCode?: string | null, trunkId?: number | null, tenantId?: number | null, requestedPortDate?: string | null, asap?: boolean | null, comment?: string | null, id2?: number, customerName?: string, portDate?: string, numberRanges?: Array<NumberPortRangeDTO>, status?: number, ticketId?: number | null, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<NumberPortDTO>>;
9657
+ putGetAdminNumberPort(id: number, companyName?: string | null, addressLine1?: string | null, addressLine2?: string | null, city?: string | null, postCode?: string | null, trunkId?: number | null, tenantId?: string | null, requestedPortDate?: string | null, asap?: boolean | null, comment?: string | null, id2?: number, customerName?: string, portDate?: string, numberRanges?: Array<NumberPortRangeDTO>, status?: number, ticketId?: number | null, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<NumberPortDTO>>;
9658
9658
  };
9659
9659
  /**
9660
9660
  * NumberPortingApi - factory interface
@@ -9707,7 +9707,7 @@ export declare const NumberPortingApiFactory: (configuration?: Configuration, ba
9707
9707
  * @param {string | null} [city] City
9708
9708
  * @param {string | null} [postCode] Post Code
9709
9709
  * @param {number | null} [trunkId] Trunk ID
9710
- * @param {number | null} [tenantId] Starter Bundle ID
9710
+ * @param {string | null} [tenantId] Starter Bundle ID
9711
9711
  * @param {string | null} [requestedPortDate] Requested Port Date
9712
9712
  * @param {boolean | null} [asap] Port Date ASAP
9713
9713
  * @param {string | null} [comment] Comment
@@ -9716,7 +9716,7 @@ export declare const NumberPortingApiFactory: (configuration?: Configuration, ba
9716
9716
  * @param {*} [options] Override http request option.
9717
9717
  * @throws {RequiredError}
9718
9718
  */
9719
- postCreateNumberPort(companyName?: string | null, addressLine1?: string | null, addressLine2?: string | null, city?: string | null, postCode?: string | null, trunkId?: number | null, tenantId?: number | null, requestedPortDate?: string | null, asap?: boolean | null, comment?: string | null, numberRanges?: Array<NumberPortRangeRequestDTO>, cloa?: File, options?: RawAxiosRequestConfig): AxiosPromise<NumberPortDTO>;
9719
+ postCreateNumberPort(companyName?: string | null, addressLine1?: string | null, addressLine2?: string | null, city?: string | null, postCode?: string | null, trunkId?: number | null, tenantId?: string | null, requestedPortDate?: string | null, asap?: boolean | null, comment?: string | null, numberRanges?: Array<NumberPortRangeRequestDTO>, cloa?: File, options?: RawAxiosRequestConfig): AxiosPromise<NumberPortDTO>;
9720
9720
  /**
9721
9721
  *
9722
9722
  * @param {number} id Number Port ID
@@ -9726,7 +9726,7 @@ export declare const NumberPortingApiFactory: (configuration?: Configuration, ba
9726
9726
  * @param {string | null} [city] City
9727
9727
  * @param {string | null} [postCode] Post Code
9728
9728
  * @param {number | null} [trunkId] Trunk ID
9729
- * @param {number | null} [tenantId] Starter Bundle ID
9729
+ * @param {string | null} [tenantId] Starter Bundle ID
9730
9730
  * @param {string | null} [requestedPortDate] Requested Port Date
9731
9731
  * @param {boolean | null} [asap] Port Date ASAP
9732
9732
  * @param {string | null} [comment] Comment
@@ -9735,7 +9735,7 @@ export declare const NumberPortingApiFactory: (configuration?: Configuration, ba
9735
9735
  * @param {*} [options] Override http request option.
9736
9736
  * @throws {RequiredError}
9737
9737
  */
9738
- postSubmitNumberPort(id: number, companyName?: string | null, addressLine1?: string | null, addressLine2?: string | null, city?: string | null, postCode?: string | null, trunkId?: number | null, tenantId?: number | null, requestedPortDate?: string | null, asap?: boolean | null, comment?: string | null, numberRanges?: Array<NumberPortRangeRequestDTO>, cloa?: File, options?: RawAxiosRequestConfig): AxiosPromise<NumberPortDTO>;
9738
+ postSubmitNumberPort(id: number, companyName?: string | null, addressLine1?: string | null, addressLine2?: string | null, city?: string | null, postCode?: string | null, trunkId?: number | null, tenantId?: string | null, requestedPortDate?: string | null, asap?: boolean | null, comment?: string | null, numberRanges?: Array<NumberPortRangeRequestDTO>, cloa?: File, options?: RawAxiosRequestConfig): AxiosPromise<NumberPortDTO>;
9739
9739
  /**
9740
9740
  *
9741
9741
  * @param {number} id Number Port ID
@@ -9745,7 +9745,7 @@ export declare const NumberPortingApiFactory: (configuration?: Configuration, ba
9745
9745
  * @param {string | null} [city] City
9746
9746
  * @param {string | null} [postCode] Post Code
9747
9747
  * @param {number | null} [trunkId] Trunk ID
9748
- * @param {number | null} [tenantId] Starter Bundle ID
9748
+ * @param {string | null} [tenantId] Starter Bundle ID
9749
9749
  * @param {string | null} [requestedPortDate] Requested Port Date
9750
9750
  * @param {boolean | null} [asap] Port Date ASAP
9751
9751
  * @param {string | null} [comment] Comment
@@ -9754,7 +9754,7 @@ export declare const NumberPortingApiFactory: (configuration?: Configuration, ba
9754
9754
  * @param {*} [options] Override http request option.
9755
9755
  * @throws {RequiredError}
9756
9756
  */
9757
- postUpdateNumberPort(id: number, companyName?: string | null, addressLine1?: string | null, addressLine2?: string | null, city?: string | null, postCode?: string | null, trunkId?: number | null, tenantId?: number | null, requestedPortDate?: string | null, asap?: boolean | null, comment?: string | null, numberRanges?: Array<NumberPortRangeRequestDTO>, cloa?: File, options?: RawAxiosRequestConfig): AxiosPromise<NumberPortDTO>;
9757
+ postUpdateNumberPort(id: number, companyName?: string | null, addressLine1?: string | null, addressLine2?: string | null, city?: string | null, postCode?: string | null, trunkId?: number | null, tenantId?: string | null, requestedPortDate?: string | null, asap?: boolean | null, comment?: string | null, numberRanges?: Array<NumberPortRangeRequestDTO>, cloa?: File, options?: RawAxiosRequestConfig): AxiosPromise<NumberPortDTO>;
9758
9758
  /**
9759
9759
  *
9760
9760
  * @param {number} id Number Port ID
@@ -9764,7 +9764,7 @@ export declare const NumberPortingApiFactory: (configuration?: Configuration, ba
9764
9764
  * @param {string | null} [city] City
9765
9765
  * @param {string | null} [postCode] Post Code
9766
9766
  * @param {number | null} [trunkId] Trunk ID
9767
- * @param {number | null} [tenantId] Starter Bundle ID
9767
+ * @param {string | null} [tenantId] Starter Bundle ID
9768
9768
  * @param {string | null} [requestedPortDate] Requested Port Date
9769
9769
  * @param {boolean | null} [asap] Port Date ASAP
9770
9770
  * @param {string | null} [comment] Comment
@@ -9777,7 +9777,7 @@ export declare const NumberPortingApiFactory: (configuration?: Configuration, ba
9777
9777
  * @param {*} [options] Override http request option.
9778
9778
  * @throws {RequiredError}
9779
9779
  */
9780
- putGetAdminNumberPort(id: number, companyName?: string | null, addressLine1?: string | null, addressLine2?: string | null, city?: string | null, postCode?: string | null, trunkId?: number | null, tenantId?: number | null, requestedPortDate?: string | null, asap?: boolean | null, comment?: string | null, id2?: number, customerName?: string, portDate?: string, numberRanges?: Array<NumberPortRangeDTO>, status?: number, ticketId?: number | null, options?: RawAxiosRequestConfig): AxiosPromise<NumberPortDTO>;
9780
+ putGetAdminNumberPort(id: number, companyName?: string | null, addressLine1?: string | null, addressLine2?: string | null, city?: string | null, postCode?: string | null, trunkId?: number | null, tenantId?: string | null, requestedPortDate?: string | null, asap?: boolean | null, comment?: string | null, id2?: number, customerName?: string, portDate?: string, numberRanges?: Array<NumberPortRangeDTO>, status?: number, ticketId?: number | null, options?: RawAxiosRequestConfig): AxiosPromise<NumberPortDTO>;
9781
9781
  };
9782
9782
  /**
9783
9783
  * NumberPortingApi - object-oriented interface
@@ -9830,7 +9830,7 @@ export declare class NumberPortingApi extends BaseAPI {
9830
9830
  * @param {string | null} [city] City
9831
9831
  * @param {string | null} [postCode] Post Code
9832
9832
  * @param {number | null} [trunkId] Trunk ID
9833
- * @param {number | null} [tenantId] Starter Bundle ID
9833
+ * @param {string | null} [tenantId] Starter Bundle ID
9834
9834
  * @param {string | null} [requestedPortDate] Requested Port Date
9835
9835
  * @param {boolean | null} [asap] Port Date ASAP
9836
9836
  * @param {string | null} [comment] Comment
@@ -9839,7 +9839,7 @@ export declare class NumberPortingApi extends BaseAPI {
9839
9839
  * @param {*} [options] Override http request option.
9840
9840
  * @throws {RequiredError}
9841
9841
  */
9842
- postCreateNumberPort(companyName?: string | null, addressLine1?: string | null, addressLine2?: string | null, city?: string | null, postCode?: string | null, trunkId?: number | null, tenantId?: number | null, requestedPortDate?: string | null, asap?: boolean | null, comment?: string | null, numberRanges?: Array<NumberPortRangeRequestDTO>, cloa?: File, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<NumberPortDTO, any, {}>>;
9842
+ postCreateNumberPort(companyName?: string | null, addressLine1?: string | null, addressLine2?: string | null, city?: string | null, postCode?: string | null, trunkId?: number | null, tenantId?: string | null, requestedPortDate?: string | null, asap?: boolean | null, comment?: string | null, numberRanges?: Array<NumberPortRangeRequestDTO>, cloa?: File, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<NumberPortDTO, any, {}>>;
9843
9843
  /**
9844
9844
  *
9845
9845
  * @param {number} id Number Port ID
@@ -9849,7 +9849,7 @@ export declare class NumberPortingApi extends BaseAPI {
9849
9849
  * @param {string | null} [city] City
9850
9850
  * @param {string | null} [postCode] Post Code
9851
9851
  * @param {number | null} [trunkId] Trunk ID
9852
- * @param {number | null} [tenantId] Starter Bundle ID
9852
+ * @param {string | null} [tenantId] Starter Bundle ID
9853
9853
  * @param {string | null} [requestedPortDate] Requested Port Date
9854
9854
  * @param {boolean | null} [asap] Port Date ASAP
9855
9855
  * @param {string | null} [comment] Comment
@@ -9858,7 +9858,7 @@ export declare class NumberPortingApi extends BaseAPI {
9858
9858
  * @param {*} [options] Override http request option.
9859
9859
  * @throws {RequiredError}
9860
9860
  */
9861
- postSubmitNumberPort(id: number, companyName?: string | null, addressLine1?: string | null, addressLine2?: string | null, city?: string | null, postCode?: string | null, trunkId?: number | null, tenantId?: number | null, requestedPortDate?: string | null, asap?: boolean | null, comment?: string | null, numberRanges?: Array<NumberPortRangeRequestDTO>, cloa?: File, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<NumberPortDTO, any, {}>>;
9861
+ postSubmitNumberPort(id: number, companyName?: string | null, addressLine1?: string | null, addressLine2?: string | null, city?: string | null, postCode?: string | null, trunkId?: number | null, tenantId?: string | null, requestedPortDate?: string | null, asap?: boolean | null, comment?: string | null, numberRanges?: Array<NumberPortRangeRequestDTO>, cloa?: File, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<NumberPortDTO, any, {}>>;
9862
9862
  /**
9863
9863
  *
9864
9864
  * @param {number} id Number Port ID
@@ -9868,7 +9868,7 @@ export declare class NumberPortingApi extends BaseAPI {
9868
9868
  * @param {string | null} [city] City
9869
9869
  * @param {string | null} [postCode] Post Code
9870
9870
  * @param {number | null} [trunkId] Trunk ID
9871
- * @param {number | null} [tenantId] Starter Bundle ID
9871
+ * @param {string | null} [tenantId] Starter Bundle ID
9872
9872
  * @param {string | null} [requestedPortDate] Requested Port Date
9873
9873
  * @param {boolean | null} [asap] Port Date ASAP
9874
9874
  * @param {string | null} [comment] Comment
@@ -9877,7 +9877,7 @@ export declare class NumberPortingApi extends BaseAPI {
9877
9877
  * @param {*} [options] Override http request option.
9878
9878
  * @throws {RequiredError}
9879
9879
  */
9880
- postUpdateNumberPort(id: number, companyName?: string | null, addressLine1?: string | null, addressLine2?: string | null, city?: string | null, postCode?: string | null, trunkId?: number | null, tenantId?: number | null, requestedPortDate?: string | null, asap?: boolean | null, comment?: string | null, numberRanges?: Array<NumberPortRangeRequestDTO>, cloa?: File, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<NumberPortDTO, any, {}>>;
9880
+ postUpdateNumberPort(id: number, companyName?: string | null, addressLine1?: string | null, addressLine2?: string | null, city?: string | null, postCode?: string | null, trunkId?: number | null, tenantId?: string | null, requestedPortDate?: string | null, asap?: boolean | null, comment?: string | null, numberRanges?: Array<NumberPortRangeRequestDTO>, cloa?: File, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<NumberPortDTO, any, {}>>;
9881
9881
  /**
9882
9882
  *
9883
9883
  * @param {number} id Number Port ID
@@ -9887,7 +9887,7 @@ export declare class NumberPortingApi extends BaseAPI {
9887
9887
  * @param {string | null} [city] City
9888
9888
  * @param {string | null} [postCode] Post Code
9889
9889
  * @param {number | null} [trunkId] Trunk ID
9890
- * @param {number | null} [tenantId] Starter Bundle ID
9890
+ * @param {string | null} [tenantId] Starter Bundle ID
9891
9891
  * @param {string | null} [requestedPortDate] Requested Port Date
9892
9892
  * @param {boolean | null} [asap] Port Date ASAP
9893
9893
  * @param {string | null} [comment] Comment
@@ -9900,7 +9900,7 @@ export declare class NumberPortingApi extends BaseAPI {
9900
9900
  * @param {*} [options] Override http request option.
9901
9901
  * @throws {RequiredError}
9902
9902
  */
9903
- putGetAdminNumberPort(id: number, companyName?: string | null, addressLine1?: string | null, addressLine2?: string | null, city?: string | null, postCode?: string | null, trunkId?: number | null, tenantId?: number | null, requestedPortDate?: string | null, asap?: boolean | null, comment?: string | null, id2?: number, customerName?: string, portDate?: string, numberRanges?: Array<NumberPortRangeDTO>, status?: number, ticketId?: number | null, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<NumberPortDTO, any, {}>>;
9903
+ putGetAdminNumberPort(id: number, companyName?: string | null, addressLine1?: string | null, addressLine2?: string | null, city?: string | null, postCode?: string | null, trunkId?: number | null, tenantId?: string | null, requestedPortDate?: string | null, asap?: boolean | null, comment?: string | null, id2?: number, customerName?: string, portDate?: string, numberRanges?: Array<NumberPortRangeDTO>, status?: number, ticketId?: number | null, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<NumberPortDTO, any, {}>>;
9904
9904
  }
9905
9905
  /**
9906
9906
  * OAuth20Api - axios parameter creator
package/dist/api.js CHANGED
@@ -7515,7 +7515,7 @@ var NumberPortingApiAxiosParamCreator = function (configuration) {
7515
7515
  * @param {string | null} [city] City
7516
7516
  * @param {string | null} [postCode] Post Code
7517
7517
  * @param {number | null} [trunkId] Trunk ID
7518
- * @param {number | null} [tenantId] Starter Bundle ID
7518
+ * @param {string | null} [tenantId] Starter Bundle ID
7519
7519
  * @param {string | null} [requestedPortDate] Requested Port Date
7520
7520
  * @param {boolean | null} [asap] Port Date ASAP
7521
7521
  * @param {string | null} [comment] Comment
@@ -7599,7 +7599,7 @@ var NumberPortingApiAxiosParamCreator = function (configuration) {
7599
7599
  * @param {string | null} [city] City
7600
7600
  * @param {string | null} [postCode] Post Code
7601
7601
  * @param {number | null} [trunkId] Trunk ID
7602
- * @param {number | null} [tenantId] Starter Bundle ID
7602
+ * @param {string | null} [tenantId] Starter Bundle ID
7603
7603
  * @param {string | null} [requestedPortDate] Requested Port Date
7604
7604
  * @param {boolean | null} [asap] Port Date ASAP
7605
7605
  * @param {string | null} [comment] Comment
@@ -7686,7 +7686,7 @@ var NumberPortingApiAxiosParamCreator = function (configuration) {
7686
7686
  * @param {string | null} [city] City
7687
7687
  * @param {string | null} [postCode] Post Code
7688
7688
  * @param {number | null} [trunkId] Trunk ID
7689
- * @param {number | null} [tenantId] Starter Bundle ID
7689
+ * @param {string | null} [tenantId] Starter Bundle ID
7690
7690
  * @param {string | null} [requestedPortDate] Requested Port Date
7691
7691
  * @param {boolean | null} [asap] Port Date ASAP
7692
7692
  * @param {string | null} [comment] Comment
@@ -7773,7 +7773,7 @@ var NumberPortingApiAxiosParamCreator = function (configuration) {
7773
7773
  * @param {string | null} [city] City
7774
7774
  * @param {string | null} [postCode] Post Code
7775
7775
  * @param {number | null} [trunkId] Trunk ID
7776
- * @param {number | null} [tenantId] Starter Bundle ID
7776
+ * @param {string | null} [tenantId] Starter Bundle ID
7777
7777
  * @param {string | null} [requestedPortDate] Requested Port Date
7778
7778
  * @param {boolean | null} [asap] Port Date ASAP
7779
7779
  * @param {string | null} [comment] Comment
@@ -7998,7 +7998,7 @@ var NumberPortingApiFp = function (configuration) {
7998
7998
  * @param {string | null} [city] City
7999
7999
  * @param {string | null} [postCode] Post Code
8000
8000
  * @param {number | null} [trunkId] Trunk ID
8001
- * @param {number | null} [tenantId] Starter Bundle ID
8001
+ * @param {string | null} [tenantId] Starter Bundle ID
8002
8002
  * @param {string | null} [requestedPortDate] Requested Port Date
8003
8003
  * @param {boolean | null} [asap] Port Date ASAP
8004
8004
  * @param {string | null} [comment] Comment
@@ -8032,7 +8032,7 @@ var NumberPortingApiFp = function (configuration) {
8032
8032
  * @param {string | null} [city] City
8033
8033
  * @param {string | null} [postCode] Post Code
8034
8034
  * @param {number | null} [trunkId] Trunk ID
8035
- * @param {number | null} [tenantId] Starter Bundle ID
8035
+ * @param {string | null} [tenantId] Starter Bundle ID
8036
8036
  * @param {string | null} [requestedPortDate] Requested Port Date
8037
8037
  * @param {boolean | null} [asap] Port Date ASAP
8038
8038
  * @param {string | null} [comment] Comment
@@ -8066,7 +8066,7 @@ var NumberPortingApiFp = function (configuration) {
8066
8066
  * @param {string | null} [city] City
8067
8067
  * @param {string | null} [postCode] Post Code
8068
8068
  * @param {number | null} [trunkId] Trunk ID
8069
- * @param {number | null} [tenantId] Starter Bundle ID
8069
+ * @param {string | null} [tenantId] Starter Bundle ID
8070
8070
  * @param {string | null} [requestedPortDate] Requested Port Date
8071
8071
  * @param {boolean | null} [asap] Port Date ASAP
8072
8072
  * @param {string | null} [comment] Comment
@@ -8100,7 +8100,7 @@ var NumberPortingApiFp = function (configuration) {
8100
8100
  * @param {string | null} [city] City
8101
8101
  * @param {string | null} [postCode] Post Code
8102
8102
  * @param {number | null} [trunkId] Trunk ID
8103
- * @param {number | null} [tenantId] Starter Bundle ID
8103
+ * @param {string | null} [tenantId] Starter Bundle ID
8104
8104
  * @param {string | null} [requestedPortDate] Requested Port Date
8105
8105
  * @param {boolean | null} [asap] Port Date ASAP
8106
8106
  * @param {string | null} [comment] Comment
@@ -8195,7 +8195,7 @@ var NumberPortingApiFactory = function (configuration, basePath, axios) {
8195
8195
  * @param {string | null} [city] City
8196
8196
  * @param {string | null} [postCode] Post Code
8197
8197
  * @param {number | null} [trunkId] Trunk ID
8198
- * @param {number | null} [tenantId] Starter Bundle ID
8198
+ * @param {string | null} [tenantId] Starter Bundle ID
8199
8199
  * @param {string | null} [requestedPortDate] Requested Port Date
8200
8200
  * @param {boolean | null} [asap] Port Date ASAP
8201
8201
  * @param {string | null} [comment] Comment
@@ -8216,7 +8216,7 @@ var NumberPortingApiFactory = function (configuration, basePath, axios) {
8216
8216
  * @param {string | null} [city] City
8217
8217
  * @param {string | null} [postCode] Post Code
8218
8218
  * @param {number | null} [trunkId] Trunk ID
8219
- * @param {number | null} [tenantId] Starter Bundle ID
8219
+ * @param {string | null} [tenantId] Starter Bundle ID
8220
8220
  * @param {string | null} [requestedPortDate] Requested Port Date
8221
8221
  * @param {boolean | null} [asap] Port Date ASAP
8222
8222
  * @param {string | null} [comment] Comment
@@ -8237,7 +8237,7 @@ var NumberPortingApiFactory = function (configuration, basePath, axios) {
8237
8237
  * @param {string | null} [city] City
8238
8238
  * @param {string | null} [postCode] Post Code
8239
8239
  * @param {number | null} [trunkId] Trunk ID
8240
- * @param {number | null} [tenantId] Starter Bundle ID
8240
+ * @param {string | null} [tenantId] Starter Bundle ID
8241
8241
  * @param {string | null} [requestedPortDate] Requested Port Date
8242
8242
  * @param {boolean | null} [asap] Port Date ASAP
8243
8243
  * @param {string | null} [comment] Comment
@@ -8258,7 +8258,7 @@ var NumberPortingApiFactory = function (configuration, basePath, axios) {
8258
8258
  * @param {string | null} [city] City
8259
8259
  * @param {string | null} [postCode] Post Code
8260
8260
  * @param {number | null} [trunkId] Trunk ID
8261
- * @param {number | null} [tenantId] Starter Bundle ID
8261
+ * @param {string | null} [tenantId] Starter Bundle ID
8262
8262
  * @param {string | null} [requestedPortDate] Requested Port Date
8263
8263
  * @param {boolean | null} [asap] Port Date ASAP
8264
8264
  * @param {string | null} [comment] Comment
@@ -8347,7 +8347,7 @@ var NumberPortingApi = /** @class */ (function (_super) {
8347
8347
  * @param {string | null} [city] City
8348
8348
  * @param {string | null} [postCode] Post Code
8349
8349
  * @param {number | null} [trunkId] Trunk ID
8350
- * @param {number | null} [tenantId] Starter Bundle ID
8350
+ * @param {string | null} [tenantId] Starter Bundle ID
8351
8351
  * @param {string | null} [requestedPortDate] Requested Port Date
8352
8352
  * @param {boolean | null} [asap] Port Date ASAP
8353
8353
  * @param {string | null} [comment] Comment
@@ -8369,7 +8369,7 @@ var NumberPortingApi = /** @class */ (function (_super) {
8369
8369
  * @param {string | null} [city] City
8370
8370
  * @param {string | null} [postCode] Post Code
8371
8371
  * @param {number | null} [trunkId] Trunk ID
8372
- * @param {number | null} [tenantId] Starter Bundle ID
8372
+ * @param {string | null} [tenantId] Starter Bundle ID
8373
8373
  * @param {string | null} [requestedPortDate] Requested Port Date
8374
8374
  * @param {boolean | null} [asap] Port Date ASAP
8375
8375
  * @param {string | null} [comment] Comment
@@ -8391,7 +8391,7 @@ var NumberPortingApi = /** @class */ (function (_super) {
8391
8391
  * @param {string | null} [city] City
8392
8392
  * @param {string | null} [postCode] Post Code
8393
8393
  * @param {number | null} [trunkId] Trunk ID
8394
- * @param {number | null} [tenantId] Starter Bundle ID
8394
+ * @param {string | null} [tenantId] Starter Bundle ID
8395
8395
  * @param {string | null} [requestedPortDate] Requested Port Date
8396
8396
  * @param {boolean | null} [asap] Port Date ASAP
8397
8397
  * @param {string | null} [comment] Comment
@@ -8413,7 +8413,7 @@ var NumberPortingApi = /** @class */ (function (_super) {
8413
8413
  * @param {string | null} [city] City
8414
8414
  * @param {string | null} [postCode] Post Code
8415
8415
  * @param {number | null} [trunkId] Trunk ID
8416
- * @param {number | null} [tenantId] Starter Bundle ID
8416
+ * @param {string | null} [tenantId] Starter Bundle ID
8417
8417
  * @param {string | null} [requestedPortDate] Requested Port Date
8418
8418
  * @param {boolean | null} [asap] Port Date ASAP
8419
8419
  * @param {string | null} [comment] Comment
@@ -12,7 +12,7 @@ Name | Type | Description | Notes
12
12
  **city** | **string** | City | [optional] [default to undefined]
13
13
  **postCode** | **string** | Post Code | [optional] [default to undefined]
14
14
  **trunkId** | **number** | Trunk ID | [optional] [default to undefined]
15
- **tenantId** | **number** | Starter Bundle ID | [optional] [default to undefined]
15
+ **tenantId** | **string** | Starter Bundle ID | [optional] [default to undefined]
16
16
  **requestedPortDate** | **string** | Requested Port Date | [optional] [default to undefined]
17
17
  **asap** | **boolean** | Port Date ASAP | [optional] [default to undefined]
18
18
  **comment** | **string** | Comment | [optional] [default to undefined]
@@ -312,7 +312,7 @@ let addressLine2: string; //Address Line 2 (optional) (default to undefined)
312
312
  let city: string; //City (optional) (default to undefined)
313
313
  let postCode: string; //Post Code (optional) (default to undefined)
314
314
  let trunkId: number; //Trunk ID (optional) (default to undefined)
315
- let tenantId: number; //Starter Bundle ID (optional) (default to undefined)
315
+ let tenantId: string; //Starter Bundle ID (optional) (default to undefined)
316
316
  let requestedPortDate: string; //Requested Port Date (optional) (default to undefined)
317
317
  let asap: boolean; //Port Date ASAP (optional) (default to undefined)
318
318
  let comment: string; //Comment (optional) (default to undefined)
@@ -345,7 +345,7 @@ const { status, data } = await apiInstance.postCreateNumberPort(
345
345
  | **city** | [**string**] | City | (optional) defaults to undefined|
346
346
  | **postCode** | [**string**] | Post Code | (optional) defaults to undefined|
347
347
  | **trunkId** | [**number**] | Trunk ID | (optional) defaults to undefined|
348
- | **tenantId** | [**number**] | Starter Bundle ID | (optional) defaults to undefined|
348
+ | **tenantId** | [**string**] | Starter Bundle ID | (optional) defaults to undefined|
349
349
  | **requestedPortDate** | [**string**] | Requested Port Date | (optional) defaults to undefined|
350
350
  | **asap** | [**boolean**] | Port Date ASAP | (optional) defaults to undefined|
351
351
  | **comment** | [**string**] | Comment | (optional) defaults to undefined|
@@ -399,7 +399,7 @@ let addressLine2: string; //Address Line 2 (optional) (default to undefined)
399
399
  let city: string; //City (optional) (default to undefined)
400
400
  let postCode: string; //Post Code (optional) (default to undefined)
401
401
  let trunkId: number; //Trunk ID (optional) (default to undefined)
402
- let tenantId: number; //Starter Bundle ID (optional) (default to undefined)
402
+ let tenantId: string; //Starter Bundle ID (optional) (default to undefined)
403
403
  let requestedPortDate: string; //Requested Port Date (optional) (default to undefined)
404
404
  let asap: boolean; //Port Date ASAP (optional) (default to undefined)
405
405
  let comment: string; //Comment (optional) (default to undefined)
@@ -434,7 +434,7 @@ const { status, data } = await apiInstance.postSubmitNumberPort(
434
434
  | **city** | [**string**] | City | (optional) defaults to undefined|
435
435
  | **postCode** | [**string**] | Post Code | (optional) defaults to undefined|
436
436
  | **trunkId** | [**number**] | Trunk ID | (optional) defaults to undefined|
437
- | **tenantId** | [**number**] | Starter Bundle ID | (optional) defaults to undefined|
437
+ | **tenantId** | [**string**] | Starter Bundle ID | (optional) defaults to undefined|
438
438
  | **requestedPortDate** | [**string**] | Requested Port Date | (optional) defaults to undefined|
439
439
  | **asap** | [**boolean**] | Port Date ASAP | (optional) defaults to undefined|
440
440
  | **comment** | [**string**] | Comment | (optional) defaults to undefined|
@@ -488,7 +488,7 @@ let addressLine2: string; //Address Line 2 (optional) (default to undefined)
488
488
  let city: string; //City (optional) (default to undefined)
489
489
  let postCode: string; //Post Code (optional) (default to undefined)
490
490
  let trunkId: number; //Trunk ID (optional) (default to undefined)
491
- let tenantId: number; //Starter Bundle ID (optional) (default to undefined)
491
+ let tenantId: string; //Starter Bundle ID (optional) (default to undefined)
492
492
  let requestedPortDate: string; //Requested Port Date (optional) (default to undefined)
493
493
  let asap: boolean; //Port Date ASAP (optional) (default to undefined)
494
494
  let comment: string; //Comment (optional) (default to undefined)
@@ -523,7 +523,7 @@ const { status, data } = await apiInstance.postUpdateNumberPort(
523
523
  | **city** | [**string**] | City | (optional) defaults to undefined|
524
524
  | **postCode** | [**string**] | Post Code | (optional) defaults to undefined|
525
525
  | **trunkId** | [**number**] | Trunk ID | (optional) defaults to undefined|
526
- | **tenantId** | [**number**] | Starter Bundle ID | (optional) defaults to undefined|
526
+ | **tenantId** | [**string**] | Starter Bundle ID | (optional) defaults to undefined|
527
527
  | **requestedPortDate** | [**string**] | Requested Port Date | (optional) defaults to undefined|
528
528
  | **asap** | [**boolean**] | Port Date ASAP | (optional) defaults to undefined|
529
529
  | **comment** | [**string**] | Comment | (optional) defaults to undefined|
@@ -577,7 +577,7 @@ let addressLine2: string; //Address Line 2 (optional) (default to undefined)
577
577
  let city: string; //City (optional) (default to undefined)
578
578
  let postCode: string; //Post Code (optional) (default to undefined)
579
579
  let trunkId: number; //Trunk ID (optional) (default to undefined)
580
- let tenantId: number; //Starter Bundle ID (optional) (default to undefined)
580
+ let tenantId: string; //Starter Bundle ID (optional) (default to undefined)
581
581
  let requestedPortDate: string; //Requested Port Date (optional) (default to undefined)
582
582
  let asap: boolean; //Port Date ASAP (optional) (default to undefined)
583
583
  let comment: string; //Comment (optional) (default to undefined)
@@ -620,7 +620,7 @@ const { status, data } = await apiInstance.putGetAdminNumberPort(
620
620
  | **city** | [**string**] | City | (optional) defaults to undefined|
621
621
  | **postCode** | [**string**] | Post Code | (optional) defaults to undefined|
622
622
  | **trunkId** | [**number**] | Trunk ID | (optional) defaults to undefined|
623
- | **tenantId** | [**number**] | Starter Bundle ID | (optional) defaults to undefined|
623
+ | **tenantId** | [**string**] | Starter Bundle ID | (optional) defaults to undefined|
624
624
  | **requestedPortDate** | [**string**] | Requested Port Date | (optional) defaults to undefined|
625
625
  | **asap** | [**boolean**] | Port Date ASAP | (optional) defaults to undefined|
626
626
  | **comment** | [**string**] | Comment | (optional) defaults to undefined|
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "yellowgrid-api-ts",
3
- "version": "3.2.7-dev.0",
3
+ "version": "3.2.9-dev.0",
4
4
  "description": "OpenAPI client for yellowgrid-api-ts",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {