ob-parking-sdk 0.0.2 → 0.0.4
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 +31 -43
- package/dist/api/api.d.ts +20 -30
- package/dist/api/api.js +25 -32
- package/package.json +1 -1
package/api/api.ts
CHANGED
|
@@ -118,26 +118,22 @@ export interface GetParkingDetailIndexQuery {
|
|
|
118
118
|
* @type {string}
|
|
119
119
|
* @memberof GetParkingDetailIndexQuery
|
|
120
120
|
*/
|
|
121
|
-
'
|
|
121
|
+
'startDate'?: string;
|
|
122
122
|
/**
|
|
123
123
|
*
|
|
124
124
|
* @type {string}
|
|
125
125
|
* @memberof GetParkingDetailIndexQuery
|
|
126
126
|
*/
|
|
127
|
-
'
|
|
127
|
+
'endDate'?: string;
|
|
128
128
|
/**
|
|
129
129
|
*
|
|
130
|
-
* @type {
|
|
131
|
-
* @memberof GetParkingDetailIndexQuery
|
|
132
|
-
*/
|
|
133
|
-
'accountDetail.middleName'?: string;
|
|
134
|
-
/**
|
|
135
|
-
*
|
|
136
|
-
* @type {string}
|
|
130
|
+
* @type {ParkingDetailStatus}
|
|
137
131
|
* @memberof GetParkingDetailIndexQuery
|
|
138
132
|
*/
|
|
139
|
-
'
|
|
133
|
+
'status'?: ParkingDetailStatus;
|
|
140
134
|
}
|
|
135
|
+
|
|
136
|
+
|
|
141
137
|
/**
|
|
142
138
|
*
|
|
143
139
|
* @export
|
|
@@ -492,14 +488,13 @@ export const DefaultApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
492
488
|
* @param {number} [pageSize]
|
|
493
489
|
* @param {string} [filterBy]
|
|
494
490
|
* @param {string} [filterKey]
|
|
495
|
-
* @param {string} [
|
|
496
|
-
* @param {string} [
|
|
497
|
-
* @param {
|
|
498
|
-
* @param {string} [accountDetailId]
|
|
491
|
+
* @param {string} [startDate]
|
|
492
|
+
* @param {string} [endDate]
|
|
493
|
+
* @param {ParkingDetailStatus} [status]
|
|
499
494
|
* @param {*} [options] Override http request option.
|
|
500
495
|
* @throws {RequiredError}
|
|
501
496
|
*/
|
|
502
|
-
parkingDetailsIndex: async (orderBy?: string, orderDirection?: string, pageNumber?: number, pageSize?: number, filterBy?: string, filterKey?: string,
|
|
497
|
+
parkingDetailsIndex: async (orderBy?: string, orderDirection?: string, pageNumber?: number, pageSize?: number, filterBy?: string, filterKey?: string, startDate?: string, endDate?: string, status?: ParkingDetailStatus, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
503
498
|
const localVarPath = `/parking-details`;
|
|
504
499
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
505
500
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -536,20 +531,16 @@ export const DefaultApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
536
531
|
localVarQueryParameter['filter_key'] = filterKey;
|
|
537
532
|
}
|
|
538
533
|
|
|
539
|
-
if (
|
|
540
|
-
localVarQueryParameter['
|
|
541
|
-
}
|
|
542
|
-
|
|
543
|
-
if (accountDetailLastName !== undefined) {
|
|
544
|
-
localVarQueryParameter['accountDetail.lastName'] = accountDetailLastName;
|
|
534
|
+
if (startDate !== undefined) {
|
|
535
|
+
localVarQueryParameter['startDate'] = startDate;
|
|
545
536
|
}
|
|
546
537
|
|
|
547
|
-
if (
|
|
548
|
-
localVarQueryParameter['
|
|
538
|
+
if (endDate !== undefined) {
|
|
539
|
+
localVarQueryParameter['endDate'] = endDate;
|
|
549
540
|
}
|
|
550
541
|
|
|
551
|
-
if (
|
|
552
|
-
localVarQueryParameter['
|
|
542
|
+
if (status !== undefined) {
|
|
543
|
+
localVarQueryParameter['status'] = status;
|
|
553
544
|
}
|
|
554
545
|
|
|
555
546
|
|
|
@@ -632,15 +623,14 @@ export const DefaultApiFp = function(configuration?: Configuration) {
|
|
|
632
623
|
* @param {number} [pageSize]
|
|
633
624
|
* @param {string} [filterBy]
|
|
634
625
|
* @param {string} [filterKey]
|
|
635
|
-
* @param {string} [
|
|
636
|
-
* @param {string} [
|
|
637
|
-
* @param {
|
|
638
|
-
* @param {string} [accountDetailId]
|
|
626
|
+
* @param {string} [startDate]
|
|
627
|
+
* @param {string} [endDate]
|
|
628
|
+
* @param {ParkingDetailStatus} [status]
|
|
639
629
|
* @param {*} [options] Override http request option.
|
|
640
630
|
* @throws {RequiredError}
|
|
641
631
|
*/
|
|
642
|
-
async parkingDetailsIndex(orderBy?: string, orderDirection?: string, pageNumber?: number, pageSize?: number, filterBy?: string, filterKey?: string,
|
|
643
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.parkingDetailsIndex(orderBy, orderDirection, pageNumber, pageSize, filterBy, filterKey,
|
|
632
|
+
async parkingDetailsIndex(orderBy?: string, orderDirection?: string, pageNumber?: number, pageSize?: number, filterBy?: string, filterKey?: string, startDate?: string, endDate?: string, status?: ParkingDetailStatus, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ResponseDataGetParkingDetailsIndexResponseArray>> {
|
|
633
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.parkingDetailsIndex(orderBy, orderDirection, pageNumber, pageSize, filterBy, filterKey, startDate, endDate, status, options);
|
|
644
634
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
645
635
|
},
|
|
646
636
|
/**
|
|
@@ -690,15 +680,14 @@ export const DefaultApiFactory = function (configuration?: Configuration, basePa
|
|
|
690
680
|
* @param {number} [pageSize]
|
|
691
681
|
* @param {string} [filterBy]
|
|
692
682
|
* @param {string} [filterKey]
|
|
693
|
-
* @param {string} [
|
|
694
|
-
* @param {string} [
|
|
695
|
-
* @param {
|
|
696
|
-
* @param {string} [accountDetailId]
|
|
683
|
+
* @param {string} [startDate]
|
|
684
|
+
* @param {string} [endDate]
|
|
685
|
+
* @param {ParkingDetailStatus} [status]
|
|
697
686
|
* @param {*} [options] Override http request option.
|
|
698
687
|
* @throws {RequiredError}
|
|
699
688
|
*/
|
|
700
|
-
parkingDetailsIndex(orderBy?: string, orderDirection?: string, pageNumber?: number, pageSize?: number, filterBy?: string, filterKey?: string,
|
|
701
|
-
return localVarFp.parkingDetailsIndex(orderBy, orderDirection, pageNumber, pageSize, filterBy, filterKey,
|
|
689
|
+
parkingDetailsIndex(orderBy?: string, orderDirection?: string, pageNumber?: number, pageSize?: number, filterBy?: string, filterKey?: string, startDate?: string, endDate?: string, status?: ParkingDetailStatus, options?: any): AxiosPromise<ResponseDataGetParkingDetailsIndexResponseArray> {
|
|
690
|
+
return localVarFp.parkingDetailsIndex(orderBy, orderDirection, pageNumber, pageSize, filterBy, filterKey, startDate, endDate, status, options).then((request) => request(axios, basePath));
|
|
702
691
|
},
|
|
703
692
|
/**
|
|
704
693
|
*
|
|
@@ -750,16 +739,15 @@ export class DefaultApi extends BaseAPI {
|
|
|
750
739
|
* @param {number} [pageSize]
|
|
751
740
|
* @param {string} [filterBy]
|
|
752
741
|
* @param {string} [filterKey]
|
|
753
|
-
* @param {string} [
|
|
754
|
-
* @param {string} [
|
|
755
|
-
* @param {
|
|
756
|
-
* @param {string} [accountDetailId]
|
|
742
|
+
* @param {string} [startDate]
|
|
743
|
+
* @param {string} [endDate]
|
|
744
|
+
* @param {ParkingDetailStatus} [status]
|
|
757
745
|
* @param {*} [options] Override http request option.
|
|
758
746
|
* @throws {RequiredError}
|
|
759
747
|
* @memberof DefaultApi
|
|
760
748
|
*/
|
|
761
|
-
public parkingDetailsIndex(orderBy?: string, orderDirection?: string, pageNumber?: number, pageSize?: number, filterBy?: string, filterKey?: string,
|
|
762
|
-
return DefaultApiFp(this.configuration).parkingDetailsIndex(orderBy, orderDirection, pageNumber, pageSize, filterBy, filterKey,
|
|
749
|
+
public parkingDetailsIndex(orderBy?: string, orderDirection?: string, pageNumber?: number, pageSize?: number, filterBy?: string, filterKey?: string, startDate?: string, endDate?: string, status?: ParkingDetailStatus, options?: AxiosRequestConfig) {
|
|
750
|
+
return DefaultApiFp(this.configuration).parkingDetailsIndex(orderBy, orderDirection, pageNumber, pageSize, filterBy, filterKey, startDate, endDate, status, options).then((request) => request(this.axios, this.basePath));
|
|
763
751
|
}
|
|
764
752
|
|
|
765
753
|
/**
|
package/dist/api/api.d.ts
CHANGED
|
@@ -102,25 +102,19 @@ export interface GetParkingDetailIndexQuery {
|
|
|
102
102
|
* @type {string}
|
|
103
103
|
* @memberof GetParkingDetailIndexQuery
|
|
104
104
|
*/
|
|
105
|
-
'
|
|
105
|
+
'startDate'?: string;
|
|
106
106
|
/**
|
|
107
107
|
*
|
|
108
108
|
* @type {string}
|
|
109
109
|
* @memberof GetParkingDetailIndexQuery
|
|
110
110
|
*/
|
|
111
|
-
'
|
|
111
|
+
'endDate'?: string;
|
|
112
112
|
/**
|
|
113
113
|
*
|
|
114
|
-
* @type {
|
|
115
|
-
* @memberof GetParkingDetailIndexQuery
|
|
116
|
-
*/
|
|
117
|
-
'accountDetail.middleName'?: string;
|
|
118
|
-
/**
|
|
119
|
-
*
|
|
120
|
-
* @type {string}
|
|
114
|
+
* @type {ParkingDetailStatus}
|
|
121
115
|
* @memberof GetParkingDetailIndexQuery
|
|
122
116
|
*/
|
|
123
|
-
'
|
|
117
|
+
'status'?: ParkingDetailStatus;
|
|
124
118
|
}
|
|
125
119
|
/**
|
|
126
120
|
*
|
|
@@ -397,14 +391,13 @@ export declare const DefaultApiAxiosParamCreator: (configuration?: Configuration
|
|
|
397
391
|
* @param {number} [pageSize]
|
|
398
392
|
* @param {string} [filterBy]
|
|
399
393
|
* @param {string} [filterKey]
|
|
400
|
-
* @param {string} [
|
|
401
|
-
* @param {string} [
|
|
402
|
-
* @param {
|
|
403
|
-
* @param {string} [accountDetailId]
|
|
394
|
+
* @param {string} [startDate]
|
|
395
|
+
* @param {string} [endDate]
|
|
396
|
+
* @param {ParkingDetailStatus} [status]
|
|
404
397
|
* @param {*} [options] Override http request option.
|
|
405
398
|
* @throws {RequiredError}
|
|
406
399
|
*/
|
|
407
|
-
parkingDetailsIndex: (orderBy?: string, orderDirection?: string, pageNumber?: number, pageSize?: number, filterBy?: string, filterKey?: string,
|
|
400
|
+
parkingDetailsIndex: (orderBy?: string, orderDirection?: string, pageNumber?: number, pageSize?: number, filterBy?: string, filterKey?: string, startDate?: string, endDate?: string, status?: ParkingDetailStatus, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
408
401
|
/**
|
|
409
402
|
*
|
|
410
403
|
* @param {*} [options] Override http request option.
|
|
@@ -441,14 +434,13 @@ export declare const DefaultApiFp: (configuration?: Configuration) => {
|
|
|
441
434
|
* @param {number} [pageSize]
|
|
442
435
|
* @param {string} [filterBy]
|
|
443
436
|
* @param {string} [filterKey]
|
|
444
|
-
* @param {string} [
|
|
445
|
-
* @param {string} [
|
|
446
|
-
* @param {
|
|
447
|
-
* @param {string} [accountDetailId]
|
|
437
|
+
* @param {string} [startDate]
|
|
438
|
+
* @param {string} [endDate]
|
|
439
|
+
* @param {ParkingDetailStatus} [status]
|
|
448
440
|
* @param {*} [options] Override http request option.
|
|
449
441
|
* @throws {RequiredError}
|
|
450
442
|
*/
|
|
451
|
-
parkingDetailsIndex(orderBy?: string, orderDirection?: string, pageNumber?: number, pageSize?: number, filterBy?: string, filterKey?: string,
|
|
443
|
+
parkingDetailsIndex(orderBy?: string, orderDirection?: string, pageNumber?: number, pageSize?: number, filterBy?: string, filterKey?: string, startDate?: string, endDate?: string, status?: ParkingDetailStatus, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ResponseDataGetParkingDetailsIndexResponseArray>>;
|
|
452
444
|
/**
|
|
453
445
|
*
|
|
454
446
|
* @param {*} [options] Override http request option.
|
|
@@ -485,14 +477,13 @@ export declare const DefaultApiFactory: (configuration?: Configuration, basePath
|
|
|
485
477
|
* @param {number} [pageSize]
|
|
486
478
|
* @param {string} [filterBy]
|
|
487
479
|
* @param {string} [filterKey]
|
|
488
|
-
* @param {string} [
|
|
489
|
-
* @param {string} [
|
|
490
|
-
* @param {
|
|
491
|
-
* @param {string} [accountDetailId]
|
|
480
|
+
* @param {string} [startDate]
|
|
481
|
+
* @param {string} [endDate]
|
|
482
|
+
* @param {ParkingDetailStatus} [status]
|
|
492
483
|
* @param {*} [options] Override http request option.
|
|
493
484
|
* @throws {RequiredError}
|
|
494
485
|
*/
|
|
495
|
-
parkingDetailsIndex(orderBy?: string, orderDirection?: string, pageNumber?: number, pageSize?: number, filterBy?: string, filterKey?: string,
|
|
486
|
+
parkingDetailsIndex(orderBy?: string, orderDirection?: string, pageNumber?: number, pageSize?: number, filterBy?: string, filterKey?: string, startDate?: string, endDate?: string, status?: ParkingDetailStatus, options?: any): AxiosPromise<ResponseDataGetParkingDetailsIndexResponseArray>;
|
|
496
487
|
/**
|
|
497
488
|
*
|
|
498
489
|
* @param {*} [options] Override http request option.
|
|
@@ -533,15 +524,14 @@ export declare class DefaultApi extends BaseAPI {
|
|
|
533
524
|
* @param {number} [pageSize]
|
|
534
525
|
* @param {string} [filterBy]
|
|
535
526
|
* @param {string} [filterKey]
|
|
536
|
-
* @param {string} [
|
|
537
|
-
* @param {string} [
|
|
538
|
-
* @param {
|
|
539
|
-
* @param {string} [accountDetailId]
|
|
527
|
+
* @param {string} [startDate]
|
|
528
|
+
* @param {string} [endDate]
|
|
529
|
+
* @param {ParkingDetailStatus} [status]
|
|
540
530
|
* @param {*} [options] Override http request option.
|
|
541
531
|
* @throws {RequiredError}
|
|
542
532
|
* @memberof DefaultApi
|
|
543
533
|
*/
|
|
544
|
-
parkingDetailsIndex(orderBy?: string, orderDirection?: string, pageNumber?: number, pageSize?: number, filterBy?: string, filterKey?: string,
|
|
534
|
+
parkingDetailsIndex(orderBy?: string, orderDirection?: string, pageNumber?: number, pageSize?: number, filterBy?: string, filterKey?: string, startDate?: string, endDate?: string, status?: ParkingDetailStatus, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ResponseDataGetParkingDetailsIndexResponseArray, any>>;
|
|
545
535
|
/**
|
|
546
536
|
*
|
|
547
537
|
* @param {*} [options] Override http request option.
|
package/dist/api/api.js
CHANGED
|
@@ -144,14 +144,13 @@ const DefaultApiAxiosParamCreator = function (configuration) {
|
|
|
144
144
|
* @param {number} [pageSize]
|
|
145
145
|
* @param {string} [filterBy]
|
|
146
146
|
* @param {string} [filterKey]
|
|
147
|
-
* @param {string} [
|
|
148
|
-
* @param {string} [
|
|
149
|
-
* @param {
|
|
150
|
-
* @param {string} [accountDetailId]
|
|
147
|
+
* @param {string} [startDate]
|
|
148
|
+
* @param {string} [endDate]
|
|
149
|
+
* @param {ParkingDetailStatus} [status]
|
|
151
150
|
* @param {*} [options] Override http request option.
|
|
152
151
|
* @throws {RequiredError}
|
|
153
152
|
*/
|
|
154
|
-
parkingDetailsIndex: (orderBy, orderDirection, pageNumber, pageSize, filterBy, filterKey,
|
|
153
|
+
parkingDetailsIndex: (orderBy, orderDirection, pageNumber, pageSize, filterBy, filterKey, startDate, endDate, status, options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
155
154
|
const localVarPath = `/parking-details`;
|
|
156
155
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
157
156
|
const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
@@ -180,17 +179,14 @@ const DefaultApiAxiosParamCreator = function (configuration) {
|
|
|
180
179
|
if (filterKey !== undefined) {
|
|
181
180
|
localVarQueryParameter['filter_key'] = filterKey;
|
|
182
181
|
}
|
|
183
|
-
if (
|
|
184
|
-
localVarQueryParameter['
|
|
182
|
+
if (startDate !== undefined) {
|
|
183
|
+
localVarQueryParameter['startDate'] = startDate;
|
|
185
184
|
}
|
|
186
|
-
if (
|
|
187
|
-
localVarQueryParameter['
|
|
185
|
+
if (endDate !== undefined) {
|
|
186
|
+
localVarQueryParameter['endDate'] = endDate;
|
|
188
187
|
}
|
|
189
|
-
if (
|
|
190
|
-
localVarQueryParameter['
|
|
191
|
-
}
|
|
192
|
-
if (accountDetailId !== undefined) {
|
|
193
|
-
localVarQueryParameter['accountDetail.id'] = accountDetailId;
|
|
188
|
+
if (status !== undefined) {
|
|
189
|
+
localVarQueryParameter['status'] = status;
|
|
194
190
|
}
|
|
195
191
|
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
196
192
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
@@ -268,16 +264,15 @@ const DefaultApiFp = function (configuration) {
|
|
|
268
264
|
* @param {number} [pageSize]
|
|
269
265
|
* @param {string} [filterBy]
|
|
270
266
|
* @param {string} [filterKey]
|
|
271
|
-
* @param {string} [
|
|
272
|
-
* @param {string} [
|
|
273
|
-
* @param {
|
|
274
|
-
* @param {string} [accountDetailId]
|
|
267
|
+
* @param {string} [startDate]
|
|
268
|
+
* @param {string} [endDate]
|
|
269
|
+
* @param {ParkingDetailStatus} [status]
|
|
275
270
|
* @param {*} [options] Override http request option.
|
|
276
271
|
* @throws {RequiredError}
|
|
277
272
|
*/
|
|
278
|
-
parkingDetailsIndex(orderBy, orderDirection, pageNumber, pageSize, filterBy, filterKey,
|
|
273
|
+
parkingDetailsIndex(orderBy, orderDirection, pageNumber, pageSize, filterBy, filterKey, startDate, endDate, status, options) {
|
|
279
274
|
return __awaiter(this, void 0, void 0, function* () {
|
|
280
|
-
const localVarAxiosArgs = yield localVarAxiosParamCreator.parkingDetailsIndex(orderBy, orderDirection, pageNumber, pageSize, filterBy, filterKey,
|
|
275
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.parkingDetailsIndex(orderBy, orderDirection, pageNumber, pageSize, filterBy, filterKey, startDate, endDate, status, options);
|
|
281
276
|
return (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration);
|
|
282
277
|
});
|
|
283
278
|
},
|
|
@@ -330,15 +325,14 @@ const DefaultApiFactory = function (configuration, basePath, axios) {
|
|
|
330
325
|
* @param {number} [pageSize]
|
|
331
326
|
* @param {string} [filterBy]
|
|
332
327
|
* @param {string} [filterKey]
|
|
333
|
-
* @param {string} [
|
|
334
|
-
* @param {string} [
|
|
335
|
-
* @param {
|
|
336
|
-
* @param {string} [accountDetailId]
|
|
328
|
+
* @param {string} [startDate]
|
|
329
|
+
* @param {string} [endDate]
|
|
330
|
+
* @param {ParkingDetailStatus} [status]
|
|
337
331
|
* @param {*} [options] Override http request option.
|
|
338
332
|
* @throws {RequiredError}
|
|
339
333
|
*/
|
|
340
|
-
parkingDetailsIndex(orderBy, orderDirection, pageNumber, pageSize, filterBy, filterKey,
|
|
341
|
-
return localVarFp.parkingDetailsIndex(orderBy, orderDirection, pageNumber, pageSize, filterBy, filterKey,
|
|
334
|
+
parkingDetailsIndex(orderBy, orderDirection, pageNumber, pageSize, filterBy, filterKey, startDate, endDate, status, options) {
|
|
335
|
+
return localVarFp.parkingDetailsIndex(orderBy, orderDirection, pageNumber, pageSize, filterBy, filterKey, startDate, endDate, status, options).then((request) => request(axios, basePath));
|
|
342
336
|
},
|
|
343
337
|
/**
|
|
344
338
|
*
|
|
@@ -388,16 +382,15 @@ class DefaultApi extends base_1.BaseAPI {
|
|
|
388
382
|
* @param {number} [pageSize]
|
|
389
383
|
* @param {string} [filterBy]
|
|
390
384
|
* @param {string} [filterKey]
|
|
391
|
-
* @param {string} [
|
|
392
|
-
* @param {string} [
|
|
393
|
-
* @param {
|
|
394
|
-
* @param {string} [accountDetailId]
|
|
385
|
+
* @param {string} [startDate]
|
|
386
|
+
* @param {string} [endDate]
|
|
387
|
+
* @param {ParkingDetailStatus} [status]
|
|
395
388
|
* @param {*} [options] Override http request option.
|
|
396
389
|
* @throws {RequiredError}
|
|
397
390
|
* @memberof DefaultApi
|
|
398
391
|
*/
|
|
399
|
-
parkingDetailsIndex(orderBy, orderDirection, pageNumber, pageSize, filterBy, filterKey,
|
|
400
|
-
return (0, exports.DefaultApiFp)(this.configuration).parkingDetailsIndex(orderBy, orderDirection, pageNumber, pageSize, filterBy, filterKey,
|
|
392
|
+
parkingDetailsIndex(orderBy, orderDirection, pageNumber, pageSize, filterBy, filterKey, startDate, endDate, status, options) {
|
|
393
|
+
return (0, exports.DefaultApiFp)(this.configuration).parkingDetailsIndex(orderBy, orderDirection, pageNumber, pageSize, filterBy, filterKey, startDate, endDate, status, options).then((request) => request(this.axios, this.basePath));
|
|
401
394
|
}
|
|
402
395
|
/**
|
|
403
396
|
*
|