@vbasoftware/vbapi-vbasoftware-typescript-axios 1.20230403.1 → 1.20230506.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.
Files changed (58) hide show
  1. package/.openapi-generator/FILES +20 -1
  2. package/api/capitation-plan-rates-api.ts +22 -13
  3. package/api/commission-adjustments-api.ts +59 -107
  4. package/api/commission-rate-subscribers-api.ts +126 -0
  5. package/api/context4-health-cost-containment-option-pricing-api.ts +17 -8
  6. package/api/context4-health-cost-containment-options-api.ts +17 -8
  7. package/api/groups-api.ts +97 -0
  8. package/api/invoice-status-api.ts +155 -0
  9. package/api/invoice-types-api.ts +155 -0
  10. package/api/members-api.ts +323 -0
  11. package/api/plan-relationship-age-restrictions-api.ts +63 -148
  12. package/api/premium-invoice-subscribers-api.ts +123 -0
  13. package/api/process-logging-api.ts +105 -0
  14. package/api/security-area-user-groups-api.ts +100 -0
  15. package/api/security-area-users-api.ts +98 -0
  16. package/api/subscriber-plan-policy-forfeitures-api.ts +581 -35
  17. package/api/ucnetwork-api.ts +710 -0
  18. package/api.ts +3 -1
  19. package/models/auth-adjustment.ts +2 -2
  20. package/models/billing-cycle.ts +25 -1
  21. package/models/call-tracking.ts +25 -1
  22. package/models/check-batch.ts +27 -3
  23. package/models/commission-adjustment.ts +21 -15
  24. package/models/commission-rate.ts +90 -36
  25. package/models/company-data.ts +12 -0
  26. package/models/enrollment-pcpauto-assign-member-list-vbaresponse.ts +45 -0
  27. package/models/enrollment-pcpauto-assign-member.ts +96 -0
  28. package/models/enrollment-pcpauto-assign-provider-list-vbaresponse.ts +45 -0
  29. package/models/enrollment-pcpauto-assign-provider.ts +90 -0
  30. package/models/enrollment-pcpauto-assign.ts +3 -3
  31. package/models/index.ts +17 -0
  32. package/models/payee.ts +29 -5
  33. package/models/plan-pre-ex.ts +54 -0
  34. package/models/plans.ts +6 -0
  35. package/models/prem-invoice.ts +27 -21
  36. package/models/prem-rate-type.ts +6 -0
  37. package/models/prem-rate.ts +6 -0
  38. package/models/state-interest.ts +72 -0
  39. package/models/state.ts +35 -5
  40. package/models/string-list-vbaresponse.ts +44 -0
  41. package/models/sub-enrollment-plan.ts +6 -0
  42. package/models/sub-payment-method.ts +16 -10
  43. package/models/subscriber-forfeiture-status.ts +25 -1
  44. package/models/subscribers.ts +6 -0
  45. package/models/ucnetwork-list-vbaresponse.ts +45 -0
  46. package/models/ucnetwork-vbaresponse.ts +45 -0
  47. package/models/ucnetwork.ts +90 -0
  48. package/models/vbacommission-rate-subscriber-list-vbaresponse.ts +45 -0
  49. package/models/vbacommission-rate-subscriber.ts +48 -0
  50. package/models/vbagroup-enrollment-summary-vbaresponse.ts +45 -0
  51. package/models/vbagroup-enrollment-summary.ts +48 -0
  52. package/models/vbamembers-disability-tax-summary-vbaresponse.ts +45 -0
  53. package/models/vbamembers-disability-tax-summary.ts +276 -0
  54. package/models/vbaprem-invoice-subscriber-history-list-vbaresponse.ts +45 -0
  55. package/models/vbaprem-invoice-subscriber-history.ts +108 -0
  56. package/models/vbaprocess-log-list-vbaresponse.ts +45 -0
  57. package/package.json +1 -1
  58. package/api/subscriber-plan-forfeitures-api.ts +0 -731
