@vbasoftware/vbapi-vbasoftware-typescript-axios 1.20230117.1 → 1.20230121.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 +5 -0
- package/api/day-intervals-api.ts +716 -0
- package/api/report-series-api.ts +17 -8
- package/api/waiting-period-types-api.ts +155 -0
- package/api.ts +2 -0
- package/models/auth-diag-codes.ts +24 -0
- package/models/criteria-detail.ts +10 -10
- package/models/criteria.ts +2 -2
- package/models/day-interval-list-vbaresponse.ts +45 -0
- package/models/day-interval-vbaresponse.ts +45 -0
- package/models/day-interval.ts +144 -0
- package/models/groups.ts +30 -0
- package/models/idcard-request.ts +30 -0
- package/models/index.ts +3 -0
- package/models/mem-enrollment-plan.ts +54 -0
- package/models/mem-enrollment-rider.ts +54 -0
- package/models/member-address.ts +36 -0
- package/models/member-beneficiary.ts +36 -0
- package/models/plan-benefit-rate.ts +30 -0
- package/models/plan-benefits.ts +295 -67
- package/models/plan-type.ts +42 -0
- package/models/plans.ts +256 -106
- package/models/sub-enrollment-plan.ts +60 -0
- package/models/sub-enrollment-rider.ts +56 -2
- package/models/subscribers.ts +36 -0
- package/models/users.ts +31 -1
- package/package.json +1 -1
package/.openapi-generator/FILES
CHANGED
|
@@ -277,6 +277,7 @@ api/criteria-api.ts
|
|
|
277
277
|
api/criteria-columns-api.ts
|
|
278
278
|
api/currency-api.ts
|
|
279
279
|
api/data-types-api.ts
|
|
280
|
+
api/day-intervals-api.ts
|
|
280
281
|
api/diagnostic-code-groups-api.ts
|
|
281
282
|
api/diagnostic-code-types-api.ts
|
|
282
283
|
api/diagnostic-codes-api.ts
|
|
@@ -766,6 +767,7 @@ api/vbainterface-vendors-api.ts
|
|
|
766
767
|
api/vbainterfaces-api.ts
|
|
767
768
|
api/vbaplan-types-api.ts
|
|
768
769
|
api/volume-types-api.ts
|
|
770
|
+
api/waiting-period-types-api.ts
|
|
769
771
|
api/workflow-details-api.ts
|
|
770
772
|
api/workflow-task-options-api.ts
|
|
771
773
|
api/workflow-task-users-api.ts
|
|
@@ -1586,6 +1588,9 @@ models/criteria.ts
|
|
|
1586
1588
|
models/currency-list-vbaresponse.ts
|
|
1587
1589
|
models/currency-vbaresponse.ts
|
|
1588
1590
|
models/currency.ts
|
|
1591
|
+
models/day-interval-list-vbaresponse.ts
|
|
1592
|
+
models/day-interval-vbaresponse.ts
|
|
1593
|
+
models/day-interval.ts
|
|
1589
1594
|
models/debug.ts
|
|
1590
1595
|
models/diagnostic-code-group-list-vbaresponse.ts
|
|
1591
1596
|
models/diagnostic-code-group-vbaresponse.ts
|