@vbasoftware/vbapi-vbasoftware-typescript-axios 1.20230710.1 → 1.20230722.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.
@@ -21,7 +21,7 @@
21
21
  */
22
22
  export interface ReportSeriesStep {
23
23
  /**
24
- * ID of the report series step.
24
+ * ID of the report series step. 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 ReportSeriesStep
27
27
  */
@@ -74,6 +74,18 @@ export interface ReportSeriesStep {
74
74
  * @memberof ReportSeriesStep
75
75
  */
76
76
  'end_Time'?: string | null;
77
+ /**
78
+ * Date record was first added to the system
79
+ * @type {string}
80
+ * @memberof ReportSeriesStep
81
+ */
82
+ 'entry_Date'?: string;
83
+ /**
84
+ * User that first added the record to the system
85
+ * @type {string}
86
+ * @memberof ReportSeriesStep
87
+ */
88
+ 'entry_User'?: string | null;
77
89
  /**
78
90
  * Indicates the priority of the event.
79
91
  * @type {string}
@@ -117,7 +129,7 @@ export interface ReportSeriesStep {
117
129
  */
118
130
  'frequency_Factor'?: number | null;
119
131
  /**
120
- * Indicates that the event should occur on this day of the week.
132
+ * Indicates that the event should occur on this day of the week. 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.
121
133
  * @type {boolean}
122
134
  * @memberof ReportSeriesStep
123
135
  */
@@ -129,7 +141,7 @@ export interface ReportSeriesStep {
129
141
  */
130
142
  'interval_Option'?: number | null;
131
143
  /**
132
- * Indicates that the event should occur on this day of the week.
144
+ * Indicates that the event should occur on this day of the week. 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.
133
145
  * @type {boolean}
134
146
  * @memberof ReportSeriesStep
135
147
  */
@@ -159,7 +171,7 @@ export interface ReportSeriesStep {
159
171
  */
160
172
  'relative_Frequency'?: number | null;
161
173
  /**
162
- * ID of the report series to which the step belongs.
174
+ * ID of the report series to which the step belongs. 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.
163
175
  * @type {number}
164
176
  * @memberof ReportSeriesStep
165
177
  */
@@ -201,7 +213,7 @@ export interface ReportSeriesStep {
201
213
  */
202
214
  'retry'?: number | null;
203
215
  /**
204
- * Indicates that the event should occur on this day of the week.
216
+ * Indicates that the event should occur on this day of the week. 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.
205
217
  * @type {boolean}
206
218
  * @memberof ReportSeriesStep
207
219
  */
@@ -261,7 +273,7 @@ export interface ReportSeriesStep {
261
273
  */
262
274
  'step_MetaData'?: string | null;
263
275
  /**
264
- * Identifies the sequence number assigned to the step. This number dictates which order the report series steps will occur (ascending order).
276
+ * Identifies the sequence number assigned to the step. This number dictates which order the report series steps will occur (ascending order). 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.
265
277
  * @type {number}
266
278
  * @memberof ReportSeriesStep
267
279
  */
@@ -273,13 +285,13 @@ export interface ReportSeriesStep {
273
285
  */
274
286
  'step_Type'?: string | null;
275
287
  /**
276
- * Indicates that the event should occur on this day of the week.
288
+ * Indicates that the event should occur on this day of the week. 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.
277
289
  * @type {boolean}
278
290
  * @memberof ReportSeriesStep
279
291
  */
280
292
  'sunday': boolean;
281
293
  /**
282
- * Indicates that the event should occur on this day of the week.
294
+ * Indicates that the event should occur on this day of the week. 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.
283
295
  * @type {boolean}
284
296
  * @memberof ReportSeriesStep
285
297
  */
@@ -291,11 +303,23 @@ export interface ReportSeriesStep {
291
303
  */
292
304
  'total_Occurrences'?: number | null;
293
305
  /**
294
- * Indicates that the event should occur on this day of the week.
306
+ * Indicates that the event should occur on this day of the week. 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.
295
307
  * @type {boolean}
296
308
  * @memberof ReportSeriesStep
297
309
  */
298
310
  'tuesday': boolean;
311
+ /**
312
+ * Date the record was last updated in the system
313
+ * @type {string}
314
+ * @memberof ReportSeriesStep
315
+ */
316
+ 'update_Date'?: string;
317
+ /**
318
+ * User that last updated the record in the system
319
+ * @type {string}
320
+ * @memberof ReportSeriesStep
321
+ */
322
+ 'update_User'?: string | null;
299
323
  /**
300
324
  * Identifies which category the document belongs to.
301
325
  * @type {string}
@@ -399,7 +423,7 @@ export interface ReportSeriesStep {
399
423
  */
400
424
  'vbaGateway_UserID'?: string | null;
401
425
  /**
402
- * Indicates that the event should occur on this day of the week.
426
+ * Indicates that the event should occur on this day of the week. 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.
403
427
  * @type {boolean}
404
428
  * @memberof ReportSeriesStep
405
429
  */
@@ -21,7 +21,7 @@
21
21
  */
22
22
  export interface ReportSeriesTrackingArg {
23
23
  /**
24
- * ID of the report series tracking argument.
24
+ * ID of the report series tracking argument. 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 ReportSeriesTrackingArg
27
27
  */
@@ -45,16 +45,40 @@ export interface ReportSeriesTrackingArg {
45
45
  */
46
46
  'argument_Value'?: string | null;
47
47
  /**
48
- * ID of the report series process associated with the tracking argument.
48
+ * Date record was first added to the system
49
+ * @type {string}
50
+ * @memberof ReportSeriesTrackingArg
51
+ */
52
+ 'entry_Date'?: string;
53
+ /**
54
+ * User that first added the record to the system
55
+ * @type {string}
56
+ * @memberof ReportSeriesTrackingArg
57
+ */
58
+ 'entry_User'?: string | null;
59
+ /**
60
+ * ID of the report series process associated with the tracking argument. 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.
49
61
  * @type {number}
50
62
  * @memberof ReportSeriesTrackingArg
51
63
  */
52
64
  'reportSeriesProcess_Key': number;
53
65
  /**
54
- * ID of the report series that the tracking argument is associated with.
66
+ * ID of the report series that the tracking argument is associated with. 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.
55
67
  * @type {number}
56
68
  * @memberof ReportSeriesTrackingArg
57
69
  */
58
70
  'reportSeries_Key': number;
71
+ /**
72
+ * Date the record was last updated in the system
73
+ * @type {string}
74
+ * @memberof ReportSeriesTrackingArg
75
+ */
76
+ 'update_Date'?: string;
77
+ /**
78
+ * User that last updated the record in the system
79
+ * @type {string}
80
+ * @memberof ReportSeriesTrackingArg
81
+ */
82
+ 'update_User'?: string | null;
59
83
  }
60
84
 
@@ -21,11 +21,23 @@
21
21
  */
22
22
  export interface ReportTrack {
23
23
  /**
24
- * ID of the report tracking.
24
+ * ID of the report tracking. 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 ReportTrack
27
27
  */
28
28
  'reportTrack_Key': number;
29
+ /**
30
+ * Date record was first added to the system
31
+ * @type {string}
32
+ * @memberof ReportTrack
33
+ */
34
+ 'entry_Date'?: string;
35
+ /**
36
+ * User that first added the record to the system
37
+ * @type {string}
38
+ * @memberof ReportTrack
39
+ */
40
+ 'entry_User'?: string | null;
29
41
  /**
30
42
  * Identifies the priority of the report.
31
43
  * @type {string}
@@ -51,7 +63,7 @@ export interface ReportTrack {
51
63
  */
52
64
  'received_User'?: string | null;
53
65
  /**
54
- * ID of the report queue detail.
66
+ * ID of the report queue detail. 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.
55
67
  * @type {number}
56
68
  * @memberof ReportTrack
57
69
  */
@@ -86,5 +98,17 @@ export interface ReportTrack {
86
98
  * @memberof ReportTrack
87
99
  */
88
100
  'tracking_Status'?: string | null;
101
+ /**
102
+ * Date the record was last updated in the system
103
+ * @type {string}
104
+ * @memberof ReportTrack
105
+ */
106
+ 'update_Date'?: string;
107
+ /**
108
+ * User that last updated the record in the system
109
+ * @type {string}
110
+ * @memberof ReportTrack
111
+ */
112
+ 'update_User'?: string | null;
89
113
  }
90
114
 
@@ -39,13 +39,13 @@ export interface SubEnrollment {
39
39
  */
40
40
  'division_ID': string;
41
41
  /**
42
- * References the GroupContract.Coverage_Start value in the parent table.
42
+ * References the GroupContract.Coverage_Start value in the parent table. 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.
43
43
  * @type {string}
44
44
  * @memberof SubEnrollment
45
45
  */
46
46
  'group_Coverage_Start': string;
47
47
  /**
48
- * Start date of Subenrollment coverage.
48
+ * Start date of Subenrollment coverage. 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.
49
49
  * @type {string}
50
50
  * @memberof SubEnrollment
51
51
  */
@@ -74,6 +74,18 @@ export interface SubEnrollment {
74
74
  * @memberof SubEnrollment
75
75
  */
76
76
  'end_Date'?: string | null;
77
+ /**
78
+ * Date when the record was first added to the system.
79
+ * @type {string}
80
+ * @memberof SubEnrollment
81
+ */
82
+ 'entry_Date'?: string;
83
+ /**
84
+ * User that first added the record to the system.
85
+ * @type {string}
86
+ * @memberof SubEnrollment
87
+ */
88
+ 'entry_User'?: string | null;
77
89
  /**
78
90
  * Lifetime maximum for indentified policy. [Informational Only]
79
91
  * @type {number}
@@ -104,5 +116,17 @@ export interface SubEnrollment {
104
116
  * @memberof SubEnrollment
105
117
  */
106
118
  'term_Date'?: string | null;
119
+ /**
120
+ * Date when the record was last updated in the system.
121
+ * @type {string}
122
+ * @memberof SubEnrollment
123
+ */
124
+ 'update_Date'?: string;
125
+ /**
126
+ * User that last updated the record in the system.
127
+ * @type {string}
128
+ * @memberof SubEnrollment
129
+ */
130
+ 'update_User'?: string | null;
107
131
  }
108
132
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vbasoftware/vbapi-vbasoftware-typescript-axios",
3
- "version": "1.20230710.1",
3
+ "version": "1.20230722.1",
4
4
  "description": "APIs for VBASoftware APIs",
5
5
  "main": "index.js",
6
6
  "scripts": {