@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
|
@@ -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 CopyGroupDivision
|
|
21
|
+
*/
|
|
22
|
+
export interface CopyGroupDivision {
|
|
23
|
+
/**
|
|
24
|
+
* The owning Group
|
|
25
|
+
* @type {string}
|
|
26
|
+
* @memberof CopyGroupDivision
|
|
27
|
+
*/
|
|
28
|
+
'groupID'?: string | null;
|
|
29
|
+
/**
|
|
30
|
+
* The division from which values will be copied.
|
|
31
|
+
* @type {string}
|
|
32
|
+
* @memberof CopyGroupDivision
|
|
33
|
+
*/
|
|
34
|
+
'sourceDivisionID'?: string | null;
|
|
35
|
+
/**
|
|
36
|
+
* Name of the new divion
|
|
37
|
+
* @type {string}
|
|
38
|
+
* @memberof CopyGroupDivision
|
|
39
|
+
*/
|
|
40
|
+
'destinationDivisionID'?: string | null;
|
|
41
|
+
/**
|
|
42
|
+
* Flag indicating to copy this field or not. Default is false.
|
|
43
|
+
* @type {string}
|
|
44
|
+
* @memberof CopyGroupDivision
|
|
45
|
+
*/
|
|
46
|
+
'copyContracts'?: string | null;
|
|
47
|
+
/**
|
|
48
|
+
* Flag indicating to copy this field or not. Default is false.
|
|
49
|
+
* @type {string}
|
|
50
|
+
* @memberof CopyGroupDivision
|
|
51
|
+
*/
|
|
52
|
+
'copyPlans'?: string | null;
|
|
53
|
+
/**
|
|
54
|
+
* Flag indicating to copy this field or not. Default is false.
|
|
55
|
+
* @type {string}
|
|
56
|
+
* @memberof CopyGroupDivision
|
|
57
|
+
*/
|
|
58
|
+
'copyRiders'?: string | null;
|
|
59
|
+
/**
|
|
60
|
+
* Flag indicating to copy this field or not. Default is false.
|
|
61
|
+
* @type {string}
|
|
62
|
+
* @memberof CopyGroupDivision
|
|
63
|
+
*/
|
|
64
|
+
'copyAdditional'?: string | null;
|
|
65
|
+
/**
|
|
66
|
+
* Flag indicating to copy this field or not. Default is false.
|
|
67
|
+
* @type {string}
|
|
68
|
+
* @memberof CopyGroupDivision
|
|
69
|
+
*/
|
|
70
|
+
'copyClassOptions'?: string | null;
|
|
71
|
+
/**
|
|
72
|
+
* Flag indicating to copy this field or not. Default is false.
|
|
73
|
+
* @type {string}
|
|
74
|
+
* @memberof CopyGroupDivision
|
|
75
|
+
*/
|
|
76
|
+
'copyCommissions'?: string | null;
|
|
77
|
+
/**
|
|
78
|
+
* Flag indicating to copy this field or not. Default is false.
|
|
79
|
+
* @type {string}
|
|
80
|
+
* @memberof CopyGroupDivision
|
|
81
|
+
*/
|
|
82
|
+
'copyDisabilityOptions'?: string | null;
|
|
83
|
+
/**
|
|
84
|
+
* Flag indicating to copy this field or not. Default is false.
|
|
85
|
+
* @type {string}
|
|
86
|
+
* @memberof CopyGroupDivision
|
|
87
|
+
*/
|
|
88
|
+
'copyNetworksTiers'?: string | null;
|
|
89
|
+
/**
|
|
90
|
+
* Flag indicating to copy this field or not. Default is false.
|
|
91
|
+
* @type {string}
|
|
92
|
+
* @memberof CopyGroupDivision
|
|
93
|
+
*/
|
|
94
|
+
'copyPlanYears'?: string | null;
|
|
95
|
+
/**
|
|
96
|
+
* Flag indicating to copy this field or not. Default is false.
|
|
97
|
+
* @type {string}
|
|
98
|
+
* @memberof CopyGroupDivision
|
|
99
|
+
*/
|
|
100
|
+
'copyPremiums'?: string | null;
|
|
101
|
+
/**
|
|
102
|
+
* Flag indicating to copy this field or not. Default is false.
|
|
103
|
+
* @type {string}
|
|
104
|
+
* @memberof CopyGroupDivision
|
|
105
|
+
*/
|
|
106
|
+
'copySelfAdmin'?: string | null;
|
|
107
|
+
/**
|
|
108
|
+
* Flag indicating to copy this field or not. Default is false.
|
|
109
|
+
* @type {string}
|
|
110
|
+
* @memberof CopyGroupDivision
|
|
111
|
+
*/
|
|
112
|
+
'copyStudentAge'?: string | null;
|
|
113
|
+
/**
|
|
114
|
+
* Flag indicating to copy this field or not. Default is false.
|
|
115
|
+
* @type {string}
|
|
116
|
+
* @memberof CopyGroupDivision
|
|
117
|
+
*/
|
|
118
|
+
'copyVolumeDetails'?: string | null;
|
|
119
|
+
/**
|
|
120
|
+
* Flag indicating to copy this field or not. Default is false.
|
|
121
|
+
* @type {string}
|
|
122
|
+
* @memberof CopyGroupDivision
|
|
123
|
+
*/
|
|
124
|
+
'copyIDCodes'?: string | null;
|
|
125
|
+
/**
|
|
126
|
+
* The requesting user id.
|
|
127
|
+
* @type {string}
|
|
128
|
+
* @memberof CopyGroupDivision
|
|
129
|
+
*/
|
|
130
|
+
'userID'?: string | null;
|
|
131
|
+
}
|
|
132
|
+
|
|
@@ -21,37 +21,37 @@
|
|
|
21
21
|
*/
|
|
22
22
|
export interface CostContainZelisExCode {
|
|
23
23
|
/**
|
|
24
|
-
*
|
|
24
|
+
* An Ex Code that is being used for Zelis
|
|
25
25
|
* @type {string}
|
|
26
26
|
* @memberof CostContainZelisExCode
|
|
27
27
|
*/
|
|
28
28
|
'ex_Code': string;
|
|
29
29
|
/**
|
|
30
|
-
*
|
|
30
|
+
* Date record was first added to the system
|
|
31
31
|
* @type {string}
|
|
32
32
|
* @memberof CostContainZelisExCode
|
|
33
33
|
*/
|
|
34
34
|
'entry_Date'?: string;
|
|
35
35
|
/**
|
|
36
|
-
*
|
|
36
|
+
* User that first added the record to the system
|
|
37
37
|
* @type {string}
|
|
38
38
|
* @memberof CostContainZelisExCode
|
|
39
39
|
*/
|
|
40
40
|
'entry_User'?: string | null;
|
|
41
41
|
/**
|
|
42
|
-
*
|
|
42
|
+
* When the Ex Code is present on the claim, when this is sent to Zelis, send it as In Network 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.
|
|
43
43
|
* @type {boolean}
|
|
44
44
|
* @memberof CostContainZelisExCode
|
|
45
45
|
*/
|
|
46
46
|
'in_Network': boolean;
|
|
47
47
|
/**
|
|
48
|
-
*
|
|
48
|
+
* Date the record was last updated in the system
|
|
49
49
|
* @type {string}
|
|
50
50
|
* @memberof CostContainZelisExCode
|
|
51
51
|
*/
|
|
52
52
|
'update_Date'?: string;
|
|
53
53
|
/**
|
|
54
|
-
*
|
|
54
|
+
* User that last updated the record in the system
|
|
55
55
|
* @type {string}
|
|
56
56
|
* @memberof CostContainZelisExCode
|
|
57
57
|
*/
|
|
@@ -18,25 +18,25 @@ import { Volume } from './volume';
|
|
|
18
18
|
/**
|
|
19
19
|
*
|
|
20
20
|
* @export
|
|
21
|
-
* @interface
|
|
21
|
+
* @interface GroupVolumeBenefitConfig
|
|
22
22
|
*/
|
|
23
|
-
export interface
|
|
23
|
+
export interface GroupVolumeBenefitConfig {
|
|
24
24
|
/**
|
|
25
25
|
*
|
|
26
26
|
* @type {string}
|
|
27
|
-
* @memberof
|
|
27
|
+
* @memberof GroupVolumeBenefitConfig
|
|
28
28
|
*/
|
|
29
29
|
'benefit_Code'?: string | null;
|
|
30
30
|
/**
|
|
31
31
|
*
|
|
32
32
|
* @type {string}
|
|
33
|
-
* @memberof
|
|
33
|
+
* @memberof GroupVolumeBenefitConfig
|
|
34
34
|
*/
|
|
35
35
|
'benefit_Description'?: string | null;
|
|
36
36
|
/**
|
|
37
37
|
*
|
|
38
38
|
* @type {Array<Volume>}
|
|
39
|
-
* @memberof
|
|
39
|
+
* @memberof GroupVolumeBenefitConfig
|
|
40
40
|
*/
|
|
41
41
|
'volumes'?: Array<Volume> | null;
|
|
42
42
|
}
|
|
@@ -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 { GroupVolumePlanConfig } from './group-volume-plan-config';
|
|
17
|
+
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @export
|
|
21
|
+
* @interface GroupVolumeDivisionConfig
|
|
22
|
+
*/
|
|
23
|
+
export interface GroupVolumeDivisionConfig {
|
|
24
|
+
/**
|
|
25
|
+
*
|
|
26
|
+
* @type {string}
|
|
27
|
+
* @memberof GroupVolumeDivisionConfig
|
|
28
|
+
*/
|
|
29
|
+
'division_ID'?: string | null;
|
|
30
|
+
/**
|
|
31
|
+
*
|
|
32
|
+
* @type {string}
|
|
33
|
+
* @memberof GroupVolumeDivisionConfig
|
|
34
|
+
*/
|
|
35
|
+
'division_Name'?: string | null;
|
|
36
|
+
/**
|
|
37
|
+
*
|
|
38
|
+
* @type {Array<GroupVolumePlanConfig>}
|
|
39
|
+
* @memberof GroupVolumeDivisionConfig
|
|
40
|
+
*/
|
|
41
|
+
'planConfigs'?: Array<GroupVolumePlanConfig> | null;
|
|
42
|
+
}
|
|
43
|
+
|
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
*/
|
|
14
14
|
|
|
15
15
|
|
|
16
|
-
import {
|
|
16
|
+
import { GroupVolumeDivisionConfig } from './group-volume-division-config';
|
|
17
17
|
|
|
18
18
|
/**
|
|
19
19
|
*
|
|
@@ -35,9 +35,9 @@ export interface GroupVolumeNested {
|
|
|
35
35
|
'group_Name'?: string | null;
|
|
36
36
|
/**
|
|
37
37
|
*
|
|
38
|
-
* @type {Array<
|
|
38
|
+
* @type {Array<GroupVolumeDivisionConfig>}
|
|
39
39
|
* @memberof GroupVolumeNested
|
|
40
40
|
*/
|
|
41
|
-
'divisionConfigs'?: Array<
|
|
41
|
+
'divisionConfigs'?: Array<GroupVolumeDivisionConfig> | null;
|
|
42
42
|
}
|
|
43
43
|
|
|
@@ -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 { GroupVolumeBenefitConfig } from './group-volume-benefit-config';
|
|
17
|
+
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @export
|
|
21
|
+
* @interface GroupVolumePlanConfig
|
|
22
|
+
*/
|
|
23
|
+
export interface GroupVolumePlanConfig {
|
|
24
|
+
/**
|
|
25
|
+
*
|
|
26
|
+
* @type {string}
|
|
27
|
+
* @memberof GroupVolumePlanConfig
|
|
28
|
+
*/
|
|
29
|
+
'plan_ID'?: string | null;
|
|
30
|
+
/**
|
|
31
|
+
*
|
|
32
|
+
* @type {string}
|
|
33
|
+
* @memberof GroupVolumePlanConfig
|
|
34
|
+
*/
|
|
35
|
+
'plan_Description'?: string | null;
|
|
36
|
+
/**
|
|
37
|
+
*
|
|
38
|
+
* @type {Array<GroupVolumeBenefitConfig>}
|
|
39
|
+
* @memberof GroupVolumePlanConfig
|
|
40
|
+
*/
|
|
41
|
+
'benefitConfigs'?: Array<GroupVolumeBenefitConfig> | null;
|
|
42
|
+
}
|
|
43
|
+
|
package/models/groups.ts
CHANGED
|
@@ -51,7 +51,7 @@ export interface Groups {
|
|
|
51
51
|
*/
|
|
52
52
|
'address2'?: string | null;
|
|
53
53
|
/**
|
|
54
|
-
* Indicates if this Group administers COBRA.
|
|
54
|
+
* Indicates if this Group administers COBRA. 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 Groups
|
|
57
57
|
*/
|
|
@@ -63,19 +63,19 @@ export interface Groups {
|
|
|
63
63
|
*/
|
|
64
64
|
'adult_Age'?: number | null;
|
|
65
65
|
/**
|
|
66
|
-
* Notes if the claims for this Group should be Advice_To_Pay (flagged as unpaid when processed).
|
|
66
|
+
* Notes if the claims for this Group should be Advice_To_Pay (flagged as unpaid when processed). 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.
|
|
67
67
|
* @type {boolean}
|
|
68
68
|
* @memberof Groups
|
|
69
69
|
*/
|
|
70
70
|
'advice_To_Pay': boolean;
|
|
71
71
|
/**
|
|
72
|
-
* Flag if adjudication should apply an Ex Code to a claim for this Group.
|
|
72
|
+
* Flag if adjudication should apply an Ex Code to a claim for this Group. 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.
|
|
73
73
|
* @type {boolean}
|
|
74
74
|
* @memberof Groups
|
|
75
75
|
*/
|
|
76
76
|
'apply_Ex_Code': boolean;
|
|
77
77
|
/**
|
|
78
|
-
* Notes if this group allows Auth Required claims edit to be overridden and paid.
|
|
78
|
+
* Notes if this group allows Auth Required claims edit to be overridden and paid. 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.
|
|
79
79
|
* @type {boolean}
|
|
80
80
|
* @memberof Groups
|
|
81
81
|
*/
|
|
@@ -147,7 +147,7 @@ export interface Groups {
|
|
|
147
147
|
*/
|
|
148
148
|
'claim_Days_Allowed'?: number | null;
|
|
149
149
|
/**
|
|
150
|
-
* Notes that this group calculates copay max (based on plan configuration) by provider rather than across the entire plan.
|
|
150
|
+
* Notes that this group calculates copay max (based on plan configuration) by provider rather than across the entire plan. 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.
|
|
151
151
|
* @type {boolean}
|
|
152
152
|
* @memberof Groups
|
|
153
153
|
*/
|
|
@@ -213,13 +213,13 @@ export interface Groups {
|
|
|
213
213
|
*/
|
|
214
214
|
'default_Invoice_ReportDefinition_Key'?: number | null;
|
|
215
215
|
/**
|
|
216
|
-
* Process by Disability Date can be defined here to apply to all claims for this group rather than on a claim by claim basis (acts as a default).
|
|
216
|
+
* Process by Disability Date can be defined here to apply to all claims for this group rather than on a claim by claim basis (acts as a default). 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 Groups
|
|
219
219
|
*/
|
|
220
220
|
'default_Process_by_Disability_Date': boolean;
|
|
221
221
|
/**
|
|
222
|
-
* Roll Up Waiting Period can be defined here to apply to all claims for this group rather than on a claim by claim basis (acts as a default).
|
|
222
|
+
* Roll Up Waiting Period can be defined here to apply to all claims for this group rather than on a claim by claim basis (acts as a default). 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.
|
|
223
223
|
* @type {boolean}
|
|
224
224
|
* @memberof Groups
|
|
225
225
|
*/
|
|
@@ -231,7 +231,7 @@ export interface Groups {
|
|
|
231
231
|
*/
|
|
232
232
|
'disability_Pay_Through_Day'?: number | null;
|
|
233
233
|
/**
|
|
234
|
-
*
|
|
234
|
+
* This flag indicates that the Group COBRA premium will not be automatically populated during member disenrollment. 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.
|
|
235
235
|
* @type {boolean}
|
|
236
236
|
* @memberof Groups
|
|
237
237
|
*/
|
|
@@ -255,7 +255,7 @@ export interface Groups {
|
|
|
255
255
|
*/
|
|
256
256
|
'distribution_Payor_ID'?: string | null;
|
|
257
257
|
/**
|
|
258
|
-
* Notes if this group allows Duplicate Claims to be overridden to be paid.
|
|
258
|
+
* Notes if this group allows Duplicate Claims to be overridden to be paid. 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.
|
|
259
259
|
* @type {boolean}
|
|
260
260
|
* @memberof Groups
|
|
261
261
|
*/
|
|
@@ -333,19 +333,19 @@ export interface Groups {
|
|
|
333
333
|
*/
|
|
334
334
|
'group_Account'?: number | null;
|
|
335
335
|
/**
|
|
336
|
-
* No longer in use.
|
|
336
|
+
* No longer in use. 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.
|
|
337
337
|
* @type {boolean}
|
|
338
338
|
* @memberof Groups
|
|
339
339
|
*/
|
|
340
340
|
'individual_Billing': boolean;
|
|
341
341
|
/**
|
|
342
|
-
* No longer in use.
|
|
342
|
+
* No longer in use. 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.
|
|
343
343
|
* @type {boolean}
|
|
344
344
|
* @memberof Groups
|
|
345
345
|
*/
|
|
346
346
|
'individual_Cycle': boolean;
|
|
347
347
|
/**
|
|
348
|
-
* No longer in use.
|
|
348
|
+
* No longer in use. 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.
|
|
349
349
|
* @type {boolean}
|
|
350
350
|
* @memberof Groups
|
|
351
351
|
*/
|
|
@@ -393,7 +393,7 @@ export interface Groups {
|
|
|
393
393
|
*/
|
|
394
394
|
'notes'?: string | null;
|
|
395
395
|
/**
|
|
396
|
-
* Information field used in custom client reporting.
|
|
396
|
+
* Information field used in custom client reporting. 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.
|
|
397
397
|
* @type {boolean}
|
|
398
398
|
* @memberof Groups
|
|
399
399
|
*/
|
|
@@ -411,7 +411,7 @@ export interface Groups {
|
|
|
411
411
|
*/
|
|
412
412
|
'paid_Through'?: string | null;
|
|
413
413
|
/**
|
|
414
|
-
* Notes if this Group is Paperless (this overrides the individual member settings from VBAGateway). Used in process automation.
|
|
414
|
+
* Notes if this Group is Paperless (this overrides the individual member settings from VBAGateway). Used in process automation. 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.
|
|
415
415
|
* @type {boolean}
|
|
416
416
|
* @memberof Groups
|
|
417
417
|
*/
|
|
@@ -441,7 +441,7 @@ export interface Groups {
|
|
|
441
441
|
*/
|
|
442
442
|
'phone_Country_Code'?: string | null;
|
|
443
443
|
/**
|
|
444
|
-
* Information field used in custom client reporting.
|
|
444
|
+
* Information field used in custom client reporting. 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.
|
|
445
445
|
* @type {boolean}
|
|
446
446
|
* @memberof Groups
|
|
447
447
|
*/
|
|
@@ -459,7 +459,7 @@ export interface Groups {
|
|
|
459
459
|
*/
|
|
460
460
|
'producer'?: string | null;
|
|
461
461
|
/**
|
|
462
|
-
* Notes if the disability deductions should be prorated during adjudication.
|
|
462
|
+
* Notes if the disability deductions should be prorated during adjudication. 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.
|
|
463
463
|
* @type {boolean}
|
|
464
464
|
* @memberof Groups
|
|
465
465
|
*/
|
|
@@ -531,13 +531,13 @@ export interface Groups {
|
|
|
531
531
|
*/
|
|
532
532
|
'renewal_Date'?: string | null;
|
|
533
533
|
/**
|
|
534
|
-
* Notes if this group has Self-Admin billing.
|
|
534
|
+
* Notes if this group has Self-Admin billing. 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.
|
|
535
535
|
* @type {boolean}
|
|
536
536
|
* @memberof Groups
|
|
537
537
|
*/
|
|
538
538
|
'self_Admin': boolean;
|
|
539
539
|
/**
|
|
540
|
-
* Indicates if the system should calculate the Due Date on an invoice based on Billing_Due_Date settings. By default the due date is the \"Bill Thru\" on an invoice, this gives the option to change that calculation.
|
|
540
|
+
* Indicates if the system should calculate the Due Date on an invoice based on Billing_Due_Date settings. By default the due date is the \"Bill Thru\" on an invoice, this gives the option to change that calculation. 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.
|
|
541
541
|
* @type {boolean}
|
|
542
542
|
* @memberof Groups
|
|
543
543
|
*/
|
package/models/idcard-request.ts
CHANGED
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
*/
|
|
22
22
|
export interface IDCardRequest {
|
|
23
23
|
/**
|
|
24
|
-
* Key value of the ID Card request
|
|
24
|
+
* Key value of the ID Card request Note: The database will apply a default value of `0` 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 `0` to meet the API requirements and ensure that the functionality occurs as expected.
|
|
25
25
|
* @type {number}
|
|
26
26
|
* @memberof IDCardRequest
|
|
27
27
|
*/
|
|
@@ -33,7 +33,7 @@ export interface IDCardRequest {
|
|
|
33
33
|
*/
|
|
34
34
|
'as_Of_Date'?: string | null;
|
|
35
35
|
/**
|
|
36
|
-
*
|
|
36
|
+
* Reason indicating why the ID Card Request was cancelled
|
|
37
37
|
* @type {string}
|
|
38
38
|
* @memberof IDCardRequest
|
|
39
39
|
*/
|
|
@@ -81,7 +81,7 @@ export interface IDCardRequest {
|
|
|
81
81
|
*/
|
|
82
82
|
'member_Seq'?: string | null;
|
|
83
83
|
/**
|
|
84
|
-
* Flag indicating the ID card request was for a renewal
|
|
84
|
+
* Flag indicating the ID card request was for a renewal 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.
|
|
85
85
|
* @type {boolean}
|
|
86
86
|
* @memberof IDCardRequest
|
|
87
87
|
*/
|
package/models/index.ts
CHANGED
|
@@ -61,7 +61,6 @@ export * from './benefit-category-vbaresponse';
|
|
|
61
61
|
export * from './benefit-codes';
|
|
62
62
|
export * from './benefit-codes-list-vbaresponse';
|
|
63
63
|
export * from './benefit-codes-vbaresponse';
|
|
64
|
-
export * from './benefit-config';
|
|
65
64
|
export * from './benefit-diag-codes';
|
|
66
65
|
export * from './benefit-diag-codes-list-vbaresponse';
|
|
67
66
|
export * from './benefit-diag-codes-vbaresponse';
|
|
@@ -618,7 +617,12 @@ export * from './commission-rate-cluster-rate';
|
|
|
618
617
|
export * from './commission-rate-cluster-rate-list-vbaresponse';
|
|
619
618
|
export * from './commission-rate-cluster-rate-vbaresponse';
|
|
620
619
|
export * from './commission-rate-cluster-vbaresponse';
|
|
620
|
+
export * from './commission-rate-division-config';
|
|
621
621
|
export * from './commission-rate-list-vbaresponse';
|
|
622
|
+
export * from './commission-rate-nested';
|
|
623
|
+
export * from './commission-rate-nested-list-vbaresponse';
|
|
624
|
+
export * from './commission-rate-plan-config';
|
|
625
|
+
export * from './commission-rate-rate';
|
|
622
626
|
export * from './commission-rate-subscriber';
|
|
623
627
|
export * from './commission-rate-subscriber-list-vbaresponse';
|
|
624
628
|
export * from './commission-rate-subscriber-vbaresponse';
|
|
@@ -675,6 +679,7 @@ export * from './contact-vbaresponse';
|
|
|
675
679
|
export * from './contribution-schedule';
|
|
676
680
|
export * from './contribution-schedule-list-vbaresponse';
|
|
677
681
|
export * from './contribution-schedule-vbaresponse';
|
|
682
|
+
export * from './copy-group-division';
|
|
678
683
|
export * from './cost-contain-context4-case-index';
|
|
679
684
|
export * from './cost-contain-context4-case-index-list-vbaresponse';
|
|
680
685
|
export * from './cost-contain-context4-case-index-vbaresponse';
|
|
@@ -829,7 +834,6 @@ export * from './diagnostic-code-vbaresponse';
|
|
|
829
834
|
export * from './disability-plan-limit';
|
|
830
835
|
export * from './disability-plan-limit-list-vbaresponse';
|
|
831
836
|
export * from './disability-plan-limit-vbaresponse';
|
|
832
|
-
export * from './division-config';
|
|
833
837
|
export * from './drug-code';
|
|
834
838
|
export * from './drug-code-list-vbaresponse';
|
|
835
839
|
export * from './drug-code-unit';
|
|
@@ -1159,9 +1163,12 @@ export * from './group-vbaplan-type-subscriber-id';
|
|
|
1159
1163
|
export * from './group-vbaplan-type-subscriber-idlist-vbaresponse';
|
|
1160
1164
|
export * from './group-vbaplan-type-subscriber-idvbaresponse';
|
|
1161
1165
|
export * from './group-volume';
|
|
1166
|
+
export * from './group-volume-benefit-config';
|
|
1167
|
+
export * from './group-volume-division-config';
|
|
1162
1168
|
export * from './group-volume-list-vbaresponse';
|
|
1163
1169
|
export * from './group-volume-nested';
|
|
1164
1170
|
export * from './group-volume-nested-list-vbaresponse';
|
|
1171
|
+
export * from './group-volume-plan-config';
|
|
1165
1172
|
export * from './group-volume-vbaresponse';
|
|
1166
1173
|
export * from './groups';
|
|
1167
1174
|
export * from './groups-list-vbaresponse';
|
|
@@ -1508,7 +1515,6 @@ export * from './plan-benefits-procedures';
|
|
|
1508
1515
|
export * from './plan-benefits-procedures-list-vbaresponse';
|
|
1509
1516
|
export * from './plan-benefits-procedures-vbaresponse';
|
|
1510
1517
|
export * from './plan-benefits-vbaresponse';
|
|
1511
|
-
export * from './plan-config';
|
|
1512
1518
|
export * from './plan-copy';
|
|
1513
1519
|
export * from './plan-diagnosis-age';
|
|
1514
1520
|
export * from './plan-diagnosis-age-list-vbaresponse';
|
|
@@ -1628,11 +1634,14 @@ export * from './prem-rate-age-type';
|
|
|
1628
1634
|
export * from './prem-rate-age-type-list-vbaresponse';
|
|
1629
1635
|
export * from './prem-rate-age-type-vbaresponse';
|
|
1630
1636
|
export * from './prem-rate-basis';
|
|
1637
|
+
export * from './prem-rate-basis-config';
|
|
1631
1638
|
export * from './prem-rate-basis-list-vbaresponse';
|
|
1632
1639
|
export * from './prem-rate-basis-vbaresponse';
|
|
1633
1640
|
export * from './prem-rate-category';
|
|
1641
|
+
export * from './prem-rate-category-config';
|
|
1634
1642
|
export * from './prem-rate-category-list-vbaresponse';
|
|
1635
1643
|
export * from './prem-rate-category-vbaresponse';
|
|
1644
|
+
export * from './prem-rate-division-config';
|
|
1636
1645
|
export * from './prem-rate-exclude';
|
|
1637
1646
|
export * from './prem-rate-exclude-list-vbaresponse';
|
|
1638
1647
|
export * from './prem-rate-exclude-vbaresponse';
|
|
@@ -1646,6 +1655,8 @@ export * from './prem-rate-min-max-detail-list-vbaresponse';
|
|
|
1646
1655
|
export * from './prem-rate-min-max-detail-vbaresponse';
|
|
1647
1656
|
export * from './prem-rate-min-max-list-vbaresponse';
|
|
1648
1657
|
export * from './prem-rate-min-max-vbaresponse';
|
|
1658
|
+
export * from './prem-rate-nested';
|
|
1659
|
+
export * from './prem-rate-nested-list-vbaresponse';
|
|
1649
1660
|
export * from './prem-rate-pace';
|
|
1650
1661
|
export * from './prem-rate-pace-list-vbaresponse';
|
|
1651
1662
|
export * from './prem-rate-pace-type';
|
|
@@ -1655,6 +1666,8 @@ export * from './prem-rate-pace-vbaresponse';
|
|
|
1655
1666
|
export * from './prem-rate-payee';
|
|
1656
1667
|
export * from './prem-rate-payee-list-vbaresponse';
|
|
1657
1668
|
export * from './prem-rate-payee-vbaresponse';
|
|
1669
|
+
export * from './prem-rate-plan-config';
|
|
1670
|
+
export * from './prem-rate-rate';
|
|
1658
1671
|
export * from './prem-rate-vbaresponse';
|
|
1659
1672
|
export * from './prem-rate-zip';
|
|
1660
1673
|
export * from './prem-rate-zip-list-vbaresponse';
|
|
@@ -2170,6 +2183,8 @@ export * from './vbagateway-subscription-detail-list-vbaresponse';
|
|
|
2170
2183
|
export * from './vbagateway-subscription-detail-vbaresponse';
|
|
2171
2184
|
export * from './vbagateway-subscription-list-vbaresponse';
|
|
2172
2185
|
export * from './vbagateway-subscription-vbaresponse';
|
|
2186
|
+
export * from './vbagroup-contract';
|
|
2187
|
+
export * from './vbagroup-contract-list-vbaresponse';
|
|
2173
2188
|
export * from './vbainterface';
|
|
2174
2189
|
export * from './vbainterface-idcode';
|
|
2175
2190
|
export * from './vbainterface-idcode-list-vbaresponse';
|
|
@@ -45,13 +45,13 @@ export interface MemEnrollmentPlan {
|
|
|
45
45
|
*/
|
|
46
46
|
'division_ID': string;
|
|
47
47
|
/**
|
|
48
|
-
* References the Subenrollment.Group_Coverage_Start value in the parent table.
|
|
48
|
+
* References the Subenrollment.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.
|
|
49
49
|
* @type {string}
|
|
50
50
|
* @memberof MemEnrollmentPlan
|
|
51
51
|
*/
|
|
52
52
|
'group_Coverage_Start': string;
|
|
53
53
|
/**
|
|
54
|
-
* References the Subenrollment.Start_Date value in the parent table.
|
|
54
|
+
* References the Subenrollment.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.
|
|
55
55
|
* @type {string}
|
|
56
56
|
* @memberof MemEnrollmentPlan
|
|
57
57
|
*/
|
|
@@ -63,7 +63,7 @@ export interface MemEnrollmentPlan {
|
|
|
63
63
|
*/
|
|
64
64
|
'plan_ID': string;
|
|
65
65
|
/**
|
|
66
|
-
* Start date of the Plan coverage.
|
|
66
|
+
* Start date of the Plan 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.
|
|
67
67
|
* @type {string}
|
|
68
68
|
* @memberof MemEnrollmentPlan
|
|
69
69
|
*/
|
|
@@ -87,31 +87,31 @@ export interface MemEnrollmentPlan {
|
|
|
87
87
|
*/
|
|
88
88
|
'entry_User'?: string | null;
|
|
89
89
|
/**
|
|
90
|
-
*
|
|
90
|
+
* Member elected Daily Benefit Amount
|
|
91
91
|
* @type {number}
|
|
92
92
|
* @memberof MemEnrollmentPlan
|
|
93
93
|
*/
|
|
94
94
|
'ltC_Daily_Benefit_Amount'?: number | null;
|
|
95
95
|
/**
|
|
96
|
-
*
|
|
96
|
+
* Lifetime Max Amount elected
|
|
97
97
|
* @type {number}
|
|
98
98
|
* @memberof MemEnrollmentPlan
|
|
99
99
|
*/
|
|
100
100
|
'ltC_Lifetime_Max_Amount'?: number | null;
|
|
101
101
|
/**
|
|
102
|
-
*
|
|
102
|
+
* Lifetime Max Days elected
|
|
103
103
|
* @type {number}
|
|
104
104
|
* @memberof MemEnrollmentPlan
|
|
105
105
|
*/
|
|
106
106
|
'ltC_Lifetime_Max_Days'?: number | null;
|
|
107
107
|
/**
|
|
108
|
-
*
|
|
108
|
+
* Lifetime Max Years elected
|
|
109
109
|
* @type {number}
|
|
110
110
|
* @memberof MemEnrollmentPlan
|
|
111
111
|
*/
|
|
112
112
|
'ltC_Lifetime_Max_Years'?: number | null;
|
|
113
113
|
/**
|
|
114
|
-
*
|
|
114
|
+
* Member elected Monthly Benefit Amount
|
|
115
115
|
* @type {number}
|
|
116
116
|
* @memberof MemEnrollmentPlan
|
|
117
117
|
*/
|
|
@@ -141,7 +141,7 @@ export interface MemEnrollmentPlan {
|
|
|
141
141
|
*/
|
|
142
142
|
'update_User'?: string | null;
|
|
143
143
|
/**
|
|
144
|
-
* Indicates if this enrollment plan record should calculate the Dollar_Amount value through the Group leve Volume settings rather than use the value stored in Dollar_Amount.
|
|
144
|
+
* Indicates if this enrollment plan record should calculate the Dollar_Amount value through the Group leve Volume settings rather than use the value stored in Dollar_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.
|
|
145
145
|
* @type {boolean}
|
|
146
146
|
* @memberof MemEnrollmentPlan
|
|
147
147
|
*/
|