@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
|
@@ -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 EDICustomFieldVBAResponse
|
|
24
|
+
*/
|
|
25
|
+
export interface EDICustomFieldVBAResponse {
|
|
26
|
+
/**
|
|
27
|
+
*
|
|
28
|
+
* @type {EDICustomField}
|
|
29
|
+
* @memberof EDICustomFieldVBAResponse
|
|
30
|
+
*/
|
|
31
|
+
'data'?: EDICustomField;
|
|
32
|
+
/**
|
|
33
|
+
*
|
|
34
|
+
* @type {VBAProblemDetails}
|
|
35
|
+
* @memberof EDICustomFieldVBAResponse
|
|
36
|
+
*/
|
|
37
|
+
'error'?: VBAProblemDetails;
|
|
38
|
+
/**
|
|
39
|
+
*
|
|
40
|
+
* @type {Debug}
|
|
41
|
+
* @memberof EDICustomFieldVBAResponse
|
|
42
|
+
*/
|
|
43
|
+
'debug'?: Debug;
|
|
44
|
+
}
|
|
45
|
+
|
|
@@ -0,0 +1,42 @@
|
|
|
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 EDICustomField
|
|
21
|
+
*/
|
|
22
|
+
export interface EDICustomField {
|
|
23
|
+
/**
|
|
24
|
+
* 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.
|
|
25
|
+
* @type {number}
|
|
26
|
+
* @memberof EDICustomField
|
|
27
|
+
*/
|
|
28
|
+
'ediCustomField_Key': number;
|
|
29
|
+
/**
|
|
30
|
+
* Name of the EDI custom field
|
|
31
|
+
* @type {string}
|
|
32
|
+
* @memberof EDICustomField
|
|
33
|
+
*/
|
|
34
|
+
'field_Name'?: string | null;
|
|
35
|
+
/**
|
|
36
|
+
* Source where the EDI custom field will retrieved from
|
|
37
|
+
* @type {string}
|
|
38
|
+
* @memberof EDICustomField
|
|
39
|
+
*/
|
|
40
|
+
'source': string;
|
|
41
|
+
}
|
|
42
|
+
|
|
@@ -0,0 +1,43 @@
|
|
|
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 { ProcessCheckOption } from './process-check-option';
|
|
17
|
+
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @export
|
|
21
|
+
* @interface FundingProcessCheck
|
|
22
|
+
*/
|
|
23
|
+
export interface FundingProcessCheck {
|
|
24
|
+
/**
|
|
25
|
+
*
|
|
26
|
+
* @type {string}
|
|
27
|
+
* @memberof FundingProcessCheck
|
|
28
|
+
*/
|
|
29
|
+
'posted_Date'?: string | null;
|
|
30
|
+
/**
|
|
31
|
+
*
|
|
32
|
+
* @type {string}
|
|
33
|
+
* @memberof FundingProcessCheck
|
|
34
|
+
*/
|
|
35
|
+
'user_ID'?: string | null;
|
|
36
|
+
/**
|
|
37
|
+
*
|
|
38
|
+
* @type {Array<ProcessCheckOption>}
|
|
39
|
+
* @memberof FundingProcessCheck
|
|
40
|
+
*/
|
|
41
|
+
'process_Check_Options'?: Array<ProcessCheckOption> | null;
|
|
42
|
+
}
|
|
43
|
+
|
package/models/index.ts
CHANGED
|
@@ -113,7 +113,13 @@ export * from './call-tracking-call-type-vbaresponse';
|
|
|
113
113
|
export * from './call-tracking-caller-type';
|
|
114
114
|
export * from './call-tracking-caller-type-list-vbaresponse';
|
|
115
115
|
export * from './call-tracking-caller-type-vbaresponse';
|
|
116
|
+
export * from './call-tracking-diag-codes';
|
|
117
|
+
export * from './call-tracking-diag-codes-list-vbaresponse';
|
|
118
|
+
export * from './call-tracking-diag-codes-vbaresponse';
|
|
116
119
|
export * from './call-tracking-list-vbaresponse';
|
|
120
|
+
export * from './call-tracking-proc-codes';
|
|
121
|
+
export * from './call-tracking-proc-codes-list-vbaresponse';
|
|
122
|
+
export * from './call-tracking-proc-codes-vbaresponse';
|
|
117
123
|
export * from './call-tracking-subscriber';
|
|
118
124
|
export * from './call-tracking-subscriber-list-vbaresponse';
|
|
119
125
|
export * from './call-tracking-subscriber-vbaresponse';
|
|
@@ -867,6 +873,12 @@ export * from './duplicate-set-vbaresponse';
|
|
|
867
873
|
export * from './edicode-map';
|
|
868
874
|
export * from './edicode-map-list-vbaresponse';
|
|
869
875
|
export * from './edicode-map-vbaresponse';
|
|
876
|
+
export * from './edicustom-field';
|
|
877
|
+
export * from './edicustom-field-list-vbaresponse';
|
|
878
|
+
export * from './edicustom-field-vbaresponse';
|
|
879
|
+
export * from './edicustom-field-value-claim';
|
|
880
|
+
export * from './edicustom-field-value-claim-list-vbaresponse';
|
|
881
|
+
export * from './edicustom-field-value-claim-vbaresponse';
|
|
870
882
|
export * from './electronic-statement';
|
|
871
883
|
export * from './eligibility-status';
|
|
872
884
|
export * from './eligibility-status-list-vbaresponse';
|
|
@@ -999,6 +1011,7 @@ export * from './funding-issue-type-vbaresponse';
|
|
|
999
1011
|
export * from './funding-list-vbaresponse';
|
|
1000
1012
|
export * from './funding-name-on-check';
|
|
1001
1013
|
export * from './funding-name-on-check-vbaresponse';
|
|
1014
|
+
export * from './funding-process-check';
|
|
1002
1015
|
export * from './funding-reconcile';
|
|
1003
1016
|
export * from './funding-reconcile-disbursed';
|
|
1004
1017
|
export * from './funding-reconcile-disbursed-list-vbaresponse';
|
|
@@ -1591,9 +1604,12 @@ export * from './plan-type-vbaresponse';
|
|
|
1591
1604
|
export * from './plans';
|
|
1592
1605
|
export * from './plans-list-vbaresponse';
|
|
1593
1606
|
export * from './plans-vbaresponse';
|
|
1607
|
+
export * from './policy-forfeiture-ext';
|
|
1594
1608
|
export * from './policy-forfeiture-ext-detail';
|
|
1595
1609
|
export * from './policy-forfeiture-ext-detail-list-vbaresponse';
|
|
1596
1610
|
export * from './policy-forfeiture-ext-detail-vbaresponse';
|
|
1611
|
+
export * from './policy-forfeiture-ext-list-vbaresponse';
|
|
1612
|
+
export * from './policy-forfeiture-ext-vbaresponse';
|
|
1597
1613
|
export * from './policy-status';
|
|
1598
1614
|
export * from './policy-status-list-vbaresponse';
|
|
1599
1615
|
export * from './policy-status-vbaresponse';
|
|
@@ -1728,6 +1744,7 @@ export * from './procedure-code-vbaresponse';
|
|
|
1728
1744
|
export * from './procedure-group';
|
|
1729
1745
|
export * from './procedure-group-list-vbaresponse';
|
|
1730
1746
|
export * from './procedure-group-vbaresponse';
|
|
1747
|
+
export * from './process-check-option';
|
|
1731
1748
|
export * from './profile-provider-address-provider';
|
|
1732
1749
|
export * from './profile-provider-address-provider-vbaresponse';
|
|
1733
1750
|
export * from './provider';
|
|
@@ -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 { PolicyForfeitureExt } from './policy-forfeiture-ext';
|
|
18
|
+
import { VBAProblemDetails } from './vbaproblem-details';
|
|
19
|
+
|
|
20
|
+
/**
|
|
21
|
+
*
|
|
22
|
+
* @export
|
|
23
|
+
* @interface PolicyForfeitureExtListVBAResponse
|
|
24
|
+
*/
|
|
25
|
+
export interface PolicyForfeitureExtListVBAResponse {
|
|
26
|
+
/**
|
|
27
|
+
*
|
|
28
|
+
* @type {Array<PolicyForfeitureExt>}
|
|
29
|
+
* @memberof PolicyForfeitureExtListVBAResponse
|
|
30
|
+
*/
|
|
31
|
+
'data'?: Array<PolicyForfeitureExt> | null;
|
|
32
|
+
/**
|
|
33
|
+
*
|
|
34
|
+
* @type {VBAProblemDetails}
|
|
35
|
+
* @memberof PolicyForfeitureExtListVBAResponse
|
|
36
|
+
*/
|
|
37
|
+
'error'?: VBAProblemDetails;
|
|
38
|
+
/**
|
|
39
|
+
*
|
|
40
|
+
* @type {Debug}
|
|
41
|
+
* @memberof PolicyForfeitureExtListVBAResponse
|
|
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 { PolicyForfeitureExt } from './policy-forfeiture-ext';
|
|
18
|
+
import { VBAProblemDetails } from './vbaproblem-details';
|
|
19
|
+
|
|
20
|
+
/**
|
|
21
|
+
*
|
|
22
|
+
* @export
|
|
23
|
+
* @interface PolicyForfeitureExtVBAResponse
|
|
24
|
+
*/
|
|
25
|
+
export interface PolicyForfeitureExtVBAResponse {
|
|
26
|
+
/**
|
|
27
|
+
*
|
|
28
|
+
* @type {PolicyForfeitureExt}
|
|
29
|
+
* @memberof PolicyForfeitureExtVBAResponse
|
|
30
|
+
*/
|
|
31
|
+
'data'?: PolicyForfeitureExt;
|
|
32
|
+
/**
|
|
33
|
+
*
|
|
34
|
+
* @type {VBAProblemDetails}
|
|
35
|
+
* @memberof PolicyForfeitureExtVBAResponse
|
|
36
|
+
*/
|
|
37
|
+
'error'?: VBAProblemDetails;
|
|
38
|
+
/**
|
|
39
|
+
*
|
|
40
|
+
* @type {Debug}
|
|
41
|
+
* @memberof PolicyForfeitureExtVBAResponse
|
|
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 PolicyForfeitureExt
|
|
21
|
+
*/
|
|
22
|
+
export interface PolicyForfeitureExt {
|
|
23
|
+
/**
|
|
24
|
+
* Key value identifying a policy forfeiture extension 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 PolicyForfeitureExt
|
|
27
|
+
*/
|
|
28
|
+
'policyForfeitureExt_Key': number;
|
|
29
|
+
/**
|
|
30
|
+
* Description of a policy forfeiture extension
|
|
31
|
+
* @type {string}
|
|
32
|
+
* @memberof PolicyForfeitureExt
|
|
33
|
+
*/
|
|
34
|
+
'description'?: string | null;
|
|
35
|
+
/**
|
|
36
|
+
* Date record was first added to the system
|
|
37
|
+
* @type {string}
|
|
38
|
+
* @memberof PolicyForfeitureExt
|
|
39
|
+
*/
|
|
40
|
+
'entry_Date'?: string;
|
|
41
|
+
/**
|
|
42
|
+
* User that first added the record to the system
|
|
43
|
+
* @type {string}
|
|
44
|
+
* @memberof PolicyForfeitureExt
|
|
45
|
+
*/
|
|
46
|
+
'entry_User'?: string | null;
|
|
47
|
+
/**
|
|
48
|
+
* Date the record was last updated in the system
|
|
49
|
+
* @type {string}
|
|
50
|
+
* @memberof PolicyForfeitureExt
|
|
51
|
+
*/
|
|
52
|
+
'update_Date'?: string;
|
|
53
|
+
/**
|
|
54
|
+
* User that last updated the record in the system
|
|
55
|
+
* @type {string}
|
|
56
|
+
* @memberof PolicyForfeitureExt
|
|
57
|
+
*/
|
|
58
|
+
'update_User'?: string | null;
|
|
59
|
+
}
|
|
60
|
+
|
|
@@ -0,0 +1,42 @@
|
|
|
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 ProcessCheckOption
|
|
21
|
+
*/
|
|
22
|
+
export interface ProcessCheckOption {
|
|
23
|
+
/**
|
|
24
|
+
*
|
|
25
|
+
* @type {string}
|
|
26
|
+
* @memberof ProcessCheckOption
|
|
27
|
+
*/
|
|
28
|
+
'payor_ID'?: string | null;
|
|
29
|
+
/**
|
|
30
|
+
*
|
|
31
|
+
* @type {number}
|
|
32
|
+
* @memberof ProcessCheckOption
|
|
33
|
+
*/
|
|
34
|
+
'account_Key'?: number | null;
|
|
35
|
+
/**
|
|
36
|
+
*
|
|
37
|
+
* @type {number}
|
|
38
|
+
* @memberof ProcessCheckOption
|
|
39
|
+
*/
|
|
40
|
+
'signature_Key'?: number | null;
|
|
41
|
+
}
|
|
42
|
+
|