@vbasoftware/vbapi-vbasoftware-typescript-axios 1.20250815.1 → 1.20251010.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.
Files changed (108) hide show
  1. package/.openapi-generator/FILES +40 -8
  2. package/api/accounting-api.ts +102 -0
  3. package/api/adv-accounting-api.ts +102 -0
  4. package/api/adv-billing-api.ts +30 -8
  5. package/api/adv-claim-api.ts +220 -0
  6. package/api/adv-reinsurance-api.ts +306 -0
  7. package/api/authentication-api.ts +190 -0
  8. package/api/company-data-api.ts +90 -0
  9. package/api/note-data-api.ts +195 -0
  10. package/api/password-policy-api.ts +258 -0
  11. package/api/plan-place-auth-api.ts +733 -0
  12. package/api/plan-place-auth-benefit-api.ts +773 -0
  13. package/api/premium-invoices-api.ts +30 -8
  14. package/api/reinsurance-contract-transactions-api.ts +208 -0
  15. package/api/reinsurance-contracts-api.ts +98 -0
  16. package/api/report-series-api.ts +102 -0
  17. package/api/subscribers-api.ts +17 -8
  18. package/api/zelis-redcard-api.ts +170 -0
  19. package/api.ts +4 -0
  20. package/docs/AccountingApi.md +57 -0
  21. package/docs/AdvAccountingApi.md +57 -0
  22. package/docs/AdvBillingApi.md +7 -1
  23. package/docs/AdvClaimApi.md +118 -0
  24. package/docs/AdvReinsuranceApi.md +174 -0
  25. package/docs/AuthenticationApi.md +110 -0
  26. package/docs/Claim.md +6 -0
  27. package/docs/ClaimBatch.md +6 -0
  28. package/docs/CompanyData.md +14 -0
  29. package/docs/CompanyDataApi.md +53 -0
  30. package/docs/DateTimeVBAResponse.md +24 -0
  31. package/docs/EmailReportDTO.md +0 -4
  32. package/docs/FaxReportDTO.md +0 -4
  33. package/docs/GenerateReinsAggTransaction.md +24 -0
  34. package/docs/GenerateReinsAggTransactionVBAResponse.md +24 -0
  35. package/docs/Members.md +19 -11
  36. package/docs/NoteDataApi.md +86 -0
  37. package/docs/PasswordPolicy.md +30 -0
  38. package/docs/PasswordPolicyApi.md +117 -0
  39. package/docs/PasswordPolicyVBAResponse.md +24 -0
  40. package/docs/PlanMaximum.md +2 -0
  41. package/docs/PlanPlaceAuth.md +38 -0
  42. package/docs/PlanPlaceAuthApi.md +372 -0
  43. package/docs/PlanPlaceAuthBenefit.md +32 -0
  44. package/docs/PlanPlaceAuthBenefitApi.md +387 -0
  45. package/docs/PlanPlaceAuthBenefitListVBAResponse.md +24 -0
  46. package/docs/PlanPlaceAuthBenefitVBAResponse.md +24 -0
  47. package/docs/PlanPlaceAuthListVBAResponse.md +24 -0
  48. package/docs/PlanPlaceAuthVBAResponse.md +24 -0
  49. package/docs/Plans.md +10 -0
  50. package/docs/PremiumInvoicesApi.md +7 -1
  51. package/docs/ReinsContract.md +2 -0
  52. package/docs/ReinsContractTrans.md +2 -0
  53. package/docs/ReinsContractTransClaim.md +2 -0
  54. package/docs/ReinsuranceContractTransactionsApi.md +118 -0
  55. package/docs/ReinsuranceContractsApi.md +56 -0
  56. package/docs/ReportDefinition.md +2 -0
  57. package/docs/ReportSeriesApi.md +57 -0
  58. package/docs/SMSDTO.md +0 -4
  59. package/docs/SubscribersApi.md +4 -1
  60. package/docs/VBABenefitInquiryRequest.md +6 -0
  61. package/docs/VBAProcessCorrespondenceTracking.md +22 -0
  62. package/docs/VBAProcessReceiptFile.md +24 -0
  63. package/docs/VBAReinsContractTransAmount.md +18 -0
  64. package/docs/VBAReinsContractTransClaim.md +14 -0
  65. package/docs/ZelisRedcardApi.md +64 -0
  66. package/docs/ZelisRedcardEOBRequest.md +26 -0
  67. package/docs/ZelisRedcardEOBResponse.md +24 -0
  68. package/docs/ZelisRedcardEOBResponseVBAResponse.md +24 -0
  69. package/models/claim-batch.ts +18 -0
  70. package/models/claim.ts +18 -0
  71. package/models/company-data.ts +42 -0
  72. package/models/{json-value.ts → date-time-vbaresponse.ts} +13 -13
  73. package/models/email-report-dto.ts +0 -15
  74. package/models/fax-report-dto.ts +0 -15
  75. package/models/generate-reins-agg-transaction-vbaresponse.ts +51 -0
  76. package/models/generate-reins-agg-transaction.ts +42 -0
  77. package/models/index.ts +16 -4
  78. package/models/members.ts +42 -18
  79. package/models/password-policy-vbaresponse.ts +51 -0
  80. package/models/password-policy.ts +60 -0
  81. package/models/plan-maximum.ts +6 -0
  82. package/models/plan-place-auth-benefit-list-vbaresponse.ts +51 -0
  83. package/models/plan-place-auth-benefit-vbaresponse.ts +51 -0
  84. package/models/plan-place-auth-benefit.ts +66 -0
  85. package/models/plan-place-auth-list-vbaresponse.ts +51 -0
  86. package/models/plan-place-auth-vbaresponse.ts +51 -0
  87. package/models/plan-place-auth.ts +84 -0
  88. package/models/plans.ts +30 -0
  89. package/models/reins-contract-trans-claim.ts +6 -0
  90. package/models/reins-contract-trans.ts +6 -0
  91. package/models/reins-contract.ts +6 -0
  92. package/models/report-definition.ts +6 -0
  93. package/models/smsdto.ts +0 -15
  94. package/models/vbabenefit-inquiry-request.ts +18 -0
  95. package/models/{json-node-options.ts → vbaprocess-correspondence-tracking.ts} +11 -5
  96. package/models/vbaprocess-receipt-file.ts +42 -0
  97. package/models/vbareins-contract-trans-amount.ts +54 -0
  98. package/models/vbareins-contract-trans-claim.ts +42 -0
  99. package/models/zelis-redcard-eobrequest.ts +48 -0
  100. package/models/zelis-redcard-eobresponse-vbaresponse.ts +51 -0
  101. package/models/zelis-redcard-eobresponse.ts +42 -0
  102. package/package.json +1 -1
  103. package/docs/CallbackDTO.md +0 -24
  104. package/docs/JsonNode.md +0 -24
  105. package/docs/JsonNodeOptions.md +0 -20
  106. package/docs/JsonValue.md +0 -24
  107. package/models/callback-dto.ts +0 -45
  108. package/models/json-node.ts +0 -45
