@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
package/api.ts CHANGED
@@ -450,6 +450,8 @@ export * from './api/insurance-types-api';
450
450
  export * from './api/interface-types-api';
451
451
  export * from './api/invoice-levels-api';
452
452
  export * from './api/invoice-reasons-api';
453
+ export * from './api/invoice-status-api';
454
+ export * from './api/invoice-types-api';
453
455
  export * from './api/issue-duration-values-api';
454
456
  export * from './api/job-execution-metadata-api';
455
457
  export * from './api/job-executions-api';
@@ -735,7 +737,6 @@ export * from './api/subscriber-flex-payments-api';
735
737
  export * from './api/subscriber-idcode-history-api';
736
738
  export * from './api/subscriber-idcodes-api';
737
739
  export * from './api/subscriber-payment-methods-api';
738
- export * from './api/subscriber-plan-forfeitures-api';
739
740
  export * from './api/subscriber-plan-policies-api';
740
741
  export * from './api/subscriber-plan-policy-forfeitures-api';
741
742
  export * from './api/subscriber-plan-policy-statuses-api';
@@ -762,6 +763,7 @@ export * from './api/tooth-procedures-api';
762
763
  export * from './api/tooth-quadrants-api';
763
764
  export * from './api/transplant-types-api';
764
765
  export * from './api/treatment-types-api';
766
+ export * from './api/ucnetwork-api';
765
767
  export * from './api/unassigned-commission-adjustments-api';
766
768
  export * from './api/unit-type-conversions-api';
767
769
  export * from './api/unit-types-api';
