@vbasoftware/vbapi-vbasoftware-typescript-axios 1.20250404.1 → 1.20250425.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.
Files changed (63) hide show
  1. package/.openapi-generator/FILES +42 -2
  2. package/api/adv-claim-api.ts +246 -52
  3. package/api/group-state-surcharge-api.ts +733 -0
  4. package/api/hipaaremittance-codes-api.ts +685 -0
  5. package/api/member-alternate-payee-api.ts +781 -0
  6. package/api/member-alternate-payee-plan-api.ts +829 -0
  7. package/api/report-definitions-api.ts +108 -0
  8. package/api/state-surcharge-api.ts +685 -0
  9. package/api/subscribers-api.ts +98 -0
  10. package/api/vbareporting-api.ts +265 -0
  11. package/api/vbareports-api.ts +162 -55
  12. package/api.ts +6 -1
  13. package/models/all-enrollments-subscriber-result-list-vbaresponse.ts +51 -0
  14. package/models/all-enrollments-subscriber-result.ts +108 -0
  15. package/models/checks-detail.ts +6 -0
  16. package/models/claim-audit.ts +12 -0
  17. package/models/claim-batch-benefit.ts +36 -0
  18. package/models/claim-batch-payee.ts +108 -0
  19. package/models/claim-benefit.ts +36 -0
  20. package/models/claim-network.ts +36 -0
  21. package/models/claim-payee.ts +108 -0
  22. package/models/claim-plan.ts +36 -0
  23. package/models/claim-relationship.ts +36 -0
  24. package/models/claim-send-check-to.ts +36 -0
  25. package/models/company-data.ts +24 -0
  26. package/models/email-report-dto.ts +0 -6
  27. package/models/explanation-codes.ts +6 -0
  28. package/models/generate-prem-invoice.ts +12 -0
  29. package/models/group-contract-plan.ts +6 -0
  30. package/models/group-state-surcharge-list-vbaresponse.ts +51 -0
  31. package/models/group-state-surcharge-vbaresponse.ts +51 -0
  32. package/models/group-state-surcharge.ts +78 -0
  33. package/models/hipaaremittance-code-list-vbaresponse.ts +51 -0
  34. package/models/hipaaremittance-code-vbaresponse.ts +51 -0
  35. package/models/hipaaremittance-code.ts +60 -0
  36. package/models/index.ts +36 -1
  37. package/models/member-alternate-payee-list-vbaresponse.ts +51 -0
  38. package/models/member-alternate-payee-plan-list-vbaresponse.ts +51 -0
  39. package/models/member-alternate-payee-plan-vbaresponse.ts +51 -0
  40. package/models/member-alternate-payee-plan.ts +72 -0
  41. package/models/member-alternate-payee-vbaresponse.ts +51 -0
  42. package/models/member-alternate-payee.ts +150 -0
  43. package/models/plan-benefits.ts +6 -0
  44. package/models/reins-contract-conditional-specific-detail.ts +36 -0
  45. package/models/report-tracking-metadata.ts +42 -0
  46. package/models/smsdto.ts +0 -6
  47. package/models/state-surcharge-list-vbaresponse.ts +51 -0
  48. package/models/state-surcharge-vbaresponse.ts +51 -0
  49. package/models/state-surcharge.ts +96 -0
  50. package/models/vbaclaim-number-parm.ts +30 -0
  51. package/models/vbafull-claim-batch-vbaresponse.ts +51 -0
  52. package/models/vbafull-claim-batch.ts +426 -0
  53. package/models/vbafull-claim-vbaresponse.ts +51 -0
  54. package/models/vbafull-claim.ts +441 -0
  55. package/models/vbareport.ts +14 -2
  56. package/models/vbareporting-embed-token-vbaresponse.ts +51 -0
  57. package/models/vbareporting-embed-token.ts +30 -0
  58. package/models/vbareporting-report-list-vbaresponse.ts +51 -0
  59. package/models/vbareporting-report-vbaresponse.ts +51 -0
  60. package/models/vbareporting-report.ts +54 -0
  61. package/package.json +1 -1
  62. package/api/bold-reports-api.ts +0 -167
  63. package/models/trackable-report.ts +0 -78
@@ -128,5 +128,17 @@ export interface ClaimAudit {
128
128
  * @memberof ClaimAudit
129
129
  */
130
130
  'update_User'?: string | null;
131
+ /**
132
+ *
133
+ * @type {number}
134
+ * @memberof ClaimAudit
135
+ */
136
+ 'criteria_Key'?: number | null;
137
+ /**
138
+ *
139
+ * @type {number}
140
+ * @memberof ClaimAudit
141
+ */
142
+ 'audit_Sample_Count'?: number | null;
131
143
  }
132
144
 
