@vbasoftware/vbapi-vbasoftware-typescript-axios 1.20250620.1 → 1.20250627.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.
@@ -1 +1 @@
1
- 7.13.0
1
+ 7.14.0
@@ -243,14 +243,15 @@ export const SecurityAreaUserGroupsApiAxiosParamCreator = function (configuratio
243
243
  };
244
244
  },
245
245
  /**
246
- * Lists all SecurityAreaUserGroup securityArea
246
+ * Lists all SecurityAreaUserGroup for a given securityArea with optional filtering by UserGroup_Key
247
247
  * @summary List SecurityAreaUserGroup
248
248
  * @param {string} vbasoftwareDatabase Target database
249
249
  * @param {string} securityArea Security Area
250
+ * @param {number} [userGroupKey] Optional filter for UserGroup_Key.
250
251
  * @param {*} [options] Override http request option.
251
252
  * @throws {RequiredError}
252
253
  */
253
- listSecurityAreaUserGroup: async (vbasoftwareDatabase: string, securityArea: string, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
254
+ listSecurityAreaUserGroup: async (vbasoftwareDatabase: string, securityArea: string, userGroupKey?: number, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
254
255
  // verify required parameter 'vbasoftwareDatabase' is not null or undefined
255
256
  assertParamExists('listSecurityAreaUserGroup', 'vbasoftwareDatabase', vbasoftwareDatabase)
256
257
  // verify required parameter 'securityArea' is not null or undefined
@@ -275,6 +276,58 @@ export const SecurityAreaUserGroupsApiAxiosParamCreator = function (configuratio
275
276
  // http bearer authentication required
276
277
  await setBearerAuthToObject(localVarHeaderParameter, configuration)
277
278
 
279
+ if (userGroupKey !== undefined) {
280
+ localVarQueryParameter['UserGroup_Key'] = userGroupKey;
281
+ }
282
+
283
+
284
+
285
+ if (vbasoftwareDatabase != null) {
286
+ localVarHeaderParameter['vbasoftware-database'] = String(vbasoftwareDatabase);
287
+ }
288
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
289
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
290
+ localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
291
+
292
+ return {
293
+ url: toPathString(localVarUrlObj),
294
+ options: localVarRequestOptions,
295
+ };
296
+ },
297
+ /**
298
+ * Lists all SecurityAreaUserGroup records across all security areas. If UserGroup_Key is provided, filters by that value.
299
+ * @summary List SecurityAreaUserGroup with optional UserGroup Key filter
300
+ * @param {string} vbasoftwareDatabase Target database
301
+ * @param {number} [userGroupKey] Optional filter for UserGroup_Key. If not provided, returns all records.
302
+ * @param {*} [options] Override http request option.
303
+ * @throws {RequiredError}
304
+ */
305
+ listSecurityAreaUserGroupByUserGroupKey: async (vbasoftwareDatabase: string, userGroupKey?: number, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
306
+ // verify required parameter 'vbasoftwareDatabase' is not null or undefined
307
+ assertParamExists('listSecurityAreaUserGroupByUserGroupKey', 'vbasoftwareDatabase', vbasoftwareDatabase)
308
+ const localVarPath = `/security-area-user-groups`;
309
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
310
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
311
+ let baseOptions;
312
+ if (configuration) {
313
+ baseOptions = configuration.baseOptions;
314
+ }
315
+
316
+ const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
317
+ const localVarHeaderParameter = {} as any;
318
+ const localVarQueryParameter = {} as any;
319
+
320
+ // authentication apiKeyAuth required
321
+ await setApiKeyToObject(localVarHeaderParameter, "x-api-key", configuration)
322
+
323
+ // authentication bearerAuth required
324
+ // http bearer authentication required
325
+ await setBearerAuthToObject(localVarHeaderParameter, configuration)
326
+
327
+ if (userGroupKey !== undefined) {
328
+ localVarQueryParameter['userGroupKey'] = userGroupKey;
329
+ }
330
+
278
331
 
279
332
 
280
333
  if (vbasoftwareDatabase != null) {
@@ -469,19 +522,34 @@ export const SecurityAreaUserGroupsApiFp = function(configuration?: Configuratio
469
522
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
470
523
  },
471
524
  /**
472
- * Lists all SecurityAreaUserGroup securityArea
525
+ * Lists all SecurityAreaUserGroup for a given securityArea with optional filtering by UserGroup_Key
473
526
  * @summary List SecurityAreaUserGroup
474
527
  * @param {string} vbasoftwareDatabase Target database
475
528
  * @param {string} securityArea Security Area
529
+ * @param {number} [userGroupKey] Optional filter for UserGroup_Key.
476
530
  * @param {*} [options] Override http request option.
477
531
  * @throws {RequiredError}
478
532
  */
479
- async listSecurityAreaUserGroup(vbasoftwareDatabase: string, securityArea: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SecurityAreaUserGroupListVBAResponse>> {
480
- const localVarAxiosArgs = await localVarAxiosParamCreator.listSecurityAreaUserGroup(vbasoftwareDatabase, securityArea, options);
533
+ async listSecurityAreaUserGroup(vbasoftwareDatabase: string, securityArea: string, userGroupKey?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SecurityAreaUserGroupListVBAResponse>> {
534
+ const localVarAxiosArgs = await localVarAxiosParamCreator.listSecurityAreaUserGroup(vbasoftwareDatabase, securityArea, userGroupKey, options);
481
535
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
482
536
  const localVarOperationServerBasePath = operationServerMap['SecurityAreaUserGroupsApi.listSecurityAreaUserGroup']?.[localVarOperationServerIndex]?.url;
483
537
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
484
538
  },
539
+ /**
540
+ * Lists all SecurityAreaUserGroup records across all security areas. If UserGroup_Key is provided, filters by that value.
541
+ * @summary List SecurityAreaUserGroup with optional UserGroup Key filter
542
+ * @param {string} vbasoftwareDatabase Target database
543
+ * @param {number} [userGroupKey] Optional filter for UserGroup_Key. If not provided, returns all records.
544
+ * @param {*} [options] Override http request option.
545
+ * @throws {RequiredError}
546
+ */
547
+ async listSecurityAreaUserGroupByUserGroupKey(vbasoftwareDatabase: string, userGroupKey?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SecurityAreaUserGroupListVBAResponse>> {
548
+ const localVarAxiosArgs = await localVarAxiosParamCreator.listSecurityAreaUserGroupByUserGroupKey(vbasoftwareDatabase, userGroupKey, options);
549
+ const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
550
+ const localVarOperationServerBasePath = operationServerMap['SecurityAreaUserGroupsApi.listSecurityAreaUserGroupByUserGroupKey']?.[localVarOperationServerIndex]?.url;
551
+ return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
552
+ },
485
553
  /**
486
554
  * Create or Update multiple SecurityAreaUserGroup records at once. If the entity exists, it will be updated; if it does not exist, it will be created. **Please note**: The `Security_Area` and `UserGroup_Key` fields represent the primary identifiers for these records and cannot be modified during an update. Ensure these values remain consistent with the original records when performing updates.
487
555
  * @summary Create or Update Batch SecurityAreaUserGroup
@@ -571,15 +639,27 @@ export const SecurityAreaUserGroupsApiFactory = function (configuration?: Config
571
639
  return localVarFp.listSecureGroupsForUserID(vbasoftwareDatabase, userID, options).then((request) => request(axios, basePath));
572
640
  },
573
641
  /**
574
- * Lists all SecurityAreaUserGroup securityArea
642
+ * Lists all SecurityAreaUserGroup for a given securityArea with optional filtering by UserGroup_Key
575
643
  * @summary List SecurityAreaUserGroup
576
644
  * @param {string} vbasoftwareDatabase Target database
577
645
  * @param {string} securityArea Security Area
646
+ * @param {number} [userGroupKey] Optional filter for UserGroup_Key.
578
647
  * @param {*} [options] Override http request option.
579
648
  * @throws {RequiredError}
580
649
  */
581
- listSecurityAreaUserGroup(vbasoftwareDatabase: string, securityArea: string, options?: RawAxiosRequestConfig): AxiosPromise<SecurityAreaUserGroupListVBAResponse> {
582
- return localVarFp.listSecurityAreaUserGroup(vbasoftwareDatabase, securityArea, options).then((request) => request(axios, basePath));
650
+ listSecurityAreaUserGroup(vbasoftwareDatabase: string, securityArea: string, userGroupKey?: number, options?: RawAxiosRequestConfig): AxiosPromise<SecurityAreaUserGroupListVBAResponse> {
651
+ return localVarFp.listSecurityAreaUserGroup(vbasoftwareDatabase, securityArea, userGroupKey, options).then((request) => request(axios, basePath));
652
+ },
653
+ /**
654
+ * Lists all SecurityAreaUserGroup records across all security areas. If UserGroup_Key is provided, filters by that value.
655
+ * @summary List SecurityAreaUserGroup with optional UserGroup Key filter
656
+ * @param {string} vbasoftwareDatabase Target database
657
+ * @param {number} [userGroupKey] Optional filter for UserGroup_Key. If not provided, returns all records.
658
+ * @param {*} [options] Override http request option.
659
+ * @throws {RequiredError}
660
+ */
661
+ listSecurityAreaUserGroupByUserGroupKey(vbasoftwareDatabase: string, userGroupKey?: number, options?: RawAxiosRequestConfig): AxiosPromise<SecurityAreaUserGroupListVBAResponse> {
662
+ return localVarFp.listSecurityAreaUserGroupByUserGroupKey(vbasoftwareDatabase, userGroupKey, options).then((request) => request(axios, basePath));
583
663
  },
584
664
  /**
585
665
  * Create or Update multiple SecurityAreaUserGroup records at once. If the entity exists, it will be updated; if it does not exist, it will be created. **Please note**: The `Security_Area` and `UserGroup_Key` fields represent the primary identifiers for these records and cannot be modified during an update. Ensure these values remain consistent with the original records when performing updates.
@@ -663,15 +743,27 @@ export interface SecurityAreaUserGroupsApiInterface {
663
743
  listSecureGroupsForUserID(vbasoftwareDatabase: string, userID: string, options?: RawAxiosRequestConfig): AxiosPromise<StringListVBAResponse>;
664
744
 
665
745
  /**
666
- * Lists all SecurityAreaUserGroup securityArea
746
+ * Lists all SecurityAreaUserGroup for a given securityArea with optional filtering by UserGroup_Key
667
747
  * @summary List SecurityAreaUserGroup
668
748
  * @param {string} vbasoftwareDatabase Target database
669
749
  * @param {string} securityArea Security Area
750
+ * @param {number} [userGroupKey] Optional filter for UserGroup_Key.
751
+ * @param {*} [options] Override http request option.
752
+ * @throws {RequiredError}
753
+ * @memberof SecurityAreaUserGroupsApiInterface
754
+ */
755
+ listSecurityAreaUserGroup(vbasoftwareDatabase: string, securityArea: string, userGroupKey?: number, options?: RawAxiosRequestConfig): AxiosPromise<SecurityAreaUserGroupListVBAResponse>;
756
+
757
+ /**
758
+ * Lists all SecurityAreaUserGroup records across all security areas. If UserGroup_Key is provided, filters by that value.
759
+ * @summary List SecurityAreaUserGroup with optional UserGroup Key filter
760
+ * @param {string} vbasoftwareDatabase Target database
761
+ * @param {number} [userGroupKey] Optional filter for UserGroup_Key. If not provided, returns all records.
670
762
  * @param {*} [options] Override http request option.
671
763
  * @throws {RequiredError}
672
764
  * @memberof SecurityAreaUserGroupsApiInterface
673
765
  */
674
- listSecurityAreaUserGroup(vbasoftwareDatabase: string, securityArea: string, options?: RawAxiosRequestConfig): AxiosPromise<SecurityAreaUserGroupListVBAResponse>;
766
+ listSecurityAreaUserGroupByUserGroupKey(vbasoftwareDatabase: string, userGroupKey?: number, options?: RawAxiosRequestConfig): AxiosPromise<SecurityAreaUserGroupListVBAResponse>;
675
767
 
676
768
  /**
677
769
  * Create or Update multiple SecurityAreaUserGroup records at once. If the entity exists, it will be updated; if it does not exist, it will be created. **Please note**: The `Security_Area` and `UserGroup_Key` fields represent the primary identifiers for these records and cannot be modified during an update. Ensure these values remain consistent with the original records when performing updates.
@@ -763,16 +855,30 @@ export class SecurityAreaUserGroupsApi extends BaseAPI implements SecurityAreaUs
763
855
  }
764
856
 
765
857
  /**
766
- * Lists all SecurityAreaUserGroup securityArea
858
+ * Lists all SecurityAreaUserGroup for a given securityArea with optional filtering by UserGroup_Key
767
859
  * @summary List SecurityAreaUserGroup
768
860
  * @param {string} vbasoftwareDatabase Target database
769
861
  * @param {string} securityArea Security Area
862
+ * @param {number} [userGroupKey] Optional filter for UserGroup_Key.
863
+ * @param {*} [options] Override http request option.
864
+ * @throws {RequiredError}
865
+ * @memberof SecurityAreaUserGroupsApi
866
+ */
867
+ public listSecurityAreaUserGroup(vbasoftwareDatabase: string, securityArea: string, userGroupKey?: number, options?: RawAxiosRequestConfig) {
868
+ return SecurityAreaUserGroupsApiFp(this.configuration).listSecurityAreaUserGroup(vbasoftwareDatabase, securityArea, userGroupKey, options).then((request) => request(this.axios, this.basePath));
869
+ }
870
+
871
+ /**
872
+ * Lists all SecurityAreaUserGroup records across all security areas. If UserGroup_Key is provided, filters by that value.
873
+ * @summary List SecurityAreaUserGroup with optional UserGroup Key filter
874
+ * @param {string} vbasoftwareDatabase Target database
875
+ * @param {number} [userGroupKey] Optional filter for UserGroup_Key. If not provided, returns all records.
770
876
  * @param {*} [options] Override http request option.
771
877
  * @throws {RequiredError}
772
878
  * @memberof SecurityAreaUserGroupsApi
773
879
  */
774
- public listSecurityAreaUserGroup(vbasoftwareDatabase: string, securityArea: string, options?: RawAxiosRequestConfig) {
775
- return SecurityAreaUserGroupsApiFp(this.configuration).listSecurityAreaUserGroup(vbasoftwareDatabase, securityArea, options).then((request) => request(this.axios, this.basePath));
880
+ public listSecurityAreaUserGroupByUserGroupKey(vbasoftwareDatabase: string, userGroupKey?: number, options?: RawAxiosRequestConfig) {
881
+ return SecurityAreaUserGroupsApiFp(this.configuration).listSecurityAreaUserGroupByUserGroupKey(vbasoftwareDatabase, userGroupKey, options).then((request) => request(this.axios, this.basePath));
776
882
  }
777
883
 
778
884
  /**
package/common.ts CHANGED
@@ -89,17 +89,17 @@ function setFlattenedQueryParams(urlSearchParams: URLSearchParams, parameter: an
89
89
  if (typeof parameter === "object") {
90
90
  if (Array.isArray(parameter)) {
91
91
  (parameter as any[]).forEach(item => setFlattenedQueryParams(urlSearchParams, item, key));
92
- }
92
+ }
93
93
  else {
94
- Object.keys(parameter).forEach(currentKey =>
94
+ Object.keys(parameter).forEach(currentKey =>
95
95
  setFlattenedQueryParams(urlSearchParams, parameter[currentKey], `${key}${key !== '' ? '.' : ''}${currentKey}`)
96
96
  );
97
97
  }
98
- }
98
+ }
99
99
  else {
100
100
  if (urlSearchParams.has(key)) {
101
101
  urlSearchParams.append(key, parameter);
102
- }
102
+ }
103
103
  else {
104
104
  urlSearchParams.set(key, parameter);
105
105
  }
@@ -19,6 +19,7 @@ Name | Type | Description | Notes
19
19
  **payTo_City** | **string** | City of the address that should be used for payments to the Payee. | [optional] [default to undefined]
20
20
  **payTo_State** | **string** | State of the Payee\&#39;s address used for payments. | [optional] [default to undefined]
21
21
  **payTo_Zip** | **string** | Zip Code of the Payee\&#39;s address used for payments. | [optional] [default to undefined]
22
+ **payee_NPI** | **string** | | [optional] [default to undefined]
22
23
 
23
24
  ## Example
24
25
 
@@ -40,6 +41,7 @@ const instance: ClaimBatchPayee = {
40
41
  payTo_City,
41
42
  payTo_State,
42
43
  payTo_Zip,
44
+ payee_NPI,
43
45
  };
44
46
  ```
45
47
 
@@ -19,6 +19,7 @@ Name | Type | Description | Notes
19
19
  **payTo_City** | **string** | City of the address that should be used for payments to the Payee. | [optional] [default to undefined]
20
20
  **payTo_State** | **string** | State of the Payee\&#39;s address used for payments. | [optional] [default to undefined]
21
21
  **payTo_Zip** | **string** | Zip Code of the Payee\&#39;s address used for payments. | [optional] [default to undefined]
22
+ **payee_NPI** | **string** | | [optional] [default to undefined]
22
23
 
23
24
  ## Example
24
25
 
@@ -40,6 +41,7 @@ const instance: ClaimPayee = {
40
41
  payTo_City,
41
42
  payTo_State,
42
43
  payTo_Zip,
44
+ payee_NPI,
43
45
  };
44
46
  ```
45
47
 
@@ -9,6 +9,7 @@ All URIs are relative to *https://vbapi.vbasoftware.com/vbasoftware*
9
9
  |[**getSecurityAreaUserGroup**](#getsecurityareausergroup) | **GET** /security-areas/{securityArea}/user-groups/{userGroupKey} | Get SecurityAreaUserGroup|
10
10
  |[**listSecureGroupsForUserID**](#listsecuregroupsforuserid) | **GET** /secure-groups | List Secure Groups|
11
11
  |[**listSecurityAreaUserGroup**](#listsecurityareausergroup) | **GET** /security-areas/{securityArea}/user-groups | List SecurityAreaUserGroup|
12
+ |[**listSecurityAreaUserGroupByUserGroupKey**](#listsecurityareausergroupbyusergroupkey) | **GET** /security-area-user-groups | List SecurityAreaUserGroup with optional UserGroup Key filter|
12
13
  |[**updateBatchSecurityAreaUserGroup**](#updatebatchsecurityareausergroup) | **PUT** /security-areas/{securityArea}/user-groups | Create or Update Batch SecurityAreaUserGroup|
13
14
  |[**updateSecurityAreaUserGroup**](#updatesecurityareausergroup) | **PUT** /security-areas/{securityArea}/user-groups/{userGroupKey} | Update SecurityAreaUserGroup|
14
15
 
@@ -245,7 +246,7 @@ const { status, data } = await apiInstance.listSecureGroupsForUserID(
245
246
  # **listSecurityAreaUserGroup**
246
247
  > SecurityAreaUserGroupListVBAResponse listSecurityAreaUserGroup()
247
248
 
248
- Lists all SecurityAreaUserGroup securityArea
249
+ Lists all SecurityAreaUserGroup for a given securityArea with optional filtering by UserGroup_Key
249
250
 
250
251
  ### Example
251
252
 
@@ -260,10 +261,12 @@ const apiInstance = new SecurityAreaUserGroupsApi(configuration);
260
261
 
261
262
  let vbasoftwareDatabase: string; //Target database (default to undefined)
262
263
  let securityArea: string; //Security Area (default to undefined)
264
+ let userGroupKey: number; //Optional filter for UserGroup_Key. (optional) (default to undefined)
263
265
 
264
266
  const { status, data } = await apiInstance.listSecurityAreaUserGroup(
265
267
  vbasoftwareDatabase,
266
- securityArea
268
+ securityArea,
269
+ userGroupKey
267
270
  );
268
271
  ```
269
272
 
@@ -273,6 +276,62 @@ const { status, data } = await apiInstance.listSecurityAreaUserGroup(
273
276
  |------------- | ------------- | ------------- | -------------|
274
277
  | **vbasoftwareDatabase** | [**string**] | Target database | defaults to undefined|
275
278
  | **securityArea** | [**string**] | Security Area | defaults to undefined|
279
+ | **userGroupKey** | [**number**] | Optional filter for UserGroup_Key. | (optional) defaults to undefined|
280
+
281
+
282
+ ### Return type
283
+
284
+ **SecurityAreaUserGroupListVBAResponse**
285
+
286
+ ### Authorization
287
+
288
+ [apiKeyAuth](../README.md#apiKeyAuth), [bearerAuth](../README.md#bearerAuth)
289
+
290
+ ### HTTP request headers
291
+
292
+ - **Content-Type**: Not defined
293
+ - **Accept**: text/plain, application/json, text/json
294
+
295
+
296
+ ### HTTP response details
297
+ | Status code | Description | Response headers |
298
+ |-------------|-------------|------------------|
299
+ |**200** | Success | - |
300
+ |**401** | Unauthorized | - |
301
+
302
+ [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
303
+
304
+ # **listSecurityAreaUserGroupByUserGroupKey**
305
+ > SecurityAreaUserGroupListVBAResponse listSecurityAreaUserGroupByUserGroupKey()
306
+
307
+ Lists all SecurityAreaUserGroup records across all security areas. If UserGroup_Key is provided, filters by that value.
308
+
309
+ ### Example
310
+
311
+ ```typescript
312
+ import {
313
+ SecurityAreaUserGroupsApi,
314
+ Configuration
315
+ } from './api';
316
+
317
+ const configuration = new Configuration();
318
+ const apiInstance = new SecurityAreaUserGroupsApi(configuration);
319
+
320
+ let vbasoftwareDatabase: string; //Target database (default to undefined)
321
+ let userGroupKey: number; //Optional filter for UserGroup_Key. If not provided, returns all records. (optional) (default to undefined)
322
+
323
+ const { status, data } = await apiInstance.listSecurityAreaUserGroupByUserGroupKey(
324
+ vbasoftwareDatabase,
325
+ userGroupKey
326
+ );
327
+ ```
328
+
329
+ ### Parameters
330
+
331
+ |Name | Type | Description | Notes|
332
+ |------------- | ------------- | ------------- | -------------|
333
+ | **vbasoftwareDatabase** | [**string**] | Target database | defaults to undefined|
334
+ | **userGroupKey** | [**number**] | Optional filter for UserGroup_Key. If not provided, returns all records. | (optional) defaults to undefined|
276
335
 
277
336
 
278
337
  ### Return type
@@ -104,5 +104,11 @@ export interface ClaimBatchPayee {
104
104
  * @memberof ClaimBatchPayee
105
105
  */
106
106
  'payTo_Zip'?: string | null;
107
+ /**
108
+ *
109
+ * @type {string}
110
+ * @memberof ClaimBatchPayee
111
+ */
112
+ 'payee_NPI'?: string | null;
107
113
  }
108
114
 
@@ -104,5 +104,11 @@ export interface ClaimPayee {
104
104
  * @memberof ClaimPayee
105
105
  */
106
106
  'payTo_Zip'?: string | null;
107
+ /**
108
+ *
109
+ * @type {string}
110
+ * @memberof ClaimPayee
111
+ */
112
+ 'payee_NPI'?: string | null;
107
113
  }
108
114
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vbasoftware/vbapi-vbasoftware-typescript-axios",
3
- "version": "1.20250620.1",
3
+ "version": "1.20250627.1",
4
4
  "main": "index.js",
5
5
  "directories": {
6
6
  "doc": "docs"