@vbasoftware/vbapi-vbasoftware-typescript-axios 1.20260213.1 → 1.20260306.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 (34) hide show
  1. package/.openapi-generator/FILES +20 -0
  2. package/.openapi-generator/VERSION +1 -1
  3. package/api/premium-distributions-api.ts +118 -0
  4. package/api/processes-api.ts +99 -0
  5. package/api/report-request-reinsurance-api.ts +661 -0
  6. package/api/report-request-reinsurance-detail-api.ts +693 -0
  7. package/api/vbainterface-profile-api.ts +242 -0
  8. package/api.ts +2 -0
  9. package/common.ts +2 -1
  10. package/docs/ClaimRepriceRemove.md +2 -0
  11. package/docs/PremiumDistributionsApi.md +62 -0
  12. package/docs/ProcessesApi.md +56 -0
  13. package/docs/ReportRequestReins.md +38 -0
  14. package/docs/ReportRequestReinsDetail.md +38 -0
  15. package/docs/ReportRequestReinsDetailListVBAResponse.md +24 -0
  16. package/docs/ReportRequestReinsDetailVBAResponse.md +24 -0
  17. package/docs/ReportRequestReinsListVBAResponse.md +24 -0
  18. package/docs/ReportRequestReinsVBAResponse.md +24 -0
  19. package/docs/ReportRequestReinsuranceApi.md +354 -0
  20. package/docs/ReportRequestReinsuranceDetailApi.md +366 -0
  21. package/docs/VBAEDIExecuteContent.md +22 -0
  22. package/docs/VBAEDIExecuteContentListVBAResponse.md +24 -0
  23. package/docs/VBAInterfaceProfileApi.md +124 -0
  24. package/models/claim-reprice-remove.ts +1 -0
  25. package/models/index.ts +8 -0
  26. package/models/report-request-reins-detail-list-vbaresponse.ts +31 -0
  27. package/models/report-request-reins-detail-vbaresponse.ts +31 -0
  28. package/models/report-request-reins-detail.ts +59 -0
  29. package/models/report-request-reins-list-vbaresponse.ts +31 -0
  30. package/models/report-request-reins-vbaresponse.ts +31 -0
  31. package/models/report-request-reins.ts +59 -0
  32. package/models/vbaediexecute-content-list-vbaresponse.ts +31 -0
  33. package/models/vbaediexecute-content.ts +21 -0
  34. package/package.json +1 -1