@@ -0,0 +1,36 @@
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 ClaimBatchBenefit
21
+ */
22
+ export interface ClaimBatchBenefit {
23
+ /**
24
+ *
25
+ * @type {string}
26
+ * @memberof ClaimBatchBenefit
27
+ */
28
+ 'benefit_Code'?: string | null;
29
+ /**
30
+ *
31
+ * @type {string}
32
+ * @memberof ClaimBatchBenefit
33
+ */
34
+ 'description'?: string | null;
35
+ }
36
+
@@ -0,0 +1,108 @@
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 ClaimBatchPayee
21
+ */
22
+ export interface ClaimBatchPayee {
23
+ /**
24
+ * Unique identifier assigned to the Payee.
25
+ * @type {string}
26
+ * @memberof ClaimBatchPayee
27
+ */
28
+ 'payee_ID'?: string | null;
29
+ /**
30
+ * Name of the Payee.
31
+ * @type {string}
32
+ * @memberof ClaimBatchPayee
33
+ */
34
+ 'name'?: string | null;
35
+ /**
36
+ * Identifier assigned to the Payee that is used for federal tax purposes.
37
+ * @type {string}
38
+ * @memberof ClaimBatchPayee
39
+ */
40
+ 'federal_ID'?: string | null;
41
+ /**
42
+ * Field using for storing a custom alternate ID associated with this Payee.
43
+ * @type {string}
44
+ * @memberof ClaimBatchPayee
45
+ */
46
+ 'alternate_ID'?: string | null;
47
+ /**
48
+ * Address of the Payee.
49
+ * @type {string}
50
+ * @memberof ClaimBatchPayee
51
+ */
52
+ 'address'?: string | null;
53
+ /**
54
+ * Address line 2 of the Payee.
55
+ * @type {string}
56
+ * @memberof ClaimBatchPayee
57
+ */
58
+ 'address2'?: string | null;
59
+ /**
60
+ * City of the Payee\'s address.
61
+ * @type {string}
62
+ * @memberof ClaimBatchPayee
63
+ */
64
+ 'city'?: string | null;
65
+ /**
66
+ * State of the Payee\'s address.
67
+ * @type {string}
68
+ * @memberof ClaimBatchPayee
69
+ */
70
+ 'state'?: string | null;
71
+ /**
72
+ * Zip Code of the Payee\'s address.
73
+ * @type {string}
74
+ * @memberof ClaimBatchPayee
75
+ */
76
+ 'zip_Code'?: string | null;
77
+ /**
78
+ * Address that should be used for payments to the Payee. Payments will default to the Payee address if this field is not completed.
79
+ * @type {string}
80
+ * @memberof ClaimBatchPayee
81
+ */
82
+ 'payTo_Address'?: string | null;
83
+ /**
84
+ * Line 2 of the address that should be used for payments to the Payee.
85
+ * @type {string}
86
+ * @memberof ClaimBatchPayee
87
+ */
88
+ 'payTo_Address2'?: string | null;
89
+ /**
90
+ * City of the address that should be used for payments to the Payee.
91
+ * @type {string}
92
+ * @memberof ClaimBatchPayee
93
+ */
94
+ 'payTo_City'?: string | null;
95
+ /**
96
+ * State of the Payee\'s address used for payments.
97
+ * @type {string}
98
+ * @memberof ClaimBatchPayee
99
+ */
100
+ 'payTo_State'?: string | null;
101
+ /**
102
+ * Zip Code of the Payee\'s address used for payments.
103
+ * @type {string}
104
+ * @memberof ClaimBatchPayee
105
+ */
106
+ 'payTo_Zip'?: string | null;
107
+ }
108
+
@@ -0,0 +1,36 @@
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 ClaimBenefit
21
+ */
22
+ export interface ClaimBenefit {
23
+ /**
24
+ *
25
+ * @type {string}
26
+ * @memberof ClaimBenefit
27
+ */
28
+ 'benefit_Code'?: string | null;
29
+ /**
30
+ *
31
+ * @type {string}
32
+ * @memberof ClaimBenefit
33
+ */
34
+ 'description'?: string | null;
35
+ }
36
+
@@ -0,0 +1,36 @@
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 ClaimNetwork
21
+ */
22
+ export interface ClaimNetwork {
23
+ /**
24
+ *
25
+ * @type {string}
26
+ * @memberof ClaimNetwork
27
+ */
28
+ 'network_ID'?: string | null;
29
+ /**
30
+ *
31
+ * @type {string}
32
+ * @memberof ClaimNetwork
33
+ */
34
+ 'description'?: string | null;
35
+ }
36
+
@@ -0,0 +1,108 @@
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 ClaimPayee
21
+ */
22
+ export interface ClaimPayee {
23
+ /**
24
+ * Unique identifier assigned to the Payee.
25
+ * @type {string}
26
+ * @memberof ClaimPayee
27
+ */
28
+ 'payee_ID'?: string | null;
29
+ /**
30
+ * Name of the Payee.
31
+ * @type {string}
32
+ * @memberof ClaimPayee
33
+ */
34
+ 'name'?: string | null;
35
+ /**
36
+ * Identifier assigned to the Payee that is used for federal tax purposes.
37
+ * @type {string}
38
+ * @memberof ClaimPayee
39
+ */
40
+ 'federal_ID'?: string | null;
41
+ /**
42
+ * Field using for storing a custom alternate ID associated with this Payee.
43
+ * @type {string}
44
+ * @memberof ClaimPayee
45
+ */
46
+ 'alternate_ID'?: string | null;
47
+ /**
48
+ * Address of the Payee.
49
+ * @type {string}
50
+ * @memberof ClaimPayee
51
+ */
52
+ 'address'?: string | null;
53
+ /**
54
+ * Address line 2 of the Payee.
55
+ * @type {string}
56
+ * @memberof ClaimPayee
57
+ */
58
+ 'address2'?: string | null;
59
+ /**
60
+ * City of the Payee\'s address.
61
+ * @type {string}
62
+ * @memberof ClaimPayee
63
+ */
64
+ 'city'?: string | null;
65
+ /**
66
+ * State of the Payee\'s address.
67
+ * @type {string}
68
+ * @memberof ClaimPayee
69
+ */
70
+ 'state'?: string | null;
71
+ /**
72
+ * Zip Code of the Payee\'s address.
73
+ * @type {string}
74
+ * @memberof ClaimPayee
75
+ */
76
+ 'zip_Code'?: string | null;
77
+ /**
78
+ * Address that should be used for payments to the Payee. Payments will default to the Payee address if this field is not completed.
79
+ * @type {string}
80
+ * @memberof ClaimPayee
81
+ */
82
+ 'payTo_Address'?: string | null;
83
+ /**
84
+ * Line 2 of the address that should be used for payments to the Payee.
85
+ * @type {string}
86
+ * @memberof ClaimPayee
87
+ */
88
+ 'payTo_Address2'?: string | null;
89
+ /**
90
+ * City of the address that should be used for payments to the Payee.
91
+ * @type {string}
92
+ * @memberof ClaimPayee
93
+ */
94
+ 'payTo_City'?: string | null;
95
+ /**
96
+ * State of the Payee\'s address used for payments.
97
+ * @type {string}
98
+ * @memberof ClaimPayee
99
+ */
100
+ 'payTo_State'?: string | null;
101
+ /**
102
+ * Zip Code of the Payee\'s address used for payments.
103
+ * @type {string}
104
+ * @memberof ClaimPayee
105
+ */
106
+ 'payTo_Zip'?: string | null;
107
+ }
108
+
@@ -0,0 +1,36 @@
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 ClaimPlan
21
+ */
22
+ export interface ClaimPlan {
23
+ /**
24
+ *
25
+ * @type {string}
26
+ * @memberof ClaimPlan
27
+ */
28
+ 'plan_ID'?: string | null;
29
+ /**
30
+ *
31
+ * @type {string}
32
+ * @memberof ClaimPlan
33
+ */
34
+ 'description'?: string | null;
35
+ }
36
+
@@ -0,0 +1,36 @@
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 ClaimRelationship
21
+ */
22
+ export interface ClaimRelationship {
23
+ /**
24
+ *
25
+ * @type {string}
26
+ * @memberof ClaimRelationship
27
+ */
28
+ 'relate_Code'?: string | null;
29
+ /**
30
+ *
31
+ * @type {string}
32
+ * @memberof ClaimRelationship
33
+ */
34
+ 'description'?: string | null;
35
+ }
36
+
@@ -0,0 +1,36 @@
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 ClaimSendCheckTo
21
+ */
22
+ export interface ClaimSendCheckTo {
23
+ /**
24
+ *
25
+ * @type {string}
26
+ * @memberof ClaimSendCheckTo
27
+ */
28
+ 'send_Check_To'?: string | null;
29
+ /**
30
+ *
31
+ * @type {string}
32
+ * @memberof ClaimSendCheckTo
33
+ */
34
+ 'description'?: string | null;
35
+ }
36
+
@@ -2666,5 +2666,29 @@ export interface CompanyData {
2666
2666
  * @memberof CompanyData
2667
2667
  */
2668
2668
  'claim_Returned_To_Batch_Ex_Code'?: string | null;
2669
+ /**
2670
+ *
2671
+ * @type {boolean}
2672
+ * @memberof CompanyData
2673
+ */
2674
+ 'allow_Offset'?: boolean;
2675
+ /**
2676
+ *
2677
+ * @type {boolean}
2678
+ * @memberof CompanyData
2679
+ */
2680
+ 'remove_Sys_Gen_Billing_Adj_On_Delete'?: boolean;
2681
+ /**
2682
+ *
2683
+ * @type {boolean}
2684
+ * @memberof CompanyData
2685
+ */
2686
+ 'allow_CallTracking_Provider_ID_Edit'?: boolean;
2687
+ /**
2688
+ *
2689
+ * @type {boolean}
2690
+ * @memberof CompanyData
2691
+ */
2692
+ 'allow_Candidate_Below_Account_Balance'?: boolean;
2669
2693
  }
