@vbasoftware/vbapi-vbasoftware-typescript-axios 1.20250115.9 → 1.20250124.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 +11 -0
- package/.openapi-generator/VERSION +1 -1
- package/api/adv-billing-api.ts +201 -1
- package/api/adv-group-contracts-api.ts +198 -0
- package/api/claim-adjudication-api.ts +22 -15
- package/api/group-contracts-api.ts +198 -0
- package/api/group-day-interval-api.ts +793 -0
- package/api/jobs-api.ts +108 -0
- package/api/premium-invoices-api.ts +98 -0
- package/api/premium-payments-api.ts +102 -0
- package/api/report-series-processes-api.ts +1 -1
- package/api/support-api.ts +15 -19
- package/api/user-status-api.ts +166 -0
- package/api.ts +2 -0
- package/configuration.ts +7 -1
- package/models/covered-benefit.ts +42 -0
- package/models/group-contract-copy-config.ts +54 -0
- package/models/group-day-interval-list-vbaresponse.ts +51 -0
- package/models/group-day-interval-vbaresponse.ts +51 -0
- package/models/group-day-interval.ts +78 -0
- package/models/index.ts +9 -0
- package/models/prem-invoice-apply-payment.ts +10 -1
- package/models/vbaprocess-payment-file-response-vbaresponse.ts +51 -0
- package/models/vbaprocess-payment-file-response.ts +48 -0
- package/models/vbaprocess-payment-file.ts +78 -0
- package/models/vbauser-status-vbaresponse.ts +51 -0
- package/models/vbauser-status.ts +39 -0
- package/package.json +1 -1
|
@@ -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 VBAProcessPaymentFile
|
|
21
|
+
*/
|
|
22
|
+
export interface VBAProcessPaymentFile {
|
|
23
|
+
/**
|
|
24
|
+
* Used in both Rate Copy and Rate Change
|
|
25
|
+
* @type {number}
|
|
26
|
+
* @memberof VBAProcessPaymentFile
|
|
27
|
+
*/
|
|
28
|
+
'payment_File_Format_Key'?: number;
|
|
29
|
+
/**
|
|
30
|
+
* This MUST be a .csv file with the following columns (Include Headers with field name): <div> Payment_Type - Use a value from the PremPaymentType table (can be null) Payment_Batch - Source system indicator for the payment batch (can be null) Payment_Batch_Seq - Source system indicator for the payment batch sequence (can be null) Payment_Account - The name of the account that the payment is being made from - required Payment_ID - The unique identifier for the payment - required Payment_Date - The date the payment was made in YYYY-MM-DD format - required Payment_Amount - The amount of the payment - required Payment_Name - The name of the person or entity making the payment - required Group_ID - If this payment is for the entire group, this should be the Group_ID - can be null Division_ID - If this payment is for the entire division, this should be the Division_ID - can be null Subscriber_ID - If this payment is for a specific subscriber, this should be the Subscriber_ID - can be null Payor_ID - The Payor_ID to be set on the created payments - required Account_Key - The Account_Key to be set on the created payments - required Invoice_Key - If this payment is to be applied to a specific invoice, this should be the Invoice_Key - can be null PremRate_Key - If this payment is to be applied to a specific rate, this should be the PremRate_Key - can be null PremPayment_Key - If this payment is to be applied to a specific payment, this should be the PremPayment_Key - can be null</div>
|
|
31
|
+
* @type {string}
|
|
32
|
+
* @memberof VBAProcessPaymentFile
|
|
33
|
+
*/
|
|
34
|
+
'payment_File'?: string | null;
|
|
35
|
+
/**
|
|
36
|
+
* The Payor to be set on the created payments
|
|
37
|
+
* @type {string}
|
|
38
|
+
* @memberof VBAProcessPaymentFile
|
|
39
|
+
*/
|
|
40
|
+
'payor_ID'?: string | null;
|
|
41
|
+
/**
|
|
42
|
+
* The Account to be set on the created payments
|
|
43
|
+
* @type {number}
|
|
44
|
+
* @memberof VBAProcessPaymentFile
|
|
45
|
+
*/
|
|
46
|
+
'account_Key'?: number;
|
|
47
|
+
/**
|
|
48
|
+
* Indicates that payments should be created from the payment file
|
|
49
|
+
* @type {boolean}
|
|
50
|
+
* @memberof VBAProcessPaymentFile
|
|
51
|
+
*/
|
|
52
|
+
'create_Invoice_Payments'?: boolean;
|
|
53
|
+
/**
|
|
54
|
+
* Indicates that payments should be applied to invoices
|
|
55
|
+
* @type {boolean}
|
|
56
|
+
* @memberof VBAProcessPaymentFile
|
|
57
|
+
*/
|
|
58
|
+
'apply_Payments'?: boolean;
|
|
59
|
+
/**
|
|
60
|
+
* Indicates that invoices should be closed after payment is applied
|
|
61
|
+
* @type {boolean}
|
|
62
|
+
* @memberof VBAProcessPaymentFile
|
|
63
|
+
*/
|
|
64
|
+
'close_Invoices'?: boolean;
|
|
65
|
+
/**
|
|
66
|
+
* Indicates that only fully satisfied invoices should be closed
|
|
67
|
+
* @type {boolean}
|
|
68
|
+
* @memberof VBAProcessPaymentFile
|
|
69
|
+
*/
|
|
70
|
+
'only_Close_Satisfied_Invoices'?: boolean;
|
|
71
|
+
/**
|
|
72
|
+
* User ID performing the Payment File import
|
|
73
|
+
* @type {string}
|
|
74
|
+
* @memberof VBAProcessPaymentFile
|
|
75
|
+
*/
|
|
76
|
+
'user_ID'?: string | null;
|
|
77
|
+
}
|
|
78
|
+
|
|
@@ -0,0 +1,51 @@
|
|
|
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
|
+
// May contain unused imports in some cases
|
|
17
|
+
// @ts-ignore
|
|
18
|
+
import type { Debug } from './debug';
|
|
19
|
+
// May contain unused imports in some cases
|
|
20
|
+
// @ts-ignore
|
|
21
|
+
import type { VBAProblemDetails } from './vbaproblem-details';
|
|
22
|
+
// May contain unused imports in some cases
|
|
23
|
+
// @ts-ignore
|
|
24
|
+
import type { VBAUserStatus } from './vbauser-status';
|
|
25
|
+
|
|
26
|
+
/**
|
|
27
|
+
*
|
|
28
|
+
* @export
|
|
29
|
+
* @interface VBAUserStatusVBAResponse
|
|
30
|
+
*/
|
|
31
|
+
export interface VBAUserStatusVBAResponse {
|
|
32
|
+
/**
|
|
33
|
+
*
|
|
34
|
+
* @type {VBAUserStatus}
|
|
35
|
+
* @memberof VBAUserStatusVBAResponse
|
|
36
|
+
*/
|
|
37
|
+
'data'?: VBAUserStatus;
|
|
38
|
+
/**
|
|
39
|
+
*
|
|
40
|
+
* @type {VBAProblemDetails}
|
|
41
|
+
* @memberof VBAUserStatusVBAResponse
|
|
42
|
+
*/
|
|
43
|
+
'error'?: VBAProblemDetails;
|
|
44
|
+
/**
|
|
45
|
+
*
|
|
46
|
+
* @type {Debug}
|
|
47
|
+
* @memberof VBAUserStatusVBAResponse
|
|
48
|
+
*/
|
|
49
|
+
'debug'?: Debug;
|
|
50
|
+
}
|
|
51
|
+
|
|
@@ -0,0 +1,39 @@
|
|
|
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
|
+
// May contain unused imports in some cases
|
|
17
|
+
// @ts-ignore
|
|
18
|
+
import type { Event } from './event';
|
|
19
|
+
|
|
20
|
+
/**
|
|
21
|
+
* Represents the status of a VBA user, including reminders and login status.
|
|
22
|
+
* @export
|
|
23
|
+
* @interface VBAUserStatus
|
|
24
|
+
*/
|
|
25
|
+
export interface VBAUserStatus {
|
|
26
|
+
/**
|
|
27
|
+
* Gets or sets the list of reminders for the user.
|
|
28
|
+
* @type {Array<Event>}
|
|
29
|
+
* @memberof VBAUserStatus
|
|
30
|
+
*/
|
|
31
|
+
'reminders'?: Array<Event> | null;
|
|
32
|
+
/**
|
|
33
|
+
* Gets or sets the current login status of the user. 1: LoggedIn 2: LoggedOut 3: Kicked
|
|
34
|
+
* @type {number}
|
|
35
|
+
* @memberof VBAUserStatus
|
|
36
|
+
*/
|
|
37
|
+
'loginStatus'?: number | null;
|
|
38
|
+
}
|
|
39
|
+
|