@vbasoftware/vbapi-vbasoftware-typescript-axios 1.20230130.2 → 1.20230225.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 +18 -3
- package/api/adv-accounting-api.ts +10 -26
- package/api/commission-rates-api.ts +98 -0
- package/api/event-args-api.ts +15 -15
- package/api/events-api.ts +87 -0
- package/api/group-contract-plans-api.ts +105 -0
- package/api/group-contracts-api.ts +105 -0
- package/api/group-divisions-api.ts +115 -0
- package/api/group-volumes-api.ts +15 -14
- package/api/payor-accounts-api.ts +75 -130
- package/api/plan-auth-penalty-benefits-api.ts +232 -91
- package/api/plan-benefit-cascades-api.ts +15 -23
- package/api/premium-rates-api.ts +107 -0
- package/models/claim-batch-detail.ts +145 -139
- package/models/claim-batch.ts +668 -446
- package/models/claim-detail.ts +130 -124
- package/models/claim-pre-batch-detail.ts +100 -94
- package/models/claim-pre-batch.ts +600 -378
- package/models/claim.ts +508 -280
- package/models/commission-rate-division-config.ts +43 -0
- package/models/commission-rate-nested-list-vbaresponse.ts +45 -0
- package/models/commission-rate-nested.ts +43 -0
- package/models/commission-rate-plan-config.ts +43 -0
- package/models/commission-rate-rate.ts +36 -0
- package/models/company-data.ts +421 -403
- package/models/copy-group-division.ts +132 -0
- package/models/cost-contain-zelis-ex-code.ts +6 -6
- package/models/{benefit-config.ts → group-volume-benefit-config.ts} +5 -5
- package/models/group-volume-division-config.ts +43 -0
- package/models/group-volume-nested.ts +3 -3
- package/models/group-volume-plan-config.ts +43 -0
- package/models/groups.ts +18 -18
- package/models/idcard-request.ts +3 -3
- package/models/index.ts +18 -3
- package/models/mem-enrollment-plan.ts +9 -9
- package/models/mem-enrollment-rider.ts +10 -10
- package/models/member-beneficiary.ts +3 -3
- package/models/member-language.ts +38 -2
- package/models/member-prior-accum.ts +28 -28
- package/models/plan-auth-penalty-benefit.ts +24 -0
- package/models/plan-benefit-cluster.ts +12 -12
- package/models/plan-benefit-rate.ts +5 -5
- package/models/plan-benefits.ts +57 -51
- package/models/plan-type.ts +21 -21
- package/models/plans.ts +41 -41
- package/models/prem-rate-basis-config.ts +43 -0
- package/models/prem-rate-category-config.ts +43 -0
- package/models/{division-config.ts → prem-rate-division-config.ts} +8 -8
- package/models/prem-rate-nested-list-vbaresponse.ts +45 -0
- package/models/prem-rate-nested.ts +43 -0
- package/models/{plan-config.ts → prem-rate-plan-config.ts} +8 -8
- package/models/prem-rate-rate.ts +36 -0
- package/models/prem-rate.ts +85 -85
- package/models/sub-enrollment-plan.ts +10 -10
- package/models/sub-enrollment-rider.ts +14 -14
- package/models/subscribers.ts +2 -2
- package/models/users.ts +8 -8
- package/models/vbagroup-contract-list-vbaresponse.ts +45 -0
- package/models/vbagroup-contract.ts +55 -0
- package/package.json +1 -1
|
@@ -39,13 +39,13 @@ export interface SubEnrollmentRider {
|
|
|
39
39
|
*/
|
|
40
40
|
'division_ID': string;
|
|
41
41
|
/**
|
|
42
|
-
* References the SubenrollmentPlan.Group_Coverage_Start value in the parent table.
|
|
42
|
+
* References the SubenrollmentPlan.Group_Coverage_Start value in the parent table. Note: The database will apply a default value of `1/1/0001 12:00:00 AM` for this field if a value is not provided. This field is also marked as NOT NULL in the database and therefore required by the API. If you do not have a value for this field, supply the database default value of `1/1/0001 12:00:00 AM` to meet the API requirements and ensure that the functionality occurs as expected.
|
|
43
43
|
* @type {string}
|
|
44
44
|
* @memberof SubEnrollmentRider
|
|
45
45
|
*/
|
|
46
46
|
'group_Coverage_Start': string;
|
|
47
47
|
/**
|
|
48
|
-
* References the SubenrollmentPlan.Start_Date value in the parent table.
|
|
48
|
+
* References the SubenrollmentPlan.Start_Date value in the parent table. Note: The database will apply a default value of `1/1/0001 12:00:00 AM` for this field if a value is not provided. This field is also marked as NOT NULL in the database and therefore required by the API. If you do not have a value for this field, supply the database default value of `1/1/0001 12:00:00 AM` to meet the API requirements and ensure that the functionality occurs as expected.
|
|
49
49
|
* @type {string}
|
|
50
50
|
* @memberof SubEnrollmentRider
|
|
51
51
|
*/
|
|
@@ -57,7 +57,7 @@ export interface SubEnrollmentRider {
|
|
|
57
57
|
*/
|
|
58
58
|
'plan_ID': string;
|
|
59
59
|
/**
|
|
60
|
-
* References the SubenrollmentPlan.Plan_Start value in the parent table.
|
|
60
|
+
* References the SubenrollmentPlan.Plan_Start value in the parent table. Note: The database will apply a default value of `1/1/0001 12:00:00 AM` for this field if a value is not provided. This field is also marked as NOT NULL in the database and therefore required by the API. If you do not have a value for this field, supply the database default value of `1/1/0001 12:00:00 AM` to meet the API requirements and ensure that the functionality occurs as expected.
|
|
61
61
|
* @type {string}
|
|
62
62
|
* @memberof SubEnrollmentRider
|
|
63
63
|
*/
|
|
@@ -69,7 +69,7 @@ export interface SubEnrollmentRider {
|
|
|
69
69
|
*/
|
|
70
70
|
'benefit_Code': string;
|
|
71
71
|
/**
|
|
72
|
-
* Start date of Rider coverage.
|
|
72
|
+
* Start date of Rider coverage. Note: The database will apply a default value of `1/1/0001 12:00:00 AM` for this field if a value is not provided. This field is also marked as NOT NULL in the database and therefore required by the API. If you do not have a value for this field, supply the database default value of `1/1/0001 12:00:00 AM` to meet the API requirements and ensure that the functionality occurs as expected.
|
|
73
73
|
* @type {string}
|
|
74
74
|
* @memberof SubEnrollmentRider
|
|
75
75
|
*/
|
|
@@ -87,7 +87,7 @@ export interface SubEnrollmentRider {
|
|
|
87
87
|
*/
|
|
88
88
|
'employee_Contribution'?: number | null;
|
|
89
89
|
/**
|
|
90
|
-
* Indicates if the Emploee Contribution amount entered is a Pct or flat amount.
|
|
90
|
+
* Indicates if the Emploee Contribution amount entered is a Pct or flat amount. Note: The database will apply a default value of `False` for this field if a value is not provided. This field is also marked as NOT NULL in the database and therefore required by the API. If you do not have a value for this field, supply the database default value of `False` to meet the API requirements and ensure that the functionality occurs as expected.
|
|
91
91
|
* @type {boolean}
|
|
92
92
|
* @memberof SubEnrollmentRider
|
|
93
93
|
*/
|
|
@@ -117,37 +117,37 @@ export interface SubEnrollmentRider {
|
|
|
117
117
|
*/
|
|
118
118
|
'initial_Volume'?: number | null;
|
|
119
119
|
/**
|
|
120
|
-
* Indicates that the number from the \'Initial Volume\' field represents a percentage of the Member\'s salary. Salaries are found from a Member\'s \'Financial\' detail dropdown.
|
|
120
|
+
* Indicates that the number from the \'Initial Volume\' field represents a percentage of the Member\'s salary. Salaries are found from a Member\'s \'Financial\' detail dropdown. Note: The database will apply a default value of `False` for this field if a value is not provided. This field is also marked as NOT NULL in the database and therefore required by the API. If you do not have a value for this field, supply the database default value of `False` to meet the API requirements and ensure that the functionality occurs as expected.
|
|
121
121
|
* @type {boolean}
|
|
122
122
|
* @memberof SubEnrollmentRider
|
|
123
123
|
*/
|
|
124
124
|
'initial_Volume_Salary_Pct': boolean;
|
|
125
125
|
/**
|
|
126
|
-
*
|
|
126
|
+
* Member elected Daily Benefit Amount
|
|
127
127
|
* @type {number}
|
|
128
128
|
* @memberof SubEnrollmentRider
|
|
129
129
|
*/
|
|
130
130
|
'ltC_Daily_Benefit_Amount'?: number | null;
|
|
131
131
|
/**
|
|
132
|
-
*
|
|
132
|
+
* Lifetime Max Amount elected
|
|
133
133
|
* @type {number}
|
|
134
134
|
* @memberof SubEnrollmentRider
|
|
135
135
|
*/
|
|
136
136
|
'ltC_Lifetime_Max_Amount'?: number | null;
|
|
137
137
|
/**
|
|
138
|
-
*
|
|
138
|
+
* Lifetime Max Days elected
|
|
139
139
|
* @type {number}
|
|
140
140
|
* @memberof SubEnrollmentRider
|
|
141
141
|
*/
|
|
142
142
|
'ltC_Lifetime_Max_Days'?: number | null;
|
|
143
143
|
/**
|
|
144
|
-
*
|
|
144
|
+
* Lifetime Max Years elected
|
|
145
145
|
* @type {number}
|
|
146
146
|
* @memberof SubEnrollmentRider
|
|
147
147
|
*/
|
|
148
148
|
'ltC_Lifetime_Max_Years'?: number | null;
|
|
149
149
|
/**
|
|
150
|
-
*
|
|
150
|
+
* Member elected Monthly Benefit Amount
|
|
151
151
|
* @type {number}
|
|
152
152
|
* @memberof SubEnrollmentRider
|
|
153
153
|
*/
|
|
@@ -183,19 +183,19 @@ export interface SubEnrollmentRider {
|
|
|
183
183
|
*/
|
|
184
184
|
'update_User'?: string | null;
|
|
185
185
|
/**
|
|
186
|
-
* Billing setting indicating that the employee age is used in all calculations that are age based for this specific Rider.
|
|
186
|
+
* Billing setting indicating that the employee age is used in all calculations that are age based for this specific Rider. Note: The database will apply a default value of `False` for this field if a value is not provided. This field is also marked as NOT NULL in the database and therefore required by the API. If you do not have a value for this field, supply the database default value of `False` to meet the API requirements and ensure that the functionality occurs as expected.
|
|
187
187
|
* @type {boolean}
|
|
188
188
|
* @memberof SubEnrollmentRider
|
|
189
189
|
*/
|
|
190
190
|
'use_Employee_Age': boolean;
|
|
191
191
|
/**
|
|
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.
|
|
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. Note: The database will apply a default value of `False` for this field if a value is not provided. This field is also marked as NOT NULL in the database and therefore required by the API. If you do not have a value for this field, supply the database default value of `False` to meet the API requirements and ensure that the functionality occurs as expected.
|
|
193
193
|
* @type {boolean}
|
|
194
194
|
* @memberof SubEnrollmentRider
|
|
195
195
|
*/
|
|
196
196
|
'use_GI_Volume_Min_Max': boolean;
|
|
197
197
|
/**
|
|
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.
|
|
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. Note: The database will apply a default value of `False` for this field if a value is not provided. This field is also marked as NOT NULL in the database and therefore required by the API. If you do not have a value for this field, supply the database default value of `False` to meet the API requirements and ensure that the functionality occurs as expected.
|
|
199
199
|
* @type {boolean}
|
|
200
200
|
* @memberof SubEnrollmentRider
|
|
201
201
|
*/
|
package/models/subscribers.ts
CHANGED
|
@@ -183,13 +183,13 @@ export interface Subscribers {
|
|
|
183
183
|
*/
|
|
184
184
|
'salutation'?: string | null;
|
|
185
185
|
/**
|
|
186
|
-
*
|
|
186
|
+
* This holds the Subscriber ID of the subscriber that sponsored this subscriber.
|
|
187
187
|
* @type {string}
|
|
188
188
|
* @memberof Subscribers
|
|
189
189
|
*/
|
|
190
190
|
'sponsor_ID'?: string | null;
|
|
191
191
|
/**
|
|
192
|
-
*
|
|
192
|
+
* This identifies the relationship between the sponor and this subscriber.
|
|
193
193
|
* @type {string}
|
|
194
194
|
* @memberof Subscribers
|
|
195
195
|
*/
|
package/models/users.ts
CHANGED
|
@@ -27,7 +27,7 @@ export interface Users {
|
|
|
27
27
|
*/
|
|
28
28
|
'user_ID': string;
|
|
29
29
|
/**
|
|
30
|
-
* This option will lock the account out of the application. To unlock the account, uncheck the box.
|
|
30
|
+
* This option will lock the account out of the application. To unlock the account, uncheck the box. Note: The database will apply a default value of `False` for this field if a value is not provided. This field is also marked as NOT NULL in the database and therefore required by the API. If you do not have a value for this field, supply the database default value of `False` to meet the API requirements and ensure that the functionality occurs as expected.
|
|
31
31
|
* @type {boolean}
|
|
32
32
|
* @memberof Users
|
|
33
33
|
*/
|
|
@@ -45,13 +45,13 @@ export interface Users {
|
|
|
45
45
|
*/
|
|
46
46
|
'address2'?: string | null;
|
|
47
47
|
/**
|
|
48
|
-
* Grants the User administrative rights. No security area needs to be assigned. This User will have full rights to every aspect of the application.
|
|
48
|
+
* Grants the User administrative rights. No security area needs to be assigned. This User will have full rights to every aspect of the application. Note: The database will apply a default value of `False` for this field if a value is not provided. This field is also marked as NOT NULL in the database and therefore required by the API. If you do not have a value for this field, supply the database default value of `False` to meet the API requirements and ensure that the functionality occurs as expected.
|
|
49
49
|
* @type {boolean}
|
|
50
50
|
* @memberof Users
|
|
51
51
|
*/
|
|
52
52
|
'administrator': boolean;
|
|
53
53
|
/**
|
|
54
|
-
* This option enables logging based on the definitions provided within ‘User Log Message’.
|
|
54
|
+
* This option enables logging based on the definitions provided within ‘User Log Message’. Note: The database will apply a default value of `False` for this field if a value is not provided. This field is also marked as NOT NULL in the database and therefore required by the API. If you do not have a value for this field, supply the database default value of `False` to meet the API requirements and ensure that the functionality occurs as expected.
|
|
55
55
|
* @type {boolean}
|
|
56
56
|
* @memberof Users
|
|
57
57
|
*/
|
|
@@ -141,7 +141,7 @@ export interface Users {
|
|
|
141
141
|
*/
|
|
142
142
|
'home_Phone_Country_Code'?: string | null;
|
|
143
143
|
/**
|
|
144
|
-
* This option is informational only but can be used with a custom report.
|
|
144
|
+
* This option is informational only but can be used with a custom report. Note: The database will apply a default value of `False` for this field if a value is not provided. This field is also marked as NOT NULL in the database and therefore required by the API. If you do not have a value for this field, supply the database default value of `False` to meet the API requirements and ensure that the functionality occurs as expected.
|
|
145
145
|
* @type {boolean}
|
|
146
146
|
* @memberof Users
|
|
147
147
|
*/
|
|
@@ -213,7 +213,7 @@ export interface Users {
|
|
|
213
213
|
*/
|
|
214
214
|
'phone_Country_Code'?: string | null;
|
|
215
215
|
/**
|
|
216
|
-
* This option indicates that only one application can be opened using this login ID.
|
|
216
|
+
* This option indicates that only one application can be opened using this login ID. Note: The database will apply a default value of `False` for this field if a value is not provided. This field is also marked as NOT NULL in the database and therefore required by the API. If you do not have a value for this field, supply the database default value of `False` to meet the API requirements and ensure that the functionality occurs as expected.
|
|
217
217
|
* @type {boolean}
|
|
218
218
|
* @memberof Users
|
|
219
219
|
*/
|
|
@@ -243,7 +243,7 @@ export interface Users {
|
|
|
243
243
|
*/
|
|
244
244
|
'update_User'?: string | null;
|
|
245
245
|
/**
|
|
246
|
-
* Whether or not to use Windows Authentication to login
|
|
246
|
+
* Whether or not to use Windows Authentication to login Note: The database will apply a default value of `False` for this field if a value is not provided. This field is also marked as NOT NULL in the database and therefore required by the API. If you do not have a value for this field, supply the database default value of `False` to meet the API requirements and ensure that the functionality occurs as expected.
|
|
247
247
|
* @type {boolean}
|
|
248
248
|
* @memberof Users
|
|
249
249
|
*/
|
|
@@ -261,13 +261,13 @@ export interface Users {
|
|
|
261
261
|
*/
|
|
262
262
|
'user_Type'?: string | null;
|
|
263
263
|
/**
|
|
264
|
-
*
|
|
264
|
+
* This flag indicates that this user can change other VBA_User\'s passwords. Note: The database will apply a default value of `False` for this field if a value is not provided. This field is also marked as NOT NULL in the database and therefore required by the API. If you do not have a value for this field, supply the database default value of `False` to meet the API requirements and ensure that the functionality occurs as expected.
|
|
265
265
|
* @type {boolean}
|
|
266
266
|
* @memberof Users
|
|
267
267
|
*/
|
|
268
268
|
'vbA_Password_Reset': boolean;
|
|
269
269
|
/**
|
|
270
|
-
* Identifies that the User is a VBA User.
|
|
270
|
+
* Identifies that the User is a VBA User. Note: The database will apply a default value of `False` for this field if a value is not provided. This field is also marked as NOT NULL in the database and therefore required by the API. If you do not have a value for this field, supply the database default value of `False` to meet the API requirements and ensure that the functionality occurs as expected.
|
|
271
271
|
* @type {boolean}
|
|
272
272
|
* @memberof Users
|
|
273
273
|
*/
|
|
@@ -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 { VBAGroupContract } from './vbagroup-contract';
|
|
18
|
+
import { VBAProblemDetails } from './vbaproblem-details';
|
|
19
|
+
|
|
20
|
+
/**
|
|
21
|
+
*
|
|
22
|
+
* @export
|
|
23
|
+
* @interface VBAGroupContractListVBAResponse
|
|
24
|
+
*/
|
|
25
|
+
export interface VBAGroupContractListVBAResponse {
|
|
26
|
+
/**
|
|
27
|
+
*
|
|
28
|
+
* @type {Array<VBAGroupContract>}
|
|
29
|
+
* @memberof VBAGroupContractListVBAResponse
|
|
30
|
+
*/
|
|
31
|
+
'data'?: Array<VBAGroupContract> | null;
|
|
32
|
+
/**
|
|
33
|
+
*
|
|
34
|
+
* @type {VBAProblemDetails}
|
|
35
|
+
* @memberof VBAGroupContractListVBAResponse
|
|
36
|
+
*/
|
|
37
|
+
'error'?: VBAProblemDetails;
|
|
38
|
+
/**
|
|
39
|
+
*
|
|
40
|
+
* @type {Debug}
|
|
41
|
+
* @memberof VBAGroupContractListVBAResponse
|
|
42
|
+
*/
|
|
43
|
+
'debug'?: Debug;
|
|
44
|
+
}
|
|
45
|
+
|
|
@@ -0,0 +1,55 @@
|
|
|
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 { GroupContract } from './group-contract';
|
|
17
|
+
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @export
|
|
21
|
+
* @interface VBAGroupContract
|
|
22
|
+
*/
|
|
23
|
+
export interface VBAGroupContract {
|
|
24
|
+
/**
|
|
25
|
+
*
|
|
26
|
+
* @type {number}
|
|
27
|
+
* @memberof VBAGroupContract
|
|
28
|
+
*/
|
|
29
|
+
'total_Subscribers'?: number | null;
|
|
30
|
+
/**
|
|
31
|
+
*
|
|
32
|
+
* @type {number}
|
|
33
|
+
* @memberof VBAGroupContract
|
|
34
|
+
*/
|
|
35
|
+
'eligible_Subscribers'?: number | null;
|
|
36
|
+
/**
|
|
37
|
+
*
|
|
38
|
+
* @type {number}
|
|
39
|
+
* @memberof VBAGroupContract
|
|
40
|
+
*/
|
|
41
|
+
'total_Members'?: number | null;
|
|
42
|
+
/**
|
|
43
|
+
*
|
|
44
|
+
* @type {number}
|
|
45
|
+
* @memberof VBAGroupContract
|
|
46
|
+
*/
|
|
47
|
+
'eligible_Members'?: number | null;
|
|
48
|
+
/**
|
|
49
|
+
*
|
|
50
|
+
* @type {GroupContract}
|
|
51
|
+
* @memberof VBAGroupContract
|
|
52
|
+
*/
|
|
53
|
+
'groupContractDetail'?: GroupContract;
|
|
54
|
+
}
|
|
55
|
+
|