@vbasoftware/vbapi-vbasoftware-typescript-axios 1.20230519.1 → 1.20230616.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 +27 -1
- package/api/claim-batch-logs-api.ts +668 -0
- package/api/claim-batch-references-api.ts +764 -0
- package/api/claim-batches-api.ts +17 -8
- package/api/error-category-api.ts +668 -0
- package/api/error-category-types-api.ts +725 -0
- package/api/error-severity-api.ts +668 -0
- package/api/error-type-api.ts +668 -0
- package/api/{fee-schedule-anesthesia-api.ts → fee-schedule-anesthesias-api.ts} +94 -133
- package/api/fee-schedule-details-api.ts +68 -107
- package/api/fee-schedule-modifier-discounts-api.ts +68 -107
- package/api/fee-schedule-modifier-excludes-api.ts +68 -107
- package/api/fee-schedule-procedure-group-adjustments-api.ts +68 -107
- package/api/fee-schedule-provider-type-discounts-api.ts +68 -107
- package/api/funding-request-claims-api.ts +8 -26
- package/api/member-account-plans-api.ts +10 -10
- package/api/payor-accounts-api.ts +105 -0
- package/api/user-api.ts +98 -0
- package/api.ts +7 -1
- package/models/claim-batch-log-list-vbaresponse.ts +45 -0
- package/models/claim-batch-log-vbaresponse.ts +45 -0
- package/models/claim-batch-log.ts +96 -0
- package/models/claim-batch-reference-list-vbaresponse.ts +45 -0
- package/models/claim-batch-reference-vbaresponse.ts +45 -0
- package/models/claim-batch-reference.ts +84 -0
- package/models/company-data.ts +24 -0
- package/models/error-category-list-vbaresponse.ts +45 -0
- package/models/error-category-type-list-vbaresponse.ts +45 -0
- package/models/error-category-type-vbaresponse.ts +45 -0
- package/models/error-category-type.ts +78 -0
- package/models/error-category-vbaresponse.ts +45 -0
- package/models/error-category.ts +60 -0
- package/models/error-severity-list-vbaresponse.ts +45 -0
- package/models/error-severity-vbaresponse.ts +45 -0
- package/models/error-severity.ts +60 -0
- package/models/error-type-list-vbaresponse.ts +45 -0
- package/models/error-type-vbaresponse.ts +45 -0
- package/models/error-type.ts +60 -0
- package/models/fee-sched-anesthesia.ts +25 -1
- package/models/fee-sched-detail.ts +28 -4
- package/models/fee-sched-modifier-discount.ts +27 -3
- package/models/fee-sched-modifier-exclude.ts +25 -1
- package/models/fee-sched-procedure-group-adjust.ts +30 -6
- package/models/fee-sched-provider-type-discount.ts +27 -3
- package/models/idcode-value.ts +25 -1
- package/models/index.ts +20 -0
- package/models/prem-payment-file-format.ts +14 -8
- package/models/sub-enrollment-plan.ts +6 -0
- package/models/vbafunding-account-claim-info-list-vbaresponse.ts +45 -0
- package/models/vbafunding-account-claim-info.ts +276 -0
- package/package.json +1 -1
|
@@ -0,0 +1,96 @@
|
|
|
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 ClaimBatchLog
|
|
21
|
+
*/
|
|
22
|
+
export interface ClaimBatchLog {
|
|
23
|
+
/**
|
|
24
|
+
* No longer in use. 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
|
+
* @type {number}
|
|
26
|
+
* @memberof ClaimBatchLog
|
|
27
|
+
*/
|
|
28
|
+
'claimBatchLog_Key': number;
|
|
29
|
+
/**
|
|
30
|
+
* No longer in use. 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
|
+
* @type {number}
|
|
32
|
+
* @memberof ClaimBatchLog
|
|
33
|
+
*/
|
|
34
|
+
'batch_Claim': number;
|
|
35
|
+
/**
|
|
36
|
+
* No longer in use. 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
|
+
* @type {number}
|
|
38
|
+
* @memberof ClaimBatchLog
|
|
39
|
+
*/
|
|
40
|
+
'batch_Number': number;
|
|
41
|
+
/**
|
|
42
|
+
* No longer in use.
|
|
43
|
+
* @type {string}
|
|
44
|
+
* @memberof ClaimBatchLog
|
|
45
|
+
*/
|
|
46
|
+
'entry_Date'?: string;
|
|
47
|
+
/**
|
|
48
|
+
* No longer in use.
|
|
49
|
+
* @type {string}
|
|
50
|
+
* @memberof ClaimBatchLog
|
|
51
|
+
*/
|
|
52
|
+
'entry_User'?: string | null;
|
|
53
|
+
/**
|
|
54
|
+
* No longer in use. 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
|
+
* @type {number}
|
|
56
|
+
* @memberof ClaimBatchLog
|
|
57
|
+
*/
|
|
58
|
+
'job_Key': number;
|
|
59
|
+
/**
|
|
60
|
+
* No longer in use.
|
|
61
|
+
* @type {string}
|
|
62
|
+
* @memberof ClaimBatchLog
|
|
63
|
+
*/
|
|
64
|
+
'log_Action'?: string | null;
|
|
65
|
+
/**
|
|
66
|
+
* No longer in use.
|
|
67
|
+
* @type {string}
|
|
68
|
+
* @memberof ClaimBatchLog
|
|
69
|
+
*/
|
|
70
|
+
'log_Date'?: string | null;
|
|
71
|
+
/**
|
|
72
|
+
* No longer in use.
|
|
73
|
+
* @type {string}
|
|
74
|
+
* @memberof ClaimBatchLog
|
|
75
|
+
*/
|
|
76
|
+
'log_Message'?: string | null;
|
|
77
|
+
/**
|
|
78
|
+
* No longer in use.
|
|
79
|
+
* @type {string}
|
|
80
|
+
* @memberof ClaimBatchLog
|
|
81
|
+
*/
|
|
82
|
+
'log_Result'?: string | null;
|
|
83
|
+
/**
|
|
84
|
+
* No longer in use.
|
|
85
|
+
* @type {string}
|
|
86
|
+
* @memberof ClaimBatchLog
|
|
87
|
+
*/
|
|
88
|
+
'update_Date'?: string;
|
|
89
|
+
/**
|
|
90
|
+
* No longer in use.
|
|
91
|
+
* @type {string}
|
|
92
|
+
* @memberof ClaimBatchLog
|
|
93
|
+
*/
|
|
94
|
+
'update_User'?: string | null;
|
|
95
|
+
}
|
|
96
|
+
|
|
@@ -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 { ClaimBatchReference } from './claim-batch-reference';
|
|
17
|
+
import { Debug } from './debug';
|
|
18
|
+
import { VBAProblemDetails } from './vbaproblem-details';
|
|
19
|
+
|
|
20
|
+
/**
|
|
21
|
+
*
|
|
22
|
+
* @export
|
|
23
|
+
* @interface ClaimBatchReferenceListVBAResponse
|
|
24
|
+
*/
|
|
25
|
+
export interface ClaimBatchReferenceListVBAResponse {
|
|
26
|
+
/**
|
|
27
|
+
*
|
|
28
|
+
* @type {Array<ClaimBatchReference>}
|
|
29
|
+
* @memberof ClaimBatchReferenceListVBAResponse
|
|
30
|
+
*/
|
|
31
|
+
'data'?: Array<ClaimBatchReference> | null;
|
|
32
|
+
/**
|
|
33
|
+
*
|
|
34
|
+
* @type {VBAProblemDetails}
|
|
35
|
+
* @memberof ClaimBatchReferenceListVBAResponse
|
|
36
|
+
*/
|
|
37
|
+
'error'?: VBAProblemDetails;
|
|
38
|
+
/**
|
|
39
|
+
*
|
|
40
|
+
* @type {Debug}
|
|
41
|
+
* @memberof ClaimBatchReferenceListVBAResponse
|
|
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 { ClaimBatchReference } from './claim-batch-reference';
|
|
17
|
+
import { Debug } from './debug';
|
|
18
|
+
import { VBAProblemDetails } from './vbaproblem-details';
|
|
19
|
+
|
|
20
|
+
/**
|
|
21
|
+
*
|
|
22
|
+
* @export
|
|
23
|
+
* @interface ClaimBatchReferenceVBAResponse
|
|
24
|
+
*/
|
|
25
|
+
export interface ClaimBatchReferenceVBAResponse {
|
|
26
|
+
/**
|
|
27
|
+
*
|
|
28
|
+
* @type {ClaimBatchReference}
|
|
29
|
+
* @memberof ClaimBatchReferenceVBAResponse
|
|
30
|
+
*/
|
|
31
|
+
'data'?: ClaimBatchReference;
|
|
32
|
+
/**
|
|
33
|
+
*
|
|
34
|
+
* @type {VBAProblemDetails}
|
|
35
|
+
* @memberof ClaimBatchReferenceVBAResponse
|
|
36
|
+
*/
|
|
37
|
+
'error'?: VBAProblemDetails;
|
|
38
|
+
/**
|
|
39
|
+
*
|
|
40
|
+
* @type {Debug}
|
|
41
|
+
* @memberof ClaimBatchReferenceVBAResponse
|
|
42
|
+
*/
|
|
43
|
+
'debug'?: Debug;
|
|
44
|
+
}
|
|
45
|
+
|
|
@@ -0,0 +1,84 @@
|
|
|
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 ClaimBatchReference
|
|
21
|
+
*/
|
|
22
|
+
export interface ClaimBatchReference {
|
|
23
|
+
/**
|
|
24
|
+
* When one claim must reference another claim, this holds the pointer to the original batch/claim. 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
|
+
* @type {number}
|
|
26
|
+
* @memberof ClaimBatchReference
|
|
27
|
+
*/
|
|
28
|
+
'original_Batch_Number': number;
|
|
29
|
+
/**
|
|
30
|
+
* When one claim must reference another claim, this holds the pointer to the original batch/claim. 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
|
+
* @type {number}
|
|
32
|
+
* @memberof ClaimBatchReference
|
|
33
|
+
*/
|
|
34
|
+
'original_Batch_Claim': number;
|
|
35
|
+
/**
|
|
36
|
+
* When one claim must reference another claim, this holds the pointer to the referenced batch/claim. 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
|
+
* @type {number}
|
|
38
|
+
* @memberof ClaimBatchReference
|
|
39
|
+
*/
|
|
40
|
+
'referenced_Batch_Number': number;
|
|
41
|
+
/**
|
|
42
|
+
* When one claim must reference another claim, this holds the pointer to the referenced batch/claim. 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
|
+
* @type {number}
|
|
44
|
+
* @memberof ClaimBatchReference
|
|
45
|
+
*/
|
|
46
|
+
'referenced_Batch_Claim': number;
|
|
47
|
+
/**
|
|
48
|
+
* When one claim must reference another claim, this holds the type of reference being created.
|
|
49
|
+
* @type {string}
|
|
50
|
+
* @memberof ClaimBatchReference
|
|
51
|
+
*/
|
|
52
|
+
'reference_Type': string;
|
|
53
|
+
/**
|
|
54
|
+
* Date when the record was first added to the system.
|
|
55
|
+
* @type {string}
|
|
56
|
+
* @memberof ClaimBatchReference
|
|
57
|
+
*/
|
|
58
|
+
'entry_Date'?: string;
|
|
59
|
+
/**
|
|
60
|
+
* User that first added the record to the system.
|
|
61
|
+
* @type {string}
|
|
62
|
+
* @memberof ClaimBatchReference
|
|
63
|
+
*/
|
|
64
|
+
'entry_User'?: string | null;
|
|
65
|
+
/**
|
|
66
|
+
* When one claim must reference another claim, this holds the date of that reference being made.
|
|
67
|
+
* @type {string}
|
|
68
|
+
* @memberof ClaimBatchReference
|
|
69
|
+
*/
|
|
70
|
+
'reference_Date'?: string | null;
|
|
71
|
+
/**
|
|
72
|
+
* Date when the record was last updated in the system.
|
|
73
|
+
* @type {string}
|
|
74
|
+
* @memberof ClaimBatchReference
|
|
75
|
+
*/
|
|
76
|
+
'update_Date'?: string;
|
|
77
|
+
/**
|
|
78
|
+
* User that last updated the record in the system.
|
|
79
|
+
* @type {string}
|
|
80
|
+
* @memberof ClaimBatchReference
|
|
81
|
+
*/
|
|
82
|
+
'update_User'?: string | null;
|
|
83
|
+
}
|
|
84
|
+
|
package/models/company-data.ts
CHANGED
|
@@ -1874,6 +1874,12 @@ export interface CompanyData {
|
|
|
1874
1874
|
* @memberof CompanyData
|
|
1875
1875
|
*/
|
|
1876
1876
|
'premium_Proration': boolean;
|
|
1877
|
+
/**
|
|
1878
|
+
* 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.
|
|
1879
|
+
* @type {boolean}
|
|
1880
|
+
* @memberof CompanyData
|
|
1881
|
+
*/
|
|
1882
|
+
'prevent_Suspense_Release_By_Process_User': boolean;
|
|
1877
1883
|
/**
|
|
1878
1884
|
* This defines the primary bank account.
|
|
1879
1885
|
* @type {number}
|
|
@@ -2300,6 +2306,24 @@ export interface CompanyData {
|
|
|
2300
2306
|
* @memberof CompanyData
|
|
2301
2307
|
*/
|
|
2302
2308
|
'vbaGateway_Server'?: string | null;
|
|
2309
|
+
/**
|
|
2310
|
+
*
|
|
2311
|
+
* @type {string}
|
|
2312
|
+
* @memberof CompanyData
|
|
2313
|
+
*/
|
|
2314
|
+
'vbapI_Adjudicate_Client_Code'?: string | null;
|
|
2315
|
+
/**
|
|
2316
|
+
*
|
|
2317
|
+
* @type {string}
|
|
2318
|
+
* @memberof CompanyData
|
|
2319
|
+
*/
|
|
2320
|
+
'vbapI_Adjudicate_Client_ID'?: string | null;
|
|
2321
|
+
/**
|
|
2322
|
+
*
|
|
2323
|
+
* @type {string}
|
|
2324
|
+
* @memberof CompanyData
|
|
2325
|
+
*/
|
|
2326
|
+
'vbapI_Adjudicate_Database'?: string | null;
|
|
2303
2327
|
/**
|
|
2304
2328
|
* For internal Developer use only.
|
|
2305
2329
|
* @type {string}
|
|
@@ -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 { ErrorCategory } from './error-category';
|
|
18
|
+
import { VBAProblemDetails } from './vbaproblem-details';
|
|
19
|
+
|
|
20
|
+
/**
|
|
21
|
+
*
|
|
22
|
+
* @export
|
|
23
|
+
* @interface ErrorCategoryListVBAResponse
|
|
24
|
+
*/
|
|
25
|
+
export interface ErrorCategoryListVBAResponse {
|
|
26
|
+
/**
|
|
27
|
+
*
|
|
28
|
+
* @type {Array<ErrorCategory>}
|
|
29
|
+
* @memberof ErrorCategoryListVBAResponse
|
|
30
|
+
*/
|
|
31
|
+
'data'?: Array<ErrorCategory> | null;
|
|
32
|
+
/**
|
|
33
|
+
*
|
|
34
|
+
* @type {VBAProblemDetails}
|
|
35
|
+
* @memberof ErrorCategoryListVBAResponse
|
|
36
|
+
*/
|
|
37
|
+
'error'?: VBAProblemDetails;
|
|
38
|
+
/**
|
|
39
|
+
*
|
|
40
|
+
* @type {Debug}
|
|
41
|
+
* @memberof ErrorCategoryListVBAResponse
|
|
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 { ErrorCategoryType } from './error-category-type';
|
|
18
|
+
import { VBAProblemDetails } from './vbaproblem-details';
|
|
19
|
+
|
|
20
|
+
/**
|
|
21
|
+
*
|
|
22
|
+
* @export
|
|
23
|
+
* @interface ErrorCategoryTypeListVBAResponse
|
|
24
|
+
*/
|
|
25
|
+
export interface ErrorCategoryTypeListVBAResponse {
|
|
26
|
+
/**
|
|
27
|
+
*
|
|
28
|
+
* @type {Array<ErrorCategoryType>}
|
|
29
|
+
* @memberof ErrorCategoryTypeListVBAResponse
|
|
30
|
+
*/
|
|
31
|
+
'data'?: Array<ErrorCategoryType> | null;
|
|
32
|
+
/**
|
|
33
|
+
*
|
|
34
|
+
* @type {VBAProblemDetails}
|
|
35
|
+
* @memberof ErrorCategoryTypeListVBAResponse
|
|
36
|
+
*/
|
|
37
|
+
'error'?: VBAProblemDetails;
|
|
38
|
+
/**
|
|
39
|
+
*
|
|
40
|
+
* @type {Debug}
|
|
41
|
+
* @memberof ErrorCategoryTypeListVBAResponse
|
|
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 { ErrorCategoryType } from './error-category-type';
|
|
18
|
+
import { VBAProblemDetails } from './vbaproblem-details';
|
|
19
|
+
|
|
20
|
+
/**
|
|
21
|
+
*
|
|
22
|
+
* @export
|
|
23
|
+
* @interface ErrorCategoryTypeVBAResponse
|
|
24
|
+
*/
|
|
25
|
+
export interface ErrorCategoryTypeVBAResponse {
|
|
26
|
+
/**
|
|
27
|
+
*
|
|
28
|
+
* @type {ErrorCategoryType}
|
|
29
|
+
* @memberof ErrorCategoryTypeVBAResponse
|
|
30
|
+
*/
|
|
31
|
+
'data'?: ErrorCategoryType;
|
|
32
|
+
/**
|
|
33
|
+
*
|
|
34
|
+
* @type {VBAProblemDetails}
|
|
35
|
+
* @memberof ErrorCategoryTypeVBAResponse
|
|
36
|
+
*/
|
|
37
|
+
'error'?: VBAProblemDetails;
|
|
38
|
+
/**
|
|
39
|
+
*
|
|
40
|
+
* @type {Debug}
|
|
41
|
+
* @memberof ErrorCategoryTypeVBAResponse
|
|
42
|
+
*/
|
|
43
|
+
'debug'?: Debug;
|
|
44
|
+
}
|
|
45
|
+
|
|
@@ -0,0 +1,78 @@
|
|
|
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 ErrorCategoryType
|
|
21
|
+
*/
|
|
22
|
+
export interface ErrorCategoryType {
|
|
23
|
+
/**
|
|
24
|
+
* Identifier of the error category.
|
|
25
|
+
* @type {string}
|
|
26
|
+
* @memberof ErrorCategoryType
|
|
27
|
+
*/
|
|
28
|
+
'error_Category': string;
|
|
29
|
+
/**
|
|
30
|
+
* Type of errors specified in this category
|
|
31
|
+
* @type {string}
|
|
32
|
+
* @memberof ErrorCategoryType
|
|
33
|
+
*/
|
|
34
|
+
'error_Type': string;
|
|
35
|
+
/**
|
|
36
|
+
* Code of the specific error that is contained in the category
|
|
37
|
+
* @type {string}
|
|
38
|
+
* @memberof ErrorCategoryType
|
|
39
|
+
*/
|
|
40
|
+
'error_Code': string;
|
|
41
|
+
/**
|
|
42
|
+
* Description of the specific error
|
|
43
|
+
* @type {string}
|
|
44
|
+
* @memberof ErrorCategoryType
|
|
45
|
+
*/
|
|
46
|
+
'description'?: string | null;
|
|
47
|
+
/**
|
|
48
|
+
* Date record was first added to the system
|
|
49
|
+
* @type {string}
|
|
50
|
+
* @memberof ErrorCategoryType
|
|
51
|
+
*/
|
|
52
|
+
'entry_Date'?: string;
|
|
53
|
+
/**
|
|
54
|
+
* User that first added the record to the system
|
|
55
|
+
* @type {string}
|
|
56
|
+
* @memberof ErrorCategoryType
|
|
57
|
+
*/
|
|
58
|
+
'entry_User'?: string | null;
|
|
59
|
+
/**
|
|
60
|
+
* Severity of the specific error 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
|
+
* @type {number}
|
|
62
|
+
* @memberof ErrorCategoryType
|
|
63
|
+
*/
|
|
64
|
+
'error_Severity': number;
|
|
65
|
+
/**
|
|
66
|
+
* Date the record was last updated in the system
|
|
67
|
+
* @type {string}
|
|
68
|
+
* @memberof ErrorCategoryType
|
|
69
|
+
*/
|
|
70
|
+
'update_Date'?: string;
|
|
71
|
+
/**
|
|
72
|
+
* User that last updated the record in the system
|
|
73
|
+
* @type {string}
|
|
74
|
+
* @memberof ErrorCategoryType
|
|
75
|
+
*/
|
|
76
|
+
'update_User'?: string | null;
|
|
77
|
+
}
|
|
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 { ErrorCategory } from './error-category';
|
|
18
|
+
import { VBAProblemDetails } from './vbaproblem-details';
|
|
19
|
+
|
|
20
|
+
/**
|
|
21
|
+
*
|
|
22
|
+
* @export
|
|
23
|
+
* @interface ErrorCategoryVBAResponse
|
|
24
|
+
*/
|
|
25
|
+
export interface ErrorCategoryVBAResponse {
|
|
26
|
+
/**
|
|
27
|
+
*
|
|
28
|
+
* @type {ErrorCategory}
|
|
29
|
+
* @memberof ErrorCategoryVBAResponse
|
|
30
|
+
*/
|
|
31
|
+
'data'?: ErrorCategory;
|
|
32
|
+
/**
|
|
33
|
+
*
|
|
34
|
+
* @type {VBAProblemDetails}
|
|
35
|
+
* @memberof ErrorCategoryVBAResponse
|
|
36
|
+
*/
|
|
37
|
+
'error'?: VBAProblemDetails;
|
|
38
|
+
/**
|
|
39
|
+
*
|
|
40
|
+
* @type {Debug}
|
|
41
|
+
* @memberof ErrorCategoryVBAResponse
|
|
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 ErrorCategory
|
|
21
|
+
*/
|
|
22
|
+
export interface ErrorCategory {
|
|
23
|
+
/**
|
|
24
|
+
* Identifier of the error category.
|
|
25
|
+
* @type {string}
|
|
26
|
+
* @memberof ErrorCategory
|
|
27
|
+
*/
|
|
28
|
+
'error_Category': string;
|
|
29
|
+
/**
|
|
30
|
+
* Description of the error category.
|
|
31
|
+
* @type {string}
|
|
32
|
+
* @memberof ErrorCategory
|
|
33
|
+
*/
|
|
34
|
+
'description'?: string | null;
|
|
35
|
+
/**
|
|
36
|
+
* Date record was first added to the system
|
|
37
|
+
* @type {string}
|
|
38
|
+
* @memberof ErrorCategory
|
|
39
|
+
*/
|
|
40
|
+
'entry_Date'?: string;
|
|
41
|
+
/**
|
|
42
|
+
* User that first added the record to the system
|
|
43
|
+
* @type {string}
|
|
44
|
+
* @memberof ErrorCategory
|
|
45
|
+
*/
|
|
46
|
+
'entry_User'?: string | null;
|
|
47
|
+
/**
|
|
48
|
+
* Date the record was last updated in the system
|
|
49
|
+
* @type {string}
|
|
50
|
+
* @memberof ErrorCategory
|
|
51
|
+
*/
|
|
52
|
+
'update_Date'?: string;
|
|
53
|
+
/**
|
|
54
|
+
* User that last updated the record in the system
|
|
55
|
+
* @type {string}
|
|
56
|
+
* @memberof ErrorCategory
|
|
57
|
+
*/
|
|
58
|
+
'update_User'?: string | null;
|
|
59
|
+
}
|
|
60
|
+
|
|
@@ -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 { ErrorSeverity } from './error-severity';
|
|
18
|
+
import { VBAProblemDetails } from './vbaproblem-details';
|
|
19
|
+
|
|
20
|
+
/**
|
|
21
|
+
*
|
|
22
|
+
* @export
|
|
23
|
+
* @interface ErrorSeverityListVBAResponse
|
|
24
|
+
*/
|
|
25
|
+
export interface ErrorSeverityListVBAResponse {
|
|
26
|
+
/**
|
|
27
|
+
*
|
|
28
|
+
* @type {Array<ErrorSeverity>}
|
|
29
|
+
* @memberof ErrorSeverityListVBAResponse
|
|
30
|
+
*/
|
|
31
|
+
'data'?: Array<ErrorSeverity> | null;
|
|
32
|
+
/**
|
|
33
|
+
*
|
|
34
|
+
* @type {VBAProblemDetails}
|
|
35
|
+
* @memberof ErrorSeverityListVBAResponse
|
|
36
|
+
*/
|
|
37
|
+
'error'?: VBAProblemDetails;
|
|
38
|
+
/**
|
|
39
|
+
*
|
|
40
|
+
* @type {Debug}
|
|
41
|
+
* @memberof ErrorSeverityListVBAResponse
|
|
42
|
+
*/
|
|
43
|
+
'debug'?: Debug;
|
|
44
|
+
}
|
|
45
|
+
|