@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.
@@ -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 { DayInterval } from './day-interval';
17
+ import { Debug } from './debug';
18
+ import { VBAProblemDetails } from './vbaproblem-details';
19
+
20
+ /**
21
+ *
22
+ * @export
23
+ * @interface DayIntervalVBAResponse
24
+ */
25
+ export interface DayIntervalVBAResponse {
26
+ /**
27
+ *
28
+ * @type {DayInterval}
29
+ * @memberof DayIntervalVBAResponse
30
+ */
31
+ 'data'?: DayInterval;
32
+ /**
33
+ *
34
+ * @type {VBAProblemDetails}
35
+ * @memberof DayIntervalVBAResponse
36
+ */
37
+ 'error'?: VBAProblemDetails;
38
+ /**
39
+ *
40
+ * @type {Debug}
41
+ * @memberof DayIntervalVBAResponse
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 DayInterval
21
+ */
22
+ export interface DayInterval {
23
+ /**
24
+ * Year of the date or interval used in internal date calculations
25
+ * @type {number}
26
+ * @memberof DayInterval
27
+ */
28
+ 'interval_Year': number;
29
+ /**
30
+ * Month of the date or interval used in internal date calculations
31
+ * @type {number}
32
+ * @memberof DayInterval
33
+ */
34
+ 'interval_Month': number;
35
+ /**
36
+ * Day of the date or interval used in internal date calculations
37
+ * @type {number}
38
+ * @memberof DayInterval
39
+ */
40
+ 'interval_Day': number;
41
+ /**
42
+ * Date and time stamp of the beginning of the specified day
43
+ * @type {string}
44
+ * @memberof DayInterval
45
+ */
46
+ 'day_From_Date'?: string | null;
47
+ /**
48
+ * Full name of the day of the week
49
+ * @type {string}
50
+ * @memberof DayInterval
51
+ */
52
+ 'day_Name'?: string | null;
53
+ /**
54
+ * Abbreviated name of the day of the week
55
+ * @type {string}
56
+ * @memberof DayInterval
57
+ */
58
+ 'day_Short_Name'?: string | null;
59
+ /**
60
+ * Date and time stamp of the end of the specified day
61
+ * @type {string}
62
+ * @memberof DayInterval
63
+ */
64
+ 'day_Thru_Date'?: string | null;
65
+ /**
66
+ * Date record was first added to the system
67
+ * @type {string}
68
+ * @memberof DayInterval
69
+ */
70
+ 'entry_Date'?: string;
71
+ /**
72
+ * User that first added the record to the system
73
+ * @type {string}
74
+ * @memberof DayInterval
75
+ */
76
+ 'entry_User'?: string | null;
77
+ /**
78
+ * Bit indicating if the specified day falls on recognized holiday
79
+ * @type {boolean}
80
+ * @memberof DayInterval
81
+ */
82
+ 'holiday': boolean;
83
+ /**
84
+ * First day of the month containing the date specified
85
+ * @type {string}
86
+ * @memberof DayInterval
87
+ */
88
+ 'month_From_Date'?: string | null;
89
+ /**
90
+ * Last day of the month containing the date specified
91
+ * @type {string}
92
+ * @memberof DayInterval
93
+ */
94
+ 'month_Thru_Date'?: string | null;
95
+ /**
96
+ * Number indicating the quarter containing the date specified
97
+ * @type {number}
98
+ * @memberof DayInterval
99
+ */
100
+ 'quarter'?: number | null;
101
+ /**
102
+ * First day of the quarter containing the date specified
103
+ * @type {string}
104
+ * @memberof DayInterval
105
+ */
106
+ 'quarter_From_Date'?: string | null;
107
+ /**
108
+ * Last day of the quarter containing the date specified
109
+ * @type {string}
110
+ * @memberof DayInterval
111
+ */
112
+ 'quarter_Thru_Date'?: string | null;
113
+ /**
114
+ * Date the record was last updated in the system
115
+ * @type {string}
116
+ * @memberof DayInterval
117
+ */
118
+ 'update_Date'?: string;
119
+ /**
120
+ * User that last updated the record in the system
121
+ * @type {string}
122
+ * @memberof DayInterval
123
+ */
124
+ 'update_User'?: string | null;
125
+ /**
126
+ * Number of the day of the week where Sunday is 1
127
+ * @type {number}
128
+ * @memberof DayInterval
129
+ */
130
+ 'week_Day'?: number | null;
131
+ /**
132
+ * Bit indicating if the specified day falls on the weekend
133
+ * @type {boolean}
134
+ * @memberof DayInterval
135
+ */
136
+ 'weekend'?: boolean | null;
137
+ /**
138
+ * Sequence number used for simple date comparisons
139
+ * @type {number}
140
+ * @memberof DayInterval
141
+ */
142
+ 'yearMonthDay_Seq'?: number | null;
143
+ }
144
+
@@ -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 { PlanConfig } from './plan-config';
17
+
18
+ /**
19
+ *
20
+ * @export
21
+ * @interface DivisionConfig
22
+ */
23
+ export interface DivisionConfig {
24
+ /**
25
+ *
26
+ * @type {string}
27
+ * @memberof DivisionConfig
28
+ */
29
+ 'division_ID'?: string | null;
30
+ /**
31
+ *
32
+ * @type {string}
33
+ * @memberof DivisionConfig
34
+ */
35
+ 'division_Name'?: string | null;
36
+ /**
37
+ *
38
+ * @type {Array<PlanConfig>}
39
+ * @memberof DivisionConfig
40
+ */
41
+ 'planConfigs'?: Array<PlanConfig> | null;
42
+ }
43
+
@@ -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 { GroupVolumeNested } from './group-volume-nested';
18
+ import { VBAProblemDetails } from './vbaproblem-details';
19
+
20
+ /**
21
+ *
22
+ * @export
23
+ * @interface GroupVolumeNestedListVBAResponse
24
+ */
25
+ export interface GroupVolumeNestedListVBAResponse {
26
+ /**
27
+ *
28
+ * @type {Array<GroupVolumeNested>}
29
+ * @memberof GroupVolumeNestedListVBAResponse
30
+ */
31
+ 'data'?: Array<GroupVolumeNested> | null;
32
+ /**
33
+ *
34
+ * @type {VBAProblemDetails}
35
+ * @memberof GroupVolumeNestedListVBAResponse
36
+ */
37
+ 'error'?: VBAProblemDetails;
38
+ /**
39
+ *
40
+ * @type {Debug}
41
+ * @memberof GroupVolumeNestedListVBAResponse
42
+ */
43
+ 'debug'?: Debug;
44
+ }
45
+
@@ -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 { DivisionConfig } from './division-config';
17
+
18
+ /**
19
+ *
20
+ * @export
21
+ * @interface GroupVolumeNested
22
+ */
23
+ export interface GroupVolumeNested {
24
+ /**
25
+ *
26
+ * @type {string}
27
+ * @memberof GroupVolumeNested
28
+ */
29
+ 'group_ID'?: string | null;
30
+ /**
31
+ *
32
+ * @type {string}
33
+ * @memberof GroupVolumeNested
34
+ */
35
+ 'group_Name'?: string | null;
36
+ /**
37
+ *
38
+ * @type {Array<DivisionConfig>}
39
+ * @memberof GroupVolumeNested
40
+ */
41
+ 'divisionConfigs'?: Array<DivisionConfig> | null;
42
+ }
43
+
package/models/groups.ts CHANGED
@@ -230,6 +230,12 @@ export interface Groups {
230
230
  * @memberof Groups
231
231
  */
232
232
  'disability_Pay_Through_Day'?: number | null;
233
+ /**
234
+ *
235
+ * @type {boolean}
236
+ * @memberof Groups
237
+ */
238
+ 'disable_COBRA_Auto_Select': boolean;
233
239
  /**
234
240
  * Date when the Group expires/expired.
235
241
  * @type {string}
@@ -272,6 +278,18 @@ export interface Groups {
272
278
  * @memberof Groups
273
279
  */
274
280
  'employer_Size'?: string | null;
281
+ /**
282
+ * Date when the record was first added to the system.
283
+ * @type {string}
284
+ * @memberof Groups
285
+ */
286
+ 'entry_Date'?: string;
287
+ /**
288
+ * User that first added the record to the system.
289
+ * @type {string}
290
+ * @memberof Groups
291
+ */
292
+ 'entry_User'?: string | null;
275
293
  /**
276
294
  * The Ex Code applied during claims adjudication if \"Apply_Ex_Code\" is enabled.
277
295
  * @type {string}
@@ -554,6 +572,18 @@ export interface Groups {
554
572
  * @memberof Groups
555
573
  */
556
574
  'uC_Percent'?: string | null;
575
+ /**
576
+ * Date when the record was last updated in the system.
577
+ * @type {string}
578
+ * @memberof Groups
579
+ */
580
+ 'update_Date'?: string;
581
+ /**
582
+ * User that last updated the record in the system.
583
+ * @type {string}
584
+ * @memberof Groups
585
+ */
586
+ 'update_User'?: string | null;
557
587
  /**
558
588
  * Notes if Employe State, not Subscriber State, should be used in invoice generation.
559
589
  * @type {boolean}
@@ -32,6 +32,12 @@ export interface IDCardRequest {
32
32
  * @memberof IDCardRequest
33
33
  */
34
34
  'as_Of_Date'?: string | null;
35
+ /**
36
+ *
37
+ * @type {string}
38
+ * @memberof IDCardRequest
39
+ */
40
+ 'cancellation_Reason'?: string | null;
35
41
  /**
36
42
  * Status of the card
37
43
  * @type {string}
@@ -44,6 +50,18 @@ export interface IDCardRequest {
44
50
  * @memberof IDCardRequest
45
51
  */
46
52
  'division_ID'?: string | null;
53
+ /**
54
+ * Date record was first added to the system
55
+ * @type {string}
56
+ * @memberof IDCardRequest
57
+ */
58
+ 'entry_Date'?: string;
59
+ /**
60
+ * User that first added the record to the system
61
+ * @type {string}
62
+ * @memberof IDCardRequest
63
+ */
64
+ 'entry_User'?: string | null;
47
65
  /**
48
66
  * Group ID of the subscriber enrollment for the ID card
49
67
  * @type {string}
@@ -98,5 +116,17 @@ export interface IDCardRequest {
98
116
  * @memberof IDCardRequest
99
117
  */
100
118
  'subscriber_ID'?: string | null;
119
+ /**
120
+ * Date the record was last updated in the system
121
+ * @type {string}
122
+ * @memberof IDCardRequest
123
+ */
124
+ 'update_Date'?: string;
125
+ /**
126
+ * User that last updated the record in the system
127
+ * @type {string}
128
+ * @memberof IDCardRequest
129
+ */
130
+ 'update_User'?: string | null;
101
131
  }
102
132
 
package/models/index.ts CHANGED
@@ -61,6 +61,7 @@ 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';
64
65
  export * from './benefit-diag-codes';
65
66
  export * from './benefit-diag-codes-list-vbaresponse';
66
67
  export * from './benefit-diag-codes-vbaresponse';
@@ -812,6 +813,9 @@ export * from './drgschedule-vbaresponse';
812
813
  export * from './drgweight';
813
814
  export * from './drgweight-list-vbaresponse';
814
815
  export * from './drgweight-vbaresponse';
816
+ export * from './day-interval';
817
+ export * from './day-interval-list-vbaresponse';
818
+ export * from './day-interval-vbaresponse';
815
819
  export * from './debug';
816
820
  export * from './diagnostic-code';
817
821
  export * from './diagnostic-code-group';
@@ -825,6 +829,7 @@ export * from './diagnostic-code-vbaresponse';
825
829
  export * from './disability-plan-limit';
826
830
  export * from './disability-plan-limit-list-vbaresponse';
827
831
  export * from './disability-plan-limit-vbaresponse';
832
+ export * from './division-config';
828
833
  export * from './drug-code';
829
834
  export * from './drug-code-list-vbaresponse';
830
835
  export * from './drug-code-unit';
@@ -1155,6 +1160,8 @@ export * from './group-vbaplan-type-subscriber-idlist-vbaresponse';
1155
1160
  export * from './group-vbaplan-type-subscriber-idvbaresponse';
1156
1161
  export * from './group-volume';
1157
1162
  export * from './group-volume-list-vbaresponse';
1163
+ export * from './group-volume-nested';
1164
+ export * from './group-volume-nested-list-vbaresponse';
1158
1165
  export * from './group-volume-vbaresponse';
1159
1166
  export * from './groups';
1160
1167
  export * from './groups-list-vbaresponse';
@@ -1501,6 +1508,7 @@ export * from './plan-benefits-procedures';
1501
1508
  export * from './plan-benefits-procedures-list-vbaresponse';
1502
1509
  export * from './plan-benefits-procedures-vbaresponse';
1503
1510
  export * from './plan-benefits-vbaresponse';
1511
+ export * from './plan-config';
1504
1512
  export * from './plan-copy';
1505
1513
  export * from './plan-diagnosis-age';
1506
1514
  export * from './plan-diagnosis-age-list-vbaresponse';
@@ -2187,6 +2195,7 @@ export * from './vbaprocess-log-vbaresponse';
2187
2195
  export * from './vbaprocess-parameter';
2188
2196
  export * from './vbaprocess-parameter-vbaresponse';
2189
2197
  export * from './vbaprocess-vbaresponse';
2198
+ export * from './volume';
2190
2199
  export * from './workflow';
2191
2200
  export * from './workflow-detail';
2192
2201
  export * from './workflow-detail-list-vbaresponse';
@@ -74,6 +74,48 @@ export interface MemEnrollmentPlan {
74
74
  * @memberof MemEnrollmentPlan
75
75
  */
76
76
  'dollar_Amount'?: number | null;
77
+ /**
78
+ * Date when the record was first added.
79
+ * @type {string}
80
+ * @memberof MemEnrollmentPlan
81
+ */
82
+ 'entry_Date'?: string;
83
+ /**
84
+ * User that first added the record.
85
+ * @type {string}
86
+ * @memberof MemEnrollmentPlan
87
+ */
88
+ 'entry_User'?: string | null;
89
+ /**
90
+ *
91
+ * @type {number}
92
+ * @memberof MemEnrollmentPlan
93
+ */
94
+ 'ltC_Daily_Benefit_Amount'?: number | null;
95
+ /**
96
+ *
97
+ * @type {number}
98
+ * @memberof MemEnrollmentPlan
99
+ */
100
+ 'ltC_Lifetime_Max_Amount'?: number | null;
101
+ /**
102
+ *
103
+ * @type {number}
104
+ * @memberof MemEnrollmentPlan
105
+ */
106
+ 'ltC_Lifetime_Max_Days'?: number | null;
107
+ /**
108
+ *
109
+ * @type {number}
110
+ * @memberof MemEnrollmentPlan
111
+ */
112
+ 'ltC_Lifetime_Max_Years'?: number | null;
113
+ /**
114
+ *
115
+ * @type {number}
116
+ * @memberof MemEnrollmentPlan
117
+ */
118
+ 'ltC_Monthly_Benefit_Amount'?: number | null;
77
119
  /**
78
120
  * End date of the Plan coverage.
79
121
  * @type {string}
@@ -86,6 +128,18 @@ export interface MemEnrollmentPlan {
86
128
  * @memberof MemEnrollmentPlan
87
129
  */
88
130
  'tier'?: string | null;
131
+ /**
132
+ * Date when the record was last updated.
133
+ * @type {string}
134
+ * @memberof MemEnrollmentPlan
135
+ */
136
+ 'update_Date'?: string;
137
+ /**
138
+ * User that last updated the record.
139
+ * @type {string}
140
+ * @memberof MemEnrollmentPlan
141
+ */
142
+ 'update_User'?: string | null;
89
143
  /**
90
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.
91
145
  * @type {boolean}
@@ -92,18 +92,72 @@ export interface MemEnrollmentRider {
92
92
  * @memberof MemEnrollmentRider
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 MemEnrollmentRider
99
+ */
100
+ 'entry_Date'?: string;
101
+ /**
102
+ * User that first added the record to the system.
103
+ * @type {string}
104
+ * @memberof MemEnrollmentRider
105
+ */
106
+ 'entry_User'?: string | null;
95
107
  /**
96
108
  * Custom value used for Ceridican tax processing interface.
97
109
  * @type {string}
98
110
  * @memberof MemEnrollmentRider
99
111
  */
100
112
  'external_ID'?: string | null;
113
+ /**
114
+ *
115
+ * @type {number}
116
+ * @memberof MemEnrollmentRider
117
+ */
118
+ 'ltC_Daily_Benefit_Amount'?: number | null;
119
+ /**
120
+ *
121
+ * @type {number}
122
+ * @memberof MemEnrollmentRider
123
+ */
124
+ 'ltC_Lifetime_Max_Amount'?: number | null;
125
+ /**
126
+ *
127
+ * @type {number}
128
+ * @memberof MemEnrollmentRider
129
+ */
130
+ 'ltC_Lifetime_Max_Days'?: number | null;
131
+ /**
132
+ *
133
+ * @type {number}
134
+ * @memberof MemEnrollmentRider
135
+ */
136
+ 'ltC_Lifetime_Max_Years'?: number | null;
137
+ /**
138
+ *
139
+ * @type {number}
140
+ * @memberof MemEnrollmentRider
141
+ */
142
+ 'ltC_Monthly_Benefit_Amount'?: number | null;
101
143
  /**
102
144
  * End date of Rider coverage.
103
145
  * @type {string}
104
146
  * @memberof MemEnrollmentRider
105
147
  */
106
148
  'thru_Date'?: string | null;
149
+ /**
150
+ * Date when the record was last updated in the system.
151
+ * @type {string}
152
+ * @memberof MemEnrollmentRider
153
+ */
154
+ 'update_Date'?: string;
155
+ /**
156
+ * User that last updated the record in the system.
157
+ * @type {string}
158
+ * @memberof MemEnrollmentRider
159
+ */
160
+ 'update_User'?: string | null;
107
161
  /**
108
162
  * The Member\'s \'Volume\' within the selected Rider benefit on the enrollment. The Member Enrollment \'Volume\' has no impact on invoicing.
109
163
  * @type {number}
@@ -74,12 +74,30 @@ export interface MemberAddress {
74
74
  * @memberof MemberAddress
75
75
  */
76
76
  'county_Code'?: string | null;
77
+ /**
78
+ *
79
+ * @type {string}
80
+ * @memberof MemberAddress
81
+ */
82
+ 'effective_Date'?: string | null;
77
83
  /**
78
84
  * Email address of the Member.
79
85
  * @type {string}
80
86
  * @memberof MemberAddress
81
87
  */
82
88
  'email_Address'?: string | null;
89
+ /**
90
+ * Date when the record was first added to the system.
91
+ * @type {string}
92
+ * @memberof MemberAddress
93
+ */
94
+ 'entry_Date'?: string;
95
+ /**
96
+ * User that first added the record to the system.
97
+ * @type {string}
98
+ * @memberof MemberAddress
99
+ */
100
+ 'entry_User'?: string | null;
83
101
  /**
84
102
  * Country code of the Member\'s home phone number.
85
103
  * @type {string}
@@ -146,6 +164,24 @@ export interface MemberAddress {
146
164
  * @memberof MemberAddress
147
165
  */
148
166
  'state'?: string | null;
167
+ /**
168
+ *
169
+ * @type {string}
170
+ * @memberof MemberAddress
171
+ */
172
+ 'term_Date'?: string | null;
173
+ /**
174
+ * Date when the record was last updated in the system.
175
+ * @type {string}
176
+ * @memberof MemberAddress
177
+ */
178
+ 'update_Date'?: string;
179
+ /**
180
+ * User that last updated the record in the system.
181
+ * @type {string}
182
+ * @memberof MemberAddress
183
+ */
184
+ 'update_User'?: string | null;
149
185
  /**
150
186
  * Country code of the Member\'s work phone number.
151
187
  * @type {string}