@vbasoftware/vbapi-vbasoftware-typescript-axios 1.20231206.1 → 1.20231213.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/models/company-data.ts +12 -0
- package/models/plan-type.ts +6 -0
- package/models/prem-invoice.ts +6 -0
- package/models/state-interest.ts +6 -6
- package/package.json +1 -1
package/models/company-data.ts
CHANGED
|
@@ -206,6 +206,12 @@ export interface CompanyData {
|
|
|
206
206
|
* @memberof CompanyData
|
|
207
207
|
*/
|
|
208
208
|
'auto_Process_Adjustment_Backout': boolean;
|
|
209
|
+
/**
|
|
210
|
+
* 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.
|
|
211
|
+
* @type {boolean}
|
|
212
|
+
* @memberof CompanyData
|
|
213
|
+
*/
|
|
214
|
+
'auto_Term_Plan_On_Gateway_Request': boolean;
|
|
209
215
|
/**
|
|
210
216
|
* Whether or not BaseLoad is turned on
|
|
211
217
|
* @type {boolean}
|
|
@@ -1460,6 +1466,12 @@ export interface CompanyData {
|
|
|
1460
1466
|
* @memberof CompanyData
|
|
1461
1467
|
*/
|
|
1462
1468
|
'ignore_Care_Management_Hierarchy_Fg': boolean;
|
|
1469
|
+
/**
|
|
1470
|
+
* 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.
|
|
1471
|
+
* @type {boolean}
|
|
1472
|
+
* @memberof CompanyData
|
|
1473
|
+
*/
|
|
1474
|
+
'ignore_Claim_Funding_Status_Change_Msg': boolean;
|
|
1463
1475
|
/**
|
|
1464
1476
|
* When a claim has a Provider using a Payee that is marked as inactive
|
|
1465
1477
|
* @type {string}
|
package/models/plan-type.ts
CHANGED
|
@@ -134,6 +134,12 @@ export interface PlanType {
|
|
|
134
134
|
* @memberof PlanType
|
|
135
135
|
*/
|
|
136
136
|
'medical': boolean;
|
|
137
|
+
/**
|
|
138
|
+
*
|
|
139
|
+
* @type {boolean}
|
|
140
|
+
* @memberof PlanType
|
|
141
|
+
*/
|
|
142
|
+
'misc': boolean;
|
|
137
143
|
/**
|
|
138
144
|
* 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.
|
|
139
145
|
* @type {boolean}
|
package/models/prem-invoice.ts
CHANGED
|
@@ -68,6 +68,12 @@ export interface PremInvoice {
|
|
|
68
68
|
* @memberof PremInvoice
|
|
69
69
|
*/
|
|
70
70
|
'bill_Zip_Code'?: string | null;
|
|
71
|
+
/**
|
|
72
|
+
*
|
|
73
|
+
* @type {string}
|
|
74
|
+
* @memberof PremInvoice
|
|
75
|
+
*/
|
|
76
|
+
'billing_Cycle_ID'?: string | null;
|
|
71
77
|
/**
|
|
72
78
|
* First day of the Invoice period
|
|
73
79
|
* @type {string}
|
package/models/state-interest.ts
CHANGED
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
*/
|
|
22
22
|
export interface StateInterest {
|
|
23
23
|
/**
|
|
24
|
-
*
|
|
24
|
+
* 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 StateInterest
|
|
27
27
|
*/
|
|
@@ -99,7 +99,7 @@ export interface StateInterest {
|
|
|
99
99
|
*/
|
|
100
100
|
'compound_Interest': boolean;
|
|
101
101
|
/**
|
|
102
|
-
*
|
|
102
|
+
*
|
|
103
103
|
* @type {string}
|
|
104
104
|
* @memberof StateInterest
|
|
105
105
|
*/
|
|
@@ -117,25 +117,25 @@ export interface StateInterest {
|
|
|
117
117
|
*/
|
|
118
118
|
'entry_User'?: string | null;
|
|
119
119
|
/**
|
|
120
|
-
*
|
|
120
|
+
*
|
|
121
121
|
* @type {number}
|
|
122
122
|
* @memberof StateInterest
|
|
123
123
|
*/
|
|
124
124
|
'interest_Pct'?: number | null;
|
|
125
125
|
/**
|
|
126
|
-
*
|
|
126
|
+
*
|
|
127
127
|
* @type {string}
|
|
128
128
|
* @memberof StateInterest
|
|
129
129
|
*/
|
|
130
130
|
'no_Interest_Within'?: string | null;
|
|
131
131
|
/**
|
|
132
|
-
*
|
|
132
|
+
*
|
|
133
133
|
* @type {string}
|
|
134
134
|
* @memberof StateInterest
|
|
135
135
|
*/
|
|
136
136
|
'state': string;
|
|
137
137
|
/**
|
|
138
|
-
*
|
|
138
|
+
*
|
|
139
139
|
* @type {string}
|
|
140
140
|
* @memberof StateInterest
|
|
141
141
|
*/
|