@@ -0,0 +1,24 @@
1
+ # ReportRequestReinsVBAResponse
2
+
3
+
4
+ ## Properties
5
+
6
+ Name | Type | Description | Notes
7
+ ------------ | ------------- | ------------- | -------------
8
+ **data** | [**ReportRequestReins**](ReportRequestReins.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 { ReportRequestReinsVBAResponse } from './api';
16
+
17
+ const instance: ReportRequestReinsVBAResponse = {
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,354 @@
1
+ # ReportRequestReinsuranceApi
2
+
3
+ All URIs are relative to *https://vbapi.vbasoftware.com/vbasoftware*
4
+
5
+ |Method | HTTP request | Description|
6
+ |------------- | ------------- | -------------|
7
+ |[**createReportRequestReins**](#createreportrequestreins) | **POST** /report-request-reinsurance | Create ReportRequestReins|
8
+ |[**deleteReportRequestReins**](#deletereportrequestreins) | **DELETE** /report-request-reinsurance/{ReportRequestReins_Key} | Delete ReportRequestReins|
9
+ |[**getReportRequestReins**](#getreportrequestreins) | **GET** /report-request-reinsurance/{ReportRequestReins_Key} | Get ReportRequestReins|
10
+ |[**listReportRequestReins**](#listreportrequestreins) | **GET** /report-request-reinsurance | List ReportRequestReins|
11
+ |[**updateBatchReportRequestReins**](#updatebatchreportrequestreins) | **PUT** /report-request-reinsurance-batch | Create or Update Batch ReportRequestReins|
12
+ |[**updateReportRequestReins**](#updatereportrequestreins) | **PUT** /report-request-reinsurance/{ReportRequestReins_Key} | Update ReportRequestReins|
13
+
14
+ # **createReportRequestReins**
15
+ > ReportRequestReinsVBAResponse createReportRequestReins(reportRequestReins)
16
+
17
+ Creates a new ReportRequestReins
18
+
19
+ ### Example
20
+
21
+ ```typescript
22
+ import {
23
+ ReportRequestReinsuranceApi,
24
+ Configuration,
25
+ ReportRequestReins
26
+ } from './api';
27
+
28
+ const configuration = new Configuration();
29
+ const apiInstance = new ReportRequestReinsuranceApi(configuration);
30
+
31
+ let vbasoftwareDatabase: string; //Target database (default to undefined)
32
+ let reportRequestReins: ReportRequestReins; //
33
+
34
+ const { status, data } = await apiInstance.createReportRequestReins(
35
+ vbasoftwareDatabase,
36
+ reportRequestReins
37
+ );
38
+ ```
39
+
40
+ ### Parameters
41
+
42
+ |Name | Type | Description | Notes|
43
+ |------------- | ------------- | ------------- | -------------|
44
+ | **reportRequestReins** | **ReportRequestReins**| | |
45
+ | **vbasoftwareDatabase** | [**string**] | Target database | defaults to undefined|
46
+
47
+
48
+ ### Return type
49
+
50
+ **ReportRequestReinsVBAResponse**
51
+
52
+ ### Authorization
53
+
54
+ [apiKeyAuth](../README.md#apiKeyAuth), [bearerAuth](../README.md#bearerAuth)
55
+
56
+ ### HTTP request headers
57
+
58
+ - **Content-Type**: application/json, text/json, application/*+json
59
+ - **Accept**: text/plain, application/json, text/json
60
+
61
+
62
+ ### HTTP response details
63
+ | Status code | Description | Response headers |
64
+ |-------------|-------------|------------------|
65
+ |**200** | Success | - |
66
+ |**401** | Unauthorized | - |
67
+
68
+ [[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)
69
+
70
+ # **deleteReportRequestReins**
71
+ > deleteReportRequestReins()
72
+
73
+ Deletes an ReportRequestReins
74
+
75
+ ### Example
76
+
77
+ ```typescript
78
+ import {
79
+ ReportRequestReinsuranceApi,
80
+ Configuration
81
+ } from './api';
82
+
83
+ const configuration = new Configuration();
84
+ const apiInstance = new ReportRequestReinsuranceApi(configuration);
85
+
86
+ let vbasoftwareDatabase: string; //Target database (default to undefined)
87
+ let reportRequestReinsKey: number; //ReportRequestReins Key (default to undefined)
88
+
89
+ const { status, data } = await apiInstance.deleteReportRequestReins(
90
+ vbasoftwareDatabase,
91
+ reportRequestReinsKey
92
+ );
93
+ ```
94
+
95
+ ### Parameters
96
+
97
+ |Name | Type | Description | Notes|
98
+ |------------- | ------------- | ------------- | -------------|
99
+ | **vbasoftwareDatabase** | [**string**] | Target database | defaults to undefined|
100
+ | **reportRequestReinsKey** | [**number**] | ReportRequestReins Key | defaults to undefined|
101
+
102
+
103
+ ### Return type
104
+
105
+ void (empty response body)
106
+
107
+ ### Authorization
108
+
109
+ [apiKeyAuth](../README.md#apiKeyAuth), [bearerAuth](../README.md#bearerAuth)
110
+
111
+ ### HTTP request headers
112
+
113
+ - **Content-Type**: Not defined
114
+ - **Accept**: Not defined
115
+
116
+
117
+ ### HTTP response details
118
+ | Status code | Description | Response headers |
119
+ |-------------|-------------|------------------|
120
+ |**204** | Success | - |
121
+ |**401** | Unauthorized | - |
122
+
123
+ [[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)
124
+
125
+ # **getReportRequestReins**
126
+ > ReportRequestReinsVBAResponse getReportRequestReins()
127
+
128
+ Gets ReportRequestReins
129
+
130
+ ### Example
131
+
132
+ ```typescript
133
+ import {
134
+ ReportRequestReinsuranceApi,
135
+ Configuration
136
+ } from './api';
137
+
138
+ const configuration = new Configuration();
139
+ const apiInstance = new ReportRequestReinsuranceApi(configuration);
140
+
141
+ let vbasoftwareDatabase: string; //Target database (default to undefined)
142
+ let reportRequestReinsKey: number; //ReportRequestReins Key (default to undefined)
143
+
144
+ const { status, data } = await apiInstance.getReportRequestReins(
145
+ vbasoftwareDatabase,
146
+ reportRequestReinsKey
147
+ );
148
+ ```
149
+
150
+ ### Parameters
151
+
152
+ |Name | Type | Description | Notes|
153
+ |------------- | ------------- | ------------- | -------------|
154
+ | **vbasoftwareDatabase** | [**string**] | Target database | defaults to undefined|
155
+ | **reportRequestReinsKey** | [**number**] | ReportRequestReins Key | defaults to undefined|
156
+
157
+
158
+ ### Return type
159
+
160
+ **ReportRequestReinsVBAResponse**
161
+
162
+ ### Authorization
163
+
164
+ [apiKeyAuth](../README.md#apiKeyAuth), [bearerAuth](../README.md#bearerAuth)
165
+
166
+ ### HTTP request headers
167
+
168
+ - **Content-Type**: Not defined
169
+ - **Accept**: text/plain, application/json, text/json
170
+
171
+
172
+ ### HTTP response details
173
+ | Status code | Description | Response headers |
174
+ |-------------|-------------|------------------|
175
+ |**200** | Success | - |
176
+ |**401** | Unauthorized | - |
177
+
178
+ [[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)
179
+
180
+ # **listReportRequestReins**
181
+ > ReportRequestReinsListVBAResponse listReportRequestReins()
182
+
183
+ Lists all ReportRequestReins
184
+
185
+ ### Example
186
+
187
+ ```typescript
188
+ import {
189
+ ReportRequestReinsuranceApi,
190
+ Configuration
191
+ } from './api';
192
+
193
+ const configuration = new Configuration();
194
+ const apiInstance = new ReportRequestReinsuranceApi(configuration);
195
+
196
+ let vbasoftwareDatabase: string; //Target database (default to undefined)
197
+ 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)
198
+ let page: number; //Page (optional) (default to 1)
199
+ let pageSize: number; //Page Size (optional) (default to 100)
200
+
201
+ const { status, data } = await apiInstance.listReportRequestReins(
202
+ vbasoftwareDatabase,
203
+ sortBy,
204
+ page,
205
+ pageSize
206
+ );
207
+ ```
208
+
209
+ ### Parameters
210
+
211
+ |Name | Type | Description | Notes|
212
+ |------------- | ------------- | ------------- | -------------|
213
+ | **vbasoftwareDatabase** | [**string**] | Target database | defaults to undefined|
214
+ | **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|
215
+ | **page** | [**number**] | Page | (optional) defaults to 1|
216
+ | **pageSize** | [**number**] | Page Size | (optional) defaults to 100|
217
+
218
+
219
+ ### Return type
220
+
221
+ **ReportRequestReinsListVBAResponse**
222
+
223
+ ### Authorization
224
+
225
+ [apiKeyAuth](../README.md#apiKeyAuth), [bearerAuth](../README.md#bearerAuth)
226
+
227
+ ### HTTP request headers
228
+
229
+ - **Content-Type**: Not defined
230
+ - **Accept**: text/plain, application/json, text/json
231
+
232
+
233
+ ### HTTP response details
234
+ | Status code | Description | Response headers |
235
+ |-------------|-------------|------------------|
236
+ |**200** | Success | - |
237
+ |**401** | Unauthorized | - |
238
+
239
+ [[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)
240
+
241
+ # **updateBatchReportRequestReins**
242
+ > MultiCodeResponseListVBAResponse updateBatchReportRequestReins(reportRequestReins)
243
+
244
+ Create or Update multiple ReportRequestReins at once. If the entity exists, it will be updated. If the entity does not exist, it will be created.
245
+
246
+ ### Example
247
+
248
+ ```typescript
249
+ import {
250
+ ReportRequestReinsuranceApi,
251
+ Configuration
252
+ } from './api';
253
+
254
+ const configuration = new Configuration();
255
+ const apiInstance = new ReportRequestReinsuranceApi(configuration);
256
+
257
+ let vbasoftwareDatabase: string; //Target database (default to undefined)
258
+ let reportRequestReins: Array<ReportRequestReins>; //
259
+
260
+ const { status, data } = await apiInstance.updateBatchReportRequestReins(
261
+ vbasoftwareDatabase,
262
+ reportRequestReins
263
+ );
264
+ ```
265
+
266
+ ### Parameters
267
+
268
+ |Name | Type | Description | Notes|
269
+ |------------- | ------------- | ------------- | -------------|
270
+ | **reportRequestReins** | **Array<ReportRequestReins>**| | |
271
+ | **vbasoftwareDatabase** | [**string**] | Target database | defaults to undefined|
272
+
273
+
274
+ ### Return type
275
+
276
+ **MultiCodeResponseListVBAResponse**
277
+
278
+ ### Authorization
279
+
280
+ [apiKeyAuth](../README.md#apiKeyAuth), [bearerAuth](../README.md#bearerAuth)
281
+
282
+ ### HTTP request headers
283
+
284
+ - **Content-Type**: application/json, text/json, application/*+json
285
+ - **Accept**: text/plain, application/json, text/json
286
+
287
+
288
+ ### HTTP response details
289
+ | Status code | Description | Response headers |
290
+ |-------------|-------------|------------------|
291
+ |**207** | Success | - |
292
+ |**401** | Unauthorized | - |
293
+
294
+ [[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)
295
+
296
+ # **updateReportRequestReins**
297
+ > ReportRequestReinsVBAResponse updateReportRequestReins(reportRequestReins)
298
+
299
+ Updates a specific ReportRequestReins.
300
+
301
+ ### Example
302
+
303
+ ```typescript
304
+ import {
305
+ ReportRequestReinsuranceApi,
306
+ Configuration,
307
+ ReportRequestReins
308
+ } from './api';
309
+
310
+ const configuration = new Configuration();
311
+ const apiInstance = new ReportRequestReinsuranceApi(configuration);
312
+
313
+ let vbasoftwareDatabase: string; //Target database (default to undefined)
314
+ let reportRequestReinsKey: number; //ReportRequestReins Key (default to undefined)
315
+ let reportRequestReins: ReportRequestReins; //
316
+
317
+ const { status, data } = await apiInstance.updateReportRequestReins(
318
+ vbasoftwareDatabase,
319
+ reportRequestReinsKey,
320
+ reportRequestReins
321
+ );
322
+ ```
323
+
324
+ ### Parameters
325
+
326
+ |Name | Type | Description | Notes|
327
+ |------------- | ------------- | ------------- | -------------|
328
+ | **reportRequestReins** | **ReportRequestReins**| | |
329
+ | **vbasoftwareDatabase** | [**string**] | Target database | defaults to undefined|
330
+ | **reportRequestReinsKey** | [**number**] | ReportRequestReins Key | defaults to undefined|
331
+
332
+
333
+ ### Return type
334
+
335
+ **ReportRequestReinsVBAResponse**
336
+
337
+ ### Authorization
338
+
339
+ [apiKeyAuth](../README.md#apiKeyAuth), [bearerAuth](../README.md#bearerAuth)
340
+
341
+ ### HTTP request headers
342
+
343
+ - **Content-Type**: application/json, text/json, application/*+json
344
+ - **Accept**: text/plain, application/json, text/json
345
+
346
+
347
+ ### HTTP response details
348
+ | Status code | Description | Response headers |
349
+ |-------------|-------------|------------------|
350
+ |**200** | Success | - |
351
+ |**401** | Unauthorized | - |
352
+
353
+ [[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)
354
+