@vbasoftware/vbapi-vbasoftware-typescript-axios 1.20231025.1 → 1.20231027.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.
@@ -3108,6 +3108,8 @@ models/vbainterface-vendor.ts
3108
3108
  models/vbainterface.ts
3109
3109
  models/vbamembers-disability-tax-summary-vbaresponse.ts
3110
3110
  models/vbamembers-disability-tax-summary.ts
3111
+ models/vbapayor-account-check-processing-vbaresponse.ts
3112
+ models/vbapayor-account-check-processing.ts
3111
3113
  models/vbaprem-invoice-subscriber-history-list-vbaresponse.ts
3112
3114
  models/vbaprem-invoice-subscriber-history.ts
3113
3115
  models/vbaproblem-details.ts
@@ -32,6 +32,8 @@ import { PayorAccountListVBAResponse } from '../models';
32
32
  import { PayorAccountVBAResponse } from '../models';
33
33
  // @ts-ignore
34
34
  import { VBAFundingAccountClaimInfoListVBAResponse } from '../models';
35
+ // @ts-ignore
36
+ import { VBAPayorAccountCheckProcessingVBAResponse } from '../models';
35
37
  /**
36
38
  * PayorAccountsApi - axios parameter creator
37
39
  * @export
@@ -282,6 +284,50 @@ export const PayorAccountsApiAxiosParamCreator = function (configuration?: Confi
282
284
 
283
285
 
284
286
 
287
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
288
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
289
+ localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
290
+
291
+ return {
292
+ url: toPathString(localVarUrlObj),
293
+ options: localVarRequestOptions,
294
+ };
295
+ },
296
+ /**
297
+ * Gets a list of Payor Accounts for Check Processing
298
+ * @summary List Payor Accounts for Check Processing
299
+ * @param {string} vbasoftwareDatabase Target database
300
+ * @param {*} [options] Override http request option.
301
+ * @throws {RequiredError}
302
+ */
303
+ listPayorAccountCheckProcessing: async (vbasoftwareDatabase: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
304
+ // verify required parameter 'vbasoftwareDatabase' is not null or undefined
305
+ assertParamExists('listPayorAccountCheckProcessing', 'vbasoftwareDatabase', vbasoftwareDatabase)
306
+ const localVarPath = `/payor-accounts/check-processing`;
307
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
308
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
309
+ let baseOptions;
310
+ if (configuration) {
311
+ baseOptions = configuration.baseOptions;
312
+ }
313
+
314
+ const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
315
+ const localVarHeaderParameter = {} as any;
316
+ const localVarQueryParameter = {} as any;
317
+
318
+ // authentication apiKeyAuth required
319
+ await setApiKeyToObject(localVarHeaderParameter, "x-api-key", configuration)
320
+
321
+ // authentication bearerAuth required
322
+ // http bearer authentication required
323
+ await setBearerAuthToObject(localVarHeaderParameter, configuration)
324
+
325
+ if (vbasoftwareDatabase !== undefined && vbasoftwareDatabase !== null) {
326
+ localVarHeaderParameter['vbasoftware-database'] = String(vbasoftwareDatabase);
327
+ }
328
+
329
+
330
+
285
331
  setSearchParams(localVarUrlObj, localVarQueryParameter);
286
332
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
287
333
  localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
@@ -519,6 +565,17 @@ export const PayorAccountsApiFp = function(configuration?: Configuration) {
519
565
  const localVarAxiosArgs = await localVarAxiosParamCreator.listPayorAccount(vbasoftwareDatabase, payorID, page, pageSize, options);
520
566
  return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
521
567
  },
568
+ /**
569
+ * Gets a list of Payor Accounts for Check Processing
570
+ * @summary List Payor Accounts for Check Processing
571
+ * @param {string} vbasoftwareDatabase Target database
572
+ * @param {*} [options] Override http request option.
573
+ * @throws {RequiredError}
574
+ */
575
+ async listPayorAccountCheckProcessing(vbasoftwareDatabase: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<VBAPayorAccountCheckProcessingVBAResponse>> {
576
+ const localVarAxiosArgs = await localVarAxiosParamCreator.listPayorAccountCheckProcessing(vbasoftwareDatabase, options);
577
+ return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
578
+ },
522
579
  /**
523
580
  * List Claims Information from a Payor\'s Funding Account
524
581
  * @summary List Claims Information from a Payor\'s Funding Account
@@ -624,6 +681,16 @@ export const PayorAccountsApiFactory = function (configuration?: Configuration,
624
681
  listPayorAccount(vbasoftwareDatabase: string, payorID?: string, page?: number, pageSize?: number, options?: any): AxiosPromise<PayorAccountListVBAResponse> {
625
682
  return localVarFp.listPayorAccount(vbasoftwareDatabase, payorID, page, pageSize, options).then((request) => request(axios, basePath));
626
683
  },
684
+ /**
685
+ * Gets a list of Payor Accounts for Check Processing
686
+ * @summary List Payor Accounts for Check Processing
687
+ * @param {string} vbasoftwareDatabase Target database
688
+ * @param {*} [options] Override http request option.
689
+ * @throws {RequiredError}
690
+ */
691
+ listPayorAccountCheckProcessing(vbasoftwareDatabase: string, options?: any): AxiosPromise<VBAPayorAccountCheckProcessingVBAResponse> {
692
+ return localVarFp.listPayorAccountCheckProcessing(vbasoftwareDatabase, options).then((request) => request(axios, basePath));
693
+ },
627
694
  /**
628
695
  * List Claims Information from a Payor\'s Funding Account
629
696
  * @summary List Claims Information from a Payor\'s Funding Account
@@ -725,6 +792,16 @@ export interface PayorAccountsApiInterface {
725
792
  */
726
793
  listPayorAccount(vbasoftwareDatabase: string, payorID?: string, page?: number, pageSize?: number, options?: AxiosRequestConfig): AxiosPromise<PayorAccountListVBAResponse>;
727
794
 
795
+ /**
796
+ * Gets a list of Payor Accounts for Check Processing
797
+ * @summary List Payor Accounts for Check Processing
798
+ * @param {string} vbasoftwareDatabase Target database
799
+ * @param {*} [options] Override http request option.
800
+ * @throws {RequiredError}
801
+ * @memberof PayorAccountsApiInterface
802
+ */
803
+ listPayorAccountCheckProcessing(vbasoftwareDatabase: string, options?: AxiosRequestConfig): AxiosPromise<VBAPayorAccountCheckProcessingVBAResponse>;
804
+
728
805
  /**
729
806
  * List Claims Information from a Payor\'s Funding Account
730
807
  * @summary List Claims Information from a Payor\'s Funding Account
@@ -836,6 +913,18 @@ export class PayorAccountsApi extends BaseAPI implements PayorAccountsApiInterfa
836
913
  return PayorAccountsApiFp(this.configuration).listPayorAccount(vbasoftwareDatabase, payorID, page, pageSize, options).then((request) => request(this.axios, this.basePath));
837
914
  }
838
915
 
916
+ /**
917
+ * Gets a list of Payor Accounts for Check Processing
918
+ * @summary List Payor Accounts for Check Processing
919
+ * @param {string} vbasoftwareDatabase Target database
920
+ * @param {*} [options] Override http request option.
921
+ * @throws {RequiredError}
922
+ * @memberof PayorAccountsApi
923
+ */
924
+ public listPayorAccountCheckProcessing(vbasoftwareDatabase: string, options?: AxiosRequestConfig) {
925
+ return PayorAccountsApiFp(this.configuration).listPayorAccountCheckProcessing(vbasoftwareDatabase, options).then((request) => request(this.axios, this.basePath));
926
+ }
927
+
839
928
  /**
840
929
  * List Claims Information from a Payor\'s Funding Account
841
930
  * @summary List Claims Information from a Payor\'s Funding Account
package/models/index.ts CHANGED
@@ -2292,6 +2292,8 @@ export * from './vbainterface-vendor-list-vbaresponse';
2292
2292
  export * from './vbainterface-vendor-vbaresponse';
2293
2293
  export * from './vbamembers-disability-tax-summary';
2294
2294
  export * from './vbamembers-disability-tax-summary-vbaresponse';
2295
+ export * from './vbapayor-account-check-processing';
2296
+ export * from './vbapayor-account-check-processing-vbaresponse';
2295
2297
  export * from './vbaprem-invoice-subscriber-history';
2296
2298
  export * from './vbaprem-invoice-subscriber-history-list-vbaresponse';
2297
2299
  export * from './vbaproblem-details';
@@ -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 { VBAPayorAccountCheckProcessing } from './vbapayor-account-check-processing';
18
+ import { VBAProblemDetails } from './vbaproblem-details';
19
+
20
+ /**
21
+ *
22
+ * @export
23
+ * @interface VBAPayorAccountCheckProcessingVBAResponse
24
+ */
25
+ export interface VBAPayorAccountCheckProcessingVBAResponse {
26
+ /**
27
+ *
28
+ * @type {VBAPayorAccountCheckProcessing}
29
+ * @memberof VBAPayorAccountCheckProcessingVBAResponse
30
+ */
31
+ 'data'?: VBAPayorAccountCheckProcessing;
32
+ /**
33
+ *
34
+ * @type {VBAProblemDetails}
35
+ * @memberof VBAPayorAccountCheckProcessingVBAResponse
36
+ */
37
+ 'error'?: VBAProblemDetails;
38
+ /**
39
+ *
40
+ * @type {Debug}
41
+ * @memberof VBAPayorAccountCheckProcessingVBAResponse
42
+ */
43
+ 'debug'?: Debug;
44
+ }
45
+
@@ -0,0 +1,78 @@
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 VBAPayorAccountCheckProcessing
21
+ */
22
+ export interface VBAPayorAccountCheckProcessing {
23
+ /**
24
+ * Unique identifier assigned to the Payor.
25
+ * @type {string}
26
+ * @memberof VBAPayorAccountCheckProcessing
27
+ */
28
+ 'payor_ID': string;
29
+ /**
30
+ * References the Funding Account\'s Account Key associated with this Payor/Account.
31
+ * @type {number}
32
+ * @memberof VBAPayorAccountCheckProcessing
33
+ */
34
+ 'account_Key': number;
35
+ /**
36
+ * Name of the Payor individual or institution.
37
+ * @type {string}
38
+ * @memberof VBAPayorAccountCheckProcessing
39
+ */
40
+ 'payor_Name'?: string | null;
41
+ /**
42
+ * The Funding Account Name
43
+ * @type {string}
44
+ * @memberof VBAPayorAccountCheckProcessing
45
+ */
46
+ 'account_Name'?: string | null;
47
+ /**
48
+ * The Payor Account\'s calculated Account Balance
49
+ * @type {number}
50
+ * @memberof VBAPayorAccountCheckProcessing
51
+ */
52
+ 'account_Balance'?: number;
53
+ /**
54
+ * Calculated balance for all candidate Claims
55
+ * @type {number}
56
+ * @memberof VBAPayorAccountCheckProcessing
57
+ */
58
+ 'candidate_Balance'?: number;
59
+ /**
60
+ * Number of individual candidate Claims
61
+ * @type {number}
62
+ * @memberof VBAPayorAccountCheckProcessing
63
+ */
64
+ 'candidate_Count'?: number;
65
+ /**
66
+ * The Funding or Payor Account\'s Signature key.
67
+ * @type {number}
68
+ * @memberof VBAPayorAccountCheckProcessing
69
+ */
70
+ 'signature_Key'?: number;
71
+ /**
72
+ * Presence indicator for Candidate Balance or Candidate Count
73
+ * @type {number}
74
+ * @memberof VBAPayorAccountCheckProcessing
75
+ */
76
+ 'selected'?: number;
77
+ }
78
+
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vbasoftware/vbapi-vbasoftware-typescript-axios",
3
- "version": "1.20231025.1",
3
+ "version": "1.20231027.1",
4
4
  "description": "APIs for VBASoftware APIs",
5
5
  "main": "index.js",
6
6
  "scripts": {