ob-parking-sdk 0.0.70 → 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
@@ -1791,18 +1791,6 @@ export interface GetRegisteredVehiclesIndexQuery {
1791
1791
  * @memberof GetRegisteredVehiclesIndexQuery
1792
1792
  */
1793
1793
  'endDate'?: string;
1794
- /**
1795
- *
1796
- * @type {string}
1797
- * @memberof GetRegisteredVehiclesIndexQuery
1798
- */
1799
- 'plate_no'?: string;
1800
- /**
1801
- *
1802
- * @type {string}
1803
- * @memberof GetRegisteredVehiclesIndexQuery
1804
- */
1805
- 'plate_province'?: string;
1806
1794
  /**
1807
1795
  *
1808
1796
  * @type {boolean}
@@ -5242,15 +5230,12 @@ export const DefaultApiAxiosParamCreator = function (configuration?: Configurati
5242
5230
  * @param {string} [filterKey]
5243
5231
  * @param {string} [startDate]
5244
5232
  * @param {string} [endDate]
5245
- * @param {string} [plateNo]
5246
- * @param {string} [plateProvince]
5247
5233
  * @param {boolean} [isVip]
5248
- * @param {string} [filterBy2]
5249
5234
  * @param {boolean} [isExport]
5250
5235
  * @param {*} [options] Override http request option.
5251
5236
  * @throws {RequiredError}
5252
5237
  */
5253
- registeredVehiclesHistoryIndex: async (orderBy?: string, orderDirection?: string, pageNumber?: number, pageSize?: number, filterBy?: string, filterKey?: string, startDate?: string, endDate?: string, plateNo?: string, plateProvince?: string, isVip?: boolean, filterBy2?: string, 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> => {
5254
5239
  const localVarPath = `/registered-vehicles/history`;
5255
5240
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
5256
5241
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
@@ -5295,22 +5280,10 @@ export const DefaultApiAxiosParamCreator = function (configuration?: Configurati
5295
5280
  localVarQueryParameter['endDate'] = endDate;
5296
5281
  }
5297
5282
 
5298
- if (plateNo !== undefined) {
5299
- localVarQueryParameter['plate_no'] = plateNo;
5300
- }
5301
-
5302
- if (plateProvince !== undefined) {
5303
- localVarQueryParameter['plate_province'] = plateProvince;
5304
- }
5305
-
5306
5283
  if (isVip !== undefined) {
5307
5284
  localVarQueryParameter['is_vip'] = isVip;
5308
5285
  }
5309
5286
 
5310
- if (filterBy2 !== undefined) {
5311
- localVarQueryParameter['filter_by'] = filterBy2;
5312
- }
5313
-
5314
5287
  if (isExport !== undefined) {
5315
5288
  localVarQueryParameter['is_export'] = isExport;
5316
5289
  }
@@ -5336,15 +5309,12 @@ export const DefaultApiAxiosParamCreator = function (configuration?: Configurati
5336
5309
  * @param {string} [filterKey]
5337
5310
  * @param {string} [startDate]
5338
5311
  * @param {string} [endDate]
5339
- * @param {string} [plateNo]
5340
- * @param {string} [plateProvince]
5341
5312
  * @param {boolean} [isVip]
5342
- * @param {string} [filterBy2]
5343
5313
  * @param {boolean} [isExport]
5344
5314
  * @param {*} [options] Override http request option.
5345
5315
  * @throws {RequiredError}
5346
5316
  */
5347
- registeredVehiclesIndex: async (orderBy?: string, orderDirection?: string, pageNumber?: number, pageSize?: number, filterBy?: string, filterKey?: string, startDate?: string, endDate?: string, plateNo?: string, plateProvince?: string, isVip?: boolean, filterBy2?: string, 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> => {
5348
5318
  const localVarPath = `/registered-vehicles`;
5349
5319
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
5350
5320
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
@@ -5389,22 +5359,10 @@ export const DefaultApiAxiosParamCreator = function (configuration?: Configurati
5389
5359
  localVarQueryParameter['endDate'] = endDate;
5390
5360
  }
5391
5361
 
5392
- if (plateNo !== undefined) {
5393
- localVarQueryParameter['plate_no'] = plateNo;
5394
- }
5395
-
5396
- if (plateProvince !== undefined) {
5397
- localVarQueryParameter['plate_province'] = plateProvince;
5398
- }
5399
-
5400
5362
  if (isVip !== undefined) {
5401
5363
  localVarQueryParameter['is_vip'] = isVip;
5402
5364
  }
5403
5365
 
5404
- if (filterBy2 !== undefined) {
5405
- localVarQueryParameter['filter_by'] = filterBy2;
5406
- }
5407
-
5408
5366
  if (isExport !== undefined) {
5409
5367
  localVarQueryParameter['is_export'] = isExport;
5410
5368
  }
@@ -6205,16 +6163,13 @@ export const DefaultApiFp = function(configuration?: Configuration) {
6205
6163
  * @param {string} [filterKey]
6206
6164
  * @param {string} [startDate]
6207
6165
  * @param {string} [endDate]
6208
- * @param {string} [plateNo]
6209
- * @param {string} [plateProvince]
6210
6166
  * @param {boolean} [isVip]
6211
- * @param {string} [filterBy2]
6212
6167
  * @param {boolean} [isExport]
6213
6168
  * @param {*} [options] Override http request option.
6214
6169
  * @throws {RequiredError}
6215
6170
  */
6216
- async registeredVehiclesHistoryIndex(orderBy?: string, orderDirection?: string, pageNumber?: number, pageSize?: number, filterBy?: string, filterKey?: string, startDate?: string, endDate?: string, plateNo?: string, plateProvince?: string, isVip?: boolean, filterBy2?: string, isExport?: boolean, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ResponseDataRegisteredVehicleIndexResponseArray>> {
6217
- const localVarAxiosArgs = await localVarAxiosParamCreator.registeredVehiclesHistoryIndex(orderBy, orderDirection, pageNumber, pageSize, filterBy, filterKey, startDate, endDate, plateNo, plateProvince, isVip, filterBy2, 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);
6218
6173
  return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
6219
6174
  },
6220
6175
  /**
@@ -6227,16 +6182,13 @@ export const DefaultApiFp = function(configuration?: Configuration) {
6227
6182
  * @param {string} [filterKey]
6228
6183
  * @param {string} [startDate]
6229
6184
  * @param {string} [endDate]
6230
- * @param {string} [plateNo]
6231
- * @param {string} [plateProvince]
6232
6185
  * @param {boolean} [isVip]
6233
- * @param {string} [filterBy2]
6234
6186
  * @param {boolean} [isExport]
6235
6187
  * @param {*} [options] Override http request option.
6236
6188
  * @throws {RequiredError}
6237
6189
  */
6238
- async registeredVehiclesIndex(orderBy?: string, orderDirection?: string, pageNumber?: number, pageSize?: number, filterBy?: string, filterKey?: string, startDate?: string, endDate?: string, plateNo?: string, plateProvince?: string, isVip?: boolean, filterBy2?: string, isExport?: boolean, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ResponseDataRegisteredVehicleIndexResponseArray>> {
6239
- const localVarAxiosArgs = await localVarAxiosParamCreator.registeredVehiclesIndex(orderBy, orderDirection, pageNumber, pageSize, filterBy, filterKey, startDate, endDate, plateNo, plateProvince, isVip, filterBy2, 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);
6240
6192
  return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
6241
6193
  },
6242
6194
  /**
@@ -6759,16 +6711,13 @@ export const DefaultApiFactory = function (configuration?: Configuration, basePa
6759
6711
  * @param {string} [filterKey]
6760
6712
  * @param {string} [startDate]
6761
6713
  * @param {string} [endDate]
6762
- * @param {string} [plateNo]
6763
- * @param {string} [plateProvince]
6764
6714
  * @param {boolean} [isVip]
6765
- * @param {string} [filterBy2]
6766
6715
  * @param {boolean} [isExport]
6767
6716
  * @param {*} [options] Override http request option.
6768
6717
  * @throws {RequiredError}
6769
6718
  */
6770
- registeredVehiclesHistoryIndex(orderBy?: string, orderDirection?: string, pageNumber?: number, pageSize?: number, filterBy?: string, filterKey?: string, startDate?: string, endDate?: string, plateNo?: string, plateProvince?: string, isVip?: boolean, filterBy2?: string, isExport?: boolean, options?: any): AxiosPromise<ResponseDataRegisteredVehicleIndexResponseArray> {
6771
- return localVarFp.registeredVehiclesHistoryIndex(orderBy, orderDirection, pageNumber, pageSize, filterBy, filterKey, startDate, endDate, plateNo, plateProvince, isVip, filterBy2, 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));
6772
6721
  },
6773
6722
  /**
6774
6723
  *
@@ -6780,16 +6729,13 @@ export const DefaultApiFactory = function (configuration?: Configuration, basePa
6780
6729
  * @param {string} [filterKey]
6781
6730
  * @param {string} [startDate]
6782
6731
  * @param {string} [endDate]
6783
- * @param {string} [plateNo]
6784
- * @param {string} [plateProvince]
6785
6732
  * @param {boolean} [isVip]
6786
- * @param {string} [filterBy2]
6787
6733
  * @param {boolean} [isExport]
6788
6734
  * @param {*} [options] Override http request option.
6789
6735
  * @throws {RequiredError}
6790
6736
  */
6791
- registeredVehiclesIndex(orderBy?: string, orderDirection?: string, pageNumber?: number, pageSize?: number, filterBy?: string, filterKey?: string, startDate?: string, endDate?: string, plateNo?: string, plateProvince?: string, isVip?: boolean, filterBy2?: string, isExport?: boolean, options?: any): AxiosPromise<ResponseDataRegisteredVehicleIndexResponseArray> {
6792
- return localVarFp.registeredVehiclesIndex(orderBy, orderDirection, pageNumber, pageSize, filterBy, filterKey, startDate, endDate, plateNo, plateProvince, isVip, filterBy2, 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));
6793
6739
  },
6794
6740
  /**
6795
6741
  *
@@ -7378,17 +7324,14 @@ export class DefaultApi extends BaseAPI {
7378
7324
  * @param {string} [filterKey]
7379
7325
  * @param {string} [startDate]
7380
7326
  * @param {string} [endDate]
7381
- * @param {string} [plateNo]
7382
- * @param {string} [plateProvince]
7383
7327
  * @param {boolean} [isVip]
7384
- * @param {string} [filterBy2]
7385
7328
  * @param {boolean} [isExport]
7386
7329
  * @param {*} [options] Override http request option.
7387
7330
  * @throws {RequiredError}
7388
7331
  * @memberof DefaultApi
7389
7332
  */
7390
- public registeredVehiclesHistoryIndex(orderBy?: string, orderDirection?: string, pageNumber?: number, pageSize?: number, filterBy?: string, filterKey?: string, startDate?: string, endDate?: string, plateNo?: string, plateProvince?: string, isVip?: boolean, filterBy2?: string, isExport?: boolean, options?: AxiosRequestConfig) {
7391
- return DefaultApiFp(this.configuration).registeredVehiclesHistoryIndex(orderBy, orderDirection, pageNumber, pageSize, filterBy, filterKey, startDate, endDate, plateNo, plateProvince, isVip, filterBy2, 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));
7392
7335
  }
7393
7336
 
7394
7337
  /**
@@ -7401,17 +7344,14 @@ export class DefaultApi extends BaseAPI {
7401
7344
  * @param {string} [filterKey]
7402
7345
  * @param {string} [startDate]
7403
7346
  * @param {string} [endDate]
7404
- * @param {string} [plateNo]
7405
- * @param {string} [plateProvince]
7406
7347
  * @param {boolean} [isVip]
7407
- * @param {string} [filterBy2]
7408
7348
  * @param {boolean} [isExport]
7409
7349
  * @param {*} [options] Override http request option.
7410
7350
  * @throws {RequiredError}
7411
7351
  * @memberof DefaultApi
7412
7352
  */
7413
- public registeredVehiclesIndex(orderBy?: string, orderDirection?: string, pageNumber?: number, pageSize?: number, filterBy?: string, filterKey?: string, startDate?: string, endDate?: string, plateNo?: string, plateProvince?: string, isVip?: boolean, filterBy2?: string, isExport?: boolean, options?: AxiosRequestConfig) {
7414
- return DefaultApiFp(this.configuration).registeredVehiclesIndex(orderBy, orderDirection, pageNumber, pageSize, filterBy, filterKey, startDate, endDate, plateNo, plateProvince, isVip, filterBy2, 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));
7415
7355
  }
7416
7356
 
7417
7357
  /**
package/dist/api/api.d.ts CHANGED
@@ -1752,18 +1752,6 @@ export interface GetRegisteredVehiclesIndexQuery {
1752
1752
  * @memberof GetRegisteredVehiclesIndexQuery
1753
1753
  */
1754
1754
  'endDate'?: string;
1755
- /**
1756
- *
1757
- * @type {string}
1758
- * @memberof GetRegisteredVehiclesIndexQuery
1759
- */
1760
- 'plate_no'?: string;
1761
- /**
1762
- *
1763
- * @type {string}
1764
- * @memberof GetRegisteredVehiclesIndexQuery
1765
- */
1766
- 'plate_province'?: string;
1767
1755
  /**
1768
1756
  *
1769
1757
  * @type {boolean}
@@ -3869,15 +3857,12 @@ export declare const DefaultApiAxiosParamCreator: (configuration?: Configuration
3869
3857
  * @param {string} [filterKey]
3870
3858
  * @param {string} [startDate]
3871
3859
  * @param {string} [endDate]
3872
- * @param {string} [plateNo]
3873
- * @param {string} [plateProvince]
3874
3860
  * @param {boolean} [isVip]
3875
- * @param {string} [filterBy2]
3876
3861
  * @param {boolean} [isExport]
3877
3862
  * @param {*} [options] Override http request option.
3878
3863
  * @throws {RequiredError}
3879
3864
  */
3880
- registeredVehiclesHistoryIndex: (orderBy?: string, orderDirection?: string, pageNumber?: number, pageSize?: number, filterBy?: string, filterKey?: string, startDate?: string, endDate?: string, plateNo?: string, plateProvince?: string, isVip?: boolean, filterBy2?: string, 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>;
3881
3866
  /**
3882
3867
  *
3883
3868
  * @param {string} [orderBy]
@@ -3888,15 +3873,12 @@ export declare const DefaultApiAxiosParamCreator: (configuration?: Configuration
3888
3873
  * @param {string} [filterKey]
3889
3874
  * @param {string} [startDate]
3890
3875
  * @param {string} [endDate]
3891
- * @param {string} [plateNo]
3892
- * @param {string} [plateProvince]
3893
3876
  * @param {boolean} [isVip]
3894
- * @param {string} [filterBy2]
3895
3877
  * @param {boolean} [isExport]
3896
3878
  * @param {*} [options] Override http request option.
3897
3879
  * @throws {RequiredError}
3898
3880
  */
3899
- registeredVehiclesIndex: (orderBy?: string, orderDirection?: string, pageNumber?: number, pageSize?: number, filterBy?: string, filterKey?: string, startDate?: string, endDate?: string, plateNo?: string, plateProvince?: string, isVip?: boolean, filterBy2?: string, 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>;
3900
3882
  /**
3901
3883
  *
3902
3884
  * @param {string} plateNo
@@ -4310,15 +4292,12 @@ export declare const DefaultApiFp: (configuration?: Configuration) => {
4310
4292
  * @param {string} [filterKey]
4311
4293
  * @param {string} [startDate]
4312
4294
  * @param {string} [endDate]
4313
- * @param {string} [plateNo]
4314
- * @param {string} [plateProvince]
4315
4295
  * @param {boolean} [isVip]
4316
- * @param {string} [filterBy2]
4317
4296
  * @param {boolean} [isExport]
4318
4297
  * @param {*} [options] Override http request option.
4319
4298
  * @throws {RequiredError}
4320
4299
  */
4321
- registeredVehiclesHistoryIndex(orderBy?: string, orderDirection?: string, pageNumber?: number, pageSize?: number, filterBy?: string, filterKey?: string, startDate?: string, endDate?: string, plateNo?: string, plateProvince?: string, isVip?: boolean, filterBy2?: string, 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>>;
4322
4301
  /**
4323
4302
  *
4324
4303
  * @param {string} [orderBy]
@@ -4329,15 +4308,12 @@ export declare const DefaultApiFp: (configuration?: Configuration) => {
4329
4308
  * @param {string} [filterKey]
4330
4309
  * @param {string} [startDate]
4331
4310
  * @param {string} [endDate]
4332
- * @param {string} [plateNo]
4333
- * @param {string} [plateProvince]
4334
4311
  * @param {boolean} [isVip]
4335
- * @param {string} [filterBy2]
4336
4312
  * @param {boolean} [isExport]
4337
4313
  * @param {*} [options] Override http request option.
4338
4314
  * @throws {RequiredError}
4339
4315
  */
4340
- registeredVehiclesIndex(orderBy?: string, orderDirection?: string, pageNumber?: number, pageSize?: number, filterBy?: string, filterKey?: string, startDate?: string, endDate?: string, plateNo?: string, plateProvince?: string, isVip?: boolean, filterBy2?: string, 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>>;
4341
4317
  /**
4342
4318
  *
4343
4319
  * @param {string} plateNo
@@ -4751,15 +4727,12 @@ export declare const DefaultApiFactory: (configuration?: Configuration, basePath
4751
4727
  * @param {string} [filterKey]
4752
4728
  * @param {string} [startDate]
4753
4729
  * @param {string} [endDate]
4754
- * @param {string} [plateNo]
4755
- * @param {string} [plateProvince]
4756
4730
  * @param {boolean} [isVip]
4757
- * @param {string} [filterBy2]
4758
4731
  * @param {boolean} [isExport]
4759
4732
  * @param {*} [options] Override http request option.
4760
4733
  * @throws {RequiredError}
4761
4734
  */
4762
- registeredVehiclesHistoryIndex(orderBy?: string, orderDirection?: string, pageNumber?: number, pageSize?: number, filterBy?: string, filterKey?: string, startDate?: string, endDate?: string, plateNo?: string, plateProvince?: string, isVip?: boolean, filterBy2?: string, 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>;
4763
4736
  /**
4764
4737
  *
4765
4738
  * @param {string} [orderBy]
@@ -4770,15 +4743,12 @@ export declare const DefaultApiFactory: (configuration?: Configuration, basePath
4770
4743
  * @param {string} [filterKey]
4771
4744
  * @param {string} [startDate]
4772
4745
  * @param {string} [endDate]
4773
- * @param {string} [plateNo]
4774
- * @param {string} [plateProvince]
4775
4746
  * @param {boolean} [isVip]
4776
- * @param {string} [filterBy2]
4777
4747
  * @param {boolean} [isExport]
4778
4748
  * @param {*} [options] Override http request option.
4779
4749
  * @throws {RequiredError}
4780
4750
  */
4781
- registeredVehiclesIndex(orderBy?: string, orderDirection?: string, pageNumber?: number, pageSize?: number, filterBy?: string, filterKey?: string, startDate?: string, endDate?: string, plateNo?: string, plateProvince?: string, isVip?: boolean, filterBy2?: string, 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>;
4782
4752
  /**
4783
4753
  *
4784
4754
  * @param {string} plateNo
@@ -5232,16 +5202,13 @@ export declare class DefaultApi extends BaseAPI {
5232
5202
  * @param {string} [filterKey]
5233
5203
  * @param {string} [startDate]
5234
5204
  * @param {string} [endDate]
5235
- * @param {string} [plateNo]
5236
- * @param {string} [plateProvince]
5237
5205
  * @param {boolean} [isVip]
5238
- * @param {string} [filterBy2]
5239
5206
  * @param {boolean} [isExport]
5240
5207
  * @param {*} [options] Override http request option.
5241
5208
  * @throws {RequiredError}
5242
5209
  * @memberof DefaultApi
5243
5210
  */
5244
- registeredVehiclesHistoryIndex(orderBy?: string, orderDirection?: string, pageNumber?: number, pageSize?: number, filterBy?: string, filterKey?: string, startDate?: string, endDate?: string, plateNo?: string, plateProvince?: string, isVip?: boolean, filterBy2?: string, 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>>;
5245
5212
  /**
5246
5213
  *
5247
5214
  * @param {string} [orderBy]
@@ -5252,16 +5219,13 @@ export declare class DefaultApi extends BaseAPI {
5252
5219
  * @param {string} [filterKey]
5253
5220
  * @param {string} [startDate]
5254
5221
  * @param {string} [endDate]
5255
- * @param {string} [plateNo]
5256
- * @param {string} [plateProvince]
5257
5222
  * @param {boolean} [isVip]
5258
- * @param {string} [filterBy2]
5259
5223
  * @param {boolean} [isExport]
5260
5224
  * @param {*} [options] Override http request option.
5261
5225
  * @throws {RequiredError}
5262
5226
  * @memberof DefaultApi
5263
5227
  */
5264
- registeredVehiclesIndex(orderBy?: string, orderDirection?: string, pageNumber?: number, pageSize?: number, filterBy?: string, filterKey?: string, startDate?: string, endDate?: string, plateNo?: string, plateProvince?: string, isVip?: boolean, filterBy2?: string, 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>>;
5265
5229
  /**
5266
5230
  *
5267
5231
  * @param {string} plateNo
package/dist/api/api.js CHANGED
@@ -1480,15 +1480,12 @@ const DefaultApiAxiosParamCreator = function (configuration) {
1480
1480
  * @param {string} [filterKey]
1481
1481
  * @param {string} [startDate]
1482
1482
  * @param {string} [endDate]
1483
- * @param {string} [plateNo]
1484
- * @param {string} [plateProvince]
1485
1483
  * @param {boolean} [isVip]
1486
- * @param {string} [filterBy2]
1487
1484
  * @param {boolean} [isExport]
1488
1485
  * @param {*} [options] Override http request option.
1489
1486
  * @throws {RequiredError}
1490
1487
  */
1491
- registeredVehiclesHistoryIndex: (orderBy, orderDirection, pageNumber, pageSize, filterBy, filterKey, startDate, endDate, plateNo, plateProvince, isVip, filterBy2, 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* () {
1492
1489
  const localVarPath = `/registered-vehicles/history`;
1493
1490
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
1494
1491
  const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
@@ -1523,18 +1520,9 @@ const DefaultApiAxiosParamCreator = function (configuration) {
1523
1520
  if (endDate !== undefined) {
1524
1521
  localVarQueryParameter['endDate'] = endDate;
1525
1522
  }
1526
- if (plateNo !== undefined) {
1527
- localVarQueryParameter['plate_no'] = plateNo;
1528
- }
1529
- if (plateProvince !== undefined) {
1530
- localVarQueryParameter['plate_province'] = plateProvince;
1531
- }
1532
1523
  if (isVip !== undefined) {
1533
1524
  localVarQueryParameter['is_vip'] = isVip;
1534
1525
  }
1535
- if (filterBy2 !== undefined) {
1536
- localVarQueryParameter['filter_by'] = filterBy2;
1537
- }
1538
1526
  if (isExport !== undefined) {
1539
1527
  localVarQueryParameter['is_export'] = isExport;
1540
1528
  }
@@ -1556,15 +1544,12 @@ const DefaultApiAxiosParamCreator = function (configuration) {
1556
1544
  * @param {string} [filterKey]
1557
1545
  * @param {string} [startDate]
1558
1546
  * @param {string} [endDate]
1559
- * @param {string} [plateNo]
1560
- * @param {string} [plateProvince]
1561
1547
  * @param {boolean} [isVip]
1562
- * @param {string} [filterBy2]
1563
1548
  * @param {boolean} [isExport]
1564
1549
  * @param {*} [options] Override http request option.
1565
1550
  * @throws {RequiredError}
1566
1551
  */
1567
- registeredVehiclesIndex: (orderBy, orderDirection, pageNumber, pageSize, filterBy, filterKey, startDate, endDate, plateNo, plateProvince, isVip, filterBy2, 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* () {
1568
1553
  const localVarPath = `/registered-vehicles`;
1569
1554
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
1570
1555
  const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
@@ -1599,18 +1584,9 @@ const DefaultApiAxiosParamCreator = function (configuration) {
1599
1584
  if (endDate !== undefined) {
1600
1585
  localVarQueryParameter['endDate'] = endDate;
1601
1586
  }
1602
- if (plateNo !== undefined) {
1603
- localVarQueryParameter['plate_no'] = plateNo;
1604
- }
1605
- if (plateProvince !== undefined) {
1606
- localVarQueryParameter['plate_province'] = plateProvince;
1607
- }
1608
1587
  if (isVip !== undefined) {
1609
1588
  localVarQueryParameter['is_vip'] = isVip;
1610
1589
  }
1611
- if (filterBy2 !== undefined) {
1612
- localVarQueryParameter['filter_by'] = filterBy2;
1613
- }
1614
1590
  if (isExport !== undefined) {
1615
1591
  localVarQueryParameter['is_export'] = isExport;
1616
1592
  }
@@ -2429,17 +2405,14 @@ const DefaultApiFp = function (configuration) {
2429
2405
  * @param {string} [filterKey]
2430
2406
  * @param {string} [startDate]
2431
2407
  * @param {string} [endDate]
2432
- * @param {string} [plateNo]
2433
- * @param {string} [plateProvince]
2434
2408
  * @param {boolean} [isVip]
2435
- * @param {string} [filterBy2]
2436
2409
  * @param {boolean} [isExport]
2437
2410
  * @param {*} [options] Override http request option.
2438
2411
  * @throws {RequiredError}
2439
2412
  */
2440
- registeredVehiclesHistoryIndex(orderBy, orderDirection, pageNumber, pageSize, filterBy, filterKey, startDate, endDate, plateNo, plateProvince, isVip, filterBy2, isExport, options) {
2413
+ registeredVehiclesHistoryIndex(orderBy, orderDirection, pageNumber, pageSize, filterBy, filterKey, startDate, endDate, isVip, isExport, options) {
2441
2414
  return __awaiter(this, void 0, void 0, function* () {
2442
- const localVarAxiosArgs = yield localVarAxiosParamCreator.registeredVehiclesHistoryIndex(orderBy, orderDirection, pageNumber, pageSize, filterBy, filterKey, startDate, endDate, plateNo, plateProvince, isVip, filterBy2, isExport, options);
2415
+ const localVarAxiosArgs = yield localVarAxiosParamCreator.registeredVehiclesHistoryIndex(orderBy, orderDirection, pageNumber, pageSize, filterBy, filterKey, startDate, endDate, isVip, isExport, options);
2443
2416
  return (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration);
2444
2417
  });
2445
2418
  },
@@ -2453,17 +2426,14 @@ const DefaultApiFp = function (configuration) {
2453
2426
  * @param {string} [filterKey]
2454
2427
  * @param {string} [startDate]
2455
2428
  * @param {string} [endDate]
2456
- * @param {string} [plateNo]
2457
- * @param {string} [plateProvince]
2458
2429
  * @param {boolean} [isVip]
2459
- * @param {string} [filterBy2]
2460
2430
  * @param {boolean} [isExport]
2461
2431
  * @param {*} [options] Override http request option.
2462
2432
  * @throws {RequiredError}
2463
2433
  */
2464
- registeredVehiclesIndex(orderBy, orderDirection, pageNumber, pageSize, filterBy, filterKey, startDate, endDate, plateNo, plateProvince, isVip, filterBy2, isExport, options) {
2434
+ registeredVehiclesIndex(orderBy, orderDirection, pageNumber, pageSize, filterBy, filterKey, startDate, endDate, isVip, isExport, options) {
2465
2435
  return __awaiter(this, void 0, void 0, function* () {
2466
- const localVarAxiosArgs = yield localVarAxiosParamCreator.registeredVehiclesIndex(orderBy, orderDirection, pageNumber, pageSize, filterBy, filterKey, startDate, endDate, plateNo, plateProvince, isVip, filterBy2, isExport, options);
2436
+ const localVarAxiosArgs = yield localVarAxiosParamCreator.registeredVehiclesIndex(orderBy, orderDirection, pageNumber, pageSize, filterBy, filterKey, startDate, endDate, isVip, isExport, options);
2467
2437
  return (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration);
2468
2438
  });
2469
2439
  },
@@ -3005,16 +2975,13 @@ const DefaultApiFactory = function (configuration, basePath, axios) {
3005
2975
  * @param {string} [filterKey]
3006
2976
  * @param {string} [startDate]
3007
2977
  * @param {string} [endDate]
3008
- * @param {string} [plateNo]
3009
- * @param {string} [plateProvince]
3010
2978
  * @param {boolean} [isVip]
3011
- * @param {string} [filterBy2]
3012
2979
  * @param {boolean} [isExport]
3013
2980
  * @param {*} [options] Override http request option.
3014
2981
  * @throws {RequiredError}
3015
2982
  */
3016
- registeredVehiclesHistoryIndex(orderBy, orderDirection, pageNumber, pageSize, filterBy, filterKey, startDate, endDate, plateNo, plateProvince, isVip, filterBy2, isExport, options) {
3017
- return localVarFp.registeredVehiclesHistoryIndex(orderBy, orderDirection, pageNumber, pageSize, filterBy, filterKey, startDate, endDate, plateNo, plateProvince, isVip, filterBy2, 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));
3018
2985
  },
3019
2986
  /**
3020
2987
  *
@@ -3026,16 +2993,13 @@ const DefaultApiFactory = function (configuration, basePath, axios) {
3026
2993
  * @param {string} [filterKey]
3027
2994
  * @param {string} [startDate]
3028
2995
  * @param {string} [endDate]
3029
- * @param {string} [plateNo]
3030
- * @param {string} [plateProvince]
3031
2996
  * @param {boolean} [isVip]
3032
- * @param {string} [filterBy2]
3033
2997
  * @param {boolean} [isExport]
3034
2998
  * @param {*} [options] Override http request option.
3035
2999
  * @throws {RequiredError}
3036
3000
  */
3037
- registeredVehiclesIndex(orderBy, orderDirection, pageNumber, pageSize, filterBy, filterKey, startDate, endDate, plateNo, plateProvince, isVip, filterBy2, isExport, options) {
3038
- return localVarFp.registeredVehiclesIndex(orderBy, orderDirection, pageNumber, pageSize, filterBy, filterKey, startDate, endDate, plateNo, plateProvince, isVip, filterBy2, 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));
3039
3003
  },
3040
3004
  /**
3041
3005
  *
@@ -3586,17 +3550,14 @@ class DefaultApi extends base_1.BaseAPI {
3586
3550
  * @param {string} [filterKey]
3587
3551
  * @param {string} [startDate]
3588
3552
  * @param {string} [endDate]
3589
- * @param {string} [plateNo]
3590
- * @param {string} [plateProvince]
3591
3553
  * @param {boolean} [isVip]
3592
- * @param {string} [filterBy2]
3593
3554
  * @param {boolean} [isExport]
3594
3555
  * @param {*} [options] Override http request option.
3595
3556
  * @throws {RequiredError}
3596
3557
  * @memberof DefaultApi
3597
3558
  */
3598
- registeredVehiclesHistoryIndex(orderBy, orderDirection, pageNumber, pageSize, filterBy, filterKey, startDate, endDate, plateNo, plateProvince, isVip, filterBy2, isExport, options) {
3599
- return (0, exports.DefaultApiFp)(this.configuration).registeredVehiclesHistoryIndex(orderBy, orderDirection, pageNumber, pageSize, filterBy, filterKey, startDate, endDate, plateNo, plateProvince, isVip, filterBy2, 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));
3600
3561
  }
3601
3562
  /**
3602
3563
  *
@@ -3608,17 +3569,14 @@ class DefaultApi extends base_1.BaseAPI {
3608
3569
  * @param {string} [filterKey]
3609
3570
  * @param {string} [startDate]
3610
3571
  * @param {string} [endDate]
3611
- * @param {string} [plateNo]
3612
- * @param {string} [plateProvince]
3613
3572
  * @param {boolean} [isVip]
3614
- * @param {string} [filterBy2]
3615
3573
  * @param {boolean} [isExport]
3616
3574
  * @param {*} [options] Override http request option.
3617
3575
  * @throws {RequiredError}
3618
3576
  * @memberof DefaultApi
3619
3577
  */
3620
- registeredVehiclesIndex(orderBy, orderDirection, pageNumber, pageSize, filterBy, filterKey, startDate, endDate, plateNo, plateProvince, isVip, filterBy2, isExport, options) {
3621
- return (0, exports.DefaultApiFp)(this.configuration).registeredVehiclesIndex(orderBy, orderDirection, pageNumber, pageSize, filterBy, filterKey, startDate, endDate, plateNo, plateProvince, isVip, filterBy2, 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));
3622
3580
  }
3623
3581
  /**
3624
3582
  *
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ob-parking-sdk",
3
- "version": "0.0.70",
3
+ "version": "0.0.72",
4
4
  "description": "API interfaces for OB PARKING",
5
5
  "main": "./dist/index.js",
6
6
  "license": "MIT"