@vbasoftware/vbapi-vbasoftware-typescript-axios 1.20230117.1 → 1.20230130.2
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 +11 -0
- package/api/day-intervals-api.ts +716 -0
- package/api/group-volumes-api.ts +97 -0
- package/api/report-series-api.ts +17 -8
- package/api/waiting-period-types-api.ts +155 -0
- package/api.ts +2 -0
- package/models/auth-adjustment.ts +6 -0
- package/models/auth-diag-codes.ts +24 -0
- package/models/benefit-config.ts +43 -0
- package/models/criteria-detail.ts +10 -10
- package/models/criteria.ts +2 -2
- package/models/day-interval-list-vbaresponse.ts +45 -0
- package/models/day-interval-vbaresponse.ts +45 -0
- package/models/day-interval.ts +144 -0
- package/models/division-config.ts +43 -0
- package/models/group-volume-nested-list-vbaresponse.ts +45 -0
- package/models/group-volume-nested.ts +43 -0
- package/models/groups.ts +30 -0
- package/models/idcard-request.ts +30 -0
- package/models/index.ts +9 -0
- package/models/mem-enrollment-plan.ts +54 -0
- package/models/mem-enrollment-rider.ts +54 -0
- package/models/member-address.ts +36 -0
- package/models/member-beneficiary.ts +36 -0
- package/models/plan-benefit-rate.ts +30 -0
- package/models/plan-benefits.ts +295 -67
- package/models/plan-config.ts +43 -0
- package/models/plan-type.ts +42 -0
- package/models/plans.ts +256 -106
- package/models/sub-enrollment-plan.ts +60 -0
- package/models/sub-enrollment-rider.ts +56 -2
- package/models/subscribers.ts +36 -0
- package/models/users.ts +31 -1
- package/models/volume.ts +42 -0
- package/package.json +1 -1
|
@@ -0,0 +1,43 @@
|
|
|
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 { BenefitConfig } from './benefit-config';
|
|
17
|
+
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @export
|
|
21
|
+
* @interface PlanConfig
|
|
22
|
+
*/
|
|
23
|
+
export interface PlanConfig {
|
|
24
|
+
/**
|
|
25
|
+
*
|
|
26
|
+
* @type {string}
|
|
27
|
+
* @memberof PlanConfig
|
|
28
|
+
*/
|
|
29
|
+
'plan_ID'?: string | null;
|
|
30
|
+
/**
|
|
31
|
+
*
|
|
32
|
+
* @type {string}
|
|
33
|
+
* @memberof PlanConfig
|
|
34
|
+
*/
|
|
35
|
+
'plan_Description'?: string | null;
|
|
36
|
+
/**
|
|
37
|
+
*
|
|
38
|
+
* @type {Array<BenefitConfig>}
|
|
39
|
+
* @memberof PlanConfig
|
|
40
|
+
*/
|
|
41
|
+
'benefitConfigs'?: Array<BenefitConfig> | null;
|
|
42
|
+
}
|
|
43
|
+
|
package/models/plan-type.ts
CHANGED
|
@@ -68,6 +68,18 @@ export interface PlanType {
|
|
|
68
68
|
* @memberof PlanType
|
|
69
69
|
*/
|
|
70
70
|
'encounters': boolean;
|
|
71
|
+
/**
|
|
72
|
+
* Date when the record was added to the system.
|
|
73
|
+
* @type {string}
|
|
74
|
+
* @memberof PlanType
|
|
75
|
+
*/
|
|
76
|
+
'entry_Date'?: string;
|
|
77
|
+
/**
|
|
78
|
+
* User that first added the record to the system.
|
|
79
|
+
* @type {string}
|
|
80
|
+
* @memberof PlanType
|
|
81
|
+
*/
|
|
82
|
+
'entry_User'?: string | null;
|
|
71
83
|
/**
|
|
72
84
|
* HIPAA Code associated with the specified plan type.
|
|
73
85
|
* @type {string}
|
|
@@ -98,6 +110,12 @@ export interface PlanType {
|
|
|
98
110
|
* @memberof PlanType
|
|
99
111
|
*/
|
|
100
112
|
'indemnity': boolean;
|
|
113
|
+
/**
|
|
114
|
+
*
|
|
115
|
+
* @type {boolean}
|
|
116
|
+
* @memberof PlanType
|
|
117
|
+
*/
|
|
118
|
+
'ltc': boolean;
|
|
101
119
|
/**
|
|
102
120
|
* Indicates whether the specified plan type is a Long-Term Disability Plan.
|
|
103
121
|
* @type {boolean}
|
|
@@ -122,6 +140,12 @@ export interface PlanType {
|
|
|
122
140
|
* @memberof PlanType
|
|
123
141
|
*/
|
|
124
142
|
'pay_As_You_Go': boolean;
|
|
143
|
+
/**
|
|
144
|
+
*
|
|
145
|
+
* @type {boolean}
|
|
146
|
+
* @memberof PlanType
|
|
147
|
+
*/
|
|
148
|
+
'pension': boolean;
|
|
125
149
|
/**
|
|
126
150
|
* Indicates whether the specified plan type is a Pharmacy Plan.
|
|
127
151
|
* @type {boolean}
|
|
@@ -146,6 +170,24 @@ export interface PlanType {
|
|
|
146
170
|
* @memberof PlanType
|
|
147
171
|
*/
|
|
148
172
|
'section125': boolean;
|
|
173
|
+
/**
|
|
174
|
+
*
|
|
175
|
+
* @type {boolean}
|
|
176
|
+
* @memberof PlanType
|
|
177
|
+
*/
|
|
178
|
+
'tier_Required': boolean;
|
|
179
|
+
/**
|
|
180
|
+
* Date when the record was last updated in the system.
|
|
181
|
+
* @type {string}
|
|
182
|
+
* @memberof PlanType
|
|
183
|
+
*/
|
|
184
|
+
'update_Date'?: string;
|
|
185
|
+
/**
|
|
186
|
+
* User that last updated the record in the system.
|
|
187
|
+
* @type {string}
|
|
188
|
+
* @memberof PlanType
|
|
189
|
+
*/
|
|
190
|
+
'update_User'?: string | null;
|
|
149
191
|
/**
|
|
150
192
|
* Indicates whether the specified plan type is a Vision Plan.
|
|
151
193
|
* @type {boolean}
|