@vbasoftware/vbapi-vbasoftware-typescript-axios 1.20240913.2 → 1.20241220.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 +77 -2
- package/api/accounting-api.ts +101 -0
- package/api/adv-accounting-api.ts +199 -0
- package/api/adv-billing-api.ts +926 -57
- package/api/adv-capitation-api.ts +99 -0
- package/api/adv-claim-api.ts +529 -0
- package/api/adv-enrollment-api.ts +204 -4
- package/api/adv-reinsurance-api.ts +97 -0
- package/api/billing-api.ts +198 -0
- package/api/capitations-api.ts +99 -0
- package/api/care-case-clinical-facts-api.ts +71 -167
- package/api/check-batches-api.ts +87 -0
- package/api/checks-api.ts +292 -0
- package/api/claim-invoice-adjustment-reasons-api.ts +677 -0
- package/api/claim-invoice-adjustment-received-api.ts +685 -0
- package/api/claim-invoice-adjustments-api.ts +693 -0
- package/api/claim-invoice-api.ts +677 -0
- package/api/claim-invoice-details-api.ts +741 -0
- package/api/claim-invoice-payments-api.ts +725 -0
- package/api/claim-invoice-received-api.ts +693 -0
- package/api/claim-payments-api.ts +677 -0
- package/api/enrollment-accumulators-api.ts +909 -0
- package/api/events-api.ts +87 -0
- package/api/members-api.ts +206 -0
- package/api/prem-invoice-api.ts +171 -0
- package/api/premium-invoices-api.ts +95 -0
- package/api/premium-payments-api.ts +133 -0
- package/api/premium-rates-api.ts +223 -39
- package/api/reinsurance-contracts-api.ts +97 -0
- package/api/security-area-user-groups-api.ts +118 -5
- package/api/subscribers-api.ts +5 -5
- package/api/vbagateway-messaging-api.ts +379 -0
- package/api/vbareports-api.ts +112 -15
- package/api.ts +10 -0
- package/models/accounting-withhold-check-config.ts +36 -0
- package/models/accumulator-added-accum-detail-result-list-vbaresponse.ts +45 -0
- package/models/accumulator-added-accum-detail-result.ts +378 -0
- package/models/accumulator-all-benefit-detail-result-list-vbaresponse.ts +45 -0
- package/models/accumulator-all-benefit-detail-result.ts +420 -0
- package/models/{prem-invoice-generate-inv-list-result-list-vbaresponse.ts → accumulator-benefit-detail-result-list-vbaresponse.ts} +8 -8
- package/models/accumulator-benefit-detail-result.ts +414 -0
- package/models/accumulator-detail-result-list-vbaresponse.ts +45 -0
- package/models/accumulator-detail-result.ts +402 -0
- package/models/benefit-codes.ts +18 -18
- package/models/billing-add-rate-from-template-config.ts +42 -0
- package/models/billing-apply-payment-config.ts +74 -0
- package/models/billing-auto-apply-config.ts +84 -0
- package/models/billing-rate-modify-config.ts +140 -0
- package/models/capitation-generate.ts +12 -0
- package/models/care-case-clinical-fact.ts +1 -1
- package/models/claim-batch-claim-batch-detail-list-vbaresponse.ts +45 -0
- package/models/claim-invoice-adjustment-list-vbaresponse.ts +45 -0
- package/models/claim-invoice-adjustment-reason-list-vbaresponse.ts +45 -0
- package/models/claim-invoice-adjustment-reason-vbaresponse.ts +45 -0
- package/models/claim-invoice-adjustment-reason.ts +60 -0
- package/models/claim-invoice-adjustment-received-list-vbaresponse.ts +45 -0
- package/models/claim-invoice-adjustment-received-vbaresponse.ts +45 -0
- package/models/claim-invoice-adjustment-received.ts +78 -0
- package/models/claim-invoice-adjustment-vbaresponse.ts +45 -0
- package/models/claim-invoice-adjustment.ts +90 -0
- package/models/claim-invoice-config.ts +37 -0
- package/models/claim-invoice-detail-list-vbaresponse.ts +45 -0
- package/models/claim-invoice-detail-vbaresponse.ts +45 -0
- package/models/claim-invoice-detail.ts +66 -0
- package/models/claim-invoice-list-vbaresponse.ts +45 -0
- package/models/claim-invoice-payment-list-vbaresponse.ts +45 -0
- package/models/claim-invoice-payment-vbaresponse.ts +45 -0
- package/models/claim-invoice-payment.ts +72 -0
- package/models/claim-invoice-received-list-vbaresponse.ts +45 -0
- package/models/claim-invoice-received-vbaresponse.ts +45 -0
- package/models/claim-invoice-received.ts +78 -0
- package/models/claim-invoice-vbaresponse.ts +45 -0
- package/models/claim-invoice.ts +90 -0
- package/models/claim-payment-list-vbaresponse.ts +45 -0
- package/models/claim-payment-vbaresponse.ts +45 -0
- package/models/claim-payment.ts +96 -0
- package/models/commission-adjustment.ts +12 -0
- package/models/company-data.ts +24 -0
- package/models/covered-benefit.ts +49 -0
- package/models/elig-detail.ts +114 -0
- package/models/email-report-dto.ts +0 -6
- package/models/enrollment-disenroll-adjustment-list-vbaresponse.ts +45 -0
- package/models/enrollment-disenroll-adjustment.ts +138 -0
- package/models/fax-report-dto.ts +0 -6
- package/models/file-detail.ts +4 -4
- package/models/fundaccountbalancelist.ts +114 -0
- package/models/get-plan-max-claim-detail-result-list-vbaresponse.ts +45 -0
- package/models/get-plan-max-claim-detail-result.ts +180 -0
- package/models/get-plan-max-summary-result-list-vbaresponse.ts +45 -0
- package/models/get-plan-max-summary-result.ts +114 -0
- package/models/get-subscriber-disenroll-adjustments-result-list-vbaresponse.ts +45 -0
- package/models/get-subscriber-disenroll-adjustments-result.ts +144 -0
- package/models/get-temp-retro-prem-invoice-adjustments-result-list-vbaresponse.ts +45 -0
- package/models/get-temp-retro-prem-invoice-adjustments-result.ts +132 -0
- package/models/idcard-request-report-series-config.ts +30 -0
- package/models/index.ts +67 -2
- package/models/json-node-options.ts +1 -7
- package/models/member-detail.ts +102 -0
- package/models/message-thread-vbaresponse.ts +45 -0
- package/models/message-thread.ts +60 -0
- package/models/messages-vbaresponse.ts +45 -0
- package/models/messages.ts +66 -0
- package/models/prem-apply-payment-category-result-list-vbaresponse.ts +45 -0
- package/models/prem-apply-payment-category-result.ts +102 -0
- package/models/search-request.ts +12 -0
- package/models/security-area-user-group.ts +26 -2
- package/models/subscriber-detail.ts +144 -0
- package/models/vbaapp-info.ts +12 -6
- package/models/vbabenefit-inquiry-request.ts +96 -0
- package/models/vbabenefit-inquiry-vbaresponse.ts +45 -0
- package/models/vbabenefit-inquiry.ts +122 -0
- package/models/vbadisability-advisor-deduction.ts +72 -0
- package/models/vbadisability-advisor.ts +571 -0
- package/models/vbareport-vbaresponse.ts +45 -0
- package/models/vbareport.ts +7 -7
- package/package.json +1 -1
- package/models/prem-invoice-generate-inv-list-result.ts +0 -138
|
@@ -0,0 +1,45 @@
|
|
|
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
|
+
import { Debug } from './debug';
|
|
17
|
+
import { GetSubscriberDisenrollAdjustmentsResult } from './get-subscriber-disenroll-adjustments-result';
|
|
18
|
+
import { VBAProblemDetails } from './vbaproblem-details';
|
|
19
|
+
|
|
20
|
+
/**
|
|
21
|
+
*
|
|
22
|
+
* @export
|
|
23
|
+
* @interface GetSubscriberDisenrollAdjustmentsResultListVBAResponse
|
|
24
|
+
*/
|
|
25
|
+
export interface GetSubscriberDisenrollAdjustmentsResultListVBAResponse {
|
|
26
|
+
/**
|
|
27
|
+
*
|
|
28
|
+
* @type {Array<GetSubscriberDisenrollAdjustmentsResult>}
|
|
29
|
+
* @memberof GetSubscriberDisenrollAdjustmentsResultListVBAResponse
|
|
30
|
+
*/
|
|
31
|
+
'data'?: Array<GetSubscriberDisenrollAdjustmentsResult> | null;
|
|
32
|
+
/**
|
|
33
|
+
*
|
|
34
|
+
* @type {VBAProblemDetails}
|
|
35
|
+
* @memberof GetSubscriberDisenrollAdjustmentsResultListVBAResponse
|
|
36
|
+
*/
|
|
37
|
+
'error'?: VBAProblemDetails;
|
|
38
|
+
/**
|
|
39
|
+
*
|
|
40
|
+
* @type {Debug}
|
|
41
|
+
* @memberof GetSubscriberDisenrollAdjustmentsResultListVBAResponse
|
|
42
|
+
*/
|
|
43
|
+
'debug'?: Debug;
|
|
44
|
+
}
|
|
45
|
+
|
|
@@ -0,0 +1,144 @@
|
|
|
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 GetSubscriberDisenrollAdjustmentsResult
|
|
21
|
+
*/
|
|
22
|
+
export interface GetSubscriberDisenrollAdjustmentsResult {
|
|
23
|
+
/**
|
|
24
|
+
*
|
|
25
|
+
* @type {number}
|
|
26
|
+
* @memberof GetSubscriberDisenrollAdjustmentsResult
|
|
27
|
+
*/
|
|
28
|
+
'selected'?: number | null;
|
|
29
|
+
/**
|
|
30
|
+
*
|
|
31
|
+
* @type {number}
|
|
32
|
+
* @memberof GetSubscriberDisenrollAdjustmentsResult
|
|
33
|
+
*/
|
|
34
|
+
'invoice_Key'?: number | null;
|
|
35
|
+
/**
|
|
36
|
+
*
|
|
37
|
+
* @type {string}
|
|
38
|
+
* @memberof GetSubscriberDisenrollAdjustmentsResult
|
|
39
|
+
*/
|
|
40
|
+
'invoice_Number'?: string | null;
|
|
41
|
+
/**
|
|
42
|
+
*
|
|
43
|
+
* @type {string}
|
|
44
|
+
* @memberof GetSubscriberDisenrollAdjustmentsResult
|
|
45
|
+
*/
|
|
46
|
+
'invoice_Date'?: string | null;
|
|
47
|
+
/**
|
|
48
|
+
*
|
|
49
|
+
* @type {string}
|
|
50
|
+
* @memberof GetSubscriberDisenrollAdjustmentsResult
|
|
51
|
+
*/
|
|
52
|
+
'billing_From'?: string | null;
|
|
53
|
+
/**
|
|
54
|
+
*
|
|
55
|
+
* @type {string}
|
|
56
|
+
* @memberof GetSubscriberDisenrollAdjustmentsResult
|
|
57
|
+
*/
|
|
58
|
+
'billing_Thru'?: string | null;
|
|
59
|
+
/**
|
|
60
|
+
*
|
|
61
|
+
* @type {string}
|
|
62
|
+
* @memberof GetSubscriberDisenrollAdjustmentsResult
|
|
63
|
+
*/
|
|
64
|
+
'group_ID'?: string | null;
|
|
65
|
+
/**
|
|
66
|
+
*
|
|
67
|
+
* @type {string}
|
|
68
|
+
* @memberof GetSubscriberDisenrollAdjustmentsResult
|
|
69
|
+
*/
|
|
70
|
+
'division_ID'?: string | null;
|
|
71
|
+
/**
|
|
72
|
+
*
|
|
73
|
+
* @type {number}
|
|
74
|
+
* @memberof GetSubscriberDisenrollAdjustmentsResult
|
|
75
|
+
*/
|
|
76
|
+
'premRate_Key'?: number | null;
|
|
77
|
+
/**
|
|
78
|
+
*
|
|
79
|
+
* @type {string}
|
|
80
|
+
* @memberof GetSubscriberDisenrollAdjustmentsResult
|
|
81
|
+
*/
|
|
82
|
+
'rate_Type'?: string | null;
|
|
83
|
+
/**
|
|
84
|
+
*
|
|
85
|
+
* @type {string}
|
|
86
|
+
* @memberof GetSubscriberDisenrollAdjustmentsResult
|
|
87
|
+
*/
|
|
88
|
+
'rate_Description'?: string | null;
|
|
89
|
+
/**
|
|
90
|
+
*
|
|
91
|
+
* @type {number}
|
|
92
|
+
* @memberof GetSubscriberDisenrollAdjustmentsResult
|
|
93
|
+
*/
|
|
94
|
+
'invoice_Days'?: number | null;
|
|
95
|
+
/**
|
|
96
|
+
*
|
|
97
|
+
* @type {number}
|
|
98
|
+
* @memberof GetSubscriberDisenrollAdjustmentsResult
|
|
99
|
+
*/
|
|
100
|
+
'proRate_Days'?: number | null;
|
|
101
|
+
/**
|
|
102
|
+
*
|
|
103
|
+
* @type {number}
|
|
104
|
+
* @memberof GetSubscriberDisenrollAdjustmentsResult
|
|
105
|
+
*/
|
|
106
|
+
'invoice_Amount'?: number | null;
|
|
107
|
+
/**
|
|
108
|
+
*
|
|
109
|
+
* @type {number}
|
|
110
|
+
* @memberof GetSubscriberDisenrollAdjustmentsResult
|
|
111
|
+
*/
|
|
112
|
+
'invoice_Received'?: number | null;
|
|
113
|
+
/**
|
|
114
|
+
*
|
|
115
|
+
* @type {number}
|
|
116
|
+
* @memberof GetSubscriberDisenrollAdjustmentsResult
|
|
117
|
+
*/
|
|
118
|
+
'invoice_Amount_Per_Day'?: number | null;
|
|
119
|
+
/**
|
|
120
|
+
*
|
|
121
|
+
* @type {number}
|
|
122
|
+
* @memberof GetSubscriberDisenrollAdjustmentsResult
|
|
123
|
+
*/
|
|
124
|
+
'proRate_Amount'?: number | null;
|
|
125
|
+
/**
|
|
126
|
+
*
|
|
127
|
+
* @type {number}
|
|
128
|
+
* @memberof GetSubscriberDisenrollAdjustmentsResult
|
|
129
|
+
*/
|
|
130
|
+
'adjustment_Amount'?: number | null;
|
|
131
|
+
/**
|
|
132
|
+
*
|
|
133
|
+
* @type {number}
|
|
134
|
+
* @memberof GetSubscriberDisenrollAdjustmentsResult
|
|
135
|
+
*/
|
|
136
|
+
'auto_Adjust'?: number | null;
|
|
137
|
+
/**
|
|
138
|
+
*
|
|
139
|
+
* @type {number}
|
|
140
|
+
* @memberof GetSubscriberDisenrollAdjustmentsResult
|
|
141
|
+
*/
|
|
142
|
+
'assign_Invoice_Key'?: number | null;
|
|
143
|
+
}
|
|
144
|
+
|
|
@@ -0,0 +1,45 @@
|
|
|
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
|
+
import { Debug } from './debug';
|
|
17
|
+
import { GetTempRetroPremInvoiceAdjustmentsResult } from './get-temp-retro-prem-invoice-adjustments-result';
|
|
18
|
+
import { VBAProblemDetails } from './vbaproblem-details';
|
|
19
|
+
|
|
20
|
+
/**
|
|
21
|
+
*
|
|
22
|
+
* @export
|
|
23
|
+
* @interface GetTempRetroPremInvoiceAdjustmentsResultListVBAResponse
|
|
24
|
+
*/
|
|
25
|
+
export interface GetTempRetroPremInvoiceAdjustmentsResultListVBAResponse {
|
|
26
|
+
/**
|
|
27
|
+
*
|
|
28
|
+
* @type {Array<GetTempRetroPremInvoiceAdjustmentsResult>}
|
|
29
|
+
* @memberof GetTempRetroPremInvoiceAdjustmentsResultListVBAResponse
|
|
30
|
+
*/
|
|
31
|
+
'data'?: Array<GetTempRetroPremInvoiceAdjustmentsResult> | null;
|
|
32
|
+
/**
|
|
33
|
+
*
|
|
34
|
+
* @type {VBAProblemDetails}
|
|
35
|
+
* @memberof GetTempRetroPremInvoiceAdjustmentsResultListVBAResponse
|
|
36
|
+
*/
|
|
37
|
+
'error'?: VBAProblemDetails;
|
|
38
|
+
/**
|
|
39
|
+
*
|
|
40
|
+
* @type {Debug}
|
|
41
|
+
* @memberof GetTempRetroPremInvoiceAdjustmentsResultListVBAResponse
|
|
42
|
+
*/
|
|
43
|
+
'debug'?: Debug;
|
|
44
|
+
}
|
|
45
|
+
|
|
@@ -0,0 +1,132 @@
|
|
|
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 GetTempRetroPremInvoiceAdjustmentsResult
|
|
21
|
+
*/
|
|
22
|
+
export interface GetTempRetroPremInvoiceAdjustmentsResult {
|
|
23
|
+
/**
|
|
24
|
+
*
|
|
25
|
+
* @type {number}
|
|
26
|
+
* @memberof GetTempRetroPremInvoiceAdjustmentsResult
|
|
27
|
+
*/
|
|
28
|
+
'selected'?: number | null;
|
|
29
|
+
/**
|
|
30
|
+
*
|
|
31
|
+
* @type {number}
|
|
32
|
+
* @memberof GetTempRetroPremInvoiceAdjustmentsResult
|
|
33
|
+
*/
|
|
34
|
+
'invoice_Key'?: number | null;
|
|
35
|
+
/**
|
|
36
|
+
*
|
|
37
|
+
* @type {string}
|
|
38
|
+
* @memberof GetTempRetroPremInvoiceAdjustmentsResult
|
|
39
|
+
*/
|
|
40
|
+
'invoice_Number'?: string | null;
|
|
41
|
+
/**
|
|
42
|
+
*
|
|
43
|
+
* @type {string}
|
|
44
|
+
* @memberof GetTempRetroPremInvoiceAdjustmentsResult
|
|
45
|
+
*/
|
|
46
|
+
'invoice_Date'?: string | null;
|
|
47
|
+
/**
|
|
48
|
+
*
|
|
49
|
+
* @type {string}
|
|
50
|
+
* @memberof GetTempRetroPremInvoiceAdjustmentsResult
|
|
51
|
+
*/
|
|
52
|
+
'billing_From'?: string | null;
|
|
53
|
+
/**
|
|
54
|
+
*
|
|
55
|
+
* @type {string}
|
|
56
|
+
* @memberof GetTempRetroPremInvoiceAdjustmentsResult
|
|
57
|
+
*/
|
|
58
|
+
'billing_Thru'?: string | null;
|
|
59
|
+
/**
|
|
60
|
+
*
|
|
61
|
+
* @type {string}
|
|
62
|
+
* @memberof GetTempRetroPremInvoiceAdjustmentsResult
|
|
63
|
+
*/
|
|
64
|
+
'group_ID'?: string | null;
|
|
65
|
+
/**
|
|
66
|
+
*
|
|
67
|
+
* @type {string}
|
|
68
|
+
* @memberof GetTempRetroPremInvoiceAdjustmentsResult
|
|
69
|
+
*/
|
|
70
|
+
'division_ID'?: string | null;
|
|
71
|
+
/**
|
|
72
|
+
*
|
|
73
|
+
* @type {number}
|
|
74
|
+
* @memberof GetTempRetroPremInvoiceAdjustmentsResult
|
|
75
|
+
*/
|
|
76
|
+
'premRate_Key'?: number | null;
|
|
77
|
+
/**
|
|
78
|
+
*
|
|
79
|
+
* @type {string}
|
|
80
|
+
* @memberof GetTempRetroPremInvoiceAdjustmentsResult
|
|
81
|
+
*/
|
|
82
|
+
'rate_Description'?: string | null;
|
|
83
|
+
/**
|
|
84
|
+
*
|
|
85
|
+
* @type {number}
|
|
86
|
+
* @memberof GetTempRetroPremInvoiceAdjustmentsResult
|
|
87
|
+
*/
|
|
88
|
+
'new_Invoice_Amount'?: number | null;
|
|
89
|
+
/**
|
|
90
|
+
*
|
|
91
|
+
* @type {number}
|
|
92
|
+
* @memberof GetTempRetroPremInvoiceAdjustmentsResult
|
|
93
|
+
*/
|
|
94
|
+
'current_Invoice_Amount'?: number | null;
|
|
95
|
+
/**
|
|
96
|
+
*
|
|
97
|
+
* @type {number}
|
|
98
|
+
* @memberof GetTempRetroPremInvoiceAdjustmentsResult
|
|
99
|
+
*/
|
|
100
|
+
'unassigned_Adjustment_Amount'?: number | null;
|
|
101
|
+
/**
|
|
102
|
+
*
|
|
103
|
+
* @type {number}
|
|
104
|
+
* @memberof GetTempRetroPremInvoiceAdjustmentsResult
|
|
105
|
+
*/
|
|
106
|
+
'adjustment_Amount'?: number | null;
|
|
107
|
+
/**
|
|
108
|
+
*
|
|
109
|
+
* @type {number}
|
|
110
|
+
* @memberof GetTempRetroPremInvoiceAdjustmentsResult
|
|
111
|
+
*/
|
|
112
|
+
'reason_ID'?: number | null;
|
|
113
|
+
/**
|
|
114
|
+
*
|
|
115
|
+
* @type {number}
|
|
116
|
+
* @memberof GetTempRetroPremInvoiceAdjustmentsResult
|
|
117
|
+
*/
|
|
118
|
+
'volume'?: number | null;
|
|
119
|
+
/**
|
|
120
|
+
*
|
|
121
|
+
* @type {boolean}
|
|
122
|
+
* @memberof GetTempRetroPremInvoiceAdjustmentsResult
|
|
123
|
+
*/
|
|
124
|
+
'auto_Adjust'?: boolean | null;
|
|
125
|
+
/**
|
|
126
|
+
*
|
|
127
|
+
* @type {number}
|
|
128
|
+
* @memberof GetTempRetroPremInvoiceAdjustmentsResult
|
|
129
|
+
*/
|
|
130
|
+
'assign_Invoice_Key'?: number | null;
|
|
131
|
+
}
|
|
132
|
+
|
|
@@ -0,0 +1,30 @@
|
|
|
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 IDCardRequestReportSeriesConfig
|
|
21
|
+
*/
|
|
22
|
+
export interface IDCardRequestReportSeriesConfig {
|
|
23
|
+
/**
|
|
24
|
+
*
|
|
25
|
+
* @type {Array<number>}
|
|
26
|
+
* @memberof IDCardRequestReportSeriesConfig
|
|
27
|
+
*/
|
|
28
|
+
'idCardRequestKeys'?: Array<number> | null;
|
|
29
|
+
}
|
|
30
|
+
|
package/models/index.ts
CHANGED
|
@@ -7,6 +7,15 @@ export * from './apcschedule-vbaresponse';
|
|
|
7
7
|
export * from './apcweight';
|
|
8
8
|
export * from './apcweight-list-vbaresponse';
|
|
9
9
|
export * from './apcweight-vbaresponse';
|
|
10
|
+
export * from './accounting-withhold-check-config';
|
|
11
|
+
export * from './accumulator-added-accum-detail-result';
|
|
12
|
+
export * from './accumulator-added-accum-detail-result-list-vbaresponse';
|
|
13
|
+
export * from './accumulator-all-benefit-detail-result';
|
|
14
|
+
export * from './accumulator-all-benefit-detail-result-list-vbaresponse';
|
|
15
|
+
export * from './accumulator-benefit-detail-result';
|
|
16
|
+
export * from './accumulator-benefit-detail-result-list-vbaresponse';
|
|
17
|
+
export * from './accumulator-detail-result';
|
|
18
|
+
export * from './accumulator-detail-result-list-vbaresponse';
|
|
10
19
|
export * from './active-subscriber';
|
|
11
20
|
export * from './active-subscriber-list-vbaresponse';
|
|
12
21
|
export * from './add-enrollment-request';
|
|
@@ -89,12 +98,16 @@ export * from './bill-type-place';
|
|
|
89
98
|
export * from './bill-type-place-list-vbaresponse';
|
|
90
99
|
export * from './bill-type-place-vbaresponse';
|
|
91
100
|
export * from './bill-type-vbaresponse';
|
|
101
|
+
export * from './billing-add-rate-from-template-config';
|
|
102
|
+
export * from './billing-apply-payment-config';
|
|
103
|
+
export * from './billing-auto-apply-config';
|
|
92
104
|
export * from './billing-basis';
|
|
93
105
|
export * from './billing-basis-list-vbaresponse';
|
|
94
106
|
export * from './billing-basis-vbaresponse';
|
|
95
107
|
export * from './billing-cycle';
|
|
96
108
|
export * from './billing-cycle-list-vbaresponse';
|
|
97
109
|
export * from './billing-cycle-vbaresponse';
|
|
110
|
+
export * from './billing-rate-modify-config';
|
|
98
111
|
export * from './billing-refund';
|
|
99
112
|
export * from './boolean-vbaresponse';
|
|
100
113
|
export * from './brokerage';
|
|
@@ -431,6 +444,7 @@ export * from './claim-audit-status-vbaresponse';
|
|
|
431
444
|
export * from './claim-audit-vbaresponse';
|
|
432
445
|
export * from './claim-batch';
|
|
433
446
|
export * from './claim-batch-claim-batch-detail';
|
|
447
|
+
export * from './claim-batch-claim-batch-detail-list-vbaresponse';
|
|
434
448
|
export * from './claim-batch-claim-batch-detail-vbaresponse';
|
|
435
449
|
export * from './claim-batch-detail';
|
|
436
450
|
export * from './claim-batch-detail-benefit';
|
|
@@ -509,9 +523,34 @@ export * from './claim-flex-vbaresponse';
|
|
|
509
523
|
export * from './claim-funded-status';
|
|
510
524
|
export * from './claim-funded-status-list-vbaresponse';
|
|
511
525
|
export * from './claim-funded-status-vbaresponse';
|
|
526
|
+
export * from './claim-invoice';
|
|
527
|
+
export * from './claim-invoice-adjustment';
|
|
528
|
+
export * from './claim-invoice-adjustment-list-vbaresponse';
|
|
529
|
+
export * from './claim-invoice-adjustment-reason';
|
|
530
|
+
export * from './claim-invoice-adjustment-reason-list-vbaresponse';
|
|
531
|
+
export * from './claim-invoice-adjustment-reason-vbaresponse';
|
|
532
|
+
export * from './claim-invoice-adjustment-received';
|
|
533
|
+
export * from './claim-invoice-adjustment-received-list-vbaresponse';
|
|
534
|
+
export * from './claim-invoice-adjustment-received-vbaresponse';
|
|
535
|
+
export * from './claim-invoice-adjustment-vbaresponse';
|
|
536
|
+
export * from './claim-invoice-config';
|
|
537
|
+
export * from './claim-invoice-detail';
|
|
538
|
+
export * from './claim-invoice-detail-list-vbaresponse';
|
|
539
|
+
export * from './claim-invoice-detail-vbaresponse';
|
|
540
|
+
export * from './claim-invoice-list-vbaresponse';
|
|
541
|
+
export * from './claim-invoice-payment';
|
|
542
|
+
export * from './claim-invoice-payment-list-vbaresponse';
|
|
543
|
+
export * from './claim-invoice-payment-vbaresponse';
|
|
544
|
+
export * from './claim-invoice-received';
|
|
545
|
+
export * from './claim-invoice-received-list-vbaresponse';
|
|
546
|
+
export * from './claim-invoice-received-vbaresponse';
|
|
547
|
+
export * from './claim-invoice-vbaresponse';
|
|
512
548
|
export * from './claim-occurrence-code';
|
|
513
549
|
export * from './claim-occurrence-code-list-vbaresponse';
|
|
514
550
|
export * from './claim-occurrence-code-vbaresponse';
|
|
551
|
+
export * from './claim-payment';
|
|
552
|
+
export * from './claim-payment-list-vbaresponse';
|
|
553
|
+
export * from './claim-payment-vbaresponse';
|
|
515
554
|
export * from './claim-pre-batch';
|
|
516
555
|
export * from './claim-pre-batch-detail';
|
|
517
556
|
export * from './claim-pre-batch-detail-list-vbaresponse';
|
|
@@ -780,6 +819,7 @@ export * from './county-vbaresponse';
|
|
|
780
819
|
export * from './coverage-type';
|
|
781
820
|
export * from './coverage-type-list-vbaresponse';
|
|
782
821
|
export * from './coverage-type-vbaresponse';
|
|
822
|
+
export * from './covered-benefit';
|
|
783
823
|
export * from './cred-amount';
|
|
784
824
|
export * from './cred-amount-list-vbaresponse';
|
|
785
825
|
export * from './cred-amount-vbaresponse';
|
|
@@ -934,12 +974,15 @@ export * from './edicustom-field-value-claim';
|
|
|
934
974
|
export * from './edicustom-field-value-claim-list-vbaresponse';
|
|
935
975
|
export * from './edicustom-field-value-claim-vbaresponse';
|
|
936
976
|
export * from './electronic-statement';
|
|
977
|
+
export * from './elig-detail';
|
|
937
978
|
export * from './eligibility-status';
|
|
938
979
|
export * from './eligibility-status-list-vbaresponse';
|
|
939
980
|
export * from './eligibility-status-vbaresponse';
|
|
940
981
|
export * from './email-report-dto';
|
|
941
982
|
export * from './enable-mfasetup-request';
|
|
942
983
|
export * from './enrollment-disenroll';
|
|
984
|
+
export * from './enrollment-disenroll-adjustment';
|
|
985
|
+
export * from './enrollment-disenroll-adjustment-list-vbaresponse';
|
|
943
986
|
export * from './enrollment-disenroll-group';
|
|
944
987
|
export * from './enrollment-pcpauto-assign';
|
|
945
988
|
export * from './enrollment-pcpauto-assign-member';
|
|
@@ -992,6 +1035,7 @@ export * from './explanation-codes-vbaresponse';
|
|
|
992
1035
|
export * from './external-id';
|
|
993
1036
|
export * from './external-idlist-vbaresponse';
|
|
994
1037
|
export * from './external-idvbaresponse';
|
|
1038
|
+
export * from './fundaccountbalancelist';
|
|
995
1039
|
export * from './fax-report-dto';
|
|
996
1040
|
export * from './fee-sched';
|
|
997
1041
|
export * from './fee-sched-anesthesia';
|
|
@@ -1124,10 +1168,18 @@ export * from './gender-vbaresponse';
|
|
|
1124
1168
|
export * from './generate-prem-invoice';
|
|
1125
1169
|
export * from './generate-reins-transaction';
|
|
1126
1170
|
export * from './generate-reins-transaction-vbaresponse';
|
|
1171
|
+
export * from './get-plan-max-claim-detail-result';
|
|
1172
|
+
export * from './get-plan-max-claim-detail-result-list-vbaresponse';
|
|
1173
|
+
export * from './get-plan-max-summary-result';
|
|
1174
|
+
export * from './get-plan-max-summary-result-list-vbaresponse';
|
|
1127
1175
|
export * from './get-prem-distribution-list-result';
|
|
1128
1176
|
export * from './get-prem-distribution-list-result-list-vbaresponse';
|
|
1129
1177
|
export * from './get-prem-invoice-subscriber-list-result';
|
|
1130
1178
|
export * from './get-prem-invoice-subscriber-list-result-list-vbaresponse';
|
|
1179
|
+
export * from './get-subscriber-disenroll-adjustments-result';
|
|
1180
|
+
export * from './get-subscriber-disenroll-adjustments-result-list-vbaresponse';
|
|
1181
|
+
export * from './get-temp-retro-prem-invoice-adjustments-result';
|
|
1182
|
+
export * from './get-temp-retro-prem-invoice-adjustments-result-list-vbaresponse';
|
|
1131
1183
|
export * from './grievance';
|
|
1132
1184
|
export * from './grievance-admin-change-type';
|
|
1133
1185
|
export * from './grievance-admin-change-type-list-vbaresponse';
|
|
@@ -1322,6 +1374,7 @@ export * from './hipaatier-list-vbaresponse';
|
|
|
1322
1374
|
export * from './hipaatier-vbaresponse';
|
|
1323
1375
|
export * from './idcard-request';
|
|
1324
1376
|
export * from './idcard-request-list-vbaresponse';
|
|
1377
|
+
export * from './idcard-request-report-series-config';
|
|
1325
1378
|
export * from './idcard-request-type';
|
|
1326
1379
|
export * from './idcard-request-type-list-vbaresponse';
|
|
1327
1380
|
export * from './idcard-request-type-vbaresponse';
|
|
@@ -1442,6 +1495,7 @@ export * from './member-class-vbaresponse';
|
|
|
1442
1495
|
export * from './member-college';
|
|
1443
1496
|
export * from './member-college-list-vbaresponse';
|
|
1444
1497
|
export * from './member-college-vbaresponse';
|
|
1498
|
+
export * from './member-detail';
|
|
1445
1499
|
export * from './member-eligibility-status';
|
|
1446
1500
|
export * from './member-eligibility-status-list-vbaresponse';
|
|
1447
1501
|
export * from './member-eligibility-status-vbaresponse';
|
|
@@ -1499,6 +1553,10 @@ export * from './member-vbaplan-type-idvbaresponse';
|
|
|
1499
1553
|
export * from './members';
|
|
1500
1554
|
export * from './members-list-vbaresponse';
|
|
1501
1555
|
export * from './members-vbaresponse';
|
|
1556
|
+
export * from './message-thread';
|
|
1557
|
+
export * from './message-thread-vbaresponse';
|
|
1558
|
+
export * from './messages';
|
|
1559
|
+
export * from './messages-vbaresponse';
|
|
1502
1560
|
export * from './modifier';
|
|
1503
1561
|
export * from './modifier-list-vbaresponse';
|
|
1504
1562
|
export * from './modifier-vbaresponse';
|
|
@@ -1727,6 +1785,8 @@ export * from './practice-type';
|
|
|
1727
1785
|
export * from './practice-type-criteria';
|
|
1728
1786
|
export * from './practice-type-list-vbaresponse';
|
|
1729
1787
|
export * from './practice-type-vbaresponse';
|
|
1788
|
+
export * from './prem-apply-payment-category-result';
|
|
1789
|
+
export * from './prem-apply-payment-category-result-list-vbaresponse';
|
|
1730
1790
|
export * from './prem-distribution';
|
|
1731
1791
|
export * from './prem-distribution-list-vbaresponse';
|
|
1732
1792
|
export * from './prem-distribution-vbaresponse';
|
|
@@ -1740,8 +1800,6 @@ export * from './prem-invoice-adjustment-vbaresponse';
|
|
|
1740
1800
|
export * from './prem-invoice-apply-payment';
|
|
1741
1801
|
export * from './prem-invoice-generate-inv-list';
|
|
1742
1802
|
export * from './prem-invoice-generate-inv-list-list-vbaresponse';
|
|
1743
|
-
export * from './prem-invoice-generate-inv-list-result';
|
|
1744
|
-
export * from './prem-invoice-generate-inv-list-result-list-vbaresponse';
|
|
1745
1803
|
export * from './prem-invoice-generate-self-admin-inv-list';
|
|
1746
1804
|
export * from './prem-invoice-generate-self-admin-inv-list-list-vbaresponse';
|
|
1747
1805
|
export * from './prem-invoice-group-summary';
|
|
@@ -2255,6 +2313,7 @@ export * from './submit-mfacode-request';
|
|
|
2255
2313
|
export * from './subscriber-accum';
|
|
2256
2314
|
export * from './subscriber-accum-list-vbaresponse';
|
|
2257
2315
|
export * from './subscriber-accum-vbaresponse';
|
|
2316
|
+
export * from './subscriber-detail';
|
|
2258
2317
|
export * from './subscriber-flex';
|
|
2259
2318
|
export * from './subscriber-flex-exported';
|
|
2260
2319
|
export * from './subscriber-flex-exported-list-vbaresponse';
|
|
@@ -2408,6 +2467,9 @@ export * from './vbaapp-info';
|
|
|
2408
2467
|
export * from './vbaapp-info-vbaresponse';
|
|
2409
2468
|
export * from './vbaauth';
|
|
2410
2469
|
export * from './vbaauth-vbaresponse';
|
|
2470
|
+
export * from './vbabenefit-inquiry';
|
|
2471
|
+
export * from './vbabenefit-inquiry-request';
|
|
2472
|
+
export * from './vbabenefit-inquiry-vbaresponse';
|
|
2411
2473
|
export * from './vbacdcmembers';
|
|
2412
2474
|
export * from './vbacdcmembers-list-vbaresponse';
|
|
2413
2475
|
export * from './vbacdcsubenrollment';
|
|
@@ -2427,6 +2489,8 @@ export * from './vbaclient-list-vbaresponse';
|
|
|
2427
2489
|
export * from './vbaclient-vbaresponse';
|
|
2428
2490
|
export * from './vbacommission-rate-subscriber';
|
|
2429
2491
|
export * from './vbacommission-rate-subscriber-list-vbaresponse';
|
|
2492
|
+
export * from './vbadisability-advisor';
|
|
2493
|
+
export * from './vbadisability-advisor-deduction';
|
|
2430
2494
|
export * from './vbafunding-account-claim-info';
|
|
2431
2495
|
export * from './vbafunding-account-claim-info-list-vbaresponse';
|
|
2432
2496
|
export * from './vbafunding-request-claim-summary';
|
|
@@ -2493,6 +2557,7 @@ export * from './vbareins-contract-transaction-summary';
|
|
|
2493
2557
|
export * from './vbareins-contract-transaction-summary-list-vbaresponse';
|
|
2494
2558
|
export * from './vbareport';
|
|
2495
2559
|
export * from './vbareport-list-vbaresponse';
|
|
2560
|
+
export * from './vbareport-vbaresponse';
|
|
2496
2561
|
export * from './vbassologin-config';
|
|
2497
2562
|
export * from './verify-mfadevice-setup-request';
|
|
2498
2563
|
export * from './verify-mfadevice-setup-response';
|
|
@@ -25,12 +25,6 @@ export interface JsonNodeOptions {
|
|
|
25
25
|
* @type {boolean}
|
|
26
26
|
* @memberof JsonNodeOptions
|
|
27
27
|
*/
|
|
28
|
-
'
|
|
29
|
-
/**
|
|
30
|
-
*
|
|
31
|
-
* @type {JsonNodeOptions}
|
|
32
|
-
* @memberof JsonNodeOptions
|
|
33
|
-
*/
|
|
34
|
-
'value'?: JsonNodeOptions;
|
|
28
|
+
'propertyNameCaseInsensitive'?: boolean;
|
|
35
29
|
}
|
|
36
30
|
|