@vbasoftware/vbapi-vbasoftware-typescript-axios 1.20230225.1 → 1.20230506.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 (93) hide show
  1. package/.openapi-generator/FILES +39 -1
  2. package/api/adv-group-api.ts +17 -17
  3. package/api/capitation-plan-rates-api.ts +22 -13
  4. package/api/chat-gptapi.ts +154 -0
  5. package/api/commission-adjustments-api.ts +59 -107
  6. package/api/commission-rate-subscribers-api.ts +126 -0
  7. package/api/context4-health-cost-containment-option-pricing-api.ts +17 -8
  8. package/api/context4-health-cost-containment-options-api.ts +17 -8
  9. package/api/groups-api.ts +114 -17
  10. package/api/invoice-status-api.ts +155 -0
  11. package/api/invoice-types-api.ts +155 -0
  12. package/api/members-api.ts +323 -0
  13. package/api/plan-relationship-age-restrictions-api.ts +63 -148
  14. package/api/prem-rate-types-api.ts +668 -0
  15. package/api/premium-invoice-payments-api.ts +124 -0
  16. package/api/premium-invoice-subscribers-api.ts +123 -0
  17. package/api/premium-invoices-api.ts +336 -5
  18. package/api/premium-rate-distribution-types-api.ts +155 -0
  19. package/api/process-logging-api.ts +105 -0
  20. package/api/security-area-user-groups-api.ts +100 -0
  21. package/api/security-area-users-api.ts +98 -0
  22. package/api/state-interest-api.ts +668 -0
  23. package/api/subscriber-plan-policies-api.ts +43 -91
  24. package/api/subscriber-plan-policy-forfeitures-api.ts +581 -35
  25. package/api/ucnetwork-api.ts +710 -0
  26. package/api/user-api.ts +394 -0
  27. package/api.ts +7 -1
  28. package/models/auth-adjustment.ts +2 -2
  29. package/models/billing-cycle.ts +25 -1
  30. package/models/call-tracking.ts +25 -1
  31. package/models/chat-message.ts +30 -0
  32. package/models/check-batch.ts +27 -3
  33. package/models/claim-batch-detail.ts +7 -1
  34. package/models/claim-batch.ts +1082 -86
  35. package/models/claim-detail.ts +7 -1
  36. package/models/claim-pre-batch-detail.ts +1 -1
  37. package/models/claim-pre-batch.ts +1138 -82
  38. package/models/claim.ts +1116 -120
  39. package/models/commission-adjustment.ts +21 -15
  40. package/models/commission-rate.ts +90 -36
  41. package/models/company-data.ts +27 -3
  42. package/models/cost-contain-zelis-ex-code.ts +6 -0
  43. package/models/enrollment-disenroll-group.ts +84 -0
  44. package/models/enrollment-disenroll.ts +28 -34
  45. package/models/enrollment-pcpauto-assign-member-list-vbaresponse.ts +45 -0
  46. package/models/enrollment-pcpauto-assign-member.ts +96 -0
  47. package/models/enrollment-pcpauto-assign-provider-list-vbaresponse.ts +45 -0
  48. package/models/enrollment-pcpauto-assign-provider.ts +90 -0
  49. package/models/enrollment-pcpauto-assign.ts +3 -3
  50. package/models/index.ts +32 -0
  51. package/models/member-language.ts +2 -2
  52. package/models/member-medicare-resp.ts +50 -26
  53. package/models/members.ts +1 -1
  54. package/models/network-procedure-cluster.ts +15 -9
  55. package/models/payee.ts +29 -5
  56. package/models/plan-benefits.ts +1 -1
  57. package/models/plan-pre-ex.ts +54 -0
  58. package/models/plans.ts +6 -0
  59. package/models/prem-invoice-group-summary-vbaresponse.ts +45 -0
  60. package/models/prem-invoice-group-summary.ts +114 -0
  61. package/models/prem-invoice-payment-ext-list-vbaresponse.ts +45 -0
  62. package/models/prem-invoice-payment-ext.ts +102 -0
  63. package/models/prem-invoice-slim-list-vbaresponse.ts +45 -0
  64. package/models/prem-invoice-slim.ts +42 -0
  65. package/models/prem-invoice.ts +27 -21
  66. package/models/prem-rate-type-list-vbaresponse.ts +45 -0
  67. package/models/prem-rate-type-vbaresponse.ts +45 -0
  68. package/models/prem-rate-type.ts +78 -0
  69. package/models/prem-rate.ts +12 -0
  70. package/models/state-interest-list-vbaresponse.ts +45 -0
  71. package/models/state-interest-vbaresponse.ts +45 -0
  72. package/models/state-interest.ts +156 -0
  73. package/models/state.ts +35 -5
  74. package/models/string-list-vbaresponse.ts +44 -0
  75. package/models/sub-enrollment-plan.ts +6 -0
  76. package/models/sub-payment-method.ts +16 -10
  77. package/models/subscriber-forfeiture-status.ts +25 -1
  78. package/models/subscribers.ts +6 -0
  79. package/models/ucnetwork-list-vbaresponse.ts +45 -0
  80. package/models/ucnetwork-vbaresponse.ts +45 -0
  81. package/models/ucnetwork.ts +90 -0
  82. package/models/user-reset-password-request.ts +42 -0
  83. package/models/vbacommission-rate-subscriber-list-vbaresponse.ts +45 -0
  84. package/models/vbacommission-rate-subscriber.ts +48 -0
  85. package/models/vbagroup-enrollment-summary-vbaresponse.ts +45 -0
  86. package/models/vbagroup-enrollment-summary.ts +48 -0
  87. package/models/vbamembers-disability-tax-summary-vbaresponse.ts +45 -0
  88. package/models/vbamembers-disability-tax-summary.ts +276 -0
  89. package/models/vbaprem-invoice-subscriber-history-list-vbaresponse.ts +45 -0
  90. package/models/vbaprem-invoice-subscriber-history.ts +108 -0
  91. package/models/vbaprocess-log-list-vbaresponse.ts +45 -0
  92. package/package.json +1 -1
  93. package/api/subscriber-plan-forfeitures-api.ts +0 -731
