@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.
- package/.openapi-generator/FILES +20 -0
- package/.openapi-generator/VERSION +1 -1
- package/api/premium-distributions-api.ts +118 -0
- package/api/processes-api.ts +99 -0
- package/api/report-request-reinsurance-api.ts +661 -0
- package/api/report-request-reinsurance-detail-api.ts +693 -0
- package/api/vbainterface-profile-api.ts +242 -0
- package/api.ts +2 -0
- package/common.ts +2 -1
- package/docs/ClaimRepriceRemove.md +2 -0
- package/docs/PremiumDistributionsApi.md +62 -0
- package/docs/ProcessesApi.md +56 -0
- package/docs/ReportRequestReins.md +38 -0
- package/docs/ReportRequestReinsDetail.md +38 -0
- package/docs/ReportRequestReinsDetailListVBAResponse.md +24 -0
- package/docs/ReportRequestReinsDetailVBAResponse.md +24 -0
- package/docs/ReportRequestReinsListVBAResponse.md +24 -0
- package/docs/ReportRequestReinsVBAResponse.md +24 -0
- package/docs/ReportRequestReinsuranceApi.md +354 -0
- package/docs/ReportRequestReinsuranceDetailApi.md +366 -0
- package/docs/VBAEDIExecuteContent.md +22 -0
- package/docs/VBAEDIExecuteContentListVBAResponse.md +24 -0
- package/docs/VBAInterfaceProfileApi.md +124 -0
- package/models/claim-reprice-remove.ts +1 -0
- package/models/index.ts +8 -0
- package/models/report-request-reins-detail-list-vbaresponse.ts +31 -0
- package/models/report-request-reins-detail-vbaresponse.ts +31 -0
- package/models/report-request-reins-detail.ts +59 -0
- package/models/report-request-reins-list-vbaresponse.ts +31 -0
- package/models/report-request-reins-vbaresponse.ts +31 -0
- package/models/report-request-reins.ts +59 -0
- package/models/vbaediexecute-content-list-vbaresponse.ts +31 -0
- package/models/vbaediexecute-content.ts +21 -0
- package/package.json +1 -1
|
@@ -0,0 +1,366 @@
|
|
|
1
|
+
# ReportRequestReinsuranceDetailApi
|
|
2
|
+
|
|
3
|
+
All URIs are relative to *https://vbapi.vbasoftware.com/vbasoftware*
|
|
4
|
+
|
|
5
|
+
|Method | HTTP request | Description|
|
|
6
|
+
|------------- | ------------- | -------------|
|
|
7
|
+
|[**createReportRequestReinsDetail**](#createreportrequestreinsdetail) | **POST** /report-request-reinsurance-detail | Create ReportRequestReinsDetail|
|
|
8
|
+
|[**deleteReportRequestReinsDetail**](#deletereportrequestreinsdetail) | **DELETE** /report-request-reinsurance/{ReportRequestReins_Key}/detail/{Request_Seq} | Delete ReportRequestReinsDetail|
|
|
9
|
+
|[**getReportRequestReinsDetail**](#getreportrequestreinsdetail) | **GET** /report-request-reinsurance/{ReportRequestReins_Key}/detail/{Request_Seq} | Get ReportRequestReinsDetail|
|
|
10
|
+
|[**listReportRequestReinsDetail**](#listreportrequestreinsdetail) | **GET** /report-request-reinsurance/{ReportRequestReins_Key}/detail | List ReportRequestReinsDetail|
|
|
11
|
+
|[**updateBatchReportRequestReinsDetail**](#updatebatchreportrequestreinsdetail) | **PUT** /report-request-reinsurance-detail/batch | Create or Update Batch ReportRequestReinsDetail|
|
|
12
|
+
|[**updateReportRequestReinsDetail**](#updatereportrequestreinsdetail) | **PUT** /report-request-reinsurance/{ReportRequestReins_Key}/detail/{Request_Seq} | Update ReportRequestReinsDetail|
|
|
13
|
+
|
|
14
|
+
# **createReportRequestReinsDetail**
|
|
15
|
+
> ReportRequestReinsDetailVBAResponse createReportRequestReinsDetail(reportRequestReinsDetail)
|
|
16
|
+
|
|
17
|
+
Creates a new ReportRequestReinsDetail
|
|
18
|
+
|
|
19
|
+
### Example
|
|
20
|
+
|
|
21
|
+
```typescript
|
|
22
|
+
import {
|
|
23
|
+
ReportRequestReinsuranceDetailApi,
|
|
24
|
+
Configuration,
|
|
25
|
+
ReportRequestReinsDetail
|
|
26
|
+
} from './api';
|
|
27
|
+
|
|
28
|
+
const configuration = new Configuration();
|
|
29
|
+
const apiInstance = new ReportRequestReinsuranceDetailApi(configuration);
|
|
30
|
+
|
|
31
|
+
let vbasoftwareDatabase: string; //Target database (default to undefined)
|
|
32
|
+
let reportRequestReinsDetail: ReportRequestReinsDetail; //
|
|
33
|
+
|
|
34
|
+
const { status, data } = await apiInstance.createReportRequestReinsDetail(
|
|
35
|
+
vbasoftwareDatabase,
|
|
36
|
+
reportRequestReinsDetail
|
|
37
|
+
);
|
|
38
|
+
```
|
|
39
|
+
|
|
40
|
+
### Parameters
|
|
41
|
+
|
|
42
|
+
|Name | Type | Description | Notes|
|
|
43
|
+
|------------- | ------------- | ------------- | -------------|
|
|
44
|
+
| **reportRequestReinsDetail** | **ReportRequestReinsDetail**| | |
|
|
45
|
+
| **vbasoftwareDatabase** | [**string**] | Target database | defaults to undefined|
|
|
46
|
+
|
|
47
|
+
|
|
48
|
+
### Return type
|
|
49
|
+
|
|
50
|
+
**ReportRequestReinsDetailVBAResponse**
|
|
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
|
+
# **deleteReportRequestReinsDetail**
|
|
71
|
+
> deleteReportRequestReinsDetail()
|
|
72
|
+
|
|
73
|
+
Deletes an ReportRequestReinsDetail
|
|
74
|
+
|
|
75
|
+
### Example
|
|
76
|
+
|
|
77
|
+
```typescript
|
|
78
|
+
import {
|
|
79
|
+
ReportRequestReinsuranceDetailApi,
|
|
80
|
+
Configuration
|
|
81
|
+
} from './api';
|
|
82
|
+
|
|
83
|
+
const configuration = new Configuration();
|
|
84
|
+
const apiInstance = new ReportRequestReinsuranceDetailApi(configuration);
|
|
85
|
+
|
|
86
|
+
let vbasoftwareDatabase: string; //Target database (default to undefined)
|
|
87
|
+
let reportRequestReinsKey: number; //ReportRequestReins Key (default to undefined)
|
|
88
|
+
let requestSeq: number; //Request Seq (default to undefined)
|
|
89
|
+
|
|
90
|
+
const { status, data } = await apiInstance.deleteReportRequestReinsDetail(
|
|
91
|
+
vbasoftwareDatabase,
|
|
92
|
+
reportRequestReinsKey,
|
|
93
|
+
requestSeq
|
|
94
|
+
);
|
|
95
|
+
```
|
|
96
|
+
|
|
97
|
+
### Parameters
|
|
98
|
+
|
|
99
|
+
|Name | Type | Description | Notes|
|
|
100
|
+
|------------- | ------------- | ------------- | -------------|
|
|
101
|
+
| **vbasoftwareDatabase** | [**string**] | Target database | defaults to undefined|
|
|
102
|
+
| **reportRequestReinsKey** | [**number**] | ReportRequestReins Key | defaults to undefined|
|
|
103
|
+
| **requestSeq** | [**number**] | Request Seq | defaults to undefined|
|
|
104
|
+
|
|
105
|
+
|
|
106
|
+
### Return type
|
|
107
|
+
|
|
108
|
+
void (empty response body)
|
|
109
|
+
|
|
110
|
+
### Authorization
|
|
111
|
+
|
|
112
|
+
[apiKeyAuth](../README.md#apiKeyAuth), [bearerAuth](../README.md#bearerAuth)
|
|
113
|
+
|
|
114
|
+
### HTTP request headers
|
|
115
|
+
|
|
116
|
+
- **Content-Type**: Not defined
|
|
117
|
+
- **Accept**: Not defined
|
|
118
|
+
|
|
119
|
+
|
|
120
|
+
### HTTP response details
|
|
121
|
+
| Status code | Description | Response headers |
|
|
122
|
+
|-------------|-------------|------------------|
|
|
123
|
+
|**204** | Success | - |
|
|
124
|
+
|**401** | Unauthorized | - |
|
|
125
|
+
|
|
126
|
+
[[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)
|
|
127
|
+
|
|
128
|
+
# **getReportRequestReinsDetail**
|
|
129
|
+
> ReportRequestReinsDetailVBAResponse getReportRequestReinsDetail()
|
|
130
|
+
|
|
131
|
+
Gets ReportRequestReinsDetail
|
|
132
|
+
|
|
133
|
+
### Example
|
|
134
|
+
|
|
135
|
+
```typescript
|
|
136
|
+
import {
|
|
137
|
+
ReportRequestReinsuranceDetailApi,
|
|
138
|
+
Configuration
|
|
139
|
+
} from './api';
|
|
140
|
+
|
|
141
|
+
const configuration = new Configuration();
|
|
142
|
+
const apiInstance = new ReportRequestReinsuranceDetailApi(configuration);
|
|
143
|
+
|
|
144
|
+
let vbasoftwareDatabase: string; //Target database (default to undefined)
|
|
145
|
+
let reportRequestReinsKey: number; //ReportRequestReins Key (default to undefined)
|
|
146
|
+
let requestSeq: number; //Request Seq (default to undefined)
|
|
147
|
+
|
|
148
|
+
const { status, data } = await apiInstance.getReportRequestReinsDetail(
|
|
149
|
+
vbasoftwareDatabase,
|
|
150
|
+
reportRequestReinsKey,
|
|
151
|
+
requestSeq
|
|
152
|
+
);
|
|
153
|
+
```
|
|
154
|
+
|
|
155
|
+
### Parameters
|
|
156
|
+
|
|
157
|
+
|Name | Type | Description | Notes|
|
|
158
|
+
|------------- | ------------- | ------------- | -------------|
|
|
159
|
+
| **vbasoftwareDatabase** | [**string**] | Target database | defaults to undefined|
|
|
160
|
+
| **reportRequestReinsKey** | [**number**] | ReportRequestReins Key | defaults to undefined|
|
|
161
|
+
| **requestSeq** | [**number**] | Request Seq | defaults to undefined|
|
|
162
|
+
|
|
163
|
+
|
|
164
|
+
### Return type
|
|
165
|
+
|
|
166
|
+
**ReportRequestReinsDetailVBAResponse**
|
|
167
|
+
|
|
168
|
+
### Authorization
|
|
169
|
+
|
|
170
|
+
[apiKeyAuth](../README.md#apiKeyAuth), [bearerAuth](../README.md#bearerAuth)
|
|
171
|
+
|
|
172
|
+
### HTTP request headers
|
|
173
|
+
|
|
174
|
+
- **Content-Type**: Not defined
|
|
175
|
+
- **Accept**: text/plain, application/json, text/json
|
|
176
|
+
|
|
177
|
+
|
|
178
|
+
### HTTP response details
|
|
179
|
+
| Status code | Description | Response headers |
|
|
180
|
+
|-------------|-------------|------------------|
|
|
181
|
+
|**200** | Success | - |
|
|
182
|
+
|**401** | Unauthorized | - |
|
|
183
|
+
|
|
184
|
+
[[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)
|
|
185
|
+
|
|
186
|
+
# **listReportRequestReinsDetail**
|
|
187
|
+
> ReportRequestReinsDetailListVBAResponse listReportRequestReinsDetail()
|
|
188
|
+
|
|
189
|
+
Lists all ReportRequestReinsDetail for the given ReportRequestReins_Key
|
|
190
|
+
|
|
191
|
+
### Example
|
|
192
|
+
|
|
193
|
+
```typescript
|
|
194
|
+
import {
|
|
195
|
+
ReportRequestReinsuranceDetailApi,
|
|
196
|
+
Configuration
|
|
197
|
+
} from './api';
|
|
198
|
+
|
|
199
|
+
const configuration = new Configuration();
|
|
200
|
+
const apiInstance = new ReportRequestReinsuranceDetailApi(configuration);
|
|
201
|
+
|
|
202
|
+
let vbasoftwareDatabase: string; //Target database (default to undefined)
|
|
203
|
+
let reportRequestReinsKey: number; //ReportRequestReins Key (default to undefined)
|
|
204
|
+
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)
|
|
205
|
+
let page: number; //Page (optional) (default to 1)
|
|
206
|
+
let pageSize: number; //Page Size (optional) (default to 100)
|
|
207
|
+
|
|
208
|
+
const { status, data } = await apiInstance.listReportRequestReinsDetail(
|
|
209
|
+
vbasoftwareDatabase,
|
|
210
|
+
reportRequestReinsKey,
|
|
211
|
+
sortBy,
|
|
212
|
+
page,
|
|
213
|
+
pageSize
|
|
214
|
+
);
|
|
215
|
+
```
|
|
216
|
+
|
|
217
|
+
### Parameters
|
|
218
|
+
|
|
219
|
+
|Name | Type | Description | Notes|
|
|
220
|
+
|------------- | ------------- | ------------- | -------------|
|
|
221
|
+
| **vbasoftwareDatabase** | [**string**] | Target database | defaults to undefined|
|
|
222
|
+
| **reportRequestReinsKey** | [**number**] | ReportRequestReins Key | defaults to undefined|
|
|
223
|
+
| **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|
|
|
224
|
+
| **page** | [**number**] | Page | (optional) defaults to 1|
|
|
225
|
+
| **pageSize** | [**number**] | Page Size | (optional) defaults to 100|
|
|
226
|
+
|
|
227
|
+
|
|
228
|
+
### Return type
|
|
229
|
+
|
|
230
|
+
**ReportRequestReinsDetailListVBAResponse**
|
|
231
|
+
|
|
232
|
+
### Authorization
|
|
233
|
+
|
|
234
|
+
[apiKeyAuth](../README.md#apiKeyAuth), [bearerAuth](../README.md#bearerAuth)
|
|
235
|
+
|
|
236
|
+
### HTTP request headers
|
|
237
|
+
|
|
238
|
+
- **Content-Type**: Not defined
|
|
239
|
+
- **Accept**: text/plain, application/json, text/json
|
|
240
|
+
|
|
241
|
+
|
|
242
|
+
### HTTP response details
|
|
243
|
+
| Status code | Description | Response headers |
|
|
244
|
+
|-------------|-------------|------------------|
|
|
245
|
+
|**200** | Success | - |
|
|
246
|
+
|**401** | Unauthorized | - |
|
|
247
|
+
|
|
248
|
+
[[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)
|
|
249
|
+
|
|
250
|
+
# **updateBatchReportRequestReinsDetail**
|
|
251
|
+
> MultiCodeResponseListVBAResponse updateBatchReportRequestReinsDetail(reportRequestReinsDetail)
|
|
252
|
+
|
|
253
|
+
Create or Update multiple ReportRequestReinsDetail at once. If the entity exists, it will be updated. If the entity does not exist, it will be created.
|
|
254
|
+
|
|
255
|
+
### Example
|
|
256
|
+
|
|
257
|
+
```typescript
|
|
258
|
+
import {
|
|
259
|
+
ReportRequestReinsuranceDetailApi,
|
|
260
|
+
Configuration
|
|
261
|
+
} from './api';
|
|
262
|
+
|
|
263
|
+
const configuration = new Configuration();
|
|
264
|
+
const apiInstance = new ReportRequestReinsuranceDetailApi(configuration);
|
|
265
|
+
|
|
266
|
+
let vbasoftwareDatabase: string; //Target database (default to undefined)
|
|
267
|
+
let reportRequestReinsDetail: Array<ReportRequestReinsDetail>; //
|
|
268
|
+
|
|
269
|
+
const { status, data } = await apiInstance.updateBatchReportRequestReinsDetail(
|
|
270
|
+
vbasoftwareDatabase,
|
|
271
|
+
reportRequestReinsDetail
|
|
272
|
+
);
|
|
273
|
+
```
|
|
274
|
+
|
|
275
|
+
### Parameters
|
|
276
|
+
|
|
277
|
+
|Name | Type | Description | Notes|
|
|
278
|
+
|------------- | ------------- | ------------- | -------------|
|
|
279
|
+
| **reportRequestReinsDetail** | **Array<ReportRequestReinsDetail>**| | |
|
|
280
|
+
| **vbasoftwareDatabase** | [**string**] | Target database | defaults to undefined|
|
|
281
|
+
|
|
282
|
+
|
|
283
|
+
### Return type
|
|
284
|
+
|
|
285
|
+
**MultiCodeResponseListVBAResponse**
|
|
286
|
+
|
|
287
|
+
### Authorization
|
|
288
|
+
|
|
289
|
+
[apiKeyAuth](../README.md#apiKeyAuth), [bearerAuth](../README.md#bearerAuth)
|
|
290
|
+
|
|
291
|
+
### HTTP request headers
|
|
292
|
+
|
|
293
|
+
- **Content-Type**: application/json, text/json, application/*+json
|
|
294
|
+
- **Accept**: text/plain, application/json, text/json
|
|
295
|
+
|
|
296
|
+
|
|
297
|
+
### HTTP response details
|
|
298
|
+
| Status code | Description | Response headers |
|
|
299
|
+
|-------------|-------------|------------------|
|
|
300
|
+
|**207** | Success | - |
|
|
301
|
+
|**401** | Unauthorized | - |
|
|
302
|
+
|
|
303
|
+
[[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)
|
|
304
|
+
|
|
305
|
+
# **updateReportRequestReinsDetail**
|
|
306
|
+
> ReportRequestReinsDetailVBAResponse updateReportRequestReinsDetail(reportRequestReinsDetail)
|
|
307
|
+
|
|
308
|
+
Updates a specific ReportRequestReinsDetail.
|
|
309
|
+
|
|
310
|
+
### Example
|
|
311
|
+
|
|
312
|
+
```typescript
|
|
313
|
+
import {
|
|
314
|
+
ReportRequestReinsuranceDetailApi,
|
|
315
|
+
Configuration,
|
|
316
|
+
ReportRequestReinsDetail
|
|
317
|
+
} from './api';
|
|
318
|
+
|
|
319
|
+
const configuration = new Configuration();
|
|
320
|
+
const apiInstance = new ReportRequestReinsuranceDetailApi(configuration);
|
|
321
|
+
|
|
322
|
+
let vbasoftwareDatabase: string; //Target database (default to undefined)
|
|
323
|
+
let reportRequestReinsKey: number; //ReportRequestReins Key (default to undefined)
|
|
324
|
+
let requestSeq: number; //Request Seq (default to undefined)
|
|
325
|
+
let reportRequestReinsDetail: ReportRequestReinsDetail; //
|
|
326
|
+
|
|
327
|
+
const { status, data } = await apiInstance.updateReportRequestReinsDetail(
|
|
328
|
+
vbasoftwareDatabase,
|
|
329
|
+
reportRequestReinsKey,
|
|
330
|
+
requestSeq,
|
|
331
|
+
reportRequestReinsDetail
|
|
332
|
+
);
|
|
333
|
+
```
|
|
334
|
+
|
|
335
|
+
### Parameters
|
|
336
|
+
|
|
337
|
+
|Name | Type | Description | Notes|
|
|
338
|
+
|------------- | ------------- | ------------- | -------------|
|
|
339
|
+
| **reportRequestReinsDetail** | **ReportRequestReinsDetail**| | |
|
|
340
|
+
| **vbasoftwareDatabase** | [**string**] | Target database | defaults to undefined|
|
|
341
|
+
| **reportRequestReinsKey** | [**number**] | ReportRequestReins Key | defaults to undefined|
|
|
342
|
+
| **requestSeq** | [**number**] | Request Seq | defaults to undefined|
|
|
343
|
+
|
|
344
|
+
|
|
345
|
+
### Return type
|
|
346
|
+
|
|
347
|
+
**ReportRequestReinsDetailVBAResponse**
|
|
348
|
+
|
|
349
|
+
### Authorization
|
|
350
|
+
|
|
351
|
+
[apiKeyAuth](../README.md#apiKeyAuth), [bearerAuth](../README.md#bearerAuth)
|
|
352
|
+
|
|
353
|
+
### HTTP request headers
|
|
354
|
+
|
|
355
|
+
- **Content-Type**: application/json, text/json, application/*+json
|
|
356
|
+
- **Accept**: text/plain, application/json, text/json
|
|
357
|
+
|
|
358
|
+
|
|
359
|
+
### HTTP response details
|
|
360
|
+
| Status code | Description | Response headers |
|
|
361
|
+
|-------------|-------------|------------------|
|
|
362
|
+
|**200** | Success | - |
|
|
363
|
+
|**401** | Unauthorized | - |
|
|
364
|
+
|
|
365
|
+
[[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)
|
|
366
|
+
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
# VBAEDIExecuteContent
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
## Properties
|
|
5
|
+
|
|
6
|
+
Name | Type | Description | Notes
|
|
7
|
+
------------ | ------------- | ------------- | -------------
|
|
8
|
+
**sort_Key** | **number** | | [optional] [default to undefined]
|
|
9
|
+
**contents** | **string** | | [optional] [default to undefined]
|
|
10
|
+
|
|
11
|
+
## Example
|
|
12
|
+
|
|
13
|
+
```typescript
|
|
14
|
+
import { VBAEDIExecuteContent } from './api';
|
|
15
|
+
|
|
16
|
+
const instance: VBAEDIExecuteContent = {
|
|
17
|
+
sort_Key,
|
|
18
|
+
contents,
|
|
19
|
+
};
|
|
20
|
+
```
|
|
21
|
+
|
|
22
|
+
[[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
|
+
# VBAEDIExecuteContentListVBAResponse
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
## Properties
|
|
5
|
+
|
|
6
|
+
Name | Type | Description | Notes
|
|
7
|
+
------------ | ------------- | ------------- | -------------
|
|
8
|
+
**data** | [**Array<VBAEDIExecuteContent>**](VBAEDIExecuteContent.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 { VBAEDIExecuteContentListVBAResponse } from './api';
|
|
16
|
+
|
|
17
|
+
const instance: VBAEDIExecuteContentListVBAResponse = {
|
|
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)
|
|
@@ -6,9 +6,11 @@ All URIs are relative to *https://vbapi.vbasoftware.com/vbasoftware*
|
|
|
6
6
|
|------------- | ------------- | -------------|
|
|
7
7
|
|[**createFromExistingProfile**](#createfromexistingprofile) | **POST** /vba-interface/{VBAInterface_Key}/profile/{Profile_Key}/create-from-existing | Create from Existing Profile|
|
|
8
8
|
|[**createVBAInterfaceProfile**](#createvbainterfaceprofile) | **POST** /vba-interface-profile | Create VBAInterfaceProfile|
|
|
9
|
+
|[**createVBAProcessFromInterfaceProfile**](#createvbaprocessfrominterfaceprofile) | **POST** /create-vbaprocess-from-interfaceprofile | Create a VBAProcess record based on VBAInterfaceProfile|
|
|
9
10
|
|[**deleteVBAInterfaceProfile**](#deletevbainterfaceprofile) | **DELETE** /vba-interface/{VBAInterface_Key}/profile/{Profile_Key} | Delete VBAInterfaceProfile|
|
|
10
11
|
|[**getVBAInterfaceProfile**](#getvbainterfaceprofile) | **GET** /vba-interface/{VBAInterface_Key}/profile/{Profile_Key} | Get VBAInterfaceProfile|
|
|
11
12
|
|[**listVBAInterfaceProfile**](#listvbainterfaceprofile) | **GET** /vba-interface/{VBAInterface_Key}/profile | List VBAInterfaceProfile|
|
|
13
|
+
|[**rerunEDIByInterfaceProfile**](#rerunedibyinterfaceprofile) | **POST** /rerun-edi-by-interfaceprofile | Rerun an already executed Interface|
|
|
12
14
|
|[**updateBatchVBAInterfaceProfile**](#updatebatchvbainterfaceprofile) | **PUT** /vba-interface-profile-batch | Create or Update Batch VBAInterfaceProfile|
|
|
13
15
|
|[**updateVBAInterfaceProfile**](#updatevbainterfaceprofile) | **PUT** /vba-interface/{VBAInterface_Key}/profile/{Profile_Key} | Update VBAInterfaceProfile|
|
|
14
16
|
|
|
@@ -121,6 +123,67 @@ const { status, data } = await apiInstance.createVBAInterfaceProfile(
|
|
|
121
123
|
- **Accept**: text/plain, application/json, text/json
|
|
122
124
|
|
|
123
125
|
|
|
126
|
+
### HTTP response details
|
|
127
|
+
| Status code | Description | Response headers |
|
|
128
|
+
|-------------|-------------|------------------|
|
|
129
|
+
|**200** | 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
|
+
# **createVBAProcessFromInterfaceProfile**
|
|
135
|
+
> VBAProcessVBAResponse createVBAProcessFromInterfaceProfile()
|
|
136
|
+
|
|
137
|
+
Utlizing the VBAInterfaceProfile, create a VBAProcess record that can then be used to Execute Profile enabled Standard EDI Interfaces.
|
|
138
|
+
|
|
139
|
+
### Example
|
|
140
|
+
|
|
141
|
+
```typescript
|
|
142
|
+
import {
|
|
143
|
+
VBAInterfaceProfileApi,
|
|
144
|
+
Configuration
|
|
145
|
+
} from './api';
|
|
146
|
+
|
|
147
|
+
const configuration = new Configuration();
|
|
148
|
+
const apiInstance = new VBAInterfaceProfileApi(configuration);
|
|
149
|
+
|
|
150
|
+
let vbasoftwareDatabase: string; //Target database (default to undefined)
|
|
151
|
+
let vBAInterfaceKey: number; //VBAInterface_Key (default to undefined)
|
|
152
|
+
let profileKey: number; //Profile_Key (default to undefined)
|
|
153
|
+
let returnInterfaceResults: string; //Return_Interface_Results (default to undefined)
|
|
154
|
+
|
|
155
|
+
const { status, data } = await apiInstance.createVBAProcessFromInterfaceProfile(
|
|
156
|
+
vbasoftwareDatabase,
|
|
157
|
+
vBAInterfaceKey,
|
|
158
|
+
profileKey,
|
|
159
|
+
returnInterfaceResults
|
|
160
|
+
);
|
|
161
|
+
```
|
|
162
|
+
|
|
163
|
+
### Parameters
|
|
164
|
+
|
|
165
|
+
|Name | Type | Description | Notes|
|
|
166
|
+
|------------- | ------------- | ------------- | -------------|
|
|
167
|
+
| **vbasoftwareDatabase** | [**string**] | Target database | defaults to undefined|
|
|
168
|
+
| **vBAInterfaceKey** | [**number**] | VBAInterface_Key | defaults to undefined|
|
|
169
|
+
| **profileKey** | [**number**] | Profile_Key | defaults to undefined|
|
|
170
|
+
| **returnInterfaceResults** | [**string**] | Return_Interface_Results | defaults to undefined|
|
|
171
|
+
|
|
172
|
+
|
|
173
|
+
### Return type
|
|
174
|
+
|
|
175
|
+
**VBAProcessVBAResponse**
|
|
176
|
+
|
|
177
|
+
### Authorization
|
|
178
|
+
|
|
179
|
+
[apiKeyAuth](../README.md#apiKeyAuth), [bearerAuth](../README.md#bearerAuth)
|
|
180
|
+
|
|
181
|
+
### HTTP request headers
|
|
182
|
+
|
|
183
|
+
- **Content-Type**: Not defined
|
|
184
|
+
- **Accept**: text/plain, application/json, text/json
|
|
185
|
+
|
|
186
|
+
|
|
124
187
|
### HTTP response details
|
|
125
188
|
| Status code | Description | Response headers |
|
|
126
189
|
|-------------|-------------|------------------|
|
|
@@ -301,6 +364,67 @@ const { status, data } = await apiInstance.listVBAInterfaceProfile(
|
|
|
301
364
|
- **Accept**: text/plain, application/json, text/json
|
|
302
365
|
|
|
303
366
|
|
|
367
|
+
### HTTP response details
|
|
368
|
+
| Status code | Description | Response headers |
|
|
369
|
+
|-------------|-------------|------------------|
|
|
370
|
+
|**200** | Success | - |
|
|
371
|
+
|**401** | Unauthorized | - |
|
|
372
|
+
|
|
373
|
+
[[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)
|
|
374
|
+
|
|
375
|
+
# **rerunEDIByInterfaceProfile**
|
|
376
|
+
> VBAEDIExecuteContentListVBAResponse rerunEDIByInterfaceProfile()
|
|
377
|
+
|
|
378
|
+
Based on the selected Interface Profile, execute a previously executed Interface based on Execution ID.
|
|
379
|
+
|
|
380
|
+
### Example
|
|
381
|
+
|
|
382
|
+
```typescript
|
|
383
|
+
import {
|
|
384
|
+
VBAInterfaceProfileApi,
|
|
385
|
+
Configuration
|
|
386
|
+
} from './api';
|
|
387
|
+
|
|
388
|
+
const configuration = new Configuration();
|
|
389
|
+
const apiInstance = new VBAInterfaceProfileApi(configuration);
|
|
390
|
+
|
|
391
|
+
let vbasoftwareDatabase: string; //Target database (default to undefined)
|
|
392
|
+
let vBAInterfaceKey: number; //VBAInterface_Key (default to undefined)
|
|
393
|
+
let profileKey: number; //Profile_Key (default to undefined)
|
|
394
|
+
let executeId: string; //Execute_ID (default to undefined)
|
|
395
|
+
|
|
396
|
+
const { status, data } = await apiInstance.rerunEDIByInterfaceProfile(
|
|
397
|
+
vbasoftwareDatabase,
|
|
398
|
+
vBAInterfaceKey,
|
|
399
|
+
profileKey,
|
|
400
|
+
executeId
|
|
401
|
+
);
|
|
402
|
+
```
|
|
403
|
+
|
|
404
|
+
### Parameters
|
|
405
|
+
|
|
406
|
+
|Name | Type | Description | Notes|
|
|
407
|
+
|------------- | ------------- | ------------- | -------------|
|
|
408
|
+
| **vbasoftwareDatabase** | [**string**] | Target database | defaults to undefined|
|
|
409
|
+
| **vBAInterfaceKey** | [**number**] | VBAInterface_Key | defaults to undefined|
|
|
410
|
+
| **profileKey** | [**number**] | Profile_Key | defaults to undefined|
|
|
411
|
+
| **executeId** | [**string**] | Execute_ID | defaults to undefined|
|
|
412
|
+
|
|
413
|
+
|
|
414
|
+
### Return type
|
|
415
|
+
|
|
416
|
+
**VBAEDIExecuteContentListVBAResponse**
|
|
417
|
+
|
|
418
|
+
### Authorization
|
|
419
|
+
|
|
420
|
+
[apiKeyAuth](../README.md#apiKeyAuth), [bearerAuth](../README.md#bearerAuth)
|
|
421
|
+
|
|
422
|
+
### HTTP request headers
|
|
423
|
+
|
|
424
|
+
- **Content-Type**: Not defined
|
|
425
|
+
- **Accept**: text/plain, application/json, text/json
|
|
426
|
+
|
|
427
|
+
|
|
304
428
|
### HTTP response details
|
|
305
429
|
| Status code | Description | Response headers |
|
|
306
430
|
|-------------|-------------|------------------|
|
package/models/index.ts
CHANGED
|
@@ -2275,6 +2275,12 @@ export * from './report-request-invoice-detail-list-vbaresponse';
|
|
|
2275
2275
|
export * from './report-request-invoice-detail-vbaresponse';
|
|
2276
2276
|
export * from './report-request-invoice-list-vbaresponse';
|
|
2277
2277
|
export * from './report-request-invoice-vbaresponse';
|
|
2278
|
+
export * from './report-request-reins';
|
|
2279
|
+
export * from './report-request-reins-detail';
|
|
2280
|
+
export * from './report-request-reins-detail-list-vbaresponse';
|
|
2281
|
+
export * from './report-request-reins-detail-vbaresponse';
|
|
2282
|
+
export * from './report-request-reins-list-vbaresponse';
|
|
2283
|
+
export * from './report-request-reins-vbaresponse';
|
|
2278
2284
|
export * from './report-series';
|
|
2279
2285
|
export * from './report-series-list-vbaresponse';
|
|
2280
2286
|
export * from './report-series-process';
|
|
@@ -2618,6 +2624,8 @@ export * from './vbadisability-advisor-deduction';
|
|
|
2618
2624
|
export * from './vbadisability-advisor-vbaresponse';
|
|
2619
2625
|
export * from './vbadownload-report-request';
|
|
2620
2626
|
export * from './vbadownload-report-response';
|
|
2627
|
+
export * from './vbaediexecute-content';
|
|
2628
|
+
export * from './vbaediexecute-content-list-vbaresponse';
|
|
2621
2629
|
export * from './vbafull-claim';
|
|
2622
2630
|
export * from './vbafull-claim-batch';
|
|
2623
2631
|
export * from './vbafull-claim-batch-vbaresponse';
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* VBASoftware
|
|
5
|
+
* APIs for VBASoftware
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: v1
|
|
8
|
+
*
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
+
* https://openapi-generator.tech
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*/
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
// May contain unused imports in some cases
|
|
17
|
+
// @ts-ignore
|
|
18
|
+
import type { Debug } from './debug';
|
|
19
|
+
// May contain unused imports in some cases
|
|
20
|
+
// @ts-ignore
|
|
21
|
+
import type { ReportRequestReinsDetail } from './report-request-reins-detail';
|
|
22
|
+
// May contain unused imports in some cases
|
|
23
|
+
// @ts-ignore
|
|
24
|
+
import type { VBAProblemDetails } from './vbaproblem-details';
|
|
25
|
+
|
|
26
|
+
export interface ReportRequestReinsDetailListVBAResponse {
|
|
27
|
+
'data'?: Array<ReportRequestReinsDetail> | null;
|
|
28
|
+
'error'?: VBAProblemDetails;
|
|
29
|
+
'debug'?: Debug;
|
|
30
|
+
}
|
|
31
|
+
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* VBASoftware
|
|
5
|
+
* APIs for VBASoftware
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: v1
|
|
8
|
+
*
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
+
* https://openapi-generator.tech
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*/
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
// May contain unused imports in some cases
|
|
17
|
+
// @ts-ignore
|
|
18
|
+
import type { Debug } from './debug';
|
|
19
|
+
// May contain unused imports in some cases
|
|
20
|
+
// @ts-ignore
|
|
21
|
+
import type { ReportRequestReinsDetail } from './report-request-reins-detail';
|
|
22
|
+
// May contain unused imports in some cases
|
|
23
|
+
// @ts-ignore
|
|
24
|
+
import type { VBAProblemDetails } from './vbaproblem-details';
|
|
25
|
+
|
|
26
|
+
export interface ReportRequestReinsDetailVBAResponse {
|
|
27
|
+
'data'?: ReportRequestReinsDetail;
|
|
28
|
+
'error'?: VBAProblemDetails;
|
|
29
|
+
'debug'?: Debug;
|
|
30
|
+
}
|
|
31
|
+
|