@vbasoftware/vbapi-vbasoftware-typescript-axios 1.20230225.1 → 1.20230403.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 +19 -0
- package/api/adv-group-api.ts +17 -17
- package/api/chat-gptapi.ts +154 -0
- package/api/groups-api.ts +17 -17
- package/api/prem-rate-types-api.ts +668 -0
- package/api/premium-invoice-payments-api.ts +124 -0
- package/api/premium-invoices-api.ts +336 -5
- package/api/premium-rate-distribution-types-api.ts +155 -0
- package/api/state-interest-api.ts +668 -0
- package/api/subscriber-plan-policies-api.ts +43 -91
- package/api/user-api.ts +394 -0
- package/api.ts +4 -0
- package/models/chat-message.ts +30 -0
- package/models/claim-batch-detail.ts +7 -1
- package/models/claim-batch.ts +1082 -86
- package/models/claim-detail.ts +7 -1
- package/models/claim-pre-batch-detail.ts +1 -1
- package/models/claim-pre-batch.ts +1138 -82
- package/models/claim.ts +1116 -120
- package/models/company-data.ts +15 -3
- package/models/cost-contain-zelis-ex-code.ts +6 -0
- package/models/enrollment-disenroll-group.ts +84 -0
- package/models/enrollment-disenroll.ts +28 -34
- package/models/index.ts +15 -0
- package/models/member-language.ts +2 -2
- package/models/member-medicare-resp.ts +50 -26
- package/models/members.ts +1 -1
- package/models/network-procedure-cluster.ts +15 -9
- package/models/plan-benefits.ts +1 -1
- package/models/prem-invoice-group-summary-vbaresponse.ts +45 -0
- package/models/prem-invoice-group-summary.ts +114 -0
- package/models/prem-invoice-payment-ext-list-vbaresponse.ts +45 -0
- package/models/prem-invoice-payment-ext.ts +102 -0
- package/models/prem-invoice-slim-list-vbaresponse.ts +45 -0
- package/models/prem-invoice-slim.ts +42 -0
- package/models/prem-rate-type-list-vbaresponse.ts +45 -0
- package/models/prem-rate-type-vbaresponse.ts +45 -0
- package/models/prem-rate-type.ts +72 -0
- package/models/prem-rate.ts +6 -0
- package/models/state-interest-list-vbaresponse.ts +45 -0
- package/models/state-interest-vbaresponse.ts +45 -0
- package/models/state-interest.ts +84 -0
- package/models/user-reset-password-request.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 { StateInterest } from './state-interest';
|
|
18
|
+
import { VBAProblemDetails } from './vbaproblem-details';
|
|
19
|
+
|
|
20
|
+
/**
|
|
21
|
+
*
|
|
22
|
+
* @export
|
|
23
|
+
* @interface StateInterestListVBAResponse
|
|
24
|
+
*/
|
|
25
|
+
export interface StateInterestListVBAResponse {
|
|
26
|
+
/**
|
|
27
|
+
*
|
|
28
|
+
* @type {Array<StateInterest>}
|
|
29
|
+
* @memberof StateInterestListVBAResponse
|
|
30
|
+
*/
|
|
31
|
+
'data'?: Array<StateInterest> | null;
|
|
32
|
+
/**
|
|
33
|
+
*
|
|
34
|
+
* @type {VBAProblemDetails}
|
|
35
|
+
* @memberof StateInterestListVBAResponse
|
|
36
|
+
*/
|
|
37
|
+
'error'?: VBAProblemDetails;
|
|
38
|
+
/**
|
|
39
|
+
*
|
|
40
|
+
* @type {Debug}
|
|
41
|
+
* @memberof StateInterestListVBAResponse
|
|
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 { StateInterest } from './state-interest';
|
|
18
|
+
import { VBAProblemDetails } from './vbaproblem-details';
|
|
19
|
+
|
|
20
|
+
/**
|
|
21
|
+
*
|
|
22
|
+
* @export
|
|
23
|
+
* @interface StateInterestVBAResponse
|
|
24
|
+
*/
|
|
25
|
+
export interface StateInterestVBAResponse {
|
|
26
|
+
/**
|
|
27
|
+
*
|
|
28
|
+
* @type {StateInterest}
|
|
29
|
+
* @memberof StateInterestVBAResponse
|
|
30
|
+
*/
|
|
31
|
+
'data'?: StateInterest;
|
|
32
|
+
/**
|
|
33
|
+
*
|
|
34
|
+
* @type {VBAProblemDetails}
|
|
35
|
+
* @memberof StateInterestVBAResponse
|
|
36
|
+
*/
|
|
37
|
+
'error'?: VBAProblemDetails;
|
|
38
|
+
/**
|
|
39
|
+
*
|
|
40
|
+
* @type {Debug}
|
|
41
|
+
* @memberof StateInterestVBAResponse
|
|
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 StateInterest
|
|
21
|
+
*/
|
|
22
|
+
export interface StateInterest {
|
|
23
|
+
/**
|
|
24
|
+
* Kev value identifying a specific state interest rate 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 StateInterest
|
|
27
|
+
*/
|
|
28
|
+
'stateInterest_Key': number;
|
|
29
|
+
/**
|
|
30
|
+
* Date the interest rate becomes effective
|
|
31
|
+
* @type {string}
|
|
32
|
+
* @memberof StateInterest
|
|
33
|
+
*/
|
|
34
|
+
'effective_Date'?: string | null;
|
|
35
|
+
/**
|
|
36
|
+
* Date record was first added to the system
|
|
37
|
+
* @type {string}
|
|
38
|
+
* @memberof StateInterest
|
|
39
|
+
*/
|
|
40
|
+
'entry_Date'?: string;
|
|
41
|
+
/**
|
|
42
|
+
* User that first added the record to the system
|
|
43
|
+
* @type {string}
|
|
44
|
+
* @memberof StateInterest
|
|
45
|
+
*/
|
|
46
|
+
'entry_User'?: string | null;
|
|
47
|
+
/**
|
|
48
|
+
* Interest rate that applies in the specified state
|
|
49
|
+
* @type {number}
|
|
50
|
+
* @memberof StateInterest
|
|
51
|
+
*/
|
|
52
|
+
'interest_Pct'?: number | null;
|
|
53
|
+
/**
|
|
54
|
+
* Option to indicate no interest should be applied within the selected timeframe
|
|
55
|
+
* @type {string}
|
|
56
|
+
* @memberof StateInterest
|
|
57
|
+
*/
|
|
58
|
+
'no_Interest_Within'?: string | null;
|
|
59
|
+
/**
|
|
60
|
+
* Two letter abbeviation for the state
|
|
61
|
+
* @type {string}
|
|
62
|
+
* @memberof StateInterest
|
|
63
|
+
*/
|
|
64
|
+
'state': string;
|
|
65
|
+
/**
|
|
66
|
+
* Date the interest rate terminates
|
|
67
|
+
* @type {string}
|
|
68
|
+
* @memberof StateInterest
|
|
69
|
+
*/
|
|
70
|
+
'term_Date'?: string | null;
|
|
71
|
+
/**
|
|
72
|
+
* Date the record was last updated in the system
|
|
73
|
+
* @type {string}
|
|
74
|
+
* @memberof StateInterest
|
|
75
|
+
*/
|
|
76
|
+
'update_Date'?: string;
|
|
77
|
+
/**
|
|
78
|
+
* User that last updated the record in the system
|
|
79
|
+
* @type {string}
|
|
80
|
+
* @memberof StateInterest
|
|
81
|
+
*/
|
|
82
|
+
'update_User'?: string | null;
|
|
83
|
+
}
|
|
84
|
+
|
|
@@ -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 UserResetPasswordRequest
|
|
21
|
+
*/
|
|
22
|
+
export interface UserResetPasswordRequest {
|
|
23
|
+
/**
|
|
24
|
+
* A valid access token that Amazon Cognito issued to the user whose password you want to change.
|
|
25
|
+
* @type {string}
|
|
26
|
+
* @memberof UserResetPasswordRequest
|
|
27
|
+
*/
|
|
28
|
+
'accessToken': string;
|
|
29
|
+
/**
|
|
30
|
+
* The old new password.
|
|
31
|
+
* @type {string}
|
|
32
|
+
* @memberof UserResetPasswordRequest
|
|
33
|
+
*/
|
|
34
|
+
'previousPassword': string;
|
|
35
|
+
/**
|
|
36
|
+
* The new password.
|
|
37
|
+
* @type {string}
|
|
38
|
+
* @memberof UserResetPasswordRequest
|
|
39
|
+
*/
|
|
40
|
+
'proposedPassword': string;
|
|
41
|
+
}
|
|
42
|
+
|