yellowgrid-api-ts 3.2.4-dev.0 → 3.2.5-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 +24 -8
- package/dist/api.d.ts +17 -5
- package/dist/api.js +17 -10
- package/docs/NumberPortDTO.md +2 -0
- package/docs/NumberPortModel.md +2 -0
- package/docs/NumberPortingApi.md +3 -0
- package/docs/NumberPortsModel.md +1 -1
- package/package.json +1 -1
package/api.ts
CHANGED
|
@@ -2433,6 +2433,10 @@ export interface NumberPortDTO {
|
|
|
2433
2433
|
* Number Port ID
|
|
2434
2434
|
*/
|
|
2435
2435
|
'id'?: number;
|
|
2436
|
+
/**
|
|
2437
|
+
* Customer Name
|
|
2438
|
+
*/
|
|
2439
|
+
'customerName'?: string;
|
|
2436
2440
|
/**
|
|
2437
2441
|
* Porting Date
|
|
2438
2442
|
*/
|
|
@@ -2510,6 +2514,10 @@ export interface NumberPortModel {
|
|
|
2510
2514
|
* Ticket ID
|
|
2511
2515
|
*/
|
|
2512
2516
|
'ticketId'?: number | null;
|
|
2517
|
+
/**
|
|
2518
|
+
* Number Port Ranges
|
|
2519
|
+
*/
|
|
2520
|
+
'ranges'?: Array<any>;
|
|
2513
2521
|
/**
|
|
2514
2522
|
* Customer Company Name
|
|
2515
2523
|
*/
|
|
@@ -2576,7 +2584,7 @@ export interface NumberPortsModel {
|
|
|
2576
2584
|
/**
|
|
2577
2585
|
* Results
|
|
2578
2586
|
*/
|
|
2579
|
-
'results'?: Array<
|
|
2587
|
+
'results'?: Array<NumberPortDTO>;
|
|
2580
2588
|
/**
|
|
2581
2589
|
* Page
|
|
2582
2590
|
*/
|
|
@@ -13147,6 +13155,7 @@ export const NumberPortingApiAxiosParamCreator = function (configuration?: Confi
|
|
|
13147
13155
|
* @param {boolean | null} [asap] Port Date ASAP
|
|
13148
13156
|
* @param {string | null} [comment] Comment
|
|
13149
13157
|
* @param {number} [id2] Number Port ID
|
|
13158
|
+
* @param {string} [customerName] Customer Name
|
|
13150
13159
|
* @param {string} [portDate] Porting Date
|
|
13151
13160
|
* @param {Array<NumberPortRangeDTO>} [numberRanges] Number Ranges
|
|
13152
13161
|
* @param {number} [status] Status
|
|
@@ -13154,7 +13163,7 @@ export const NumberPortingApiAxiosParamCreator = function (configuration?: Confi
|
|
|
13154
13163
|
* @param {*} [options] Override http request option.
|
|
13155
13164
|
* @throws {RequiredError}
|
|
13156
13165
|
*/
|
|
13157
|
-
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, portDate?: string, numberRanges?: Array<NumberPortRangeDTO>, status?: number, ticketId?: number | null, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
13166
|
+
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> => {
|
|
13158
13167
|
// verify required parameter 'id' is not null or undefined
|
|
13159
13168
|
assertParamExists('putGetAdminNumberPort', 'id', id)
|
|
13160
13169
|
const localVarPath = `/admin/sip/numbers/ports/{id}`
|
|
@@ -13216,6 +13225,10 @@ export const NumberPortingApiAxiosParamCreator = function (configuration?: Confi
|
|
|
13216
13225
|
localVarFormParams.append('id', id2 as any);
|
|
13217
13226
|
}
|
|
13218
13227
|
|
|
13228
|
+
if (customerName !== undefined) {
|
|
13229
|
+
localVarFormParams.append('customerName', customerName as any);
|
|
13230
|
+
}
|
|
13231
|
+
|
|
13219
13232
|
if (portDate !== undefined) {
|
|
13220
13233
|
localVarFormParams.append('portDate', portDate as any);
|
|
13221
13234
|
}
|
|
@@ -13403,6 +13416,7 @@ export const NumberPortingApiFp = function(configuration?: Configuration) {
|
|
|
13403
13416
|
* @param {boolean | null} [asap] Port Date ASAP
|
|
13404
13417
|
* @param {string | null} [comment] Comment
|
|
13405
13418
|
* @param {number} [id2] Number Port ID
|
|
13419
|
+
* @param {string} [customerName] Customer Name
|
|
13406
13420
|
* @param {string} [portDate] Porting Date
|
|
13407
13421
|
* @param {Array<NumberPortRangeDTO>} [numberRanges] Number Ranges
|
|
13408
13422
|
* @param {number} [status] Status
|
|
@@ -13410,8 +13424,8 @@ export const NumberPortingApiFp = function(configuration?: Configuration) {
|
|
|
13410
13424
|
* @param {*} [options] Override http request option.
|
|
13411
13425
|
* @throws {RequiredError}
|
|
13412
13426
|
*/
|
|
13413
|
-
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, portDate?: string, numberRanges?: Array<NumberPortRangeDTO>, status?: number, ticketId?: number | null, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<NumberPortDTO>> {
|
|
13414
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.putGetAdminNumberPort(id, companyName, addressLine1, addressLine2, city, postCode, trunkId, tenantId, requestedPortDate, asap, comment, id2, portDate, numberRanges, status, ticketId, options);
|
|
13427
|
+
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>> {
|
|
13428
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.putGetAdminNumberPort(id, companyName, addressLine1, addressLine2, city, postCode, trunkId, tenantId, requestedPortDate, asap, comment, id2, customerName, portDate, numberRanges, status, ticketId, options);
|
|
13415
13429
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
13416
13430
|
const localVarOperationServerBasePath = operationServerMap['NumberPortingApi.putGetAdminNumberPort']?.[localVarOperationServerIndex]?.url;
|
|
13417
13431
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -13550,6 +13564,7 @@ export const NumberPortingApiFactory = function (configuration?: Configuration,
|
|
|
13550
13564
|
* @param {boolean | null} [asap] Port Date ASAP
|
|
13551
13565
|
* @param {string | null} [comment] Comment
|
|
13552
13566
|
* @param {number} [id2] Number Port ID
|
|
13567
|
+
* @param {string} [customerName] Customer Name
|
|
13553
13568
|
* @param {string} [portDate] Porting Date
|
|
13554
13569
|
* @param {Array<NumberPortRangeDTO>} [numberRanges] Number Ranges
|
|
13555
13570
|
* @param {number} [status] Status
|
|
@@ -13557,8 +13572,8 @@ export const NumberPortingApiFactory = function (configuration?: Configuration,
|
|
|
13557
13572
|
* @param {*} [options] Override http request option.
|
|
13558
13573
|
* @throws {RequiredError}
|
|
13559
13574
|
*/
|
|
13560
|
-
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, portDate?: string, numberRanges?: Array<NumberPortRangeDTO>, status?: number, ticketId?: number | null, options?: RawAxiosRequestConfig): AxiosPromise<NumberPortDTO> {
|
|
13561
|
-
return localVarFp.putGetAdminNumberPort(id, companyName, addressLine1, addressLine2, city, postCode, trunkId, tenantId, requestedPortDate, asap, comment, id2, portDate, numberRanges, status, ticketId, options).then((request) => request(axios, basePath));
|
|
13575
|
+
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> {
|
|
13576
|
+
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));
|
|
13562
13577
|
},
|
|
13563
13578
|
};
|
|
13564
13579
|
};
|
|
@@ -13700,6 +13715,7 @@ export class NumberPortingApi extends BaseAPI {
|
|
|
13700
13715
|
* @param {boolean | null} [asap] Port Date ASAP
|
|
13701
13716
|
* @param {string | null} [comment] Comment
|
|
13702
13717
|
* @param {number} [id2] Number Port ID
|
|
13718
|
+
* @param {string} [customerName] Customer Name
|
|
13703
13719
|
* @param {string} [portDate] Porting Date
|
|
13704
13720
|
* @param {Array<NumberPortRangeDTO>} [numberRanges] Number Ranges
|
|
13705
13721
|
* @param {number} [status] Status
|
|
@@ -13707,8 +13723,8 @@ export class NumberPortingApi extends BaseAPI {
|
|
|
13707
13723
|
* @param {*} [options] Override http request option.
|
|
13708
13724
|
* @throws {RequiredError}
|
|
13709
13725
|
*/
|
|
13710
|
-
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, portDate?: string, numberRanges?: Array<NumberPortRangeDTO>, status?: number, ticketId?: number | null, options?: RawAxiosRequestConfig) {
|
|
13711
|
-
return NumberPortingApiFp(this.configuration).putGetAdminNumberPort(id, companyName, addressLine1, addressLine2, city, postCode, trunkId, tenantId, requestedPortDate, asap, comment, id2, portDate, numberRanges, status, ticketId, options).then((request) => request(this.axios, this.basePath));
|
|
13726
|
+
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) {
|
|
13727
|
+
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));
|
|
13712
13728
|
}
|
|
13713
13729
|
}
|
|
13714
13730
|
|
package/dist/api.d.ts
CHANGED
|
@@ -2405,6 +2405,10 @@ export interface NumberPortDTO {
|
|
|
2405
2405
|
* Number Port ID
|
|
2406
2406
|
*/
|
|
2407
2407
|
'id'?: number;
|
|
2408
|
+
/**
|
|
2409
|
+
* Customer Name
|
|
2410
|
+
*/
|
|
2411
|
+
'customerName'?: string;
|
|
2408
2412
|
/**
|
|
2409
2413
|
* Porting Date
|
|
2410
2414
|
*/
|
|
@@ -2482,6 +2486,10 @@ export interface NumberPortModel {
|
|
|
2482
2486
|
* Ticket ID
|
|
2483
2487
|
*/
|
|
2484
2488
|
'ticketId'?: number | null;
|
|
2489
|
+
/**
|
|
2490
|
+
* Number Port Ranges
|
|
2491
|
+
*/
|
|
2492
|
+
'ranges'?: Array<any>;
|
|
2485
2493
|
/**
|
|
2486
2494
|
* Customer Company Name
|
|
2487
2495
|
*/
|
|
@@ -2548,7 +2556,7 @@ export interface NumberPortsModel {
|
|
|
2548
2556
|
/**
|
|
2549
2557
|
* Results
|
|
2550
2558
|
*/
|
|
2551
|
-
'results'?: Array<
|
|
2559
|
+
'results'?: Array<NumberPortDTO>;
|
|
2552
2560
|
/**
|
|
2553
2561
|
* Page
|
|
2554
2562
|
*/
|
|
@@ -9511,6 +9519,7 @@ export declare const NumberPortingApiAxiosParamCreator: (configuration?: Configu
|
|
|
9511
9519
|
* @param {boolean | null} [asap] Port Date ASAP
|
|
9512
9520
|
* @param {string | null} [comment] Comment
|
|
9513
9521
|
* @param {number} [id2] Number Port ID
|
|
9522
|
+
* @param {string} [customerName] Customer Name
|
|
9514
9523
|
* @param {string} [portDate] Porting Date
|
|
9515
9524
|
* @param {Array<NumberPortRangeDTO>} [numberRanges] Number Ranges
|
|
9516
9525
|
* @param {number} [status] Status
|
|
@@ -9518,7 +9527,7 @@ export declare const NumberPortingApiAxiosParamCreator: (configuration?: Configu
|
|
|
9518
9527
|
* @param {*} [options] Override http request option.
|
|
9519
9528
|
* @throws {RequiredError}
|
|
9520
9529
|
*/
|
|
9521
|
-
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, portDate?: string, numberRanges?: Array<NumberPortRangeDTO>, status?: number, ticketId?: number | null, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
9530
|
+
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>;
|
|
9522
9531
|
};
|
|
9523
9532
|
/**
|
|
9524
9533
|
* NumberPortingApi - functional programming interface
|
|
@@ -9633,6 +9642,7 @@ export declare const NumberPortingApiFp: (configuration?: Configuration) => {
|
|
|
9633
9642
|
* @param {boolean | null} [asap] Port Date ASAP
|
|
9634
9643
|
* @param {string | null} [comment] Comment
|
|
9635
9644
|
* @param {number} [id2] Number Port ID
|
|
9645
|
+
* @param {string} [customerName] Customer Name
|
|
9636
9646
|
* @param {string} [portDate] Porting Date
|
|
9637
9647
|
* @param {Array<NumberPortRangeDTO>} [numberRanges] Number Ranges
|
|
9638
9648
|
* @param {number} [status] Status
|
|
@@ -9640,7 +9650,7 @@ export declare const NumberPortingApiFp: (configuration?: Configuration) => {
|
|
|
9640
9650
|
* @param {*} [options] Override http request option.
|
|
9641
9651
|
* @throws {RequiredError}
|
|
9642
9652
|
*/
|
|
9643
|
-
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, portDate?: string, numberRanges?: Array<NumberPortRangeDTO>, status?: number, ticketId?: number | null, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<NumberPortDTO>>;
|
|
9653
|
+
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>>;
|
|
9644
9654
|
};
|
|
9645
9655
|
/**
|
|
9646
9656
|
* NumberPortingApi - factory interface
|
|
@@ -9755,6 +9765,7 @@ export declare const NumberPortingApiFactory: (configuration?: Configuration, ba
|
|
|
9755
9765
|
* @param {boolean | null} [asap] Port Date ASAP
|
|
9756
9766
|
* @param {string | null} [comment] Comment
|
|
9757
9767
|
* @param {number} [id2] Number Port ID
|
|
9768
|
+
* @param {string} [customerName] Customer Name
|
|
9758
9769
|
* @param {string} [portDate] Porting Date
|
|
9759
9770
|
* @param {Array<NumberPortRangeDTO>} [numberRanges] Number Ranges
|
|
9760
9771
|
* @param {number} [status] Status
|
|
@@ -9762,7 +9773,7 @@ export declare const NumberPortingApiFactory: (configuration?: Configuration, ba
|
|
|
9762
9773
|
* @param {*} [options] Override http request option.
|
|
9763
9774
|
* @throws {RequiredError}
|
|
9764
9775
|
*/
|
|
9765
|
-
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, portDate?: string, numberRanges?: Array<NumberPortRangeDTO>, status?: number, ticketId?: number | null, options?: RawAxiosRequestConfig): AxiosPromise<NumberPortDTO>;
|
|
9776
|
+
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>;
|
|
9766
9777
|
};
|
|
9767
9778
|
/**
|
|
9768
9779
|
* NumberPortingApi - object-oriented interface
|
|
@@ -9877,6 +9888,7 @@ export declare class NumberPortingApi extends BaseAPI {
|
|
|
9877
9888
|
* @param {boolean | null} [asap] Port Date ASAP
|
|
9878
9889
|
* @param {string | null} [comment] Comment
|
|
9879
9890
|
* @param {number} [id2] Number Port ID
|
|
9891
|
+
* @param {string} [customerName] Customer Name
|
|
9880
9892
|
* @param {string} [portDate] Porting Date
|
|
9881
9893
|
* @param {Array<NumberPortRangeDTO>} [numberRanges] Number Ranges
|
|
9882
9894
|
* @param {number} [status] Status
|
|
@@ -9884,7 +9896,7 @@ export declare class NumberPortingApi extends BaseAPI {
|
|
|
9884
9896
|
* @param {*} [options] Override http request option.
|
|
9885
9897
|
* @throws {RequiredError}
|
|
9886
9898
|
*/
|
|
9887
|
-
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, portDate?: string, numberRanges?: Array<NumberPortRangeDTO>, status?: number, ticketId?: number | null, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<NumberPortDTO, any, {}>>;
|
|
9899
|
+
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, {}>>;
|
|
9888
9900
|
}
|
|
9889
9901
|
/**
|
|
9890
9902
|
* OAuth20Api - axios parameter creator
|
package/dist/api.js
CHANGED
|
@@ -7778,6 +7778,7 @@ var NumberPortingApiAxiosParamCreator = function (configuration) {
|
|
|
7778
7778
|
* @param {boolean | null} [asap] Port Date ASAP
|
|
7779
7779
|
* @param {string | null} [comment] Comment
|
|
7780
7780
|
* @param {number} [id2] Number Port ID
|
|
7781
|
+
* @param {string} [customerName] Customer Name
|
|
7781
7782
|
* @param {string} [portDate] Porting Date
|
|
7782
7783
|
* @param {Array<NumberPortRangeDTO>} [numberRanges] Number Ranges
|
|
7783
7784
|
* @param {number} [status] Status
|
|
@@ -7785,12 +7786,12 @@ var NumberPortingApiAxiosParamCreator = function (configuration) {
|
|
|
7785
7786
|
* @param {*} [options] Override http request option.
|
|
7786
7787
|
* @throws {RequiredError}
|
|
7787
7788
|
*/
|
|
7788
|
-
putGetAdminNumberPort: function (id_1, companyName_1, addressLine1_1, addressLine2_1, city_1, postCode_1, trunkId_1, tenantId_1, requestedPortDate_1, asap_1, comment_1, id2_1, portDate_1, numberRanges_1, status_1, ticketId_1) {
|
|
7789
|
+
putGetAdminNumberPort: function (id_1, companyName_1, addressLine1_1, addressLine2_1, city_1, postCode_1, trunkId_1, tenantId_1, requestedPortDate_1, asap_1, comment_1, id2_1, customerName_1, portDate_1, numberRanges_1, status_1, ticketId_1) {
|
|
7789
7790
|
var args_1 = [];
|
|
7790
|
-
for (var _i =
|
|
7791
|
-
args_1[_i -
|
|
7791
|
+
for (var _i = 17; _i < arguments.length; _i++) {
|
|
7792
|
+
args_1[_i - 17] = arguments[_i];
|
|
7792
7793
|
}
|
|
7793
|
-
return __awaiter(_this, __spreadArray([id_1, companyName_1, addressLine1_1, addressLine2_1, city_1, postCode_1, trunkId_1, tenantId_1, requestedPortDate_1, asap_1, comment_1, id2_1, portDate_1, numberRanges_1, status_1, ticketId_1], args_1, true), void 0, function (id, companyName, addressLine1, addressLine2, city, postCode, trunkId, tenantId, requestedPortDate, asap, comment, id2, portDate, numberRanges, status, ticketId, options) {
|
|
7794
|
+
return __awaiter(_this, __spreadArray([id_1, companyName_1, addressLine1_1, addressLine2_1, city_1, postCode_1, trunkId_1, tenantId_1, requestedPortDate_1, asap_1, comment_1, id2_1, customerName_1, portDate_1, numberRanges_1, status_1, ticketId_1], args_1, true), void 0, function (id, companyName, addressLine1, addressLine2, city, postCode, trunkId, tenantId, requestedPortDate, asap, comment, id2, customerName, portDate, numberRanges, status, ticketId, options) {
|
|
7794
7795
|
var localVarPath, localVarUrlObj, baseOptions, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, localVarFormParams, headersFromBaseOptions;
|
|
7795
7796
|
if (options === void 0) { options = {}; }
|
|
7796
7797
|
return __generator(this, function (_a) {
|
|
@@ -7839,6 +7840,9 @@ var NumberPortingApiAxiosParamCreator = function (configuration) {
|
|
|
7839
7840
|
if (id2 !== undefined) {
|
|
7840
7841
|
localVarFormParams.append('id', id2);
|
|
7841
7842
|
}
|
|
7843
|
+
if (customerName !== undefined) {
|
|
7844
|
+
localVarFormParams.append('customerName', customerName);
|
|
7845
|
+
}
|
|
7842
7846
|
if (portDate !== undefined) {
|
|
7843
7847
|
localVarFormParams.append('portDate', portDate);
|
|
7844
7848
|
}
|
|
@@ -8101,6 +8105,7 @@ var NumberPortingApiFp = function (configuration) {
|
|
|
8101
8105
|
* @param {boolean | null} [asap] Port Date ASAP
|
|
8102
8106
|
* @param {string | null} [comment] Comment
|
|
8103
8107
|
* @param {number} [id2] Number Port ID
|
|
8108
|
+
* @param {string} [customerName] Customer Name
|
|
8104
8109
|
* @param {string} [portDate] Porting Date
|
|
8105
8110
|
* @param {Array<NumberPortRangeDTO>} [numberRanges] Number Ranges
|
|
8106
8111
|
* @param {number} [status] Status
|
|
@@ -8108,13 +8113,13 @@ var NumberPortingApiFp = function (configuration) {
|
|
|
8108
8113
|
* @param {*} [options] Override http request option.
|
|
8109
8114
|
* @throws {RequiredError}
|
|
8110
8115
|
*/
|
|
8111
|
-
putGetAdminNumberPort: function (id, companyName, addressLine1, addressLine2, city, postCode, trunkId, tenantId, requestedPortDate, asap, comment, id2, portDate, numberRanges, status, ticketId, options) {
|
|
8116
|
+
putGetAdminNumberPort: function (id, companyName, addressLine1, addressLine2, city, postCode, trunkId, tenantId, requestedPortDate, asap, comment, id2, customerName, portDate, numberRanges, status, ticketId, options) {
|
|
8112
8117
|
return __awaiter(this, void 0, void 0, function () {
|
|
8113
8118
|
var localVarAxiosArgs, localVarOperationServerIndex, localVarOperationServerBasePath;
|
|
8114
8119
|
var _a, _b, _c;
|
|
8115
8120
|
return __generator(this, function (_d) {
|
|
8116
8121
|
switch (_d.label) {
|
|
8117
|
-
case 0: return [4 /*yield*/, localVarAxiosParamCreator.putGetAdminNumberPort(id, companyName, addressLine1, addressLine2, city, postCode, trunkId, tenantId, requestedPortDate, asap, comment, id2, portDate, numberRanges, status, ticketId, options)];
|
|
8122
|
+
case 0: return [4 /*yield*/, localVarAxiosParamCreator.putGetAdminNumberPort(id, companyName, addressLine1, addressLine2, city, postCode, trunkId, tenantId, requestedPortDate, asap, comment, id2, customerName, portDate, numberRanges, status, ticketId, options)];
|
|
8118
8123
|
case 1:
|
|
8119
8124
|
localVarAxiosArgs = _d.sent();
|
|
8120
8125
|
localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
@@ -8258,6 +8263,7 @@ var NumberPortingApiFactory = function (configuration, basePath, axios) {
|
|
|
8258
8263
|
* @param {boolean | null} [asap] Port Date ASAP
|
|
8259
8264
|
* @param {string | null} [comment] Comment
|
|
8260
8265
|
* @param {number} [id2] Number Port ID
|
|
8266
|
+
* @param {string} [customerName] Customer Name
|
|
8261
8267
|
* @param {string} [portDate] Porting Date
|
|
8262
8268
|
* @param {Array<NumberPortRangeDTO>} [numberRanges] Number Ranges
|
|
8263
8269
|
* @param {number} [status] Status
|
|
@@ -8265,8 +8271,8 @@ var NumberPortingApiFactory = function (configuration, basePath, axios) {
|
|
|
8265
8271
|
* @param {*} [options] Override http request option.
|
|
8266
8272
|
* @throws {RequiredError}
|
|
8267
8273
|
*/
|
|
8268
|
-
putGetAdminNumberPort: function (id, companyName, addressLine1, addressLine2, city, postCode, trunkId, tenantId, requestedPortDate, asap, comment, id2, portDate, numberRanges, status, ticketId, options) {
|
|
8269
|
-
return localVarFp.putGetAdminNumberPort(id, companyName, addressLine1, addressLine2, city, postCode, trunkId, tenantId, requestedPortDate, asap, comment, id2, portDate, numberRanges, status, ticketId, options).then(function (request) { return request(axios, basePath); });
|
|
8274
|
+
putGetAdminNumberPort: function (id, companyName, addressLine1, addressLine2, city, postCode, trunkId, tenantId, requestedPortDate, asap, comment, id2, customerName, portDate, numberRanges, status, ticketId, options) {
|
|
8275
|
+
return localVarFp.putGetAdminNumberPort(id, companyName, addressLine1, addressLine2, city, postCode, trunkId, tenantId, requestedPortDate, asap, comment, id2, customerName, portDate, numberRanges, status, ticketId, options).then(function (request) { return request(axios, basePath); });
|
|
8270
8276
|
},
|
|
8271
8277
|
};
|
|
8272
8278
|
};
|
|
@@ -8412,6 +8418,7 @@ var NumberPortingApi = /** @class */ (function (_super) {
|
|
|
8412
8418
|
* @param {boolean | null} [asap] Port Date ASAP
|
|
8413
8419
|
* @param {string | null} [comment] Comment
|
|
8414
8420
|
* @param {number} [id2] Number Port ID
|
|
8421
|
+
* @param {string} [customerName] Customer Name
|
|
8415
8422
|
* @param {string} [portDate] Porting Date
|
|
8416
8423
|
* @param {Array<NumberPortRangeDTO>} [numberRanges] Number Ranges
|
|
8417
8424
|
* @param {number} [status] Status
|
|
@@ -8419,9 +8426,9 @@ var NumberPortingApi = /** @class */ (function (_super) {
|
|
|
8419
8426
|
* @param {*} [options] Override http request option.
|
|
8420
8427
|
* @throws {RequiredError}
|
|
8421
8428
|
*/
|
|
8422
|
-
NumberPortingApi.prototype.putGetAdminNumberPort = function (id, companyName, addressLine1, addressLine2, city, postCode, trunkId, tenantId, requestedPortDate, asap, comment, id2, portDate, numberRanges, status, ticketId, options) {
|
|
8429
|
+
NumberPortingApi.prototype.putGetAdminNumberPort = function (id, companyName, addressLine1, addressLine2, city, postCode, trunkId, tenantId, requestedPortDate, asap, comment, id2, customerName, portDate, numberRanges, status, ticketId, options) {
|
|
8423
8430
|
var _this = this;
|
|
8424
|
-
return (0, exports.NumberPortingApiFp)(this.configuration).putGetAdminNumberPort(id, companyName, addressLine1, addressLine2, city, postCode, trunkId, tenantId, requestedPortDate, asap, comment, id2, portDate, numberRanges, status, ticketId, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
8431
|
+
return (0, exports.NumberPortingApiFp)(this.configuration).putGetAdminNumberPort(id, companyName, addressLine1, addressLine2, city, postCode, trunkId, tenantId, requestedPortDate, asap, comment, id2, customerName, portDate, numberRanges, status, ticketId, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
8425
8432
|
};
|
|
8426
8433
|
return NumberPortingApi;
|
|
8427
8434
|
}(base_1.BaseAPI));
|
package/docs/NumberPortDTO.md
CHANGED
|
@@ -17,6 +17,7 @@ Name | Type | Description | Notes
|
|
|
17
17
|
**asap** | **boolean** | Port Date ASAP | [optional] [default to undefined]
|
|
18
18
|
**comment** | **string** | Comment | [optional] [default to undefined]
|
|
19
19
|
**id** | **number** | Number Port ID | [optional] [default to undefined]
|
|
20
|
+
**customerName** | **string** | Customer Name | [optional] [default to undefined]
|
|
20
21
|
**portDate** | **string** | Porting Date | [optional] [default to undefined]
|
|
21
22
|
**numberRanges** | [**Array<NumberPortRangeDTO>**](NumberPortRangeDTO.md) | Number Ranges | [optional] [default to undefined]
|
|
22
23
|
**status** | **number** | Status | [optional] [default to undefined]
|
|
@@ -39,6 +40,7 @@ const instance: NumberPortDTO = {
|
|
|
39
40
|
asap,
|
|
40
41
|
comment,
|
|
41
42
|
id,
|
|
43
|
+
customerName,
|
|
42
44
|
portDate,
|
|
43
45
|
numberRanges,
|
|
44
46
|
status,
|
package/docs/NumberPortModel.md
CHANGED
|
@@ -20,6 +20,7 @@ Name | Type | Description | Notes
|
|
|
20
20
|
**comment** | **string** | Comment | [optional] [default to undefined]
|
|
21
21
|
**status** | **number** | Status | [optional] [default to undefined]
|
|
22
22
|
**ticketId** | **number** | Ticket ID | [optional] [default to undefined]
|
|
23
|
+
**ranges** | **Array<any>** | Number Port Ranges | [optional] [default to undefined]
|
|
23
24
|
**customerName** | **string** | Customer Company Name | [optional] [default to undefined]
|
|
24
25
|
|
|
25
26
|
## Example
|
|
@@ -42,6 +43,7 @@ const instance: NumberPortModel = {
|
|
|
42
43
|
comment,
|
|
43
44
|
status,
|
|
44
45
|
ticketId,
|
|
46
|
+
ranges,
|
|
45
47
|
customerName,
|
|
46
48
|
};
|
|
47
49
|
```
|
package/docs/NumberPortingApi.md
CHANGED
|
@@ -582,6 +582,7 @@ let requestedPortDate: string; //Requested Port Date (optional) (default to unde
|
|
|
582
582
|
let asap: boolean; //Port Date ASAP (optional) (default to undefined)
|
|
583
583
|
let comment: string; //Comment (optional) (default to undefined)
|
|
584
584
|
let id2: number; //Number Port ID (optional) (default to undefined)
|
|
585
|
+
let customerName: string; //Customer Name (optional) (default to undefined)
|
|
585
586
|
let portDate: string; //Porting Date (optional) (default to undefined)
|
|
586
587
|
let numberRanges: Array<NumberPortRangeDTO>; //Number Ranges (optional) (default to undefined)
|
|
587
588
|
let status: number; //Status (optional) (default to undefined)
|
|
@@ -600,6 +601,7 @@ const { status, data } = await apiInstance.putGetAdminNumberPort(
|
|
|
600
601
|
asap,
|
|
601
602
|
comment,
|
|
602
603
|
id2,
|
|
604
|
+
customerName,
|
|
603
605
|
portDate,
|
|
604
606
|
numberRanges,
|
|
605
607
|
status,
|
|
@@ -623,6 +625,7 @@ const { status, data } = await apiInstance.putGetAdminNumberPort(
|
|
|
623
625
|
| **asap** | [**boolean**] | Port Date ASAP | (optional) defaults to undefined|
|
|
624
626
|
| **comment** | [**string**] | Comment | (optional) defaults to undefined|
|
|
625
627
|
| **id2** | [**number**] | Number Port ID | (optional) defaults to undefined|
|
|
628
|
+
| **customerName** | [**string**] | Customer Name | (optional) defaults to undefined|
|
|
626
629
|
| **portDate** | [**string**] | Porting Date | (optional) defaults to undefined|
|
|
627
630
|
| **numberRanges** | **Array<NumberPortRangeDTO>** | Number Ranges | (optional) defaults to undefined|
|
|
628
631
|
| **status** | [**number**] | Status | (optional) defaults to undefined|
|
package/docs/NumberPortsModel.md
CHANGED
|
@@ -6,7 +6,7 @@ Number Ports
|
|
|
6
6
|
|
|
7
7
|
Name | Type | Description | Notes
|
|
8
8
|
------------ | ------------- | ------------- | -------------
|
|
9
|
-
**results** | [**Array<
|
|
9
|
+
**results** | [**Array<NumberPortDTO>**](NumberPortDTO.md) | Results | [optional] [default to undefined]
|
|
10
10
|
**page** | **number** | Page | [optional] [default to undefined]
|
|
11
11
|
**perPage** | **number** | Per Page | [optional] [default to undefined]
|
|
12
12
|
**totalResults** | **number** | Total Results | [optional] [default to undefined]
|