@vbasoftware/vbapi-vbasoftware-typescript-axios 1.20230121.1 → 1.20230130.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.
@@ -851,6 +851,7 @@ models/benefit-category.ts
851
851
  models/benefit-codes-list-vbaresponse.ts
852
852
  models/benefit-codes-vbaresponse.ts
853
853
  models/benefit-codes.ts
854
+ models/benefit-config.ts
854
855
  models/benefit-diag-codes-list-vbaresponse.ts
855
856
  models/benefit-diag-codes-vbaresponse.ts
856
857
  models/benefit-diag-codes.ts
@@ -1604,6 +1605,7 @@ models/diagnostic-code.ts
1604
1605
  models/disability-plan-limit-list-vbaresponse.ts
1605
1606
  models/disability-plan-limit-vbaresponse.ts
1606
1607
  models/disability-plan-limit.ts
1608
+ models/division-config.ts
1607
1609
  models/drgcluster-detail-list-vbaresponse.ts
1608
1610
  models/drgcluster-detail-vbaresponse.ts
1609
1611
  models/drgcluster-detail.ts
@@ -1947,6 +1949,8 @@ models/group-vbaplan-type-subscriber-id.ts
1947
1949
  models/group-vbaplan-type-subscriber-idlist-vbaresponse.ts
1948
1950
  models/group-vbaplan-type-subscriber-idvbaresponse.ts
1949
1951
  models/group-volume-list-vbaresponse.ts
1952
+ models/group-volume-nested-list-vbaresponse.ts
1953
+ models/group-volume-nested.ts
1950
1954
  models/group-volume-vbaresponse.ts
1951
1955
  models/group-volume.ts
1952
1956
  models/groups-list-vbaresponse.ts
@@ -2295,6 +2299,7 @@ models/plan-benefits-procedures-vbaresponse.ts
2295
2299
  models/plan-benefits-procedures.ts
2296
2300
  models/plan-benefits-vbaresponse.ts
2297
2301
  models/plan-benefits.ts
2302
+ models/plan-config.ts
2298
2303
  models/plan-copy.ts
2299
2304
  models/plan-diagnosis-age-list-vbaresponse.ts
2300
2305
  models/plan-diagnosis-age-vbaresponse.ts
@@ -2981,6 +2986,7 @@ models/vbaprocess-parameter-vbaresponse.ts
2981
2986
  models/vbaprocess-parameter.ts
2982
2987
  models/vbaprocess-vbaresponse.ts
2983
2988
  models/vbaprocess.ts
2989
+ models/volume.ts
2984
2990
  models/workflow-detail-list-vbaresponse.ts
2985
2991
  models/workflow-detail-vbaresponse.ts
2986
2992
  models/workflow-detail.ts
@@ -25,6 +25,8 @@ import { GroupVolume } from '../models';
25
25
  // @ts-ignore
26
26
  import { GroupVolumeListVBAResponse } from '../models';
27
27
  // @ts-ignore
28
+ import { GroupVolumeNestedListVBAResponse } from '../models';
29
+ // @ts-ignore
28
30
  import { GroupVolumeVBAResponse } from '../models';
29
31
  // @ts-ignore
30
32
  import { MultiCodeResponseListVBAResponse } from '../models';