@@ -165,6 +165,120 @@ export const AdvClaimApiAxiosParamCreator = function (configuration?: Configurat
165
165
  options: localVarRequestOptions,
166
166
  };
167
167
  },
168
+ /**
169
+ * Utilizing the Zelis Repricing integration in VBASoftware utlizes a series of tables that sometimes need to be reset so they can be resyncd with Zelis.
170
+ * @summary Full Reset of a Claim at Zelis
171
+ * @param {string} vbasoftwareDatabase Target database
172
+ * @param {number} batchNumber Batch Number
173
+ * @param {number} batchClaim Batch Claim
174
+ * @param {*} [options] Override http request option.
175
+ * @throws {RequiredError}
176
+ */
177
+ claimCostContainZelisReset: async (vbasoftwareDatabase: string, batchNumber: number, batchClaim: number, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
178
+ // verify required parameter 'vbasoftwareDatabase' is not null or undefined
179
+ assertParamExists('claimCostContainZelisReset', 'vbasoftwareDatabase', vbasoftwareDatabase)
180
+ // verify required parameter 'batchNumber' is not null or undefined
181
+ assertParamExists('claimCostContainZelisReset', 'batchNumber', batchNumber)
182
+ // verify required parameter 'batchClaim' is not null or undefined
183
+ assertParamExists('claimCostContainZelisReset', 'batchClaim', batchClaim)
184
+ const localVarPath = `/claim-cost-contain-zelis-reset`;
185
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
186
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
187
+ let baseOptions;
188
+ if (configuration) {
189
+ baseOptions = configuration.baseOptions;
190
+ }
191
+
192
+ const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options};
193
+ const localVarHeaderParameter = {} as any;
194
+ const localVarQueryParameter = {} as any;
195
+
196
+ // authentication apiKeyAuth required
197
+ await setApiKeyToObject(localVarHeaderParameter, "x-api-key", configuration)
198
+
199
+ // authentication bearerAuth required
200
+ // http bearer authentication required
201
+ await setBearerAuthToObject(localVarHeaderParameter, configuration)
202
+
203
+ if (batchNumber !== undefined) {
204
+ localVarQueryParameter['batchNumber'] = batchNumber;
205
+ }
206
+
207
+ if (batchClaim !== undefined) {
208
+ localVarQueryParameter['batchClaim'] = batchClaim;
209
+ }
210
+
211
+
212
+
213
+ if (vbasoftwareDatabase != null) {
214
+ localVarHeaderParameter['vbasoftware-database'] = String(vbasoftwareDatabase);
215
+ }
216
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
217
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
218
+ localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
219
+
220
+ return {
221
+ url: toPathString(localVarUrlObj),
222
+ options: localVarRequestOptions,
223
+ };
224
+ },
225
+ /**
226
+ * Utilizing the Zelis Repricing integration in VBASoftware utlizes a polling service that sometimes needs to be resyncd with Zelis.
227
+ * @summary Reset Polling of a Claim at Zelis
228
+ * @param {string} vbasoftwareDatabase Target database
229
+ * @param {number} batchNumber Batch Number
230
+ * @param {number} batchClaim Batch Claim
231
+ * @param {*} [options] Override http request option.
232
+ * @throws {RequiredError}
233
+ */
234
+ claimCostContainZelisResetPoll: async (vbasoftwareDatabase: string, batchNumber: number, batchClaim: number, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
235
+ // verify required parameter 'vbasoftwareDatabase' is not null or undefined
236
+ assertParamExists('claimCostContainZelisResetPoll', 'vbasoftwareDatabase', vbasoftwareDatabase)
237
+ // verify required parameter 'batchNumber' is not null or undefined
238
+ assertParamExists('claimCostContainZelisResetPoll', 'batchNumber', batchNumber)
239
+ // verify required parameter 'batchClaim' is not null or undefined
240
+ assertParamExists('claimCostContainZelisResetPoll', 'batchClaim', batchClaim)
241
+ const localVarPath = `/claim-cost-contain-zelis-reset-poll`;
242
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
243
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
244
+ let baseOptions;
245
+ if (configuration) {
246
+ baseOptions = configuration.baseOptions;
247
+ }
248
+
249
+ const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options};
250
+ const localVarHeaderParameter = {} as any;
251
+ const localVarQueryParameter = {} as any;
252
+
253
+ // authentication apiKeyAuth required
254
+ await setApiKeyToObject(localVarHeaderParameter, "x-api-key", configuration)
255
+
256
+ // authentication bearerAuth required
257
+ // http bearer authentication required
258
+ await setBearerAuthToObject(localVarHeaderParameter, configuration)
259
+
260
+ if (batchNumber !== undefined) {
261
+ localVarQueryParameter['batchNumber'] = batchNumber;
262
+ }
263
+
264
+ if (batchClaim !== undefined) {
265
+ localVarQueryParameter['batchClaim'] = batchClaim;
266
+ }
267
+
268
+
269
+
270
+ if (vbasoftwareDatabase != null) {
271
+ localVarHeaderParameter['vbasoftware-database'] = String(vbasoftwareDatabase);
272
+ }
273
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
274
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
275
+ localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
276
+
277
+ return {
278
+ url: toPathString(localVarUrlObj),
279
+ options: localVarRequestOptions,
280
+ };
281
+ },
168
282
  /**
169
283
  * When the chosen claim has a multi-Payor/Account error, this process will automatically split the claim and create a bridgre reference in ClaimBatchReference.
170
284
  * @summary Split Claims by Payor/Account
@@ -1456,6 +1570,36 @@ export const AdvClaimApiFp = function(configuration?: Configuration) {
1456
1570
  const localVarOperationServerBasePath = operationServerMap['AdvClaimApi.claimBatchCopy']?.[localVarOperationServerIndex]?.url;
1457
1571
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
1458
1572
  },
1573
+ /**
1574
+ * Utilizing the Zelis Repricing integration in VBASoftware utlizes a series of tables that sometimes need to be reset so they can be resyncd with Zelis.
1575
+ * @summary Full Reset of a Claim at Zelis
1576
+ * @param {string} vbasoftwareDatabase Target database
1577
+ * @param {number} batchNumber Batch Number
1578
+ * @param {number} batchClaim Batch Claim
1579
+ * @param {*} [options] Override http request option.
1580
+ * @throws {RequiredError}
1581
+ */
1582
+ async claimCostContainZelisReset(vbasoftwareDatabase: string, batchNumber: number, batchClaim: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>> {
1583
+ const localVarAxiosArgs = await localVarAxiosParamCreator.claimCostContainZelisReset(vbasoftwareDatabase, batchNumber, batchClaim, options);
1584
+ const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
1585
+ const localVarOperationServerBasePath = operationServerMap['AdvClaimApi.claimCostContainZelisReset']?.[localVarOperationServerIndex]?.url;
1586
+ return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
1587
+ },
1588
+ /**
1589
+ * Utilizing the Zelis Repricing integration in VBASoftware utlizes a polling service that sometimes needs to be resyncd with Zelis.
1590
+ * @summary Reset Polling of a Claim at Zelis
1591
+ * @param {string} vbasoftwareDatabase Target database
1592
+ * @param {number} batchNumber Batch Number
1593
+ * @param {number} batchClaim Batch Claim
1594
+ * @param {*} [options] Override http request option.
1595
+ * @throws {RequiredError}
1596
+ */
1597
+ async claimCostContainZelisResetPoll(vbasoftwareDatabase: string, batchNumber: number, batchClaim: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>> {
1598
+ const localVarAxiosArgs = await localVarAxiosParamCreator.claimCostContainZelisResetPoll(vbasoftwareDatabase, batchNumber, batchClaim, options);
1599
+ const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
1600
+ const localVarOperationServerBasePath = operationServerMap['AdvClaimApi.claimCostContainZelisResetPoll']?.[localVarOperationServerIndex]?.url;
1601
+ return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
1602
+ },
1459
1603
  /**
1460
1604
  * When the chosen claim has a multi-Payor/Account error, this process will automatically split the claim and create a bridgre reference in ClaimBatchReference.
1461
1605
  * @summary Split Claims by Payor/Account
@@ -1836,6 +1980,30 @@ export const AdvClaimApiFactory = function (configuration?: Configuration, baseP
1836
1980
  claimBatchCopy(vbasoftwareDatabase: string, vBAClaimBatchCopy: VBAClaimBatchCopy, options?: RawAxiosRequestConfig): AxiosPromise<void> {
1837
1981
  return localVarFp.claimBatchCopy(vbasoftwareDatabase, vBAClaimBatchCopy, options).then((request) => request(axios, basePath));
1838
1982
  },
1983
+ /**
1984
+ * Utilizing the Zelis Repricing integration in VBASoftware utlizes a series of tables that sometimes need to be reset so they can be resyncd with Zelis.
1985
+ * @summary Full Reset of a Claim at Zelis
1986
+ * @param {string} vbasoftwareDatabase Target database
1987
+ * @param {number} batchNumber Batch Number
1988
+ * @param {number} batchClaim Batch Claim
1989
+ * @param {*} [options] Override http request option.
1990
+ * @throws {RequiredError}
1991
+ */
1992
+ claimCostContainZelisReset(vbasoftwareDatabase: string, batchNumber: number, batchClaim: number, options?: RawAxiosRequestConfig): AxiosPromise<void> {
1993
+ return localVarFp.claimCostContainZelisReset(vbasoftwareDatabase, batchNumber, batchClaim, options).then((request) => request(axios, basePath));
1994
+ },
1995
+ /**
1996
+ * Utilizing the Zelis Repricing integration in VBASoftware utlizes a polling service that sometimes needs to be resyncd with Zelis.
1997
+ * @summary Reset Polling of a Claim at Zelis
1998
+ * @param {string} vbasoftwareDatabase Target database
1999
+ * @param {number} batchNumber Batch Number
2000
+ * @param {number} batchClaim Batch Claim
2001
+ * @param {*} [options] Override http request option.
2002
+ * @throws {RequiredError}
2003
+ */
2004
+ claimCostContainZelisResetPoll(vbasoftwareDatabase: string, batchNumber: number, batchClaim: number, options?: RawAxiosRequestConfig): AxiosPromise<void> {
2005
+ return localVarFp.claimCostContainZelisResetPoll(vbasoftwareDatabase, batchNumber, batchClaim, options).then((request) => request(axios, basePath));
2006
+ },
1839
2007
  /**
1840
2008
  * When the chosen claim has a multi-Payor/Account error, this process will automatically split the claim and create a bridgre reference in ClaimBatchReference.
1841
2009
  * @summary Split Claims by Payor/Account
@@ -2146,6 +2314,30 @@ export interface AdvClaimApiInterface {
2146
2314
  */
2147
2315
  claimBatchCopy(vbasoftwareDatabase: string, vBAClaimBatchCopy: VBAClaimBatchCopy, options?: RawAxiosRequestConfig): AxiosPromise<void>;
2148
2316
 
2317
+ /**
2318
+ * Utilizing the Zelis Repricing integration in VBASoftware utlizes a series of tables that sometimes need to be reset so they can be resyncd with Zelis.
2319
+ * @summary Full Reset of a Claim at Zelis
2320
+ * @param {string} vbasoftwareDatabase Target database
2321
+ * @param {number} batchNumber Batch Number
2322
+ * @param {number} batchClaim Batch Claim
2323
+ * @param {*} [options] Override http request option.
2324
+ * @throws {RequiredError}
2325
+ * @memberof AdvClaimApiInterface
2326
+ */
2327
+ claimCostContainZelisReset(vbasoftwareDatabase: string, batchNumber: number, batchClaim: number, options?: RawAxiosRequestConfig): AxiosPromise<void>;
2328
+
2329
+ /**
2330
+ * Utilizing the Zelis Repricing integration in VBASoftware utlizes a polling service that sometimes needs to be resyncd with Zelis.
2331
+ * @summary Reset Polling of a Claim at Zelis
2332
+ * @param {string} vbasoftwareDatabase Target database
2333
+ * @param {number} batchNumber Batch Number
2334
+ * @param {number} batchClaim Batch Claim
2335
+ * @param {*} [options] Override http request option.
2336
+ * @throws {RequiredError}
2337
+ * @memberof AdvClaimApiInterface
2338
+ */
2339
+ claimCostContainZelisResetPoll(vbasoftwareDatabase: string, batchNumber: number, batchClaim: number, options?: RawAxiosRequestConfig): AxiosPromise<void>;
2340
+
2149
2341
  /**
2150
2342
  * When the chosen claim has a multi-Payor/Account error, this process will automatically split the claim and create a bridgre reference in ClaimBatchReference.
2151
2343
  * @summary Split Claims by Payor/Account
@@ -2460,6 +2652,34 @@ export class AdvClaimApi extends BaseAPI implements AdvClaimApiInterface {
2460
2652
  return AdvClaimApiFp(this.configuration).claimBatchCopy(vbasoftwareDatabase, vBAClaimBatchCopy, options).then((request) => request(this.axios, this.basePath));
2461
2653
  }
2462
2654
 
2655
+ /**
2656
+ * Utilizing the Zelis Repricing integration in VBASoftware utlizes a series of tables that sometimes need to be reset so they can be resyncd with Zelis.
2657
+ * @summary Full Reset of a Claim at Zelis
2658
+ * @param {string} vbasoftwareDatabase Target database
2659
+ * @param {number} batchNumber Batch Number
2660
+ * @param {number} batchClaim Batch Claim
2661
+ * @param {*} [options] Override http request option.
2662
+ * @throws {RequiredError}
2663
+ * @memberof AdvClaimApi
2664
+ */
2665
+ public claimCostContainZelisReset(vbasoftwareDatabase: string, batchNumber: number, batchClaim: number, options?: RawAxiosRequestConfig) {
2666
+ return AdvClaimApiFp(this.configuration).claimCostContainZelisReset(vbasoftwareDatabase, batchNumber, batchClaim, options).then((request) => request(this.axios, this.basePath));
2667
+ }
2668
+
2669
+ /**
2670
+ * Utilizing the Zelis Repricing integration in VBASoftware utlizes a polling service that sometimes needs to be resyncd with Zelis.
2671
+ * @summary Reset Polling of a Claim at Zelis
2672
+ * @param {string} vbasoftwareDatabase Target database
2673
+ * @param {number} batchNumber Batch Number
2674
+ * @param {number} batchClaim Batch Claim
2675
+ * @param {*} [options] Override http request option.
2676
+ * @throws {RequiredError}
2677
+ * @memberof AdvClaimApi
2678
+ */
2679
+ public claimCostContainZelisResetPoll(vbasoftwareDatabase: string, batchNumber: number, batchClaim: number, options?: RawAxiosRequestConfig) {
2680
+ return AdvClaimApiFp(this.configuration).claimCostContainZelisResetPoll(vbasoftwareDatabase, batchNumber, batchClaim, options).then((request) => request(this.axios, this.basePath));
2681
+ }
2682
+
2463
2683
  /**
2464
2684
  * When the chosen claim has a multi-Payor/Account error, this process will automatically split the claim and create a bridgre reference in ClaimBatchReference.
2465
2685
  * @summary Split Claims by Payor/Account
@@ -22,6 +22,8 @@ import { DUMMY_BASE_URL, assertParamExists, setApiKeyToObject, setBasicAuthToObj
22
22
  // @ts-ignore
23
23
  import { BASE_PATH, COLLECTION_FORMATS, type RequestArgs, BaseAPI, RequiredError, operationServerMap } from '../base';
24
24
  // @ts-ignore
25
+ import type { GenerateReinsAggTransactionVBAResponse } from '../models';
26
+ // @ts-ignore
25
27
  import type { GenerateReinsTransactionVBAResponse } from '../models';
26
28
  // @ts-ignore
27
29
  import type { Int32VBAResponse } from '../models';
@@ -137,6 +139,108 @@ export const AdvReinsuranceApiAxiosParamCreator = function (configuration?: Conf
137
139
  options: localVarRequestOptions,
138
140
  };
139
141
  },
142
+ /**
143
+ * Using this option will apply the unapplied Attachment Point values to claims on an Aggregate Transaction.
144
+ * @summary Apply Attachment Point
145
+ * @param {string} vbasoftwareDatabase Target database
146
+ * @param {number} reinsContractKey ReinsContract Key
147
+ * @param {number} reinsContractTransKey ReinsContractTrans Key
148
+ * @param {*} [options] Override http request option.
149
+ * @throws {RequiredError}
150
+ */
151
+ applyAggAttachmentPoint: async (vbasoftwareDatabase: string, reinsContractKey: number, reinsContractTransKey: number, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
152
+ // verify required parameter 'vbasoftwareDatabase' is not null or undefined
153
+ assertParamExists('applyAggAttachmentPoint', 'vbasoftwareDatabase', vbasoftwareDatabase)
154
+ // verify required parameter 'reinsContractKey' is not null or undefined
155
+ assertParamExists('applyAggAttachmentPoint', 'reinsContractKey', reinsContractKey)
156
+ // verify required parameter 'reinsContractTransKey' is not null or undefined
157
+ assertParamExists('applyAggAttachmentPoint', 'reinsContractTransKey', reinsContractTransKey)
158
+ const localVarPath = `/reinsurance-contracts/{reinsContractKey}/transactions/{reinsContractTransKey}/apply-attachment-point`
159
+ .replace(`{${"reinsContractKey"}}`, encodeURIComponent(String(reinsContractKey)))
160
+ .replace(`{${"reinsContractTransKey"}}`, encodeURIComponent(String(reinsContractTransKey)));
161
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
162
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
163
+ let baseOptions;
164
+ if (configuration) {
165
+ baseOptions = configuration.baseOptions;
166
+ }
167
+
168
+ const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options};
169
+ const localVarHeaderParameter = {} as any;
170
+ const localVarQueryParameter = {} as any;
171
+
172
+ // authentication apiKeyAuth required
173
+ await setApiKeyToObject(localVarHeaderParameter, "x-api-key", configuration)
174
+
175
+ // authentication bearerAuth required
176
+ // http bearer authentication required
177
+ await setBearerAuthToObject(localVarHeaderParameter, configuration)
178
+
179
+
180
+
181
+ if (vbasoftwareDatabase != null) {
182
+ localVarHeaderParameter['vbasoftware-database'] = String(vbasoftwareDatabase);
183
+ }
184
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
185
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
186
+ localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
187
+
188
+ return {
189
+ url: toPathString(localVarUrlObj),
190
+ options: localVarRequestOptions,
191
+ };
192
+ },
193
+ /**
194
+ * Using this option will reset all reimbursement applied amounts for claims on this Aggregate Transaction. Received Reimbursement amount is then applied to claims in service date order until reimbursement amount is used.
195
+ * @summary Apply Aggregate Reimbursement ReinsContractTrans
196
+ * @param {string} vbasoftwareDatabase Target database
197
+ * @param {number} reinsContractKey ReinsContract Key
198
+ * @param {number} reinsContractTransKey ReinsContractTrans Key
199
+ * @param {*} [options] Override http request option.
200
+ * @throws {RequiredError}
201
+ */
202
+ applyAggReimbursement: async (vbasoftwareDatabase: string, reinsContractKey: number, reinsContractTransKey: number, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
203
+ // verify required parameter 'vbasoftwareDatabase' is not null or undefined
204
+ assertParamExists('applyAggReimbursement', 'vbasoftwareDatabase', vbasoftwareDatabase)
205
+ // verify required parameter 'reinsContractKey' is not null or undefined
206
+ assertParamExists('applyAggReimbursement', 'reinsContractKey', reinsContractKey)
207
+ // verify required parameter 'reinsContractTransKey' is not null or undefined
208
+ assertParamExists('applyAggReimbursement', 'reinsContractTransKey', reinsContractTransKey)
209
+ const localVarPath = `/reinsurance-contracts/{reinsContractKey}/transactions/{reinsContractTransKey}/apply-agg-reimbursement`
210
+ .replace(`{${"reinsContractKey"}}`, encodeURIComponent(String(reinsContractKey)))
211
+ .replace(`{${"reinsContractTransKey"}}`, encodeURIComponent(String(reinsContractTransKey)));
212
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
213
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
214
+ let baseOptions;
215
+ if (configuration) {
216
+ baseOptions = configuration.baseOptions;
217
+ }
218
+
219
+ const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options};
220
+ const localVarHeaderParameter = {} as any;
221
+ const localVarQueryParameter = {} as any;
222
+
223
+ // authentication apiKeyAuth required
224
+ await setApiKeyToObject(localVarHeaderParameter, "x-api-key", configuration)
225
+
226
+ // authentication bearerAuth required
227
+ // http bearer authentication required
228
+ await setBearerAuthToObject(localVarHeaderParameter, configuration)
229
+
230
+
231
+
232
+ if (vbasoftwareDatabase != null) {
233
+ localVarHeaderParameter['vbasoftware-database'] = String(vbasoftwareDatabase);
234
+ }
235
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
236
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
237
+ localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
238
+
239
+ return {
240
+ url: toPathString(localVarUrlObj),
241
+ options: localVarRequestOptions,
242
+ };
243
+ },
140
244
  /**
141
245
  * Using this option will reset all aggregate deductible applied amounts for claims on this transaction. Aggregate Deductible amount is then applied to claims in service date order until Aggregate Specific Deductible is met.
142
246
  * @summary Apply Agg. Spec. Deductible ReinsContractTrans
@@ -329,6 +433,53 @@ export const AdvReinsuranceApiAxiosParamCreator = function (configuration?: Conf
329
433
 
330
434
 
331
435
 
436
+ if (vbasoftwareDatabase != null) {
437
+ localVarHeaderParameter['vbasoftware-database'] = String(vbasoftwareDatabase);
438
+ }
439
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
440
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
441
+ localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
442
+
443
+ return {
444
+ url: toPathString(localVarUrlObj),
445
+ options: localVarRequestOptions,
446
+ };
447
+ },
448
+ /**
449
+ * Based on submitted information, generate reinsurance aggregate transactions for this contract.
450
+ * @summary Generate Aggregate Transaction for this Contract
451
+ * @param {string} vbasoftwareDatabase Target database
452
+ * @param {number} reinsContractKey ReinsContract Key
453
+ * @param {*} [options] Override http request option.
454
+ * @throws {RequiredError}
455
+ */
456
+ generateReinsAggTransaction: async (vbasoftwareDatabase: string, reinsContractKey: number, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
457
+ // verify required parameter 'vbasoftwareDatabase' is not null or undefined
458
+ assertParamExists('generateReinsAggTransaction', 'vbasoftwareDatabase', vbasoftwareDatabase)
459
+ // verify required parameter 'reinsContractKey' is not null or undefined
460
+ assertParamExists('generateReinsAggTransaction', 'reinsContractKey', reinsContractKey)
461
+ const localVarPath = `/reinsurance-contracts/{reinsContractKey}/generate-agg-transaction`
462
+ .replace(`{${"reinsContractKey"}}`, encodeURIComponent(String(reinsContractKey)));
463
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
464
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
465
+ let baseOptions;
466
+ if (configuration) {
467
+ baseOptions = configuration.baseOptions;
468
+ }
469
+
470
+ const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options};
471
+ const localVarHeaderParameter = {} as any;
472
+ const localVarQueryParameter = {} as any;
473
+
474
+ // authentication apiKeyAuth required
475
+ await setApiKeyToObject(localVarHeaderParameter, "x-api-key", configuration)
476
+
477
+ // authentication bearerAuth required
478
+ // http bearer authentication required
479
+ await setBearerAuthToObject(localVarHeaderParameter, configuration)
480
+
481
+
482
+
332
483
  if (vbasoftwareDatabase != null) {
333
484
  localVarHeaderParameter['vbasoftware-database'] = String(vbasoftwareDatabase);
334
485
  }
