@vbasoftware/vbapi-vbasoftware-typescript-axios 1.20230208.2 → 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.
Files changed (58) hide show
  1. package/.openapi-generator/FILES +19 -0
  2. package/api/adv-group-api.ts +17 -17
  3. package/api/chat-gptapi.ts +154 -0
  4. package/api/events-api.ts +87 -0
  5. package/api/groups-api.ts +17 -17
  6. package/api/prem-rate-types-api.ts +668 -0
  7. package/api/premium-invoice-payments-api.ts +124 -0
  8. package/api/premium-invoices-api.ts +336 -5
  9. package/api/premium-rate-distribution-types-api.ts +155 -0
  10. package/api/state-interest-api.ts +668 -0
  11. package/api/subscriber-plan-policies-api.ts +43 -91
  12. package/api/user-api.ts +394 -0
  13. package/api.ts +4 -0
  14. package/models/chat-message.ts +30 -0
  15. package/models/claim-batch-detail.ts +152 -140
  16. package/models/claim-batch.ts +1697 -479
  17. package/models/claim-detail.ts +137 -125
  18. package/models/claim-pre-batch-detail.ts +101 -95
  19. package/models/claim-pre-batch.ts +1703 -425
  20. package/models/claim.ts +1562 -338
  21. package/models/company-data.ts +433 -403
  22. package/models/cost-contain-zelis-ex-code.ts +12 -6
  23. package/models/enrollment-disenroll-group.ts +84 -0
  24. package/models/enrollment-disenroll.ts +28 -34
  25. package/models/groups.ts +18 -18
  26. package/models/idcard-request.ts +3 -3
  27. package/models/index.ts +15 -0
  28. package/models/mem-enrollment-plan.ts +9 -9
  29. package/models/mem-enrollment-rider.ts +10 -10
  30. package/models/member-beneficiary.ts +3 -3
  31. package/models/member-language.ts +38 -2
  32. package/models/member-medicare-resp.ts +50 -26
  33. package/models/members.ts +1 -1
  34. package/models/network-procedure-cluster.ts +15 -9
  35. package/models/plan-benefit-cluster.ts +12 -12
  36. package/models/plan-benefit-rate.ts +5 -5
  37. package/models/plan-benefits.ts +58 -52
  38. package/models/plan-type.ts +21 -21
  39. package/models/plans.ts +41 -41
  40. package/models/prem-invoice-group-summary-vbaresponse.ts +45 -0
  41. package/models/prem-invoice-group-summary.ts +114 -0
  42. package/models/prem-invoice-payment-ext-list-vbaresponse.ts +45 -0
  43. package/models/prem-invoice-payment-ext.ts +102 -0
  44. package/models/prem-invoice-slim-list-vbaresponse.ts +45 -0
  45. package/models/prem-invoice-slim.ts +42 -0
  46. package/models/prem-rate-type-list-vbaresponse.ts +45 -0
  47. package/models/prem-rate-type-vbaresponse.ts +45 -0
  48. package/models/prem-rate-type.ts +72 -0
  49. package/models/prem-rate.ts +91 -85
  50. package/models/state-interest-list-vbaresponse.ts +45 -0
  51. package/models/state-interest-vbaresponse.ts +45 -0
  52. package/models/state-interest.ts +84 -0
  53. package/models/sub-enrollment-plan.ts +10 -10
  54. package/models/sub-enrollment-rider.ts +14 -14
  55. package/models/subscribers.ts +2 -2
  56. package/models/user-reset-password-request.ts +42 -0
  57. package/models/users.ts +8 -8
  58. package/package.json +1 -1
