@vbasoftware/vbapi-vbasoftware-typescript-axios 1.20230130.2 → 1.20230208.2

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 (35) hide show
  1. package/.openapi-generator/FILES +18 -3
  2. package/api/adv-accounting-api.ts +10 -26
  3. package/api/commission-rates-api.ts +98 -0
  4. package/api/event-args-api.ts +15 -15
  5. package/api/group-contract-plans-api.ts +105 -0
  6. package/api/group-contracts-api.ts +105 -0
  7. package/api/group-divisions-api.ts +115 -0
  8. package/api/group-volumes-api.ts +15 -14
  9. package/api/payor-accounts-api.ts +75 -130
  10. package/api/plan-auth-penalty-benefits-api.ts +232 -91
  11. package/api/plan-benefit-cascades-api.ts +15 -23
  12. package/api/premium-rates-api.ts +107 -0
  13. package/models/commission-rate-division-config.ts +43 -0
  14. package/models/commission-rate-nested-list-vbaresponse.ts +45 -0
  15. package/models/commission-rate-nested.ts +43 -0
  16. package/models/commission-rate-plan-config.ts +43 -0
  17. package/models/commission-rate-rate.ts +36 -0
  18. package/models/copy-group-division.ts +132 -0
  19. package/models/{benefit-config.ts → group-volume-benefit-config.ts} +5 -5
  20. package/models/group-volume-division-config.ts +43 -0
  21. package/models/group-volume-nested.ts +3 -3
  22. package/models/group-volume-plan-config.ts +43 -0
  23. package/models/index.ts +18 -3
  24. package/models/member-prior-accum.ts +28 -28
  25. package/models/plan-auth-penalty-benefit.ts +24 -0
  26. package/models/prem-rate-basis-config.ts +43 -0
  27. package/models/prem-rate-category-config.ts +43 -0
  28. package/models/{division-config.ts → prem-rate-division-config.ts} +8 -8
  29. package/models/prem-rate-nested-list-vbaresponse.ts +45 -0
  30. package/models/prem-rate-nested.ts +43 -0
  31. package/models/{plan-config.ts → prem-rate-plan-config.ts} +8 -8
  32. package/models/prem-rate-rate.ts +36 -0
  33. package/models/vbagroup-contract-list-vbaresponse.ts +45 -0
  34. package/models/vbagroup-contract.ts +55 -0
  35. package/package.json +1 -1
@@ -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 PremRateRate
21
+ */
22
+ export interface PremRateRate {
23
+ /**
24
+ *
25
+ * @type {number}
26
+ * @memberof PremRateRate
27
+ */
28
+ 'premRate_Key'?: number;
29
+ /**
30
+ *
31
+ * @type {string}
32
+ * @memberof PremRateRate
33
+ */
34
+ 'rate_Description'?: string | null;
35
+ }
36
+
@@ -0,0 +1,45 @@
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
+ import { Debug } from './debug';
17
+ import { VBAGroupContract } from './vbagroup-contract';
18
+ import { VBAProblemDetails } from './vbaproblem-details';
19
+
20
+ /**
21
+ *
22
+ * @export
23
+ * @interface VBAGroupContractListVBAResponse
24
+ */
25
+ export interface VBAGroupContractListVBAResponse {
26
+ /**
27
+ *
28
+ * @type {Array<VBAGroupContract>}
29
+ * @memberof VBAGroupContractListVBAResponse
30
+ */
31
+ 'data'?: Array<VBAGroupContract> | null;
32
+ /**
33
+ *
34
+ * @type {VBAProblemDetails}
35
+ * @memberof VBAGroupContractListVBAResponse
36
+ */
37
+ 'error'?: VBAProblemDetails;
38
+ /**
39
+ *
40
+ * @type {Debug}
41
+ * @memberof VBAGroupContractListVBAResponse
42
+ */
43
+ 'debug'?: Debug;
44
+ }
45
+
@@ -0,0 +1,55 @@
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
+ import { GroupContract } from './group-contract';
17
+
18
+ /**
19
+ *
20
+ * @export
21
+ * @interface VBAGroupContract
22
+ */
23
+ export interface VBAGroupContract {
24
+ /**
25
+ *
26
+ * @type {number}
27
+ * @memberof VBAGroupContract
28
+ */
29
+ 'total_Subscribers'?: number | null;
30
+ /**
31
+ *
32
+ * @type {number}
33
+ * @memberof VBAGroupContract
34
+ */
35
+ 'eligible_Subscribers'?: number | null;
36
+ /**
37
+ *
38
+ * @type {number}
39
+ * @memberof VBAGroupContract
40
+ */
41
+ 'total_Members'?: number | null;
42
+ /**
43
+ *
44
+ * @type {number}
45
+ * @memberof VBAGroupContract
46
+ */
47
+ 'eligible_Members'?: number | null;
48
+ /**
49
+ *
50
+ * @type {GroupContract}
51
+ * @memberof VBAGroupContract
52
+ */
53
+ 'groupContractDetail'?: GroupContract;
54
+ }
55
+
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vbasoftware/vbapi-vbasoftware-typescript-axios",
3
- "version": "1.20230130.2",
3
+ "version": "1.20230208.2",
4
4
  "description": "APIs for VBASoftware APIs",
5
5
  "main": "index.js",
6
6
  "scripts": {