@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
@@ -0,0 +1,372 @@
1
+ # PlanPlaceAuthApi
2
+
3
+ All URIs are relative to *https://vbapi.vbasoftware.com/vbasoftware*
4
+
5
+ |Method | HTTP request | Description|
6
+ |------------- | ------------- | -------------|
7
+ |[**createPlanPlaceAuth**](#createplanplaceauth) | **POST** /plans/{Plan_ID}/place-auths/{Place_Code} | Create PlanPlaceAuth|
8
+ |[**deletePlanPlaceAuth**](#deleteplanplaceauth) | **DELETE** /plans/{Plan_ID}/place-auths/{Place_Code} | Delete PlanPlaceAuth|
9
+ |[**getPlanPlaceAuth**](#getplanplaceauth) | **GET** /plans/{Plan_ID}/place-auths/{Place_Code} | Get PlanPlaceAuth|
10
+ |[**listPlanPlaceAuth**](#listplanplaceauth) | **GET** /plans/{Plan_ID}/place-auths | List PlanPlaceAuth|
11
+ |[**updateBatchPlanPlaceAuth**](#updatebatchplanplaceauth) | **PUT** /plan-place-auths-batch | Create or Update Batch PlanPlaceAuth|
12
+ |[**updatePlanPlaceAuth**](#updateplanplaceauth) | **PUT** /plans/{Plan_ID}/place-auths/{Place_Code} | Update PlanPlaceAuth|
13
+
14
+ # **createPlanPlaceAuth**
15
+ > PlanPlaceAuthVBAResponse createPlanPlaceAuth(planPlaceAuth)
16
+
17
+ Creates a new PlanPlaceAuth
18
+
19
+ ### Example
20
+
21
+ ```typescript
22
+ import {
23
+ PlanPlaceAuthApi,
24
+ Configuration,
25
+ PlanPlaceAuth
26
+ } from './api';
27
+
28
+ const configuration = new Configuration();
29
+ const apiInstance = new PlanPlaceAuthApi(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 planPlaceAuth: PlanPlaceAuth; //
35
+
36
+ const { status, data } = await apiInstance.createPlanPlaceAuth(
37
+ vbasoftwareDatabase,
38
+ planID,
39
+ placeCode,
40
+ planPlaceAuth
41
+ );
42
+ ```
43
+
44
+ ### Parameters
45
+
46
+ |Name | Type | Description | Notes|
47
+ |------------- | ------------- | ------------- | -------------|
48
+ | **planPlaceAuth** | **PlanPlaceAuth**| | |
49
+ | **vbasoftwareDatabase** | [**string**] | Target database | defaults to undefined|
50
+ | **planID** | [**string**] | Plan ID | defaults to undefined|
51
+ | **placeCode** | [**string**] | Place Code | defaults to undefined|
52
+
53
+
54
+ ### Return type
55
+
56
+ **PlanPlaceAuthVBAResponse**
57
+
58
+ ### Authorization
59
+
60
+ [apiKeyAuth](../README.md#apiKeyAuth), [bearerAuth](../README.md#bearerAuth)
61
+
62
+ ### HTTP request headers
63
+
64
+ - **Content-Type**: application/json, text/json, application/*+json
65
+ - **Accept**: text/plain, application/json, text/json
66
+
67
+
68
+ ### HTTP response details
69
+ | Status code | Description | Response headers |
70
+ |-------------|-------------|------------------|
71
+ |**200** | Success | - |
72
+ |**401** | Unauthorized | - |
73
+
74
+ [[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)
75
+
76
+ # **deletePlanPlaceAuth**
77
+ > deletePlanPlaceAuth()
78
+
79
+ Deletes an PlanPlaceAuth
80
+
81
+ ### Example
82
+
83
+ ```typescript
84
+ import {
85
+ PlanPlaceAuthApi,
86
+ Configuration
87
+ } from './api';
88
+
89
+ const configuration = new Configuration();
90
+ const apiInstance = new PlanPlaceAuthApi(configuration);
91
+
92
+ let vbasoftwareDatabase: string; //Target database (default to undefined)
93
+ let planID: string; //Plan ID (default to undefined)
94
+ let placeCode: string; //Place Code (default to undefined)
95
+
96
+ const { status, data } = await apiInstance.deletePlanPlaceAuth(
97
+ vbasoftwareDatabase,
98
+ planID,
99
+ placeCode
100
+ );
101
+ ```
102
+
103
+ ### Parameters
104
+
105
+ |Name | Type | Description | Notes|
106
+ |------------- | ------------- | ------------- | -------------|
107
+ | **vbasoftwareDatabase** | [**string**] | Target database | defaults to undefined|
108
+ | **planID** | [**string**] | Plan ID | defaults to undefined|
109
+ | **placeCode** | [**string**] | Place Code | defaults to undefined|
110
+
111
+
112
+ ### Return type
113
+
114
+ void (empty response body)
115
+
116
+ ### Authorization
117
+
118
+ [apiKeyAuth](../README.md#apiKeyAuth), [bearerAuth](../README.md#bearerAuth)
119
+
120
+ ### HTTP request headers
121
+
122
+ - **Content-Type**: Not defined
123
+ - **Accept**: Not defined
124
+
125
+
126
+ ### HTTP response details
127
+ | Status code | Description | Response headers |
128
+ |-------------|-------------|------------------|
129
+ |**204** | Success | - |
130
+ |**401** | Unauthorized | - |
131
+
132
+ [[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)
133
+
134
+ # **getPlanPlaceAuth**
135
+ > PlanPlaceAuthVBAResponse getPlanPlaceAuth()
136
+
137
+ Gets PlanPlaceAuth
138
+
139
+ ### Example
140
+
141
+ ```typescript
142
+ import {
143
+ PlanPlaceAuthApi,
144
+ Configuration
145
+ } from './api';
146
+
147
+ const configuration = new Configuration();
148
+ const apiInstance = new PlanPlaceAuthApi(configuration);
149
+
150
+ let vbasoftwareDatabase: string; //Target database (default to undefined)
151
+ let planID: string; //Plan ID (default to undefined)
152
+ let placeCode: string; //Place Code (default to undefined)
153
+
154
+ const { status, data } = await apiInstance.getPlanPlaceAuth(
155
+ vbasoftwareDatabase,
156
+ planID,
157
+ placeCode
158
+ );
159
+ ```
160
+
161
+ ### Parameters
162
+
163
+ |Name | Type | Description | Notes|
164
+ |------------- | ------------- | ------------- | -------------|
165
+ | **vbasoftwareDatabase** | [**string**] | Target database | defaults to undefined|
166
+ | **planID** | [**string**] | Plan ID | defaults to undefined|
167
+ | **placeCode** | [**string**] | Place Code | defaults to undefined|
168
+
169
+
170
+ ### Return type
171
+
172
+ **PlanPlaceAuthVBAResponse**
173
+
174
+ ### Authorization
175
+
176
+ [apiKeyAuth](../README.md#apiKeyAuth), [bearerAuth](../README.md#bearerAuth)
177
+
178
+ ### HTTP request headers
179
+
180
+ - **Content-Type**: Not defined
181
+ - **Accept**: text/plain, application/json, text/json
182
+
183
+
184
+ ### HTTP response details
185
+ | Status code | Description | Response headers |
186
+ |-------------|-------------|------------------|
187
+ |**200** | Success | - |
188
+ |**401** | Unauthorized | - |
189
+
190
+ [[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)
191
+
192
+ # **listPlanPlaceAuth**
193
+ > PlanPlaceAuthListVBAResponse listPlanPlaceAuth()
194
+
195
+ Lists all PlanPlaceAuth for the given Plan_ID
196
+
197
+ ### Example
198
+
199
+ ```typescript
200
+ import {
201
+ PlanPlaceAuthApi,
202
+ Configuration
203
+ } from './api';
204
+
205
+ const configuration = new Configuration();
206
+ const apiInstance = new PlanPlaceAuthApi(configuration);
207
+
208
+ let vbasoftwareDatabase: string; //Target database (default to undefined)
209
+ let planID: string; //Plan ID (default to undefined)
210
+ 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)
211
+ let page: number; //Page (optional) (default to 1)
212
+ let pageSize: number; //Page Size (optional) (default to 100)
213
+
214
+ const { status, data } = await apiInstance.listPlanPlaceAuth(
215
+ vbasoftwareDatabase,
216
+ planID,
217
+ sortBy,
218
+ page,
219
+ pageSize
220
+ );
221
+ ```
222
+
223
+ ### Parameters
224
+
225
+ |Name | Type | Description | Notes|
226
+ |------------- | ------------- | ------------- | -------------|
227
+ | **vbasoftwareDatabase** | [**string**] | Target database | defaults to undefined|
228
+ | **planID** | [**string**] | Plan ID | defaults to undefined|
229
+ | **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|
230
+ | **page** | [**number**] | Page | (optional) defaults to 1|
231
+ | **pageSize** | [**number**] | Page Size | (optional) defaults to 100|
232
+
233
+
234
+ ### Return type
235
+
236
+ **PlanPlaceAuthListVBAResponse**
237
+
238
+ ### Authorization
239
+
240
+ [apiKeyAuth](../README.md#apiKeyAuth), [bearerAuth](../README.md#bearerAuth)
241
+
242
+ ### HTTP request headers
243
+
244
+ - **Content-Type**: Not defined
245
+ - **Accept**: text/plain, application/json, text/json
246
+
247
+
248
+ ### HTTP response details
249
+ | Status code | Description | Response headers |
250
+ |-------------|-------------|------------------|
251
+ |**200** | Success | - |
252
+ |**401** | Unauthorized | - |
253
+
254
+ [[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)
255
+
256
+ # **updateBatchPlanPlaceAuth**
257
+ > MultiCodeResponseListVBAResponse updateBatchPlanPlaceAuth(planPlaceAuth)
258
+
259
+ Create or Update multiple PlanPlaceAuth at once. If the entity exists, it will be updated. If the entity does not exist, it will be created.
260
+
261
+ ### Example
262
+
263
+ ```typescript
264
+ import {
265
+ PlanPlaceAuthApi,
266
+ Configuration
267
+ } from './api';
268
+
269
+ const configuration = new Configuration();
270
+ const apiInstance = new PlanPlaceAuthApi(configuration);
271
+
272
+ let vbasoftwareDatabase: string; //Target database (default to undefined)
273
+ let planPlaceAuth: Array<PlanPlaceAuth>; //
274
+
275
+ const { status, data } = await apiInstance.updateBatchPlanPlaceAuth(
276
+ vbasoftwareDatabase,
277
+ planPlaceAuth
278
+ );
279
+ ```
280
+
281
+ ### Parameters
282
+
283
+ |Name | Type | Description | Notes|
284
+ |------------- | ------------- | ------------- | -------------|
285
+ | **planPlaceAuth** | **Array<PlanPlaceAuth>**| | |
286
+ | **vbasoftwareDatabase** | [**string**] | Target database | defaults to undefined|
287
+
288
+
289
+ ### Return type
290
+
291
+ **MultiCodeResponseListVBAResponse**
292
+
293
+ ### Authorization
294
+
295
+ [apiKeyAuth](../README.md#apiKeyAuth), [bearerAuth](../README.md#bearerAuth)
296
+
297
+ ### HTTP request headers
298
+
299
+ - **Content-Type**: application/json, text/json, application/*+json
300
+ - **Accept**: text/plain, application/json, text/json
301
+
302
+
303
+ ### HTTP response details
304
+ | Status code | Description | Response headers |
305
+ |-------------|-------------|------------------|
306
+ |**207** | Success | - |
307
+ |**401** | Unauthorized | - |
308
+
309
+ [[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)
310
+
311
+ # **updatePlanPlaceAuth**
312
+ > PlanPlaceAuthVBAResponse updatePlanPlaceAuth(planPlaceAuth)
313
+
314
+ Updates a specific PlanPlaceAuth.
315
+
316
+ ### Example
317
+
318
+ ```typescript
319
+ import {
320
+ PlanPlaceAuthApi,
321
+ Configuration,
322
+ PlanPlaceAuth
323
+ } from './api';
324
+
325
+ const configuration = new Configuration();
326
+ const apiInstance = new PlanPlaceAuthApi(configuration);
327
+
328
+ let vbasoftwareDatabase: string; //Target database (default to undefined)
329
+ let planID: string; //Plan ID (default to undefined)
330
+ let placeCode: string; //Place Code (default to undefined)
331
+ let planPlaceAuth: PlanPlaceAuth; //
332
+
333
+ const { status, data } = await apiInstance.updatePlanPlaceAuth(
334
+ vbasoftwareDatabase,
335
+ planID,
336
+ placeCode,
337
+ planPlaceAuth
338
+ );
339
+ ```
340
+
341
+ ### Parameters
342
+
343
+ |Name | Type | Description | Notes|
344
+ |------------- | ------------- | ------------- | -------------|
345
+ | **planPlaceAuth** | **PlanPlaceAuth**| | |
346
+ | **vbasoftwareDatabase** | [**string**] | Target database | defaults to undefined|
347
+ | **planID** | [**string**] | Plan ID | defaults to undefined|
348
+ | **placeCode** | [**string**] | Place Code | defaults to undefined|
349
+
350
+
351
+ ### Return type
352
+
353
+ **PlanPlaceAuthVBAResponse**
354
+
355
+ ### Authorization
356
+
357
+ [apiKeyAuth](../README.md#apiKeyAuth), [bearerAuth](../README.md#bearerAuth)
358
+
359
+ ### HTTP request headers
360
+
361
+ - **Content-Type**: application/json, text/json, application/*+json
362
+ - **Accept**: text/plain, application/json, text/json
363
+
364
+
365
+ ### HTTP response details
366
+ | Status code | Description | Response headers |
367
+ |-------------|-------------|------------------|
368
+ |**200** | Success | - |
369
+ |**401** | Unauthorized | - |
370
+
371
+ [[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)
372
+
@@ -0,0 +1,32 @@
1
+ # PlanPlaceAuthBenefit
2
+
3
+
4
+ ## Properties
5
+
6
+ Name | Type | Description | Notes
7
+ ------------ | ------------- | ------------- | -------------
8
+ **plan_ID** | **string** | | [default to undefined]
9
+ **place_Code** | **string** | | [default to undefined]
10
+ **benefit_Code** | **string** | | [default to undefined]
11
+ **entry_Date** | **string** | Date when the record was added to the system. | [optional] [default to undefined]
12
+ **entry_User** | **string** | User that first added the record to the system. | [optional] [default to undefined]
13
+ **update_Date** | **string** | Date when the record was last updated in the system. | [optional] [default to undefined]
14
+ **update_User** | **string** | User that last updated the record in the system. | [optional] [default to undefined]
15
+
16
+ ## Example
17
+
18
+ ```typescript
19
+ import { PlanPlaceAuthBenefit } from './api';
20
+
21
+ const instance: PlanPlaceAuthBenefit = {
22
+ plan_ID,
23
+ place_Code,
24
+ benefit_Code,
25
+ entry_Date,
26
+ entry_User,
27
+ update_Date,
28
+ update_User,
29
+ };
30
+ ```
31
+
32
+ [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)