@vbasoftware/vbapi-vbasoftware-typescript-axios 1.20221210.1 → 1.20230121.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-enrollment-api.ts +207 -0
- package/api/benefits-api.ts +87 -0
- package/api/bill-type-places-api.ts +716 -0
- package/api/bill-types-api.ts +668 -0
- package/api/care-case-clinical-fact-category-types-api.ts +107 -59
- package/api/care-case-clinical-facts-api.ts +155 -107
- package/api/cobtypes-api.ts +155 -0
- package/api/context4-lists-api.ts +331 -0
- package/api/day-intervals-api.ts +716 -0
- package/api/disability-options-api.ts +155 -0
- package/api/flex-types-api.ts +155 -0
- package/api/issue-duration-values-api.ts +677 -0
- package/api/life-options-api.ts +242 -0
- package/api/premium-rates-api.ts +125 -0
- package/api/provider-withholds-api.ts +31 -13
- package/api/report-definitions-api.ts +17 -8
- package/api/report-series-api.ts +17 -8
- package/api/subscriber-enrollment-plans-api.ts +115 -0
- package/api/subscribers-api.ts +95 -0
- package/api/waiting-period-types-api.ts +155 -0
- package/api.ts +10 -0
- package/models/auth-diag-codes.ts +24 -0
- package/models/bill-type-list-vbaresponse.ts +45 -0
- package/models/bill-type-place-list-vbaresponse.ts +45 -0
- package/models/bill-type-place-vbaresponse.ts +45 -0
- package/models/bill-type-place.ts +66 -0
- package/models/bill-type-vbaresponse.ts +45 -0
- package/models/bill-type.ts +66 -0
- package/models/care-case-clinical-fact-category-type.ts +7 -7
- package/models/care-case-clinical-fact.ts +9 -9
- package/models/criteria-detail.ts +10 -10
- package/models/criteria.ts +2 -2
- package/models/day-interval-list-vbaresponse.ts +45 -0
- package/models/day-interval-vbaresponse.ts +45 -0
- package/models/day-interval.ts +144 -0
- package/models/groups.ts +30 -0
- package/models/idcard-request.ts +30 -0
- package/models/index.ts +12 -0
- package/models/issue-duration-value-list-vbaresponse.ts +45 -0
- package/models/issue-duration-value-vbaresponse.ts +45 -0
- package/models/issue-duration-value.ts +66 -0
- package/models/mem-enrollment-plan.ts +54 -0
- package/models/mem-enrollment-rider.ts +54 -0
- package/models/member-address.ts +36 -0
- package/models/member-beneficiary.ts +36 -0
- package/models/member-prior-accum.ts +24 -0
- package/models/plan-benefit-rate.ts +30 -0
- package/models/plan-benefits.ts +295 -67
- package/models/plan-type.ts +42 -0
- package/models/plans.ts +256 -106
- package/models/provider-withhold.ts +17 -17
- package/models/sub-enrollment-plan.ts +60 -0
- package/models/sub-enrollment-rider.ts +56 -2
- package/models/subscriber-prior-accum.ts +24 -0
- package/models/subscribers.ts +36 -0
- package/models/users.ts +31 -1
- 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 { BillType } from './bill-type';
|
|
17
|
+
import { Debug } from './debug';
|
|
18
|
+
import { VBAProblemDetails } from './vbaproblem-details';
|
|
19
|
+
|
|
20
|
+
/**
|
|
21
|
+
*
|
|
22
|
+
* @export
|
|
23
|
+
* @interface BillTypeListVBAResponse
|
|
24
|
+
*/
|
|
25
|
+
export interface BillTypeListVBAResponse {
|
|
26
|
+
/**
|
|
27
|
+
*
|
|
28
|
+
* @type {Array<BillType>}
|
|
29
|
+
* @memberof BillTypeListVBAResponse
|
|
30
|
+
*/
|
|
31
|
+
'data'?: Array<BillType> | null;
|
|
32
|
+
/**
|
|
33
|
+
*
|
|
34
|
+
* @type {VBAProblemDetails}
|
|
35
|
+
* @memberof BillTypeListVBAResponse
|
|
36
|
+
*/
|
|
37
|
+
'error'?: VBAProblemDetails;
|
|
38
|
+
/**
|
|
39
|
+
*
|
|
40
|
+
* @type {Debug}
|
|
41
|
+
* @memberof BillTypeListVBAResponse
|
|
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 { BillTypePlace } from './bill-type-place';
|
|
17
|
+
import { Debug } from './debug';
|
|
18
|
+
import { VBAProblemDetails } from './vbaproblem-details';
|
|
19
|
+
|
|
20
|
+
/**
|
|
21
|
+
*
|
|
22
|
+
* @export
|
|
23
|
+
* @interface BillTypePlaceListVBAResponse
|
|
24
|
+
*/
|
|
25
|
+
export interface BillTypePlaceListVBAResponse {
|
|
26
|
+
/**
|
|
27
|
+
*
|
|
28
|
+
* @type {Array<BillTypePlace>}
|
|
29
|
+
* @memberof BillTypePlaceListVBAResponse
|
|
30
|
+
*/
|
|
31
|
+
'data'?: Array<BillTypePlace> | null;
|
|
32
|
+
/**
|
|
33
|
+
*
|
|
34
|
+
* @type {VBAProblemDetails}
|
|
35
|
+
* @memberof BillTypePlaceListVBAResponse
|
|
36
|
+
*/
|
|
37
|
+
'error'?: VBAProblemDetails;
|
|
38
|
+
/**
|
|
39
|
+
*
|
|
40
|
+
* @type {Debug}
|
|
41
|
+
* @memberof BillTypePlaceListVBAResponse
|
|
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 { BillTypePlace } from './bill-type-place';
|
|
17
|
+
import { Debug } from './debug';
|
|
18
|
+
import { VBAProblemDetails } from './vbaproblem-details';
|
|
19
|
+
|
|
20
|
+
/**
|
|
21
|
+
*
|
|
22
|
+
* @export
|
|
23
|
+
* @interface BillTypePlaceVBAResponse
|
|
24
|
+
*/
|
|
25
|
+
export interface BillTypePlaceVBAResponse {
|
|
26
|
+
/**
|
|
27
|
+
*
|
|
28
|
+
* @type {BillTypePlace}
|
|
29
|
+
* @memberof BillTypePlaceVBAResponse
|
|
30
|
+
*/
|
|
31
|
+
'data'?: BillTypePlace;
|
|
32
|
+
/**
|
|
33
|
+
*
|
|
34
|
+
* @type {VBAProblemDetails}
|
|
35
|
+
* @memberof BillTypePlaceVBAResponse
|
|
36
|
+
*/
|
|
37
|
+
'error'?: VBAProblemDetails;
|
|
38
|
+
/**
|
|
39
|
+
*
|
|
40
|
+
* @type {Debug}
|
|
41
|
+
* @memberof BillTypePlaceVBAResponse
|
|
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 BillTypePlace
|
|
21
|
+
*/
|
|
22
|
+
export interface BillTypePlace {
|
|
23
|
+
/**
|
|
24
|
+
* Unique identifier for the Type of Bill
|
|
25
|
+
* @type {string}
|
|
26
|
+
* @memberof BillTypePlace
|
|
27
|
+
*/
|
|
28
|
+
'type_Of_Bill': string;
|
|
29
|
+
/**
|
|
30
|
+
* Place Code for this Type of Bill
|
|
31
|
+
* @type {string}
|
|
32
|
+
* @memberof BillTypePlace
|
|
33
|
+
*/
|
|
34
|
+
'place_Of_Service': string;
|
|
35
|
+
/**
|
|
36
|
+
* Date record was first added to the system
|
|
37
|
+
* @type {string}
|
|
38
|
+
* @memberof BillTypePlace
|
|
39
|
+
*/
|
|
40
|
+
'entry_Date'?: string;
|
|
41
|
+
/**
|
|
42
|
+
* User that first added the record to the system
|
|
43
|
+
* @type {string}
|
|
44
|
+
* @memberof BillTypePlace
|
|
45
|
+
*/
|
|
46
|
+
'entry_User'?: string | null;
|
|
47
|
+
/**
|
|
48
|
+
* Excludes this Place Code for this Type of Bill
|
|
49
|
+
* @type {boolean}
|
|
50
|
+
* @memberof BillTypePlace
|
|
51
|
+
*/
|
|
52
|
+
'excluded_Type_Of_Bill'?: boolean | null;
|
|
53
|
+
/**
|
|
54
|
+
* Date the record was last updated in the system
|
|
55
|
+
* @type {string}
|
|
56
|
+
* @memberof BillTypePlace
|
|
57
|
+
*/
|
|
58
|
+
'update_Date'?: string;
|
|
59
|
+
/**
|
|
60
|
+
* User that last updated the record in the system
|
|
61
|
+
* @type {string}
|
|
62
|
+
* @memberof BillTypePlace
|
|
63
|
+
*/
|
|
64
|
+
'update_User'?: string | null;
|
|
65
|
+
}
|
|
66
|
+
|
|
@@ -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 { BillType } from './bill-type';
|
|
17
|
+
import { Debug } from './debug';
|
|
18
|
+
import { VBAProblemDetails } from './vbaproblem-details';
|
|
19
|
+
|
|
20
|
+
/**
|
|
21
|
+
*
|
|
22
|
+
* @export
|
|
23
|
+
* @interface BillTypeVBAResponse
|
|
24
|
+
*/
|
|
25
|
+
export interface BillTypeVBAResponse {
|
|
26
|
+
/**
|
|
27
|
+
*
|
|
28
|
+
* @type {BillType}
|
|
29
|
+
* @memberof BillTypeVBAResponse
|
|
30
|
+
*/
|
|
31
|
+
'data'?: BillType;
|
|
32
|
+
/**
|
|
33
|
+
*
|
|
34
|
+
* @type {VBAProblemDetails}
|
|
35
|
+
* @memberof BillTypeVBAResponse
|
|
36
|
+
*/
|
|
37
|
+
'error'?: VBAProblemDetails;
|
|
38
|
+
/**
|
|
39
|
+
*
|
|
40
|
+
* @type {Debug}
|
|
41
|
+
* @memberof BillTypeVBAResponse
|
|
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 BillType
|
|
21
|
+
*/
|
|
22
|
+
export interface BillType {
|
|
23
|
+
/**
|
|
24
|
+
* Unique identifier for the Type of Bill
|
|
25
|
+
* @type {string}
|
|
26
|
+
* @memberof BillType
|
|
27
|
+
*/
|
|
28
|
+
'type_Of_Bill': string;
|
|
29
|
+
/**
|
|
30
|
+
* Description of Type of Bill
|
|
31
|
+
* @type {string}
|
|
32
|
+
* @memberof BillType
|
|
33
|
+
*/
|
|
34
|
+
'description'?: string | null;
|
|
35
|
+
/**
|
|
36
|
+
* Date record was first added to the system
|
|
37
|
+
* @type {string}
|
|
38
|
+
* @memberof BillType
|
|
39
|
+
*/
|
|
40
|
+
'entry_Date'?: string;
|
|
41
|
+
/**
|
|
42
|
+
* User that first added the record to the system
|
|
43
|
+
* @type {string}
|
|
44
|
+
* @memberof BillType
|
|
45
|
+
*/
|
|
46
|
+
'entry_User'?: string | null;
|
|
47
|
+
/**
|
|
48
|
+
* Inpatient identifies the Type of Bill used for inpatient bills
|
|
49
|
+
* @type {boolean}
|
|
50
|
+
* @memberof BillType
|
|
51
|
+
*/
|
|
52
|
+
'inpatient': boolean;
|
|
53
|
+
/**
|
|
54
|
+
* Date the record was last updated in the system
|
|
55
|
+
* @type {string}
|
|
56
|
+
* @memberof BillType
|
|
57
|
+
*/
|
|
58
|
+
'update_Date'?: string;
|
|
59
|
+
/**
|
|
60
|
+
* User that last updated the record in the system
|
|
61
|
+
* @type {string}
|
|
62
|
+
* @memberof BillType
|
|
63
|
+
*/
|
|
64
|
+
'update_User'?: string | null;
|
|
65
|
+
}
|
|
66
|
+
|
|
@@ -21,43 +21,43 @@
|
|
|
21
21
|
*/
|
|
22
22
|
export interface CareCaseClinicalFactCategoryType {
|
|
23
23
|
/**
|
|
24
|
-
*
|
|
24
|
+
* Identifier for the Clinical Fact Category Type
|
|
25
25
|
* @type {string}
|
|
26
26
|
* @memberof CareCaseClinicalFactCategoryType
|
|
27
27
|
*/
|
|
28
28
|
'careCaseClinicalFactCategoryType1': string;
|
|
29
29
|
/**
|
|
30
|
-
*
|
|
30
|
+
* Identifier for the Clinical Fact Category
|
|
31
31
|
* @type {string}
|
|
32
32
|
* @memberof CareCaseClinicalFactCategoryType
|
|
33
33
|
*/
|
|
34
34
|
'careCaseClinicalFactCategory'?: string | null;
|
|
35
35
|
/**
|
|
36
|
-
*
|
|
36
|
+
* Description of the Clinical Fact Category Type
|
|
37
37
|
* @type {string}
|
|
38
38
|
* @memberof CareCaseClinicalFactCategoryType
|
|
39
39
|
*/
|
|
40
40
|
'description'?: string | null;
|
|
41
41
|
/**
|
|
42
|
-
*
|
|
42
|
+
* Date record was first added to the system
|
|
43
43
|
* @type {string}
|
|
44
44
|
* @memberof CareCaseClinicalFactCategoryType
|
|
45
45
|
*/
|
|
46
46
|
'entry_Date'?: string;
|
|
47
47
|
/**
|
|
48
|
-
*
|
|
48
|
+
* User that first added the record to the system
|
|
49
49
|
* @type {string}
|
|
50
50
|
* @memberof CareCaseClinicalFactCategoryType
|
|
51
51
|
*/
|
|
52
52
|
'entry_User'?: string | null;
|
|
53
53
|
/**
|
|
54
|
-
*
|
|
54
|
+
* Date the record was last updated in the system
|
|
55
55
|
* @type {string}
|
|
56
56
|
* @memberof CareCaseClinicalFactCategoryType
|
|
57
57
|
*/
|
|
58
58
|
'update_Date'?: string;
|
|
59
59
|
/**
|
|
60
|
-
*
|
|
60
|
+
* User that last updated the record in the system
|
|
61
61
|
* @type {string}
|
|
62
62
|
* @memberof CareCaseClinicalFactCategoryType
|
|
63
63
|
*/
|
|
@@ -21,49 +21,49 @@
|
|
|
21
21
|
*/
|
|
22
22
|
export interface CareCaseClinicalFact {
|
|
23
23
|
/**
|
|
24
|
-
*
|
|
24
|
+
* Identifier for the CareCaseClinicalFact
|
|
25
25
|
* @type {number}
|
|
26
26
|
* @memberof CareCaseClinicalFact
|
|
27
27
|
*/
|
|
28
28
|
'careCaseClinicalFact_Key': number;
|
|
29
29
|
/**
|
|
30
|
-
*
|
|
30
|
+
* User Managed field that ties to the Clinical Fact in the system
|
|
31
31
|
* @type {string}
|
|
32
32
|
* @memberof CareCaseClinicalFact
|
|
33
33
|
*/
|
|
34
34
|
'careCaseClinicalFactCategory'?: string | null;
|
|
35
35
|
/**
|
|
36
|
-
*
|
|
36
|
+
* User Managed field that ties to the Clinical Fact Type in the system
|
|
37
37
|
* @type {string}
|
|
38
38
|
* @memberof CareCaseClinicalFact
|
|
39
39
|
*/
|
|
40
40
|
'careCaseClinicalFactCategoryType'?: string | null;
|
|
41
41
|
/**
|
|
42
|
-
*
|
|
42
|
+
* Identifier of the case.
|
|
43
43
|
* @type {number}
|
|
44
44
|
* @memberof CareCaseClinicalFact
|
|
45
45
|
*/
|
|
46
|
-
'case_Key'
|
|
46
|
+
'case_Key'?: number | null;
|
|
47
47
|
/**
|
|
48
|
-
*
|
|
48
|
+
* Date record was first added to the system
|
|
49
49
|
* @type {string}
|
|
50
50
|
* @memberof CareCaseClinicalFact
|
|
51
51
|
*/
|
|
52
52
|
'entry_Date'?: string;
|
|
53
53
|
/**
|
|
54
|
-
*
|
|
54
|
+
* User that first added the record to the system
|
|
55
55
|
* @type {string}
|
|
56
56
|
* @memberof CareCaseClinicalFact
|
|
57
57
|
*/
|
|
58
58
|
'entry_User'?: string | null;
|
|
59
59
|
/**
|
|
60
|
-
*
|
|
60
|
+
* Date the record was last updated in the system
|
|
61
61
|
* @type {string}
|
|
62
62
|
* @memberof CareCaseClinicalFact
|
|
63
63
|
*/
|
|
64
64
|
'update_Date'?: string;
|
|
65
65
|
/**
|
|
66
|
-
*
|
|
66
|
+
* User that last updated the record in the system
|
|
67
67
|
* @type {string}
|
|
68
68
|
* @memberof CareCaseClinicalFact
|
|
69
69
|
*/
|
|
@@ -21,37 +21,37 @@
|
|
|
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
|
+
* 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).
|
|
37
37
|
* @type {string}
|
|
38
38
|
* @memberof CriteriaDetail
|
|
39
39
|
*/
|
|
40
40
|
'criteria_Left_Paren'?: string | null;
|
|
41
41
|
/**
|
|
42
|
-
*
|
|
42
|
+
* The table for which this criteria will be applied. The table should exist within the SearchConfig that this criteria is being applied.
|
|
43
43
|
* @type {string}
|
|
44
44
|
* @memberof CriteriaDetail
|
|
45
45
|
*/
|
|
46
46
|
'criteria_Table': string;
|
|
47
47
|
/**
|
|
48
|
-
*
|
|
48
|
+
* The column within the Criteria_Table for whcih this criteria will be applied.
|
|
49
49
|
* @type {string}
|
|
50
50
|
* @memberof CriteriaDetail
|
|
51
51
|
*/
|
|
52
52
|
'criteria_Column'?: string | null;
|
|
53
53
|
/**
|
|
54
|
-
*
|
|
54
|
+
* The data type of the column value (eg, string, int, date) that you will be using in the comparison.
|
|
55
55
|
* @type {string}
|
|
56
56
|
* @memberof CriteriaDetail
|
|
57
57
|
*/
|
|
@@ -63,25 +63,25 @@ export interface CriteriaDetail {
|
|
|
63
63
|
*/
|
|
64
64
|
'criteria_Operator'?: string | null;
|
|
65
65
|
/**
|
|
66
|
-
*
|
|
66
|
+
* 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.
|
|
67
67
|
* @type {string}
|
|
68
68
|
* @memberof CriteriaDetail
|
|
69
69
|
*/
|
|
70
70
|
'criteria_From_Value'?: string | null;
|
|
71
71
|
/**
|
|
72
|
-
*
|
|
72
|
+
* If a Criteria_Operator requires two values (eg, for BETWEEN) then this is the ending value. If not needed, use null or omit.
|
|
73
73
|
* @type {string}
|
|
74
74
|
* @memberof CriteriaDetail
|
|
75
75
|
*/
|
|
76
76
|
'criteria_Thru_Value'?: string | null;
|
|
77
77
|
/**
|
|
78
|
-
*
|
|
78
|
+
* 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).
|
|
79
79
|
* @type {string}
|
|
80
80
|
* @memberof CriteriaDetail
|
|
81
81
|
*/
|
|
82
82
|
'criteria_Right_Paren'?: string | null;
|
|
83
83
|
/**
|
|
84
|
-
*
|
|
84
|
+
* 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.
|
|
85
85
|
* @type {string}
|
|
86
86
|
* @memberof CriteriaDetail
|
|
87
87
|
*/
|
package/models/criteria.ts
CHANGED
|
@@ -28,13 +28,13 @@ export interface Criteria {
|
|
|
28
28
|
*/
|
|
29
29
|
'searchConfigId'?: string | null;
|
|
30
30
|
/**
|
|
31
|
-
* Key value identifying a specific criteria
|
|
31
|
+
* Key value identifying a specific criteria. Omit this field when creating a new record.
|
|
32
32
|
* @type {number}
|
|
33
33
|
* @memberof Criteria
|
|
34
34
|
*/
|
|
35
35
|
'criteria_Key'?: number;
|
|
36
36
|
/**
|
|
37
|
-
* Identifies the type associated with the criteria.
|
|
37
|
+
* Identifies the type associated with the criteria. Use the name of the SearchConfig for which you want to apply this Criteria.
|
|
38
38
|
* @type {string}
|
|
39
39
|
* @memberof Criteria
|
|
40
40
|
*/
|
|
@@ -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 { DayInterval } from './day-interval';
|
|
17
|
+
import { Debug } from './debug';
|
|
18
|
+
import { VBAProblemDetails } from './vbaproblem-details';
|
|
19
|
+
|
|
20
|
+
/**
|
|
21
|
+
*
|
|
22
|
+
* @export
|
|
23
|
+
* @interface DayIntervalListVBAResponse
|
|
24
|
+
*/
|
|
25
|
+
export interface DayIntervalListVBAResponse {
|
|
26
|
+
/**
|
|
27
|
+
*
|
|
28
|
+
* @type {Array<DayInterval>}
|
|
29
|
+
* @memberof DayIntervalListVBAResponse
|
|
30
|
+
*/
|
|
31
|
+
'data'?: Array<DayInterval> | null;
|
|
32
|
+
/**
|
|
33
|
+
*
|
|
34
|
+
* @type {VBAProblemDetails}
|
|
35
|
+
* @memberof DayIntervalListVBAResponse
|
|
36
|
+
*/
|
|
37
|
+
'error'?: VBAProblemDetails;
|
|
38
|
+
/**
|
|
39
|
+
*
|
|
40
|
+
* @type {Debug}
|
|
41
|
+
* @memberof DayIntervalListVBAResponse
|
|
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 { DayInterval } from './day-interval';
|
|
17
|
+
import { Debug } from './debug';
|
|
18
|
+
import { VBAProblemDetails } from './vbaproblem-details';
|
|
19
|
+
|
|
20
|
+
/**
|
|
21
|
+
*
|
|
22
|
+
* @export
|
|
23
|
+
* @interface DayIntervalVBAResponse
|
|
24
|
+
*/
|
|
25
|
+
export interface DayIntervalVBAResponse {
|
|
26
|
+
/**
|
|
27
|
+
*
|
|
28
|
+
* @type {DayInterval}
|
|
29
|
+
* @memberof DayIntervalVBAResponse
|
|
30
|
+
*/
|
|
31
|
+
'data'?: DayInterval;
|
|
32
|
+
/**
|
|
33
|
+
*
|
|
34
|
+
* @type {VBAProblemDetails}
|
|
35
|
+
* @memberof DayIntervalVBAResponse
|
|
36
|
+
*/
|
|
37
|
+
'error'?: VBAProblemDetails;
|
|
38
|
+
/**
|
|
39
|
+
*
|
|
40
|
+
* @type {Debug}
|
|
41
|
+
* @memberof DayIntervalVBAResponse
|
|
42
|
+
*/
|
|
43
|
+
'debug'?: Debug;
|
|
44
|
+
}
|
|
45
|
+
|