@vbasoftware/vbapi-vbasoftware-typescript-axios 1.20230117.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.
@@ -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
@@ -184,12 +184,13 @@ export const ReportSeriesApiAxiosParamCreator = function (configuration?: Config
184
184
  * Lists all ReportSeries
185
185
  * @summary List ReportSeries
186
186
  * @param {string} vbasoftwareDatabase Target database
187
+ * @param {string} [seriesType] Series Type (STANDARD | TEMPLATE)
187
188
  * @param {number} [page] Page
188
189
  * @param {number} [pageSize] Page Size
189
190
  * @param {*} [options] Override http request option.
190
191
  * @throws {RequiredError}
191
192
  */
192
- listReportSeries: async (vbasoftwareDatabase: string, page?: number, pageSize?: number, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
193
+ listReportSeries: async (vbasoftwareDatabase: string, seriesType?: string, page?: number, pageSize?: number, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
193
194
  // verify required parameter 'vbasoftwareDatabase' is not null or undefined
194
195
  assertParamExists('listReportSeries', 'vbasoftwareDatabase', vbasoftwareDatabase)
195
196
  const localVarPath = `/report-series`;
@@ -211,6 +212,10 @@ export const ReportSeriesApiAxiosParamCreator = function (configuration?: Config
211
212
  // http bearer authentication required
212
213
  await setBearerAuthToObject(localVarHeaderParameter, configuration)
213
214
 
215
+ if (seriesType !== undefined) {
216
+ localVarQueryParameter['seriesType'] = seriesType;
217
+ }
218
+
214
219
  if (page !== undefined) {
215
220
  localVarQueryParameter['page'] = page;
216
221
  }
@@ -388,13 +393,14 @@ export const ReportSeriesApiFp = function(configuration?: Configuration) {
388
393
  * Lists all ReportSeries
389
394
  * @summary List ReportSeries
390
395
  * @param {string} vbasoftwareDatabase Target database
396
+ * @param {string} [seriesType] Series Type (STANDARD | TEMPLATE)
391
397
  * @param {number} [page] Page
392
398
  * @param {number} [pageSize] Page Size
393
399
  * @param {*} [options] Override http request option.
394
400
  * @throws {RequiredError}
395
401
  */
396
- async listReportSeries(vbasoftwareDatabase: string, page?: number, pageSize?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ReportSeriesListVBAResponse>> {
397
- const localVarAxiosArgs = await localVarAxiosParamCreator.listReportSeries(vbasoftwareDatabase, page, pageSize, options);
402
+ async listReportSeries(vbasoftwareDatabase: string, seriesType?: string, page?: number, pageSize?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ReportSeriesListVBAResponse>> {
403
+ const localVarAxiosArgs = await localVarAxiosParamCreator.listReportSeries(vbasoftwareDatabase, seriesType, page, pageSize, options);
398
404
  return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
399
405
  },
400
406
  /**
@@ -469,13 +475,14 @@ export const ReportSeriesApiFactory = function (configuration?: Configuration, b
469
475
  * Lists all ReportSeries
470
476
  * @summary List ReportSeries
471
477
  * @param {string} vbasoftwareDatabase Target database
478
+ * @param {string} [seriesType] Series Type (STANDARD | TEMPLATE)
472
479
  * @param {number} [page] Page
473
480
  * @param {number} [pageSize] Page Size
474
481
  * @param {*} [options] Override http request option.
475
482
  * @throws {RequiredError}
476
483
  */
477
- listReportSeries(vbasoftwareDatabase: string, page?: number, pageSize?: number, options?: any): AxiosPromise<ReportSeriesListVBAResponse> {
478
- return localVarFp.listReportSeries(vbasoftwareDatabase, page, pageSize, options).then((request) => request(axios, basePath));
484
+ listReportSeries(vbasoftwareDatabase: string, seriesType?: string, page?: number, pageSize?: number, options?: any): AxiosPromise<ReportSeriesListVBAResponse> {
485
+ return localVarFp.listReportSeries(vbasoftwareDatabase, seriesType, page, pageSize, options).then((request) => request(axios, basePath));
479
486
  },
480
487
  /**
481
488
  * Create or Update multiple ReportSeries at once. If the entity exists, it will be updated. If the entity does not exist, it will be created.
@@ -546,13 +553,14 @@ export interface ReportSeriesApiInterface {
546
553
  * Lists all ReportSeries
547
554
  * @summary List ReportSeries
548
555
  * @param {string} vbasoftwareDatabase Target database
556
+ * @param {string} [seriesType] Series Type (STANDARD | TEMPLATE)
549
557
  * @param {number} [page] Page
550
558
  * @param {number} [pageSize] Page Size
551
559
  * @param {*} [options] Override http request option.
552
560
  * @throws {RequiredError}
553
561
  * @memberof ReportSeriesApiInterface
554
562
  */
555
- listReportSeries(vbasoftwareDatabase: string, page?: number, pageSize?: number, options?: AxiosRequestConfig): AxiosPromise<ReportSeriesListVBAResponse>;
563
+ listReportSeries(vbasoftwareDatabase: string, seriesType?: string, page?: number, pageSize?: number, options?: AxiosRequestConfig): AxiosPromise<ReportSeriesListVBAResponse>;
556
564
 
557
565
  /**
558
566
  * Create or Update multiple ReportSeries at once. If the entity exists, it will be updated. If the entity does not exist, it will be created.
@@ -629,14 +637,15 @@ export class ReportSeriesApi extends BaseAPI implements ReportSeriesApiInterface
629
637
  * Lists all ReportSeries
630
638
  * @summary List ReportSeries
631
639
  * @param {string} vbasoftwareDatabase Target database
640
+ * @param {string} [seriesType] Series Type (STANDARD | TEMPLATE)
632
641
  * @param {number} [page] Page
633
642
  * @param {number} [pageSize] Page Size
634
643
  * @param {*} [options] Override http request option.
635
644
  * @throws {RequiredError}
636
645
  * @memberof ReportSeriesApi
637
646
  */
638
- public listReportSeries(vbasoftwareDatabase: string, page?: number, pageSize?: number, options?: AxiosRequestConfig) {
639
- return ReportSeriesApiFp(this.configuration).listReportSeries(vbasoftwareDatabase, page, pageSize, options).then((request) => request(this.axios, this.basePath));
647
+ public listReportSeries(vbasoftwareDatabase: string, seriesType?: string, page?: number, pageSize?: number, options?: AxiosRequestConfig) {
648
+ return ReportSeriesApiFp(this.configuration).listReportSeries(vbasoftwareDatabase, seriesType, page, pageSize, options).then((request) => request(this.axios, this.basePath));
640
649
  }
641
650
 
642
651
  /**
@@ -0,0 +1,155 @@
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 globalAxios, { AxiosPromise, AxiosInstance, AxiosRequestConfig } from 'axios';
17
+ import { Configuration } from '../configuration';
18
+ // Some imports not used depending on template conditions
19
+ // @ts-ignore
20
+ import { DUMMY_BASE_URL, assertParamExists, setApiKeyToObject, setBasicAuthToObject, setBearerAuthToObject, setOAuthToObject, setSearchParams, serializeDataIfNeeded, toPathString, createRequestFunction } from '../common';
21
+ // @ts-ignore
22
+ import { BASE_PATH, COLLECTION_FORMATS, RequestArgs, BaseAPI, RequiredError } from '../base';
23
+ // @ts-ignore
24
+ import { StringStaticOptionListVBAResponse } from '../models';
25
+ /**
26
+ * WaitingPeriodTypesApi - axios parameter creator
27
+ * @export
28
+ */
29
+ export const WaitingPeriodTypesApiAxiosParamCreator = function (configuration?: Configuration) {
30
+ return {
31
+ /**
32
+ * List of all Waiting Period Types
33
+ * @summary List Waiting Period Types
34
+ * @param {string} vbasoftwareDatabase Target database
35
+ * @param {*} [options] Override http request option.
36
+ * @throws {RequiredError}
37
+ */
38
+ listWaitingPeriodTypes: async (vbasoftwareDatabase: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
39
+ // verify required parameter 'vbasoftwareDatabase' is not null or undefined
40
+ assertParamExists('listWaitingPeriodTypes', 'vbasoftwareDatabase', vbasoftwareDatabase)
41
+ const localVarPath = `/waiting-period-types`;
42
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
43
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
44
+ let baseOptions;
45
+ if (configuration) {
46
+ baseOptions = configuration.baseOptions;
47
+ }
48
+
49
+ const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
50
+ const localVarHeaderParameter = {} as any;
51
+ const localVarQueryParameter = {} as any;
52
+
53
+ // authentication apiKeyAuth required
54
+ await setApiKeyToObject(localVarHeaderParameter, "x-api-key", configuration)
55
+
56
+ // authentication bearerAuth required
57
+ // http bearer authentication required
58
+ await setBearerAuthToObject(localVarHeaderParameter, configuration)
59
+
60
+ if (vbasoftwareDatabase !== undefined && vbasoftwareDatabase !== null) {
61
+ localVarHeaderParameter['vbasoftware-database'] = String(vbasoftwareDatabase);
62
+ }
63
+
64
+
65
+
66
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
67
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
68
+ localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
69
+
70
+ return {
71
+ url: toPathString(localVarUrlObj),
72
+ options: localVarRequestOptions,
73
+ };
74
+ },
75
+ }
76
+ };
77
+
78
+ /**
79
+ * WaitingPeriodTypesApi - functional programming interface
80
+ * @export
81
+ */
82
+ export const WaitingPeriodTypesApiFp = function(configuration?: Configuration) {
83
+ const localVarAxiosParamCreator = WaitingPeriodTypesApiAxiosParamCreator(configuration)
84
+ return {
85
+ /**
86
+ * List of all Waiting Period Types
87
+ * @summary List Waiting Period Types
88
+ * @param {string} vbasoftwareDatabase Target database
89
+ * @param {*} [options] Override http request option.
90
+ * @throws {RequiredError}
91
+ */
92
+ async listWaitingPeriodTypes(vbasoftwareDatabase: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<StringStaticOptionListVBAResponse>> {
93
+ const localVarAxiosArgs = await localVarAxiosParamCreator.listWaitingPeriodTypes(vbasoftwareDatabase, options);
94
+ return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
95
+ },
96
+ }
97
+ };
98
+
99
+ /**
100
+ * WaitingPeriodTypesApi - factory interface
101
+ * @export
102
+ */
103
+ export const WaitingPeriodTypesApiFactory = function (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) {
104
+ const localVarFp = WaitingPeriodTypesApiFp(configuration)
105
+ return {
106
+ /**
107
+ * List of all Waiting Period Types
108
+ * @summary List Waiting Period Types
109
+ * @param {string} vbasoftwareDatabase Target database
110
+ * @param {*} [options] Override http request option.
111
+ * @throws {RequiredError}
112
+ */
113
+ listWaitingPeriodTypes(vbasoftwareDatabase: string, options?: any): AxiosPromise<StringStaticOptionListVBAResponse> {
114
+ return localVarFp.listWaitingPeriodTypes(vbasoftwareDatabase, options).then((request) => request(axios, basePath));
115
+ },
116
+ };
117
+ };
118
+
119
+ /**
120
+ * WaitingPeriodTypesApi - interface
121
+ * @export
122
+ * @interface WaitingPeriodTypesApi
123
+ */
124
+ export interface WaitingPeriodTypesApiInterface {
125
+ /**
126
+ * List of all Waiting Period Types
127
+ * @summary List Waiting Period Types
128
+ * @param {string} vbasoftwareDatabase Target database
129
+ * @param {*} [options] Override http request option.
130
+ * @throws {RequiredError}
131
+ * @memberof WaitingPeriodTypesApiInterface
132
+ */
133
+ listWaitingPeriodTypes(vbasoftwareDatabase: string, options?: AxiosRequestConfig): AxiosPromise<StringStaticOptionListVBAResponse>;
134
+
135
+ }
136
+
137
+ /**
138
+ * WaitingPeriodTypesApi - object-oriented interface
139
+ * @export
140
+ * @class WaitingPeriodTypesApi
141
+ * @extends {BaseAPI}
142
+ */
143
+ export class WaitingPeriodTypesApi extends BaseAPI implements WaitingPeriodTypesApiInterface {
144
+ /**
145
+ * List of all Waiting Period Types
146
+ * @summary List Waiting Period Types
147
+ * @param {string} vbasoftwareDatabase Target database
148
+ * @param {*} [options] Override http request option.
149
+ * @throws {RequiredError}
150
+ * @memberof WaitingPeriodTypesApi
151
+ */
152
+ public listWaitingPeriodTypes(vbasoftwareDatabase: string, options?: AxiosRequestConfig) {
153
+ return WaitingPeriodTypesApiFp(this.configuration).listWaitingPeriodTypes(vbasoftwareDatabase, options).then((request) => request(this.axios, this.basePath));
154
+ }
155
+ }
package/api.ts CHANGED
@@ -294,6 +294,7 @@ export * from './api/drgcodes-api';
294
294
  export * from './api/drgschedule-api';
295
295
  export * from './api/drgweight-api';
296
296
  export * from './api/data-types-api';
297
+ export * from './api/day-intervals-api';
297
298
  export * from './api/diagnostic-code-groups-api';
298
299
  export * from './api/diagnostic-code-types-api';
299
300
  export * from './api/diagnostic-codes-api';
@@ -778,6 +779,7 @@ export * from './api/vbainterface-vendors-api';
778
779
  export * from './api/vbainterfaces-api';
779
780
  export * from './api/vbaplan-types-api';
780
781
  export * from './api/volume-types-api';
782
+ export * from './api/waiting-period-types-api';
781
783
  export * from './api/workflow-details-api';
782
784
  export * from './api/workflow-task-options-api';
783
785
  export * from './api/workflow-task-users-api';
@@ -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
 
@@ -44,11 +44,35 @@ export interface AuthDiagCodes {
44
44
  * @memberof AuthDiagCodes
45
45
  */
46
46
  'disable_Provider_Match': boolean;
47
+ /**
48
+ * Date when the record was first added to the system.
49
+ * @type {string}
50
+ * @memberof AuthDiagCodes
51
+ */
52
+ 'entry_Date'?: string;
53
+ /**
54
+ * User that first added the record to the system.
55
+ * @type {string}
56
+ * @memberof AuthDiagCodes
57
+ */
58
+ 'entry_User'?: string | null;
47
59
  /**
48
60
  * Indicates that the associated diagnosis is the primary diagnosis.
49
61
  * @type {string}
50
62
  * @memberof AuthDiagCodes
51
63
  */
52
64
  'primary_Diag'?: string | null;
65
+ /**
66
+ * Date when the record was last updated in the system.
67
+ * @type {string}
68
+ * @memberof AuthDiagCodes
69
+ */
70
+ 'update_Date'?: string;
71
+ /**
72
+ * User that last updated the record in the system.
73
+ * @type {string}
74
+ * @memberof AuthDiagCodes
75
+ */
76
+ 'update_User'?: string | null;
53
77
  }
54
78
 
@@ -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
+
@@ -21,37 +21,37 @@
21
21
  */
22
22
  export interface CriteriaDetail {
23
23
  /**
24
- * Unique identifier of the Criteria for which this Criteria Details object belongs.
24
+ * Unique identifier of the Criteria for which this Criteria Details object belongs. When creating a new Critiera object, omit this from the payload.
25
25
  * @type {number}
26
26
  * @memberof CriteriaDetail
27
27
  */
28
28
  'criteria_Key'?: number;
29
29
  /**
30
- * The sequential order that the criteria details will be applied.
30
+ * The sequential order that the criteria details will be applied. If you have multiple criteria details to add, this is important as it dictates the order in which they are applied and constructed (eg, if you have parenthesis or concatenate with AND\'s / OR\'s).
31
31
  * @type {number}
32
32
  * @memberof CriteriaDetail
33
33
  */
34
34
  'criteria_Seq': number;
35
35
  /**
36
- *
36
+ * Allows you to start a parenthetical expression. Add \"(\" to start the parenthesis grouping. If not needed, use null or omit. An example of a criteria using parenthesis would be (x=1 OR x=2) OR (y=1 OR y=2).
37
37
  * @type {string}
38
38
  * @memberof CriteriaDetail
39
39
  */
40
40
  'criteria_Left_Paren'?: string | null;
41
41
  /**
42
- *
42
+ * The table for which this criteria will be applied. The table should exist within the SearchConfig that this criteria is being applied.
43
43
  * @type {string}
44
44
  * @memberof CriteriaDetail
45
45
  */
46
46
  'criteria_Table': string;
47
47
  /**
48
- *
48
+ * The column within the Criteria_Table for whcih this criteria will be applied.
49
49
  * @type {string}
50
50
  * @memberof CriteriaDetail
51
51
  */
52
52
  'criteria_Column'?: string | null;
53
53
  /**
54
- *
54
+ * The data type of the column value (eg, string, int, date) that you will be using in the comparison.
55
55
  * @type {string}
56
56
  * @memberof CriteriaDetail
57
57
  */
@@ -63,25 +63,25 @@ export interface CriteriaDetail {
63
63
  */
64
64
  'criteria_Operator'?: string | null;
65
65
  /**
66
- *
66
+ * The value to use against the Criteria_Operator when comparing values (eg, >, >=, etc). If a Criteria_Operator requires two values (eg, for BETWEEN) then this is the beginning value. If not needed, use null or omit.
67
67
  * @type {string}
68
68
  * @memberof CriteriaDetail
69
69
  */
70
70
  'criteria_From_Value'?: string | null;
71
71
  /**
72
- *
72
+ * If a Criteria_Operator requires two values (eg, for BETWEEN) then this is the ending value. If not needed, use null or omit.
73
73
  * @type {string}
74
74
  * @memberof CriteriaDetail
75
75
  */
76
76
  'criteria_Thru_Value'?: string | null;
77
77
  /**
78
- *
78
+ * Allows you to end a parenthetical expression. Add \")\" to end the parenthesis grouping. If not needed, use null or omit. An example of a criteria using parenthesis would be (x=1 OR x=2) OR (y=1 OR y=2).
79
79
  * @type {string}
80
80
  * @memberof CriteriaDetail
81
81
  */
82
82
  'criteria_Right_Paren'?: string | null;
83
83
  /**
84
- *
84
+ * If making a complex query, use this to concatenate multiple criteria. For example, use the value \"Or\" if you want to match either this criteria or the next criteria. If not needed, use null or omit.
85
85
  * @type {string}
86
86
  * @memberof CriteriaDetail
87
87
  */
@@ -28,13 +28,13 @@ export interface Criteria {
28
28
  */
29
29
  'searchConfigId'?: string | null;
30
30
  /**
31
- * Key value identifying a specific criteria
31
+ * Key value identifying a specific criteria. Omit this field when creating a new record.
32
32
  * @type {number}
33
33
  * @memberof Criteria
34
34
  */
35
35
  'criteria_Key'?: number;
36
36
  /**
37
- * Identifies the type associated with the criteria.
37
+ * Identifies the type associated with the criteria. Use the name of the SearchConfig for which you want to apply this Criteria.
38
38
  * @type {string}
39
39
  * @memberof Criteria
40
40
  */
@@ -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 { DayInterval } from './day-interval';
17
+ import { Debug } from './debug';
18
+ import { VBAProblemDetails } from './vbaproblem-details';
19
+
20
+ /**
21
+ *
22
+ * @export
23
+ * @interface DayIntervalListVBAResponse
24
+ */
25
+ export interface DayIntervalListVBAResponse {
26
+ /**
27
+ *
28
+ * @type {Array<DayInterval>}
29
+ * @memberof DayIntervalListVBAResponse
30
+ */
31
+ 'data'?: Array<DayInterval> | null;
32
+ /**
33
+ *
34
+ * @type {VBAProblemDetails}
35
+ * @memberof DayIntervalListVBAResponse
36
+ */
37
+ 'error'?: VBAProblemDetails;
38
+ /**
39
+ *
40
+ * @type {Debug}
41
+ * @memberof DayIntervalListVBAResponse
42
+ */
43
+ 'debug'?: Debug;
44
+ }
45
+