@@ -241,6 +243,54 @@ export const GroupVolumesApiAxiosParamCreator = function (configuration?: Config
241
243
 
242
244
 
243
245
 
246
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
247
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
248
+ localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
249
+
250
+ return {
251
+ url: toPathString(localVarUrlObj),
252
+ options: localVarRequestOptions,
253
+ };
254
+ },
255
+ /**
256
+ * Lists all GroupVolume for the given groupID and have it nested by Division, then by Plan, then by Benefit.
257
+ * @summary List GroupVolume nested by Division/Plan/Benefit
258
+ * @param {string} vbasoftwareDatabase Target database
259
+ * @param {string} groupID Group ID
260
+ * @param {*} [options] Override http request option.
261
+ * @throws {RequiredError}
262
+ */
263
+ listGroupVolumeNested: async (vbasoftwareDatabase: string, groupID: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
264
+ // verify required parameter 'vbasoftwareDatabase' is not null or undefined
265
+ assertParamExists('listGroupVolumeNested', 'vbasoftwareDatabase', vbasoftwareDatabase)
266
+ // verify required parameter 'groupID' is not null or undefined
267
+ assertParamExists('listGroupVolumeNested', 'groupID', groupID)
268
+ const localVarPath = `/groups/{groupID}/volumes-nested`
269
+ .replace(`{${"groupID"}}`, encodeURIComponent(String(groupID)));
270
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
271
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
272
+ let baseOptions;
273
+ if (configuration) {
274
+ baseOptions = configuration.baseOptions;
275
+ }
276
+
277
+ const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
278
+ const localVarHeaderParameter = {} as any;
279
+ const localVarQueryParameter = {} as any;
280
+
281
+ // authentication apiKeyAuth required
282
+ await setApiKeyToObject(localVarHeaderParameter, "x-api-key", configuration)
283
+
284
+ // authentication bearerAuth required
285
+ // http bearer authentication required
286
+ await setBearerAuthToObject(localVarHeaderParameter, configuration)
287
+
288
+ if (vbasoftwareDatabase !== undefined && vbasoftwareDatabase !== null) {
289
+ localVarHeaderParameter['vbasoftware-database'] = String(vbasoftwareDatabase);
290
+ }
291
+
292
+
293
+
244
294
  setSearchParams(localVarUrlObj, localVarQueryParameter);
245
295
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
246
296
  localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
@@ -425,6 +475,18 @@ export const GroupVolumesApiFp = function(configuration?: Configuration) {
425
475
  const localVarAxiosArgs = await localVarAxiosParamCreator.listGroupVolume(vbasoftwareDatabase, groupID, page, pageSize, options);
426
476
  return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
427
477
  },
478
+ /**
479
+ * Lists all GroupVolume for the given groupID and have it nested by Division, then by Plan, then by Benefit.
480
+ * @summary List GroupVolume nested by Division/Plan/Benefit
481
+ * @param {string} vbasoftwareDatabase Target database
482
+ * @param {string} groupID Group ID
483
+ * @param {*} [options] Override http request option.
484
+ * @throws {RequiredError}
485
+ */
486
+ async listGroupVolumeNested(vbasoftwareDatabase: string, groupID: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GroupVolumeNestedListVBAResponse>> {
487
+ const localVarAxiosArgs = await localVarAxiosParamCreator.listGroupVolumeNested(vbasoftwareDatabase, groupID, options);
488
+ return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
489
+ },
428
490
  /**
429
491
  * Create or Update multiple GroupVolume at once. If the entity exists, it will be updated. If the entity does not exist, it will be created.
430
492
  * @summary Create or Update Batch GroupVolume
@@ -511,6 +573,17 @@ export const GroupVolumesApiFactory = function (configuration?: Configuration, b
511
573
  listGroupVolume(vbasoftwareDatabase: string, groupID: string, page?: number, pageSize?: number, options?: any): AxiosPromise<GroupVolumeListVBAResponse> {
512
574
  return localVarFp.listGroupVolume(vbasoftwareDatabase, groupID, page, pageSize, options).then((request) => request(axios, basePath));
513
575
  },
576
+ /**
577
+ * Lists all GroupVolume for the given groupID and have it nested by Division, then by Plan, then by Benefit.
578
+ * @summary List GroupVolume nested by Division/Plan/Benefit
579
+ * @param {string} vbasoftwareDatabase Target database
580
+ * @param {string} groupID Group ID
581
+ * @param {*} [options] Override http request option.
582
+ * @throws {RequiredError}
583
+ */
584
+ listGroupVolumeNested(vbasoftwareDatabase: string, groupID: string, options?: any): AxiosPromise<GroupVolumeNestedListVBAResponse> {
585
+ return localVarFp.listGroupVolumeNested(vbasoftwareDatabase, groupID, options).then((request) => request(axios, basePath));
586
+ },
514
587
  /**
515
588
  * Create or Update multiple GroupVolume at once. If the entity exists, it will be updated. If the entity does not exist, it will be created.
516
589
  * @summary Create or Update Batch GroupVolume
@@ -594,6 +667,17 @@ export interface GroupVolumesApiInterface {
594
667
  */
595
668
  listGroupVolume(vbasoftwareDatabase: string, groupID: string, page?: number, pageSize?: number, options?: AxiosRequestConfig): AxiosPromise<GroupVolumeListVBAResponse>;
596
669
 
670
+ /**
671
+ * Lists all GroupVolume for the given groupID and have it nested by Division, then by Plan, then by Benefit.
672
+ * @summary List GroupVolume nested by Division/Plan/Benefit
673
+ * @param {string} vbasoftwareDatabase Target database
674
+ * @param {string} groupID Group ID
675
+ * @param {*} [options] Override http request option.
676
+ * @throws {RequiredError}
677
+ * @memberof GroupVolumesApiInterface
678
+ */
679
+ listGroupVolumeNested(vbasoftwareDatabase: string, groupID: string, options?: AxiosRequestConfig): AxiosPromise<GroupVolumeNestedListVBAResponse>;
680
+
597
681
  /**
598
682
  * Create or Update multiple GroupVolume at once. If the entity exists, it will be updated. If the entity does not exist, it will be created.
599
683
  * @summary Create or Update Batch GroupVolume
@@ -685,6 +769,19 @@ export class GroupVolumesApi extends BaseAPI implements GroupVolumesApiInterface
685
769
  return GroupVolumesApiFp(this.configuration).listGroupVolume(vbasoftwareDatabase, groupID, page, pageSize, options).then((request) => request(this.axios, this.basePath));
686
770
  }
687
771
 
772
+ /**
773
+ * Lists all GroupVolume for the given groupID and have it nested by Division, then by Plan, then by Benefit.
774
+ * @summary List GroupVolume nested by Division/Plan/Benefit
775
+ * @param {string} vbasoftwareDatabase Target database
776
+ * @param {string} groupID Group ID
777
+ * @param {*} [options] Override http request option.
778
+ * @throws {RequiredError}
779
+ * @memberof GroupVolumesApi
780
+ */
781
+ public listGroupVolumeNested(vbasoftwareDatabase: string, groupID: string, options?: AxiosRequestConfig) {
782
+ return GroupVolumesApiFp(this.configuration).listGroupVolumeNested(vbasoftwareDatabase, groupID, options).then((request) => request(this.axios, this.basePath));
783
+ }
784
+
688
785
  /**
689
786
  * Create or Update multiple GroupVolume at once. If the entity exists, it will be updated. If the entity does not exist, it will be created.
690
787
  * @summary Create or Update Batch GroupVolume
@@ -56,5 +56,11 @@ export interface AuthAdjustment {
56
56
  * @memberof AuthAdjustment
57
57
  */
58
58
  'copyDiagCodes': boolean;
59
+ /**
60
+ * When CopyProcCodes is NOT used, you can pass a single Procedure Code here to populate the adjusted auth with a default Procedure Code value.
61
+ * @type {string}
62
+ * @memberof AuthAdjustment
63
+ */
64
+ 'procedure_Code'?: string | null;
59
65
  }
60
66
 
@@ -0,0 +1,43 @@
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 { Volume } from './volume';
17
+
18
+ /**
19
+ *
20
+ * @export
21
+ * @interface BenefitConfig
22
+ */
23
+ export interface BenefitConfig {
24
+ /**
25
+ *
26
+ * @type {string}
27
+ * @memberof BenefitConfig
28
+ */
29
+ 'benefit_Code'?: string | null;
30
+ /**
31
+ *
32
+ * @type {string}
33
+ * @memberof BenefitConfig
34
+ */
35
+ 'benefit_Description'?: string | null;
36
+ /**
37
+ *
38
+ * @type {Array<Volume>}
39
+ * @memberof BenefitConfig
40
+ */
41
+ 'volumes'?: Array<Volume> | null;
42
+ }
43
+
@@ -0,0 +1,43 @@
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 { PlanConfig } from './plan-config';
17
+
18
+ /**
19
+ *
20
+ * @export
21
+ * @interface DivisionConfig
22
+ */
23
+ export interface DivisionConfig {
24
+ /**
25
+ *
26
+ * @type {string}
27
+ * @memberof DivisionConfig
28
+ */
29
+ 'division_ID'?: string | null;
30
+ /**
31
+ *
32
+ * @type {string}
33
+ * @memberof DivisionConfig
34
+ */
35
+ 'division_Name'?: string | null;
36
+ /**
37
+ *
38
+ * @type {Array<PlanConfig>}
39
+ * @memberof DivisionConfig
40
+ */
41
+ 'planConfigs'?: Array<PlanConfig> | null;
42
+ }
43
+
@@ -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 { GroupVolumeNested } from './group-volume-nested';
18
+ import { VBAProblemDetails } from './vbaproblem-details';
19
+
20
+ /**
21
+ *
22
+ * @export
23
+ * @interface GroupVolumeNestedListVBAResponse
24
+ */
25
+ export interface GroupVolumeNestedListVBAResponse {
26
+ /**
27
+ *
28
+ * @type {Array<GroupVolumeNested>}
29
+ * @memberof GroupVolumeNestedListVBAResponse
30
+ */
31
+ 'data'?: Array<GroupVolumeNested> | null;
32
+ /**
33
+ *
34
+ * @type {VBAProblemDetails}
35
+ * @memberof GroupVolumeNestedListVBAResponse
36
+ */
37
+ 'error'?: VBAProblemDetails;
38
+ /**
39
+ *
40
+ * @type {Debug}
41
+ * @memberof GroupVolumeNestedListVBAResponse
42
+ */
43
+ 'debug'?: Debug;
44
+ }
45
+
@@ -0,0 +1,43 @@
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 { DivisionConfig } from './division-config';
17
+
18
+ /**
19
+ *
20
+ * @export
21
+ * @interface GroupVolumeNested
22
+ */
23
+ export interface GroupVolumeNested {
24
+ /**
25
+ *
26
+ * @type {string}
27
+ * @memberof GroupVolumeNested
28
+ */
29
+ 'group_ID'?: string | null;
30
+ /**
31
+ *
32
+ * @type {string}
33
+ * @memberof GroupVolumeNested
34
+ */
35
+ 'group_Name'?: string | null;
36
+ /**
37
+ *
38
+ * @type {Array<DivisionConfig>}
39
+ * @memberof GroupVolumeNested
40
+ */
41
+ 'divisionConfigs'?: Array<DivisionConfig> | null;
42
+ }
43
+
package/models/index.ts CHANGED
@@ -61,6 +61,7 @@ export * from './benefit-category-vbaresponse';
61
61
  export * from './benefit-codes';
62
62
  export * from './benefit-codes-list-vbaresponse';
63
63
  export * from './benefit-codes-vbaresponse';
64
+ export * from './benefit-config';
64
65
  export * from './benefit-diag-codes';
65
66
  export * from './benefit-diag-codes-list-vbaresponse';
66
67
  export * from './benefit-diag-codes-vbaresponse';
@@ -828,6 +829,7 @@ export * from './diagnostic-code-vbaresponse';
828
829
  export * from './disability-plan-limit';
829
830
  export * from './disability-plan-limit-list-vbaresponse';
830
831
  export * from './disability-plan-limit-vbaresponse';
832
+ export * from './division-config';
831
833
  export * from './drug-code';
832
834
  export * from './drug-code-list-vbaresponse';
833
835
  export * from './drug-code-unit';
@@ -1158,6 +1160,8 @@ export * from './group-vbaplan-type-subscriber-idlist-vbaresponse';
1158
1160
  export * from './group-vbaplan-type-subscriber-idvbaresponse';
1159
1161
  export * from './group-volume';
1160
1162
  export * from './group-volume-list-vbaresponse';
1163
+ export * from './group-volume-nested';
1164
+ export * from './group-volume-nested-list-vbaresponse';
1161
1165
  export * from './group-volume-vbaresponse';
1162
1166
  export * from './groups';
1163
1167
  export * from './groups-list-vbaresponse';
@@ -1504,6 +1508,7 @@ export * from './plan-benefits-procedures';
1504
1508
  export * from './plan-benefits-procedures-list-vbaresponse';
1505
1509
  export * from './plan-benefits-procedures-vbaresponse';
1506
1510
  export * from './plan-benefits-vbaresponse';
1511
+ export * from './plan-config';
1507
1512
  export * from './plan-copy';
1508
1513
  export * from './plan-diagnosis-age';
1509
1514
  export * from './plan-diagnosis-age-list-vbaresponse';
@@ -2190,6 +2195,7 @@ export * from './vbaprocess-log-vbaresponse';
2190
2195
  export * from './vbaprocess-parameter';
2191
2196
  export * from './vbaprocess-parameter-vbaresponse';
2192
2197
  export * from './vbaprocess-vbaresponse';
2198
+ export * from './volume';
2193
2199
  export * from './workflow';
2194
2200
  export * from './workflow-detail';
2195
2201
  export * from './workflow-detail-list-vbaresponse';
@@ -0,0 +1,43 @@
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 { BenefitConfig } from './benefit-config';
17
+
18
+ /**
19
+ *
20
+ * @export
21
+ * @interface PlanConfig
22
+ */
23
+ export interface PlanConfig {
24
+ /**
25
+ *
26
+ * @type {string}
27
+ * @memberof PlanConfig
28
+ */
29
+ 'plan_ID'?: string | null;
30
+ /**
31
+ *
32
+ * @type {string}
33
+ * @memberof PlanConfig
34
+ */
35
+ 'plan_Description'?: string | null;
36
+ /**
37
+ *
38
+ * @type {Array<BenefitConfig>}
39
+ * @memberof PlanConfig
40
+ */
41
+ 'benefitConfigs'?: Array<BenefitConfig> | null;
42
+ }
43
+
@@ -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 Volume
21
+ */
22
+ export interface Volume {
23
+ /**
24
+ *
25
+ * @type {number}
26
+ * @memberof Volume
27
+ */
28
+ 'groupVolume_Key'?: number;
29
+ /**
30
+ *
31
+ * @type {string}
32
+ * @memberof Volume
33
+ */
34
+ 'volume_Description'?: string | null;
35
+ /**
36
+ *
37
+ * @type {number}
38
+ * @memberof Volume
39
+ */
40
+ 'effective_Rate'?: number;
41
+ }
42
+
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vbasoftware/vbapi-vbasoftware-typescript-axios",
3
- "version": "1.20230121.1",
3
+ "version": "1.20230130.2",
4
4
  "description": "APIs for VBASoftware APIs",
5
5
  "main": "index.js",
6
6
  "scripts": {