ob-bms-sdk 0.0.119 → 0.0.120

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.
package/api/api.ts CHANGED
@@ -2468,6 +2468,12 @@ export interface MemberIndexQuery {
2468
2468
  * @memberof MemberIndexQuery
2469
2469
  */
2470
2470
  'tenant_id'?: string;
2471
+ /**
2472
+ *
2473
+ * @type {string}
2474
+ * @memberof MemberIndexQuery
2475
+ */
2476
+ 'uid'?: string;
2471
2477
  }
2472
2478
  /**
2473
2479
  *
@@ -9603,6 +9609,35 @@ export const DefaultApiAxiosParamCreator = function (configuration?: Configurati
9603
9609
 
9604
9610
 
9605
9611
 
9612
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
9613
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
9614
+ localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
9615
+
9616
+ return {
9617
+ url: toPathString(localVarUrlObj),
9618
+ options: localVarRequestOptions,
9619
+ };
9620
+ },
9621
+ /**
9622
+ *
9623
+ * @param {*} [options] Override http request option.
9624
+ * @throws {RequiredError}
9625
+ */
9626
+ health: async (options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
9627
+ const localVarPath = `/health`;
9628
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
9629
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
9630
+ let baseOptions;
9631
+ if (configuration) {
9632
+ baseOptions = configuration.baseOptions;
9633
+ }
9634
+
9635
+ const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
9636
+ const localVarHeaderParameter = {} as any;
9637
+ const localVarQueryParameter = {} as any;
9638
+
9639
+
9640
+
9606
9641
  setSearchParams(localVarUrlObj, localVarQueryParameter);
9607
9642
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
9608
9643
  localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
@@ -10177,10 +10212,11 @@ export const DefaultApiAxiosParamCreator = function (configuration?: Configurati
10177
10212
  * @param {number} [pageSize]
10178
10213
  * @param {string} [floorId]
10179
10214
  * @param {string} [tenantId]
10215
+ * @param {string} [uid]
10180
10216
  * @param {*} [options] Override http request option.
10181
10217
  * @throws {RequiredError}
10182
10218
  */
10183
- membersV2Index: async (orderBy?: string, orderDirection?: string, pageNumber?: number, pageSize?: number, floorId?: string, tenantId?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
10219
+ membersV2Index: async (orderBy?: string, orderDirection?: string, pageNumber?: number, pageSize?: number, floorId?: string, tenantId?: string, uid?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
10184
10220
  const localVarPath = `/v2/members`;
10185
10221
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
10186
10222
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
@@ -10217,6 +10253,10 @@ export const DefaultApiAxiosParamCreator = function (configuration?: Configurati
10217
10253
  localVarQueryParameter['tenant_id'] = tenantId;
10218
10254
  }
10219
10255
 
10256
+ if (uid !== undefined) {
10257
+ localVarQueryParameter['uid'] = uid;
10258
+ }
10259
+
10220
10260
 
10221
10261
 
10222
10262
  setSearchParams(localVarUrlObj, localVarQueryParameter);
@@ -10910,15 +10950,13 @@ export const DefaultApiAxiosParamCreator = function (configuration?: Configurati
10910
10950
  },
10911
10951
  /**
10912
10952
  *
10913
- * @param {string} xAccountId
10914
10953
  * @param {ParkingTicketsIndexTypeEnum} type
10915
10954
  * @param {string} id
10955
+ * @param {string} [xAccountId]
10916
10956
  * @param {*} [options] Override http request option.
10917
10957
  * @throws {RequiredError}
10918
10958
  */
10919
- parkingTicketsIndex: async (xAccountId: string, type: ParkingTicketsIndexTypeEnum, id: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
10920
- // verify required parameter 'xAccountId' is not null or undefined
10921
- assertParamExists('parkingTicketsIndex', 'xAccountId', xAccountId)
10959
+ parkingTicketsIndex: async (type: ParkingTicketsIndexTypeEnum, id: string, xAccountId?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
10922
10960
  // verify required parameter 'type' is not null or undefined
10923
10961
  assertParamExists('parkingTicketsIndex', 'type', type)
10924
10962
  // verify required parameter 'id' is not null or undefined
@@ -11993,6 +12031,15 @@ export const DefaultApiFp = function(configuration?: Configuration) {
11993
12031
  const localVarAxiosArgs = await localVarAxiosParamCreator.floorsIndex(options);
11994
12032
  return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
11995
12033
  },
12034
+ /**
12035
+ *
12036
+ * @param {*} [options] Override http request option.
12037
+ * @throws {RequiredError}
12038
+ */
12039
+ async health(options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>> {
12040
+ const localVarAxiosArgs = await localVarAxiosParamCreator.health(options);
12041
+ return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
12042
+ },
11996
12043
  /**
11997
12044
  *
11998
12045
  * @param {Array<HolidayRequestBody>} holidayRequestBody
@@ -12160,11 +12207,12 @@ export const DefaultApiFp = function(configuration?: Configuration) {
12160
12207
  * @param {number} [pageSize]
12161
12208
  * @param {string} [floorId]
12162
12209
  * @param {string} [tenantId]
12210
+ * @param {string} [uid]
12163
12211
  * @param {*} [options] Override http request option.
12164
12212
  * @throws {RequiredError}
12165
12213
  */
12166
- async membersV2Index(orderBy?: string, orderDirection?: string, pageNumber?: number, pageSize?: number, floorId?: string, tenantId?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<WrappedArrayResponseMemberIndexResponse>> {
12167
- const localVarAxiosArgs = await localVarAxiosParamCreator.membersV2Index(orderBy, orderDirection, pageNumber, pageSize, floorId, tenantId, options);
12214
+ async membersV2Index(orderBy?: string, orderDirection?: string, pageNumber?: number, pageSize?: number, floorId?: string, tenantId?: string, uid?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<WrappedArrayResponseMemberIndexResponse>> {
12215
+ const localVarAxiosArgs = await localVarAxiosParamCreator.membersV2Index(orderBy, orderDirection, pageNumber, pageSize, floorId, tenantId, uid, options);
12168
12216
  return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
12169
12217
  },
12170
12218
  /**
@@ -12353,14 +12401,14 @@ export const DefaultApiFp = function(configuration?: Configuration) {
12353
12401
  },
12354
12402
  /**
12355
12403
  *
12356
- * @param {string} xAccountId
12357
12404
  * @param {ParkingTicketsIndexTypeEnum} type
12358
12405
  * @param {string} id
12406
+ * @param {string} [xAccountId]
12359
12407
  * @param {*} [options] Override http request option.
12360
12408
  * @throws {RequiredError}
12361
12409
  */
12362
- async parkingTicketsIndex(xAccountId: string, type: ParkingTicketsIndexTypeEnum, id: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<WrappedResponseParkingTicketDataArray>> {
12363
- const localVarAxiosArgs = await localVarAxiosParamCreator.parkingTicketsIndex(xAccountId, type, id, options);
12410
+ async parkingTicketsIndex(type: ParkingTicketsIndexTypeEnum, id: string, xAccountId?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<WrappedResponseParkingTicketDataArray>> {
12411
+ const localVarAxiosArgs = await localVarAxiosParamCreator.parkingTicketsIndex(type, id, xAccountId, options);
12364
12412
  return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
12365
12413
  },
12366
12414
  /**
@@ -12768,6 +12816,14 @@ export const DefaultApiFactory = function (configuration?: Configuration, basePa
12768
12816
  floorsIndex(options?: any): AxiosPromise<WrappedArrayResponseFloorData> {
12769
12817
  return localVarFp.floorsIndex(options).then((request) => request(axios, basePath));
12770
12818
  },
12819
+ /**
12820
+ *
12821
+ * @param {*} [options] Override http request option.
12822
+ * @throws {RequiredError}
12823
+ */
12824
+ health(options?: any): AxiosPromise<void> {
12825
+ return localVarFp.health(options).then((request) => request(axios, basePath));
12826
+ },
12771
12827
  /**
12772
12828
  *
12773
12829
  * @param {Array<HolidayRequestBody>} holidayRequestBody
@@ -12920,11 +12976,12 @@ export const DefaultApiFactory = function (configuration?: Configuration, basePa
12920
12976
  * @param {number} [pageSize]
12921
12977
  * @param {string} [floorId]
12922
12978
  * @param {string} [tenantId]
12979
+ * @param {string} [uid]
12923
12980
  * @param {*} [options] Override http request option.
12924
12981
  * @throws {RequiredError}
12925
12982
  */
12926
- membersV2Index(orderBy?: string, orderDirection?: string, pageNumber?: number, pageSize?: number, floorId?: string, tenantId?: string, options?: any): AxiosPromise<WrappedArrayResponseMemberIndexResponse> {
12927
- return localVarFp.membersV2Index(orderBy, orderDirection, pageNumber, pageSize, floorId, tenantId, options).then((request) => request(axios, basePath));
12983
+ membersV2Index(orderBy?: string, orderDirection?: string, pageNumber?: number, pageSize?: number, floorId?: string, tenantId?: string, uid?: string, options?: any): AxiosPromise<WrappedArrayResponseMemberIndexResponse> {
12984
+ return localVarFp.membersV2Index(orderBy, orderDirection, pageNumber, pageSize, floorId, tenantId, uid, options).then((request) => request(axios, basePath));
12928
12985
  },
12929
12986
  /**
12930
12987
  *
@@ -13096,14 +13153,14 @@ export const DefaultApiFactory = function (configuration?: Configuration, basePa
13096
13153
  },
13097
13154
  /**
13098
13155
  *
13099
- * @param {string} xAccountId
13100
13156
  * @param {ParkingTicketsIndexTypeEnum} type
13101
13157
  * @param {string} id
13158
+ * @param {string} [xAccountId]
13102
13159
  * @param {*} [options] Override http request option.
13103
13160
  * @throws {RequiredError}
13104
13161
  */
13105
- parkingTicketsIndex(xAccountId: string, type: ParkingTicketsIndexTypeEnum, id: string, options?: any): AxiosPromise<WrappedResponseParkingTicketDataArray> {
13106
- return localVarFp.parkingTicketsIndex(xAccountId, type, id, options).then((request) => request(axios, basePath));
13162
+ parkingTicketsIndex(type: ParkingTicketsIndexTypeEnum, id: string, xAccountId?: string, options?: any): AxiosPromise<WrappedResponseParkingTicketDataArray> {
13163
+ return localVarFp.parkingTicketsIndex(type, id, xAccountId, options).then((request) => request(axios, basePath));
13107
13164
  },
13108
13165
  /**
13109
13166
  *
@@ -13514,6 +13571,16 @@ export class DefaultApi extends BaseAPI {
13514
13571
  return DefaultApiFp(this.configuration).floorsIndex(options).then((request) => request(this.axios, this.basePath));
13515
13572
  }
13516
13573
 
13574
+ /**
13575
+ *
13576
+ * @param {*} [options] Override http request option.
13577
+ * @throws {RequiredError}
13578
+ * @memberof DefaultApi
13579
+ */
13580
+ public health(options?: AxiosRequestConfig) {
13581
+ return DefaultApiFp(this.configuration).health(options).then((request) => request(this.axios, this.basePath));
13582
+ }
13583
+
13517
13584
  /**
13518
13585
  *
13519
13586
  * @param {Array<HolidayRequestBody>} holidayRequestBody
@@ -13696,12 +13763,13 @@ export class DefaultApi extends BaseAPI {
13696
13763
  * @param {number} [pageSize]
13697
13764
  * @param {string} [floorId]
13698
13765
  * @param {string} [tenantId]
13766
+ * @param {string} [uid]
13699
13767
  * @param {*} [options] Override http request option.
13700
13768
  * @throws {RequiredError}
13701
13769
  * @memberof DefaultApi
13702
13770
  */
13703
- public membersV2Index(orderBy?: string, orderDirection?: string, pageNumber?: number, pageSize?: number, floorId?: string, tenantId?: string, options?: AxiosRequestConfig) {
13704
- return DefaultApiFp(this.configuration).membersV2Index(orderBy, orderDirection, pageNumber, pageSize, floorId, tenantId, options).then((request) => request(this.axios, this.basePath));
13771
+ public membersV2Index(orderBy?: string, orderDirection?: string, pageNumber?: number, pageSize?: number, floorId?: string, tenantId?: string, uid?: string, options?: AxiosRequestConfig) {
13772
+ return DefaultApiFp(this.configuration).membersV2Index(orderBy, orderDirection, pageNumber, pageSize, floorId, tenantId, uid, options).then((request) => request(this.axios, this.basePath));
13705
13773
  }
13706
13774
 
13707
13775
  /**
@@ -13906,15 +13974,15 @@ export class DefaultApi extends BaseAPI {
13906
13974
 
13907
13975
  /**
13908
13976
  *
13909
- * @param {string} xAccountId
13910
13977
  * @param {ParkingTicketsIndexTypeEnum} type
13911
13978
  * @param {string} id
13979
+ * @param {string} [xAccountId]
13912
13980
  * @param {*} [options] Override http request option.
13913
13981
  * @throws {RequiredError}
13914
13982
  * @memberof DefaultApi
13915
13983
  */
13916
- public parkingTicketsIndex(xAccountId: string, type: ParkingTicketsIndexTypeEnum, id: string, options?: AxiosRequestConfig) {
13917
- return DefaultApiFp(this.configuration).parkingTicketsIndex(xAccountId, type, id, options).then((request) => request(this.axios, this.basePath));
13984
+ public parkingTicketsIndex(type: ParkingTicketsIndexTypeEnum, id: string, xAccountId?: string, options?: AxiosRequestConfig) {
13985
+ return DefaultApiFp(this.configuration).parkingTicketsIndex(type, id, xAccountId, options).then((request) => request(this.axios, this.basePath));
13918
13986
  }
13919
13987
 
13920
13988
  /**
package/dist/api/api.d.ts CHANGED
@@ -2438,6 +2438,12 @@ export interface MemberIndexQuery {
2438
2438
  * @memberof MemberIndexQuery
2439
2439
  */
2440
2440
  'tenant_id'?: string;
2441
+ /**
2442
+ *
2443
+ * @type {string}
2444
+ * @memberof MemberIndexQuery
2445
+ */
2446
+ 'uid'?: string;
2441
2447
  }
2442
2448
  /**
2443
2449
  *
@@ -9055,6 +9061,12 @@ export declare const DefaultApiAxiosParamCreator: (configuration?: Configuration
9055
9061
  * @throws {RequiredError}
9056
9062
  */
9057
9063
  floorsIndex: (options?: AxiosRequestConfig) => Promise<RequestArgs>;
9064
+ /**
9065
+ *
9066
+ * @param {*} [options] Override http request option.
9067
+ * @throws {RequiredError}
9068
+ */
9069
+ health: (options?: AxiosRequestConfig) => Promise<RequestArgs>;
9058
9070
  /**
9059
9071
  *
9060
9072
  * @param {Array<HolidayRequestBody>} holidayRequestBody
@@ -9177,10 +9189,11 @@ export declare const DefaultApiAxiosParamCreator: (configuration?: Configuration
9177
9189
  * @param {number} [pageSize]
9178
9190
  * @param {string} [floorId]
9179
9191
  * @param {string} [tenantId]
9192
+ * @param {string} [uid]
9180
9193
  * @param {*} [options] Override http request option.
9181
9194
  * @throws {RequiredError}
9182
9195
  */
9183
- membersV2Index: (orderBy?: string, orderDirection?: string, pageNumber?: number, pageSize?: number, floorId?: string, tenantId?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
9196
+ membersV2Index: (orderBy?: string, orderDirection?: string, pageNumber?: number, pageSize?: number, floorId?: string, tenantId?: string, uid?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
9184
9197
  /**
9185
9198
  *
9186
9199
  * @param {MemberListBody} memberListBody
@@ -9319,13 +9332,13 @@ export declare const DefaultApiAxiosParamCreator: (configuration?: Configuration
9319
9332
  parkingTicketsImport: (importPhysicalParkingTicketBody: ImportPhysicalParkingTicketBody, xAccountId?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
9320
9333
  /**
9321
9334
  *
9322
- * @param {string} xAccountId
9323
9335
  * @param {ParkingTicketsIndexTypeEnum} type
9324
9336
  * @param {string} id
9337
+ * @param {string} [xAccountId]
9325
9338
  * @param {*} [options] Override http request option.
9326
9339
  * @throws {RequiredError}
9327
9340
  */
9328
- parkingTicketsIndex: (xAccountId: string, type: ParkingTicketsIndexTypeEnum, id: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
9341
+ parkingTicketsIndex: (type: ParkingTicketsIndexTypeEnum, id: string, xAccountId?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
9329
9342
  /**
9330
9343
  *
9331
9344
  * @param {string} logId
@@ -9627,6 +9640,12 @@ export declare const DefaultApiFp: (configuration?: Configuration) => {
9627
9640
  * @throws {RequiredError}
9628
9641
  */
9629
9642
  floorsIndex(options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<WrappedArrayResponseFloorData>>;
9643
+ /**
9644
+ *
9645
+ * @param {*} [options] Override http request option.
9646
+ * @throws {RequiredError}
9647
+ */
9648
+ health(options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
9630
9649
  /**
9631
9650
  *
9632
9651
  * @param {Array<HolidayRequestBody>} holidayRequestBody
@@ -9749,10 +9768,11 @@ export declare const DefaultApiFp: (configuration?: Configuration) => {
9749
9768
  * @param {number} [pageSize]
9750
9769
  * @param {string} [floorId]
9751
9770
  * @param {string} [tenantId]
9771
+ * @param {string} [uid]
9752
9772
  * @param {*} [options] Override http request option.
9753
9773
  * @throws {RequiredError}
9754
9774
  */
9755
- membersV2Index(orderBy?: string, orderDirection?: string, pageNumber?: number, pageSize?: number, floorId?: string, tenantId?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<WrappedArrayResponseMemberIndexResponse>>;
9775
+ membersV2Index(orderBy?: string, orderDirection?: string, pageNumber?: number, pageSize?: number, floorId?: string, tenantId?: string, uid?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<WrappedArrayResponseMemberIndexResponse>>;
9756
9776
  /**
9757
9777
  *
9758
9778
  * @param {MemberListBody} memberListBody
@@ -9891,13 +9911,13 @@ export declare const DefaultApiFp: (configuration?: Configuration) => {
9891
9911
  parkingTicketsImport(importPhysicalParkingTicketBody: ImportPhysicalParkingTicketBody, xAccountId?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<WrappedResponseImportPhysicalParkingTicketResponse>>;
9892
9912
  /**
9893
9913
  *
9894
- * @param {string} xAccountId
9895
9914
  * @param {ParkingTicketsIndexTypeEnum} type
9896
9915
  * @param {string} id
9916
+ * @param {string} [xAccountId]
9897
9917
  * @param {*} [options] Override http request option.
9898
9918
  * @throws {RequiredError}
9899
9919
  */
9900
- parkingTicketsIndex(xAccountId: string, type: ParkingTicketsIndexTypeEnum, id: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<WrappedResponseParkingTicketDataArray>>;
9920
+ parkingTicketsIndex(type: ParkingTicketsIndexTypeEnum, id: string, xAccountId?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<WrappedResponseParkingTicketDataArray>>;
9901
9921
  /**
9902
9922
  *
9903
9923
  * @param {string} logId
@@ -10199,6 +10219,12 @@ export declare const DefaultApiFactory: (configuration?: Configuration, basePath
10199
10219
  * @throws {RequiredError}
10200
10220
  */
10201
10221
  floorsIndex(options?: any): AxiosPromise<WrappedArrayResponseFloorData>;
10222
+ /**
10223
+ *
10224
+ * @param {*} [options] Override http request option.
10225
+ * @throws {RequiredError}
10226
+ */
10227
+ health(options?: any): AxiosPromise<void>;
10202
10228
  /**
10203
10229
  *
10204
10230
  * @param {Array<HolidayRequestBody>} holidayRequestBody
@@ -10321,10 +10347,11 @@ export declare const DefaultApiFactory: (configuration?: Configuration, basePath
10321
10347
  * @param {number} [pageSize]
10322
10348
  * @param {string} [floorId]
10323
10349
  * @param {string} [tenantId]
10350
+ * @param {string} [uid]
10324
10351
  * @param {*} [options] Override http request option.
10325
10352
  * @throws {RequiredError}
10326
10353
  */
10327
- membersV2Index(orderBy?: string, orderDirection?: string, pageNumber?: number, pageSize?: number, floorId?: string, tenantId?: string, options?: any): AxiosPromise<WrappedArrayResponseMemberIndexResponse>;
10354
+ membersV2Index(orderBy?: string, orderDirection?: string, pageNumber?: number, pageSize?: number, floorId?: string, tenantId?: string, uid?: string, options?: any): AxiosPromise<WrappedArrayResponseMemberIndexResponse>;
10328
10355
  /**
10329
10356
  *
10330
10357
  * @param {MemberListBody} memberListBody
@@ -10463,13 +10490,13 @@ export declare const DefaultApiFactory: (configuration?: Configuration, basePath
10463
10490
  parkingTicketsImport(importPhysicalParkingTicketBody: ImportPhysicalParkingTicketBody, xAccountId?: string, options?: any): AxiosPromise<WrappedResponseImportPhysicalParkingTicketResponse>;
10464
10491
  /**
10465
10492
  *
10466
- * @param {string} xAccountId
10467
10493
  * @param {ParkingTicketsIndexTypeEnum} type
10468
10494
  * @param {string} id
10495
+ * @param {string} [xAccountId]
10469
10496
  * @param {*} [options] Override http request option.
10470
10497
  * @throws {RequiredError}
10471
10498
  */
10472
- parkingTicketsIndex(xAccountId: string, type: ParkingTicketsIndexTypeEnum, id: string, options?: any): AxiosPromise<WrappedResponseParkingTicketDataArray>;
10499
+ parkingTicketsIndex(type: ParkingTicketsIndexTypeEnum, id: string, xAccountId?: string, options?: any): AxiosPromise<WrappedResponseParkingTicketDataArray>;
10473
10500
  /**
10474
10501
  *
10475
10502
  * @param {string} logId
@@ -10787,6 +10814,13 @@ export declare class DefaultApi extends BaseAPI {
10787
10814
  * @memberof DefaultApi
10788
10815
  */
10789
10816
  floorsIndex(options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<WrappedArrayResponseFloorData, any>>;
10817
+ /**
10818
+ *
10819
+ * @param {*} [options] Override http request option.
10820
+ * @throws {RequiredError}
10821
+ * @memberof DefaultApi
10822
+ */
10823
+ health(options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
10790
10824
  /**
10791
10825
  *
10792
10826
  * @param {Array<HolidayRequestBody>} holidayRequestBody
@@ -10924,11 +10958,12 @@ export declare class DefaultApi extends BaseAPI {
10924
10958
  * @param {number} [pageSize]
10925
10959
  * @param {string} [floorId]
10926
10960
  * @param {string} [tenantId]
10961
+ * @param {string} [uid]
10927
10962
  * @param {*} [options] Override http request option.
10928
10963
  * @throws {RequiredError}
10929
10964
  * @memberof DefaultApi
10930
10965
  */
10931
- membersV2Index(orderBy?: string, orderDirection?: string, pageNumber?: number, pageSize?: number, floorId?: string, tenantId?: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<WrappedArrayResponseMemberIndexResponse, any>>;
10966
+ membersV2Index(orderBy?: string, orderDirection?: string, pageNumber?: number, pageSize?: number, floorId?: string, tenantId?: string, uid?: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<WrappedArrayResponseMemberIndexResponse, any>>;
10932
10967
  /**
10933
10968
  *
10934
10969
  * @param {MemberListBody} memberListBody
@@ -11083,14 +11118,14 @@ export declare class DefaultApi extends BaseAPI {
11083
11118
  parkingTicketsImport(importPhysicalParkingTicketBody: ImportPhysicalParkingTicketBody, xAccountId?: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<WrappedResponseImportPhysicalParkingTicketResponse, any>>;
11084
11119
  /**
11085
11120
  *
11086
- * @param {string} xAccountId
11087
11121
  * @param {ParkingTicketsIndexTypeEnum} type
11088
11122
  * @param {string} id
11123
+ * @param {string} [xAccountId]
11089
11124
  * @param {*} [options] Override http request option.
11090
11125
  * @throws {RequiredError}
11091
11126
  * @memberof DefaultApi
11092
11127
  */
11093
- parkingTicketsIndex(xAccountId: string, type: ParkingTicketsIndexTypeEnum, id: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<WrappedResponseParkingTicketDataArray, any>>;
11128
+ parkingTicketsIndex(type: ParkingTicketsIndexTypeEnum, id: string, xAccountId?: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<WrappedResponseParkingTicketDataArray, any>>;
11094
11129
  /**
11095
11130
  *
11096
11131
  * @param {string} logId
package/dist/api/api.js CHANGED
@@ -664,6 +664,30 @@ const DefaultApiAxiosParamCreator = function (configuration) {
664
664
  options: localVarRequestOptions,
665
665
  };
666
666
  }),
667
+ /**
668
+ *
669
+ * @param {*} [options] Override http request option.
670
+ * @throws {RequiredError}
671
+ */
672
+ health: (options = {}) => __awaiter(this, void 0, void 0, function* () {
673
+ const localVarPath = `/health`;
674
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
675
+ const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
676
+ let baseOptions;
677
+ if (configuration) {
678
+ baseOptions = configuration.baseOptions;
679
+ }
680
+ const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options);
681
+ const localVarHeaderParameter = {};
682
+ const localVarQueryParameter = {};
683
+ (0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
684
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
685
+ localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
686
+ return {
687
+ url: (0, common_1.toPathString)(localVarUrlObj),
688
+ options: localVarRequestOptions,
689
+ };
690
+ }),
667
691
  /**
668
692
  *
669
693
  * @param {Array<HolidayRequestBody>} holidayRequestBody
@@ -1136,10 +1160,11 @@ const DefaultApiAxiosParamCreator = function (configuration) {
1136
1160
  * @param {number} [pageSize]
1137
1161
  * @param {string} [floorId]
1138
1162
  * @param {string} [tenantId]
1163
+ * @param {string} [uid]
1139
1164
  * @param {*} [options] Override http request option.
1140
1165
  * @throws {RequiredError}
1141
1166
  */
1142
- membersV2Index: (orderBy, orderDirection, pageNumber, pageSize, floorId, tenantId, options = {}) => __awaiter(this, void 0, void 0, function* () {
1167
+ membersV2Index: (orderBy, orderDirection, pageNumber, pageSize, floorId, tenantId, uid, options = {}) => __awaiter(this, void 0, void 0, function* () {
1143
1168
  const localVarPath = `/v2/members`;
1144
1169
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
1145
1170
  const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
@@ -1168,6 +1193,9 @@ const DefaultApiAxiosParamCreator = function (configuration) {
1168
1193
  if (tenantId !== undefined) {
1169
1194
  localVarQueryParameter['tenant_id'] = tenantId;
1170
1195
  }
1196
+ if (uid !== undefined) {
1197
+ localVarQueryParameter['uid'] = uid;
1198
+ }
1171
1199
  (0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
1172
1200
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
1173
1201
  localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
@@ -1745,15 +1773,13 @@ const DefaultApiAxiosParamCreator = function (configuration) {
1745
1773
  }),
1746
1774
  /**
1747
1775
  *
1748
- * @param {string} xAccountId
1749
1776
  * @param {ParkingTicketsIndexTypeEnum} type
1750
1777
  * @param {string} id
1778
+ * @param {string} [xAccountId]
1751
1779
  * @param {*} [options] Override http request option.
1752
1780
  * @throws {RequiredError}
1753
1781
  */
1754
- parkingTicketsIndex: (xAccountId, type, id, options = {}) => __awaiter(this, void 0, void 0, function* () {
1755
- // verify required parameter 'xAccountId' is not null or undefined
1756
- (0, common_1.assertParamExists)('parkingTicketsIndex', 'xAccountId', xAccountId);
1782
+ parkingTicketsIndex: (type, id, xAccountId, options = {}) => __awaiter(this, void 0, void 0, function* () {
1757
1783
  // verify required parameter 'type' is not null or undefined
1758
1784
  (0, common_1.assertParamExists)('parkingTicketsIndex', 'type', type);
1759
1785
  // verify required parameter 'id' is not null or undefined
@@ -2704,6 +2730,17 @@ const DefaultApiFp = function (configuration) {
2704
2730
  return (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration);
2705
2731
  });
2706
2732
  },
2733
+ /**
2734
+ *
2735
+ * @param {*} [options] Override http request option.
2736
+ * @throws {RequiredError}
2737
+ */
2738
+ health(options) {
2739
+ return __awaiter(this, void 0, void 0, function* () {
2740
+ const localVarAxiosArgs = yield localVarAxiosParamCreator.health(options);
2741
+ return (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration);
2742
+ });
2743
+ },
2707
2744
  /**
2708
2745
  *
2709
2746
  * @param {Array<HolidayRequestBody>} holidayRequestBody
@@ -2901,12 +2938,13 @@ const DefaultApiFp = function (configuration) {
2901
2938
  * @param {number} [pageSize]
2902
2939
  * @param {string} [floorId]
2903
2940
  * @param {string} [tenantId]
2941
+ * @param {string} [uid]
2904
2942
  * @param {*} [options] Override http request option.
2905
2943
  * @throws {RequiredError}
2906
2944
  */
2907
- membersV2Index(orderBy, orderDirection, pageNumber, pageSize, floorId, tenantId, options) {
2945
+ membersV2Index(orderBy, orderDirection, pageNumber, pageSize, floorId, tenantId, uid, options) {
2908
2946
  return __awaiter(this, void 0, void 0, function* () {
2909
- const localVarAxiosArgs = yield localVarAxiosParamCreator.membersV2Index(orderBy, orderDirection, pageNumber, pageSize, floorId, tenantId, options);
2947
+ const localVarAxiosArgs = yield localVarAxiosParamCreator.membersV2Index(orderBy, orderDirection, pageNumber, pageSize, floorId, tenantId, uid, options);
2910
2948
  return (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration);
2911
2949
  });
2912
2950
  },
@@ -3128,15 +3166,15 @@ const DefaultApiFp = function (configuration) {
3128
3166
  },
3129
3167
  /**
3130
3168
  *
3131
- * @param {string} xAccountId
3132
3169
  * @param {ParkingTicketsIndexTypeEnum} type
3133
3170
  * @param {string} id
3171
+ * @param {string} [xAccountId]
3134
3172
  * @param {*} [options] Override http request option.
3135
3173
  * @throws {RequiredError}
3136
3174
  */
3137
- parkingTicketsIndex(xAccountId, type, id, options) {
3175
+ parkingTicketsIndex(type, id, xAccountId, options) {
3138
3176
  return __awaiter(this, void 0, void 0, function* () {
3139
- const localVarAxiosArgs = yield localVarAxiosParamCreator.parkingTicketsIndex(xAccountId, type, id, options);
3177
+ const localVarAxiosArgs = yield localVarAxiosParamCreator.parkingTicketsIndex(type, id, xAccountId, options);
3140
3178
  return (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration);
3141
3179
  });
3142
3180
  },
@@ -3593,6 +3631,14 @@ const DefaultApiFactory = function (configuration, basePath, axios) {
3593
3631
  floorsIndex(options) {
3594
3632
  return localVarFp.floorsIndex(options).then((request) => request(axios, basePath));
3595
3633
  },
3634
+ /**
3635
+ *
3636
+ * @param {*} [options] Override http request option.
3637
+ * @throws {RequiredError}
3638
+ */
3639
+ health(options) {
3640
+ return localVarFp.health(options).then((request) => request(axios, basePath));
3641
+ },
3596
3642
  /**
3597
3643
  *
3598
3644
  * @param {Array<HolidayRequestBody>} holidayRequestBody
@@ -3745,11 +3791,12 @@ const DefaultApiFactory = function (configuration, basePath, axios) {
3745
3791
  * @param {number} [pageSize]
3746
3792
  * @param {string} [floorId]
3747
3793
  * @param {string} [tenantId]
3794
+ * @param {string} [uid]
3748
3795
  * @param {*} [options] Override http request option.
3749
3796
  * @throws {RequiredError}
3750
3797
  */
3751
- membersV2Index(orderBy, orderDirection, pageNumber, pageSize, floorId, tenantId, options) {
3752
- return localVarFp.membersV2Index(orderBy, orderDirection, pageNumber, pageSize, floorId, tenantId, options).then((request) => request(axios, basePath));
3798
+ membersV2Index(orderBy, orderDirection, pageNumber, pageSize, floorId, tenantId, uid, options) {
3799
+ return localVarFp.membersV2Index(orderBy, orderDirection, pageNumber, pageSize, floorId, tenantId, uid, options).then((request) => request(axios, basePath));
3753
3800
  },
3754
3801
  /**
3755
3802
  *
@@ -3921,14 +3968,14 @@ const DefaultApiFactory = function (configuration, basePath, axios) {
3921
3968
  },
3922
3969
  /**
3923
3970
  *
3924
- * @param {string} xAccountId
3925
3971
  * @param {ParkingTicketsIndexTypeEnum} type
3926
3972
  * @param {string} id
3973
+ * @param {string} [xAccountId]
3927
3974
  * @param {*} [options] Override http request option.
3928
3975
  * @throws {RequiredError}
3929
3976
  */
3930
- parkingTicketsIndex(xAccountId, type, id, options) {
3931
- return localVarFp.parkingTicketsIndex(xAccountId, type, id, options).then((request) => request(axios, basePath));
3977
+ parkingTicketsIndex(type, id, xAccountId, options) {
3978
+ return localVarFp.parkingTicketsIndex(type, id, xAccountId, options).then((request) => request(axios, basePath));
3932
3979
  },
3933
3980
  /**
3934
3981
  *
@@ -4325,6 +4372,15 @@ class DefaultApi extends base_1.BaseAPI {
4325
4372
  floorsIndex(options) {
4326
4373
  return (0, exports.DefaultApiFp)(this.configuration).floorsIndex(options).then((request) => request(this.axios, this.basePath));
4327
4374
  }
4375
+ /**
4376
+ *
4377
+ * @param {*} [options] Override http request option.
4378
+ * @throws {RequiredError}
4379
+ * @memberof DefaultApi
4380
+ */
4381
+ health(options) {
4382
+ return (0, exports.DefaultApiFp)(this.configuration).health(options).then((request) => request(this.axios, this.basePath));
4383
+ }
4328
4384
  /**
4329
4385
  *
4330
4386
  * @param {Array<HolidayRequestBody>} holidayRequestBody
@@ -4492,12 +4548,13 @@ class DefaultApi extends base_1.BaseAPI {
4492
4548
  * @param {number} [pageSize]
4493
4549
  * @param {string} [floorId]
4494
4550
  * @param {string} [tenantId]
4551
+ * @param {string} [uid]
4495
4552
  * @param {*} [options] Override http request option.
4496
4553
  * @throws {RequiredError}
4497
4554
  * @memberof DefaultApi
4498
4555
  */
4499
- membersV2Index(orderBy, orderDirection, pageNumber, pageSize, floorId, tenantId, options) {
4500
- return (0, exports.DefaultApiFp)(this.configuration).membersV2Index(orderBy, orderDirection, pageNumber, pageSize, floorId, tenantId, options).then((request) => request(this.axios, this.basePath));
4556
+ membersV2Index(orderBy, orderDirection, pageNumber, pageSize, floorId, tenantId, uid, options) {
4557
+ return (0, exports.DefaultApiFp)(this.configuration).membersV2Index(orderBy, orderDirection, pageNumber, pageSize, floorId, tenantId, uid, options).then((request) => request(this.axios, this.basePath));
4501
4558
  }
4502
4559
  /**
4503
4560
  *
@@ -4685,15 +4742,15 @@ class DefaultApi extends base_1.BaseAPI {
4685
4742
  }
4686
4743
  /**
4687
4744
  *
4688
- * @param {string} xAccountId
4689
4745
  * @param {ParkingTicketsIndexTypeEnum} type
4690
4746
  * @param {string} id
4747
+ * @param {string} [xAccountId]
4691
4748
  * @param {*} [options] Override http request option.
4692
4749
  * @throws {RequiredError}
4693
4750
  * @memberof DefaultApi
4694
4751
  */
4695
- parkingTicketsIndex(xAccountId, type, id, options) {
4696
- return (0, exports.DefaultApiFp)(this.configuration).parkingTicketsIndex(xAccountId, type, id, options).then((request) => request(this.axios, this.basePath));
4752
+ parkingTicketsIndex(type, id, xAccountId, options) {
4753
+ return (0, exports.DefaultApiFp)(this.configuration).parkingTicketsIndex(type, id, xAccountId, options).then((request) => request(this.axios, this.basePath));
4697
4754
  }
4698
4755
  /**
4699
4756
  *
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ob-bms-sdk",
3
- "version": "0.0.119",
3
+ "version": "0.0.120",
4
4
  "description": "API interfaces for OB BMS",
5
5
  "main": "./dist/index.js",
6
6
  "license": "MIT"