@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,59 @@
|
|
|
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
|
+
|
|
17
|
+
export interface ReportRequestReinsDetail {
|
|
18
|
+
/**
|
|
19
|
+
* Key value identifying the request to run an invoice report Note: This field is marked as NOT NULL in the database and therefore required by the API.
|
|
20
|
+
*/
|
|
21
|
+
'reportRequestReins_Key': number;
|
|
22
|
+
/**
|
|
23
|
+
* Sequence number of the list of parameters for the requested report Note: This field is marked as NOT NULL in the database and therefore required by the API.
|
|
24
|
+
*/
|
|
25
|
+
'request_Seq': number;
|
|
26
|
+
/**
|
|
27
|
+
* Date record was first added to the system.
|
|
28
|
+
*/
|
|
29
|
+
'entry_Date'?: string;
|
|
30
|
+
/**
|
|
31
|
+
* User that first added the record to the system.
|
|
32
|
+
*/
|
|
33
|
+
'entry_User'?: string | null;
|
|
34
|
+
/**
|
|
35
|
+
* Paid Thru date associated with the Reinsurance contract on the report
|
|
36
|
+
*/
|
|
37
|
+
'paid_Thru'?: string | null;
|
|
38
|
+
/**
|
|
39
|
+
* Key value of the Reinsurance contract being passed to the report
|
|
40
|
+
*/
|
|
41
|
+
'reinsContract_Key'?: number | null;
|
|
42
|
+
/**
|
|
43
|
+
* Specific Threshold value to be included on the report
|
|
44
|
+
*/
|
|
45
|
+
'specific_Reporting_Threshold'?: number | null;
|
|
46
|
+
/**
|
|
47
|
+
* Specific Threshold Percent flag to be inlcuded on the report
|
|
48
|
+
*/
|
|
49
|
+
'specific_Reporting_Threshold_Pct'?: boolean | null;
|
|
50
|
+
/**
|
|
51
|
+
* Date the record was last updated in the system.
|
|
52
|
+
*/
|
|
53
|
+
'update_Date'?: string;
|
|
54
|
+
/**
|
|
55
|
+
* User that last updated the record in the system.
|
|
56
|
+
*/
|
|
57
|
+
'update_User'?: string | null;
|
|
58
|
+
}
|
|
59
|
+
|
|
@@ -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 { ReportRequestReins } from './report-request-reins';
|
|
22
|
+
// May contain unused imports in some cases
|
|
23
|
+
// @ts-ignore
|
|
24
|
+
import type { VBAProblemDetails } from './vbaproblem-details';
|
|
25
|
+
|
|
26
|
+
export interface ReportRequestReinsListVBAResponse {
|
|
27
|
+
'data'?: Array<ReportRequestReins> | 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 { ReportRequestReins } from './report-request-reins';
|
|
22
|
+
// May contain unused imports in some cases
|
|
23
|
+
// @ts-ignore
|
|
24
|
+
import type { VBAProblemDetails } from './vbaproblem-details';
|
|
25
|
+
|
|
26
|
+
export interface ReportRequestReinsVBAResponse {
|
|
27
|
+
'data'?: ReportRequestReins;
|
|
28
|
+
'error'?: VBAProblemDetails;
|
|
29
|
+
'debug'?: Debug;
|
|
30
|
+
}
|
|
31
|
+
|
|
@@ -0,0 +1,59 @@
|
|
|
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
|
+
|
|
17
|
+
export interface ReportRequestReins {
|
|
18
|
+
/**
|
|
19
|
+
* Key value identifying the request to run an Reinsurance report Note: This field is marked as NOT NULL in the database and therefore required by the API.
|
|
20
|
+
*/
|
|
21
|
+
'reportRequestReins_Key': number;
|
|
22
|
+
/**
|
|
23
|
+
* Date record was first added to the system.
|
|
24
|
+
*/
|
|
25
|
+
'entry_Date'?: string;
|
|
26
|
+
/**
|
|
27
|
+
* User that first added the record to the system.
|
|
28
|
+
*/
|
|
29
|
+
'entry_User'?: string | null;
|
|
30
|
+
/**
|
|
31
|
+
* Key value of the requested report from the ReportDefinition table Note: This field is marked as NOT NULL in the database and therefore required by the API.
|
|
32
|
+
*/
|
|
33
|
+
'reportDefinition_Key': number;
|
|
34
|
+
/**
|
|
35
|
+
* Category of the requested report
|
|
36
|
+
*/
|
|
37
|
+
'report_Category'?: string | null;
|
|
38
|
+
/**
|
|
39
|
+
* ID value of the requested report from the ReportDefinition table
|
|
40
|
+
*/
|
|
41
|
+
'report_ID': string;
|
|
42
|
+
/**
|
|
43
|
+
* Name of the requested report
|
|
44
|
+
*/
|
|
45
|
+
'report_Name': string;
|
|
46
|
+
/**
|
|
47
|
+
* Date the request to run the Reinsurance report was made Note: This field is marked as NOT NULL in the database and therefore required by the API.
|
|
48
|
+
*/
|
|
49
|
+
'request_Date': string;
|
|
50
|
+
/**
|
|
51
|
+
* Date the record was last updated in the system.
|
|
52
|
+
*/
|
|
53
|
+
'update_Date'?: string;
|
|
54
|
+
/**
|
|
55
|
+
* User that last updated the record in the system.
|
|
56
|
+
*/
|
|
57
|
+
'update_User'?: string | null;
|
|
58
|
+
}
|
|
59
|
+
|
|
@@ -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 { VBAEDIExecuteContent } from './vbaediexecute-content';
|
|
22
|
+
// May contain unused imports in some cases
|
|
23
|
+
// @ts-ignore
|
|
24
|
+
import type { VBAProblemDetails } from './vbaproblem-details';
|
|
25
|
+
|
|
26
|
+
export interface VBAEDIExecuteContentListVBAResponse {
|
|
27
|
+
'data'?: Array<VBAEDIExecuteContent> | null;
|
|
28
|
+
'error'?: VBAProblemDetails;
|
|
29
|
+
'debug'?: Debug;
|
|
30
|
+
}
|
|
31
|
+
|
|
@@ -0,0 +1,21 @@
|
|
|
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
|
+
|
|
17
|
+
export interface VBAEDIExecuteContent {
|
|
18
|
+
'sort_Key'?: number;
|
|
19
|
+
'contents'?: string | null;
|
|
20
|
+
}
|
|
21
|
+
|