2670
2694
 
@@ -71,12 +71,6 @@ export interface EmailReportDTO {
71
71
  * @memberof EmailReportDTO
72
72
  */
73
73
  'reportParameters'?: { [key: string]: string | null; } | null;
74
- /**
75
- * The sender of the email containing the report. This should be a valid email address.
76
- * @type {string}
77
- * @memberof EmailReportDTO
78
- */
79
- 'from'?: string | null;
80
74
  /**
81
75
  * All recipients of the email containing the report. Each entry should be a valid email address.
82
76
  * @type {Array<string>}
@@ -128,5 +128,11 @@ export interface ExplanationCodes {
128
128
  * @memberof ExplanationCodes
129
129
  */
130
130
  'update_User'?: string | null;
131
+ /**
132
+ *
133
+ * @type {string}
134
+ * @memberof ExplanationCodes
135
+ */
136
+ 'hipaA_Remit_Code'?: string | null;
131
137
  }
132
138
 
@@ -92,5 +92,17 @@ export interface GeneratePremInvoice {
92
92
  * @memberof GeneratePremInvoice
93
93
  */
94
94
  'input_Date'?: string | null;
95
+ /**
96
+ *
97
+ * @type {string}
98
+ * @memberof GeneratePremInvoice
99
+ */
100
+ 'activity_ID'?: string | null;
101
+ /**
102
+ *
103
+ * @type {string}
104
+ * @memberof GeneratePremInvoice
105
+ */
106
+ 'client_ID'?: string | null;
95
107
  }
