@vbasoftware/vbapi-vbasoftware-typescript-axios 1.20230808.1 → 1.20230816.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 +22 -0
- package/api/adv-accounting-api.ts +101 -0
- package/api/call-tracking-diag-codes-api.ts +677 -0
- package/api/call-tracking-proc-codes-api.ts +677 -0
- package/api/checks-api.ts +101 -0
- package/api/claim-adjudication-api.ts +88 -52
- package/api/edicustom-field-value-claims-api.ts +677 -0
- package/api/edicustom-fields-api.ts +677 -0
- package/api/policy-forfeiture-ext-api.ts +677 -0
- package/api.ts +5 -0
- package/models/call-tracking-diag-codes-list-vbaresponse.ts +45 -0
- package/models/call-tracking-diag-codes-vbaresponse.ts +45 -0
- package/models/call-tracking-diag-codes.ts +72 -0
- package/models/call-tracking-proc-codes-list-vbaresponse.ts +45 -0
- package/models/call-tracking-proc-codes-vbaresponse.ts +45 -0
- package/models/call-tracking-proc-codes.ts +66 -0
- package/models/criteria-detail.ts +20 -20
- package/models/edicustom-field-list-vbaresponse.ts +45 -0
- package/models/edicustom-field-value-claim-list-vbaresponse.ts +45 -0
- package/models/edicustom-field-value-claim-vbaresponse.ts +45 -0
- package/models/edicustom-field-value-claim.ts +72 -0
- package/models/edicustom-field-vbaresponse.ts +45 -0
- package/models/edicustom-field.ts +42 -0
- package/models/funding-process-check.ts +43 -0
- package/models/index.ts +17 -0
- package/models/policy-forfeiture-ext-list-vbaresponse.ts +45 -0
- package/models/policy-forfeiture-ext-vbaresponse.ts +45 -0
- package/models/policy-forfeiture-ext.ts +60 -0
- package/models/process-check-option.ts +42 -0
- package/package.json +1 -1
package/api.ts
CHANGED
|
@@ -64,6 +64,8 @@ export * from './api/cliacertificate-procedure-codes-api';
|
|
|
64
64
|
export * from './api/cobtypes-api';
|
|
65
65
|
export * from './api/call-destinations-api';
|
|
66
66
|
export * from './api/call-statuses-api';
|
|
67
|
+
export * from './api/call-tracking-diag-codes-api';
|
|
68
|
+
export * from './api/call-tracking-proc-codes-api';
|
|
67
69
|
export * from './api/call-tracking-subscribers-api';
|
|
68
70
|
export * from './api/call-trackings-api';
|
|
69
71
|
export * from './api/call-types-api';
|
|
@@ -310,6 +312,8 @@ export * from './api/duplicate-masters-api';
|
|
|
310
312
|
export * from './api/duplicate-set-columns-api';
|
|
311
313
|
export * from './api/duplicate-sets-api';
|
|
312
314
|
export * from './api/edicode-mappings-api';
|
|
315
|
+
export * from './api/edicustom-field-value-claims-api';
|
|
316
|
+
export * from './api/edicustom-fields-api';
|
|
313
317
|
export * from './api/eligibility-status-api';
|
|
314
318
|
export * from './api/employer-contribution-schedule-types-api';
|
|
315
319
|
export * from './api/employer-sizes-api';
|
|
@@ -571,6 +575,7 @@ export * from './api/plan-procedure-age-restrictions-api';
|
|
|
571
575
|
export * from './api/plan-relationship-age-restrictions-api';
|
|
572
576
|
export * from './api/plan-types-api';
|
|
573
577
|
export * from './api/plans-api';
|
|
578
|
+
export * from './api/policy-forfeiture-ext-api';
|
|
574
579
|
export * from './api/policy-forfeiture-ext-details-api';
|
|
575
580
|
export * from './api/policy-statuses-api';
|
|
576
581
|
export * from './api/prem-rate-types-api';
|
|
@@ -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 { CallTrackingDiagCodes } from './call-tracking-diag-codes';
|
|
17
|
+
import { Debug } from './debug';
|
|
18
|
+
import { VBAProblemDetails } from './vbaproblem-details';
|
|
19
|
+
|
|
20
|
+
/**
|
|
21
|
+
*
|
|
22
|
+
* @export
|
|
23
|
+
* @interface CallTrackingDiagCodesListVBAResponse
|
|
24
|
+
*/
|
|
25
|
+
export interface CallTrackingDiagCodesListVBAResponse {
|
|
26
|
+
/**
|
|
27
|
+
*
|
|
28
|
+
* @type {Array<CallTrackingDiagCodes>}
|
|
29
|
+
* @memberof CallTrackingDiagCodesListVBAResponse
|
|
30
|
+
*/
|
|
31
|
+
'data'?: Array<CallTrackingDiagCodes> | null;
|
|
32
|
+
/**
|
|
33
|
+
*
|
|
34
|
+
* @type {VBAProblemDetails}
|
|
35
|
+
* @memberof CallTrackingDiagCodesListVBAResponse
|
|
36
|
+
*/
|
|
37
|
+
'error'?: VBAProblemDetails;
|
|
38
|
+
/**
|
|
39
|
+
*
|
|
40
|
+
* @type {Debug}
|
|
41
|
+
* @memberof CallTrackingDiagCodesListVBAResponse
|
|
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 { CallTrackingDiagCodes } from './call-tracking-diag-codes';
|
|
17
|
+
import { Debug } from './debug';
|
|
18
|
+
import { VBAProblemDetails } from './vbaproblem-details';
|
|
19
|
+
|
|
20
|
+
/**
|
|
21
|
+
*
|
|
22
|
+
* @export
|
|
23
|
+
* @interface CallTrackingDiagCodesVBAResponse
|
|
24
|
+
*/
|
|
25
|
+
export interface CallTrackingDiagCodesVBAResponse {
|
|
26
|
+
/**
|
|
27
|
+
*
|
|
28
|
+
* @type {CallTrackingDiagCodes}
|
|
29
|
+
* @memberof CallTrackingDiagCodesVBAResponse
|
|
30
|
+
*/
|
|
31
|
+
'data'?: CallTrackingDiagCodes;
|
|
32
|
+
/**
|
|
33
|
+
*
|
|
34
|
+
* @type {VBAProblemDetails}
|
|
35
|
+
* @memberof CallTrackingDiagCodesVBAResponse
|
|
36
|
+
*/
|
|
37
|
+
'error'?: VBAProblemDetails;
|
|
38
|
+
/**
|
|
39
|
+
*
|
|
40
|
+
* @type {Debug}
|
|
41
|
+
* @memberof CallTrackingDiagCodesVBAResponse
|
|
42
|
+
*/
|
|
43
|
+
'debug'?: Debug;
|
|
44
|
+
}
|
|
45
|
+
|
|
@@ -0,0 +1,72 @@
|
|
|
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 CallTrackingDiagCodes
|
|
21
|
+
*/
|
|
22
|
+
export interface CallTrackingDiagCodes {
|
|
23
|
+
/**
|
|
24
|
+
* Unique identifier for each record. 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 CallTrackingDiagCodes
|
|
27
|
+
*/
|
|
28
|
+
'callTrackingDiagCodes_Key': number;
|
|
29
|
+
/**
|
|
30
|
+
* Unique identifier assigned to the call 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.
|
|
31
|
+
* @type {number}
|
|
32
|
+
* @memberof CallTrackingDiagCodes
|
|
33
|
+
*/
|
|
34
|
+
'call_Key': number;
|
|
35
|
+
/**
|
|
36
|
+
* Unique identifier assigned to the diagnosis that will be tied to the call tracking. This can be selected by right-clicking within the field and selecting \'Lookup\' from the context menu.
|
|
37
|
+
* @type {string}
|
|
38
|
+
* @memberof CallTrackingDiagCodes
|
|
39
|
+
*/
|
|
40
|
+
'diagnostic_Code': string;
|
|
41
|
+
/**
|
|
42
|
+
* Identifies the ICD version that is associated with the diagnosis code.
|
|
43
|
+
* @type {string}
|
|
44
|
+
* @memberof CallTrackingDiagCodes
|
|
45
|
+
*/
|
|
46
|
+
'diagnostic_Code_Type': string;
|
|
47
|
+
/**
|
|
48
|
+
* Date when the record was first added to the system.
|
|
49
|
+
* @type {string}
|
|
50
|
+
* @memberof CallTrackingDiagCodes
|
|
51
|
+
*/
|
|
52
|
+
'entry_Date'?: string;
|
|
53
|
+
/**
|
|
54
|
+
* User that first added the record to the system.
|
|
55
|
+
* @type {string}
|
|
56
|
+
* @memberof CallTrackingDiagCodes
|
|
57
|
+
*/
|
|
58
|
+
'entry_User'?: string | null;
|
|
59
|
+
/**
|
|
60
|
+
* Date when the record was last updated in the system.
|
|
61
|
+
* @type {string}
|
|
62
|
+
* @memberof CallTrackingDiagCodes
|
|
63
|
+
*/
|
|
64
|
+
'update_Date'?: string;
|
|
65
|
+
/**
|
|
66
|
+
* User that last updated the record in the system.
|
|
67
|
+
* @type {string}
|
|
68
|
+
* @memberof CallTrackingDiagCodes
|
|
69
|
+
*/
|
|
70
|
+
'update_User'?: string | null;
|
|
71
|
+
}
|
|
72
|
+
|
|
@@ -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 { CallTrackingProcCodes } from './call-tracking-proc-codes';
|
|
17
|
+
import { Debug } from './debug';
|
|
18
|
+
import { VBAProblemDetails } from './vbaproblem-details';
|
|
19
|
+
|
|
20
|
+
/**
|
|
21
|
+
*
|
|
22
|
+
* @export
|
|
23
|
+
* @interface CallTrackingProcCodesListVBAResponse
|
|
24
|
+
*/
|
|
25
|
+
export interface CallTrackingProcCodesListVBAResponse {
|
|
26
|
+
/**
|
|
27
|
+
*
|
|
28
|
+
* @type {Array<CallTrackingProcCodes>}
|
|
29
|
+
* @memberof CallTrackingProcCodesListVBAResponse
|
|
30
|
+
*/
|
|
31
|
+
'data'?: Array<CallTrackingProcCodes> | null;
|
|
32
|
+
/**
|
|
33
|
+
*
|
|
34
|
+
* @type {VBAProblemDetails}
|
|
35
|
+
* @memberof CallTrackingProcCodesListVBAResponse
|
|
36
|
+
*/
|
|
37
|
+
'error'?: VBAProblemDetails;
|
|
38
|
+
/**
|
|
39
|
+
*
|
|
40
|
+
* @type {Debug}
|
|
41
|
+
* @memberof CallTrackingProcCodesListVBAResponse
|
|
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 { CallTrackingProcCodes } from './call-tracking-proc-codes';
|
|
17
|
+
import { Debug } from './debug';
|
|
18
|
+
import { VBAProblemDetails } from './vbaproblem-details';
|
|
19
|
+
|
|
20
|
+
/**
|
|
21
|
+
*
|
|
22
|
+
* @export
|
|
23
|
+
* @interface CallTrackingProcCodesVBAResponse
|
|
24
|
+
*/
|
|
25
|
+
export interface CallTrackingProcCodesVBAResponse {
|
|
26
|
+
/**
|
|
27
|
+
*
|
|
28
|
+
* @type {CallTrackingProcCodes}
|
|
29
|
+
* @memberof CallTrackingProcCodesVBAResponse
|
|
30
|
+
*/
|
|
31
|
+
'data'?: CallTrackingProcCodes;
|
|
32
|
+
/**
|
|
33
|
+
*
|
|
34
|
+
* @type {VBAProblemDetails}
|
|
35
|
+
* @memberof CallTrackingProcCodesVBAResponse
|
|
36
|
+
*/
|
|
37
|
+
'error'?: VBAProblemDetails;
|
|
38
|
+
/**
|
|
39
|
+
*
|
|
40
|
+
* @type {Debug}
|
|
41
|
+
* @memberof CallTrackingProcCodesVBAResponse
|
|
42
|
+
*/
|
|
43
|
+
'debug'?: Debug;
|
|
44
|
+
}
|
|
45
|
+
|
|
@@ -0,0 +1,66 @@
|
|
|
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 CallTrackingProcCodes
|
|
21
|
+
*/
|
|
22
|
+
export interface CallTrackingProcCodes {
|
|
23
|
+
/**
|
|
24
|
+
* Unique identifier for each record. 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 CallTrackingProcCodes
|
|
27
|
+
*/
|
|
28
|
+
'callTrackingProcCodes_Key': number;
|
|
29
|
+
/**
|
|
30
|
+
* Unique identifier assigned to the call 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.
|
|
31
|
+
* @type {number}
|
|
32
|
+
* @memberof CallTrackingProcCodes
|
|
33
|
+
*/
|
|
34
|
+
'call_Key': number;
|
|
35
|
+
/**
|
|
36
|
+
* Date when the record was first added to the system.
|
|
37
|
+
* @type {string}
|
|
38
|
+
* @memberof CallTrackingProcCodes
|
|
39
|
+
*/
|
|
40
|
+
'entry_Date'?: string;
|
|
41
|
+
/**
|
|
42
|
+
* User that first added the record to the system.
|
|
43
|
+
* @type {string}
|
|
44
|
+
* @memberof CallTrackingProcCodes
|
|
45
|
+
*/
|
|
46
|
+
'entry_User'?: string | null;
|
|
47
|
+
/**
|
|
48
|
+
* Unique identifier assigned to the procedure that will be tied to the call tracking. This can be selected by right-clicking within the field and selecting \'Lookup\' from the context menu.
|
|
49
|
+
* @type {string}
|
|
50
|
+
* @memberof CallTrackingProcCodes
|
|
51
|
+
*/
|
|
52
|
+
'procedure_Code'?: string | null;
|
|
53
|
+
/**
|
|
54
|
+
* Date when the record was last updated in the system.
|
|
55
|
+
* @type {string}
|
|
56
|
+
* @memberof CallTrackingProcCodes
|
|
57
|
+
*/
|
|
58
|
+
'update_Date'?: string;
|
|
59
|
+
/**
|
|
60
|
+
* User that last updated the record in the system.
|
|
61
|
+
* @type {string}
|
|
62
|
+
* @memberof CallTrackingProcCodes
|
|
63
|
+
*/
|
|
64
|
+
'update_User'?: string | null;
|
|
65
|
+
}
|
|
66
|
+
|
|
@@ -21,70 +21,70 @@
|
|
|
21
21
|
*/
|
|
22
22
|
export interface CriteriaDetail {
|
|
23
23
|
/**
|
|
24
|
-
* Unique identifier of the Criteria for which this Criteria Details object belongs.
|
|
24
|
+
* Unique identifier of the Criteria for which this Criteria Details object belongs. When creating a new Critiera object, omit this from the payload.
|
|
25
25
|
* @type {number}
|
|
26
26
|
* @memberof CriteriaDetail
|
|
27
27
|
*/
|
|
28
28
|
'criteria_Key'?: number;
|
|
29
29
|
/**
|
|
30
|
-
* The sequential order that the criteria details will be applied.
|
|
30
|
+
* The sequential order that the criteria details will be applied. If you have multiple criteria details to add, this is important as it dictates the order in which they are applied and constructed (eg, if you have parenthesis or concatenate with AND\'s / OR\'s).
|
|
31
31
|
* @type {number}
|
|
32
32
|
* @memberof CriteriaDetail
|
|
33
33
|
*/
|
|
34
34
|
'criteria_Seq': number;
|
|
35
35
|
/**
|
|
36
|
-
*
|
|
36
|
+
* Specifies the AND/OR when multiple conditions are specified for a criteria. If making a complex query, use this to concatenate multiple criteria. For example, use the value \"Or\" if you want to match either this criteria or the next criteria. If not needed, use null or omit.
|
|
37
37
|
* @type {string}
|
|
38
38
|
* @memberof CriteriaDetail
|
|
39
39
|
*/
|
|
40
|
-
'
|
|
40
|
+
'criteria_AndOr'?: string | null;
|
|
41
41
|
/**
|
|
42
|
-
*
|
|
42
|
+
* Column containing the value for the criteria condition specified, The column within the Criteria_Table for whcih this criteria will be applied.
|
|
43
43
|
* @type {string}
|
|
44
44
|
* @memberof CriteriaDetail
|
|
45
45
|
*/
|
|
46
|
-
'
|
|
46
|
+
'criteria_Column'?: string | null;
|
|
47
47
|
/**
|
|
48
|
-
*
|
|
48
|
+
* Data type of the value for the criteria condition specified The data type of the column value (eg, string, int, date) that you will be using in the comparison.
|
|
49
49
|
* @type {string}
|
|
50
50
|
* @memberof CriteriaDetail
|
|
51
51
|
*/
|
|
52
|
-
'
|
|
52
|
+
'criteria_Data_Type'?: string | null;
|
|
53
53
|
/**
|
|
54
|
-
*
|
|
54
|
+
* First value of a range or only value for a single value of the criteria condition specified The value to use against the Criteria_Operator when comparing values (eg, >, >=, etc). If a Criteria_Operator requires two values (eg, for BETWEEN) then this is the beginning value. If not needed, use null or omit.
|
|
55
55
|
* @type {string}
|
|
56
56
|
* @memberof CriteriaDetail
|
|
57
57
|
*/
|
|
58
|
-
'
|
|
58
|
+
'criteria_From_Value'?: string | null;
|
|
59
59
|
/**
|
|
60
|
-
*
|
|
60
|
+
* Optional field used to hold a parenthesis for nesting criteria conditions Allows you to start a parenthetical expression. Add \"(\" to start the parenthesis grouping. If not needed, use null or omit. An example of a criteria using parenthesis would be (x=1 OR x=2) OR (y=1 OR y=2).
|
|
61
61
|
* @type {string}
|
|
62
62
|
* @memberof CriteriaDetail
|
|
63
63
|
*/
|
|
64
|
-
'
|
|
64
|
+
'criteria_Left_Paren'?: string | null;
|
|
65
65
|
/**
|
|
66
|
-
*
|
|
66
|
+
*
|
|
67
67
|
* @type {string}
|
|
68
68
|
* @memberof CriteriaDetail
|
|
69
69
|
*/
|
|
70
|
-
'
|
|
70
|
+
'criteria_Operator'?: string | null;
|
|
71
71
|
/**
|
|
72
|
-
*
|
|
72
|
+
* Optional field used to hold a parenthesis for nesting criteria conditions Allows you to end a parenthetical expression. Add \")\" to end the parenthesis grouping. If not needed, use null or omit. An example of a criteria using parenthesis would be (x=1 OR x=2) OR (y=1 OR y=2).
|
|
73
73
|
* @type {string}
|
|
74
74
|
* @memberof CriteriaDetail
|
|
75
75
|
*/
|
|
76
|
-
'
|
|
76
|
+
'criteria_Right_Paren'?: string | null;
|
|
77
77
|
/**
|
|
78
|
-
*
|
|
78
|
+
* Table where a column for criteria condition is found The table for which this criteria will be applied. The table should exist within the SearchConfig that this criteria is being applied.
|
|
79
79
|
* @type {string}
|
|
80
80
|
* @memberof CriteriaDetail
|
|
81
81
|
*/
|
|
82
|
-
'
|
|
82
|
+
'criteria_Table'?: string | null;
|
|
83
83
|
/**
|
|
84
|
-
*
|
|
84
|
+
* Optional ending value of a range for the criteria condition specified If a Criteria_Operator requires two values (eg, for BETWEEN) then this is the ending value. If not needed, use null or omit.
|
|
85
85
|
* @type {string}
|
|
86
86
|
* @memberof CriteriaDetail
|
|
87
87
|
*/
|
|
88
|
-
'
|
|
88
|
+
'criteria_Thru_Value'?: string | null;
|
|
89
89
|
}
|
|
90
90
|
|
|
@@ -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 { EDICustomField } from './edicustom-field';
|
|
18
|
+
import { VBAProblemDetails } from './vbaproblem-details';
|
|
19
|
+
|
|
20
|
+
/**
|
|
21
|
+
*
|
|
22
|
+
* @export
|
|
23
|
+
* @interface EDICustomFieldListVBAResponse
|
|
24
|
+
*/
|
|
25
|
+
export interface EDICustomFieldListVBAResponse {
|
|
26
|
+
/**
|
|
27
|
+
*
|
|
28
|
+
* @type {Array<EDICustomField>}
|
|
29
|
+
* @memberof EDICustomFieldListVBAResponse
|
|
30
|
+
*/
|
|
31
|
+
'data'?: Array<EDICustomField> | null;
|
|
32
|
+
/**
|
|
33
|
+
*
|
|
34
|
+
* @type {VBAProblemDetails}
|
|
35
|
+
* @memberof EDICustomFieldListVBAResponse
|
|
36
|
+
*/
|
|
37
|
+
'error'?: VBAProblemDetails;
|
|
38
|
+
/**
|
|
39
|
+
*
|
|
40
|
+
* @type {Debug}
|
|
41
|
+
* @memberof EDICustomFieldListVBAResponse
|
|
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 { EDICustomFieldValueClaim } from './edicustom-field-value-claim';
|
|
18
|
+
import { VBAProblemDetails } from './vbaproblem-details';
|
|
19
|
+
|
|
20
|
+
/**
|
|
21
|
+
*
|
|
22
|
+
* @export
|
|
23
|
+
* @interface EDICustomFieldValueClaimListVBAResponse
|
|
24
|
+
*/
|
|
25
|
+
export interface EDICustomFieldValueClaimListVBAResponse {
|
|
26
|
+
/**
|
|
27
|
+
*
|
|
28
|
+
* @type {Array<EDICustomFieldValueClaim>}
|
|
29
|
+
* @memberof EDICustomFieldValueClaimListVBAResponse
|
|
30
|
+
*/
|
|
31
|
+
'data'?: Array<EDICustomFieldValueClaim> | null;
|
|
32
|
+
/**
|
|
33
|
+
*
|
|
34
|
+
* @type {VBAProblemDetails}
|
|
35
|
+
* @memberof EDICustomFieldValueClaimListVBAResponse
|
|
36
|
+
*/
|
|
37
|
+
'error'?: VBAProblemDetails;
|
|
38
|
+
/**
|
|
39
|
+
*
|
|
40
|
+
* @type {Debug}
|
|
41
|
+
* @memberof EDICustomFieldValueClaimListVBAResponse
|
|
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 { EDICustomFieldValueClaim } from './edicustom-field-value-claim';
|
|
18
|
+
import { VBAProblemDetails } from './vbaproblem-details';
|
|
19
|
+
|
|
20
|
+
/**
|
|
21
|
+
*
|
|
22
|
+
* @export
|
|
23
|
+
* @interface EDICustomFieldValueClaimVBAResponse
|
|
24
|
+
*/
|
|
25
|
+
export interface EDICustomFieldValueClaimVBAResponse {
|
|
26
|
+
/**
|
|
27
|
+
*
|
|
28
|
+
* @type {EDICustomFieldValueClaim}
|
|
29
|
+
* @memberof EDICustomFieldValueClaimVBAResponse
|
|
30
|
+
*/
|
|
31
|
+
'data'?: EDICustomFieldValueClaim;
|
|
32
|
+
/**
|
|
33
|
+
*
|
|
34
|
+
* @type {VBAProblemDetails}
|
|
35
|
+
* @memberof EDICustomFieldValueClaimVBAResponse
|
|
36
|
+
*/
|
|
37
|
+
'error'?: VBAProblemDetails;
|
|
38
|
+
/**
|
|
39
|
+
*
|
|
40
|
+
* @type {Debug}
|
|
41
|
+
* @memberof EDICustomFieldValueClaimVBAResponse
|
|
42
|
+
*/
|
|
43
|
+
'debug'?: Debug;
|
|
44
|
+
}
|
|
45
|
+
|
|
@@ -0,0 +1,72 @@
|
|
|
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 EDICustomFieldValueClaim
|
|
21
|
+
*/
|
|
22
|
+
export interface EDICustomFieldValueClaim {
|
|
23
|
+
/**
|
|
24
|
+
* Key value that identifies a custom field value from a 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 EDICustomFieldValueClaim
|
|
27
|
+
*/
|
|
28
|
+
'ediCustomFieldValueClaim_Key': number;
|
|
29
|
+
/**
|
|
30
|
+
* Adjustment sequence of the claim where the custom field will be stored
|
|
31
|
+
* @type {string}
|
|
32
|
+
* @memberof EDICustomFieldValueClaim
|
|
33
|
+
*/
|
|
34
|
+
'adjustment_Seq': string;
|
|
35
|
+
/**
|
|
36
|
+
* Batch claim number of the claim where the custom field will be stored 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 EDICustomFieldValueClaim
|
|
39
|
+
*/
|
|
40
|
+
'batch_Claim': number;
|
|
41
|
+
/**
|
|
42
|
+
* Batch number of the claim where the custom field will be stored 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 EDICustomFieldValueClaim
|
|
45
|
+
*/
|
|
46
|
+
'batch_Number': number;
|
|
47
|
+
/**
|
|
48
|
+
* Batch claim sequence of the claim where the custom field will be stored
|
|
49
|
+
* @type {string}
|
|
50
|
+
* @memberof EDICustomFieldValueClaim
|
|
51
|
+
*/
|
|
52
|
+
'claim_Seq': string;
|
|
53
|
+
/**
|
|
54
|
+
* Key value that identifies a custom field on and EDI load 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 EDICustomFieldValueClaim
|
|
57
|
+
*/
|
|
58
|
+
'ediCustomField_Key': number;
|
|
59
|
+
/**
|
|
60
|
+
* Data type of the custom field on the EDI claim load
|
|
61
|
+
* @type {string}
|
|
62
|
+
* @memberof EDICustomFieldValueClaim
|
|
63
|
+
*/
|
|
64
|
+
'field_DataType'?: string | null;
|
|
65
|
+
/**
|
|
66
|
+
* Data value of the custom field on the EDI claim load
|
|
67
|
+
* @type {string}
|
|
68
|
+
* @memberof EDICustomFieldValueClaim
|
|
69
|
+
*/
|
|
70
|
+
'field_Value'?: string | null;
|
|
71
|
+
}
|
|
72
|
+
|