@@ -0,0 +1,30 @@
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 ChatMessage
21
+ */
22
+ export interface ChatMessage {
23
+ /**
24
+ * The message from the user.
25
+ * @type {string}
26
+ * @memberof ChatMessage
27
+ */
28
+ 'message'?: string | null;
29
+ }
30
+
@@ -21,19 +21,19 @@
21
21
  */
22
22
  export interface CheckBatch {
23
23
  /**
24
- * ID of the check batch.
24
+ * ID of the check batch. 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
25
  * @type {number}
26
26
  * @memberof CheckBatch
27
27
  */
28
28
  'check_Batch': number;
29
29
  /**
30
- * Date when the check batch was created.
30
+ * Date when the check batch was created. Note: The database will apply a default value of `1/1/0001 12:00:00 AM` 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 `1/1/0001 12:00:00 AM` to meet the API requirements and ensure that the functionality occurs as expected.
31
31
  * @type {string}
32
32
  * @memberof CheckBatch
33
33
  */
34
34
  'check_Batch_Date': string;
35
35
  /**
36
- * Indicates that the check batch has been exported.
36
+ * Indicates that the check batch has been exported. Note: The database will apply a default value of `False` 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 `False` to meet the API requirements and ensure that the functionality occurs as expected.
37
37
  * @type {boolean}
38
38
  * @memberof CheckBatch
39
39
  */
@@ -50,5 +50,29 @@ export interface CheckBatch {
50
50
  * @memberof CheckBatch
51
51
  */
52
52
  'description'?: string | null;
53
+ /**
54
+ * Date record was first added to the system
55
+ * @type {string}
56
+ * @memberof CheckBatch
57
+ */
58
+ 'entry_Date'?: string;
59
+ /**
60
+ * User that first added the record to the system
61
+ * @type {string}
62
+ * @memberof CheckBatch
63
+ */
64
+ 'entry_User'?: string | null;
65
+ /**
66
+ * Date the record was last updated in the system
67
+ * @type {string}
68
+ * @memberof CheckBatch
69
+ */
70
+ 'update_Date'?: string;
71
+ /**
72
+ * User that last updated the record in the system
73
+ * @type {string}
74
+ * @memberof CheckBatch
75
+ */
76
+ 'update_User'?: string | null;
53
77
  }
54
78
 
@@ -99,7 +99,7 @@ export interface ClaimBatchDetail {
99
99
  */
100
100
  'benefit_Code'?: string | null;
101
101
  /**
102
- *
102
+ * Benefit Rate being applied to this detail line.
103
103
  * @type {number}
104
104
  * @memberof ClaimBatchDetail
105
105
  */
@@ -548,6 +548,12 @@ export interface ClaimBatchDetail {
548
548
  * @memberof ClaimBatchDetail
549
549
  */
550
550
  'other_Deduction_Amount'?: number | null;
551
+ /**
552
+ * Note: The database will apply a default value of `False` 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 `False` to meet the API requirements and ensure that the functionality occurs as expected.
553
+ * @type {boolean}
554
+ * @memberof ClaimBatchDetail
555
+ */
556
+ 'override_Benefit_Code': boolean;
551
557
  /**
552
558
  * Notes that the associated amount field was manually overrided by an application user or automated process that would skip adjudication calculations for this amount. Note: The database will apply a default value of `False` 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 `False` to meet the API requirements and ensure that the functionality occurs as expected.
553
559
  * @type {boolean}