ob-parking-sdk 0.0.70 → 0.0.71
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 +29 -67
- package/dist/api/api.d.ts +19 -41
- package/dist/api/api.js +26 -54
- package/package.json +1 -1
package/api/api.ts
CHANGED
|
@@ -1793,22 +1793,16 @@ export interface GetRegisteredVehiclesIndexQuery {
|
|
|
1793
1793
|
'endDate'?: string;
|
|
1794
1794
|
/**
|
|
1795
1795
|
*
|
|
1796
|
-
* @type {
|
|
1797
|
-
* @memberof GetRegisteredVehiclesIndexQuery
|
|
1798
|
-
*/
|
|
1799
|
-
'plate_no'?: string;
|
|
1800
|
-
/**
|
|
1801
|
-
*
|
|
1802
|
-
* @type {string}
|
|
1796
|
+
* @type {boolean}
|
|
1803
1797
|
* @memberof GetRegisteredVehiclesIndexQuery
|
|
1804
1798
|
*/
|
|
1805
|
-
'
|
|
1799
|
+
'is_vip'?: boolean;
|
|
1806
1800
|
/**
|
|
1807
1801
|
*
|
|
1808
1802
|
* @type {boolean}
|
|
1809
1803
|
* @memberof GetRegisteredVehiclesIndexQuery
|
|
1810
1804
|
*/
|
|
1811
|
-
'
|
|
1805
|
+
'is_history'?: boolean;
|
|
1812
1806
|
/**
|
|
1813
1807
|
*
|
|
1814
1808
|
* @type {boolean}
|
|
@@ -5242,15 +5236,13 @@ export const DefaultApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
5242
5236
|
* @param {string} [filterKey]
|
|
5243
5237
|
* @param {string} [startDate]
|
|
5244
5238
|
* @param {string} [endDate]
|
|
5245
|
-
* @param {string} [plateNo]
|
|
5246
|
-
* @param {string} [plateProvince]
|
|
5247
5239
|
* @param {boolean} [isVip]
|
|
5248
|
-
* @param {
|
|
5240
|
+
* @param {boolean} [isHistory]
|
|
5249
5241
|
* @param {boolean} [isExport]
|
|
5250
5242
|
* @param {*} [options] Override http request option.
|
|
5251
5243
|
* @throws {RequiredError}
|
|
5252
5244
|
*/
|
|
5253
|
-
registeredVehiclesHistoryIndex: async (orderBy?: string, orderDirection?: string, pageNumber?: number, pageSize?: number, filterBy?: string, filterKey?: string, startDate?: string, endDate?: string,
|
|
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> => {
|
|
5254
5246
|
const localVarPath = `/registered-vehicles/history`;
|
|
5255
5247
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
5256
5248
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -5295,20 +5287,12 @@ export const DefaultApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
5295
5287
|
localVarQueryParameter['endDate'] = endDate;
|
|
5296
5288
|
}
|
|
5297
5289
|
|
|
5298
|
-
if (plateNo !== undefined) {
|
|
5299
|
-
localVarQueryParameter['plate_no'] = plateNo;
|
|
5300
|
-
}
|
|
5301
|
-
|
|
5302
|
-
if (plateProvince !== undefined) {
|
|
5303
|
-
localVarQueryParameter['plate_province'] = plateProvince;
|
|
5304
|
-
}
|
|
5305
|
-
|
|
5306
5290
|
if (isVip !== undefined) {
|
|
5307
5291
|
localVarQueryParameter['is_vip'] = isVip;
|
|
5308
5292
|
}
|
|
5309
5293
|
|
|
5310
|
-
if (
|
|
5311
|
-
localVarQueryParameter['
|
|
5294
|
+
if (isHistory !== undefined) {
|
|
5295
|
+
localVarQueryParameter['is_history'] = isHistory;
|
|
5312
5296
|
}
|
|
5313
5297
|
|
|
5314
5298
|
if (isExport !== undefined) {
|
|
@@ -5336,15 +5320,13 @@ export const DefaultApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
5336
5320
|
* @param {string} [filterKey]
|
|
5337
5321
|
* @param {string} [startDate]
|
|
5338
5322
|
* @param {string} [endDate]
|
|
5339
|
-
* @param {string} [plateNo]
|
|
5340
|
-
* @param {string} [plateProvince]
|
|
5341
5323
|
* @param {boolean} [isVip]
|
|
5342
|
-
* @param {
|
|
5324
|
+
* @param {boolean} [isHistory]
|
|
5343
5325
|
* @param {boolean} [isExport]
|
|
5344
5326
|
* @param {*} [options] Override http request option.
|
|
5345
5327
|
* @throws {RequiredError}
|
|
5346
5328
|
*/
|
|
5347
|
-
registeredVehiclesIndex: async (orderBy?: string, orderDirection?: string, pageNumber?: number, pageSize?: number, filterBy?: string, filterKey?: string, startDate?: string, endDate?: string,
|
|
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> => {
|
|
5348
5330
|
const localVarPath = `/registered-vehicles`;
|
|
5349
5331
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
5350
5332
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -5389,20 +5371,12 @@ export const DefaultApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
5389
5371
|
localVarQueryParameter['endDate'] = endDate;
|
|
5390
5372
|
}
|
|
5391
5373
|
|
|
5392
|
-
if (plateNo !== undefined) {
|
|
5393
|
-
localVarQueryParameter['plate_no'] = plateNo;
|
|
5394
|
-
}
|
|
5395
|
-
|
|
5396
|
-
if (plateProvince !== undefined) {
|
|
5397
|
-
localVarQueryParameter['plate_province'] = plateProvince;
|
|
5398
|
-
}
|
|
5399
|
-
|
|
5400
5374
|
if (isVip !== undefined) {
|
|
5401
5375
|
localVarQueryParameter['is_vip'] = isVip;
|
|
5402
5376
|
}
|
|
5403
5377
|
|
|
5404
|
-
if (
|
|
5405
|
-
localVarQueryParameter['
|
|
5378
|
+
if (isHistory !== undefined) {
|
|
5379
|
+
localVarQueryParameter['is_history'] = isHistory;
|
|
5406
5380
|
}
|
|
5407
5381
|
|
|
5408
5382
|
if (isExport !== undefined) {
|
|
@@ -6205,16 +6179,14 @@ export const DefaultApiFp = function(configuration?: Configuration) {
|
|
|
6205
6179
|
* @param {string} [filterKey]
|
|
6206
6180
|
* @param {string} [startDate]
|
|
6207
6181
|
* @param {string} [endDate]
|
|
6208
|
-
* @param {string} [plateNo]
|
|
6209
|
-
* @param {string} [plateProvince]
|
|
6210
6182
|
* @param {boolean} [isVip]
|
|
6211
|
-
* @param {
|
|
6183
|
+
* @param {boolean} [isHistory]
|
|
6212
6184
|
* @param {boolean} [isExport]
|
|
6213
6185
|
* @param {*} [options] Override http request option.
|
|
6214
6186
|
* @throws {RequiredError}
|
|
6215
6187
|
*/
|
|
6216
|
-
async registeredVehiclesHistoryIndex(orderBy?: string, orderDirection?: string, pageNumber?: number, pageSize?: number, filterBy?: string, filterKey?: string, startDate?: string, endDate?: string,
|
|
6217
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.registeredVehiclesHistoryIndex(orderBy, orderDirection, pageNumber, pageSize, filterBy, filterKey, startDate, endDate,
|
|
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);
|
|
6218
6190
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
6219
6191
|
},
|
|
6220
6192
|
/**
|
|
@@ -6227,16 +6199,14 @@ export const DefaultApiFp = function(configuration?: Configuration) {
|
|
|
6227
6199
|
* @param {string} [filterKey]
|
|
6228
6200
|
* @param {string} [startDate]
|
|
6229
6201
|
* @param {string} [endDate]
|
|
6230
|
-
* @param {string} [plateNo]
|
|
6231
|
-
* @param {string} [plateProvince]
|
|
6232
6202
|
* @param {boolean} [isVip]
|
|
6233
|
-
* @param {
|
|
6203
|
+
* @param {boolean} [isHistory]
|
|
6234
6204
|
* @param {boolean} [isExport]
|
|
6235
6205
|
* @param {*} [options] Override http request option.
|
|
6236
6206
|
* @throws {RequiredError}
|
|
6237
6207
|
*/
|
|
6238
|
-
async registeredVehiclesIndex(orderBy?: string, orderDirection?: string, pageNumber?: number, pageSize?: number, filterBy?: string, filterKey?: string, startDate?: string, endDate?: string,
|
|
6239
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.registeredVehiclesIndex(orderBy, orderDirection, pageNumber, pageSize, filterBy, filterKey, startDate, endDate,
|
|
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);
|
|
6240
6210
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
6241
6211
|
},
|
|
6242
6212
|
/**
|
|
@@ -6759,16 +6729,14 @@ export const DefaultApiFactory = function (configuration?: Configuration, basePa
|
|
|
6759
6729
|
* @param {string} [filterKey]
|
|
6760
6730
|
* @param {string} [startDate]
|
|
6761
6731
|
* @param {string} [endDate]
|
|
6762
|
-
* @param {string} [plateNo]
|
|
6763
|
-
* @param {string} [plateProvince]
|
|
6764
6732
|
* @param {boolean} [isVip]
|
|
6765
|
-
* @param {
|
|
6733
|
+
* @param {boolean} [isHistory]
|
|
6766
6734
|
* @param {boolean} [isExport]
|
|
6767
6735
|
* @param {*} [options] Override http request option.
|
|
6768
6736
|
* @throws {RequiredError}
|
|
6769
6737
|
*/
|
|
6770
|
-
registeredVehiclesHistoryIndex(orderBy?: string, orderDirection?: string, pageNumber?: number, pageSize?: number, filterBy?: string, filterKey?: string, startDate?: string, endDate?: string,
|
|
6771
|
-
return localVarFp.registeredVehiclesHistoryIndex(orderBy, orderDirection, pageNumber, pageSize, filterBy, filterKey, startDate, endDate,
|
|
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));
|
|
6772
6740
|
},
|
|
6773
6741
|
/**
|
|
6774
6742
|
*
|
|
@@ -6780,16 +6748,14 @@ export const DefaultApiFactory = function (configuration?: Configuration, basePa
|
|
|
6780
6748
|
* @param {string} [filterKey]
|
|
6781
6749
|
* @param {string} [startDate]
|
|
6782
6750
|
* @param {string} [endDate]
|
|
6783
|
-
* @param {string} [plateNo]
|
|
6784
|
-
* @param {string} [plateProvince]
|
|
6785
6751
|
* @param {boolean} [isVip]
|
|
6786
|
-
* @param {
|
|
6752
|
+
* @param {boolean} [isHistory]
|
|
6787
6753
|
* @param {boolean} [isExport]
|
|
6788
6754
|
* @param {*} [options] Override http request option.
|
|
6789
6755
|
* @throws {RequiredError}
|
|
6790
6756
|
*/
|
|
6791
|
-
registeredVehiclesIndex(orderBy?: string, orderDirection?: string, pageNumber?: number, pageSize?: number, filterBy?: string, filterKey?: string, startDate?: string, endDate?: string,
|
|
6792
|
-
return localVarFp.registeredVehiclesIndex(orderBy, orderDirection, pageNumber, pageSize, filterBy, filterKey, startDate, endDate,
|
|
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));
|
|
6793
6759
|
},
|
|
6794
6760
|
/**
|
|
6795
6761
|
*
|
|
@@ -7378,17 +7344,15 @@ export class DefaultApi extends BaseAPI {
|
|
|
7378
7344
|
* @param {string} [filterKey]
|
|
7379
7345
|
* @param {string} [startDate]
|
|
7380
7346
|
* @param {string} [endDate]
|
|
7381
|
-
* @param {string} [plateNo]
|
|
7382
|
-
* @param {string} [plateProvince]
|
|
7383
7347
|
* @param {boolean} [isVip]
|
|
7384
|
-
* @param {
|
|
7348
|
+
* @param {boolean} [isHistory]
|
|
7385
7349
|
* @param {boolean} [isExport]
|
|
7386
7350
|
* @param {*} [options] Override http request option.
|
|
7387
7351
|
* @throws {RequiredError}
|
|
7388
7352
|
* @memberof DefaultApi
|
|
7389
7353
|
*/
|
|
7390
|
-
public registeredVehiclesHistoryIndex(orderBy?: string, orderDirection?: string, pageNumber?: number, pageSize?: number, filterBy?: string, filterKey?: string, startDate?: string, endDate?: string,
|
|
7391
|
-
return DefaultApiFp(this.configuration).registeredVehiclesHistoryIndex(orderBy, orderDirection, pageNumber, pageSize, filterBy, filterKey, startDate, endDate,
|
|
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));
|
|
7392
7356
|
}
|
|
7393
7357
|
|
|
7394
7358
|
/**
|
|
@@ -7401,17 +7365,15 @@ export class DefaultApi extends BaseAPI {
|
|
|
7401
7365
|
* @param {string} [filterKey]
|
|
7402
7366
|
* @param {string} [startDate]
|
|
7403
7367
|
* @param {string} [endDate]
|
|
7404
|
-
* @param {string} [plateNo]
|
|
7405
|
-
* @param {string} [plateProvince]
|
|
7406
7368
|
* @param {boolean} [isVip]
|
|
7407
|
-
* @param {
|
|
7369
|
+
* @param {boolean} [isHistory]
|
|
7408
7370
|
* @param {boolean} [isExport]
|
|
7409
7371
|
* @param {*} [options] Override http request option.
|
|
7410
7372
|
* @throws {RequiredError}
|
|
7411
7373
|
* @memberof DefaultApi
|
|
7412
7374
|
*/
|
|
7413
|
-
public registeredVehiclesIndex(orderBy?: string, orderDirection?: string, pageNumber?: number, pageSize?: number, filterBy?: string, filterKey?: string, startDate?: string, endDate?: string,
|
|
7414
|
-
return DefaultApiFp(this.configuration).registeredVehiclesIndex(orderBy, orderDirection, pageNumber, pageSize, filterBy, filterKey, startDate, endDate,
|
|
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));
|
|
7415
7377
|
}
|
|
7416
7378
|
|
|
7417
7379
|
/**
|
package/dist/api/api.d.ts
CHANGED
|
@@ -1754,22 +1754,16 @@ export interface GetRegisteredVehiclesIndexQuery {
|
|
|
1754
1754
|
'endDate'?: string;
|
|
1755
1755
|
/**
|
|
1756
1756
|
*
|
|
1757
|
-
* @type {
|
|
1758
|
-
* @memberof GetRegisteredVehiclesIndexQuery
|
|
1759
|
-
*/
|
|
1760
|
-
'plate_no'?: string;
|
|
1761
|
-
/**
|
|
1762
|
-
*
|
|
1763
|
-
* @type {string}
|
|
1757
|
+
* @type {boolean}
|
|
1764
1758
|
* @memberof GetRegisteredVehiclesIndexQuery
|
|
1765
1759
|
*/
|
|
1766
|
-
'
|
|
1760
|
+
'is_vip'?: boolean;
|
|
1767
1761
|
/**
|
|
1768
1762
|
*
|
|
1769
1763
|
* @type {boolean}
|
|
1770
1764
|
* @memberof GetRegisteredVehiclesIndexQuery
|
|
1771
1765
|
*/
|
|
1772
|
-
'
|
|
1766
|
+
'is_history'?: boolean;
|
|
1773
1767
|
/**
|
|
1774
1768
|
*
|
|
1775
1769
|
* @type {boolean}
|
|
@@ -3869,15 +3863,13 @@ export declare const DefaultApiAxiosParamCreator: (configuration?: Configuration
|
|
|
3869
3863
|
* @param {string} [filterKey]
|
|
3870
3864
|
* @param {string} [startDate]
|
|
3871
3865
|
* @param {string} [endDate]
|
|
3872
|
-
* @param {string} [plateNo]
|
|
3873
|
-
* @param {string} [plateProvince]
|
|
3874
3866
|
* @param {boolean} [isVip]
|
|
3875
|
-
* @param {
|
|
3867
|
+
* @param {boolean} [isHistory]
|
|
3876
3868
|
* @param {boolean} [isExport]
|
|
3877
3869
|
* @param {*} [options] Override http request option.
|
|
3878
3870
|
* @throws {RequiredError}
|
|
3879
3871
|
*/
|
|
3880
|
-
registeredVehiclesHistoryIndex: (orderBy?: string, orderDirection?: string, pageNumber?: number, pageSize?: number, filterBy?: string, filterKey?: string, startDate?: string, endDate?: string,
|
|
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>;
|
|
3881
3873
|
/**
|
|
3882
3874
|
*
|
|
3883
3875
|
* @param {string} [orderBy]
|
|
@@ -3888,15 +3880,13 @@ export declare const DefaultApiAxiosParamCreator: (configuration?: Configuration
|
|
|
3888
3880
|
* @param {string} [filterKey]
|
|
3889
3881
|
* @param {string} [startDate]
|
|
3890
3882
|
* @param {string} [endDate]
|
|
3891
|
-
* @param {string} [plateNo]
|
|
3892
|
-
* @param {string} [plateProvince]
|
|
3893
3883
|
* @param {boolean} [isVip]
|
|
3894
|
-
* @param {
|
|
3884
|
+
* @param {boolean} [isHistory]
|
|
3895
3885
|
* @param {boolean} [isExport]
|
|
3896
3886
|
* @param {*} [options] Override http request option.
|
|
3897
3887
|
* @throws {RequiredError}
|
|
3898
3888
|
*/
|
|
3899
|
-
registeredVehiclesIndex: (orderBy?: string, orderDirection?: string, pageNumber?: number, pageSize?: number, filterBy?: string, filterKey?: string, startDate?: string, endDate?: string,
|
|
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>;
|
|
3900
3890
|
/**
|
|
3901
3891
|
*
|
|
3902
3892
|
* @param {string} plateNo
|
|
@@ -4310,15 +4300,13 @@ export declare const DefaultApiFp: (configuration?: Configuration) => {
|
|
|
4310
4300
|
* @param {string} [filterKey]
|
|
4311
4301
|
* @param {string} [startDate]
|
|
4312
4302
|
* @param {string} [endDate]
|
|
4313
|
-
* @param {string} [plateNo]
|
|
4314
|
-
* @param {string} [plateProvince]
|
|
4315
4303
|
* @param {boolean} [isVip]
|
|
4316
|
-
* @param {
|
|
4304
|
+
* @param {boolean} [isHistory]
|
|
4317
4305
|
* @param {boolean} [isExport]
|
|
4318
4306
|
* @param {*} [options] Override http request option.
|
|
4319
4307
|
* @throws {RequiredError}
|
|
4320
4308
|
*/
|
|
4321
|
-
registeredVehiclesHistoryIndex(orderBy?: string, orderDirection?: string, pageNumber?: number, pageSize?: number, filterBy?: string, filterKey?: string, startDate?: string, endDate?: string,
|
|
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>>;
|
|
4322
4310
|
/**
|
|
4323
4311
|
*
|
|
4324
4312
|
* @param {string} [orderBy]
|
|
@@ -4329,15 +4317,13 @@ export declare const DefaultApiFp: (configuration?: Configuration) => {
|
|
|
4329
4317
|
* @param {string} [filterKey]
|
|
4330
4318
|
* @param {string} [startDate]
|
|
4331
4319
|
* @param {string} [endDate]
|
|
4332
|
-
* @param {string} [plateNo]
|
|
4333
|
-
* @param {string} [plateProvince]
|
|
4334
4320
|
* @param {boolean} [isVip]
|
|
4335
|
-
* @param {
|
|
4321
|
+
* @param {boolean} [isHistory]
|
|
4336
4322
|
* @param {boolean} [isExport]
|
|
4337
4323
|
* @param {*} [options] Override http request option.
|
|
4338
4324
|
* @throws {RequiredError}
|
|
4339
4325
|
*/
|
|
4340
|
-
registeredVehiclesIndex(orderBy?: string, orderDirection?: string, pageNumber?: number, pageSize?: number, filterBy?: string, filterKey?: string, startDate?: string, endDate?: string,
|
|
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>>;
|
|
4341
4327
|
/**
|
|
4342
4328
|
*
|
|
4343
4329
|
* @param {string} plateNo
|
|
@@ -4751,15 +4737,13 @@ export declare const DefaultApiFactory: (configuration?: Configuration, basePath
|
|
|
4751
4737
|
* @param {string} [filterKey]
|
|
4752
4738
|
* @param {string} [startDate]
|
|
4753
4739
|
* @param {string} [endDate]
|
|
4754
|
-
* @param {string} [plateNo]
|
|
4755
|
-
* @param {string} [plateProvince]
|
|
4756
4740
|
* @param {boolean} [isVip]
|
|
4757
|
-
* @param {
|
|
4741
|
+
* @param {boolean} [isHistory]
|
|
4758
4742
|
* @param {boolean} [isExport]
|
|
4759
4743
|
* @param {*} [options] Override http request option.
|
|
4760
4744
|
* @throws {RequiredError}
|
|
4761
4745
|
*/
|
|
4762
|
-
registeredVehiclesHistoryIndex(orderBy?: string, orderDirection?: string, pageNumber?: number, pageSize?: number, filterBy?: string, filterKey?: string, startDate?: string, endDate?: string,
|
|
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>;
|
|
4763
4747
|
/**
|
|
4764
4748
|
*
|
|
4765
4749
|
* @param {string} [orderBy]
|
|
@@ -4770,15 +4754,13 @@ export declare const DefaultApiFactory: (configuration?: Configuration, basePath
|
|
|
4770
4754
|
* @param {string} [filterKey]
|
|
4771
4755
|
* @param {string} [startDate]
|
|
4772
4756
|
* @param {string} [endDate]
|
|
4773
|
-
* @param {string} [plateNo]
|
|
4774
|
-
* @param {string} [plateProvince]
|
|
4775
4757
|
* @param {boolean} [isVip]
|
|
4776
|
-
* @param {
|
|
4758
|
+
* @param {boolean} [isHistory]
|
|
4777
4759
|
* @param {boolean} [isExport]
|
|
4778
4760
|
* @param {*} [options] Override http request option.
|
|
4779
4761
|
* @throws {RequiredError}
|
|
4780
4762
|
*/
|
|
4781
|
-
registeredVehiclesIndex(orderBy?: string, orderDirection?: string, pageNumber?: number, pageSize?: number, filterBy?: string, filterKey?: string, startDate?: string, endDate?: string,
|
|
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>;
|
|
4782
4764
|
/**
|
|
4783
4765
|
*
|
|
4784
4766
|
* @param {string} plateNo
|
|
@@ -5232,16 +5214,14 @@ export declare class DefaultApi extends BaseAPI {
|
|
|
5232
5214
|
* @param {string} [filterKey]
|
|
5233
5215
|
* @param {string} [startDate]
|
|
5234
5216
|
* @param {string} [endDate]
|
|
5235
|
-
* @param {string} [plateNo]
|
|
5236
|
-
* @param {string} [plateProvince]
|
|
5237
5217
|
* @param {boolean} [isVip]
|
|
5238
|
-
* @param {
|
|
5218
|
+
* @param {boolean} [isHistory]
|
|
5239
5219
|
* @param {boolean} [isExport]
|
|
5240
5220
|
* @param {*} [options] Override http request option.
|
|
5241
5221
|
* @throws {RequiredError}
|
|
5242
5222
|
* @memberof DefaultApi
|
|
5243
5223
|
*/
|
|
5244
|
-
registeredVehiclesHistoryIndex(orderBy?: string, orderDirection?: string, pageNumber?: number, pageSize?: number, filterBy?: string, filterKey?: string, startDate?: string, endDate?: string,
|
|
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>>;
|
|
5245
5225
|
/**
|
|
5246
5226
|
*
|
|
5247
5227
|
* @param {string} [orderBy]
|
|
@@ -5252,16 +5232,14 @@ export declare class DefaultApi extends BaseAPI {
|
|
|
5252
5232
|
* @param {string} [filterKey]
|
|
5253
5233
|
* @param {string} [startDate]
|
|
5254
5234
|
* @param {string} [endDate]
|
|
5255
|
-
* @param {string} [plateNo]
|
|
5256
|
-
* @param {string} [plateProvince]
|
|
5257
5235
|
* @param {boolean} [isVip]
|
|
5258
|
-
* @param {
|
|
5236
|
+
* @param {boolean} [isHistory]
|
|
5259
5237
|
* @param {boolean} [isExport]
|
|
5260
5238
|
* @param {*} [options] Override http request option.
|
|
5261
5239
|
* @throws {RequiredError}
|
|
5262
5240
|
* @memberof DefaultApi
|
|
5263
5241
|
*/
|
|
5264
|
-
registeredVehiclesIndex(orderBy?: string, orderDirection?: string, pageNumber?: number, pageSize?: number, filterBy?: string, filterKey?: string, startDate?: string, endDate?: string,
|
|
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>>;
|
|
5265
5243
|
/**
|
|
5266
5244
|
*
|
|
5267
5245
|
* @param {string} plateNo
|
package/dist/api/api.js
CHANGED
|
@@ -1480,15 +1480,13 @@ 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 {
|
|
1484
|
+
* @param {boolean} [isHistory]
|
|
1487
1485
|
* @param {boolean} [isExport]
|
|
1488
1486
|
* @param {*} [options] Override http request option.
|
|
1489
1487
|
* @throws {RequiredError}
|
|
1490
1488
|
*/
|
|
1491
|
-
registeredVehiclesHistoryIndex: (orderBy, orderDirection, pageNumber, pageSize, filterBy, filterKey, startDate, endDate,
|
|
1489
|
+
registeredVehiclesHistoryIndex: (orderBy, orderDirection, pageNumber, pageSize, filterBy, filterKey, startDate, endDate, isVip, isHistory, isExport, options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
1492
1490
|
const localVarPath = `/registered-vehicles/history`;
|
|
1493
1491
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
1494
1492
|
const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
@@ -1523,17 +1521,11 @@ const DefaultApiAxiosParamCreator = function (configuration) {
|
|
|
1523
1521
|
if (endDate !== undefined) {
|
|
1524
1522
|
localVarQueryParameter['endDate'] = endDate;
|
|
1525
1523
|
}
|
|
1526
|
-
if (plateNo !== undefined) {
|
|
1527
|
-
localVarQueryParameter['plate_no'] = plateNo;
|
|
1528
|
-
}
|
|
1529
|
-
if (plateProvince !== undefined) {
|
|
1530
|
-
localVarQueryParameter['plate_province'] = plateProvince;
|
|
1531
|
-
}
|
|
1532
1524
|
if (isVip !== undefined) {
|
|
1533
1525
|
localVarQueryParameter['is_vip'] = isVip;
|
|
1534
1526
|
}
|
|
1535
|
-
if (
|
|
1536
|
-
localVarQueryParameter['
|
|
1527
|
+
if (isHistory !== undefined) {
|
|
1528
|
+
localVarQueryParameter['is_history'] = isHistory;
|
|
1537
1529
|
}
|
|
1538
1530
|
if (isExport !== undefined) {
|
|
1539
1531
|
localVarQueryParameter['is_export'] = isExport;
|
|
@@ -1556,15 +1548,13 @@ const DefaultApiAxiosParamCreator = function (configuration) {
|
|
|
1556
1548
|
* @param {string} [filterKey]
|
|
1557
1549
|
* @param {string} [startDate]
|
|
1558
1550
|
* @param {string} [endDate]
|
|
1559
|
-
* @param {string} [plateNo]
|
|
1560
|
-
* @param {string} [plateProvince]
|
|
1561
1551
|
* @param {boolean} [isVip]
|
|
1562
|
-
* @param {
|
|
1552
|
+
* @param {boolean} [isHistory]
|
|
1563
1553
|
* @param {boolean} [isExport]
|
|
1564
1554
|
* @param {*} [options] Override http request option.
|
|
1565
1555
|
* @throws {RequiredError}
|
|
1566
1556
|
*/
|
|
1567
|
-
registeredVehiclesIndex: (orderBy, orderDirection, pageNumber, pageSize, filterBy, filterKey, startDate, endDate,
|
|
1557
|
+
registeredVehiclesIndex: (orderBy, orderDirection, pageNumber, pageSize, filterBy, filterKey, startDate, endDate, isVip, isHistory, isExport, options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
1568
1558
|
const localVarPath = `/registered-vehicles`;
|
|
1569
1559
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
1570
1560
|
const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
@@ -1599,17 +1589,11 @@ const DefaultApiAxiosParamCreator = function (configuration) {
|
|
|
1599
1589
|
if (endDate !== undefined) {
|
|
1600
1590
|
localVarQueryParameter['endDate'] = endDate;
|
|
1601
1591
|
}
|
|
1602
|
-
if (plateNo !== undefined) {
|
|
1603
|
-
localVarQueryParameter['plate_no'] = plateNo;
|
|
1604
|
-
}
|
|
1605
|
-
if (plateProvince !== undefined) {
|
|
1606
|
-
localVarQueryParameter['plate_province'] = plateProvince;
|
|
1607
|
-
}
|
|
1608
1592
|
if (isVip !== undefined) {
|
|
1609
1593
|
localVarQueryParameter['is_vip'] = isVip;
|
|
1610
1594
|
}
|
|
1611
|
-
if (
|
|
1612
|
-
localVarQueryParameter['
|
|
1595
|
+
if (isHistory !== undefined) {
|
|
1596
|
+
localVarQueryParameter['is_history'] = isHistory;
|
|
1613
1597
|
}
|
|
1614
1598
|
if (isExport !== undefined) {
|
|
1615
1599
|
localVarQueryParameter['is_export'] = isExport;
|
|
@@ -2429,17 +2413,15 @@ const DefaultApiFp = function (configuration) {
|
|
|
2429
2413
|
* @param {string} [filterKey]
|
|
2430
2414
|
* @param {string} [startDate]
|
|
2431
2415
|
* @param {string} [endDate]
|
|
2432
|
-
* @param {string} [plateNo]
|
|
2433
|
-
* @param {string} [plateProvince]
|
|
2434
2416
|
* @param {boolean} [isVip]
|
|
2435
|
-
* @param {
|
|
2417
|
+
* @param {boolean} [isHistory]
|
|
2436
2418
|
* @param {boolean} [isExport]
|
|
2437
2419
|
* @param {*} [options] Override http request option.
|
|
2438
2420
|
* @throws {RequiredError}
|
|
2439
2421
|
*/
|
|
2440
|
-
registeredVehiclesHistoryIndex(orderBy, orderDirection, pageNumber, pageSize, filterBy, filterKey, startDate, endDate,
|
|
2422
|
+
registeredVehiclesHistoryIndex(orderBy, orderDirection, pageNumber, pageSize, filterBy, filterKey, startDate, endDate, isVip, isHistory, isExport, options) {
|
|
2441
2423
|
return __awaiter(this, void 0, void 0, function* () {
|
|
2442
|
-
const localVarAxiosArgs = yield localVarAxiosParamCreator.registeredVehiclesHistoryIndex(orderBy, orderDirection, pageNumber, pageSize, filterBy, filterKey, startDate, endDate,
|
|
2424
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.registeredVehiclesHistoryIndex(orderBy, orderDirection, pageNumber, pageSize, filterBy, filterKey, startDate, endDate, isVip, isHistory, isExport, options);
|
|
2443
2425
|
return (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration);
|
|
2444
2426
|
});
|
|
2445
2427
|
},
|
|
@@ -2453,17 +2435,15 @@ const DefaultApiFp = function (configuration) {
|
|
|
2453
2435
|
* @param {string} [filterKey]
|
|
2454
2436
|
* @param {string} [startDate]
|
|
2455
2437
|
* @param {string} [endDate]
|
|
2456
|
-
* @param {string} [plateNo]
|
|
2457
|
-
* @param {string} [plateProvince]
|
|
2458
2438
|
* @param {boolean} [isVip]
|
|
2459
|
-
* @param {
|
|
2439
|
+
* @param {boolean} [isHistory]
|
|
2460
2440
|
* @param {boolean} [isExport]
|
|
2461
2441
|
* @param {*} [options] Override http request option.
|
|
2462
2442
|
* @throws {RequiredError}
|
|
2463
2443
|
*/
|
|
2464
|
-
registeredVehiclesIndex(orderBy, orderDirection, pageNumber, pageSize, filterBy, filterKey, startDate, endDate,
|
|
2444
|
+
registeredVehiclesIndex(orderBy, orderDirection, pageNumber, pageSize, filterBy, filterKey, startDate, endDate, isVip, isHistory, isExport, options) {
|
|
2465
2445
|
return __awaiter(this, void 0, void 0, function* () {
|
|
2466
|
-
const localVarAxiosArgs = yield localVarAxiosParamCreator.registeredVehiclesIndex(orderBy, orderDirection, pageNumber, pageSize, filterBy, filterKey, startDate, endDate,
|
|
2446
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.registeredVehiclesIndex(orderBy, orderDirection, pageNumber, pageSize, filterBy, filterKey, startDate, endDate, isVip, isHistory, isExport, options);
|
|
2467
2447
|
return (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration);
|
|
2468
2448
|
});
|
|
2469
2449
|
},
|
|
@@ -3005,16 +2985,14 @@ const DefaultApiFactory = function (configuration, basePath, axios) {
|
|
|
3005
2985
|
* @param {string} [filterKey]
|
|
3006
2986
|
* @param {string} [startDate]
|
|
3007
2987
|
* @param {string} [endDate]
|
|
3008
|
-
* @param {string} [plateNo]
|
|
3009
|
-
* @param {string} [plateProvince]
|
|
3010
2988
|
* @param {boolean} [isVip]
|
|
3011
|
-
* @param {
|
|
2989
|
+
* @param {boolean} [isHistory]
|
|
3012
2990
|
* @param {boolean} [isExport]
|
|
3013
2991
|
* @param {*} [options] Override http request option.
|
|
3014
2992
|
* @throws {RequiredError}
|
|
3015
2993
|
*/
|
|
3016
|
-
registeredVehiclesHistoryIndex(orderBy, orderDirection, pageNumber, pageSize, filterBy, filterKey, startDate, endDate,
|
|
3017
|
-
return localVarFp.registeredVehiclesHistoryIndex(orderBy, orderDirection, pageNumber, pageSize, filterBy, filterKey, startDate, endDate,
|
|
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));
|
|
3018
2996
|
},
|
|
3019
2997
|
/**
|
|
3020
2998
|
*
|
|
@@ -3026,16 +3004,14 @@ const DefaultApiFactory = function (configuration, basePath, axios) {
|
|
|
3026
3004
|
* @param {string} [filterKey]
|
|
3027
3005
|
* @param {string} [startDate]
|
|
3028
3006
|
* @param {string} [endDate]
|
|
3029
|
-
* @param {string} [plateNo]
|
|
3030
|
-
* @param {string} [plateProvince]
|
|
3031
3007
|
* @param {boolean} [isVip]
|
|
3032
|
-
* @param {
|
|
3008
|
+
* @param {boolean} [isHistory]
|
|
3033
3009
|
* @param {boolean} [isExport]
|
|
3034
3010
|
* @param {*} [options] Override http request option.
|
|
3035
3011
|
* @throws {RequiredError}
|
|
3036
3012
|
*/
|
|
3037
|
-
registeredVehiclesIndex(orderBy, orderDirection, pageNumber, pageSize, filterBy, filterKey, startDate, endDate,
|
|
3038
|
-
return localVarFp.registeredVehiclesIndex(orderBy, orderDirection, pageNumber, pageSize, filterBy, filterKey, startDate, endDate,
|
|
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));
|
|
3039
3015
|
},
|
|
3040
3016
|
/**
|
|
3041
3017
|
*
|
|
@@ -3586,17 +3562,15 @@ class DefaultApi extends base_1.BaseAPI {
|
|
|
3586
3562
|
* @param {string} [filterKey]
|
|
3587
3563
|
* @param {string} [startDate]
|
|
3588
3564
|
* @param {string} [endDate]
|
|
3589
|
-
* @param {string} [plateNo]
|
|
3590
|
-
* @param {string} [plateProvince]
|
|
3591
3565
|
* @param {boolean} [isVip]
|
|
3592
|
-
* @param {
|
|
3566
|
+
* @param {boolean} [isHistory]
|
|
3593
3567
|
* @param {boolean} [isExport]
|
|
3594
3568
|
* @param {*} [options] Override http request option.
|
|
3595
3569
|
* @throws {RequiredError}
|
|
3596
3570
|
* @memberof DefaultApi
|
|
3597
3571
|
*/
|
|
3598
|
-
registeredVehiclesHistoryIndex(orderBy, orderDirection, pageNumber, pageSize, filterBy, filterKey, startDate, endDate,
|
|
3599
|
-
return (0, exports.DefaultApiFp)(this.configuration).registeredVehiclesHistoryIndex(orderBy, orderDirection, pageNumber, pageSize, filterBy, filterKey, startDate, endDate,
|
|
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));
|
|
3600
3574
|
}
|
|
3601
3575
|
/**
|
|
3602
3576
|
*
|
|
@@ -3608,17 +3582,15 @@ class DefaultApi extends base_1.BaseAPI {
|
|
|
3608
3582
|
* @param {string} [filterKey]
|
|
3609
3583
|
* @param {string} [startDate]
|
|
3610
3584
|
* @param {string} [endDate]
|
|
3611
|
-
* @param {string} [plateNo]
|
|
3612
|
-
* @param {string} [plateProvince]
|
|
3613
3585
|
* @param {boolean} [isVip]
|
|
3614
|
-
* @param {
|
|
3586
|
+
* @param {boolean} [isHistory]
|
|
3615
3587
|
* @param {boolean} [isExport]
|
|
3616
3588
|
* @param {*} [options] Override http request option.
|
|
3617
3589
|
* @throws {RequiredError}
|
|
3618
3590
|
* @memberof DefaultApi
|
|
3619
3591
|
*/
|
|
3620
|
-
registeredVehiclesIndex(orderBy, orderDirection, pageNumber, pageSize, filterBy, filterKey, startDate, endDate,
|
|
3621
|
-
return (0, exports.DefaultApiFp)(this.configuration).registeredVehiclesIndex(orderBy, orderDirection, pageNumber, pageSize, filterBy, filterKey, startDate, endDate,
|
|
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));
|
|
3622
3594
|
}
|
|
3623
3595
|
/**
|
|
3624
3596
|
*
|