@vbasoftware/vbapi-vbasoftware-typescript-axios 1.20230825.1 → 1.20230830.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 +5 -0
- package/api/claim-pre-batch-details-api.ts +71 -254
- package/api/claim-pre-batches-api.ts +71 -158
- package/api/claim-queue-types-api.ts +155 -0
- package/api/reviewed-status-api.ts +677 -0
- package/api.ts +2 -0
- package/models/company-data.ts +12 -0
- package/models/index.ts +3 -0
- package/models/report-definition.ts +39 -9
- package/models/reviewed-status-list-vbaresponse.ts +45 -0
- package/models/reviewed-status-vbaresponse.ts +45 -0
- package/models/reviewed-status.ts +60 -0
- package/package.json +1 -1
package/api.ts
CHANGED
|
@@ -203,6 +203,7 @@ export * from './api/claim-queue-schedule-notify-user-groups-api';
|
|
|
203
203
|
export * from './api/claim-queue-schedule-notify-users-api';
|
|
204
204
|
export * from './api/claim-queue-schedules-api';
|
|
205
205
|
export * from './api/claim-queue-statuses-api';
|
|
206
|
+
export * from './api/claim-queue-types-api';
|
|
206
207
|
export * from './api/claim-queues-api';
|
|
207
208
|
export * from './api/claim-rule-dependents-api';
|
|
208
209
|
export * from './api/claim-rule-procedures-api';
|
|
@@ -715,6 +716,7 @@ export * from './api/report-tracking-received-statuses-api';
|
|
|
715
716
|
export * from './api/report-tracking-sent-statuses-api';
|
|
716
717
|
export * from './api/report-tracking-sent-to-api';
|
|
717
718
|
export * from './api/report-tracking-statuses-api';
|
|
719
|
+
export * from './api/reviewed-status-api';
|
|
718
720
|
export * from './api/rounding-precision-api';
|
|
719
721
|
export * from './api/rounding-types-api';
|
|
720
722
|
export * from './api/search-config-api';
|
package/models/company-data.ts
CHANGED
|
@@ -932,6 +932,12 @@ export interface CompanyData {
|
|
|
932
932
|
* @memberof CompanyData
|
|
933
933
|
*/
|
|
934
934
|
'country_ID'?: string | null;
|
|
935
|
+
/**
|
|
936
|
+
* 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.
|
|
937
|
+
* @type {boolean}
|
|
938
|
+
* @memberof CompanyData
|
|
939
|
+
*/
|
|
940
|
+
'credential_By_Payee': boolean;
|
|
935
941
|
/**
|
|
936
942
|
* When selected, turn on Credentialing
|
|
937
943
|
* @type {string}
|
|
@@ -2192,6 +2198,12 @@ export interface CompanyData {
|
|
|
2192
2198
|
* @memberof CompanyData
|
|
2193
2199
|
*/
|
|
2194
2200
|
'use_Tax_Control': boolean;
|
|
2201
|
+
/**
|
|
2202
|
+
* 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.
|
|
2203
|
+
* @type {boolean}
|
|
2204
|
+
* @memberof CompanyData
|
|
2205
|
+
*/
|
|
2206
|
+
'use_VBAdjudicate_2': boolean;
|
|
2195
2207
|
/**
|
|
2196
2208
|
* Whether or not Zip Code with auto poulate city/state based on Zip Code 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.
|
|
2197
2209
|
* @type {boolean}
|
package/models/index.ts
CHANGED
|
@@ -2022,6 +2022,9 @@ export * from './report-track-status';
|
|
|
2022
2022
|
export * from './report-track-status-list-vbaresponse';
|
|
2023
2023
|
export * from './report-track-status-vbaresponse';
|
|
2024
2024
|
export * from './report-track-vbaresponse';
|
|
2025
|
+
export * from './reviewed-status';
|
|
2026
|
+
export * from './reviewed-status-list-vbaresponse';
|
|
2027
|
+
export * from './reviewed-status-vbaresponse';
|
|
2025
2028
|
export * from './search-config';
|
|
2026
2029
|
export * from './search-config-list-vbaresponse';
|
|
2027
2030
|
export * from './search-config-vbaresponse';
|
|
@@ -21,13 +21,13 @@
|
|
|
21
21
|
*/
|
|
22
22
|
export interface ReportDefinition {
|
|
23
23
|
/**
|
|
24
|
-
* ID of the report definition.
|
|
24
|
+
* ID of the report definition. 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 ReportDefinition
|
|
27
27
|
*/
|
|
28
28
|
'reportDefinition_Key': number;
|
|
29
29
|
/**
|
|
30
|
-
* This will combine the results of a criteria window with multiple criteria.
|
|
30
|
+
* This will combine the results of a criteria window with multiple criteria. 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.
|
|
31
31
|
* @type {boolean}
|
|
32
32
|
* @memberof ReportDefinition
|
|
33
33
|
*/
|
|
@@ -45,23 +45,41 @@ export interface ReportDefinition {
|
|
|
45
45
|
*/
|
|
46
46
|
'custom_Report'?: string | null;
|
|
47
47
|
/**
|
|
48
|
-
*
|
|
48
|
+
* Date record was first added to the system
|
|
49
|
+
* @type {string}
|
|
50
|
+
* @memberof ReportDefinition
|
|
51
|
+
*/
|
|
52
|
+
'entry_Date'?: string;
|
|
53
|
+
/**
|
|
54
|
+
* User that first added the record to the system
|
|
55
|
+
* @type {string}
|
|
56
|
+
* @memberof ReportDefinition
|
|
57
|
+
*/
|
|
58
|
+
'entry_User'?: string | null;
|
|
59
|
+
/**
|
|
60
|
+
* Flag indicating if the adjustment category should be excluded from the report 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
61
|
* @type {boolean}
|
|
50
62
|
* @memberof ReportDefinition
|
|
51
63
|
*/
|
|
52
64
|
'exclude_Adjustment_Category': boolean;
|
|
53
65
|
/**
|
|
54
|
-
* Flag indicating if the other category should be excluded from the report
|
|
66
|
+
* Flag indicating if the other category should be excluded from the report 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.
|
|
55
67
|
* @type {boolean}
|
|
56
68
|
* @memberof ReportDefinition
|
|
57
69
|
*/
|
|
58
70
|
'exclude_Other_Category': boolean;
|
|
59
71
|
/**
|
|
60
|
-
* Flag indicating if the total category should be excluded from the report
|
|
72
|
+
* Flag indicating if the total category should be excluded from the report 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 ReportDefinition
|
|
63
75
|
*/
|
|
64
76
|
'exclude_Total_Category': boolean;
|
|
77
|
+
/**
|
|
78
|
+
* 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.
|
|
79
|
+
* @type {boolean}
|
|
80
|
+
* @memberof ReportDefinition
|
|
81
|
+
*/
|
|
82
|
+
'group_Categories_Only': boolean;
|
|
65
83
|
/**
|
|
66
84
|
* Help file associated with the report object
|
|
67
85
|
* @type {string}
|
|
@@ -81,7 +99,7 @@ export interface ReportDefinition {
|
|
|
81
99
|
*/
|
|
82
100
|
'invoice_Category_Column_Count'?: number | null;
|
|
83
101
|
/**
|
|
84
|
-
* Indicates that the report has navigation.
|
|
102
|
+
* Indicates that the report has navigation. 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
103
|
* @type {boolean}
|
|
86
104
|
* @memberof ReportDefinition
|
|
87
105
|
*/
|
|
@@ -135,22 +153,34 @@ export interface ReportDefinition {
|
|
|
135
153
|
*/
|
|
136
154
|
'report_Object'?: string | null;
|
|
137
155
|
/**
|
|
138
|
-
* Indicates that the report may be used with scheduling functionality.
|
|
156
|
+
* Indicates that the report may be used with scheduling functionality. 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
157
|
* @type {boolean}
|
|
140
158
|
* @memberof ReportDefinition
|
|
141
159
|
*/
|
|
142
160
|
'schedule_Report': boolean;
|
|
143
161
|
/**
|
|
144
|
-
* Indicates that the report may be added to a report series.
|
|
162
|
+
* Indicates that the report may be added to a report series. 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.
|
|
145
163
|
* @type {boolean}
|
|
146
164
|
* @memberof ReportDefinition
|
|
147
165
|
*/
|
|
148
166
|
'series_Report': boolean;
|
|
149
167
|
/**
|
|
150
|
-
* Indicates that tracking functionality will be used for the report.
|
|
168
|
+
* Indicates that tracking functionality will be used for the report. 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.
|
|
151
169
|
* @type {boolean}
|
|
152
170
|
* @memberof ReportDefinition
|
|
153
171
|
*/
|
|
154
172
|
'trackable_Report': boolean;
|
|
173
|
+
/**
|
|
174
|
+
* Date the record was last updated in the system
|
|
175
|
+
* @type {string}
|
|
176
|
+
* @memberof ReportDefinition
|
|
177
|
+
*/
|
|
178
|
+
'update_Date'?: string;
|
|
179
|
+
/**
|
|
180
|
+
* User that last updated the record in the system
|
|
181
|
+
* @type {string}
|
|
182
|
+
* @memberof ReportDefinition
|
|
183
|
+
*/
|
|
184
|
+
'update_User'?: string | null;
|
|
155
185
|
}
|
|
156
186
|
|
|
@@ -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 { ReviewedStatus } from './reviewed-status';
|
|
18
|
+
import { VBAProblemDetails } from './vbaproblem-details';
|
|
19
|
+
|
|
20
|
+
/**
|
|
21
|
+
*
|
|
22
|
+
* @export
|
|
23
|
+
* @interface ReviewedStatusListVBAResponse
|
|
24
|
+
*/
|
|
25
|
+
export interface ReviewedStatusListVBAResponse {
|
|
26
|
+
/**
|
|
27
|
+
*
|
|
28
|
+
* @type {Array<ReviewedStatus>}
|
|
29
|
+
* @memberof ReviewedStatusListVBAResponse
|
|
30
|
+
*/
|
|
31
|
+
'data'?: Array<ReviewedStatus> | null;
|
|
32
|
+
/**
|
|
33
|
+
*
|
|
34
|
+
* @type {VBAProblemDetails}
|
|
35
|
+
* @memberof ReviewedStatusListVBAResponse
|
|
36
|
+
*/
|
|
37
|
+
'error'?: VBAProblemDetails;
|
|
38
|
+
/**
|
|
39
|
+
*
|
|
40
|
+
* @type {Debug}
|
|
41
|
+
* @memberof ReviewedStatusListVBAResponse
|
|
42
|
+
*/
|
|
43
|
+
'debug'?: Debug;
|
|
44
|
+
}
|
|
45
|
+
|
|
@@ -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 { ReviewedStatus } from './reviewed-status';
|
|
18
|
+
import { VBAProblemDetails } from './vbaproblem-details';
|
|
19
|
+
|
|
20
|
+
/**
|
|
21
|
+
*
|
|
22
|
+
* @export
|
|
23
|
+
* @interface ReviewedStatusVBAResponse
|
|
24
|
+
*/
|
|
25
|
+
export interface ReviewedStatusVBAResponse {
|
|
26
|
+
/**
|
|
27
|
+
*
|
|
28
|
+
* @type {ReviewedStatus}
|
|
29
|
+
* @memberof ReviewedStatusVBAResponse
|
|
30
|
+
*/
|
|
31
|
+
'data'?: ReviewedStatus;
|
|
32
|
+
/**
|
|
33
|
+
*
|
|
34
|
+
* @type {VBAProblemDetails}
|
|
35
|
+
* @memberof ReviewedStatusVBAResponse
|
|
36
|
+
*/
|
|
37
|
+
'error'?: VBAProblemDetails;
|
|
38
|
+
/**
|
|
39
|
+
*
|
|
40
|
+
* @type {Debug}
|
|
41
|
+
* @memberof ReviewedStatusVBAResponse
|
|
42
|
+
*/
|
|
43
|
+
'debug'?: Debug;
|
|
44
|
+
}
|
|
45
|
+
|
|
@@ -0,0 +1,60 @@
|
|
|
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
|
+
|
|
17
|
+
/**
|
|
18
|
+
*
|
|
19
|
+
* @export
|
|
20
|
+
* @interface ReviewedStatus
|
|
21
|
+
*/
|
|
22
|
+
export interface ReviewedStatus {
|
|
23
|
+
/**
|
|
24
|
+
* Identifier for the claim review status
|
|
25
|
+
* @type {string}
|
|
26
|
+
* @memberof ReviewedStatus
|
|
27
|
+
*/
|
|
28
|
+
'reviewed_Status': string;
|
|
29
|
+
/**
|
|
30
|
+
* Description for the claim review status
|
|
31
|
+
* @type {string}
|
|
32
|
+
* @memberof ReviewedStatus
|
|
33
|
+
*/
|
|
34
|
+
'description'?: string | null;
|
|
35
|
+
/**
|
|
36
|
+
* Date record was first added to the system
|
|
37
|
+
* @type {string}
|
|
38
|
+
* @memberof ReviewedStatus
|
|
39
|
+
*/
|
|
40
|
+
'entry_Date'?: string;
|
|
41
|
+
/**
|
|
42
|
+
* User that first added the record to the system
|
|
43
|
+
* @type {string}
|
|
44
|
+
* @memberof ReviewedStatus
|
|
45
|
+
*/
|
|
46
|
+
'entry_User'?: string | null;
|
|
47
|
+
/**
|
|
48
|
+
* Date the record was last updated in the system
|
|
49
|
+
* @type {string}
|
|
50
|
+
* @memberof ReviewedStatus
|
|
51
|
+
*/
|
|
52
|
+
'update_Date'?: string;
|
|
53
|
+
/**
|
|
54
|
+
* User that last updated the record in the system
|
|
55
|
+
* @type {string}
|
|
56
|
+
* @memberof ReviewedStatus
|
|
57
|
+
*/
|
|
58
|
+
'update_User'?: string | null;
|
|
59
|
+
}
|
|
60
|
+
|