@vbasoftware/vbapi-vbasoftware-typescript-axios 1.20250207.1 → 1.20250221.7
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 +10 -0
- package/api/accounting-api.ts +100 -0
- package/api/adv-accounting-api.ts +100 -0
- package/api/adv-billing-api.ts +196 -0
- package/api/adv-claim-api.ts +142 -3
- package/api/billing-api.ts +100 -0
- package/api/claim-pre-batches-api.ts +26 -8
- package/api/issue-duration-value-detail-api.ts +694 -0
- package/api/plan-coordination-api.ts +685 -0
- package/api/premium-payments-api.ts +96 -0
- package/api/user-account-api.ts +16 -8
- package/api/user-api.ts +32 -16
- package/api.ts +2 -0
- package/models/auth-diag-codes.ts +6 -0
- package/models/billing-apply-payment-on-account-config.ts +48 -0
- package/models/claim-reprice-remove.ts +6 -0
- package/models/company-data.ts +12 -0
- package/models/generate-prem-invoice.ts +6 -0
- package/models/index.ts +8 -0
- package/models/issue-duration-value-detail-list-vbaresponse.ts +51 -0
- package/models/issue-duration-value-detail-vbaresponse.ts +51 -0
- package/models/issue-duration-value-detail.ts +804 -0
- package/models/mem-enrollment-plan.ts +6 -0
- package/models/plan-coordination-list-vbaresponse.ts +51 -0
- package/models/plan-coordination-vbaresponse.ts +51 -0
- package/models/plan-coordination.ts +114 -0
- package/models/prem-invoice-generate-inv-list.ts +6 -0
- package/models/report-series-step.ts +18 -0
- package/models/subscriber-writing-agent.ts +6 -0
- package/models/vbaprocess-parameter.ts +6 -0
- package/models/vbaupdate-claim-funded-status.ts +36 -0
- package/package.json +1 -1
|
@@ -0,0 +1,51 @@
|
|
|
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 { PlanCoordination } from './plan-coordination';
|
|
22
|
+
// May contain unused imports in some cases
|
|
23
|
+
// @ts-ignore
|
|
24
|
+
import type { VBAProblemDetails } from './vbaproblem-details';
|
|
25
|
+
|
|
26
|
+
/**
|
|
27
|
+
*
|
|
28
|
+
* @export
|
|
29
|
+
* @interface PlanCoordinationListVBAResponse
|
|
30
|
+
*/
|
|
31
|
+
export interface PlanCoordinationListVBAResponse {
|
|
32
|
+
/**
|
|
33
|
+
*
|
|
34
|
+
* @type {Array<PlanCoordination>}
|
|
35
|
+
* @memberof PlanCoordinationListVBAResponse
|
|
36
|
+
*/
|
|
37
|
+
'data'?: Array<PlanCoordination> | null;
|
|
38
|
+
/**
|
|
39
|
+
*
|
|
40
|
+
* @type {VBAProblemDetails}
|
|
41
|
+
* @memberof PlanCoordinationListVBAResponse
|
|
42
|
+
*/
|
|
43
|
+
'error'?: VBAProblemDetails;
|
|
44
|
+
/**
|
|
45
|
+
*
|
|
46
|
+
* @type {Debug}
|
|
47
|
+
* @memberof PlanCoordinationListVBAResponse
|
|
48
|
+
*/
|
|
49
|
+
'debug'?: Debug;
|
|
50
|
+
}
|
|
51
|
+
|
|
@@ -0,0 +1,51 @@
|
|
|
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 { PlanCoordination } from './plan-coordination';
|
|
22
|
+
// May contain unused imports in some cases
|
|
23
|
+
// @ts-ignore
|
|
24
|
+
import type { VBAProblemDetails } from './vbaproblem-details';
|
|
25
|
+
|
|
26
|
+
/**
|
|
27
|
+
*
|
|
28
|
+
* @export
|
|
29
|
+
* @interface PlanCoordinationVBAResponse
|
|
30
|
+
*/
|
|
31
|
+
export interface PlanCoordinationVBAResponse {
|
|
32
|
+
/**
|
|
33
|
+
*
|
|
34
|
+
* @type {PlanCoordination}
|
|
35
|
+
* @memberof PlanCoordinationVBAResponse
|
|
36
|
+
*/
|
|
37
|
+
'data'?: PlanCoordination;
|
|
38
|
+
/**
|
|
39
|
+
*
|
|
40
|
+
* @type {VBAProblemDetails}
|
|
41
|
+
* @memberof PlanCoordinationVBAResponse
|
|
42
|
+
*/
|
|
43
|
+
'error'?: VBAProblemDetails;
|
|
44
|
+
/**
|
|
45
|
+
*
|
|
46
|
+
* @type {Debug}
|
|
47
|
+
* @memberof PlanCoordinationVBAResponse
|
|
48
|
+
*/
|
|
49
|
+
'debug'?: Debug;
|
|
50
|
+
}
|
|
51
|
+
|
|
@@ -0,0 +1,114 @@
|
|
|
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
|
+
/**
|
|
18
|
+
*
|
|
19
|
+
* @export
|
|
20
|
+
* @interface PlanCoordination
|
|
21
|
+
*/
|
|
22
|
+
export interface PlanCoordination {
|
|
23
|
+
/**
|
|
24
|
+
* Note: This field is marked as NOT NULL in the database and therefore required by the API.
|
|
25
|
+
* @type {number}
|
|
26
|
+
* @memberof PlanCoordination
|
|
27
|
+
*/
|
|
28
|
+
'planCoordination_Key': number;
|
|
29
|
+
/**
|
|
30
|
+
*
|
|
31
|
+
* @type {number}
|
|
32
|
+
* @memberof PlanCoordination
|
|
33
|
+
*/
|
|
34
|
+
'criteria_Key'?: number | null;
|
|
35
|
+
/**
|
|
36
|
+
*
|
|
37
|
+
* @type {string}
|
|
38
|
+
* @memberof PlanCoordination
|
|
39
|
+
*/
|
|
40
|
+
'destination_Ex_Code'?: string | null;
|
|
41
|
+
/**
|
|
42
|
+
*
|
|
43
|
+
* @type {string}
|
|
44
|
+
* @memberof PlanCoordination
|
|
45
|
+
*/
|
|
46
|
+
'destination_Plan_ID'?: string | null;
|
|
47
|
+
/**
|
|
48
|
+
*
|
|
49
|
+
* @type {string}
|
|
50
|
+
* @memberof PlanCoordination
|
|
51
|
+
*/
|
|
52
|
+
'division_ID'?: string | null;
|
|
53
|
+
/**
|
|
54
|
+
*
|
|
55
|
+
* @type {string}
|
|
56
|
+
* @memberof PlanCoordination
|
|
57
|
+
*/
|
|
58
|
+
'eff_Date_Type'?: string | null;
|
|
59
|
+
/**
|
|
60
|
+
*
|
|
61
|
+
* @type {string}
|
|
62
|
+
* @memberof PlanCoordination
|
|
63
|
+
*/
|
|
64
|
+
'effective_Date'?: string | null;
|
|
65
|
+
/**
|
|
66
|
+
* Date when the record was added to the system.
|
|
67
|
+
* @type {string}
|
|
68
|
+
* @memberof PlanCoordination
|
|
69
|
+
*/
|
|
70
|
+
'entry_Date'?: string;
|
|
71
|
+
/**
|
|
72
|
+
* User that first added the record to the system.
|
|
73
|
+
* @type {string}
|
|
74
|
+
* @memberof PlanCoordination
|
|
75
|
+
*/
|
|
76
|
+
'entry_User'?: string | null;
|
|
77
|
+
/**
|
|
78
|
+
*
|
|
79
|
+
* @type {string}
|
|
80
|
+
* @memberof PlanCoordination
|
|
81
|
+
*/
|
|
82
|
+
'group_ID'?: string | null;
|
|
83
|
+
/**
|
|
84
|
+
* Note: This field is marked as NOT NULL in the database and therefore required by the API.
|
|
85
|
+
* @type {boolean}
|
|
86
|
+
* @memberof PlanCoordination
|
|
87
|
+
*/
|
|
88
|
+
'include_COB': boolean;
|
|
89
|
+
/**
|
|
90
|
+
*
|
|
91
|
+
* @type {string}
|
|
92
|
+
* @memberof PlanCoordination
|
|
93
|
+
*/
|
|
94
|
+
'originating_Plan_ID'?: string | null;
|
|
95
|
+
/**
|
|
96
|
+
*
|
|
97
|
+
* @type {string}
|
|
98
|
+
* @memberof PlanCoordination
|
|
99
|
+
*/
|
|
100
|
+
'term_Date'?: string | null;
|
|
101
|
+
/**
|
|
102
|
+
* Date when the record was last updated in the system.
|
|
103
|
+
* @type {string}
|
|
104
|
+
* @memberof PlanCoordination
|
|
105
|
+
*/
|
|
106
|
+
'update_Date'?: string;
|
|
107
|
+
/**
|
|
108
|
+
* User that last updated the record in the system.
|
|
109
|
+
* @type {string}
|
|
110
|
+
* @memberof PlanCoordination
|
|
111
|
+
*/
|
|
112
|
+
'update_User'?: string | null;
|
|
113
|
+
}
|
|
114
|
+
|
|
@@ -68,6 +68,12 @@ export interface PremInvoiceGenerateInvList {
|
|
|
68
68
|
* @memberof PremInvoiceGenerateInvList
|
|
69
69
|
*/
|
|
70
70
|
'division_Name'?: string | null;
|
|
71
|
+
/**
|
|
72
|
+
*
|
|
73
|
+
* @type {string}
|
|
74
|
+
* @memberof PremInvoiceGenerateInvList
|
|
75
|
+
*/
|
|
76
|
+
'groupDivisionCaptive'?: string | null;
|
|
71
77
|
/**
|
|
72
78
|
*
|
|
73
79
|
* @type {string}
|
|
@@ -434,5 +434,23 @@ export interface ReportSeriesStep {
|
|
|
434
434
|
* @memberof ReportSeriesStep
|
|
435
435
|
*/
|
|
436
436
|
'wednesday': boolean;
|
|
437
|
+
/**
|
|
438
|
+
* For FAX step type, this indicates the fax number to send the fax to.
|
|
439
|
+
* @type {string}
|
|
440
|
+
* @memberof ReportSeriesStep
|
|
441
|
+
*/
|
|
442
|
+
'fax_Number'?: string | null;
|
|
443
|
+
/**
|
|
444
|
+
* For TEXT step type, this indicates the phone number to send the text to.
|
|
445
|
+
* @type {string}
|
|
446
|
+
* @memberof ReportSeriesStep
|
|
447
|
+
*/
|
|
448
|
+
'text_Number'?: string | null;
|
|
449
|
+
/**
|
|
450
|
+
* For TEXT step type, this indicates the message to send in the text.
|
|
451
|
+
* @type {string}
|
|
452
|
+
* @memberof ReportSeriesStep
|
|
453
|
+
*/
|
|
454
|
+
'text_Message'?: string | null;
|
|
437
455
|
}
|
|
438
456
|
|
|
@@ -164,5 +164,11 @@ export interface VBAProcessParameter {
|
|
|
164
164
|
* @memberof VBAProcessParameter
|
|
165
165
|
*/
|
|
166
166
|
'vbaProcess_Type': string;
|
|
167
|
+
/**
|
|
168
|
+
* A value passed to the process.
|
|
169
|
+
* @type {string}
|
|
170
|
+
* @memberof VBAProcessParameter
|
|
171
|
+
*/
|
|
172
|
+
'parameter_Value13'?: string | null;
|
|
167
173
|
}
|
|
168
174
|
|
|
@@ -0,0 +1,36 @@
|
|
|
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
|
+
/**
|
|
18
|
+
*
|
|
19
|
+
* @export
|
|
20
|
+
* @interface VBAUpdateClaimFundedStatus
|
|
21
|
+
*/
|
|
22
|
+
export interface VBAUpdateClaimFundedStatus {
|
|
23
|
+
/**
|
|
24
|
+
*
|
|
25
|
+
* @type {number}
|
|
26
|
+
* @memberof VBAUpdateClaimFundedStatus
|
|
27
|
+
*/
|
|
28
|
+
'claim_Number'?: number;
|
|
29
|
+
/**
|
|
30
|
+
*
|
|
31
|
+
* @type {string}
|
|
32
|
+
* @memberof VBAUpdateClaimFundedStatus
|
|
33
|
+
*/
|
|
34
|
+
'claim_Funded_Status'?: string | null;
|
|
35
|
+
}
|
|
36
|
+
|