@vbasoftware/vbapi-vbasoftware-typescript-axios 1.20250819.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
@@ -0,0 +1,387 @@
1
+ # PlanPlaceAuthBenefitApi
2
+
3
+ All URIs are relative to *https://vbapi.vbasoftware.com/vbasoftware*
4
+
5
+ |Method | HTTP request | Description|
6
+ |------------- | ------------- | -------------|
7
+ |[**createPlanPlaceAuthBenefit**](#createplanplaceauthbenefit) | **POST** /plans/{Plan_ID}/places/{Place_Code}/auth-benefits/{Benefit_Code} | Create PlanPlaceAuthBenefit|
8
+ |[**deletePlanPlaceAuthBenefit**](#deleteplanplaceauthbenefit) | **DELETE** /plans/{Plan_ID}/places/{Place_Code}/auth-benefits/{Benefit_Code} | Delete PlanPlaceAuthBenefit|
9
+ |[**getPlanPlaceAuthBenefit**](#getplanplaceauthbenefit) | **GET** /plans/{Plan_ID}/places/{Place_Code}/auth-benefits/{Benefit_Code} | Get PlanPlaceAuthBenefit|
10
+ |[**listPlanPlaceAuthBenefit**](#listplanplaceauthbenefit) | **GET** /plans/{Plan_ID}/places/{Place_Code}/auth-benefits | List PlanPlaceAuthBenefit|
11
+ |[**updateBatchPlanPlaceAuthBenefit**](#updatebatchplanplaceauthbenefit) | **PUT** /plan-place-auth-benefits-batch | Create or Update Batch PlanPlaceAuthBenefit|
12
+ |[**updatePlanPlaceAuthBenefit**](#updateplanplaceauthbenefit) | **PUT** /plans/{Plan_ID}/places/{Place_Code}/auth-benefits/{Benefit_Code} | Update PlanPlaceAuthBenefit|
13
+
14
+ # **createPlanPlaceAuthBenefit**
15
+ > PlanPlaceAuthBenefitVBAResponse createPlanPlaceAuthBenefit(planPlaceAuthBenefit)
16
+
17
+ Creates a new PlanPlaceAuthBenefit
18
+
19
+ ### Example
20
+
21
+ ```typescript
22
+ import {
23
+ PlanPlaceAuthBenefitApi,
24
+ Configuration,
25
+ PlanPlaceAuthBenefit
26
+ } from './api';
27
+
28
+ const configuration = new Configuration();
29
+ const apiInstance = new PlanPlaceAuthBenefitApi(configuration);
30
+
31
+ let vbasoftwareDatabase: string; //Target database (default to undefined)
32
+ let planID: string; //Plan ID (default to undefined)
33
+ let placeCode: string; //Place Code (default to undefined)
34
+ let benefitCode: string; //Benefit Code (default to undefined)
35
+ let planPlaceAuthBenefit: PlanPlaceAuthBenefit; //
36
+
37
+ const { status, data } = await apiInstance.createPlanPlaceAuthBenefit(
38
+ vbasoftwareDatabase,
39
+ planID,
40
+ placeCode,
41
+ benefitCode,
42
+ planPlaceAuthBenefit
43
+ );
44
+ ```
45
+
46
+ ### Parameters
47
+
48
+ |Name | Type | Description | Notes|
49
+ |------------- | ------------- | ------------- | -------------|
50
+ | **planPlaceAuthBenefit** | **PlanPlaceAuthBenefit**| | |
51
+ | **vbasoftwareDatabase** | [**string**] | Target database | defaults to undefined|
52
+ | **planID** | [**string**] | Plan ID | defaults to undefined|
53
+ | **placeCode** | [**string**] | Place Code | defaults to undefined|
54
+ | **benefitCode** | [**string**] | Benefit Code | defaults to undefined|
55
+
56
+
57
+ ### Return type
58
+
59
+ **PlanPlaceAuthBenefitVBAResponse**
60
+
61
+ ### Authorization
62
+
63
+ [apiKeyAuth](../README.md#apiKeyAuth), [bearerAuth](../README.md#bearerAuth)
64
+
65
+ ### HTTP request headers
66
+
67
+ - **Content-Type**: application/json, text/json, application/*+json
68
+ - **Accept**: text/plain, application/json, text/json
69
+
70
+
71
+ ### HTTP response details
72
+ | Status code | Description | Response headers |
73
+ |-------------|-------------|------------------|
74
+ |**200** | Success | - |
75
+ |**401** | Unauthorized | - |
76
+
77
+ [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
78
+
79
+ # **deletePlanPlaceAuthBenefit**
80
+ > deletePlanPlaceAuthBenefit()
81
+
82
+ Deletes an PlanPlaceAuthBenefit
83
+
84
+ ### Example
85
+
86
+ ```typescript
87
+ import {
88
+ PlanPlaceAuthBenefitApi,
89
+ Configuration
90
+ } from './api';
91
+
92
+ const configuration = new Configuration();
93
+ const apiInstance = new PlanPlaceAuthBenefitApi(configuration);
94
+
95
+ let vbasoftwareDatabase: string; //Target database (default to undefined)
96
+ let planID: string; //Plan ID (default to undefined)
97
+ let placeCode: string; //Place Code (default to undefined)
98
+ let benefitCode: string; //Benefit Code (default to undefined)
99
+
100
+ const { status, data } = await apiInstance.deletePlanPlaceAuthBenefit(
101
+ vbasoftwareDatabase,
102
+ planID,
103
+ placeCode,
104
+ benefitCode
105
+ );
106
+ ```
107
+
108
+ ### Parameters
109
+
110
+ |Name | Type | Description | Notes|
111
+ |------------- | ------------- | ------------- | -------------|
112
+ | **vbasoftwareDatabase** | [**string**] | Target database | defaults to undefined|
113
+ | **planID** | [**string**] | Plan ID | defaults to undefined|
114
+ | **placeCode** | [**string**] | Place Code | defaults to undefined|
115
+ | **benefitCode** | [**string**] | Benefit Code | defaults to undefined|
116
+
117
+
118
+ ### Return type
119
+
120
+ void (empty response body)
121
+
122
+ ### Authorization
123
+
124
+ [apiKeyAuth](../README.md#apiKeyAuth), [bearerAuth](../README.md#bearerAuth)
125
+
126
+ ### HTTP request headers
127
+
128
+ - **Content-Type**: Not defined
129
+ - **Accept**: Not defined
130
+
131
+
132
+ ### HTTP response details
133
+ | Status code | Description | Response headers |
134
+ |-------------|-------------|------------------|
135
+ |**204** | Success | - |
136
+ |**401** | Unauthorized | - |
137
+
138
+ [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
139
+
140
+ # **getPlanPlaceAuthBenefit**
141
+ > PlanPlaceAuthBenefitVBAResponse getPlanPlaceAuthBenefit()
142
+
143
+ Gets PlanPlaceAuthBenefit
144
+
145
+ ### Example
146
+
147
+ ```typescript
148
+ import {
149
+ PlanPlaceAuthBenefitApi,
150
+ Configuration
151
+ } from './api';
152
+
153
+ const configuration = new Configuration();
154
+ const apiInstance = new PlanPlaceAuthBenefitApi(configuration);
155
+
156
+ let vbasoftwareDatabase: string; //Target database (default to undefined)
157
+ let planID: string; //Plan ID (default to undefined)
158
+ let placeCode: string; //Place Code (default to undefined)
159
+ let benefitCode: string; //Benefit Code (default to undefined)
160
+
161
+ const { status, data } = await apiInstance.getPlanPlaceAuthBenefit(
162
+ vbasoftwareDatabase,
163
+ planID,
164
+ placeCode,
165
+ benefitCode
166
+ );
167
+ ```
168
+
169
+ ### Parameters
170
+
171
+ |Name | Type | Description | Notes|
172
+ |------------- | ------------- | ------------- | -------------|
173
+ | **vbasoftwareDatabase** | [**string**] | Target database | defaults to undefined|
174
+ | **planID** | [**string**] | Plan ID | defaults to undefined|
175
+ | **placeCode** | [**string**] | Place Code | defaults to undefined|
176
+ | **benefitCode** | [**string**] | Benefit Code | defaults to undefined|
177
+
178
+
179
+ ### Return type
180
+
181
+ **PlanPlaceAuthBenefitVBAResponse**
182
+
183
+ ### Authorization
184
+
185
+ [apiKeyAuth](../README.md#apiKeyAuth), [bearerAuth](../README.md#bearerAuth)
186
+
187
+ ### HTTP request headers
188
+
189
+ - **Content-Type**: Not defined
190
+ - **Accept**: text/plain, application/json, text/json
191
+
192
+
193
+ ### HTTP response details
194
+ | Status code | Description | Response headers |
195
+ |-------------|-------------|------------------|
196
+ |**200** | Success | - |
197
+ |**401** | Unauthorized | - |
198
+
199
+ [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
200
+
201
+ # **listPlanPlaceAuthBenefit**
202
+ > PlanPlaceAuthBenefitListVBAResponse listPlanPlaceAuthBenefit()
203
+
204
+ Lists all PlanPlaceAuthBenefit for the given Plan_ID and Place_Code
205
+
206
+ ### Example
207
+
208
+ ```typescript
209
+ import {
210
+ PlanPlaceAuthBenefitApi,
211
+ Configuration
212
+ } from './api';
213
+
214
+ const configuration = new Configuration();
215
+ const apiInstance = new PlanPlaceAuthBenefitApi(configuration);
216
+
217
+ let vbasoftwareDatabase: string; //Target database (default to undefined)
218
+ let planID: string; //Plan ID (default to undefined)
219
+ let placeCode: string; //Place Code (default to undefined)
220
+ let sortBy: string; //Comma separated string to sort by. Each sort field can be followed by :asc or :desc to specify sort direction, ascending is default. E.g., \'Property1:desc,Property2:asc,Property3:asc\' sorts Property1 in descending order, Property2 in ascending, and Property3 in ascending. (optional) (default to undefined)
221
+ let page: number; //Page (optional) (default to 1)
222
+ let pageSize: number; //Page Size (optional) (default to 100)
223
+
224
+ const { status, data } = await apiInstance.listPlanPlaceAuthBenefit(
225
+ vbasoftwareDatabase,
226
+ planID,
227
+ placeCode,
228
+ sortBy,
229
+ page,
230
+ pageSize
231
+ );
232
+ ```
233
+
234
+ ### Parameters
235
+
236
+ |Name | Type | Description | Notes|
237
+ |------------- | ------------- | ------------- | -------------|
238
+ | **vbasoftwareDatabase** | [**string**] | Target database | defaults to undefined|
239
+ | **planID** | [**string**] | Plan ID | defaults to undefined|
240
+ | **placeCode** | [**string**] | Place Code | defaults to undefined|
241
+ | **sortBy** | [**string**] | Comma separated string to sort by. Each sort field can be followed by :asc or :desc to specify sort direction, ascending is default. E.g., \'Property1:desc,Property2:asc,Property3:asc\' sorts Property1 in descending order, Property2 in ascending, and Property3 in ascending. | (optional) defaults to undefined|
242
+ | **page** | [**number**] | Page | (optional) defaults to 1|
243
+ | **pageSize** | [**number**] | Page Size | (optional) defaults to 100|
244
+
245
+
246
+ ### Return type
247
+
248
+ **PlanPlaceAuthBenefitListVBAResponse**
249
+
250
+ ### Authorization
251
+
252
+ [apiKeyAuth](../README.md#apiKeyAuth), [bearerAuth](../README.md#bearerAuth)
253
+
254
+ ### HTTP request headers
255
+
256
+ - **Content-Type**: Not defined
257
+ - **Accept**: text/plain, application/json, text/json
258
+
259
+
260
+ ### HTTP response details
261
+ | Status code | Description | Response headers |
262
+ |-------------|-------------|------------------|
263
+ |**200** | Success | - |
264
+ |**401** | Unauthorized | - |
265
+
266
+ [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
267
+
268
+ # **updateBatchPlanPlaceAuthBenefit**
269
+ > MultiCodeResponseListVBAResponse updateBatchPlanPlaceAuthBenefit(planPlaceAuthBenefit)
270
+
271
+ Create or Update multiple PlanPlaceAuthBenefit at once. If the entity exists, it will be updated. If the entity does not exist, it will be created.
272
+
273
+ ### Example
274
+
275
+ ```typescript
276
+ import {
277
+ PlanPlaceAuthBenefitApi,
278
+ Configuration
279
+ } from './api';
280
+
281
+ const configuration = new Configuration();
282
+ const apiInstance = new PlanPlaceAuthBenefitApi(configuration);
283
+
284
+ let vbasoftwareDatabase: string; //Target database (default to undefined)
285
+ let planPlaceAuthBenefit: Array<PlanPlaceAuthBenefit>; //
286
+
287
+ const { status, data } = await apiInstance.updateBatchPlanPlaceAuthBenefit(
288
+ vbasoftwareDatabase,
289
+ planPlaceAuthBenefit
290
+ );
291
+ ```
292
+
293
+ ### Parameters
294
+
295
+ |Name | Type | Description | Notes|
296
+ |------------- | ------------- | ------------- | -------------|
297
+ | **planPlaceAuthBenefit** | **Array<PlanPlaceAuthBenefit>**| | |
298
+ | **vbasoftwareDatabase** | [**string**] | Target database | defaults to undefined|
299
+
300
+
301
+ ### Return type
302
+
303
+ **MultiCodeResponseListVBAResponse**
304
+
305
+ ### Authorization
306
+
307
+ [apiKeyAuth](../README.md#apiKeyAuth), [bearerAuth](../README.md#bearerAuth)
308
+
309
+ ### HTTP request headers
310
+
311
+ - **Content-Type**: application/json, text/json, application/*+json
312
+ - **Accept**: text/plain, application/json, text/json
313
+
314
+
315
+ ### HTTP response details
316
+ | Status code | Description | Response headers |
317
+ |-------------|-------------|------------------|
318
+ |**207** | Success | - |
319
+ |**401** | Unauthorized | - |
320
+
321
+ [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
322
+
323
+ # **updatePlanPlaceAuthBenefit**
324
+ > PlanPlaceAuthBenefitVBAResponse updatePlanPlaceAuthBenefit(planPlaceAuthBenefit)
325
+
326
+ Updates a specific PlanPlaceAuthBenefit.
327
+
328
+ ### Example
329
+
330
+ ```typescript
331
+ import {
332
+ PlanPlaceAuthBenefitApi,
333
+ Configuration,
334
+ PlanPlaceAuthBenefit
335
+ } from './api';
336
+
337
+ const configuration = new Configuration();
338
+ const apiInstance = new PlanPlaceAuthBenefitApi(configuration);
339
+
340
+ let vbasoftwareDatabase: string; //Target database (default to undefined)
341
+ let planID: string; //Plan ID (default to undefined)
342
+ let placeCode: string; //Place Code (default to undefined)
343
+ let benefitCode: string; //Benefit Code (default to undefined)
344
+ let planPlaceAuthBenefit: PlanPlaceAuthBenefit; //
345
+
346
+ const { status, data } = await apiInstance.updatePlanPlaceAuthBenefit(
347
+ vbasoftwareDatabase,
348
+ planID,
349
+ placeCode,
350
+ benefitCode,
351
+ planPlaceAuthBenefit
352
+ );
353
+ ```
354
+
355
+ ### Parameters
356
+
357
+ |Name | Type | Description | Notes|
358
+ |------------- | ------------- | ------------- | -------------|
359
+ | **planPlaceAuthBenefit** | **PlanPlaceAuthBenefit**| | |
360
+ | **vbasoftwareDatabase** | [**string**] | Target database | defaults to undefined|
361
+ | **planID** | [**string**] | Plan ID | defaults to undefined|
362
+ | **placeCode** | [**string**] | Place Code | defaults to undefined|
363
+ | **benefitCode** | [**string**] | Benefit Code | defaults to undefined|
364
+
365
+
366
+ ### Return type
367
+
368
+ **PlanPlaceAuthBenefitVBAResponse**
369
+
370
+ ### Authorization
371
+
372
+ [apiKeyAuth](../README.md#apiKeyAuth), [bearerAuth](../README.md#bearerAuth)
373
+
374
+ ### HTTP request headers
375
+
376
+ - **Content-Type**: application/json, text/json, application/*+json
377
+ - **Accept**: text/plain, application/json, text/json
378
+
379
+
380
+ ### HTTP response details
381
+ | Status code | Description | Response headers |
382
+ |-------------|-------------|------------------|
383
+ |**200** | Success | - |
384
+ |**401** | Unauthorized | - |
385
+
386
+ [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
387
+
@@ -0,0 +1,24 @@
1
+ # PlanPlaceAuthBenefitListVBAResponse
2
+
3
+
4
+ ## Properties
5
+
6
+ Name | Type | Description | Notes
7
+ ------------ | ------------- | ------------- | -------------
8
+ **data** | [**Array&lt;PlanPlaceAuthBenefit&gt;**](PlanPlaceAuthBenefit.md) | | [optional] [default to undefined]
9
+ **error** | [**VBAProblemDetails**](VBAProblemDetails.md) | | [optional] [default to undefined]
10
+ **debug** | [**Debug**](Debug.md) | | [optional] [default to undefined]
11
+
12
+ ## Example
13
+
14
+ ```typescript
15
+ import { PlanPlaceAuthBenefitListVBAResponse } from './api';
16
+
17
+ const instance: PlanPlaceAuthBenefitListVBAResponse = {
18
+ data,
19
+ error,
20
+ debug,
21
+ };
22
+ ```
23
+
24
+ [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
@@ -0,0 +1,24 @@
1
+ # PlanPlaceAuthBenefitVBAResponse
2
+
3
+
4
+ ## Properties
5
+
6
+ Name | Type | Description | Notes
7
+ ------------ | ------------- | ------------- | -------------
8
+ **data** | [**PlanPlaceAuthBenefit**](PlanPlaceAuthBenefit.md) | | [optional] [default to undefined]
9
+ **error** | [**VBAProblemDetails**](VBAProblemDetails.md) | | [optional] [default to undefined]
10
+ **debug** | [**Debug**](Debug.md) | | [optional] [default to undefined]
11
+
12
+ ## Example
13
+
14
+ ```typescript
15
+ import { PlanPlaceAuthBenefitVBAResponse } from './api';
16
+
17
+ const instance: PlanPlaceAuthBenefitVBAResponse = {
18
+ data,
19
+ error,
20
+ debug,
21
+ };
22
+ ```
23
+
24
+ [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
@@ -0,0 +1,24 @@
1
+ # PlanPlaceAuthListVBAResponse
2
+
3
+
4
+ ## Properties
5
+
6
+ Name | Type | Description | Notes
7
+ ------------ | ------------- | ------------- | -------------
8
+ **data** | [**Array&lt;PlanPlaceAuth&gt;**](PlanPlaceAuth.md) | | [optional] [default to undefined]
9
+ **error** | [**VBAProblemDetails**](VBAProblemDetails.md) | | [optional] [default to undefined]
10
+ **debug** | [**Debug**](Debug.md) | | [optional] [default to undefined]
11
+
12
+ ## Example
13
+
14
+ ```typescript
15
+ import { PlanPlaceAuthListVBAResponse } from './api';
16
+
17
+ const instance: PlanPlaceAuthListVBAResponse = {
18
+ data,
19
+ error,
20
+ debug,
21
+ };
22
+ ```
23
+
24
+ [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
@@ -0,0 +1,24 @@
1
+ # PlanPlaceAuthVBAResponse
2
+
3
+
4
+ ## Properties
5
+
6
+ Name | Type | Description | Notes
7
+ ------------ | ------------- | ------------- | -------------
8
+ **data** | [**PlanPlaceAuth**](PlanPlaceAuth.md) | | [optional] [default to undefined]
9
+ **error** | [**VBAProblemDetails**](VBAProblemDetails.md) | | [optional] [default to undefined]
10
+ **debug** | [**Debug**](Debug.md) | | [optional] [default to undefined]
11
+
12
+ ## Example
13
+
14
+ ```typescript
15
+ import { PlanPlaceAuthVBAResponse } from './api';
16
+
17
+ const instance: PlanPlaceAuthVBAResponse = {
18
+ data,
19
+ error,
20
+ debug,
21
+ };
22
+ ```
23
+
24
+ [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
package/docs/Plans.md CHANGED
@@ -145,6 +145,11 @@ Name | Type | Description | Notes
145
145
  **update_Date** | **string** | Date when the record was last updated in the system. | [optional] [default to undefined]
146
146
  **update_User** | **string** | User that last updated the record in the system. | [optional] [default to undefined]
147
147
  **use_COB_Savings** | **boolean** | Indicates whether the COB should be used. Note: This field is marked as NOT NULL in the database and therefore required by the API. | [default to undefined]
148
+ **visium_Criteria_Key** | **number** | This field is not currently used - future-proofing support for additional options | [optional] [default to undefined]
149
+ **visium_Edit** | **boolean** | Flag for enabling Visium integration. Note: This field is marked as NOT NULL in the database and therefore required by the API. | [default to undefined]
150
+ **visium_Setting_ID** | **string** | This field is not currently used - future-proofing for additional custom parameters | [optional] [default to undefined]
151
+ **talon_Edit** | **boolean** | | [optional] [default to undefined]
152
+ **talon_Criteria_Key** | **number** | | [optional] [default to undefined]
148
153
 
149
154
  ## Example
150
155
 
@@ -292,6 +297,11 @@ const instance: Plans = {
292
297
  update_Date,
293
298
  update_User,
294
299
  use_COB_Savings,
300
+ visium_Criteria_Key,
301
+ visium_Edit,
302
+ visium_Setting_ID,
303
+ talon_Edit,
304
+ talon_Criteria_Key,
295
305
  };
296
306
  ```
297
307
 
@@ -1577,10 +1577,14 @@ const apiInstance = new PremiumInvoicesApi(configuration);
1577
1577
 
1578
1578
  let vbasoftwareDatabase: string; //Target database (default to undefined)
1579
1579
  let invoiceKey: number; //Invoice Key (default to undefined)
1580
+ let deleteAdditionalInvoices: boolean; //Delete Additional Invoices (default to undefined)
1581
+ let keepManualAdjustments: boolean; //Keep Manual Adjustments (default to undefined)
1580
1582
 
1581
1583
  const { status, data } = await apiInstance.regenerateInvoice(
1582
1584
  vbasoftwareDatabase,
1583
- invoiceKey
1585
+ invoiceKey,
1586
+ deleteAdditionalInvoices,
1587
+ keepManualAdjustments
1584
1588
  );
1585
1589
  ```
1586
1590
 
@@ -1590,6 +1594,8 @@ const { status, data } = await apiInstance.regenerateInvoice(
1590
1594
  |------------- | ------------- | ------------- | -------------|
1591
1595
  | **vbasoftwareDatabase** | [**string**] | Target database | defaults to undefined|
1592
1596
  | **invoiceKey** | [**number**] | Invoice Key | defaults to undefined|
1597
+ | **deleteAdditionalInvoices** | [**boolean**] | Delete Additional Invoices | defaults to undefined|
1598
+ | **keepManualAdjustments** | [**boolean**] | Keep Manual Adjustments | defaults to undefined|
1593
1599
 
1594
1600
 
1595
1601
  ### Return type
@@ -46,6 +46,7 @@ Name | Type | Description | Notes
46
46
  **update_Date** | **string** | Date the record was last updated in the system | [optional] [default to undefined]
47
47
  **update_User** | **string** | User that last updated the record in the system | [optional] [default to undefined]
48
48
  **use_Reins_Level** | **boolean** | Indicates if this contract uses \&quot;Reinsurance Levels\&quot; for Reinsurance Calculations. Note: This field is marked as NOT NULL in the database and therefore required by the API. | [default to undefined]
49
+ **advanced_Funding_Minimum** | **number** | | [optional] [default to undefined]
49
50
 
50
51
  ## Example
51
52
 
@@ -94,6 +95,7 @@ const instance: ReinsContract = {
94
95
  update_Date,
95
96
  update_User,
96
97
  use_Reins_Level,
98
+ advanced_Funding_Minimum,
97
99
  };
98
100
  ```
99
101
 
@@ -20,6 +20,7 @@ Name | Type | Description | Notes
20
20
  **transaction_Type** | **string** | The type of transaction being created. This is a spec transaction or agg transaction. | [optional] [default to undefined]
21
21
  **update_Date** | **string** | User that last updated the record in the system | [optional] [default to undefined]
22
22
  **update_User** | **string** | Date the record was last updated in the system | [optional] [default to undefined]
23
+ **attachment_Point** | **number** | | [optional] [default to undefined]
23
24
 
24
25
  ## Example
25
26
 
@@ -42,6 +43,7 @@ const instance: ReinsContractTrans = {
42
43
  transaction_Type,
43
44
  update_Date,
44
45
  update_User,
46
+ attachment_Point,
45
47
  };
46
48
  ```
47
49
 
@@ -20,6 +20,7 @@ Name | Type | Description | Notes
20
20
  **domestic_Claim** | **boolean** | | [optional] [default to undefined]
21
21
  **criteria_Key** | **number** | | [optional] [default to undefined]
22
22
  **domestic_Reduction_Pct** | **number** | | [optional] [default to undefined]
23
+ **attachment_Point_Applied** | **number** | | [optional] [default to undefined]
23
24
 
24
25
  ## Example
25
26
 
@@ -42,6 +43,7 @@ const instance: ReinsContractTransClaim = {
42
43
  domestic_Claim,
43
44
  criteria_Key,
44
45
  domestic_Reduction_Pct,
46
+ attachment_Point_Applied,
45
47
  };
46
48
  ```
47
49