@@ -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
+
@@ -39,13 +39,13 @@ export interface SubEnrollmentPlan {
39
39
  */
40
40
  'division_ID': string;
41
41
  /**
42
- * References the Subenrollment.Group_Coverage_Start value in the parent table.
42
+ * References the Subenrollment.Group_Coverage_Start value in the parent table. 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.
43
43
  * @type {string}
44
44
  * @memberof SubEnrollmentPlan
45
45
  */
46
46
  'group_Coverage_Start': string;
47
47
  /**
48
- * References the Subenrollment.Start_Date value in the parent table.
48
+ * References the Subenrollment.Start_Date value in the parent table. 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.
49
49
  * @type {string}
50
50
  * @memberof SubEnrollmentPlan
51
51
  */
@@ -57,7 +57,7 @@ export interface SubEnrollmentPlan {
57
57
  */
58
58
  'plan_ID': string;
59
59
  /**
60
- * Start date of Plan coverage.
60
+ * Start date of Plan coverage. 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.
61
61
  * @type {string}
62
62
  * @memberof SubEnrollmentPlan
63
63
  */
@@ -81,31 +81,31 @@ export interface SubEnrollmentPlan {
81
81
  */
82
82
  'entry_User'?: string | null;
83
83
  /**
84
- *
84
+ * Member elected Daily Benefit Amount
85
85
  * @type {number}
86
86
  * @memberof SubEnrollmentPlan
87
87
  */
88
88
  'ltC_Daily_Benefit_Amount'?: number | null;
89
89
  /**
90
- *
90
+ * Lifetime Max Amount elected
91
91
  * @type {number}
92
92
  * @memberof SubEnrollmentPlan
93
93
  */
94
94
  'ltC_Lifetime_Max_Amount'?: number | null;
95
95
  /**
96
- *
96
+ * Lifetime Max Days elected
97
97
  * @type {number}
98
98
  * @memberof SubEnrollmentPlan
99
99
  */
100
100
  'ltC_Lifetime_Max_Days'?: number | null;
101
101
  /**
102
- *
102
+ * Lifetime Max Years elected
103
103
  * @type {number}
104
104
  * @memberof SubEnrollmentPlan
105
105
  */
106
106
  'ltC_Lifetime_Max_Years'?: number | null;
107
107
  /**
108
- *
108
+ * Member elected Monthly Benefit Amount
109
109
  * @type {number}
110
110
  * @memberof SubEnrollmentPlan
111
111
  */
@@ -123,7 +123,7 @@ export interface SubEnrollmentPlan {
123
123
  */
124
124
  'plan_End'?: string | null;
125
125
  /**
126
- *
126
+ * This identifier the reason the plan was termed.
127
127
  * @type {number}
128
128
  * @memberof SubEnrollmentPlan
129
129
  */
@@ -147,7 +147,7 @@ export interface SubEnrollmentPlan {
147
147
  */
148
148
  'update_User'?: string | null;
149
149
  /**
150
- * This option tells the system to calculate the \'Volume\' using the Group volume rules. Checking this box will display an elipsis that when clicked will explain the volume calculation.
150
+ * This option tells the system to calculate the \'Volume\' using the Group volume rules. Checking this box will display an elipsis that when clicked will explain the volume calculation. 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.
151
151
  * @type {boolean}
152
152
  * @memberof SubEnrollmentPlan
153
153
  */
@@ -39,13 +39,13 @@ export interface SubEnrollmentRider {
39
39
  */
40
40
  'division_ID': string;
41
41
  /**
42
- * References the SubenrollmentPlan.Group_Coverage_Start value in the parent table.
42
+ * References the SubenrollmentPlan.Group_Coverage_Start value in the parent table. 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.
43
43
  * @type {string}
44
44
  * @memberof SubEnrollmentRider
45
45
  */
46
46
  'group_Coverage_Start': string;
47
47
  /**
48
- * References the SubenrollmentPlan.Start_Date value in the parent table.
48
+ * References the SubenrollmentPlan.Start_Date value in the parent table. 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.
49
49
  * @type {string}
50
50
  * @memberof SubEnrollmentRider
51
51
  */
@@ -57,7 +57,7 @@ export interface SubEnrollmentRider {
57
57
  */
58
58
  'plan_ID': string;
59
59
  /**
60
- * References the SubenrollmentPlan.Plan_Start value in the parent table.
60
+ * References the SubenrollmentPlan.Plan_Start value in the parent table. 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.
61
61
  * @type {string}
62
62
  * @memberof SubEnrollmentRider
63
63
  */
@@ -69,7 +69,7 @@ export interface SubEnrollmentRider {
69
69
  */
70
70
  'benefit_Code': string;
71
71
  /**
72
- * Start date of Rider coverage.
72
+ * Start date of Rider coverage. 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.
73
73
  * @type {string}
74
74
  * @memberof SubEnrollmentRider
75
75
  */
@@ -87,7 +87,7 @@ export interface SubEnrollmentRider {
87
87
  */
88
88
  'employee_Contribution'?: number | null;
89
89
  /**
90
- * Indicates if the Emploee Contribution amount entered is a Pct or flat amount.
90
+ * Indicates if the Emploee Contribution amount entered is a Pct or flat 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.
91
91
  * @type {boolean}
92
92
  * @memberof SubEnrollmentRider
93
93
  */
@@ -117,37 +117,37 @@ export interface SubEnrollmentRider {
117
117
  */
118
118
  'initial_Volume'?: number | null;
119
119
  /**
120
- * Indicates that the number from the \'Initial Volume\' field represents a percentage of the Member\'s salary. Salaries are found from a Member\'s \'Financial\' detail dropdown.
120
+ * Indicates that the number from the \'Initial Volume\' field represents a percentage of the Member\'s salary. Salaries are found from a Member\'s \'Financial\' detail dropdown. 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.
121
121
  * @type {boolean}
122
122
  * @memberof SubEnrollmentRider
123
123
  */
124
124
  'initial_Volume_Salary_Pct': boolean;
125
125
  /**
126
- *
126
+ * Member elected Daily Benefit Amount
127
127
  * @type {number}
128
128
  * @memberof SubEnrollmentRider
129
129
  */
130
130
  'ltC_Daily_Benefit_Amount'?: number | null;
131
131
  /**
132
- *
132
+ * Lifetime Max Amount elected
133
133
  * @type {number}
134
134
  * @memberof SubEnrollmentRider
135
135
  */
136
136
  'ltC_Lifetime_Max_Amount'?: number | null;
137
137
  /**
138
- *
138
+ * Lifetime Max Days elected
139
139
  * @type {number}
140
140
  * @memberof SubEnrollmentRider
141
141
  */
142
142
  'ltC_Lifetime_Max_Days'?: number | null;
143
143
  /**
144
- *
144
+ * Lifetime Max Years elected
145
145
  * @type {number}
146
146
  * @memberof SubEnrollmentRider
147
147
  */
148
148
  'ltC_Lifetime_Max_Years'?: number | null;
149
149
  /**
150
- *
150
+ * Member elected Monthly Benefit Amount
151
151
  * @type {number}
152
152
  * @memberof SubEnrollmentRider
153
153
  */
@@ -183,19 +183,19 @@ export interface SubEnrollmentRider {
183
183
  */
184
184
  'update_User'?: string | null;
185
185
  /**
186
- * Billing setting indicating that the employee age is used in all calculations that are age based for this specific Rider.
186
+ * Billing setting indicating that the employee age is used in all calculations that are age based for this specific Rider. 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.
187
187
  * @type {boolean}
188
188
  * @memberof SubEnrollmentRider
189
189
  */
190
190
  'use_Employee_Age': boolean;
191
191
  /**
192
- * The \'Gaurantee Issue\' option is an alternative to the \'Use Scale\' option. It offers a convenient secondary option for min/max when calculating Rider volume. Plan type must include the \"Life AD&D\" indicator.
192
+ * The \'Gaurantee Issue\' option is an alternative to the \'Use Scale\' option. It offers a convenient secondary option for min/max when calculating Rider volume. Plan type must include the \"Life AD&D\" indicator. 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.
193
193
  * @type {boolean}
194
194
  * @memberof SubEnrollmentRider
195
195
  */
196
196
  'use_GI_Volume_Min_Max': boolean;
197
197
  /**
198
- * This option tells the system to calculate the \'Volume\' using the Group volume rules. Checking this box will display an elipsis that when clicked will explain the volume calculation. Plan type must include the \"Life AD&D\" indicator.
198
+ * This option tells the system to calculate the \'Volume\' using the Group volume rules. Checking this box will display an elipsis that when clicked will explain the volume calculation. Plan type must include the \"Life AD&D\" indicator. 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.
199
199
  * @type {boolean}
200
200
  * @memberof SubEnrollmentRider
201
201
  */
@@ -183,13 +183,13 @@ export interface Subscribers {
183
183
  */
184
184
  'salutation'?: string | null;
185
185
  /**
186
- *
186
+ * This holds the Subscriber ID of the subscriber that sponsored this subscriber.
187
187
  * @type {string}
188
188
  * @memberof Subscribers
189
189
  */
190
190
  'sponsor_ID'?: string | null;
191
191
  /**
192
- *
192
+ * This identifies the relationship between the sponor and this subscriber.
193
193
  * @type {string}
194
194
  * @memberof Subscribers
195
195
  */
@@ -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
+
package/models/users.ts CHANGED
@@ -27,7 +27,7 @@ export interface Users {
27
27
  */
28
28
  'user_ID': string;
29
29
  /**
30
- * This option will lock the account out of the application. To unlock the account, uncheck the box.
30
+ * This option will lock the account out of the application. To unlock the account, uncheck the box. 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.
31
31
  * @type {boolean}
32
32
  * @memberof Users
33
33
  */
@@ -45,13 +45,13 @@ export interface Users {
45
45
  */
46
46
  'address2'?: string | null;
47
47
  /**
48
- * Grants the User administrative rights. No security area needs to be assigned. This User will have full rights to every aspect of the application.
48
+ * Grants the User administrative rights. No security area needs to be assigned. This User will have full rights to every aspect of the application. 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.
49
49
  * @type {boolean}
50
50
  * @memberof Users
51
51
  */
52
52
  'administrator': boolean;
53
53
  /**
54
- * This option enables logging based on the definitions provided within ‘User Log Message’.
54
+ * This option enables logging based on the definitions provided within ‘User Log Message’. 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.
55
55
  * @type {boolean}
56
56
  * @memberof Users
57
57
  */
@@ -141,7 +141,7 @@ export interface Users {
141
141
  */
142
142
  'home_Phone_Country_Code'?: string | null;
143
143
  /**
144
- * This option is informational only but can be used with a custom report.
144
+ * This option is informational only but can be used with a custom report. 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.
145
145
  * @type {boolean}
146
146
  * @memberof Users
147
147
  */
@@ -213,7 +213,7 @@ export interface Users {
213
213
  */
214
214
  'phone_Country_Code'?: string | null;
215
215
  /**
216
- * This option indicates that only one application can be opened using this login ID.
216
+ * This option indicates that only one application can be opened using this login ID. 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.
217
217
  * @type {boolean}
218
218
  * @memberof Users
219
219
  */
@@ -243,7 +243,7 @@ export interface Users {
243
243
  */
244
244
  'update_User'?: string | null;
245
245
  /**
246
- * Whether or not to use Windows Authentication to login
246
+ * Whether or not to use Windows Authentication to login 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.
247
247
  * @type {boolean}
248
248
  * @memberof Users
249
249
  */
@@ -261,13 +261,13 @@ export interface Users {
261
261
  */
262
262
  'user_Type'?: string | null;
263
263
  /**
264
- *
264
+ * This flag indicates that this user can change other VBA_User\'s passwords. 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.
265
265
  * @type {boolean}
266
266
  * @memberof Users
267
267
  */
268
268
  'vbA_Password_Reset': boolean;
269
269
  /**
270
- * Identifies that the User is a VBA User.
270
+ * Identifies that the User is a VBA User. 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.
271
271
  * @type {boolean}
272
272
  * @memberof Users
273
273
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vbasoftware/vbapi-vbasoftware-typescript-axios",
3
- "version": "1.20230208.2",
3
+ "version": "1.20230403.1",
4
4
  "description": "APIs for VBASoftware APIs",
5
5
  "main": "index.js",
6
6
  "scripts": {