@vbasoftware/vbapi-vbasoftware-typescript-axios 1.20221108.4 → 1.20230117.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 +28 -1
- package/api/adv-benefits-api.ts +167 -0
- package/api/adv-enrollment-api.ts +207 -0
- package/api/auth-reference-api.ts +5 -5
- package/api/benefits-api.ts +87 -0
- package/api/bill-type-places-api.ts +716 -0
- package/api/bill-types-api.ts +668 -0
- package/api/care-case-clinical-fact-category-types-api.ts +107 -59
- package/api/care-case-clinical-facts-api.ts +155 -107
- package/api/cobtypes-api.ts +155 -0
- package/api/context4-lists-api.ts +331 -0
- package/api/cost-contain-zelis-ex-codes-api.ts +668 -0
- package/api/disability-options-api.ts +155 -0
- package/api/flex-types-api.ts +155 -0
- package/api/issue-duration-values-api.ts +677 -0
- package/api/life-options-api.ts +242 -0
- package/api/plan-benefit-clusters-api.ts +668 -0
- package/api/plans-api.ts +99 -0
- package/api/premium-rates-api.ts +125 -0
- package/api/provider-withholds-api.ts +31 -13
- package/api/report-definitions-api.ts +17 -8
- package/api/subscriber-enrollment-plans-api.ts +115 -0
- package/api/subscribers-api.ts +95 -0
- package/api.ts +11 -0
- package/models/{auth-reference-list-vbaresponse.ts → auth-list-vbaresponse.ts} +8 -8
- package/models/bill-type-list-vbaresponse.ts +45 -0
- package/models/bill-type-place-list-vbaresponse.ts +45 -0
- package/models/bill-type-place-vbaresponse.ts +45 -0
- package/models/bill-type-place.ts +66 -0
- package/models/bill-type-vbaresponse.ts +45 -0
- package/models/bill-type.ts +66 -0
- package/models/care-case-clinical-fact-category-type.ts +7 -7
- package/models/care-case-clinical-fact.ts +9 -9
- package/models/claim-batch.ts +6 -0
- package/models/claim.ts +6 -0
- package/models/company-data.ts +24 -0
- package/models/cost-contain-zelis-ex-code-list-vbaresponse.ts +45 -0
- package/models/cost-contain-zelis-ex-code-vbaresponse.ts +45 -0
- package/models/cost-contain-zelis-ex-code.ts +60 -0
- package/models/index.ts +17 -1
- package/models/issue-duration-value-list-vbaresponse.ts +45 -0
- package/models/issue-duration-value-vbaresponse.ts +45 -0
- package/models/issue-duration-value.ts +66 -0
- package/models/member-prior-accum.ts +24 -0
- package/models/plan-benefit-cluster-list-vbaresponse.ts +45 -0
- package/models/plan-benefit-cluster-vbaresponse.ts +45 -0
- package/models/plan-benefit-cluster.ts +96 -0
- package/models/plan-copy.ts +192 -0
- package/models/plans.ts +128 -98
- package/models/prem-rate.ts +6 -0
- package/models/provider-withhold.ts +17 -17
- package/models/subscriber-prior-accum.ts +24 -0
- package/package.json +1 -1
package/models/prem-rate.ts
CHANGED
|
@@ -21,103 +21,103 @@
|
|
|
21
21
|
*/
|
|
22
22
|
export interface ProviderWithhold {
|
|
23
23
|
/**
|
|
24
|
-
*
|
|
24
|
+
* Unique identifier for each Withhold setting.
|
|
25
25
|
* @type {number}
|
|
26
26
|
* @memberof ProviderWithhold
|
|
27
27
|
*/
|
|
28
28
|
'providerWithhold_Key': number;
|
|
29
29
|
/**
|
|
30
|
-
*
|
|
30
|
+
* This field indicates the funding account criteria by which the withhold is applied to a claim.
|
|
31
31
|
* @type {number}
|
|
32
32
|
* @memberof ProviderWithhold
|
|
33
33
|
*/
|
|
34
34
|
'account_Key'?: number | null;
|
|
35
35
|
/**
|
|
36
|
-
*
|
|
36
|
+
* Benefit code required for adjudication matching.
|
|
37
37
|
* @type {string}
|
|
38
38
|
* @memberof ProviderWithhold
|
|
39
39
|
*/
|
|
40
40
|
'benefit_Code'?: string | null;
|
|
41
41
|
/**
|
|
42
|
-
*
|
|
42
|
+
* Start of the range of acceptable service dates for the admin fee.
|
|
43
43
|
* @type {string}
|
|
44
44
|
* @memberof ProviderWithhold
|
|
45
45
|
*/
|
|
46
46
|
'effective_Date': string;
|
|
47
47
|
/**
|
|
48
|
-
*
|
|
48
|
+
* Date when the record was first added to the system.
|
|
49
49
|
* @type {string}
|
|
50
50
|
* @memberof ProviderWithhold
|
|
51
51
|
*/
|
|
52
52
|
'entry_Date'?: string;
|
|
53
53
|
/**
|
|
54
|
-
*
|
|
54
|
+
* User that first added the record to the system.
|
|
55
55
|
* @type {string}
|
|
56
56
|
* @memberof ProviderWithhold
|
|
57
57
|
*/
|
|
58
58
|
'entry_User'?: string | null;
|
|
59
59
|
/**
|
|
60
|
-
*
|
|
60
|
+
* Ex code associated with the price line.
|
|
61
61
|
* @type {string}
|
|
62
62
|
* @memberof ProviderWithhold
|
|
63
63
|
*/
|
|
64
64
|
'ex_Code'?: string | null;
|
|
65
65
|
/**
|
|
66
|
-
*
|
|
66
|
+
* Allows setting the Tax ID that this withhold will apply when applying a withhold across multiple Providers.
|
|
67
67
|
* @type {string}
|
|
68
68
|
* @memberof ProviderWithhold
|
|
69
69
|
*/
|
|
70
70
|
'federal_ID'?: string | null;
|
|
71
71
|
/**
|
|
72
|
-
*
|
|
72
|
+
* Identifies the required Network for adjudication matching.
|
|
73
73
|
* @type {string}
|
|
74
74
|
* @memberof ProviderWithhold
|
|
75
75
|
*/
|
|
76
76
|
'network_ID'?: string | null;
|
|
77
77
|
/**
|
|
78
|
-
*
|
|
78
|
+
* This field indicates the payor criteria by which the withhold is applied to a claim.
|
|
79
79
|
* @type {string}
|
|
80
80
|
* @memberof ProviderWithhold
|
|
81
81
|
*/
|
|
82
82
|
'payor_ID'?: string | null;
|
|
83
83
|
/**
|
|
84
|
-
*
|
|
84
|
+
* The Provider ID this Withhold setting is being applied.
|
|
85
85
|
* @type {string}
|
|
86
86
|
* @memberof ProviderWithhold
|
|
87
87
|
*/
|
|
88
88
|
'provider_ID'?: string | null;
|
|
89
89
|
/**
|
|
90
|
-
*
|
|
90
|
+
* End of the range of acceptable service dates for the admin fee.
|
|
91
91
|
* @type {string}
|
|
92
92
|
* @memberof ProviderWithhold
|
|
93
93
|
*/
|
|
94
94
|
'term_Date'?: string | null;
|
|
95
95
|
/**
|
|
96
|
-
*
|
|
96
|
+
* Date when the record was last updated in the system.
|
|
97
97
|
* @type {string}
|
|
98
98
|
* @memberof ProviderWithhold
|
|
99
99
|
*/
|
|
100
100
|
'update_Date'?: string;
|
|
101
101
|
/**
|
|
102
|
-
*
|
|
102
|
+
* User that last updated the record in the system.
|
|
103
103
|
* @type {string}
|
|
104
104
|
* @memberof ProviderWithhold
|
|
105
105
|
*/
|
|
106
106
|
'update_User'?: string | null;
|
|
107
107
|
/**
|
|
108
|
-
*
|
|
108
|
+
* Shows the withheld percentage.
|
|
109
109
|
* @type {number}
|
|
110
110
|
* @memberof ProviderWithhold
|
|
111
111
|
*/
|
|
112
112
|
'withhold'?: number | null;
|
|
113
113
|
/**
|
|
114
|
-
*
|
|
114
|
+
* Indicates the max Withhold that can be taken for this withhold configuration.
|
|
115
115
|
* @type {number}
|
|
116
116
|
* @memberof ProviderWithhold
|
|
117
117
|
*/
|
|
118
118
|
'withhold_Max'?: number | null;
|
|
119
119
|
/**
|
|
120
|
-
*
|
|
120
|
+
* Indicates if the Withhold value on this table is a Percentage or a Flat amount.
|
|
121
121
|
* @type {boolean}
|
|
122
122
|
* @memberof ProviderWithhold
|
|
123
123
|
*/
|
|
@@ -200,6 +200,18 @@ export interface SubscriberPriorAccum {
|
|
|
200
200
|
* @memberof SubscriberPriorAccum
|
|
201
201
|
*/
|
|
202
202
|
'deductible_Used_OON': number;
|
|
203
|
+
/**
|
|
204
|
+
* Date when the record was first added to the system.
|
|
205
|
+
* @type {string}
|
|
206
|
+
* @memberof SubscriberPriorAccum
|
|
207
|
+
*/
|
|
208
|
+
'entry_Date'?: string;
|
|
209
|
+
/**
|
|
210
|
+
* User that first added the record to the system.
|
|
211
|
+
* @type {string}
|
|
212
|
+
* @memberof SubscriberPriorAccum
|
|
213
|
+
*/
|
|
214
|
+
'entry_User'?: string | null;
|
|
203
215
|
/**
|
|
204
216
|
* Total amount that is not covered.
|
|
205
217
|
* @type {number}
|
|
@@ -236,5 +248,17 @@ export interface SubscriberPriorAccum {
|
|
|
236
248
|
* @memberof SubscriberPriorAccum
|
|
237
249
|
*/
|
|
238
250
|
'out_Of_Pocket_OON': number;
|
|
251
|
+
/**
|
|
252
|
+
* Date when the record was last updated in the system.
|
|
253
|
+
* @type {string}
|
|
254
|
+
* @memberof SubscriberPriorAccum
|
|
255
|
+
*/
|
|
256
|
+
'update_Date'?: string;
|
|
257
|
+
/**
|
|
258
|
+
* User that last updated the record in the system.
|
|
259
|
+
* @type {string}
|
|
260
|
+
* @memberof SubscriberPriorAccum
|
|
261
|
+
*/
|
|
262
|
+
'update_User'?: string | null;
|
|
239
263
|
}
|
|
240
264
|
|