@@ -0,0 +1,48 @@
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 VBAGroupEnrollmentSummary
21
+ */
22
+ export interface VBAGroupEnrollmentSummary {
23
+ /**
24
+ *
25
+ * @type {number}
26
+ * @memberof VBAGroupEnrollmentSummary
27
+ */
28
+ 'totalSubscribers'?: number;
29
+ /**
30
+ *
31
+ * @type {number}
32
+ * @memberof VBAGroupEnrollmentSummary
33
+ */
34
+ 'totalMembers'?: number;
35
+ /**
36
+ *
37
+ * @type {number}
38
+ * @memberof VBAGroupEnrollmentSummary
39
+ */
40
+ 'totalSubscribersCurrent'?: number;
41
+ /**
42
+ *
43
+ * @type {number}
44
+ * @memberof VBAGroupEnrollmentSummary
45
+ */
46
+ 'totalMembersCurrent'?: number;
47
+ }
48
+
@@ -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 { VBAMembersDisabilityTaxSummary } from './vbamembers-disability-tax-summary';
18
+ import { VBAProblemDetails } from './vbaproblem-details';
19
+
20
+ /**
21
+ *
22
+ * @export
23
+ * @interface VBAMembersDisabilityTaxSummaryVBAResponse
24
+ */
25
+ export interface VBAMembersDisabilityTaxSummaryVBAResponse {
26
+ /**
27
+ *
28
+ * @type {VBAMembersDisabilityTaxSummary}
29
+ * @memberof VBAMembersDisabilityTaxSummaryVBAResponse
30
+ */
31
+ 'data'?: VBAMembersDisabilityTaxSummary;
32
+ /**
33
+ *
34
+ * @type {VBAProblemDetails}
35
+ * @memberof VBAMembersDisabilityTaxSummaryVBAResponse
36
+ */
37
+ 'error'?: VBAProblemDetails;
38
+ /**
39
+ *
40
+ * @type {Debug}
41
+ * @memberof VBAMembersDisabilityTaxSummaryVBAResponse
42
+ */
43
+ 'debug'?: Debug;
44
+ }
45
+
@@ -0,0 +1,276 @@
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
+ * This class represents a summary of disability tax information for a VBA member.
19
+ * @export
20
+ * @interface VBAMembersDisabilityTaxSummary
21
+ */
22
+ export interface VBAMembersDisabilityTaxSummary {
23
+ /**
24
+ * The total amount of disability tax.
25
+ * @type {number}
26
+ * @memberof VBAMembersDisabilityTaxSummary
27
+ */
28
+ 'total'?: number;
29
+ /**
30
+ * The amount of disability tax that has been paid.
31
+ * @type {number}
32
+ * @memberof VBAMembersDisabilityTaxSummary
33
+ */
34
+ 'paid'?: number;
35
+ /**
36
+ * The amount of disability tax that is payable.
37
+ * @type {number}
38
+ * @memberof VBAMembersDisabilityTaxSummary
39
+ */
40
+ 'payable'?: number;
41
+ /**
42
+ * The amount of disability tax in batch.
43
+ * @type {number}
44
+ * @memberof VBAMembersDisabilityTaxSummary
45
+ */
46
+ 'inBatch'?: number;
47
+ /**
48
+ * The amount of disability tax that has been denied.
49
+ * @type {number}
50
+ * @memberof VBAMembersDisabilityTaxSummary
51
+ */
52
+ 'denied'?: number;
53
+ /**
54
+ * The total number of days for which disability benefits were claimed.
55
+ * @type {number}
56
+ * @memberof VBAMembersDisabilityTaxSummary
57
+ */
58
+ 'totalDays'?: number;
59
+ /**
60
+ * The number of days for which disability benefits have been paid.
61
+ * @type {number}
62
+ * @memberof VBAMembersDisabilityTaxSummary
63
+ */
64
+ 'paidDays'?: number;
65
+ /**
66
+ * The number of days for which disability benefits are payable.
67
+ * @type {number}
68
+ * @memberof VBAMembersDisabilityTaxSummary
69
+ */
70
+ 'payableDays'?: number;
71
+ /**
72
+ * The number of days for which disability benefits are in batch.
73
+ * @type {number}
74
+ * @memberof VBAMembersDisabilityTaxSummary
75
+ */
76
+ 'inBatchDays'?: number;
77
+ /**
78
+ * The number of days for which disability benefits have been denied.
79
+ * @type {number}
80
+ * @memberof VBAMembersDisabilityTaxSummary
81
+ */
82
+ 'deniedDays'?: number;
83
+ /**
84
+ * The total amount of disability benefits claimed.
85
+ * @type {number}
86
+ * @memberof VBAMembersDisabilityTaxSummary
87
+ */
88
+ 'benefitTotalAmount'?: number;
89
+ /**
90
+ * The amount of disability benefits paid.
91
+ * @type {number}
92
+ * @memberof VBAMembersDisabilityTaxSummary
93
+ */
94
+ 'benefitPaidAmount'?: number;
95
+ /**
96
+ * The amount of disability benefits payable.
97
+ * @type {number}
98
+ * @memberof VBAMembersDisabilityTaxSummary
99
+ */
100
+ 'benefitPayableAmount'?: number;
101
+ /**
102
+ * The amount of disability benefits in batch.
103
+ * @type {number}
104
+ * @memberof VBAMembersDisabilityTaxSummary
105
+ */
106
+ 'benefitInBatchAmount'?: number;
107
+ /**
108
+ * The total amount of deductions claimed for disability tax.
109
+ * @type {number}
110
+ * @memberof VBAMembersDisabilityTaxSummary
111
+ */
112
+ 'deductionTotalAmount'?: number;
113
+ /**
114
+ * The amount of deductions paid for disability tax.
115
+ * @type {number}
116
+ * @memberof VBAMembersDisabilityTaxSummary
117
+ */
118
+ 'deductionPaidAmount'?: number;
119
+ /**
120
+ * The amount of deductions payable for disability tax.
121
+ * @type {number}
122
+ * @memberof VBAMembersDisabilityTaxSummary
123
+ */
124
+ 'deductionPayableAmount'?: number;
125
+ /**
126
+ * The amount of deductions in batch for disability tax.
127
+ * @type {number}
128
+ * @memberof VBAMembersDisabilityTaxSummary
129
+ */
130
+ 'deductionInBatchAmount'?: number;
131
+ /**
132
+ * The total amount of taxable disability benefits.
133
+ * @type {number}
134
+ * @memberof VBAMembersDisabilityTaxSummary
135
+ */
136
+ 'taxableTotalAmount'?: number;
137
+ /**
138
+ * The amount of taxable disability benefits paid.
139
+ * @type {number}
140
+ * @memberof VBAMembersDisabilityTaxSummary
141
+ */
142
+ 'taxablePaidAmount'?: number;
143
+ /**
144
+ * The total amount of taxable benefits payable for the member\'s disability tax summary.
145
+ * @type {number}
146
+ * @memberof VBAMembersDisabilityTaxSummary
147
+ */
148
+ 'taxablePayableAmount'?: number;
149
+ /**
150
+ * The total amount of taxable benefits in batch for the member\'s disability tax summary.
151
+ * @type {number}
152
+ * @memberof VBAMembersDisabilityTaxSummary
153
+ */
154
+ 'taxableInBatchAmount'?: number;
155
+ /**
156
+ * The total federal tax amount for the member\'s disability tax summary.
157
+ * @type {number}
158
+ * @memberof VBAMembersDisabilityTaxSummary
159
+ */
160
+ 'federalTaxTotalAmount'?: number;
161
+ /**
162
+ * The total amount of federal tax paid for the member\'s disability tax summary.
163
+ * @type {number}
164
+ * @memberof VBAMembersDisabilityTaxSummary
165
+ */
166
+ 'federalTaxPaidAmount'?: number;
167
+ /**
168
+ * The total amount of federal tax payable for the member\'s disability tax summary.
169
+ * @type {number}
170
+ * @memberof VBAMembersDisabilityTaxSummary
171
+ */
172
+ 'federalTaxPayableAmount'?: number;
173
+ /**
174
+ * The total amount of federal tax in batch for the member\'s disability tax summary.
175
+ * @type {number}
176
+ * @memberof VBAMembersDisabilityTaxSummary
177
+ */
178
+ 'federalTaxInBatchAmount'?: number;
179
+ /**
180
+ * The total Social Security tax amount for the member\'s disability tax summary.
181
+ * @type {number}
182
+ * @memberof VBAMembersDisabilityTaxSummary
183
+ */
184
+ 'socSecTaxTotalAmount'?: number;
185
+ /**
186
+ * The total amount of Social Security tax paid for the member\'s disability tax summary.
187
+ * @type {number}
188
+ * @memberof VBAMembersDisabilityTaxSummary
189
+ */
190
+ 'socSecTaxPaidAmount'?: number;
191
+ /**
192
+ * The total amount of Social Security tax payable for the member\'s disability tax summary.
193
+ * @type {number}
194
+ * @memberof VBAMembersDisabilityTaxSummary
195
+ */
196
+ 'socSecTaxPayableAmount'?: number;
197
+ /**
198
+ * The total amount of Social Security tax in batch for the member\'s disability tax summary.
199
+ * @type {number}
200
+ * @memberof VBAMembersDisabilityTaxSummary
201
+ */
202
+ 'socSecTaxInBatchAmount'?: number;
203
+ /**
204
+ * The total Medicare tax amount for the member\'s disability tax summary.
205
+ * @type {number}
206
+ * @memberof VBAMembersDisabilityTaxSummary
207
+ */
208
+ 'medicareTaxTotalAmount'?: number;
209
+ /**
210
+ * The total amount of Medicare tax paid for the member\'s disability tax summary.
211
+ * @type {number}
212
+ * @memberof VBAMembersDisabilityTaxSummary
213
+ */
214
+ 'medicareTaxPaidAmount'?: number;
215
+ /**
216
+ * The total amount of Medicare tax payable for the member\'s disability tax summary.
217
+ * @type {number}
218
+ * @memberof VBAMembersDisabilityTaxSummary
219
+ */
220
+ 'medicareTaxPayableAmount'?: number;
221
+ /**
222
+ * The total amount of Medicare tax in batch for the member\'s disability tax summary.
223
+ * @type {number}
224
+ * @memberof VBAMembersDisabilityTaxSummary
225
+ */
226
+ 'medicareTaxInBatchAmount'?: number;
227
+ /**
228
+ * The total state tax amount for the member\'s disability tax summary.
229
+ * @type {number}
230
+ * @memberof VBAMembersDisabilityTaxSummary
231
+ */
232
+ 'stateTaxTotalAmount'?: number;
233
+ /**
234
+ * The total amount of state tax paid for the member\'s disability tax summary.
235
+ * @type {number}
236
+ * @memberof VBAMembersDisabilityTaxSummary
237
+ */
238
+ 'stateTaxPaidAmount'?: number;
239
+ /**
240
+ * Represents the amount of state tax payable for a VBA member\'s disability tax summary.
241
+ * @type {number}
242
+ * @memberof VBAMembersDisabilityTaxSummary
243
+ */
244
+ 'stateTaxPayableAmount'?: number;
245
+ /**
246
+ * Represents the amount of state tax in batch for a VBA member\'s disability tax summary.
247
+ * @type {number}
248
+ * @memberof VBAMembersDisabilityTaxSummary
249
+ */
250
+ 'stateTaxInBatchAmount'?: number;
251
+ /**
252
+ * Represents the total amount of local tax for a VBA member\'s disability tax summary.
253
+ * @type {number}
254
+ * @memberof VBAMembersDisabilityTaxSummary
255
+ */
256
+ 'localTaxTotalAmount'?: number;
257
+ /**
258
+ * Represents the amount of local tax paid for a VBA member\'s disability tax summary.
259
+ * @type {number}
260
+ * @memberof VBAMembersDisabilityTaxSummary
261
+ */
262
+ 'localTaxPaidAmount'?: number;
263
+ /**
264
+ * Represents the amount of local tax payable for a VBA member\'s disability tax summary.
265
+ * @type {number}
266
+ * @memberof VBAMembersDisabilityTaxSummary
267
+ */
268
+ 'localTaxPayableAmount'?: number;
269
+ /**
270
+ * Represents the amount of local tax in batch for a VBA member\'s disability tax summary.
271
+ * @type {number}
272
+ * @memberof VBAMembersDisabilityTaxSummary
273
+ */
274
+ 'localTaxInBatchAmount'?: number;
275
+ }
276
+
@@ -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 { VBAPremInvoiceSubscriberHistory } from './vbaprem-invoice-subscriber-history';
18
+ import { VBAProblemDetails } from './vbaproblem-details';
19
+
20
+ /**
21
+ *
22
+ * @export
23
+ * @interface VBAPremInvoiceSubscriberHistoryListVBAResponse
24
+ */
25
+ export interface VBAPremInvoiceSubscriberHistoryListVBAResponse {
26
+ /**
27
+ *
28
+ * @type {Array<VBAPremInvoiceSubscriberHistory>}
29
+ * @memberof VBAPremInvoiceSubscriberHistoryListVBAResponse
30
+ */
31
+ 'data'?: Array<VBAPremInvoiceSubscriberHistory> | null;
32
+ /**
33
+ *
34
+ * @type {VBAProblemDetails}
35
+ * @memberof VBAPremInvoiceSubscriberHistoryListVBAResponse
36
+ */
37
+ 'error'?: VBAProblemDetails;
38
+ /**
39
+ *
40
+ * @type {Debug}
41
+ * @memberof VBAPremInvoiceSubscriberHistoryListVBAResponse
42
+ */
43
+ 'debug'?: Debug;
44
+ }
45
+
@@ -0,0 +1,108 @@
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 VBAPremInvoiceSubscriberHistory
21
+ */
22
+ export interface VBAPremInvoiceSubscriberHistory {
23
+ /**
24
+ *
25
+ * @type {string}
26
+ * @memberof VBAPremInvoiceSubscriberHistory
27
+ */
28
+ 'adjustment'?: string | null;
29
+ /**
30
+ *
31
+ * @type {string}
32
+ * @memberof VBAPremInvoiceSubscriberHistory
33
+ */
34
+ 'subscriberID'?: string | null;
35
+ /**
36
+ *
37
+ * @type {number}
38
+ * @memberof VBAPremInvoiceSubscriberHistory
39
+ */
40
+ 'invoiceKey'?: number | null;
41
+ /**
42
+ *
43
+ * @type {string}
44
+ * @memberof VBAPremInvoiceSubscriberHistory
45
+ */
46
+ 'premRateID'?: string | null;
47
+ /**
48
+ *
49
+ * @type {string}
50
+ * @memberof VBAPremInvoiceSubscriberHistory
51
+ */
52
+ 'categoryDescription'?: string | null;
53
+ /**
54
+ *
55
+ * @type {string}
56
+ * @memberof VBAPremInvoiceSubscriberHistory
57
+ */
58
+ 'basisDescription'?: string | null;
59
+ /**
60
+ *
61
+ * @type {string}
62
+ * @memberof VBAPremInvoiceSubscriberHistory
63
+ */
64
+ 'planName'?: string | null;
65
+ /**
66
+ *
67
+ * @type {string}
68
+ * @memberof VBAPremInvoiceSubscriberHistory
69
+ */
70
+ 'tier'?: string | null;
71
+ /**
72
+ *
73
+ * @type {string}
74
+ * @memberof VBAPremInvoiceSubscriberHistory
75
+ */
76
+ 'rateType'?: string | null;
77
+ /**
78
+ *
79
+ * @type {string}
80
+ * @memberof VBAPremInvoiceSubscriberHistory
81
+ */
82
+ 'rateTypeDescription'?: string | null;
83
+ /**
84
+ *
85
+ * @type {string}
86
+ * @memberof VBAPremInvoiceSubscriberHistory
87
+ */
88
+ 'rateDescription'?: string | null;
89
+ /**
90
+ *
91
+ * @type {number}
92
+ * @memberof VBAPremInvoiceSubscriberHistory
93
+ */
94
+ 'premium'?: number | null;
95
+ /**
96
+ *
97
+ * @type {number}
98
+ * @memberof VBAPremInvoiceSubscriberHistory
99
+ */
100
+ 'premiumReceived'?: number | null;
101
+ /**
102
+ *
103
+ * @type {string}
104
+ * @memberof VBAPremInvoiceSubscriberHistory
105
+ */
106
+ 'reason'?: string | null;
107
+ }
108
+
@@ -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 { VBAProblemDetails } from './vbaproblem-details';
18
+ import { VBAProcessLog } from './vbaprocess-log';
19
+
20
+ /**
21
+ *
22
+ * @export
23
+ * @interface VBAProcessLogListVBAResponse
24
+ */
25
+ export interface VBAProcessLogListVBAResponse {
26
+ /**
27
+ *
28
+ * @type {Array<VBAProcessLog>}
29
+ * @memberof VBAProcessLogListVBAResponse
30
+ */
31
+ 'data'?: Array<VBAProcessLog> | null;
32
+ /**
33
+ *
34
+ * @type {VBAProblemDetails}
35
+ * @memberof VBAProcessLogListVBAResponse
36
+ */
37
+ 'error'?: VBAProblemDetails;
38
+ /**
39
+ *
40
+ * @type {Debug}
41
+ * @memberof VBAProcessLogListVBAResponse
42
+ */
43
+ 'debug'?: Debug;
44
+ }
45
+
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vbasoftware/vbapi-vbasoftware-typescript-axios",
3
- "version": "1.20230403.1",
3
+ "version": "1.20230506.1",
4
4
  "description": "APIs for VBASoftware APIs",
5
5
  "main": "index.js",
6
6
  "scripts": {