@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.
- package/.openapi-generator/FILES +4 -2
- package/api/benefits-api.ts +40 -13
- package/api/modifiers-api.ts +40 -13
- package/api/provider-api.ts +131 -15
- package/api/report-queue-detail-arguments-api.ts +77 -155
- package/api/report-queue-logs-api.ts +77 -155
- package/api/report-queue-schedules-api.ts +77 -107
- package/api/report-series-api.ts +107 -0
- package/api/report-series-process-templates-api.ts +77 -155
- package/api/{report-series-step-arguments-api.ts → report-series-step-args-api.ts} +103 -181
- package/api/report-series-steps-api.ts +77 -107
- package/api/{report-series-tracking-arguments-api.ts → report-series-tracking-args-api.ts} +103 -181
- package/api/report-static-lists-api.ts +242 -0
- package/api/report-tracking-api.ts +68 -155
- package/api.ts +3 -2
- package/models/idcode-type.ts +26 -2
- package/models/index.ts +1 -0
- package/models/modifier.ts +24 -0
- package/models/note-attachment.ts +26 -2
- package/models/provider-list-vbaresponse.ts +45 -0
- package/models/provider.ts +34 -10
- package/models/report-queue-detail-arg.ts +26 -2
- package/models/report-queue-log.ts +27 -3
- package/models/report-queue-schedule.ts +27 -3
- package/models/report-series-process-template.ts +27 -3
- package/models/report-series-step-arg.ts +26 -2
- package/models/report-series-step.ts +34 -10
- package/models/report-series-tracking-arg.ts +27 -3
- package/models/report-track.ts +26 -2
- package/models/sub-enrollment.ts +26 -2
- package/package.json +1 -1
package/models/idcode-type.ts
CHANGED
|
@@ -45,11 +45,23 @@ export interface IDCodeType {
|
|
|
45
45
|
*/
|
|
46
46
|
'description'?: string | null;
|
|
47
47
|
/**
|
|
48
|
-
* Flag indicating the ID Code is used for EDI transactions
|
|
48
|
+
* Flag indicating the ID Code is used for EDI transactions 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.
|
|
49
49
|
* @type {boolean}
|
|
50
50
|
* @memberof IDCodeType
|
|
51
51
|
*/
|
|
52
52
|
'edI_Code': boolean;
|
|
53
|
+
/**
|
|
54
|
+
* Date record was first added to the system
|
|
55
|
+
* @type {string}
|
|
56
|
+
* @memberof IDCodeType
|
|
57
|
+
*/
|
|
58
|
+
'entry_Date'?: string;
|
|
59
|
+
/**
|
|
60
|
+
* User that first added the record to the system
|
|
61
|
+
* @type {string}
|
|
62
|
+
* @memberof IDCodeType
|
|
63
|
+
*/
|
|
64
|
+
'entry_User'?: string | null;
|
|
53
65
|
/**
|
|
54
66
|
* Format of the data portion of the ID Code
|
|
55
67
|
* @type {string}
|
|
@@ -63,10 +75,22 @@ export interface IDCodeType {
|
|
|
63
75
|
*/
|
|
64
76
|
'length'?: number | null;
|
|
65
77
|
/**
|
|
66
|
-
* Flag indicating the ID Code is part of the base application
|
|
78
|
+
* Flag indicating the ID Code is part of the base application 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.
|
|
67
79
|
* @type {boolean}
|
|
68
80
|
* @memberof IDCodeType
|
|
69
81
|
*/
|
|
70
82
|
'system_Code': boolean;
|
|
83
|
+
/**
|
|
84
|
+
* Date the record was last updated in the system
|
|
85
|
+
* @type {string}
|
|
86
|
+
* @memberof IDCodeType
|
|
87
|
+
*/
|
|
88
|
+
'update_Date'?: string;
|
|
89
|
+
/**
|
|
90
|
+
* User that last updated the record in the system
|
|
91
|
+
* @type {string}
|
|
92
|
+
* @memberof IDCodeType
|
|
93
|
+
*/
|
|
94
|
+
'update_User'?: string | null;
|
|
71
95
|
}
|
|
72
96
|
|
package/models/index.ts
CHANGED
|
@@ -1815,6 +1815,7 @@ export * from './provider-drgvbaresponse';
|
|
|
1815
1815
|
export * from './provider-languages';
|
|
1816
1816
|
export * from './provider-languages-list-vbaresponse';
|
|
1817
1817
|
export * from './provider-languages-vbaresponse';
|
|
1818
|
+
export * from './provider-list-vbaresponse';
|
|
1818
1819
|
export * from './provider-network';
|
|
1819
1820
|
export * from './provider-network-list-vbaresponse';
|
|
1820
1821
|
export * from './provider-network-modifier';
|
package/models/modifier.ts
CHANGED
|
@@ -32,6 +32,18 @@ export interface Modifier {
|
|
|
32
32
|
* @memberof Modifier
|
|
33
33
|
*/
|
|
34
34
|
'effective_Date'?: string | null;
|
|
35
|
+
/**
|
|
36
|
+
* Date record was first added to the system
|
|
37
|
+
* @type {string}
|
|
38
|
+
* @memberof Modifier
|
|
39
|
+
*/
|
|
40
|
+
'entry_Date'?: string;
|
|
41
|
+
/**
|
|
42
|
+
* User that first added the record to the system
|
|
43
|
+
* @type {string}
|
|
44
|
+
* @memberof Modifier
|
|
45
|
+
*/
|
|
46
|
+
'entry_User'?: string | null;
|
|
35
47
|
/**
|
|
36
48
|
* Percentage used when the modifier is applied
|
|
37
49
|
* @type {number}
|
|
@@ -50,5 +62,17 @@ export interface Modifier {
|
|
|
50
62
|
* @memberof Modifier
|
|
51
63
|
*/
|
|
52
64
|
'term_Date'?: string | null;
|
|
65
|
+
/**
|
|
66
|
+
* Date the record was last updated in the system
|
|
67
|
+
* @type {string}
|
|
68
|
+
* @memberof Modifier
|
|
69
|
+
*/
|
|
70
|
+
'update_Date'?: string;
|
|
71
|
+
/**
|
|
72
|
+
* User that last updated the record in the system
|
|
73
|
+
* @type {string}
|
|
74
|
+
* @memberof Modifier
|
|
75
|
+
*/
|
|
76
|
+
'update_User'?: string | null;
|
|
53
77
|
}
|
|
54
78
|
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
*/
|
|
22
22
|
export interface NoteAttachment {
|
|
23
23
|
/**
|
|
24
|
-
* Key value identifying an attachment to a note
|
|
24
|
+
* Key value identifying an attachment to a note 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 NoteAttachment
|
|
27
27
|
*/
|
|
@@ -45,10 +45,34 @@ export interface NoteAttachment {
|
|
|
45
45
|
*/
|
|
46
46
|
'attachment_Path'?: string | null;
|
|
47
47
|
/**
|
|
48
|
-
*
|
|
48
|
+
* Date record was first added to the system
|
|
49
|
+
* @type {string}
|
|
50
|
+
* @memberof NoteAttachment
|
|
51
|
+
*/
|
|
52
|
+
'entry_Date'?: string;
|
|
53
|
+
/**
|
|
54
|
+
* User that first added the record to the system
|
|
55
|
+
* @type {string}
|
|
56
|
+
* @memberof NoteAttachment
|
|
57
|
+
*/
|
|
58
|
+
'entry_User'?: string | null;
|
|
59
|
+
/**
|
|
60
|
+
* Key value identifying the note that attachment 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.
|
|
49
61
|
* @type {number}
|
|
50
62
|
* @memberof NoteAttachment
|
|
51
63
|
*/
|
|
52
64
|
'note_Key': number;
|
|
65
|
+
/**
|
|
66
|
+
* Date the record was last updated in the system
|
|
67
|
+
* @type {string}
|
|
68
|
+
* @memberof NoteAttachment
|
|
69
|
+
*/
|
|
70
|
+
'update_Date'?: string;
|
|
71
|
+
/**
|
|
72
|
+
* User that last updated the record in the system
|
|
73
|
+
* @type {string}
|
|
74
|
+
* @memberof NoteAttachment
|
|
75
|
+
*/
|
|
76
|
+
'update_User'?: string | null;
|
|
53
77
|
}
|
|
54
78
|
|
|
@@ -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 { Provider } from './provider';
|
|
18
|
+
import { VBAProblemDetails } from './vbaproblem-details';
|
|
19
|
+
|
|
20
|
+
/**
|
|
21
|
+
*
|
|
22
|
+
* @export
|
|
23
|
+
* @interface ProviderListVBAResponse
|
|
24
|
+
*/
|
|
25
|
+
export interface ProviderListVBAResponse {
|
|
26
|
+
/**
|
|
27
|
+
*
|
|
28
|
+
* @type {Array<Provider>}
|
|
29
|
+
* @memberof ProviderListVBAResponse
|
|
30
|
+
*/
|
|
31
|
+
'data'?: Array<Provider> | null;
|
|
32
|
+
/**
|
|
33
|
+
*
|
|
34
|
+
* @type {VBAProblemDetails}
|
|
35
|
+
* @memberof ProviderListVBAResponse
|
|
36
|
+
*/
|
|
37
|
+
'error'?: VBAProblemDetails;
|
|
38
|
+
/**
|
|
39
|
+
*
|
|
40
|
+
* @type {Debug}
|
|
41
|
+
* @memberof ProviderListVBAResponse
|
|
42
|
+
*/
|
|
43
|
+
'debug'?: Debug;
|
|
44
|
+
}
|
|
45
|
+
|
package/models/provider.ts
CHANGED
|
@@ -39,13 +39,13 @@ export interface Provider {
|
|
|
39
39
|
*/
|
|
40
40
|
'accepting_Age_Thru'?: number | null;
|
|
41
41
|
/**
|
|
42
|
-
* Indicates whether the selected Provider is accepting new patients.
|
|
42
|
+
* Indicates whether the selected Provider is accepting new patients. 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.
|
|
43
43
|
* @type {boolean}
|
|
44
44
|
* @memberof Provider
|
|
45
45
|
*/
|
|
46
46
|
'accepting_Patients': boolean;
|
|
47
47
|
/**
|
|
48
|
-
* No longer in use. This fields has been replaced by the Credentialing tables.
|
|
48
|
+
* No longer in use. This fields has been replaced by the Credentialing tables. 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.
|
|
49
49
|
* @type {boolean}
|
|
50
50
|
* @memberof Provider
|
|
51
51
|
*/
|
|
@@ -57,13 +57,13 @@ export interface Provider {
|
|
|
57
57
|
*/
|
|
58
58
|
'accepts_Plan_Fees': boolean;
|
|
59
59
|
/**
|
|
60
|
-
* No longer in use. This fields has been replaced by the Credentialing tables.
|
|
60
|
+
* No longer in use. This fields has been replaced by the Credentialing tables. 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
61
|
* @type {boolean}
|
|
62
62
|
* @memberof Provider
|
|
63
63
|
*/
|
|
64
64
|
'accepts_Withhold': boolean;
|
|
65
65
|
/**
|
|
66
|
-
* Indicates whether the Provider is active.
|
|
66
|
+
* Indicates whether the Provider is active. 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.
|
|
67
67
|
* @type {boolean}
|
|
68
68
|
* @memberof Provider
|
|
69
69
|
*/
|
|
@@ -81,7 +81,7 @@ export interface Provider {
|
|
|
81
81
|
*/
|
|
82
82
|
'address2'?: string | null;
|
|
83
83
|
/**
|
|
84
|
-
* When this option is selected, adjudication to mark every claim as \'Advice to Pay\' (ATP). Advice to Pay claims do not produce check records when processed.
|
|
84
|
+
* When this option is selected, adjudication to mark every claim as \'Advice to Pay\' (ATP). Advice to Pay claims do not produce check records when processed. 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.
|
|
85
85
|
* @type {boolean}
|
|
86
86
|
* @memberof Provider
|
|
87
87
|
*/
|
|
@@ -194,6 +194,18 @@ export interface Provider {
|
|
|
194
194
|
* @memberof Provider
|
|
195
195
|
*/
|
|
196
196
|
'entity_ID'?: string | null;
|
|
197
|
+
/**
|
|
198
|
+
* Date when the record was first added to the system.
|
|
199
|
+
* @type {string}
|
|
200
|
+
* @memberof Provider
|
|
201
|
+
*/
|
|
202
|
+
'entry_Date'?: string;
|
|
203
|
+
/**
|
|
204
|
+
* User that first added the record to the system.
|
|
205
|
+
* @type {string}
|
|
206
|
+
* @memberof Provider
|
|
207
|
+
*/
|
|
208
|
+
'entry_User'?: string | null;
|
|
197
209
|
/**
|
|
198
210
|
* Identifies the type of individual Provider or Provider entity.
|
|
199
211
|
* @type {string}
|
|
@@ -219,7 +231,7 @@ export interface Provider {
|
|
|
219
231
|
*/
|
|
220
232
|
'fax_Number'?: string | null;
|
|
221
233
|
/**
|
|
222
|
-
* Indicates that the Provider is opted out of fax communication.
|
|
234
|
+
* Indicates that the Provider is opted out of fax communication. 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.
|
|
223
235
|
* @type {boolean}
|
|
224
236
|
* @memberof Provider
|
|
225
237
|
*/
|
|
@@ -237,7 +249,7 @@ export interface Provider {
|
|
|
237
249
|
*/
|
|
238
250
|
'first_Name'?: string | null;
|
|
239
251
|
/**
|
|
240
|
-
* Indicates whether the Provider facilities have handicap accessibility.
|
|
252
|
+
* Indicates whether the Provider facilities have handicap accessibility. 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.
|
|
241
253
|
* @type {boolean}
|
|
242
254
|
* @memberof Provider
|
|
243
255
|
*/
|
|
@@ -411,7 +423,7 @@ export interface Provider {
|
|
|
411
423
|
*/
|
|
412
424
|
'middle_Name'?: string | null;
|
|
413
425
|
/**
|
|
414
|
-
* Indicates whether the Provider facilities have nitrous oxide available for patients.
|
|
426
|
+
* Indicates whether the Provider facilities have nitrous oxide available for patients. 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.
|
|
415
427
|
* @type {boolean}
|
|
416
428
|
* @memberof Provider
|
|
417
429
|
*/
|
|
@@ -519,7 +531,7 @@ export interface Provider {
|
|
|
519
531
|
*/
|
|
520
532
|
'soc_Sec_Number'?: string | null;
|
|
521
533
|
/**
|
|
522
|
-
* No longer in use. This fields has been replaced by the Credentialing tables.
|
|
534
|
+
* No longer in use. This fields has been replaced by the Credentialing tables. 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.
|
|
523
535
|
* @type {boolean}
|
|
524
536
|
* @memberof Provider
|
|
525
537
|
*/
|
|
@@ -549,7 +561,19 @@ export interface Provider {
|
|
|
549
561
|
*/
|
|
550
562
|
'upiN_Number'?: string | null;
|
|
551
563
|
/**
|
|
552
|
-
*
|
|
564
|
+
* Date when the record was last updated in the system.
|
|
565
|
+
* @type {string}
|
|
566
|
+
* @memberof Provider
|
|
567
|
+
*/
|
|
568
|
+
'update_Date'?: string;
|
|
569
|
+
/**
|
|
570
|
+
* User that last updated the record in the system.
|
|
571
|
+
* @type {string}
|
|
572
|
+
* @memberof Provider
|
|
573
|
+
*/
|
|
574
|
+
'update_User'?: string | null;
|
|
575
|
+
/**
|
|
576
|
+
* When this option is selected, adjudication will error any of this Provider\'s claims that contain revenue codes. 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.
|
|
553
577
|
* @type {boolean}
|
|
554
578
|
* @memberof Provider
|
|
555
579
|
*/
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
*/
|
|
22
22
|
export interface ReportQueueDetailArg {
|
|
23
23
|
/**
|
|
24
|
-
* ID of the report queue detail argument
|
|
24
|
+
* ID of the report queue detail 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 ReportQueueDetailArg
|
|
27
27
|
*/
|
|
@@ -45,10 +45,34 @@ export interface ReportQueueDetailArg {
|
|
|
45
45
|
*/
|
|
46
46
|
'argument_Value'?: string | null;
|
|
47
47
|
/**
|
|
48
|
-
*
|
|
48
|
+
* Date record was first added to the system
|
|
49
|
+
* @type {string}
|
|
50
|
+
* @memberof ReportQueueDetailArg
|
|
51
|
+
*/
|
|
52
|
+
'entry_Date'?: string;
|
|
53
|
+
/**
|
|
54
|
+
* User that first added the record to the system
|
|
55
|
+
* @type {string}
|
|
56
|
+
* @memberof ReportQueueDetailArg
|
|
57
|
+
*/
|
|
58
|
+
'entry_User'?: string | null;
|
|
59
|
+
/**
|
|
60
|
+
* 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.
|
|
49
61
|
* @type {number}
|
|
50
62
|
* @memberof ReportQueueDetailArg
|
|
51
63
|
*/
|
|
52
64
|
'reportQueueDetail_Key': number;
|
|
65
|
+
/**
|
|
66
|
+
* Date the record was last updated in the system
|
|
67
|
+
* @type {string}
|
|
68
|
+
* @memberof ReportQueueDetailArg
|
|
69
|
+
*/
|
|
70
|
+
'update_Date'?: string;
|
|
71
|
+
/**
|
|
72
|
+
* User that last updated the record in the system
|
|
73
|
+
* @type {string}
|
|
74
|
+
* @memberof ReportQueueDetailArg
|
|
75
|
+
*/
|
|
76
|
+
'update_User'?: string | null;
|
|
53
77
|
}
|
|
54
78
|
|
|
@@ -21,11 +21,23 @@
|
|
|
21
21
|
*/
|
|
22
22
|
export interface ReportQueueLog {
|
|
23
23
|
/**
|
|
24
|
-
* Key field identifying a specific report queue log entry
|
|
24
|
+
* Key field identifying a specific report queue log entry 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 ReportQueueLog
|
|
27
27
|
*/
|
|
28
28
|
'reportQueueLog_Key': number;
|
|
29
|
+
/**
|
|
30
|
+
* Date record was first added to the system
|
|
31
|
+
* @type {string}
|
|
32
|
+
* @memberof ReportQueueLog
|
|
33
|
+
*/
|
|
34
|
+
'entry_Date'?: string;
|
|
35
|
+
/**
|
|
36
|
+
* User that first added the record to the system
|
|
37
|
+
* @type {string}
|
|
38
|
+
* @memberof ReportQueueLog
|
|
39
|
+
*/
|
|
40
|
+
'entry_User'?: string | null;
|
|
29
41
|
/**
|
|
30
42
|
* Identifier of the action that was performed for a report or for queue maintenance
|
|
31
43
|
* @type {string}
|
|
@@ -51,16 +63,28 @@ export interface ReportQueueLog {
|
|
|
51
63
|
*/
|
|
52
64
|
'log_Result'?: 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 ReportQueueLog
|
|
57
69
|
*/
|
|
58
70
|
'reportQueueDetail_Key': number;
|
|
59
71
|
/**
|
|
60
|
-
* Allows the logging of IDs for any shared objects for the report. Not normally used.
|
|
72
|
+
* Allows the logging of IDs for any shared objects for the report. Not normally used. 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.
|
|
61
73
|
* @type {number}
|
|
62
74
|
* @memberof ReportQueueLog
|
|
63
75
|
*/
|
|
64
76
|
'sharedObject_ID': number;
|
|
77
|
+
/**
|
|
78
|
+
* Date the record was last updated in the system
|
|
79
|
+
* @type {string}
|
|
80
|
+
* @memberof ReportQueueLog
|
|
81
|
+
*/
|
|
82
|
+
'update_Date'?: string;
|
|
83
|
+
/**
|
|
84
|
+
* User that last updated the record in the system
|
|
85
|
+
* @type {string}
|
|
86
|
+
* @memberof ReportQueueLog
|
|
87
|
+
*/
|
|
88
|
+
'update_User'?: string | null;
|
|
65
89
|
}
|
|
66
90
|
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
*/
|
|
22
22
|
export interface ReportQueueSchedule {
|
|
23
23
|
/**
|
|
24
|
-
* Key field identifying a specific report queue schedule
|
|
24
|
+
* Key field identifying a specific report queue schedule 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 ReportQueueSchedule
|
|
27
27
|
*/
|
|
@@ -33,13 +33,25 @@ export interface ReportQueueSchedule {
|
|
|
33
33
|
*/
|
|
34
34
|
'email_Address'?: string | null;
|
|
35
35
|
/**
|
|
36
|
-
*
|
|
36
|
+
* Date record was first added to the system
|
|
37
|
+
* @type {string}
|
|
38
|
+
* @memberof ReportQueueSchedule
|
|
39
|
+
*/
|
|
40
|
+
'entry_Date'?: string;
|
|
41
|
+
/**
|
|
42
|
+
* User that first added the record to the system
|
|
43
|
+
* @type {string}
|
|
44
|
+
* @memberof ReportQueueSchedule
|
|
45
|
+
*/
|
|
46
|
+
'entry_User'?: string | null;
|
|
47
|
+
/**
|
|
48
|
+
* ID of the report event that will be performed 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.
|
|
37
49
|
* @type {number}
|
|
38
50
|
* @memberof ReportQueueSchedule
|
|
39
51
|
*/
|
|
40
52
|
'event_ID': number;
|
|
41
53
|
/**
|
|
42
|
-
* ID of the report queue.
|
|
54
|
+
* ID of the report queue. 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.
|
|
43
55
|
* @type {number}
|
|
44
56
|
* @memberof ReportQueueSchedule
|
|
45
57
|
*/
|
|
@@ -56,5 +68,17 @@ export interface ReportQueueSchedule {
|
|
|
56
68
|
* @memberof ReportQueueSchedule
|
|
57
69
|
*/
|
|
58
70
|
'schedule_Type'?: string | null;
|
|
71
|
+
/**
|
|
72
|
+
* Date the record was last updated in the system
|
|
73
|
+
* @type {string}
|
|
74
|
+
* @memberof ReportQueueSchedule
|
|
75
|
+
*/
|
|
76
|
+
'update_Date'?: string;
|
|
77
|
+
/**
|
|
78
|
+
* User that last updated the record in the system
|
|
79
|
+
* @type {string}
|
|
80
|
+
* @memberof ReportQueueSchedule
|
|
81
|
+
*/
|
|
82
|
+
'update_User'?: string | null;
|
|
59
83
|
}
|
|
60
84
|
|
|
@@ -21,13 +21,25 @@
|
|
|
21
21
|
*/
|
|
22
22
|
export interface ReportSeriesProcessTemplate {
|
|
23
23
|
/**
|
|
24
|
-
* ID of the report series process template.
|
|
24
|
+
* ID of the report series process template. 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 ReportSeriesProcessTemplate
|
|
27
27
|
*/
|
|
28
28
|
'reportSeriesProcessTemplate_Key': number;
|
|
29
29
|
/**
|
|
30
|
-
*
|
|
30
|
+
* Date record was first added to the system
|
|
31
|
+
* @type {string}
|
|
32
|
+
* @memberof ReportSeriesProcessTemplate
|
|
33
|
+
*/
|
|
34
|
+
'entry_Date'?: string;
|
|
35
|
+
/**
|
|
36
|
+
* User that first added the record to the system
|
|
37
|
+
* @type {string}
|
|
38
|
+
* @memberof ReportSeriesProcessTemplate
|
|
39
|
+
*/
|
|
40
|
+
'entry_User'?: string | null;
|
|
41
|
+
/**
|
|
42
|
+
* ID of the report series process that the template is related to. 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.
|
|
31
43
|
* @type {number}
|
|
32
44
|
* @memberof ReportSeriesProcessTemplate
|
|
33
45
|
*/
|
|
@@ -39,10 +51,22 @@ export interface ReportSeriesProcessTemplate {
|
|
|
39
51
|
*/
|
|
40
52
|
'reportSeries_Filter'?: string | null;
|
|
41
53
|
/**
|
|
42
|
-
* ID of the report series that the process template is related to.
|
|
54
|
+
* ID of the report series that the process template is related to. 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.
|
|
43
55
|
* @type {number}
|
|
44
56
|
* @memberof ReportSeriesProcessTemplate
|
|
45
57
|
*/
|
|
46
58
|
'reportSeries_Key': number;
|
|
59
|
+
/**
|
|
60
|
+
* Date the record was last updated in the system
|
|
61
|
+
* @type {string}
|
|
62
|
+
* @memberof ReportSeriesProcessTemplate
|
|
63
|
+
*/
|
|
64
|
+
'update_Date'?: string;
|
|
65
|
+
/**
|
|
66
|
+
* User that last updated the record in the system
|
|
67
|
+
* @type {string}
|
|
68
|
+
* @memberof ReportSeriesProcessTemplate
|
|
69
|
+
*/
|
|
70
|
+
'update_User'?: string | null;
|
|
47
71
|
}
|
|
48
72
|
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
*/
|
|
22
22
|
export interface ReportSeriesStepArg {
|
|
23
23
|
/**
|
|
24
|
-
* ID of the report series step argument.
|
|
24
|
+
* ID of the report series step 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 ReportSeriesStepArg
|
|
27
27
|
*/
|
|
@@ -45,10 +45,34 @@ export interface ReportSeriesStepArg {
|
|
|
45
45
|
*/
|
|
46
46
|
'argument_Value'?: string | null;
|
|
47
47
|
/**
|
|
48
|
-
*
|
|
48
|
+
* Date record was first added to the system
|
|
49
|
+
* @type {string}
|
|
50
|
+
* @memberof ReportSeriesStepArg
|
|
51
|
+
*/
|
|
52
|
+
'entry_Date'?: string;
|
|
53
|
+
/**
|
|
54
|
+
* User that first added the record to the system
|
|
55
|
+
* @type {string}
|
|
56
|
+
* @memberof ReportSeriesStepArg
|
|
57
|
+
*/
|
|
58
|
+
'entry_User'?: string | null;
|
|
59
|
+
/**
|
|
60
|
+
* ID of the report series step that the 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.
|
|
49
61
|
* @type {number}
|
|
50
62
|
* @memberof ReportSeriesStepArg
|
|
51
63
|
*/
|
|
52
64
|
'reportSeriesStep_Key': number;
|
|
65
|
+
/**
|
|
66
|
+
* Date the record was last updated in the system
|
|
67
|
+
* @type {string}
|
|
68
|
+
* @memberof ReportSeriesStepArg
|
|
69
|
+
*/
|
|
70
|
+
'update_Date'?: string;
|
|
71
|
+
/**
|
|
72
|
+
* User that last updated the record in the system
|
|
73
|
+
* @type {string}
|
|
74
|
+
* @memberof ReportSeriesStepArg
|
|
75
|
+
*/
|
|
76
|
+
'update_User'?: string | null;
|
|
53
77
|
}
|
|
54
78
|
|