@@ -541,6 +692,36 @@ export const AdvReinsuranceApiFp = function(configuration?: Configuration) {
541
692
  const localVarOperationServerBasePath = operationServerMap['AdvReinsuranceApi.addContractFromTemplate']?.[localVarOperationServerIndex]?.url;
542
693
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
543
694
  },
695
+ /**
696
+ * Using this option will apply the unapplied Attachment Point values to claims on an Aggregate Transaction.
697
+ * @summary Apply Attachment Point
698
+ * @param {string} vbasoftwareDatabase Target database
699
+ * @param {number} reinsContractKey ReinsContract Key
700
+ * @param {number} reinsContractTransKey ReinsContractTrans Key
701
+ * @param {*} [options] Override http request option.
702
+ * @throws {RequiredError}
703
+ */
704
+ async applyAggAttachmentPoint(vbasoftwareDatabase: string, reinsContractKey: number, reinsContractTransKey: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>> {
705
+ const localVarAxiosArgs = await localVarAxiosParamCreator.applyAggAttachmentPoint(vbasoftwareDatabase, reinsContractKey, reinsContractTransKey, options);
706
+ const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
707
+ const localVarOperationServerBasePath = operationServerMap['AdvReinsuranceApi.applyAggAttachmentPoint']?.[localVarOperationServerIndex]?.url;
708
+ return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
709
+ },
710
+ /**
711
+ * Using this option will reset all reimbursement applied amounts for claims on this Aggregate Transaction. Received Reimbursement amount is then applied to claims in service date order until reimbursement amount is used.
712
+ * @summary Apply Aggregate Reimbursement ReinsContractTrans
713
+ * @param {string} vbasoftwareDatabase Target database
714
+ * @param {number} reinsContractKey ReinsContract Key
715
+ * @param {number} reinsContractTransKey ReinsContractTrans Key
716
+ * @param {*} [options] Override http request option.
717
+ * @throws {RequiredError}
718
+ */
719
+ async applyAggReimbursement(vbasoftwareDatabase: string, reinsContractKey: number, reinsContractTransKey: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>> {
720
+ const localVarAxiosArgs = await localVarAxiosParamCreator.applyAggReimbursement(vbasoftwareDatabase, reinsContractKey, reinsContractTransKey, options);
721
+ const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
722
+ const localVarOperationServerBasePath = operationServerMap['AdvReinsuranceApi.applyAggReimbursement']?.[localVarOperationServerIndex]?.url;
723
+ return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
724
+ },
544
725
  /**
545
726
  * Using this option will reset all aggregate deductible applied amounts for claims on this transaction. Aggregate Deductible amount is then applied to claims in service date order until Aggregate Specific Deductible is met.
546
727
  * @summary Apply Agg. Spec. Deductible ReinsContractTrans
@@ -601,6 +782,20 @@ export const AdvReinsuranceApiFp = function(configuration?: Configuration) {
601
782
  const localVarOperationServerBasePath = operationServerMap['AdvReinsuranceApi.calculateReinsContractTrans']?.[localVarOperationServerIndex]?.url;
602
783
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
603
784
  },
785
+ /**
786
+ * Based on submitted information, generate reinsurance aggregate transactions for this contract.
787
+ * @summary Generate Aggregate Transaction for this Contract
788
+ * @param {string} vbasoftwareDatabase Target database
789
+ * @param {number} reinsContractKey ReinsContract Key
790
+ * @param {*} [options] Override http request option.
791
+ * @throws {RequiredError}
792
+ */
793
+ async generateReinsAggTransaction(vbasoftwareDatabase: string, reinsContractKey: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GenerateReinsAggTransactionVBAResponse>> {
794
+ const localVarAxiosArgs = await localVarAxiosParamCreator.generateReinsAggTransaction(vbasoftwareDatabase, reinsContractKey, options);
795
+ const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
796
+ const localVarOperationServerBasePath = operationServerMap['AdvReinsuranceApi.generateReinsAggTransaction']?.[localVarOperationServerIndex]?.url;
797
+ return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
798
+ },
604
799
  /**
605
800
  * Based on submitted information, generate reinsurance level transactions for this contract.
606
801
  * @summary Generate Level Transactions for this Contract
@@ -679,6 +874,30 @@ export const AdvReinsuranceApiFactory = function (configuration?: Configuration,
679
874
  addContractFromTemplate(vbasoftwareDatabase: string, reinsServiceAddFromTemplate: ReinsServiceAddFromTemplate, options?: RawAxiosRequestConfig): AxiosPromise<ReinsContractVBAResponse> {
680
875
  return localVarFp.addContractFromTemplate(vbasoftwareDatabase, reinsServiceAddFromTemplate, options).then((request) => request(axios, basePath));
681
876
  },
877
+ /**
878
+ * Using this option will apply the unapplied Attachment Point values to claims on an Aggregate Transaction.
879
+ * @summary Apply Attachment Point
880
+ * @param {string} vbasoftwareDatabase Target database
881
+ * @param {number} reinsContractKey ReinsContract Key
882
+ * @param {number} reinsContractTransKey ReinsContractTrans Key
883
+ * @param {*} [options] Override http request option.
884
+ * @throws {RequiredError}
885
+ */
886
+ applyAggAttachmentPoint(vbasoftwareDatabase: string, reinsContractKey: number, reinsContractTransKey: number, options?: RawAxiosRequestConfig): AxiosPromise<void> {
887
+ return localVarFp.applyAggAttachmentPoint(vbasoftwareDatabase, reinsContractKey, reinsContractTransKey, options).then((request) => request(axios, basePath));
888
+ },
889
+ /**
890
+ * Using this option will reset all reimbursement applied amounts for claims on this Aggregate Transaction. Received Reimbursement amount is then applied to claims in service date order until reimbursement amount is used.
891
+ * @summary Apply Aggregate Reimbursement ReinsContractTrans
892
+ * @param {string} vbasoftwareDatabase Target database
893
+ * @param {number} reinsContractKey ReinsContract Key
894
+ * @param {number} reinsContractTransKey ReinsContractTrans Key
895
+ * @param {*} [options] Override http request option.
896
+ * @throws {RequiredError}
897
+ */
898
+ applyAggReimbursement(vbasoftwareDatabase: string, reinsContractKey: number, reinsContractTransKey: number, options?: RawAxiosRequestConfig): AxiosPromise<void> {
899
+ return localVarFp.applyAggReimbursement(vbasoftwareDatabase, reinsContractKey, reinsContractTransKey, options).then((request) => request(axios, basePath));
900
+ },
682
901
  /**
683
902
  * Using this option will reset all aggregate deductible applied amounts for claims on this transaction. Aggregate Deductible amount is then applied to claims in service date order until Aggregate Specific Deductible is met.
684
903
  * @summary Apply Agg. Spec. Deductible ReinsContractTrans
@@ -727,6 +946,17 @@ export const AdvReinsuranceApiFactory = function (configuration?: Configuration,
727
946
  calculateReinsContractTrans(vbasoftwareDatabase: string, reinsContractKey: number, reinsContractTransKey: number, options?: RawAxiosRequestConfig): AxiosPromise<VBAReinsContractTransAmountVBAResponse> {
728
947
  return localVarFp.calculateReinsContractTrans(vbasoftwareDatabase, reinsContractKey, reinsContractTransKey, options).then((request) => request(axios, basePath));
729
948
  },
949
+ /**
950
+ * Based on submitted information, generate reinsurance aggregate transactions for this contract.
951
+ * @summary Generate Aggregate Transaction for this Contract
952
+ * @param {string} vbasoftwareDatabase Target database
953
+ * @param {number} reinsContractKey ReinsContract Key
954
+ * @param {*} [options] Override http request option.
955
+ * @throws {RequiredError}
956
+ */
957
+ generateReinsAggTransaction(vbasoftwareDatabase: string, reinsContractKey: number, options?: RawAxiosRequestConfig): AxiosPromise<GenerateReinsAggTransactionVBAResponse> {
958
+ return localVarFp.generateReinsAggTransaction(vbasoftwareDatabase, reinsContractKey, options).then((request) => request(axios, basePath));
959
+ },
730
960
  /**
731
961
  * Based on submitted information, generate reinsurance level transactions for this contract.
732
962
  * @summary Generate Level Transactions for this Contract
@@ -795,6 +1025,30 @@ export interface AdvReinsuranceApiInterface {
795
1025
  */
796
1026
  addContractFromTemplate(vbasoftwareDatabase: string, reinsServiceAddFromTemplate: ReinsServiceAddFromTemplate, options?: RawAxiosRequestConfig): AxiosPromise<ReinsContractVBAResponse>;
797
1027
 
1028
+ /**
1029
+ * Using this option will apply the unapplied Attachment Point values to claims on an Aggregate Transaction.
1030
+ * @summary Apply Attachment Point
1031
+ * @param {string} vbasoftwareDatabase Target database
1032
+ * @param {number} reinsContractKey ReinsContract Key
1033
+ * @param {number} reinsContractTransKey ReinsContractTrans Key
1034
+ * @param {*} [options] Override http request option.
1035
+ * @throws {RequiredError}
1036
+ * @memberof AdvReinsuranceApiInterface
1037
+ */
1038
+ applyAggAttachmentPoint(vbasoftwareDatabase: string, reinsContractKey: number, reinsContractTransKey: number, options?: RawAxiosRequestConfig): AxiosPromise<void>;
1039
+
1040
+ /**
1041
+ * Using this option will reset all reimbursement applied amounts for claims on this Aggregate Transaction. Received Reimbursement amount is then applied to claims in service date order until reimbursement amount is used.
1042
+ * @summary Apply Aggregate Reimbursement ReinsContractTrans
1043
+ * @param {string} vbasoftwareDatabase Target database
1044
+ * @param {number} reinsContractKey ReinsContract Key
1045
+ * @param {number} reinsContractTransKey ReinsContractTrans Key
1046
+ * @param {*} [options] Override http request option.
1047
+ * @throws {RequiredError}
1048
+ * @memberof AdvReinsuranceApiInterface
1049
+ */
1050
+ applyAggReimbursement(vbasoftwareDatabase: string, reinsContractKey: number, reinsContractTransKey: number, options?: RawAxiosRequestConfig): AxiosPromise<void>;
1051
+
798
1052
  /**
799
1053
  * Using this option will reset all aggregate deductible applied amounts for claims on this transaction. Aggregate Deductible amount is then applied to claims in service date order until Aggregate Specific Deductible is met.
800
1054
  * @summary Apply Agg. Spec. Deductible ReinsContractTrans
@@ -843,6 +1097,17 @@ export interface AdvReinsuranceApiInterface {
843
1097
  */
844
1098
  calculateReinsContractTrans(vbasoftwareDatabase: string, reinsContractKey: number, reinsContractTransKey: number, options?: RawAxiosRequestConfig): AxiosPromise<VBAReinsContractTransAmountVBAResponse>;
845
1099
 
1100
+ /**
1101
+ * Based on submitted information, generate reinsurance aggregate transactions for this contract.
1102
+ * @summary Generate Aggregate Transaction for this Contract
1103
+ * @param {string} vbasoftwareDatabase Target database
1104
+ * @param {number} reinsContractKey ReinsContract Key
1105
+ * @param {*} [options] Override http request option.
1106
+ * @throws {RequiredError}
1107
+ * @memberof AdvReinsuranceApiInterface
1108
+ */
1109
+ generateReinsAggTransaction(vbasoftwareDatabase: string, reinsContractKey: number, options?: RawAxiosRequestConfig): AxiosPromise<GenerateReinsAggTransactionVBAResponse>;
1110
+
846
1111
  /**
847
1112
  * Based on submitted information, generate reinsurance level transactions for this contract.
848
1113
  * @summary Generate Level Transactions for this Contract
@@ -915,6 +1180,34 @@ export class AdvReinsuranceApi extends BaseAPI implements AdvReinsuranceApiInter
915
1180
  return AdvReinsuranceApiFp(this.configuration).addContractFromTemplate(vbasoftwareDatabase, reinsServiceAddFromTemplate, options).then((request) => request(this.axios, this.basePath));
916
1181
  }
917
1182
 
1183
+ /**
1184
+ * Using this option will apply the unapplied Attachment Point values to claims on an Aggregate Transaction.
1185
+ * @summary Apply Attachment Point
1186
+ * @param {string} vbasoftwareDatabase Target database
1187
+ * @param {number} reinsContractKey ReinsContract Key
1188
+ * @param {number} reinsContractTransKey ReinsContractTrans Key
1189
+ * @param {*} [options] Override http request option.
1190
+ * @throws {RequiredError}
1191
+ * @memberof AdvReinsuranceApi
1192
+ */
1193
+ public applyAggAttachmentPoint(vbasoftwareDatabase: string, reinsContractKey: number, reinsContractTransKey: number, options?: RawAxiosRequestConfig) {
1194
+ return AdvReinsuranceApiFp(this.configuration).applyAggAttachmentPoint(vbasoftwareDatabase, reinsContractKey, reinsContractTransKey, options).then((request) => request(this.axios, this.basePath));
1195
+ }
1196
+
1197
+ /**
1198
+ * Using this option will reset all reimbursement applied amounts for claims on this Aggregate Transaction. Received Reimbursement amount is then applied to claims in service date order until reimbursement amount is used.
1199
+ * @summary Apply Aggregate Reimbursement ReinsContractTrans
1200
+ * @param {string} vbasoftwareDatabase Target database
1201
+ * @param {number} reinsContractKey ReinsContract Key
1202
+ * @param {number} reinsContractTransKey ReinsContractTrans Key
1203
+ * @param {*} [options] Override http request option.
1204
+ * @throws {RequiredError}
1205
+ * @memberof AdvReinsuranceApi
1206
+ */
1207
+ public applyAggReimbursement(vbasoftwareDatabase: string, reinsContractKey: number, reinsContractTransKey: number, options?: RawAxiosRequestConfig) {
1208
+ return AdvReinsuranceApiFp(this.configuration).applyAggReimbursement(vbasoftwareDatabase, reinsContractKey, reinsContractTransKey, options).then((request) => request(this.axios, this.basePath));
1209
+ }
1210
+
918
1211
  /**
919
1212
  * Using this option will reset all aggregate deductible applied amounts for claims on this transaction. Aggregate Deductible amount is then applied to claims in service date order until Aggregate Specific Deductible is met.
920
1213
  * @summary Apply Agg. Spec. Deductible ReinsContractTrans
@@ -971,6 +1264,19 @@ export class AdvReinsuranceApi extends BaseAPI implements AdvReinsuranceApiInter
971
1264
  return AdvReinsuranceApiFp(this.configuration).calculateReinsContractTrans(vbasoftwareDatabase, reinsContractKey, reinsContractTransKey, options).then((request) => request(this.axios, this.basePath));
972
1265
  }
973
1266
 
1267
+ /**
1268
+ * Based on submitted information, generate reinsurance aggregate transactions for this contract.
1269
+ * @summary Generate Aggregate Transaction for this Contract
1270
+ * @param {string} vbasoftwareDatabase Target database
1271
+ * @param {number} reinsContractKey ReinsContract Key
1272
+ * @param {*} [options] Override http request option.
1273
+ * @throws {RequiredError}
1274
+ * @memberof AdvReinsuranceApi
1275
+ */
1276
+ public generateReinsAggTransaction(vbasoftwareDatabase: string, reinsContractKey: number, options?: RawAxiosRequestConfig) {
1277
+ return AdvReinsuranceApiFp(this.configuration).generateReinsAggTransaction(vbasoftwareDatabase, reinsContractKey, options).then((request) => request(this.axios, this.basePath));
1278
+ }
1279
+
974
1280
  /**
975
1281
  * Based on submitted information, generate reinsurance level transactions for this contract.
976
1282
  * @summary Generate Level Transactions for this Contract