96
108
 
@@ -416,5 +416,11 @@ export interface GroupContractPlan {
416
416
  * @memberof GroupContractPlan
417
417
  */
418
418
  'volume_Min'?: number | null;
419
+ /**
420
+ *
421
+ * @type {string}
422
+ * @memberof GroupContractPlan
423
+ */
424
+ 'pay_To_Subscriber_Payee_ID'?: string | null;
419
425
  }
420
426
 
@@ -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 { GroupStateSurcharge } from './group-state-surcharge';
22
+ // May contain unused imports in some cases
23
+ // @ts-ignore
24
+ import type { VBAProblemDetails } from './vbaproblem-details';
25
+
26
+ /**
27
+ *
28
+ * @export
29
+ * @interface GroupStateSurchargeListVBAResponse
30
+ */
31
+ export interface GroupStateSurchargeListVBAResponse {
32
+ /**
33
+ *
34
+ * @type {Array<GroupStateSurcharge>}
35
+ * @memberof GroupStateSurchargeListVBAResponse
36
+ */
37
+ 'data'?: Array<GroupStateSurcharge> | null;
38
+ /**
39
+ *
40
+ * @type {VBAProblemDetails}
41
+ * @memberof GroupStateSurchargeListVBAResponse
42
+ */
43
+ 'error'?: VBAProblemDetails;
44
+ /**
45
+ *
46
+ * @type {Debug}
47
+ * @memberof GroupStateSurchargeListVBAResponse
48
+ */
49
+ 'debug'?: Debug;
50
+ }
51
+
@@ -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 { GroupStateSurcharge } from './group-state-surcharge';
22
+ // May contain unused imports in some cases
23
+ // @ts-ignore
24
+ import type { VBAProblemDetails } from './vbaproblem-details';
25
+
26
+ /**
27
+ *
28
+ * @export
29
+ * @interface GroupStateSurchargeVBAResponse
30
+ */
31
+ export interface GroupStateSurchargeVBAResponse {
32
+ /**
33
+ *
34
+ * @type {GroupStateSurcharge}
35
+ * @memberof GroupStateSurchargeVBAResponse
36
+ */
37
+ 'data'?: GroupStateSurcharge;
38
+ /**
39
+ *
40
+ * @type {VBAProblemDetails}
41
+ * @memberof GroupStateSurchargeVBAResponse
42
+ */
43
+ 'error'?: VBAProblemDetails;
44
+ /**
45
+ *
46
+ * @type {Debug}
47
+ * @memberof GroupStateSurchargeVBAResponse
48
+ */
49
+ 'debug'?: Debug;
50
+ }
51
+