@vbasoftware/vbapi-vbasoftware-typescript-axios 1.20231129.1 → 1.20231209.1
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/.openapi-generator/FILES +3 -0
- package/api/commission-agency-rep-rates-api.ts +56 -85
- package/api/commission-agency-reps-api.ts +70 -109
- package/api/prem-invoice-list-api.ts +166 -0
- package/api.ts +1 -0
- package/models/company-data.ts +12 -0
- package/models/index.ts +2 -0
- package/models/plan-type.ts +6 -0
- package/models/prem-invoice-individual-list-vbaresponse.ts +45 -0
- package/models/prem-invoice-individual.ts +102 -0
- package/models/prem-invoice.ts +6 -0
- package/models/state-interest.ts +6 -6
- package/package.json +1 -1
package/.openapi-generator/FILES
CHANGED
|
@@ -573,6 +573,7 @@ api/plans-api.ts
|
|
|
573
573
|
api/policy-forfeiture-ext-api.ts
|
|
574
574
|
api/policy-forfeiture-ext-details-api.ts
|
|
575
575
|
api/policy-statuses-api.ts
|
|
576
|
+
api/prem-invoice-list-api.ts
|
|
576
577
|
api/prem-rate-types-api.ts
|
|
577
578
|
api/premium-claim-api.ts
|
|
578
579
|
api/premium-distributions-api.ts
|
|
@@ -2454,6 +2455,8 @@ models/prem-invoice-adjustment-vbaresponse.ts
|
|
|
2454
2455
|
models/prem-invoice-adjustment.ts
|
|
2455
2456
|
models/prem-invoice-group-summary-vbaresponse.ts
|
|
2456
2457
|
models/prem-invoice-group-summary.ts
|
|
2458
|
+
models/prem-invoice-individual-list-vbaresponse.ts
|
|
2459
|
+
models/prem-invoice-individual.ts
|
|
2457
2460
|
models/prem-invoice-list-vbaresponse.ts
|
|
2458
2461
|
models/prem-invoice-payment-ext-list-vbaresponse.ts
|
|
2459
2462
|
models/prem-invoice-payment-ext.ts
|
|
@@ -38,20 +38,16 @@ export const CommissionAgencyRepRatesApiAxiosParamCreator = function (configurat
|
|
|
38
38
|
* Creates a new CommissionAgencyRepRate
|
|
39
39
|
* @summary Create CommissionAgencyRepRate
|
|
40
40
|
* @param {string} vbasoftwareDatabase Target database
|
|
41
|
-
* @param {number} commRateKey CommissionRate Key
|
|
42
41
|
* @param {CommissionAgencyRepRate} commissionAgencyRepRate
|
|
43
42
|
* @param {*} [options] Override http request option.
|
|
44
43
|
* @throws {RequiredError}
|
|
45
44
|
*/
|
|
46
|
-
createCommissionAgencyRepRate: async (vbasoftwareDatabase: string,
|
|
45
|
+
createCommissionAgencyRepRate: async (vbasoftwareDatabase: string, commissionAgencyRepRate: CommissionAgencyRepRate, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
47
46
|
// verify required parameter 'vbasoftwareDatabase' is not null or undefined
|
|
48
47
|
assertParamExists('createCommissionAgencyRepRate', 'vbasoftwareDatabase', vbasoftwareDatabase)
|
|
49
|
-
// verify required parameter 'commRateKey' is not null or undefined
|
|
50
|
-
assertParamExists('createCommissionAgencyRepRate', 'commRateKey', commRateKey)
|
|
51
48
|
// verify required parameter 'commissionAgencyRepRate' is not null or undefined
|
|
52
49
|
assertParamExists('createCommissionAgencyRepRate', 'commissionAgencyRepRate', commissionAgencyRepRate)
|
|
53
|
-
const localVarPath = `/commission-
|
|
54
|
-
.replace(`{${"commRateKey"}}`, encodeURIComponent(String(commRateKey)));
|
|
50
|
+
const localVarPath = `/commission-agency-rep-rates`;
|
|
55
51
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
56
52
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
57
53
|
let baseOptions;
|
|
@@ -92,20 +88,16 @@ export const CommissionAgencyRepRatesApiAxiosParamCreator = function (configurat
|
|
|
92
88
|
* Deletes an CommissionAgencyRepRate
|
|
93
89
|
* @summary Delete CommissionAgencyRepRate
|
|
94
90
|
* @param {string} vbasoftwareDatabase Target database
|
|
95
|
-
* @param {number} commRateKey CommissionRate Key
|
|
96
91
|
* @param {number} commAgencyRepRateKey CommissionAgencyRepRate Key
|
|
97
92
|
* @param {*} [options] Override http request option.
|
|
98
93
|
* @throws {RequiredError}
|
|
99
94
|
*/
|
|
100
|
-
deleteCommissionAgencyRepRate: async (vbasoftwareDatabase: string,
|
|
95
|
+
deleteCommissionAgencyRepRate: async (vbasoftwareDatabase: string, commAgencyRepRateKey: number, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
101
96
|
// verify required parameter 'vbasoftwareDatabase' is not null or undefined
|
|
102
97
|
assertParamExists('deleteCommissionAgencyRepRate', 'vbasoftwareDatabase', vbasoftwareDatabase)
|
|
103
|
-
// verify required parameter 'commRateKey' is not null or undefined
|
|
104
|
-
assertParamExists('deleteCommissionAgencyRepRate', 'commRateKey', commRateKey)
|
|
105
98
|
// verify required parameter 'commAgencyRepRateKey' is not null or undefined
|
|
106
99
|
assertParamExists('deleteCommissionAgencyRepRate', 'commAgencyRepRateKey', commAgencyRepRateKey)
|
|
107
|
-
const localVarPath = `/commission-
|
|
108
|
-
.replace(`{${"commRateKey"}}`, encodeURIComponent(String(commRateKey)))
|
|
100
|
+
const localVarPath = `/commission-agency-rep-rates/{commAgencyRepRateKey}`
|
|
109
101
|
.replace(`{${"commAgencyRepRateKey"}}`, encodeURIComponent(String(commAgencyRepRateKey)));
|
|
110
102
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
111
103
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -144,17 +136,16 @@ export const CommissionAgencyRepRatesApiAxiosParamCreator = function (configurat
|
|
|
144
136
|
* Deletes an CommissionAgencyRepRate by Agent
|
|
145
137
|
* @summary Delete CommissionAgencyRepRate by Agent
|
|
146
138
|
* @param {string} vbasoftwareDatabase Target database
|
|
147
|
-
* @param {number}
|
|
139
|
+
* @param {number} commissionAgencyRepKey CommissionAgencyRep Key
|
|
148
140
|
* @param {*} [options] Override http request option.
|
|
149
141
|
* @throws {RequiredError}
|
|
150
142
|
*/
|
|
151
|
-
deleteCommissionAgencyRepRateByAgent: async (vbasoftwareDatabase: string,
|
|
143
|
+
deleteCommissionAgencyRepRateByAgent: async (vbasoftwareDatabase: string, commissionAgencyRepKey: number, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
152
144
|
// verify required parameter 'vbasoftwareDatabase' is not null or undefined
|
|
153
145
|
assertParamExists('deleteCommissionAgencyRepRateByAgent', 'vbasoftwareDatabase', vbasoftwareDatabase)
|
|
154
|
-
// verify required parameter '
|
|
155
|
-
assertParamExists('deleteCommissionAgencyRepRateByAgent', '
|
|
156
|
-
const localVarPath = `/commission-agency-rep-rates
|
|
157
|
-
.replace(`{${"commAgencyRepRateKey"}}`, encodeURIComponent(String(commAgencyRepRateKey)));
|
|
146
|
+
// verify required parameter 'commissionAgencyRepKey' is not null or undefined
|
|
147
|
+
assertParamExists('deleteCommissionAgencyRepRateByAgent', 'commissionAgencyRepKey', commissionAgencyRepKey)
|
|
148
|
+
const localVarPath = `/commission-agency-rep-rates`;
|
|
158
149
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
159
150
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
160
151
|
let baseOptions;
|
|
@@ -173,6 +164,10 @@ export const CommissionAgencyRepRatesApiAxiosParamCreator = function (configurat
|
|
|
173
164
|
// http bearer authentication required
|
|
174
165
|
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
175
166
|
|
|
167
|
+
if (commissionAgencyRepKey !== undefined) {
|
|
168
|
+
localVarQueryParameter['commissionAgencyRepKey'] = commissionAgencyRepKey;
|
|
169
|
+
}
|
|
170
|
+
|
|
176
171
|
if (vbasoftwareDatabase !== undefined && vbasoftwareDatabase !== null) {
|
|
177
172
|
localVarHeaderParameter['vbasoftware-database'] = String(vbasoftwareDatabase);
|
|
178
173
|
}
|
|
@@ -192,20 +187,16 @@ export const CommissionAgencyRepRatesApiAxiosParamCreator = function (configurat
|
|
|
192
187
|
* Gets CommissionAgencyRepRate
|
|
193
188
|
* @summary Get CommissionAgencyRepRate
|
|
194
189
|
* @param {string} vbasoftwareDatabase Target database
|
|
195
|
-
* @param {number} commRateKey CommissionRate Key
|
|
196
190
|
* @param {number} commAgencyRepRateKey CommissionAgencyRepRate Key
|
|
197
191
|
* @param {*} [options] Override http request option.
|
|
198
192
|
* @throws {RequiredError}
|
|
199
193
|
*/
|
|
200
|
-
getCommissionAgencyRepRate: async (vbasoftwareDatabase: string,
|
|
194
|
+
getCommissionAgencyRepRate: async (vbasoftwareDatabase: string, commAgencyRepRateKey: number, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
201
195
|
// verify required parameter 'vbasoftwareDatabase' is not null or undefined
|
|
202
196
|
assertParamExists('getCommissionAgencyRepRate', 'vbasoftwareDatabase', vbasoftwareDatabase)
|
|
203
|
-
// verify required parameter 'commRateKey' is not null or undefined
|
|
204
|
-
assertParamExists('getCommissionAgencyRepRate', 'commRateKey', commRateKey)
|
|
205
197
|
// verify required parameter 'commAgencyRepRateKey' is not null or undefined
|
|
206
198
|
assertParamExists('getCommissionAgencyRepRate', 'commAgencyRepRateKey', commAgencyRepRateKey)
|
|
207
|
-
const localVarPath = `/commission-
|
|
208
|
-
.replace(`{${"commRateKey"}}`, encodeURIComponent(String(commRateKey)))
|
|
199
|
+
const localVarPath = `/commission-agency-rep-rates/{commAgencyRepRateKey}`
|
|
209
200
|
.replace(`{${"commAgencyRepRateKey"}}`, encodeURIComponent(String(commAgencyRepRateKey)));
|
|
210
201
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
211
202
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -356,23 +347,19 @@ export const CommissionAgencyRepRatesApiAxiosParamCreator = function (configurat
|
|
|
356
347
|
* Updates a specific CommissionAgencyRepRate.
|
|
357
348
|
* @summary Update CommissionAgencyRepRate
|
|
358
349
|
* @param {string} vbasoftwareDatabase Target database
|
|
359
|
-
* @param {number} commRateKey CommissionRate Key
|
|
360
350
|
* @param {number} commAgencyRepRateKey CommissionAgencyRepRate Key
|
|
361
351
|
* @param {CommissionAgencyRepRate} commissionAgencyRepRate
|
|
362
352
|
* @param {*} [options] Override http request option.
|
|
363
353
|
* @throws {RequiredError}
|
|
364
354
|
*/
|
|
365
|
-
updateCommissionAgencyRepRate: async (vbasoftwareDatabase: string,
|
|
355
|
+
updateCommissionAgencyRepRate: async (vbasoftwareDatabase: string, commAgencyRepRateKey: number, commissionAgencyRepRate: CommissionAgencyRepRate, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
366
356
|
// verify required parameter 'vbasoftwareDatabase' is not null or undefined
|
|
367
357
|
assertParamExists('updateCommissionAgencyRepRate', 'vbasoftwareDatabase', vbasoftwareDatabase)
|
|
368
|
-
// verify required parameter 'commRateKey' is not null or undefined
|
|
369
|
-
assertParamExists('updateCommissionAgencyRepRate', 'commRateKey', commRateKey)
|
|
370
358
|
// verify required parameter 'commAgencyRepRateKey' is not null or undefined
|
|
371
359
|
assertParamExists('updateCommissionAgencyRepRate', 'commAgencyRepRateKey', commAgencyRepRateKey)
|
|
372
360
|
// verify required parameter 'commissionAgencyRepRate' is not null or undefined
|
|
373
361
|
assertParamExists('updateCommissionAgencyRepRate', 'commissionAgencyRepRate', commissionAgencyRepRate)
|
|
374
|
-
const localVarPath = `/commission-
|
|
375
|
-
.replace(`{${"commRateKey"}}`, encodeURIComponent(String(commRateKey)))
|
|
362
|
+
const localVarPath = `/commission-agency-rep-rates/{commAgencyRepRateKey}`
|
|
376
363
|
.replace(`{${"commAgencyRepRateKey"}}`, encodeURIComponent(String(commAgencyRepRateKey)));
|
|
377
364
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
378
365
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -424,51 +411,48 @@ export const CommissionAgencyRepRatesApiFp = function(configuration?: Configurat
|
|
|
424
411
|
* Creates a new CommissionAgencyRepRate
|
|
425
412
|
* @summary Create CommissionAgencyRepRate
|
|
426
413
|
* @param {string} vbasoftwareDatabase Target database
|
|
427
|
-
* @param {number} commRateKey CommissionRate Key
|
|
428
414
|
* @param {CommissionAgencyRepRate} commissionAgencyRepRate
|
|
429
415
|
* @param {*} [options] Override http request option.
|
|
430
416
|
* @throws {RequiredError}
|
|
431
417
|
*/
|
|
432
|
-
async createCommissionAgencyRepRate(vbasoftwareDatabase: string,
|
|
433
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.createCommissionAgencyRepRate(vbasoftwareDatabase,
|
|
418
|
+
async createCommissionAgencyRepRate(vbasoftwareDatabase: string, commissionAgencyRepRate: CommissionAgencyRepRate, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CommissionAgencyRepRateVBAResponse>> {
|
|
419
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.createCommissionAgencyRepRate(vbasoftwareDatabase, commissionAgencyRepRate, options);
|
|
434
420
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
435
421
|
},
|
|
436
422
|
/**
|
|
437
423
|
* Deletes an CommissionAgencyRepRate
|
|
438
424
|
* @summary Delete CommissionAgencyRepRate
|
|
439
425
|
* @param {string} vbasoftwareDatabase Target database
|
|
440
|
-
* @param {number} commRateKey CommissionRate Key
|
|
441
426
|
* @param {number} commAgencyRepRateKey CommissionAgencyRepRate Key
|
|
442
427
|
* @param {*} [options] Override http request option.
|
|
443
428
|
* @throws {RequiredError}
|
|
444
429
|
*/
|
|
445
|
-
async deleteCommissionAgencyRepRate(vbasoftwareDatabase: string,
|
|
446
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.deleteCommissionAgencyRepRate(vbasoftwareDatabase,
|
|
430
|
+
async deleteCommissionAgencyRepRate(vbasoftwareDatabase: string, commAgencyRepRateKey: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>> {
|
|
431
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.deleteCommissionAgencyRepRate(vbasoftwareDatabase, commAgencyRepRateKey, options);
|
|
447
432
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
448
433
|
},
|
|
449
434
|
/**
|
|
450
435
|
* Deletes an CommissionAgencyRepRate by Agent
|
|
451
436
|
* @summary Delete CommissionAgencyRepRate by Agent
|
|
452
437
|
* @param {string} vbasoftwareDatabase Target database
|
|
453
|
-
* @param {number}
|
|
438
|
+
* @param {number} commissionAgencyRepKey CommissionAgencyRep Key
|
|
454
439
|
* @param {*} [options] Override http request option.
|
|
455
440
|
* @throws {RequiredError}
|
|
456
441
|
*/
|
|
457
|
-
async deleteCommissionAgencyRepRateByAgent(vbasoftwareDatabase: string,
|
|
458
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.deleteCommissionAgencyRepRateByAgent(vbasoftwareDatabase,
|
|
442
|
+
async deleteCommissionAgencyRepRateByAgent(vbasoftwareDatabase: string, commissionAgencyRepKey: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>> {
|
|
443
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.deleteCommissionAgencyRepRateByAgent(vbasoftwareDatabase, commissionAgencyRepKey, options);
|
|
459
444
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
460
445
|
},
|
|
461
446
|
/**
|
|
462
447
|
* Gets CommissionAgencyRepRate
|
|
463
448
|
* @summary Get CommissionAgencyRepRate
|
|
464
449
|
* @param {string} vbasoftwareDatabase Target database
|
|
465
|
-
* @param {number} commRateKey CommissionRate Key
|
|
466
450
|
* @param {number} commAgencyRepRateKey CommissionAgencyRepRate Key
|
|
467
451
|
* @param {*} [options] Override http request option.
|
|
468
452
|
* @throws {RequiredError}
|
|
469
453
|
*/
|
|
470
|
-
async getCommissionAgencyRepRate(vbasoftwareDatabase: string,
|
|
471
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.getCommissionAgencyRepRate(vbasoftwareDatabase,
|
|
454
|
+
async getCommissionAgencyRepRate(vbasoftwareDatabase: string, commAgencyRepRateKey: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CommissionAgencyRepRateVBAResponse>> {
|
|
455
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.getCommissionAgencyRepRate(vbasoftwareDatabase, commAgencyRepRateKey, options);
|
|
472
456
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
473
457
|
},
|
|
474
458
|
/**
|
|
@@ -502,14 +486,13 @@ export const CommissionAgencyRepRatesApiFp = function(configuration?: Configurat
|
|
|
502
486
|
* Updates a specific CommissionAgencyRepRate.
|
|
503
487
|
* @summary Update CommissionAgencyRepRate
|
|
504
488
|
* @param {string} vbasoftwareDatabase Target database
|
|
505
|
-
* @param {number} commRateKey CommissionRate Key
|
|
506
489
|
* @param {number} commAgencyRepRateKey CommissionAgencyRepRate Key
|
|
507
490
|
* @param {CommissionAgencyRepRate} commissionAgencyRepRate
|
|
508
491
|
* @param {*} [options] Override http request option.
|
|
509
492
|
* @throws {RequiredError}
|
|
510
493
|
*/
|
|
511
|
-
async updateCommissionAgencyRepRate(vbasoftwareDatabase: string,
|
|
512
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.updateCommissionAgencyRepRate(vbasoftwareDatabase,
|
|
494
|
+
async updateCommissionAgencyRepRate(vbasoftwareDatabase: string, commAgencyRepRateKey: number, commissionAgencyRepRate: CommissionAgencyRepRate, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CommissionAgencyRepRateVBAResponse>> {
|
|
495
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.updateCommissionAgencyRepRate(vbasoftwareDatabase, commAgencyRepRateKey, commissionAgencyRepRate, options);
|
|
513
496
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
514
497
|
},
|
|
515
498
|
}
|
|
@@ -526,48 +509,45 @@ export const CommissionAgencyRepRatesApiFactory = function (configuration?: Conf
|
|
|
526
509
|
* Creates a new CommissionAgencyRepRate
|
|
527
510
|
* @summary Create CommissionAgencyRepRate
|
|
528
511
|
* @param {string} vbasoftwareDatabase Target database
|
|
529
|
-
* @param {number} commRateKey CommissionRate Key
|
|
530
512
|
* @param {CommissionAgencyRepRate} commissionAgencyRepRate
|
|
531
513
|
* @param {*} [options] Override http request option.
|
|
532
514
|
* @throws {RequiredError}
|
|
533
515
|
*/
|
|
534
|
-
createCommissionAgencyRepRate(vbasoftwareDatabase: string,
|
|
535
|
-
return localVarFp.createCommissionAgencyRepRate(vbasoftwareDatabase,
|
|
516
|
+
createCommissionAgencyRepRate(vbasoftwareDatabase: string, commissionAgencyRepRate: CommissionAgencyRepRate, options?: any): AxiosPromise<CommissionAgencyRepRateVBAResponse> {
|
|
517
|
+
return localVarFp.createCommissionAgencyRepRate(vbasoftwareDatabase, commissionAgencyRepRate, options).then((request) => request(axios, basePath));
|
|
536
518
|
},
|
|
537
519
|
/**
|
|
538
520
|
* Deletes an CommissionAgencyRepRate
|
|
539
521
|
* @summary Delete CommissionAgencyRepRate
|
|
540
522
|
* @param {string} vbasoftwareDatabase Target database
|
|
541
|
-
* @param {number} commRateKey CommissionRate Key
|
|
542
523
|
* @param {number} commAgencyRepRateKey CommissionAgencyRepRate Key
|
|
543
524
|
* @param {*} [options] Override http request option.
|
|
544
525
|
* @throws {RequiredError}
|
|
545
526
|
*/
|
|
546
|
-
deleteCommissionAgencyRepRate(vbasoftwareDatabase: string,
|
|
547
|
-
return localVarFp.deleteCommissionAgencyRepRate(vbasoftwareDatabase,
|
|
527
|
+
deleteCommissionAgencyRepRate(vbasoftwareDatabase: string, commAgencyRepRateKey: number, options?: any): AxiosPromise<void> {
|
|
528
|
+
return localVarFp.deleteCommissionAgencyRepRate(vbasoftwareDatabase, commAgencyRepRateKey, options).then((request) => request(axios, basePath));
|
|
548
529
|
},
|
|
549
530
|
/**
|
|
550
531
|
* Deletes an CommissionAgencyRepRate by Agent
|
|
551
532
|
* @summary Delete CommissionAgencyRepRate by Agent
|
|
552
533
|
* @param {string} vbasoftwareDatabase Target database
|
|
553
|
-
* @param {number}
|
|
534
|
+
* @param {number} commissionAgencyRepKey CommissionAgencyRep Key
|
|
554
535
|
* @param {*} [options] Override http request option.
|
|
555
536
|
* @throws {RequiredError}
|
|
556
537
|
*/
|
|
557
|
-
deleteCommissionAgencyRepRateByAgent(vbasoftwareDatabase: string,
|
|
558
|
-
return localVarFp.deleteCommissionAgencyRepRateByAgent(vbasoftwareDatabase,
|
|
538
|
+
deleteCommissionAgencyRepRateByAgent(vbasoftwareDatabase: string, commissionAgencyRepKey: number, options?: any): AxiosPromise<void> {
|
|
539
|
+
return localVarFp.deleteCommissionAgencyRepRateByAgent(vbasoftwareDatabase, commissionAgencyRepKey, options).then((request) => request(axios, basePath));
|
|
559
540
|
},
|
|
560
541
|
/**
|
|
561
542
|
* Gets CommissionAgencyRepRate
|
|
562
543
|
* @summary Get CommissionAgencyRepRate
|
|
563
544
|
* @param {string} vbasoftwareDatabase Target database
|
|
564
|
-
* @param {number} commRateKey CommissionRate Key
|
|
565
545
|
* @param {number} commAgencyRepRateKey CommissionAgencyRepRate Key
|
|
566
546
|
* @param {*} [options] Override http request option.
|
|
567
547
|
* @throws {RequiredError}
|
|
568
548
|
*/
|
|
569
|
-
getCommissionAgencyRepRate(vbasoftwareDatabase: string,
|
|
570
|
-
return localVarFp.getCommissionAgencyRepRate(vbasoftwareDatabase,
|
|
549
|
+
getCommissionAgencyRepRate(vbasoftwareDatabase: string, commAgencyRepRateKey: number, options?: any): AxiosPromise<CommissionAgencyRepRateVBAResponse> {
|
|
550
|
+
return localVarFp.getCommissionAgencyRepRate(vbasoftwareDatabase, commAgencyRepRateKey, options).then((request) => request(axios, basePath));
|
|
571
551
|
},
|
|
572
552
|
/**
|
|
573
553
|
* Lists all CommissionAgencyRepRate for the given commRateKey
|
|
@@ -598,14 +578,13 @@ export const CommissionAgencyRepRatesApiFactory = function (configuration?: Conf
|
|
|
598
578
|
* Updates a specific CommissionAgencyRepRate.
|
|
599
579
|
* @summary Update CommissionAgencyRepRate
|
|
600
580
|
* @param {string} vbasoftwareDatabase Target database
|
|
601
|
-
* @param {number} commRateKey CommissionRate Key
|
|
602
581
|
* @param {number} commAgencyRepRateKey CommissionAgencyRepRate Key
|
|
603
582
|
* @param {CommissionAgencyRepRate} commissionAgencyRepRate
|
|
604
583
|
* @param {*} [options] Override http request option.
|
|
605
584
|
* @throws {RequiredError}
|
|
606
585
|
*/
|
|
607
|
-
updateCommissionAgencyRepRate(vbasoftwareDatabase: string,
|
|
608
|
-
return localVarFp.updateCommissionAgencyRepRate(vbasoftwareDatabase,
|
|
586
|
+
updateCommissionAgencyRepRate(vbasoftwareDatabase: string, commAgencyRepRateKey: number, commissionAgencyRepRate: CommissionAgencyRepRate, options?: any): AxiosPromise<CommissionAgencyRepRateVBAResponse> {
|
|
587
|
+
return localVarFp.updateCommissionAgencyRepRate(vbasoftwareDatabase, commAgencyRepRateKey, commissionAgencyRepRate, options).then((request) => request(axios, basePath));
|
|
609
588
|
},
|
|
610
589
|
};
|
|
611
590
|
};
|
|
@@ -620,48 +599,45 @@ export interface CommissionAgencyRepRatesApiInterface {
|
|
|
620
599
|
* Creates a new CommissionAgencyRepRate
|
|
621
600
|
* @summary Create CommissionAgencyRepRate
|
|
622
601
|
* @param {string} vbasoftwareDatabase Target database
|
|
623
|
-
* @param {number} commRateKey CommissionRate Key
|
|
624
602
|
* @param {CommissionAgencyRepRate} commissionAgencyRepRate
|
|
625
603
|
* @param {*} [options] Override http request option.
|
|
626
604
|
* @throws {RequiredError}
|
|
627
605
|
* @memberof CommissionAgencyRepRatesApiInterface
|
|
628
606
|
*/
|
|
629
|
-
createCommissionAgencyRepRate(vbasoftwareDatabase: string,
|
|
607
|
+
createCommissionAgencyRepRate(vbasoftwareDatabase: string, commissionAgencyRepRate: CommissionAgencyRepRate, options?: AxiosRequestConfig): AxiosPromise<CommissionAgencyRepRateVBAResponse>;
|
|
630
608
|
|
|
631
609
|
/**
|
|
632
610
|
* Deletes an CommissionAgencyRepRate
|
|
633
611
|
* @summary Delete CommissionAgencyRepRate
|
|
634
612
|
* @param {string} vbasoftwareDatabase Target database
|
|
635
|
-
* @param {number} commRateKey CommissionRate Key
|
|
636
613
|
* @param {number} commAgencyRepRateKey CommissionAgencyRepRate Key
|
|
637
614
|
* @param {*} [options] Override http request option.
|
|
638
615
|
* @throws {RequiredError}
|
|
639
616
|
* @memberof CommissionAgencyRepRatesApiInterface
|
|
640
617
|
*/
|
|
641
|
-
deleteCommissionAgencyRepRate(vbasoftwareDatabase: string,
|
|
618
|
+
deleteCommissionAgencyRepRate(vbasoftwareDatabase: string, commAgencyRepRateKey: number, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
642
619
|
|
|
643
620
|
/**
|
|
644
621
|
* Deletes an CommissionAgencyRepRate by Agent
|
|
645
622
|
* @summary Delete CommissionAgencyRepRate by Agent
|
|
646
623
|
* @param {string} vbasoftwareDatabase Target database
|
|
647
|
-
* @param {number}
|
|
624
|
+
* @param {number} commissionAgencyRepKey CommissionAgencyRep Key
|
|
648
625
|
* @param {*} [options] Override http request option.
|
|
649
626
|
* @throws {RequiredError}
|
|
650
627
|
* @memberof CommissionAgencyRepRatesApiInterface
|
|
651
628
|
*/
|
|
652
|
-
deleteCommissionAgencyRepRateByAgent(vbasoftwareDatabase: string,
|
|
629
|
+
deleteCommissionAgencyRepRateByAgent(vbasoftwareDatabase: string, commissionAgencyRepKey: number, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
653
630
|
|
|
654
631
|
/**
|
|
655
632
|
* Gets CommissionAgencyRepRate
|
|
656
633
|
* @summary Get CommissionAgencyRepRate
|
|
657
634
|
* @param {string} vbasoftwareDatabase Target database
|
|
658
|
-
* @param {number} commRateKey CommissionRate Key
|
|
659
635
|
* @param {number} commAgencyRepRateKey CommissionAgencyRepRate Key
|
|
660
636
|
* @param {*} [options] Override http request option.
|
|
661
637
|
* @throws {RequiredError}
|
|
662
638
|
* @memberof CommissionAgencyRepRatesApiInterface
|
|
663
639
|
*/
|
|
664
|
-
getCommissionAgencyRepRate(vbasoftwareDatabase: string,
|
|
640
|
+
getCommissionAgencyRepRate(vbasoftwareDatabase: string, commAgencyRepRateKey: number, options?: AxiosRequestConfig): AxiosPromise<CommissionAgencyRepRateVBAResponse>;
|
|
665
641
|
|
|
666
642
|
/**
|
|
667
643
|
* Lists all CommissionAgencyRepRate for the given commRateKey
|
|
@@ -692,14 +668,13 @@ export interface CommissionAgencyRepRatesApiInterface {
|
|
|
692
668
|
* Updates a specific CommissionAgencyRepRate.
|
|
693
669
|
* @summary Update CommissionAgencyRepRate
|
|
694
670
|
* @param {string} vbasoftwareDatabase Target database
|
|
695
|
-
* @param {number} commRateKey CommissionRate Key
|
|
696
671
|
* @param {number} commAgencyRepRateKey CommissionAgencyRepRate Key
|
|
697
672
|
* @param {CommissionAgencyRepRate} commissionAgencyRepRate
|
|
698
673
|
* @param {*} [options] Override http request option.
|
|
699
674
|
* @throws {RequiredError}
|
|
700
675
|
* @memberof CommissionAgencyRepRatesApiInterface
|
|
701
676
|
*/
|
|
702
|
-
updateCommissionAgencyRepRate(vbasoftwareDatabase: string,
|
|
677
|
+
updateCommissionAgencyRepRate(vbasoftwareDatabase: string, commAgencyRepRateKey: number, commissionAgencyRepRate: CommissionAgencyRepRate, options?: AxiosRequestConfig): AxiosPromise<CommissionAgencyRepRateVBAResponse>;
|
|
703
678
|
|
|
704
679
|
}
|
|
705
680
|
|
|
@@ -714,55 +689,52 @@ export class CommissionAgencyRepRatesApi extends BaseAPI implements CommissionAg
|
|
|
714
689
|
* Creates a new CommissionAgencyRepRate
|
|
715
690
|
* @summary Create CommissionAgencyRepRate
|
|
716
691
|
* @param {string} vbasoftwareDatabase Target database
|
|
717
|
-
* @param {number} commRateKey CommissionRate Key
|
|
718
692
|
* @param {CommissionAgencyRepRate} commissionAgencyRepRate
|
|
719
693
|
* @param {*} [options] Override http request option.
|
|
720
694
|
* @throws {RequiredError}
|
|
721
695
|
* @memberof CommissionAgencyRepRatesApi
|
|
722
696
|
*/
|
|
723
|
-
public createCommissionAgencyRepRate(vbasoftwareDatabase: string,
|
|
724
|
-
return CommissionAgencyRepRatesApiFp(this.configuration).createCommissionAgencyRepRate(vbasoftwareDatabase,
|
|
697
|
+
public createCommissionAgencyRepRate(vbasoftwareDatabase: string, commissionAgencyRepRate: CommissionAgencyRepRate, options?: AxiosRequestConfig) {
|
|
698
|
+
return CommissionAgencyRepRatesApiFp(this.configuration).createCommissionAgencyRepRate(vbasoftwareDatabase, commissionAgencyRepRate, options).then((request) => request(this.axios, this.basePath));
|
|
725
699
|
}
|
|
726
700
|
|
|
727
701
|
/**
|
|
728
702
|
* Deletes an CommissionAgencyRepRate
|
|
729
703
|
* @summary Delete CommissionAgencyRepRate
|
|
730
704
|
* @param {string} vbasoftwareDatabase Target database
|
|
731
|
-
* @param {number} commRateKey CommissionRate Key
|
|
732
705
|
* @param {number} commAgencyRepRateKey CommissionAgencyRepRate Key
|
|
733
706
|
* @param {*} [options] Override http request option.
|
|
734
707
|
* @throws {RequiredError}
|
|
735
708
|
* @memberof CommissionAgencyRepRatesApi
|
|
736
709
|
*/
|
|
737
|
-
public deleteCommissionAgencyRepRate(vbasoftwareDatabase: string,
|
|
738
|
-
return CommissionAgencyRepRatesApiFp(this.configuration).deleteCommissionAgencyRepRate(vbasoftwareDatabase,
|
|
710
|
+
public deleteCommissionAgencyRepRate(vbasoftwareDatabase: string, commAgencyRepRateKey: number, options?: AxiosRequestConfig) {
|
|
711
|
+
return CommissionAgencyRepRatesApiFp(this.configuration).deleteCommissionAgencyRepRate(vbasoftwareDatabase, commAgencyRepRateKey, options).then((request) => request(this.axios, this.basePath));
|
|
739
712
|
}
|
|
740
713
|
|
|
741
714
|
/**
|
|
742
715
|
* Deletes an CommissionAgencyRepRate by Agent
|
|
743
716
|
* @summary Delete CommissionAgencyRepRate by Agent
|
|
744
717
|
* @param {string} vbasoftwareDatabase Target database
|
|
745
|
-
* @param {number}
|
|
718
|
+
* @param {number} commissionAgencyRepKey CommissionAgencyRep Key
|
|
746
719
|
* @param {*} [options] Override http request option.
|
|
747
720
|
* @throws {RequiredError}
|
|
748
721
|
* @memberof CommissionAgencyRepRatesApi
|
|
749
722
|
*/
|
|
750
|
-
public deleteCommissionAgencyRepRateByAgent(vbasoftwareDatabase: string,
|
|
751
|
-
return CommissionAgencyRepRatesApiFp(this.configuration).deleteCommissionAgencyRepRateByAgent(vbasoftwareDatabase,
|
|
723
|
+
public deleteCommissionAgencyRepRateByAgent(vbasoftwareDatabase: string, commissionAgencyRepKey: number, options?: AxiosRequestConfig) {
|
|
724
|
+
return CommissionAgencyRepRatesApiFp(this.configuration).deleteCommissionAgencyRepRateByAgent(vbasoftwareDatabase, commissionAgencyRepKey, options).then((request) => request(this.axios, this.basePath));
|
|
752
725
|
}
|
|
753
726
|
|
|
754
727
|
/**
|
|
755
728
|
* Gets CommissionAgencyRepRate
|
|
756
729
|
* @summary Get CommissionAgencyRepRate
|
|
757
730
|
* @param {string} vbasoftwareDatabase Target database
|
|
758
|
-
* @param {number} commRateKey CommissionRate Key
|
|
759
731
|
* @param {number} commAgencyRepRateKey CommissionAgencyRepRate Key
|
|
760
732
|
* @param {*} [options] Override http request option.
|
|
761
733
|
* @throws {RequiredError}
|
|
762
734
|
* @memberof CommissionAgencyRepRatesApi
|
|
763
735
|
*/
|
|
764
|
-
public getCommissionAgencyRepRate(vbasoftwareDatabase: string,
|
|
765
|
-
return CommissionAgencyRepRatesApiFp(this.configuration).getCommissionAgencyRepRate(vbasoftwareDatabase,
|
|
736
|
+
public getCommissionAgencyRepRate(vbasoftwareDatabase: string, commAgencyRepRateKey: number, options?: AxiosRequestConfig) {
|
|
737
|
+
return CommissionAgencyRepRatesApiFp(this.configuration).getCommissionAgencyRepRate(vbasoftwareDatabase, commAgencyRepRateKey, options).then((request) => request(this.axios, this.basePath));
|
|
766
738
|
}
|
|
767
739
|
|
|
768
740
|
/**
|
|
@@ -798,14 +770,13 @@ export class CommissionAgencyRepRatesApi extends BaseAPI implements CommissionAg
|
|
|
798
770
|
* Updates a specific CommissionAgencyRepRate.
|
|
799
771
|
* @summary Update CommissionAgencyRepRate
|
|
800
772
|
* @param {string} vbasoftwareDatabase Target database
|
|
801
|
-
* @param {number} commRateKey CommissionRate Key
|
|
802
773
|
* @param {number} commAgencyRepRateKey CommissionAgencyRepRate Key
|
|
803
774
|
* @param {CommissionAgencyRepRate} commissionAgencyRepRate
|
|
804
775
|
* @param {*} [options] Override http request option.
|
|
805
776
|
* @throws {RequiredError}
|
|
806
777
|
* @memberof CommissionAgencyRepRatesApi
|
|
807
778
|
*/
|
|
808
|
-
public updateCommissionAgencyRepRate(vbasoftwareDatabase: string,
|
|
809
|
-
return CommissionAgencyRepRatesApiFp(this.configuration).updateCommissionAgencyRepRate(vbasoftwareDatabase,
|
|
779
|
+
public updateCommissionAgencyRepRate(vbasoftwareDatabase: string, commAgencyRepRateKey: number, commissionAgencyRepRate: CommissionAgencyRepRate, options?: AxiosRequestConfig) {
|
|
780
|
+
return CommissionAgencyRepRatesApiFp(this.configuration).updateCommissionAgencyRepRate(vbasoftwareDatabase, commAgencyRepRateKey, commissionAgencyRepRate, options).then((request) => request(this.axios, this.basePath));
|
|
810
781
|
}
|
|
811
782
|
}
|