@@ -31,13 +31,13 @@ export interface AuthAdjustment {
31
31
  * @type {string}
32
32
  * @memberof AuthAdjustment
33
33
  */
34
- 'approved_From': string;
34
+ 'approved_From'?: string | null;
35
35
  /**
36
36
  * The new date when the authorization approval expires/expired
37
37
  * @type {string}
38
38
  * @memberof AuthAdjustment
39
39
  */
40
- 'approved_Thru': string;
40
+ 'approved_Thru'?: string | null;
41
41
  /**
42
42
  * Indicates if the IBNR should be recalculated after the Auth Adjustment
43
43
  * @type {boolean}
@@ -57,7 +57,19 @@ export interface BillingCycle {
57
57
  */
58
58
  'discount_Pct'?: number | null;
59
59
  /**
60
- * Individual Billing identifies the Billing Cycle for Subscriber level invoices
60
+ * Date record was first added to the system
61
+ * @type {string}
62
+ * @memberof BillingCycle
63
+ */
64
+ 'entry_Date'?: string;
65
+ /**
66
+ * User that first added the record to the system
67
+ * @type {string}
68
+ * @memberof BillingCycle
69
+ */
70
+ 'entry_User'?: string | null;
71
+ /**
72
+ * Individual Billing identifies the Billing Cycle for Subscriber level invoices 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.
61
73
  * @type {boolean}
62
74
  * @memberof BillingCycle
63
75
  */
@@ -74,5 +86,17 @@ export interface BillingCycle {
74
86
  * @memberof BillingCycle
75
87
  */
76
88
  'times_Per_Year'?: number | null;
89
+ /**
90
+ * Date the record was last updated in the system
91
+ * @type {string}
92
+ * @memberof BillingCycle
93
+ */
94
+ 'update_Date'?: string;
95
+ /**
96
+ * User that last updated the record in the system
97
+ * @type {string}
98
+ * @memberof BillingCycle
99
+ */
100
+ 'update_User'?: string | null;
77
101
  }
78
102
 
@@ -21,7 +21,7 @@
21
21
  */
22
22
  export interface CallTracking {
23
23
  /**
24
- * ID assigned to the Call.
24
+ * ID assigned to the Call. 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 CallTracking
27
27
  */
@@ -80,6 +80,18 @@ export interface CallTracking {
80
80
  * @memberof CallTracking
81
81
  */
82
82
  'email_Address'?: string | null;
83
+ /**
84
+ * Date record was first added to the system
85
+ * @type {string}
86
+ * @memberof CallTracking
87
+ */
88
+ 'entry_Date'?: string;
89
+ /**
90
+ * User that first added the record to the system
91
+ * @type {string}
92
+ * @memberof CallTracking
93
+ */
94
+ 'entry_User'?: string | null;
83
95
  /**
84
96
  * Extension of the Caller\'s phone number.
85
97
  * @type {string}
@@ -134,5 +146,17 @@ export interface CallTracking {
134
146
  * @memberof CallTracking
135
147
  */
136
148
  'provider_ID'?: string | null;
149
+ /**
150
+ * Date the record was last updated in the system
151
+ * @type {string}
152
+ * @memberof CallTracking
153
+ */
154
+ 'update_Date'?: string;
155
+ /**
156
+ * User that last updated the record in the system
157
+ * @type {string}
158
+ * @memberof CallTracking
159
+ */
160
+ 'update_User'?: string | null;
137
161
  }
138
162
 
@@ -21,19 +21,19 @@
21
21
  */
22
22
  export interface CheckBatch {
23
23
  /**
24
- * ID of the check batch.
24
+ * ID of the check batch. 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 CheckBatch
27
27
  */
28
28
  'check_Batch': number;
29
29
  /**
30
- * Date when the check batch was created.
30
+ * Date when the check batch was created. 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.
31
31
  * @type {string}
32
32
  * @memberof CheckBatch
33
33
  */
34
34
  'check_Batch_Date': string;
35
35
  /**
36
- * Indicates that the check batch has been exported.
36
+ * Indicates that the check batch has been exported. 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.
37
37
  * @type {boolean}
38
38
  * @memberof CheckBatch
39
39
  */
@@ -50,5 +50,29 @@ export interface CheckBatch {
50
50
  * @memberof CheckBatch
51
51
  */
52
52
  'description'?: string | null;
53
+ /**
54
+ * Date record was first added to the system
55
+ * @type {string}
56
+ * @memberof CheckBatch
57
+ */
58
+ 'entry_Date'?: string;
59
+ /**
60
+ * User that first added the record to the system
61
+ * @type {string}
62
+ * @memberof CheckBatch
63
+ */
64
+ 'entry_User'?: string | null;
65
+ /**
66
+ * Date the record was last updated in the system
67
+ * @type {string}
68
+ * @memberof CheckBatch
69
+ */
70
+ 'update_Date'?: string;
71
+ /**
72
+ * User that last updated the record in the system
73
+ * @type {string}
74
+ * @memberof CheckBatch
75
+ */
76
+ 'update_User'?: string | null;
53
77
  }
54
78
 
@@ -21,91 +21,97 @@
21
21
  */
22
22
  export interface CommissionAdjustment {
23
23
  /**
24
- *
24
+ * Unique identifier for the Commission Activity 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 CommissionAdjustment
27
27
  */
28
28
  'commissionAdjustment_Key': number;
29
29
  /**
30
- *
30
+ * Account for this Commission Adjustment
31
31
  * @type {number}
32
32
  * @memberof CommissionAdjustment
33
33
  */
34
34
  'account_Key'?: number | null;
35
35
  /**
36
- *
36
+ * Amount of the adjustment
37
37
  * @type {number}
38
38
  * @memberof CommissionAdjustment
39
39
  */
40
40
  'adjustment_Amount'?: number | null;
41
41
  /**
42
- *
42
+ * Date of the adjustment
43
43
  * @type {string}
44
44
  * @memberof CommissionAdjustment
45
45
  */
46
46
  'adjustment_Date'?: string | null;
47
47
  /**
48
- *
48
+ * Check Batch for this Commission Adjustment
49
49
  * @type {number}
50
50
  * @memberof CommissionAdjustment
51
51
  */
52
52
  'check_Batch'?: number | null;
53
53
  /**
54
- *
54
+ * Check for this Commission Adjustment
55
55
  * @type {number}
56
56
  * @memberof CommissionAdjustment
57
57
  */
58
58
  'check_ID'?: number | null;
59
59
  /**
60
- *
60
+ * Unique identifier for the CommissionAgencyRepRate table
61
61
  * @type {number}
62
62
  * @memberof CommissionAdjustment
63
63
  */
64
64
  'commissionAgencyRepRate_Key'?: number | null;
65
65
  /**
66
- *
66
+ * Unique identifier for the CommissionTransaction table
67
67
  * @type {number}
68
68
  * @memberof CommissionAdjustment
69
69
  */
70
70
  'commissionTransaction_Key'?: number | null;
71
71
  /**
72
- *
72
+ * Reason for the Commission Adjustment
73
73
  * @type {string}
74
74
  * @memberof CommissionAdjustment
75
75
  */
76
76
  'commission_Adjustment_Reason'?: string | null;
77
77
  /**
78
- *
78
+ * Type of the Commission Adjustment
79
79
  * @type {string}
80
80
  * @memberof CommissionAdjustment
81
81
  */
82
82
  'commission_Adjustment_Type'?: string | null;
83
83
  /**
84
- *
84
+ * Date record was first added to the system
85
85
  * @type {string}
86
86
  * @memberof CommissionAdjustment
87
87
  */
88
88
  'entry_Date'?: string;
89
89
  /**
90
- *
90
+ * User that first added the record to the system
91
91
  * @type {string}
92
92
  * @memberof CommissionAdjustment
93
93
  */
94
94
  'entry_User'?: string | null;
95
95
  /**
96
- *
96
+ * Payor for this Commission Adjustment
97
97
  * @type {string}
98
98
  * @memberof CommissionAdjustment
99
99
  */
100
100
  'payor_ID'?: string | null;
101
101
  /**
102
- *
102
+ * 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.
103
+ * @type {boolean}
104
+ * @memberof CommissionAdjustment
105
+ */
106
+ 'pre_Payment_Adjustment': boolean;
107
+ /**
108
+ * Date the record was last updated in the system
103
109
  * @type {string}
104
110
  * @memberof CommissionAdjustment
105
111
  */
106
112
  'update_Date'?: string;
107
113
  /**
108
- *
114
+ * User that last updated the record in the system
109
115
  * @type {string}
110
116
  * @memberof CommissionAdjustment
111
117
  */
@@ -21,97 +21,115 @@
21
21
  */
22
22
  export interface CommissionRate {
23
23
  /**
24
- *
24
+ * Unique identifier for the Commission Rate 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 CommissionRate
27
27
  */
28
28
  'commissionRate_Key': number;
29
29
  /**
30
- *
30
+ * Account of the Commission Rate
31
31
  * @type {number}
32
32
  * @memberof CommissionRate
33
33
  */
34
34
  'account_Key'?: number | null;
35
35
  /**
36
- *
36
+ * Category of the Commission Rate
37
37
  * @type {string}
38
38
  * @memberof CommissionRate
39
39
  */
40
40
  'commissionRate_Category'?: string | null;
41
41
  /**
42
- *
42
+ * User defind identifier for the Commission Rate
43
43
  * @type {string}
44
44
  * @memberof CommissionRate
45
45
  */
46
46
  'commissionRate_ID'?: string | null;
47
47
  /**
48
- *
48
+ * Type of the Commission Rate
49
49
  * @type {string}
50
50
  * @memberof CommissionRate
51
51
  */
52
52
  'commissionRate_Type'?: string | null;
53
53
  /**
54
- *
54
+ * Commission Basis used for the rate
55
55
  * @type {string}
56
56
  * @memberof CommissionRate
57
57
  */
58
58
  'commission_Basis'?: string | null;
59
59
  /**
60
- *
60
+ * Commission Cycle used for the rate
61
61
  * @type {string}
62
62
  * @memberof CommissionRate
63
63
  */
64
64
  'commission_Cycle'?: string | null;
65
65
  /**
66
- *
66
+ * Description of the Commission Rate
67
67
  * @type {string}
68
68
  * @memberof CommissionRate
69
69
  */
70
70
  'description'?: string | null;
71
71
  /**
72
- *
72
+ * Division of the Commission Rate
73
73
  * @type {string}
74
74
  * @memberof CommissionRate
75
75
  */
76
76
  'division_ID'?: string | null;
77
77
  /**
78
- *
78
+ * Effective Date of the Commission Rate
79
79
  * @type {string}
80
80
  * @memberof CommissionRate
81
81
  */
82
82
  'effective_Date'?: string | null;
83
83
  /**
84
- *
84
+ * End Date of the Commission Rate
85
85
  * @type {string}
86
86
  * @memberof CommissionRate
87
87
  */
88
88
  'end_Date'?: string | null;
89
89
  /**
90
- *
90
+ * Date record was first added to the system
91
91
  * @type {string}
92
92
  * @memberof CommissionRate
93
93
  */
94
94
  'entry_Date'?: string;
95
95
  /**
96
- *
96
+ * User that first added the record to the system
97
97
  * @type {string}
98
98
  * @memberof CommissionRate
99
99
  */
100
100
  'entry_User'?: string | null;
101
101
  /**
102
- *
102
+ * Group of the Commission Rate
103
103
  * @type {string}
104
104
  * @memberof CommissionRate
105
105
  */
106
106
  'group_ID'?: string | null;
107
+ /**
108
+ *
109
+ * @type {number}
110
+ * @memberof CommissionRate
111
+ */
112
+ 'issue_Age_From'?: number | null;
113
+ /**
114
+ *
115
+ * @type {number}
116
+ * @memberof CommissionRate
117
+ */
118
+ 'issue_Age_Thru'?: number | null;
107
119
  /**
108
120
  *
109
121
  * @type {string}
110
122
  * @memberof CommissionRate
111
123
  */
124
+ 'issue_State'?: string | null;
125
+ /**
126
+ * Member Sequnce of the Commission Rate
127
+ * @type {string}
128
+ * @memberof CommissionRate
129
+ */
112
130
  'member_Seq'?: string | null;
113
131
  /**
114
- *
132
+ * Commission Rate that this record is a child of
115
133
  * @type {number}
116
134
  * @memberof CommissionRate
117
135
  */
@@ -121,138 +139,174 @@ export interface CommissionRate {
121
139
  * @type {string}
122
140
  * @memberof CommissionRate
123
141
  */
142
+ 'parent_Rate_Cluster'?: string | null;
143
+ /**
144
+ * Payor of the Commission Rate
145
+ * @type {string}
146
+ * @memberof CommissionRate
147
+ */
124
148
  'payor_ID'?: string | null;
125
149
  /**
126
- *
150
+ * Plan of the Commission Rate
127
151
  * @type {string}
128
152
  * @memberof CommissionRate
129
153
  */
130
154
  'plan_ID'?: string | null;
131
155
  /**
132
156
  *
157
+ * @type {string}
158
+ * @memberof CommissionRate
159
+ */
160
+ 'plan_Type'?: string | null;
161
+ /**
162
+ *
163
+ * @type {string}
164
+ * @memberof CommissionRate
165
+ */
166
+ 'pre_Payment_Adjustment_Reason'?: string | null;
167
+ /**
168
+ * 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.
169
+ * @type {boolean}
170
+ * @memberof CommissionRate
171
+ */
172
+ 'pre_Payment_Rate': boolean;
173
+ /**
174
+ *
175
+ * @type {string}
176
+ * @memberof CommissionRate
177
+ */
178
+ 'pre_Payment_Type'?: string | null;
179
+ /**
180
+ * Not used
133
181
  * @type {number}
134
182
  * @memberof CommissionRate
135
183
  */
136
184
  'premRate_Key'?: number | null;
137
185
  /**
138
- *
186
+ * Decimal value that defines the base rate
139
187
  * @type {number}
140
188
  * @memberof CommissionRate
141
189
  */
142
190
  'rate'?: number | null;
143
191
  /**
144
- *
192
+ * Maximum the rate will be regardless of the calculation
145
193
  * @type {number}
146
194
  * @memberof CommissionRate
147
195
  */
148
196
  'rate_Max'?: number | null;
149
197
  /**
150
- *
198
+ * Minimum the rate will be regardless of the calculation
151
199
  * @type {number}
152
200
  * @memberof CommissionRate
153
201
  */
154
202
  'rate_Min'?: number | null;
155
203
  /**
156
- *
204
+ * Precision that the rate is rounded to
157
205
  * @type {number}
158
206
  * @memberof CommissionRate
159
207
  */
160
208
  'rate_Round_Precision'?: number | null;
161
209
  /**
162
- *
210
+ * Type that determine how the rate is rounded
163
211
  * @type {string}
164
212
  * @memberof CommissionRate
165
213
  */
166
214
  'rate_Round_Type'?: string | null;
167
215
  /**
168
- *
216
+ * First variable used in calculating the rate based on the type
169
217
  * @type {number}
170
218
  * @memberof CommissionRate
171
219
  */
172
220
  'rate_Variable1'?: number | null;
173
221
  /**
174
- *
222
+ * Second variable used in calculating the rate based on the type
175
223
  * @type {number}
176
224
  * @memberof CommissionRate
177
225
  */
178
226
  'rate_Variable2'?: number | null;
179
227
  /**
180
- *
228
+ * Third variable used in calculating the rate based on the type
181
229
  * @type {number}
182
230
  * @memberof CommissionRate
183
231
  */
184
232
  'rate_Variable3'?: number | null;
185
233
  /**
186
- *
234
+ * Determines if Header Adjustments are included in the scaling 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.
187
235
  * @type {boolean}
188
236
  * @memberof CommissionRate
189
237
  */
190
238
  'scale_Exclude_Header_Adjustments': boolean;
191
239
  /**
192
- *
240
+ * Beginning range of the amount used for scaling
193
241
  * @type {number}
194
242
  * @memberof CommissionRate
195
243
  */
196
244
  'scale_From'?: number | null;
197
245
  /**
198
- *
246
+ * Ending range of the amount used for scaling
199
247
  * @type {number}
200
248
  * @memberof CommissionRate
201
249
  */
202
250
  'scale_Thru'?: number | null;
203
251
  /**
204
- *
252
+ * Used to detemine what date to begin the range for scaling
205
253
  * @type {string}
206
254
  * @memberof CommissionRate
207
255
  */
208
256
  'scale_Timeframe'?: string | null;
209
257
  /**
210
- *
258
+ * Determines what amount the scale is based off of
211
259
  * @type {string}
212
260
  * @memberof CommissionRate
213
261
  */
214
262
  'scale_Type'?: string | null;
215
263
  /**
216
- *
264
+ * Subscriber of the Commission Rate
217
265
  * @type {string}
218
266
  * @memberof CommissionRate
219
267
  */
220
268
  'subscriber_ID'?: string | null;
221
269
  /**
222
- *
270
+ * Used to detemine what date to begin the range for scaling
223
271
  * @type {string}
224
272
  * @memberof CommissionRate
225
273
  */
226
274
  'term_Range_Date_Type'?: string | null;
227
275
  /**
228
- *
276
+ * Beginning range of a number of Days, Months, or Years
229
277
  * @type {number}
230
278
  * @memberof CommissionRate
231
279
  */
232
280
  'term_Range_From'?: number | null;
233
281
  /**
234
- *
282
+ * Ending range of a number of Days, Months, or Years
235
283
  * @type {number}
236
284
  * @memberof CommissionRate
237
285
  */
238
286
  'term_Range_Thru'?: number | null;
239
287
  /**
240
- *
288
+ * Determines if Term Range is Days, Months, or Years
241
289
  * @type {string}
242
290
  * @memberof CommissionRate
243
291
  */
244
292
  'term_Range_Type'?: string | null;
245
293
  /**
246
- *
294
+ * Date the record was last updated in the system
247
295
  * @type {string}
248
296
  * @memberof CommissionRate
249
297
  */
250
298
  'update_Date'?: string;
251
299
  /**
252
- *
300
+ * User that last updated the record in the system
253
301
  * @type {string}
254
302
  * @memberof CommissionRate
255
303
  */
256
304
  'update_User'?: string | null;
305
+ /**
306
+ * 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.
307
+ * @type {boolean}
308
+ * @memberof CommissionRate
309
+ */
310
+ 'use_Initial_Premium': boolean;
257
311
  }
258
312
 
@@ -1808,6 +1808,12 @@ export interface CompanyData {
1808
1808
  * @memberof CompanyData
1809
1809
  */
1810
1810
  'password_Minimum'?: number | null;
1811
+ /**
1812
+ *
1813
+ * @type {string}
1814
+ * @memberof CompanyData
1815
+ */
1816
+ 'pay_Period_Start_Date'?: string | null;
1811
1817
  /**
1812
1818
  * Whether or not invoices will be prorated 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.
1813
1819
  * @type {boolean}
@@ -1958,6 +1964,12 @@ export interface CompanyData {
1958
1964
  * @memberof CompanyData
1959
1965
  */
1960
1966
  'repriced_Line'?: string | null;
1967
+ /**
1968
+ * 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.
1969
+ * @type {boolean}
1970
+ * @memberof CompanyData
1971
+ */
1972
+ 'request_ID_Card_Prompt_Enrollment': boolean;
1961
1973
  /**
1962
1974
  * Not used in system configuration. Used on external and/or custom procedures.
1963
1975
  * @type {string}