ob-parking-sdk 0.0.71 → 0.0.72

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
@@ -1797,12 +1797,6 @@ export interface GetRegisteredVehiclesIndexQuery {
1797
1797
  * @memberof GetRegisteredVehiclesIndexQuery
1798
1798
  */
1799
1799
  'is_vip'?: boolean;
1800
- /**
1801
- *
1802
- * @type {boolean}
1803
- * @memberof GetRegisteredVehiclesIndexQuery
1804
- */
1805
- 'is_history'?: boolean;
1806
1800
  /**
1807
1801
  *
1808
1802
  * @type {boolean}
@@ -5237,12 +5231,11 @@ export const DefaultApiAxiosParamCreator = function (configuration?: Configurati
5237
5231
  * @param {string} [startDate]
5238
5232
  * @param {string} [endDate]
5239
5233
  * @param {boolean} [isVip]
5240
- * @param {boolean} [isHistory]
5241
5234
  * @param {boolean} [isExport]
5242
5235
  * @param {*} [options] Override http request option.
5243
5236
  * @throws {RequiredError}
5244
5237
  */
5245
- registeredVehiclesHistoryIndex: async (orderBy?: string, orderDirection?: string, pageNumber?: number, pageSize?: number, filterBy?: string, filterKey?: string, startDate?: string, endDate?: string, isVip?: boolean, isHistory?: boolean, isExport?: boolean, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
5238
+ registeredVehiclesHistoryIndex: async (orderBy?: string, orderDirection?: string, pageNumber?: number, pageSize?: number, filterBy?: string, filterKey?: string, startDate?: string, endDate?: string, isVip?: boolean, isExport?: boolean, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
5246
5239
  const localVarPath = `/registered-vehicles/history`;
5247
5240
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
5248
5241
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
@@ -5291,10 +5284,6 @@ export const DefaultApiAxiosParamCreator = function (configuration?: Configurati
5291
5284
  localVarQueryParameter['is_vip'] = isVip;
5292
5285
  }
5293
5286
 
5294
- if (isHistory !== undefined) {
5295
- localVarQueryParameter['is_history'] = isHistory;
5296
- }
5297
-
5298
5287
  if (isExport !== undefined) {
5299
5288
  localVarQueryParameter['is_export'] = isExport;
5300
5289
  }
@@ -5321,12 +5310,11 @@ export const DefaultApiAxiosParamCreator = function (configuration?: Configurati
5321
5310
  * @param {string} [startDate]
5322
5311
  * @param {string} [endDate]
5323
5312
  * @param {boolean} [isVip]
5324
- * @param {boolean} [isHistory]
5325
5313
  * @param {boolean} [isExport]
5326
5314
  * @param {*} [options] Override http request option.
5327
5315
  * @throws {RequiredError}
5328
5316
  */
5329
- registeredVehiclesIndex: async (orderBy?: string, orderDirection?: string, pageNumber?: number, pageSize?: number, filterBy?: string, filterKey?: string, startDate?: string, endDate?: string, isVip?: boolean, isHistory?: boolean, isExport?: boolean, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
5317
+ registeredVehiclesIndex: async (orderBy?: string, orderDirection?: string, pageNumber?: number, pageSize?: number, filterBy?: string, filterKey?: string, startDate?: string, endDate?: string, isVip?: boolean, isExport?: boolean, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
5330
5318
  const localVarPath = `/registered-vehicles`;
5331
5319
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
5332
5320
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
@@ -5375,10 +5363,6 @@ export const DefaultApiAxiosParamCreator = function (configuration?: Configurati
5375
5363
  localVarQueryParameter['is_vip'] = isVip;
5376
5364
  }
5377
5365
 
5378
- if (isHistory !== undefined) {
5379
- localVarQueryParameter['is_history'] = isHistory;
5380
- }
5381
-
5382
5366
  if (isExport !== undefined) {
5383
5367
  localVarQueryParameter['is_export'] = isExport;
5384
5368
  }
@@ -6180,13 +6164,12 @@ export const DefaultApiFp = function(configuration?: Configuration) {
6180
6164
  * @param {string} [startDate]
6181
6165
  * @param {string} [endDate]
6182
6166
  * @param {boolean} [isVip]
6183
- * @param {boolean} [isHistory]
6184
6167
  * @param {boolean} [isExport]
6185
6168
  * @param {*} [options] Override http request option.
6186
6169
  * @throws {RequiredError}
6187
6170
  */
6188
- async registeredVehiclesHistoryIndex(orderBy?: string, orderDirection?: string, pageNumber?: number, pageSize?: number, filterBy?: string, filterKey?: string, startDate?: string, endDate?: string, isVip?: boolean, isHistory?: boolean, isExport?: boolean, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ResponseDataRegisteredVehicleIndexResponseArray>> {
6189
- const localVarAxiosArgs = await localVarAxiosParamCreator.registeredVehiclesHistoryIndex(orderBy, orderDirection, pageNumber, pageSize, filterBy, filterKey, startDate, endDate, isVip, isHistory, isExport, options);
6171
+ async registeredVehiclesHistoryIndex(orderBy?: string, orderDirection?: string, pageNumber?: number, pageSize?: number, filterBy?: string, filterKey?: string, startDate?: string, endDate?: string, isVip?: boolean, isExport?: boolean, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ResponseDataRegisteredVehicleIndexResponseArray>> {
6172
+ const localVarAxiosArgs = await localVarAxiosParamCreator.registeredVehiclesHistoryIndex(orderBy, orderDirection, pageNumber, pageSize, filterBy, filterKey, startDate, endDate, isVip, isExport, options);
6190
6173
  return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
6191
6174
  },
6192
6175
  /**
@@ -6200,13 +6183,12 @@ export const DefaultApiFp = function(configuration?: Configuration) {
6200
6183
  * @param {string} [startDate]
6201
6184
  * @param {string} [endDate]
6202
6185
  * @param {boolean} [isVip]
6203
- * @param {boolean} [isHistory]
6204
6186
  * @param {boolean} [isExport]
6205
6187
  * @param {*} [options] Override http request option.
6206
6188
  * @throws {RequiredError}
6207
6189
  */
6208
- async registeredVehiclesIndex(orderBy?: string, orderDirection?: string, pageNumber?: number, pageSize?: number, filterBy?: string, filterKey?: string, startDate?: string, endDate?: string, isVip?: boolean, isHistory?: boolean, isExport?: boolean, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ResponseDataRegisteredVehicleIndexResponseArray>> {
6209
- const localVarAxiosArgs = await localVarAxiosParamCreator.registeredVehiclesIndex(orderBy, orderDirection, pageNumber, pageSize, filterBy, filterKey, startDate, endDate, isVip, isHistory, isExport, options);
6190
+ async registeredVehiclesIndex(orderBy?: string, orderDirection?: string, pageNumber?: number, pageSize?: number, filterBy?: string, filterKey?: string, startDate?: string, endDate?: string, isVip?: boolean, isExport?: boolean, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ResponseDataRegisteredVehicleIndexResponseArray>> {
6191
+ const localVarAxiosArgs = await localVarAxiosParamCreator.registeredVehiclesIndex(orderBy, orderDirection, pageNumber, pageSize, filterBy, filterKey, startDate, endDate, isVip, isExport, options);
6210
6192
  return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
6211
6193
  },
6212
6194
  /**
@@ -6730,13 +6712,12 @@ export const DefaultApiFactory = function (configuration?: Configuration, basePa
6730
6712
  * @param {string} [startDate]
6731
6713
  * @param {string} [endDate]
6732
6714
  * @param {boolean} [isVip]
6733
- * @param {boolean} [isHistory]
6734
6715
  * @param {boolean} [isExport]
6735
6716
  * @param {*} [options] Override http request option.
6736
6717
  * @throws {RequiredError}
6737
6718
  */
6738
- registeredVehiclesHistoryIndex(orderBy?: string, orderDirection?: string, pageNumber?: number, pageSize?: number, filterBy?: string, filterKey?: string, startDate?: string, endDate?: string, isVip?: boolean, isHistory?: boolean, isExport?: boolean, options?: any): AxiosPromise<ResponseDataRegisteredVehicleIndexResponseArray> {
6739
- return localVarFp.registeredVehiclesHistoryIndex(orderBy, orderDirection, pageNumber, pageSize, filterBy, filterKey, startDate, endDate, isVip, isHistory, isExport, options).then((request) => request(axios, basePath));
6719
+ registeredVehiclesHistoryIndex(orderBy?: string, orderDirection?: string, pageNumber?: number, pageSize?: number, filterBy?: string, filterKey?: string, startDate?: string, endDate?: string, isVip?: boolean, isExport?: boolean, options?: any): AxiosPromise<ResponseDataRegisteredVehicleIndexResponseArray> {
6720
+ return localVarFp.registeredVehiclesHistoryIndex(orderBy, orderDirection, pageNumber, pageSize, filterBy, filterKey, startDate, endDate, isVip, isExport, options).then((request) => request(axios, basePath));
6740
6721
  },
6741
6722
  /**
6742
6723
  *
@@ -6749,13 +6730,12 @@ export const DefaultApiFactory = function (configuration?: Configuration, basePa
6749
6730
  * @param {string} [startDate]
6750
6731
  * @param {string} [endDate]
6751
6732
  * @param {boolean} [isVip]
6752
- * @param {boolean} [isHistory]
6753
6733
  * @param {boolean} [isExport]
6754
6734
  * @param {*} [options] Override http request option.
6755
6735
  * @throws {RequiredError}
6756
6736
  */
6757
- registeredVehiclesIndex(orderBy?: string, orderDirection?: string, pageNumber?: number, pageSize?: number, filterBy?: string, filterKey?: string, startDate?: string, endDate?: string, isVip?: boolean, isHistory?: boolean, isExport?: boolean, options?: any): AxiosPromise<ResponseDataRegisteredVehicleIndexResponseArray> {
6758
- return localVarFp.registeredVehiclesIndex(orderBy, orderDirection, pageNumber, pageSize, filterBy, filterKey, startDate, endDate, isVip, isHistory, isExport, options).then((request) => request(axios, basePath));
6737
+ registeredVehiclesIndex(orderBy?: string, orderDirection?: string, pageNumber?: number, pageSize?: number, filterBy?: string, filterKey?: string, startDate?: string, endDate?: string, isVip?: boolean, isExport?: boolean, options?: any): AxiosPromise<ResponseDataRegisteredVehicleIndexResponseArray> {
6738
+ return localVarFp.registeredVehiclesIndex(orderBy, orderDirection, pageNumber, pageSize, filterBy, filterKey, startDate, endDate, isVip, isExport, options).then((request) => request(axios, basePath));
6759
6739
  },
6760
6740
  /**
6761
6741
  *
@@ -7345,14 +7325,13 @@ export class DefaultApi extends BaseAPI {
7345
7325
  * @param {string} [startDate]
7346
7326
  * @param {string} [endDate]
7347
7327
  * @param {boolean} [isVip]
7348
- * @param {boolean} [isHistory]
7349
7328
  * @param {boolean} [isExport]
7350
7329
  * @param {*} [options] Override http request option.
7351
7330
  * @throws {RequiredError}
7352
7331
  * @memberof DefaultApi
7353
7332
  */
7354
- public registeredVehiclesHistoryIndex(orderBy?: string, orderDirection?: string, pageNumber?: number, pageSize?: number, filterBy?: string, filterKey?: string, startDate?: string, endDate?: string, isVip?: boolean, isHistory?: boolean, isExport?: boolean, options?: AxiosRequestConfig) {
7355
- return DefaultApiFp(this.configuration).registeredVehiclesHistoryIndex(orderBy, orderDirection, pageNumber, pageSize, filterBy, filterKey, startDate, endDate, isVip, isHistory, isExport, options).then((request) => request(this.axios, this.basePath));
7333
+ public registeredVehiclesHistoryIndex(orderBy?: string, orderDirection?: string, pageNumber?: number, pageSize?: number, filterBy?: string, filterKey?: string, startDate?: string, endDate?: string, isVip?: boolean, isExport?: boolean, options?: AxiosRequestConfig) {
7334
+ return DefaultApiFp(this.configuration).registeredVehiclesHistoryIndex(orderBy, orderDirection, pageNumber, pageSize, filterBy, filterKey, startDate, endDate, isVip, isExport, options).then((request) => request(this.axios, this.basePath));
7356
7335
  }
7357
7336
 
7358
7337
  /**
@@ -7366,14 +7345,13 @@ export class DefaultApi extends BaseAPI {
7366
7345
  * @param {string} [startDate]
7367
7346
  * @param {string} [endDate]
7368
7347
  * @param {boolean} [isVip]
7369
- * @param {boolean} [isHistory]
7370
7348
  * @param {boolean} [isExport]
7371
7349
  * @param {*} [options] Override http request option.
7372
7350
  * @throws {RequiredError}
7373
7351
  * @memberof DefaultApi
7374
7352
  */
7375
- public registeredVehiclesIndex(orderBy?: string, orderDirection?: string, pageNumber?: number, pageSize?: number, filterBy?: string, filterKey?: string, startDate?: string, endDate?: string, isVip?: boolean, isHistory?: boolean, isExport?: boolean, options?: AxiosRequestConfig) {
7376
- return DefaultApiFp(this.configuration).registeredVehiclesIndex(orderBy, orderDirection, pageNumber, pageSize, filterBy, filterKey, startDate, endDate, isVip, isHistory, isExport, options).then((request) => request(this.axios, this.basePath));
7353
+ public registeredVehiclesIndex(orderBy?: string, orderDirection?: string, pageNumber?: number, pageSize?: number, filterBy?: string, filterKey?: string, startDate?: string, endDate?: string, isVip?: boolean, isExport?: boolean, options?: AxiosRequestConfig) {
7354
+ return DefaultApiFp(this.configuration).registeredVehiclesIndex(orderBy, orderDirection, pageNumber, pageSize, filterBy, filterKey, startDate, endDate, isVip, isExport, options).then((request) => request(this.axios, this.basePath));
7377
7355
  }
7378
7356
 
7379
7357
  /**
package/dist/api/api.d.ts CHANGED
@@ -1758,12 +1758,6 @@ export interface GetRegisteredVehiclesIndexQuery {
1758
1758
  * @memberof GetRegisteredVehiclesIndexQuery
1759
1759
  */
1760
1760
  'is_vip'?: boolean;
1761
- /**
1762
- *
1763
- * @type {boolean}
1764
- * @memberof GetRegisteredVehiclesIndexQuery
1765
- */
1766
- 'is_history'?: boolean;
1767
1761
  /**
1768
1762
  *
1769
1763
  * @type {boolean}
@@ -3864,12 +3858,11 @@ export declare const DefaultApiAxiosParamCreator: (configuration?: Configuration
3864
3858
  * @param {string} [startDate]
3865
3859
  * @param {string} [endDate]
3866
3860
  * @param {boolean} [isVip]
3867
- * @param {boolean} [isHistory]
3868
3861
  * @param {boolean} [isExport]
3869
3862
  * @param {*} [options] Override http request option.
3870
3863
  * @throws {RequiredError}
3871
3864
  */
3872
- registeredVehiclesHistoryIndex: (orderBy?: string, orderDirection?: string, pageNumber?: number, pageSize?: number, filterBy?: string, filterKey?: string, startDate?: string, endDate?: string, isVip?: boolean, isHistory?: boolean, isExport?: boolean, options?: AxiosRequestConfig) => Promise<RequestArgs>;
3865
+ registeredVehiclesHistoryIndex: (orderBy?: string, orderDirection?: string, pageNumber?: number, pageSize?: number, filterBy?: string, filterKey?: string, startDate?: string, endDate?: string, isVip?: boolean, isExport?: boolean, options?: AxiosRequestConfig) => Promise<RequestArgs>;
3873
3866
  /**
3874
3867
  *
3875
3868
  * @param {string} [orderBy]
@@ -3881,12 +3874,11 @@ export declare const DefaultApiAxiosParamCreator: (configuration?: Configuration
3881
3874
  * @param {string} [startDate]
3882
3875
  * @param {string} [endDate]
3883
3876
  * @param {boolean} [isVip]
3884
- * @param {boolean} [isHistory]
3885
3877
  * @param {boolean} [isExport]
3886
3878
  * @param {*} [options] Override http request option.
3887
3879
  * @throws {RequiredError}
3888
3880
  */
3889
- registeredVehiclesIndex: (orderBy?: string, orderDirection?: string, pageNumber?: number, pageSize?: number, filterBy?: string, filterKey?: string, startDate?: string, endDate?: string, isVip?: boolean, isHistory?: boolean, isExport?: boolean, options?: AxiosRequestConfig) => Promise<RequestArgs>;
3881
+ registeredVehiclesIndex: (orderBy?: string, orderDirection?: string, pageNumber?: number, pageSize?: number, filterBy?: string, filterKey?: string, startDate?: string, endDate?: string, isVip?: boolean, isExport?: boolean, options?: AxiosRequestConfig) => Promise<RequestArgs>;
3890
3882
  /**
3891
3883
  *
3892
3884
  * @param {string} plateNo
@@ -4301,12 +4293,11 @@ export declare const DefaultApiFp: (configuration?: Configuration) => {
4301
4293
  * @param {string} [startDate]
4302
4294
  * @param {string} [endDate]
4303
4295
  * @param {boolean} [isVip]
4304
- * @param {boolean} [isHistory]
4305
4296
  * @param {boolean} [isExport]
4306
4297
  * @param {*} [options] Override http request option.
4307
4298
  * @throws {RequiredError}
4308
4299
  */
4309
- registeredVehiclesHistoryIndex(orderBy?: string, orderDirection?: string, pageNumber?: number, pageSize?: number, filterBy?: string, filterKey?: string, startDate?: string, endDate?: string, isVip?: boolean, isHistory?: boolean, isExport?: boolean, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ResponseDataRegisteredVehicleIndexResponseArray>>;
4300
+ registeredVehiclesHistoryIndex(orderBy?: string, orderDirection?: string, pageNumber?: number, pageSize?: number, filterBy?: string, filterKey?: string, startDate?: string, endDate?: string, isVip?: boolean, isExport?: boolean, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ResponseDataRegisteredVehicleIndexResponseArray>>;
4310
4301
  /**
4311
4302
  *
4312
4303
  * @param {string} [orderBy]
@@ -4318,12 +4309,11 @@ export declare const DefaultApiFp: (configuration?: Configuration) => {
4318
4309
  * @param {string} [startDate]
4319
4310
  * @param {string} [endDate]
4320
4311
  * @param {boolean} [isVip]
4321
- * @param {boolean} [isHistory]
4322
4312
  * @param {boolean} [isExport]
4323
4313
  * @param {*} [options] Override http request option.
4324
4314
  * @throws {RequiredError}
4325
4315
  */
4326
- registeredVehiclesIndex(orderBy?: string, orderDirection?: string, pageNumber?: number, pageSize?: number, filterBy?: string, filterKey?: string, startDate?: string, endDate?: string, isVip?: boolean, isHistory?: boolean, isExport?: boolean, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ResponseDataRegisteredVehicleIndexResponseArray>>;
4316
+ registeredVehiclesIndex(orderBy?: string, orderDirection?: string, pageNumber?: number, pageSize?: number, filterBy?: string, filterKey?: string, startDate?: string, endDate?: string, isVip?: boolean, isExport?: boolean, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ResponseDataRegisteredVehicleIndexResponseArray>>;
4327
4317
  /**
4328
4318
  *
4329
4319
  * @param {string} plateNo
@@ -4738,12 +4728,11 @@ export declare const DefaultApiFactory: (configuration?: Configuration, basePath
4738
4728
  * @param {string} [startDate]
4739
4729
  * @param {string} [endDate]
4740
4730
  * @param {boolean} [isVip]
4741
- * @param {boolean} [isHistory]
4742
4731
  * @param {boolean} [isExport]
4743
4732
  * @param {*} [options] Override http request option.
4744
4733
  * @throws {RequiredError}
4745
4734
  */
4746
- registeredVehiclesHistoryIndex(orderBy?: string, orderDirection?: string, pageNumber?: number, pageSize?: number, filterBy?: string, filterKey?: string, startDate?: string, endDate?: string, isVip?: boolean, isHistory?: boolean, isExport?: boolean, options?: any): AxiosPromise<ResponseDataRegisteredVehicleIndexResponseArray>;
4735
+ registeredVehiclesHistoryIndex(orderBy?: string, orderDirection?: string, pageNumber?: number, pageSize?: number, filterBy?: string, filterKey?: string, startDate?: string, endDate?: string, isVip?: boolean, isExport?: boolean, options?: any): AxiosPromise<ResponseDataRegisteredVehicleIndexResponseArray>;
4747
4736
  /**
4748
4737
  *
4749
4738
  * @param {string} [orderBy]
@@ -4755,12 +4744,11 @@ export declare const DefaultApiFactory: (configuration?: Configuration, basePath
4755
4744
  * @param {string} [startDate]
4756
4745
  * @param {string} [endDate]
4757
4746
  * @param {boolean} [isVip]
4758
- * @param {boolean} [isHistory]
4759
4747
  * @param {boolean} [isExport]
4760
4748
  * @param {*} [options] Override http request option.
4761
4749
  * @throws {RequiredError}
4762
4750
  */
4763
- registeredVehiclesIndex(orderBy?: string, orderDirection?: string, pageNumber?: number, pageSize?: number, filterBy?: string, filterKey?: string, startDate?: string, endDate?: string, isVip?: boolean, isHistory?: boolean, isExport?: boolean, options?: any): AxiosPromise<ResponseDataRegisteredVehicleIndexResponseArray>;
4751
+ registeredVehiclesIndex(orderBy?: string, orderDirection?: string, pageNumber?: number, pageSize?: number, filterBy?: string, filterKey?: string, startDate?: string, endDate?: string, isVip?: boolean, isExport?: boolean, options?: any): AxiosPromise<ResponseDataRegisteredVehicleIndexResponseArray>;
4764
4752
  /**
4765
4753
  *
4766
4754
  * @param {string} plateNo
@@ -5215,13 +5203,12 @@ export declare class DefaultApi extends BaseAPI {
5215
5203
  * @param {string} [startDate]
5216
5204
  * @param {string} [endDate]
5217
5205
  * @param {boolean} [isVip]
5218
- * @param {boolean} [isHistory]
5219
5206
  * @param {boolean} [isExport]
5220
5207
  * @param {*} [options] Override http request option.
5221
5208
  * @throws {RequiredError}
5222
5209
  * @memberof DefaultApi
5223
5210
  */
5224
- registeredVehiclesHistoryIndex(orderBy?: string, orderDirection?: string, pageNumber?: number, pageSize?: number, filterBy?: string, filterKey?: string, startDate?: string, endDate?: string, isVip?: boolean, isHistory?: boolean, isExport?: boolean, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ResponseDataRegisteredVehicleIndexResponseArray, any>>;
5211
+ registeredVehiclesHistoryIndex(orderBy?: string, orderDirection?: string, pageNumber?: number, pageSize?: number, filterBy?: string, filterKey?: string, startDate?: string, endDate?: string, isVip?: boolean, isExport?: boolean, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ResponseDataRegisteredVehicleIndexResponseArray, any>>;
5225
5212
  /**
5226
5213
  *
5227
5214
  * @param {string} [orderBy]
@@ -5233,13 +5220,12 @@ export declare class DefaultApi extends BaseAPI {
5233
5220
  * @param {string} [startDate]
5234
5221
  * @param {string} [endDate]
5235
5222
  * @param {boolean} [isVip]
5236
- * @param {boolean} [isHistory]
5237
5223
  * @param {boolean} [isExport]
5238
5224
  * @param {*} [options] Override http request option.
5239
5225
  * @throws {RequiredError}
5240
5226
  * @memberof DefaultApi
5241
5227
  */
5242
- registeredVehiclesIndex(orderBy?: string, orderDirection?: string, pageNumber?: number, pageSize?: number, filterBy?: string, filterKey?: string, startDate?: string, endDate?: string, isVip?: boolean, isHistory?: boolean, isExport?: boolean, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ResponseDataRegisteredVehicleIndexResponseArray, any>>;
5228
+ registeredVehiclesIndex(orderBy?: string, orderDirection?: string, pageNumber?: number, pageSize?: number, filterBy?: string, filterKey?: string, startDate?: string, endDate?: string, isVip?: boolean, isExport?: boolean, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ResponseDataRegisteredVehicleIndexResponseArray, any>>;
5243
5229
  /**
5244
5230
  *
5245
5231
  * @param {string} plateNo
package/dist/api/api.js CHANGED
@@ -1481,12 +1481,11 @@ const DefaultApiAxiosParamCreator = function (configuration) {
1481
1481
  * @param {string} [startDate]
1482
1482
  * @param {string} [endDate]
1483
1483
  * @param {boolean} [isVip]
1484
- * @param {boolean} [isHistory]
1485
1484
  * @param {boolean} [isExport]
1486
1485
  * @param {*} [options] Override http request option.
1487
1486
  * @throws {RequiredError}
1488
1487
  */
1489
- registeredVehiclesHistoryIndex: (orderBy, orderDirection, pageNumber, pageSize, filterBy, filterKey, startDate, endDate, isVip, isHistory, isExport, options = {}) => __awaiter(this, void 0, void 0, function* () {
1488
+ registeredVehiclesHistoryIndex: (orderBy, orderDirection, pageNumber, pageSize, filterBy, filterKey, startDate, endDate, isVip, isExport, options = {}) => __awaiter(this, void 0, void 0, function* () {
1490
1489
  const localVarPath = `/registered-vehicles/history`;
1491
1490
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
1492
1491
  const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
@@ -1524,9 +1523,6 @@ const DefaultApiAxiosParamCreator = function (configuration) {
1524
1523
  if (isVip !== undefined) {
1525
1524
  localVarQueryParameter['is_vip'] = isVip;
1526
1525
  }
1527
- if (isHistory !== undefined) {
1528
- localVarQueryParameter['is_history'] = isHistory;
1529
- }
1530
1526
  if (isExport !== undefined) {
1531
1527
  localVarQueryParameter['is_export'] = isExport;
1532
1528
  }
@@ -1549,12 +1545,11 @@ const DefaultApiAxiosParamCreator = function (configuration) {
1549
1545
  * @param {string} [startDate]
1550
1546
  * @param {string} [endDate]
1551
1547
  * @param {boolean} [isVip]
1552
- * @param {boolean} [isHistory]
1553
1548
  * @param {boolean} [isExport]
1554
1549
  * @param {*} [options] Override http request option.
1555
1550
  * @throws {RequiredError}
1556
1551
  */
1557
- registeredVehiclesIndex: (orderBy, orderDirection, pageNumber, pageSize, filterBy, filterKey, startDate, endDate, isVip, isHistory, isExport, options = {}) => __awaiter(this, void 0, void 0, function* () {
1552
+ registeredVehiclesIndex: (orderBy, orderDirection, pageNumber, pageSize, filterBy, filterKey, startDate, endDate, isVip, isExport, options = {}) => __awaiter(this, void 0, void 0, function* () {
1558
1553
  const localVarPath = `/registered-vehicles`;
1559
1554
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
1560
1555
  const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
@@ -1592,9 +1587,6 @@ const DefaultApiAxiosParamCreator = function (configuration) {
1592
1587
  if (isVip !== undefined) {
1593
1588
  localVarQueryParameter['is_vip'] = isVip;
1594
1589
  }
1595
- if (isHistory !== undefined) {
1596
- localVarQueryParameter['is_history'] = isHistory;
1597
- }
1598
1590
  if (isExport !== undefined) {
1599
1591
  localVarQueryParameter['is_export'] = isExport;
1600
1592
  }
@@ -2414,14 +2406,13 @@ const DefaultApiFp = function (configuration) {
2414
2406
  * @param {string} [startDate]
2415
2407
  * @param {string} [endDate]
2416
2408
  * @param {boolean} [isVip]
2417
- * @param {boolean} [isHistory]
2418
2409
  * @param {boolean} [isExport]
2419
2410
  * @param {*} [options] Override http request option.
2420
2411
  * @throws {RequiredError}
2421
2412
  */
2422
- registeredVehiclesHistoryIndex(orderBy, orderDirection, pageNumber, pageSize, filterBy, filterKey, startDate, endDate, isVip, isHistory, isExport, options) {
2413
+ registeredVehiclesHistoryIndex(orderBy, orderDirection, pageNumber, pageSize, filterBy, filterKey, startDate, endDate, isVip, isExport, options) {
2423
2414
  return __awaiter(this, void 0, void 0, function* () {
2424
- const localVarAxiosArgs = yield localVarAxiosParamCreator.registeredVehiclesHistoryIndex(orderBy, orderDirection, pageNumber, pageSize, filterBy, filterKey, startDate, endDate, isVip, isHistory, isExport, options);
2415
+ const localVarAxiosArgs = yield localVarAxiosParamCreator.registeredVehiclesHistoryIndex(orderBy, orderDirection, pageNumber, pageSize, filterBy, filterKey, startDate, endDate, isVip, isExport, options);
2425
2416
  return (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration);
2426
2417
  });
2427
2418
  },
@@ -2436,14 +2427,13 @@ const DefaultApiFp = function (configuration) {
2436
2427
  * @param {string} [startDate]
2437
2428
  * @param {string} [endDate]
2438
2429
  * @param {boolean} [isVip]
2439
- * @param {boolean} [isHistory]
2440
2430
  * @param {boolean} [isExport]
2441
2431
  * @param {*} [options] Override http request option.
2442
2432
  * @throws {RequiredError}
2443
2433
  */
2444
- registeredVehiclesIndex(orderBy, orderDirection, pageNumber, pageSize, filterBy, filterKey, startDate, endDate, isVip, isHistory, isExport, options) {
2434
+ registeredVehiclesIndex(orderBy, orderDirection, pageNumber, pageSize, filterBy, filterKey, startDate, endDate, isVip, isExport, options) {
2445
2435
  return __awaiter(this, void 0, void 0, function* () {
2446
- const localVarAxiosArgs = yield localVarAxiosParamCreator.registeredVehiclesIndex(orderBy, orderDirection, pageNumber, pageSize, filterBy, filterKey, startDate, endDate, isVip, isHistory, isExport, options);
2436
+ const localVarAxiosArgs = yield localVarAxiosParamCreator.registeredVehiclesIndex(orderBy, orderDirection, pageNumber, pageSize, filterBy, filterKey, startDate, endDate, isVip, isExport, options);
2447
2437
  return (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration);
2448
2438
  });
2449
2439
  },
@@ -2986,13 +2976,12 @@ const DefaultApiFactory = function (configuration, basePath, axios) {
2986
2976
  * @param {string} [startDate]
2987
2977
  * @param {string} [endDate]
2988
2978
  * @param {boolean} [isVip]
2989
- * @param {boolean} [isHistory]
2990
2979
  * @param {boolean} [isExport]
2991
2980
  * @param {*} [options] Override http request option.
2992
2981
  * @throws {RequiredError}
2993
2982
  */
2994
- registeredVehiclesHistoryIndex(orderBy, orderDirection, pageNumber, pageSize, filterBy, filterKey, startDate, endDate, isVip, isHistory, isExport, options) {
2995
- return localVarFp.registeredVehiclesHistoryIndex(orderBy, orderDirection, pageNumber, pageSize, filterBy, filterKey, startDate, endDate, isVip, isHistory, isExport, options).then((request) => request(axios, basePath));
2983
+ registeredVehiclesHistoryIndex(orderBy, orderDirection, pageNumber, pageSize, filterBy, filterKey, startDate, endDate, isVip, isExport, options) {
2984
+ return localVarFp.registeredVehiclesHistoryIndex(orderBy, orderDirection, pageNumber, pageSize, filterBy, filterKey, startDate, endDate, isVip, isExport, options).then((request) => request(axios, basePath));
2996
2985
  },
2997
2986
  /**
2998
2987
  *
@@ -3005,13 +2994,12 @@ const DefaultApiFactory = function (configuration, basePath, axios) {
3005
2994
  * @param {string} [startDate]
3006
2995
  * @param {string} [endDate]
3007
2996
  * @param {boolean} [isVip]
3008
- * @param {boolean} [isHistory]
3009
2997
  * @param {boolean} [isExport]
3010
2998
  * @param {*} [options] Override http request option.
3011
2999
  * @throws {RequiredError}
3012
3000
  */
3013
- registeredVehiclesIndex(orderBy, orderDirection, pageNumber, pageSize, filterBy, filterKey, startDate, endDate, isVip, isHistory, isExport, options) {
3014
- return localVarFp.registeredVehiclesIndex(orderBy, orderDirection, pageNumber, pageSize, filterBy, filterKey, startDate, endDate, isVip, isHistory, isExport, options).then((request) => request(axios, basePath));
3001
+ registeredVehiclesIndex(orderBy, orderDirection, pageNumber, pageSize, filterBy, filterKey, startDate, endDate, isVip, isExport, options) {
3002
+ return localVarFp.registeredVehiclesIndex(orderBy, orderDirection, pageNumber, pageSize, filterBy, filterKey, startDate, endDate, isVip, isExport, options).then((request) => request(axios, basePath));
3015
3003
  },
3016
3004
  /**
3017
3005
  *
@@ -3563,14 +3551,13 @@ class DefaultApi extends base_1.BaseAPI {
3563
3551
  * @param {string} [startDate]
3564
3552
  * @param {string} [endDate]
3565
3553
  * @param {boolean} [isVip]
3566
- * @param {boolean} [isHistory]
3567
3554
  * @param {boolean} [isExport]
3568
3555
  * @param {*} [options] Override http request option.
3569
3556
  * @throws {RequiredError}
3570
3557
  * @memberof DefaultApi
3571
3558
  */
3572
- registeredVehiclesHistoryIndex(orderBy, orderDirection, pageNumber, pageSize, filterBy, filterKey, startDate, endDate, isVip, isHistory, isExport, options) {
3573
- return (0, exports.DefaultApiFp)(this.configuration).registeredVehiclesHistoryIndex(orderBy, orderDirection, pageNumber, pageSize, filterBy, filterKey, startDate, endDate, isVip, isHistory, isExport, options).then((request) => request(this.axios, this.basePath));
3559
+ registeredVehiclesHistoryIndex(orderBy, orderDirection, pageNumber, pageSize, filterBy, filterKey, startDate, endDate, isVip, isExport, options) {
3560
+ return (0, exports.DefaultApiFp)(this.configuration).registeredVehiclesHistoryIndex(orderBy, orderDirection, pageNumber, pageSize, filterBy, filterKey, startDate, endDate, isVip, isExport, options).then((request) => request(this.axios, this.basePath));
3574
3561
  }
3575
3562
  /**
3576
3563
  *
@@ -3583,14 +3570,13 @@ class DefaultApi extends base_1.BaseAPI {
3583
3570
  * @param {string} [startDate]
3584
3571
  * @param {string} [endDate]
3585
3572
  * @param {boolean} [isVip]
3586
- * @param {boolean} [isHistory]
3587
3573
  * @param {boolean} [isExport]
3588
3574
  * @param {*} [options] Override http request option.
3589
3575
  * @throws {RequiredError}
3590
3576
  * @memberof DefaultApi
3591
3577
  */
3592
- registeredVehiclesIndex(orderBy, orderDirection, pageNumber, pageSize, filterBy, filterKey, startDate, endDate, isVip, isHistory, isExport, options) {
3593
- return (0, exports.DefaultApiFp)(this.configuration).registeredVehiclesIndex(orderBy, orderDirection, pageNumber, pageSize, filterBy, filterKey, startDate, endDate, isVip, isHistory, isExport, options).then((request) => request(this.axios, this.basePath));
3578
+ registeredVehiclesIndex(orderBy, orderDirection, pageNumber, pageSize, filterBy, filterKey, startDate, endDate, isVip, isExport, options) {
3579
+ return (0, exports.DefaultApiFp)(this.configuration).registeredVehiclesIndex(orderBy, orderDirection, pageNumber, pageSize, filterBy, filterKey, startDate, endDate, isVip, isExport, options).then((request) => request(this.axios, this.basePath));
3594
3580
  }
3595
3581
  /**
3596
3582
  *
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ob-parking-sdk",
3
- "version": "0.0.71",
3
+ "version": "0.0.72",
4
4
  "description": "API interfaces for OB PARKING",
5
5
  "main": "./dist/index.js",
6
6
  "license": "MIT"