@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
|
@@ -68,6 +68,48 @@ export interface SubEnrollmentPlan {
|
|
|
68
68
|
* @memberof SubEnrollmentPlan
|
|
69
69
|
*/
|
|
70
70
|
'dollar_Amount'?: number | null;
|
|
71
|
+
/**
|
|
72
|
+
* Date when the record was first added to the system.
|
|
73
|
+
* @type {string}
|
|
74
|
+
* @memberof SubEnrollmentPlan
|
|
75
|
+
*/
|
|
76
|
+
'entry_Date'?: string;
|
|
77
|
+
/**
|
|
78
|
+
* User that first added the record to the system
|
|
79
|
+
* @type {string}
|
|
80
|
+
* @memberof SubEnrollmentPlan
|
|
81
|
+
*/
|
|
82
|
+
'entry_User'?: string | null;
|
|
83
|
+
/**
|
|
84
|
+
*
|
|
85
|
+
* @type {number}
|
|
86
|
+
* @memberof SubEnrollmentPlan
|
|
87
|
+
*/
|
|
88
|
+
'ltC_Daily_Benefit_Amount'?: number | null;
|
|
89
|
+
/**
|
|
90
|
+
*
|
|
91
|
+
* @type {number}
|
|
92
|
+
* @memberof SubEnrollmentPlan
|
|
93
|
+
*/
|
|
94
|
+
'ltC_Lifetime_Max_Amount'?: number | null;
|
|
95
|
+
/**
|
|
96
|
+
*
|
|
97
|
+
* @type {number}
|
|
98
|
+
* @memberof SubEnrollmentPlan
|
|
99
|
+
*/
|
|
100
|
+
'ltC_Lifetime_Max_Days'?: number | null;
|
|
101
|
+
/**
|
|
102
|
+
*
|
|
103
|
+
* @type {number}
|
|
104
|
+
* @memberof SubEnrollmentPlan
|
|
105
|
+
*/
|
|
106
|
+
'ltC_Lifetime_Max_Years'?: number | null;
|
|
107
|
+
/**
|
|
108
|
+
*
|
|
109
|
+
* @type {number}
|
|
110
|
+
* @memberof SubEnrollmentPlan
|
|
111
|
+
*/
|
|
112
|
+
'ltC_Monthly_Benefit_Amount'?: number | null;
|
|
71
113
|
/**
|
|
72
114
|
* Date that the premiums have been paid through for this plan. The \'Paid Thru Exceeded\' Ex Code will be applied to Claims adjudicated with a service date beyond this date.
|
|
73
115
|
* @type {string}
|
|
@@ -80,12 +122,30 @@ export interface SubEnrollmentPlan {
|
|
|
80
122
|
* @memberof SubEnrollmentPlan
|
|
81
123
|
*/
|
|
82
124
|
'plan_End'?: string | null;
|
|
125
|
+
/**
|
|
126
|
+
*
|
|
127
|
+
* @type {number}
|
|
128
|
+
* @memberof SubEnrollmentPlan
|
|
129
|
+
*/
|
|
130
|
+
'reason_ID'?: number | null;
|
|
83
131
|
/**
|
|
84
132
|
* The Subscriber\'s \'Tier\' within the selected plan on the enrollment. This will impact adjudication and invoicing.
|
|
85
133
|
* @type {string}
|
|
86
134
|
* @memberof SubEnrollmentPlan
|
|
87
135
|
*/
|
|
88
136
|
'tier'?: string | null;
|
|
137
|
+
/**
|
|
138
|
+
* Date when the record was last updated in the system
|
|
139
|
+
* @type {string}
|
|
140
|
+
* @memberof SubEnrollmentPlan
|
|
141
|
+
*/
|
|
142
|
+
'update_Date'?: string;
|
|
143
|
+
/**
|
|
144
|
+
* User that last updated the record in the system
|
|
145
|
+
* @type {string}
|
|
146
|
+
* @memberof SubEnrollmentPlan
|
|
147
|
+
*/
|
|
148
|
+
'update_User'?: string | null;
|
|
89
149
|
/**
|
|
90
150
|
* This option tells the system to calculate the \'Volume\' using the Group volume rules. Checking this box will display an elipsis that when clicked will explain the volume calculation.
|
|
91
151
|
* @type {boolean}
|
|
@@ -92,6 +92,18 @@ export interface SubEnrollmentRider {
|
|
|
92
92
|
* @memberof SubEnrollmentRider
|
|
93
93
|
*/
|
|
94
94
|
'employee_Contribution_Pct': boolean;
|
|
95
|
+
/**
|
|
96
|
+
* Date when the record was first added to the system.
|
|
97
|
+
* @type {string}
|
|
98
|
+
* @memberof SubEnrollmentRider
|
|
99
|
+
*/
|
|
100
|
+
'entry_Date'?: string;
|
|
101
|
+
/**
|
|
102
|
+
* User that first added the record to the system.
|
|
103
|
+
* @type {string}
|
|
104
|
+
* @memberof SubEnrollmentRider
|
|
105
|
+
*/
|
|
106
|
+
'entry_User'?: string | null;
|
|
95
107
|
/**
|
|
96
108
|
* Custom value used for Ceridican tax processing interface.
|
|
97
109
|
* @type {string}
|
|
@@ -110,6 +122,36 @@ export interface SubEnrollmentRider {
|
|
|
110
122
|
* @memberof SubEnrollmentRider
|
|
111
123
|
*/
|
|
112
124
|
'initial_Volume_Salary_Pct': boolean;
|
|
125
|
+
/**
|
|
126
|
+
*
|
|
127
|
+
* @type {number}
|
|
128
|
+
* @memberof SubEnrollmentRider
|
|
129
|
+
*/
|
|
130
|
+
'ltC_Daily_Benefit_Amount'?: number | null;
|
|
131
|
+
/**
|
|
132
|
+
*
|
|
133
|
+
* @type {number}
|
|
134
|
+
* @memberof SubEnrollmentRider
|
|
135
|
+
*/
|
|
136
|
+
'ltC_Lifetime_Max_Amount'?: number | null;
|
|
137
|
+
/**
|
|
138
|
+
*
|
|
139
|
+
* @type {number}
|
|
140
|
+
* @memberof SubEnrollmentRider
|
|
141
|
+
*/
|
|
142
|
+
'ltC_Lifetime_Max_Days'?: number | null;
|
|
143
|
+
/**
|
|
144
|
+
*
|
|
145
|
+
* @type {number}
|
|
146
|
+
* @memberof SubEnrollmentRider
|
|
147
|
+
*/
|
|
148
|
+
'ltC_Lifetime_Max_Years'?: number | null;
|
|
149
|
+
/**
|
|
150
|
+
*
|
|
151
|
+
* @type {number}
|
|
152
|
+
* @memberof SubEnrollmentRider
|
|
153
|
+
*/
|
|
154
|
+
'ltC_Monthly_Benefit_Amount'?: number | null;
|
|
113
155
|
/**
|
|
114
156
|
* No longer in use.
|
|
115
157
|
* @type {number}
|
|
@@ -128,6 +170,18 @@ export interface SubEnrollmentRider {
|
|
|
128
170
|
* @memberof SubEnrollmentRider
|
|
129
171
|
*/
|
|
130
172
|
'thru_Date'?: string | null;
|
|
173
|
+
/**
|
|
174
|
+
* Date when the record was last updated in the system.
|
|
175
|
+
* @type {string}
|
|
176
|
+
* @memberof SubEnrollmentRider
|
|
177
|
+
*/
|
|
178
|
+
'update_Date'?: string;
|
|
179
|
+
/**
|
|
180
|
+
* User that last updated the record in the system.
|
|
181
|
+
* @type {string}
|
|
182
|
+
* @memberof SubEnrollmentRider
|
|
183
|
+
*/
|
|
184
|
+
'update_User'?: string | null;
|
|
131
185
|
/**
|
|
132
186
|
* Billing setting indicating that the employee age is used in all calculations that are age based for this specific Rider.
|
|
133
187
|
* @type {boolean}
|
|
@@ -135,13 +189,13 @@ export interface SubEnrollmentRider {
|
|
|
135
189
|
*/
|
|
136
190
|
'use_Employee_Age': boolean;
|
|
137
191
|
/**
|
|
138
|
-
*
|
|
192
|
+
* The \'Gaurantee Issue\' option is an alternative to the \'Use Scale\' option. It offers a convenient secondary option for min/max when calculating Rider volume. Plan type must include the \"Life AD&D\" indicator.
|
|
139
193
|
* @type {boolean}
|
|
140
194
|
* @memberof SubEnrollmentRider
|
|
141
195
|
*/
|
|
142
196
|
'use_GI_Volume_Min_Max': boolean;
|
|
143
197
|
/**
|
|
144
|
-
*
|
|
198
|
+
* This option tells the system to calculate the \'Volume\' using the Group volume rules. Checking this box will display an elipsis that when clicked will explain the volume calculation. Plan type must include the \"Life AD&D\" indicator.
|
|
145
199
|
* @type {boolean}
|
|
146
200
|
* @memberof SubEnrollmentRider
|
|
147
201
|
*/
|
package/models/subscribers.ts
CHANGED
|
@@ -86,6 +86,18 @@ export interface Subscribers {
|
|
|
86
86
|
* @memberof Subscribers
|
|
87
87
|
*/
|
|
88
88
|
'email'?: string | null;
|
|
89
|
+
/**
|
|
90
|
+
* Date when the record was first added to the system.
|
|
91
|
+
* @type {string}
|
|
92
|
+
* @memberof Subscribers
|
|
93
|
+
*/
|
|
94
|
+
'entry_Date'?: string;
|
|
95
|
+
/**
|
|
96
|
+
* User that first added the record to the system.
|
|
97
|
+
* @type {string}
|
|
98
|
+
* @memberof Subscribers
|
|
99
|
+
*/
|
|
100
|
+
'entry_User'?: string | null;
|
|
89
101
|
/**
|
|
90
102
|
* First name of the Subscriber.
|
|
91
103
|
* @type {string}
|
|
@@ -170,6 +182,18 @@ export interface Subscribers {
|
|
|
170
182
|
* @memberof Subscribers
|
|
171
183
|
*/
|
|
172
184
|
'salutation'?: string | null;
|
|
185
|
+
/**
|
|
186
|
+
*
|
|
187
|
+
* @type {string}
|
|
188
|
+
* @memberof Subscribers
|
|
189
|
+
*/
|
|
190
|
+
'sponsor_ID'?: string | null;
|
|
191
|
+
/**
|
|
192
|
+
*
|
|
193
|
+
* @type {string}
|
|
194
|
+
* @memberof Subscribers
|
|
195
|
+
*/
|
|
196
|
+
'sponsor_Relate_Code'?: string | null;
|
|
173
197
|
/**
|
|
174
198
|
* State of the Subscriber.
|
|
175
199
|
* @type {string}
|
|
@@ -182,6 +206,18 @@ export interface Subscribers {
|
|
|
182
206
|
* @memberof Subscribers
|
|
183
207
|
*/
|
|
184
208
|
'status'?: string | null;
|
|
209
|
+
/**
|
|
210
|
+
* Date when the record was last updated in the system.
|
|
211
|
+
* @type {string}
|
|
212
|
+
* @memberof Subscribers
|
|
213
|
+
*/
|
|
214
|
+
'update_Date'?: string;
|
|
215
|
+
/**
|
|
216
|
+
* User that last updated the record in the system.
|
|
217
|
+
* @type {string}
|
|
218
|
+
* @memberof Subscribers
|
|
219
|
+
*/
|
|
220
|
+
'update_User'?: string | null;
|
|
185
221
|
/**
|
|
186
222
|
* Country Code for the work phone number of the Subscriber.
|
|
187
223
|
* @type {string}
|
package/models/users.ts
CHANGED
|
@@ -97,7 +97,19 @@ export interface Users {
|
|
|
97
97
|
* @type {string}
|
|
98
98
|
* @memberof Users
|
|
99
99
|
*/
|
|
100
|
-
'eMail_Address'
|
|
100
|
+
'eMail_Address'?: string | null;
|
|
101
|
+
/**
|
|
102
|
+
* Date record was first added to the system
|
|
103
|
+
* @type {string}
|
|
104
|
+
* @memberof Users
|
|
105
|
+
*/
|
|
106
|
+
'entry_Date'?: string;
|
|
107
|
+
/**
|
|
108
|
+
* User that first added the record to the system
|
|
109
|
+
* @type {string}
|
|
110
|
+
* @memberof Users
|
|
111
|
+
*/
|
|
112
|
+
'entry_User'?: string | null;
|
|
101
113
|
/**
|
|
102
114
|
* Fax number of the User.
|
|
103
115
|
* @type {string}
|
|
@@ -218,6 +230,18 @@ export interface Users {
|
|
|
218
230
|
* @memberof Users
|
|
219
231
|
*/
|
|
220
232
|
'title'?: string | null;
|
|
233
|
+
/**
|
|
234
|
+
* Date the record was last updated in the system
|
|
235
|
+
* @type {string}
|
|
236
|
+
* @memberof Users
|
|
237
|
+
*/
|
|
238
|
+
'update_Date'?: string;
|
|
239
|
+
/**
|
|
240
|
+
* User that last updated the record in the system
|
|
241
|
+
* @type {string}
|
|
242
|
+
* @memberof Users
|
|
243
|
+
*/
|
|
244
|
+
'update_User'?: string | null;
|
|
221
245
|
/**
|
|
222
246
|
* Whether or not to use Windows Authentication to login
|
|
223
247
|
* @type {boolean}
|
|
@@ -236,6 +260,12 @@ export interface Users {
|
|
|
236
260
|
* @memberof Users
|
|
237
261
|
*/
|
|
238
262
|
'user_Type'?: string | null;
|
|
263
|
+
/**
|
|
264
|
+
*
|
|
265
|
+
* @type {boolean}
|
|
266
|
+
* @memberof Users
|
|
267
|
+
*/
|
|
268
|
+
'vbA_Password_Reset': boolean;
|
|
239
269
|
/**
|
|
240
270
|
* Identifies that the User is a VBA User.
|
|
241
271
|
* @type {boolean}
|
package/models/volume.ts
ADDED
|
@@ -0,0 +1,42 @@
|
|
|
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 Volume
|
|
21
|
+
*/
|
|
22
|
+
export interface Volume {
|
|
23
|
+
/**
|
|
24
|
+
*
|
|
25
|
+
* @type {number}
|
|
26
|
+
* @memberof Volume
|
|
27
|
+
*/
|
|
28
|
+
'groupVolume_Key'?: number;
|
|
29
|
+
/**
|
|
30
|
+
*
|
|
31
|
+
* @type {string}
|
|
32
|
+
* @memberof Volume
|
|
33
|
+
*/
|
|
34
|
+
'volume_Description'?: string | null;
|
|
35
|
+
/**
|
|
36
|
+
*
|
|
37
|
+
* @type {number}
|
|
38
|
+
* @memberof Volume
|
|
39
|
+
*/
|
|
40
|
+
'effective_Rate'?: number;
|
|
41
|
+
}
|
|
42
|
+
|