ob-parking-sdk 0.0.68 → 0.0.69
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 +252 -2
- package/api/base.ts +1 -1
- package/api/common.ts +1 -1
- package/api/configuration.ts +1 -1
- package/api/index.ts +1 -1
- package/dist/api/api.d.ts +173 -2
- package/dist/api/api.js +137 -1
- package/dist/api/base.d.ts +1 -1
- package/dist/api/base.js +1 -1
- package/dist/api/common.d.ts +1 -1
- package/dist/api/common.js +1 -1
- package/dist/api/configuration.d.ts +1 -1
- package/dist/api/configuration.js +1 -1
- package/dist/api/index.d.ts +1 -1
- package/dist/api/index.js +1 -1
- package/package.json +1 -1
package/api/api.ts
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* obk-parking
|
|
5
5
|
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 1.27.
|
|
7
|
+
* The version of the OpenAPI document: 1.27.4
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -1737,6 +1737,85 @@ export interface GetParkingDetailsIndexResponse {
|
|
|
1737
1737
|
}
|
|
1738
1738
|
|
|
1739
1739
|
|
|
1740
|
+
/**
|
|
1741
|
+
*
|
|
1742
|
+
* @export
|
|
1743
|
+
* @interface GetRegisteredVehiclesIndexQuery
|
|
1744
|
+
*/
|
|
1745
|
+
export interface GetRegisteredVehiclesIndexQuery {
|
|
1746
|
+
/**
|
|
1747
|
+
*
|
|
1748
|
+
* @type {string}
|
|
1749
|
+
* @memberof GetRegisteredVehiclesIndexQuery
|
|
1750
|
+
*/
|
|
1751
|
+
'order_by'?: string;
|
|
1752
|
+
/**
|
|
1753
|
+
*
|
|
1754
|
+
* @type {string}
|
|
1755
|
+
* @memberof GetRegisteredVehiclesIndexQuery
|
|
1756
|
+
*/
|
|
1757
|
+
'order_direction'?: string;
|
|
1758
|
+
/**
|
|
1759
|
+
*
|
|
1760
|
+
* @type {number}
|
|
1761
|
+
* @memberof GetRegisteredVehiclesIndexQuery
|
|
1762
|
+
*/
|
|
1763
|
+
'page_number'?: number;
|
|
1764
|
+
/**
|
|
1765
|
+
*
|
|
1766
|
+
* @type {number}
|
|
1767
|
+
* @memberof GetRegisteredVehiclesIndexQuery
|
|
1768
|
+
*/
|
|
1769
|
+
'page_size'?: number;
|
|
1770
|
+
/**
|
|
1771
|
+
*
|
|
1772
|
+
* @type {string}
|
|
1773
|
+
* @memberof GetRegisteredVehiclesIndexQuery
|
|
1774
|
+
*/
|
|
1775
|
+
'filter_by'?: string;
|
|
1776
|
+
/**
|
|
1777
|
+
*
|
|
1778
|
+
* @type {string}
|
|
1779
|
+
* @memberof GetRegisteredVehiclesIndexQuery
|
|
1780
|
+
*/
|
|
1781
|
+
'filter_key'?: string;
|
|
1782
|
+
/**
|
|
1783
|
+
*
|
|
1784
|
+
* @type {string}
|
|
1785
|
+
* @memberof GetRegisteredVehiclesIndexQuery
|
|
1786
|
+
*/
|
|
1787
|
+
'startDate'?: string;
|
|
1788
|
+
/**
|
|
1789
|
+
*
|
|
1790
|
+
* @type {string}
|
|
1791
|
+
* @memberof GetRegisteredVehiclesIndexQuery
|
|
1792
|
+
*/
|
|
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
|
+
/**
|
|
1807
|
+
*
|
|
1808
|
+
* @type {boolean}
|
|
1809
|
+
* @memberof GetRegisteredVehiclesIndexQuery
|
|
1810
|
+
*/
|
|
1811
|
+
'is_vip'?: boolean;
|
|
1812
|
+
/**
|
|
1813
|
+
*
|
|
1814
|
+
* @type {boolean}
|
|
1815
|
+
* @memberof GetRegisteredVehiclesIndexQuery
|
|
1816
|
+
*/
|
|
1817
|
+
'is_export'?: boolean;
|
|
1818
|
+
}
|
|
1740
1819
|
/**
|
|
1741
1820
|
*
|
|
1742
1821
|
* @export
|
|
@@ -2755,7 +2834,7 @@ export interface RegisteredVehicleIndexResponse {
|
|
|
2755
2834
|
* @type {VehicleType}
|
|
2756
2835
|
* @memberof RegisteredVehicleIndexResponse
|
|
2757
2836
|
*/
|
|
2758
|
-
'vehicle_type'
|
|
2837
|
+
'vehicle_type': VehicleType | null;
|
|
2759
2838
|
/**
|
|
2760
2839
|
*
|
|
2761
2840
|
* @type {string}
|
|
@@ -2923,6 +3002,25 @@ export interface ResponseDataGetParkingDetailsIndexResponseArray {
|
|
|
2923
3002
|
*/
|
|
2924
3003
|
'pagination'?: Pagination;
|
|
2925
3004
|
}
|
|
3005
|
+
/**
|
|
3006
|
+
*
|
|
3007
|
+
* @export
|
|
3008
|
+
* @interface ResponseDataRegisteredVehicleIndexResponseArray
|
|
3009
|
+
*/
|
|
3010
|
+
export interface ResponseDataRegisteredVehicleIndexResponseArray {
|
|
3011
|
+
/**
|
|
3012
|
+
*
|
|
3013
|
+
* @type {Array<RegisteredVehicleIndexResponse>}
|
|
3014
|
+
* @memberof ResponseDataRegisteredVehicleIndexResponseArray
|
|
3015
|
+
*/
|
|
3016
|
+
'data': Array<RegisteredVehicleIndexResponse>;
|
|
3017
|
+
/**
|
|
3018
|
+
*
|
|
3019
|
+
* @type {Pagination}
|
|
3020
|
+
* @memberof ResponseDataRegisteredVehicleIndexResponseArray
|
|
3021
|
+
*/
|
|
3022
|
+
'pagination'?: Pagination;
|
|
3023
|
+
}
|
|
2926
3024
|
/**
|
|
2927
3025
|
*
|
|
2928
3026
|
* @export
|
|
@@ -5100,6 +5198,95 @@ export const DefaultApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
5100
5198
|
|
|
5101
5199
|
|
|
5102
5200
|
|
|
5201
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
5202
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
5203
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
5204
|
+
|
|
5205
|
+
return {
|
|
5206
|
+
url: toPathString(localVarUrlObj),
|
|
5207
|
+
options: localVarRequestOptions,
|
|
5208
|
+
};
|
|
5209
|
+
},
|
|
5210
|
+
/**
|
|
5211
|
+
*
|
|
5212
|
+
* @param {string} [orderBy]
|
|
5213
|
+
* @param {string} [orderDirection]
|
|
5214
|
+
* @param {number} [pageNumber]
|
|
5215
|
+
* @param {number} [pageSize]
|
|
5216
|
+
* @param {string} [filterBy]
|
|
5217
|
+
* @param {string} [filterKey]
|
|
5218
|
+
* @param {string} [startDate]
|
|
5219
|
+
* @param {string} [endDate]
|
|
5220
|
+
* @param {string} [plateNo]
|
|
5221
|
+
* @param {string} [plateProvince]
|
|
5222
|
+
* @param {boolean} [isVip]
|
|
5223
|
+
* @param {boolean} [isExport]
|
|
5224
|
+
* @param {*} [options] Override http request option.
|
|
5225
|
+
* @throws {RequiredError}
|
|
5226
|
+
*/
|
|
5227
|
+
registeredVehiclesIndex: async (orderBy?: string, orderDirection?: string, pageNumber?: number, pageSize?: number, filterBy?: string, filterKey?: string, startDate?: string, endDate?: string, plateNo?: string, plateProvince?: string, isVip?: boolean, isExport?: boolean, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
5228
|
+
const localVarPath = `/registered-vehicles`;
|
|
5229
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
5230
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
5231
|
+
let baseOptions;
|
|
5232
|
+
if (configuration) {
|
|
5233
|
+
baseOptions = configuration.baseOptions;
|
|
5234
|
+
}
|
|
5235
|
+
|
|
5236
|
+
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
|
|
5237
|
+
const localVarHeaderParameter = {} as any;
|
|
5238
|
+
const localVarQueryParameter = {} as any;
|
|
5239
|
+
|
|
5240
|
+
if (orderBy !== undefined) {
|
|
5241
|
+
localVarQueryParameter['order_by'] = orderBy;
|
|
5242
|
+
}
|
|
5243
|
+
|
|
5244
|
+
if (orderDirection !== undefined) {
|
|
5245
|
+
localVarQueryParameter['order_direction'] = orderDirection;
|
|
5246
|
+
}
|
|
5247
|
+
|
|
5248
|
+
if (pageNumber !== undefined) {
|
|
5249
|
+
localVarQueryParameter['page_number'] = pageNumber;
|
|
5250
|
+
}
|
|
5251
|
+
|
|
5252
|
+
if (pageSize !== undefined) {
|
|
5253
|
+
localVarQueryParameter['page_size'] = pageSize;
|
|
5254
|
+
}
|
|
5255
|
+
|
|
5256
|
+
if (filterBy !== undefined) {
|
|
5257
|
+
localVarQueryParameter['filter_by'] = filterBy;
|
|
5258
|
+
}
|
|
5259
|
+
|
|
5260
|
+
if (filterKey !== undefined) {
|
|
5261
|
+
localVarQueryParameter['filter_key'] = filterKey;
|
|
5262
|
+
}
|
|
5263
|
+
|
|
5264
|
+
if (startDate !== undefined) {
|
|
5265
|
+
localVarQueryParameter['startDate'] = startDate;
|
|
5266
|
+
}
|
|
5267
|
+
|
|
5268
|
+
if (endDate !== undefined) {
|
|
5269
|
+
localVarQueryParameter['endDate'] = endDate;
|
|
5270
|
+
}
|
|
5271
|
+
|
|
5272
|
+
if (plateNo !== undefined) {
|
|
5273
|
+
localVarQueryParameter['plate_no'] = plateNo;
|
|
5274
|
+
}
|
|
5275
|
+
|
|
5276
|
+
if (plateProvince !== undefined) {
|
|
5277
|
+
localVarQueryParameter['plate_province'] = plateProvince;
|
|
5278
|
+
}
|
|
5279
|
+
|
|
5280
|
+
if (isVip !== undefined) {
|
|
5281
|
+
localVarQueryParameter['is_vip'] = isVip;
|
|
5282
|
+
}
|
|
5283
|
+
|
|
5284
|
+
if (isExport !== undefined) {
|
|
5285
|
+
localVarQueryParameter['is_export'] = isExport;
|
|
5286
|
+
}
|
|
5287
|
+
|
|
5288
|
+
|
|
5289
|
+
|
|
5103
5290
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
5104
5291
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
5105
5292
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
@@ -5845,6 +6032,27 @@ export const DefaultApiFp = function(configuration?: Configuration) {
|
|
|
5845
6032
|
const localVarAxiosArgs = await localVarAxiosParamCreator.registeredVehiclesGetVehiclesByLicensePlate(plateNo, options);
|
|
5846
6033
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
5847
6034
|
},
|
|
6035
|
+
/**
|
|
6036
|
+
*
|
|
6037
|
+
* @param {string} [orderBy]
|
|
6038
|
+
* @param {string} [orderDirection]
|
|
6039
|
+
* @param {number} [pageNumber]
|
|
6040
|
+
* @param {number} [pageSize]
|
|
6041
|
+
* @param {string} [filterBy]
|
|
6042
|
+
* @param {string} [filterKey]
|
|
6043
|
+
* @param {string} [startDate]
|
|
6044
|
+
* @param {string} [endDate]
|
|
6045
|
+
* @param {string} [plateNo]
|
|
6046
|
+
* @param {string} [plateProvince]
|
|
6047
|
+
* @param {boolean} [isVip]
|
|
6048
|
+
* @param {boolean} [isExport]
|
|
6049
|
+
* @param {*} [options] Override http request option.
|
|
6050
|
+
* @throws {RequiredError}
|
|
6051
|
+
*/
|
|
6052
|
+
async registeredVehiclesIndex(orderBy?: string, orderDirection?: string, pageNumber?: number, pageSize?: number, filterBy?: string, filterKey?: string, startDate?: string, endDate?: string, plateNo?: string, plateProvince?: string, isVip?: boolean, isExport?: boolean, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ResponseDataRegisteredVehicleIndexResponseArray>> {
|
|
6053
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.registeredVehiclesIndex(orderBy, orderDirection, pageNumber, pageSize, filterBy, filterKey, startDate, endDate, plateNo, plateProvince, isVip, isExport, options);
|
|
6054
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
6055
|
+
},
|
|
5848
6056
|
/**
|
|
5849
6057
|
*
|
|
5850
6058
|
* @param {string} plateNo
|
|
@@ -6344,6 +6552,26 @@ export const DefaultApiFactory = function (configuration?: Configuration, basePa
|
|
|
6344
6552
|
registeredVehiclesGetVehiclesByLicensePlate(plateNo: string, options?: any): AxiosPromise<RegisteredVehicleResponse> {
|
|
6345
6553
|
return localVarFp.registeredVehiclesGetVehiclesByLicensePlate(plateNo, options).then((request) => request(axios, basePath));
|
|
6346
6554
|
},
|
|
6555
|
+
/**
|
|
6556
|
+
*
|
|
6557
|
+
* @param {string} [orderBy]
|
|
6558
|
+
* @param {string} [orderDirection]
|
|
6559
|
+
* @param {number} [pageNumber]
|
|
6560
|
+
* @param {number} [pageSize]
|
|
6561
|
+
* @param {string} [filterBy]
|
|
6562
|
+
* @param {string} [filterKey]
|
|
6563
|
+
* @param {string} [startDate]
|
|
6564
|
+
* @param {string} [endDate]
|
|
6565
|
+
* @param {string} [plateNo]
|
|
6566
|
+
* @param {string} [plateProvince]
|
|
6567
|
+
* @param {boolean} [isVip]
|
|
6568
|
+
* @param {boolean} [isExport]
|
|
6569
|
+
* @param {*} [options] Override http request option.
|
|
6570
|
+
* @throws {RequiredError}
|
|
6571
|
+
*/
|
|
6572
|
+
registeredVehiclesIndex(orderBy?: string, orderDirection?: string, pageNumber?: number, pageSize?: number, filterBy?: string, filterKey?: string, startDate?: string, endDate?: string, plateNo?: string, plateProvince?: string, isVip?: boolean, isExport?: boolean, options?: any): AxiosPromise<ResponseDataRegisteredVehicleIndexResponseArray> {
|
|
6573
|
+
return localVarFp.registeredVehiclesIndex(orderBy, orderDirection, pageNumber, pageSize, filterBy, filterKey, startDate, endDate, plateNo, plateProvince, isVip, isExport, options).then((request) => request(axios, basePath));
|
|
6574
|
+
},
|
|
6347
6575
|
/**
|
|
6348
6576
|
*
|
|
6349
6577
|
* @param {string} plateNo
|
|
@@ -6911,6 +7139,28 @@ export class DefaultApi extends BaseAPI {
|
|
|
6911
7139
|
return DefaultApiFp(this.configuration).registeredVehiclesGetVehiclesByLicensePlate(plateNo, options).then((request) => request(this.axios, this.basePath));
|
|
6912
7140
|
}
|
|
6913
7141
|
|
|
7142
|
+
/**
|
|
7143
|
+
*
|
|
7144
|
+
* @param {string} [orderBy]
|
|
7145
|
+
* @param {string} [orderDirection]
|
|
7146
|
+
* @param {number} [pageNumber]
|
|
7147
|
+
* @param {number} [pageSize]
|
|
7148
|
+
* @param {string} [filterBy]
|
|
7149
|
+
* @param {string} [filterKey]
|
|
7150
|
+
* @param {string} [startDate]
|
|
7151
|
+
* @param {string} [endDate]
|
|
7152
|
+
* @param {string} [plateNo]
|
|
7153
|
+
* @param {string} [plateProvince]
|
|
7154
|
+
* @param {boolean} [isVip]
|
|
7155
|
+
* @param {boolean} [isExport]
|
|
7156
|
+
* @param {*} [options] Override http request option.
|
|
7157
|
+
* @throws {RequiredError}
|
|
7158
|
+
* @memberof DefaultApi
|
|
7159
|
+
*/
|
|
7160
|
+
public registeredVehiclesIndex(orderBy?: string, orderDirection?: string, pageNumber?: number, pageSize?: number, filterBy?: string, filterKey?: string, startDate?: string, endDate?: string, plateNo?: string, plateProvince?: string, isVip?: boolean, isExport?: boolean, options?: AxiosRequestConfig) {
|
|
7161
|
+
return DefaultApiFp(this.configuration).registeredVehiclesIndex(orderBy, orderDirection, pageNumber, pageSize, filterBy, filterKey, startDate, endDate, plateNo, plateProvince, isVip, isExport, options).then((request) => request(this.axios, this.basePath));
|
|
7162
|
+
}
|
|
7163
|
+
|
|
6914
7164
|
/**
|
|
6915
7165
|
*
|
|
6916
7166
|
* @param {string} plateNo
|
package/api/base.ts
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* obk-parking
|
|
5
5
|
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 1.27.
|
|
7
|
+
* The version of the OpenAPI document: 1.27.4
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/api/common.ts
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* obk-parking
|
|
5
5
|
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 1.27.
|
|
7
|
+
* The version of the OpenAPI document: 1.27.4
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/api/configuration.ts
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* obk-parking
|
|
5
5
|
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 1.27.
|
|
7
|
+
* The version of the OpenAPI document: 1.27.4
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/api/index.ts
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* obk-parking
|
|
5
5
|
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 1.27.
|
|
7
|
+
* The version of the OpenAPI document: 1.27.4
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/api/api.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* obk-parking
|
|
3
3
|
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 1.27.
|
|
5
|
+
* The version of the OpenAPI document: 1.27.4
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -1698,6 +1698,85 @@ export interface GetParkingDetailsIndexResponse {
|
|
|
1698
1698
|
*/
|
|
1699
1699
|
'channel'?: string;
|
|
1700
1700
|
}
|
|
1701
|
+
/**
|
|
1702
|
+
*
|
|
1703
|
+
* @export
|
|
1704
|
+
* @interface GetRegisteredVehiclesIndexQuery
|
|
1705
|
+
*/
|
|
1706
|
+
export interface GetRegisteredVehiclesIndexQuery {
|
|
1707
|
+
/**
|
|
1708
|
+
*
|
|
1709
|
+
* @type {string}
|
|
1710
|
+
* @memberof GetRegisteredVehiclesIndexQuery
|
|
1711
|
+
*/
|
|
1712
|
+
'order_by'?: string;
|
|
1713
|
+
/**
|
|
1714
|
+
*
|
|
1715
|
+
* @type {string}
|
|
1716
|
+
* @memberof GetRegisteredVehiclesIndexQuery
|
|
1717
|
+
*/
|
|
1718
|
+
'order_direction'?: string;
|
|
1719
|
+
/**
|
|
1720
|
+
*
|
|
1721
|
+
* @type {number}
|
|
1722
|
+
* @memberof GetRegisteredVehiclesIndexQuery
|
|
1723
|
+
*/
|
|
1724
|
+
'page_number'?: number;
|
|
1725
|
+
/**
|
|
1726
|
+
*
|
|
1727
|
+
* @type {number}
|
|
1728
|
+
* @memberof GetRegisteredVehiclesIndexQuery
|
|
1729
|
+
*/
|
|
1730
|
+
'page_size'?: number;
|
|
1731
|
+
/**
|
|
1732
|
+
*
|
|
1733
|
+
* @type {string}
|
|
1734
|
+
* @memberof GetRegisteredVehiclesIndexQuery
|
|
1735
|
+
*/
|
|
1736
|
+
'filter_by'?: string;
|
|
1737
|
+
/**
|
|
1738
|
+
*
|
|
1739
|
+
* @type {string}
|
|
1740
|
+
* @memberof GetRegisteredVehiclesIndexQuery
|
|
1741
|
+
*/
|
|
1742
|
+
'filter_key'?: string;
|
|
1743
|
+
/**
|
|
1744
|
+
*
|
|
1745
|
+
* @type {string}
|
|
1746
|
+
* @memberof GetRegisteredVehiclesIndexQuery
|
|
1747
|
+
*/
|
|
1748
|
+
'startDate'?: string;
|
|
1749
|
+
/**
|
|
1750
|
+
*
|
|
1751
|
+
* @type {string}
|
|
1752
|
+
* @memberof GetRegisteredVehiclesIndexQuery
|
|
1753
|
+
*/
|
|
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
|
+
/**
|
|
1768
|
+
*
|
|
1769
|
+
* @type {boolean}
|
|
1770
|
+
* @memberof GetRegisteredVehiclesIndexQuery
|
|
1771
|
+
*/
|
|
1772
|
+
'is_vip'?: boolean;
|
|
1773
|
+
/**
|
|
1774
|
+
*
|
|
1775
|
+
* @type {boolean}
|
|
1776
|
+
* @memberof GetRegisteredVehiclesIndexQuery
|
|
1777
|
+
*/
|
|
1778
|
+
'is_export'?: boolean;
|
|
1779
|
+
}
|
|
1701
1780
|
/**
|
|
1702
1781
|
*
|
|
1703
1782
|
* @export
|
|
@@ -2697,7 +2776,7 @@ export interface RegisteredVehicleIndexResponse {
|
|
|
2697
2776
|
* @type {VehicleType}
|
|
2698
2777
|
* @memberof RegisteredVehicleIndexResponse
|
|
2699
2778
|
*/
|
|
2700
|
-
'vehicle_type'
|
|
2779
|
+
'vehicle_type': VehicleType | null;
|
|
2701
2780
|
/**
|
|
2702
2781
|
*
|
|
2703
2782
|
* @type {string}
|
|
@@ -2861,6 +2940,25 @@ export interface ResponseDataGetParkingDetailsIndexResponseArray {
|
|
|
2861
2940
|
*/
|
|
2862
2941
|
'pagination'?: Pagination;
|
|
2863
2942
|
}
|
|
2943
|
+
/**
|
|
2944
|
+
*
|
|
2945
|
+
* @export
|
|
2946
|
+
* @interface ResponseDataRegisteredVehicleIndexResponseArray
|
|
2947
|
+
*/
|
|
2948
|
+
export interface ResponseDataRegisteredVehicleIndexResponseArray {
|
|
2949
|
+
/**
|
|
2950
|
+
*
|
|
2951
|
+
* @type {Array<RegisteredVehicleIndexResponse>}
|
|
2952
|
+
* @memberof ResponseDataRegisteredVehicleIndexResponseArray
|
|
2953
|
+
*/
|
|
2954
|
+
'data': Array<RegisteredVehicleIndexResponse>;
|
|
2955
|
+
/**
|
|
2956
|
+
*
|
|
2957
|
+
* @type {Pagination}
|
|
2958
|
+
* @memberof ResponseDataRegisteredVehicleIndexResponseArray
|
|
2959
|
+
*/
|
|
2960
|
+
'pagination'?: Pagination;
|
|
2961
|
+
}
|
|
2864
2962
|
/**
|
|
2865
2963
|
*
|
|
2866
2964
|
* @export
|
|
@@ -3736,6 +3834,24 @@ export declare const DefaultApiAxiosParamCreator: (configuration?: Configuration
|
|
|
3736
3834
|
* @throws {RequiredError}
|
|
3737
3835
|
*/
|
|
3738
3836
|
registeredVehiclesGetVehiclesByLicensePlate: (plateNo: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
3837
|
+
/**
|
|
3838
|
+
*
|
|
3839
|
+
* @param {string} [orderBy]
|
|
3840
|
+
* @param {string} [orderDirection]
|
|
3841
|
+
* @param {number} [pageNumber]
|
|
3842
|
+
* @param {number} [pageSize]
|
|
3843
|
+
* @param {string} [filterBy]
|
|
3844
|
+
* @param {string} [filterKey]
|
|
3845
|
+
* @param {string} [startDate]
|
|
3846
|
+
* @param {string} [endDate]
|
|
3847
|
+
* @param {string} [plateNo]
|
|
3848
|
+
* @param {string} [plateProvince]
|
|
3849
|
+
* @param {boolean} [isVip]
|
|
3850
|
+
* @param {boolean} [isExport]
|
|
3851
|
+
* @param {*} [options] Override http request option.
|
|
3852
|
+
* @throws {RequiredError}
|
|
3853
|
+
*/
|
|
3854
|
+
registeredVehiclesIndex: (orderBy?: string, orderDirection?: string, pageNumber?: number, pageSize?: number, filterBy?: string, filterKey?: string, startDate?: string, endDate?: string, plateNo?: string, plateProvince?: string, isVip?: boolean, isExport?: boolean, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
3739
3855
|
/**
|
|
3740
3856
|
*
|
|
3741
3857
|
* @param {string} plateNo
|
|
@@ -4131,6 +4247,24 @@ export declare const DefaultApiFp: (configuration?: Configuration) => {
|
|
|
4131
4247
|
* @throws {RequiredError}
|
|
4132
4248
|
*/
|
|
4133
4249
|
registeredVehiclesGetVehiclesByLicensePlate(plateNo: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<RegisteredVehicleResponse>>;
|
|
4250
|
+
/**
|
|
4251
|
+
*
|
|
4252
|
+
* @param {string} [orderBy]
|
|
4253
|
+
* @param {string} [orderDirection]
|
|
4254
|
+
* @param {number} [pageNumber]
|
|
4255
|
+
* @param {number} [pageSize]
|
|
4256
|
+
* @param {string} [filterBy]
|
|
4257
|
+
* @param {string} [filterKey]
|
|
4258
|
+
* @param {string} [startDate]
|
|
4259
|
+
* @param {string} [endDate]
|
|
4260
|
+
* @param {string} [plateNo]
|
|
4261
|
+
* @param {string} [plateProvince]
|
|
4262
|
+
* @param {boolean} [isVip]
|
|
4263
|
+
* @param {boolean} [isExport]
|
|
4264
|
+
* @param {*} [options] Override http request option.
|
|
4265
|
+
* @throws {RequiredError}
|
|
4266
|
+
*/
|
|
4267
|
+
registeredVehiclesIndex(orderBy?: string, orderDirection?: string, pageNumber?: number, pageSize?: number, filterBy?: string, filterKey?: string, startDate?: string, endDate?: string, plateNo?: string, plateProvince?: string, isVip?: boolean, isExport?: boolean, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ResponseDataRegisteredVehicleIndexResponseArray>>;
|
|
4134
4268
|
/**
|
|
4135
4269
|
*
|
|
4136
4270
|
* @param {string} plateNo
|
|
@@ -4526,6 +4660,24 @@ export declare const DefaultApiFactory: (configuration?: Configuration, basePath
|
|
|
4526
4660
|
* @throws {RequiredError}
|
|
4527
4661
|
*/
|
|
4528
4662
|
registeredVehiclesGetVehiclesByLicensePlate(plateNo: string, options?: any): AxiosPromise<RegisteredVehicleResponse>;
|
|
4663
|
+
/**
|
|
4664
|
+
*
|
|
4665
|
+
* @param {string} [orderBy]
|
|
4666
|
+
* @param {string} [orderDirection]
|
|
4667
|
+
* @param {number} [pageNumber]
|
|
4668
|
+
* @param {number} [pageSize]
|
|
4669
|
+
* @param {string} [filterBy]
|
|
4670
|
+
* @param {string} [filterKey]
|
|
4671
|
+
* @param {string} [startDate]
|
|
4672
|
+
* @param {string} [endDate]
|
|
4673
|
+
* @param {string} [plateNo]
|
|
4674
|
+
* @param {string} [plateProvince]
|
|
4675
|
+
* @param {boolean} [isVip]
|
|
4676
|
+
* @param {boolean} [isExport]
|
|
4677
|
+
* @param {*} [options] Override http request option.
|
|
4678
|
+
* @throws {RequiredError}
|
|
4679
|
+
*/
|
|
4680
|
+
registeredVehiclesIndex(orderBy?: string, orderDirection?: string, pageNumber?: number, pageSize?: number, filterBy?: string, filterKey?: string, startDate?: string, endDate?: string, plateNo?: string, plateProvince?: string, isVip?: boolean, isExport?: boolean, options?: any): AxiosPromise<ResponseDataRegisteredVehicleIndexResponseArray>;
|
|
4529
4681
|
/**
|
|
4530
4682
|
*
|
|
4531
4683
|
* @param {string} plateNo
|
|
@@ -4961,6 +5113,25 @@ export declare class DefaultApi extends BaseAPI {
|
|
|
4961
5113
|
* @memberof DefaultApi
|
|
4962
5114
|
*/
|
|
4963
5115
|
registeredVehiclesGetVehiclesByLicensePlate(plateNo: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<RegisteredVehicleResponse, any>>;
|
|
5116
|
+
/**
|
|
5117
|
+
*
|
|
5118
|
+
* @param {string} [orderBy]
|
|
5119
|
+
* @param {string} [orderDirection]
|
|
5120
|
+
* @param {number} [pageNumber]
|
|
5121
|
+
* @param {number} [pageSize]
|
|
5122
|
+
* @param {string} [filterBy]
|
|
5123
|
+
* @param {string} [filterKey]
|
|
5124
|
+
* @param {string} [startDate]
|
|
5125
|
+
* @param {string} [endDate]
|
|
5126
|
+
* @param {string} [plateNo]
|
|
5127
|
+
* @param {string} [plateProvince]
|
|
5128
|
+
* @param {boolean} [isVip]
|
|
5129
|
+
* @param {boolean} [isExport]
|
|
5130
|
+
* @param {*} [options] Override http request option.
|
|
5131
|
+
* @throws {RequiredError}
|
|
5132
|
+
* @memberof DefaultApi
|
|
5133
|
+
*/
|
|
5134
|
+
registeredVehiclesIndex(orderBy?: string, orderDirection?: string, pageNumber?: number, pageSize?: number, filterBy?: string, filterKey?: string, startDate?: string, endDate?: string, plateNo?: string, plateProvince?: string, isVip?: boolean, isExport?: boolean, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ResponseDataRegisteredVehicleIndexResponseArray, any>>;
|
|
4964
5135
|
/**
|
|
4965
5136
|
*
|
|
4966
5137
|
* @param {string} plateNo
|
package/dist/api/api.js
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
* obk-parking
|
|
6
6
|
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
7
7
|
*
|
|
8
|
-
* The version of the OpenAPI document: 1.27.
|
|
8
|
+
* The version of the OpenAPI document: 1.27.4
|
|
9
9
|
*
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -1470,6 +1470,78 @@ const DefaultApiAxiosParamCreator = function (configuration) {
|
|
|
1470
1470
|
options: localVarRequestOptions,
|
|
1471
1471
|
};
|
|
1472
1472
|
}),
|
|
1473
|
+
/**
|
|
1474
|
+
*
|
|
1475
|
+
* @param {string} [orderBy]
|
|
1476
|
+
* @param {string} [orderDirection]
|
|
1477
|
+
* @param {number} [pageNumber]
|
|
1478
|
+
* @param {number} [pageSize]
|
|
1479
|
+
* @param {string} [filterBy]
|
|
1480
|
+
* @param {string} [filterKey]
|
|
1481
|
+
* @param {string} [startDate]
|
|
1482
|
+
* @param {string} [endDate]
|
|
1483
|
+
* @param {string} [plateNo]
|
|
1484
|
+
* @param {string} [plateProvince]
|
|
1485
|
+
* @param {boolean} [isVip]
|
|
1486
|
+
* @param {boolean} [isExport]
|
|
1487
|
+
* @param {*} [options] Override http request option.
|
|
1488
|
+
* @throws {RequiredError}
|
|
1489
|
+
*/
|
|
1490
|
+
registeredVehiclesIndex: (orderBy, orderDirection, pageNumber, pageSize, filterBy, filterKey, startDate, endDate, plateNo, plateProvince, isVip, isExport, options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
1491
|
+
const localVarPath = `/registered-vehicles`;
|
|
1492
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
1493
|
+
const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
1494
|
+
let baseOptions;
|
|
1495
|
+
if (configuration) {
|
|
1496
|
+
baseOptions = configuration.baseOptions;
|
|
1497
|
+
}
|
|
1498
|
+
const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options);
|
|
1499
|
+
const localVarHeaderParameter = {};
|
|
1500
|
+
const localVarQueryParameter = {};
|
|
1501
|
+
if (orderBy !== undefined) {
|
|
1502
|
+
localVarQueryParameter['order_by'] = orderBy;
|
|
1503
|
+
}
|
|
1504
|
+
if (orderDirection !== undefined) {
|
|
1505
|
+
localVarQueryParameter['order_direction'] = orderDirection;
|
|
1506
|
+
}
|
|
1507
|
+
if (pageNumber !== undefined) {
|
|
1508
|
+
localVarQueryParameter['page_number'] = pageNumber;
|
|
1509
|
+
}
|
|
1510
|
+
if (pageSize !== undefined) {
|
|
1511
|
+
localVarQueryParameter['page_size'] = pageSize;
|
|
1512
|
+
}
|
|
1513
|
+
if (filterBy !== undefined) {
|
|
1514
|
+
localVarQueryParameter['filter_by'] = filterBy;
|
|
1515
|
+
}
|
|
1516
|
+
if (filterKey !== undefined) {
|
|
1517
|
+
localVarQueryParameter['filter_key'] = filterKey;
|
|
1518
|
+
}
|
|
1519
|
+
if (startDate !== undefined) {
|
|
1520
|
+
localVarQueryParameter['startDate'] = startDate;
|
|
1521
|
+
}
|
|
1522
|
+
if (endDate !== undefined) {
|
|
1523
|
+
localVarQueryParameter['endDate'] = endDate;
|
|
1524
|
+
}
|
|
1525
|
+
if (plateNo !== undefined) {
|
|
1526
|
+
localVarQueryParameter['plate_no'] = plateNo;
|
|
1527
|
+
}
|
|
1528
|
+
if (plateProvince !== undefined) {
|
|
1529
|
+
localVarQueryParameter['plate_province'] = plateProvince;
|
|
1530
|
+
}
|
|
1531
|
+
if (isVip !== undefined) {
|
|
1532
|
+
localVarQueryParameter['is_vip'] = isVip;
|
|
1533
|
+
}
|
|
1534
|
+
if (isExport !== undefined) {
|
|
1535
|
+
localVarQueryParameter['is_export'] = isExport;
|
|
1536
|
+
}
|
|
1537
|
+
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
1538
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
1539
|
+
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
1540
|
+
return {
|
|
1541
|
+
url: (0, common_1.toPathString)(localVarUrlObj),
|
|
1542
|
+
options: localVarRequestOptions,
|
|
1543
|
+
};
|
|
1544
|
+
}),
|
|
1473
1545
|
/**
|
|
1474
1546
|
*
|
|
1475
1547
|
* @param {string} plateNo
|
|
@@ -2234,6 +2306,29 @@ const DefaultApiFp = function (configuration) {
|
|
|
2234
2306
|
return (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration);
|
|
2235
2307
|
});
|
|
2236
2308
|
},
|
|
2309
|
+
/**
|
|
2310
|
+
*
|
|
2311
|
+
* @param {string} [orderBy]
|
|
2312
|
+
* @param {string} [orderDirection]
|
|
2313
|
+
* @param {number} [pageNumber]
|
|
2314
|
+
* @param {number} [pageSize]
|
|
2315
|
+
* @param {string} [filterBy]
|
|
2316
|
+
* @param {string} [filterKey]
|
|
2317
|
+
* @param {string} [startDate]
|
|
2318
|
+
* @param {string} [endDate]
|
|
2319
|
+
* @param {string} [plateNo]
|
|
2320
|
+
* @param {string} [plateProvince]
|
|
2321
|
+
* @param {boolean} [isVip]
|
|
2322
|
+
* @param {boolean} [isExport]
|
|
2323
|
+
* @param {*} [options] Override http request option.
|
|
2324
|
+
* @throws {RequiredError}
|
|
2325
|
+
*/
|
|
2326
|
+
registeredVehiclesIndex(orderBy, orderDirection, pageNumber, pageSize, filterBy, filterKey, startDate, endDate, plateNo, plateProvince, isVip, isExport, options) {
|
|
2327
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
2328
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.registeredVehiclesIndex(orderBy, orderDirection, pageNumber, pageSize, filterBy, filterKey, startDate, endDate, plateNo, plateProvince, isVip, isExport, options);
|
|
2329
|
+
return (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration);
|
|
2330
|
+
});
|
|
2331
|
+
},
|
|
2237
2332
|
/**
|
|
2238
2333
|
*
|
|
2239
2334
|
* @param {string} plateNo
|
|
@@ -2749,6 +2844,26 @@ const DefaultApiFactory = function (configuration, basePath, axios) {
|
|
|
2749
2844
|
registeredVehiclesGetVehiclesByLicensePlate(plateNo, options) {
|
|
2750
2845
|
return localVarFp.registeredVehiclesGetVehiclesByLicensePlate(plateNo, options).then((request) => request(axios, basePath));
|
|
2751
2846
|
},
|
|
2847
|
+
/**
|
|
2848
|
+
*
|
|
2849
|
+
* @param {string} [orderBy]
|
|
2850
|
+
* @param {string} [orderDirection]
|
|
2851
|
+
* @param {number} [pageNumber]
|
|
2852
|
+
* @param {number} [pageSize]
|
|
2853
|
+
* @param {string} [filterBy]
|
|
2854
|
+
* @param {string} [filterKey]
|
|
2855
|
+
* @param {string} [startDate]
|
|
2856
|
+
* @param {string} [endDate]
|
|
2857
|
+
* @param {string} [plateNo]
|
|
2858
|
+
* @param {string} [plateProvince]
|
|
2859
|
+
* @param {boolean} [isVip]
|
|
2860
|
+
* @param {boolean} [isExport]
|
|
2861
|
+
* @param {*} [options] Override http request option.
|
|
2862
|
+
* @throws {RequiredError}
|
|
2863
|
+
*/
|
|
2864
|
+
registeredVehiclesIndex(orderBy, orderDirection, pageNumber, pageSize, filterBy, filterKey, startDate, endDate, plateNo, plateProvince, isVip, isExport, options) {
|
|
2865
|
+
return localVarFp.registeredVehiclesIndex(orderBy, orderDirection, pageNumber, pageSize, filterBy, filterKey, startDate, endDate, plateNo, plateProvince, isVip, isExport, options).then((request) => request(axios, basePath));
|
|
2866
|
+
},
|
|
2752
2867
|
/**
|
|
2753
2868
|
*
|
|
2754
2869
|
* @param {string} plateNo
|
|
@@ -3278,6 +3393,27 @@ class DefaultApi extends base_1.BaseAPI {
|
|
|
3278
3393
|
registeredVehiclesGetVehiclesByLicensePlate(plateNo, options) {
|
|
3279
3394
|
return (0, exports.DefaultApiFp)(this.configuration).registeredVehiclesGetVehiclesByLicensePlate(plateNo, options).then((request) => request(this.axios, this.basePath));
|
|
3280
3395
|
}
|
|
3396
|
+
/**
|
|
3397
|
+
*
|
|
3398
|
+
* @param {string} [orderBy]
|
|
3399
|
+
* @param {string} [orderDirection]
|
|
3400
|
+
* @param {number} [pageNumber]
|
|
3401
|
+
* @param {number} [pageSize]
|
|
3402
|
+
* @param {string} [filterBy]
|
|
3403
|
+
* @param {string} [filterKey]
|
|
3404
|
+
* @param {string} [startDate]
|
|
3405
|
+
* @param {string} [endDate]
|
|
3406
|
+
* @param {string} [plateNo]
|
|
3407
|
+
* @param {string} [plateProvince]
|
|
3408
|
+
* @param {boolean} [isVip]
|
|
3409
|
+
* @param {boolean} [isExport]
|
|
3410
|
+
* @param {*} [options] Override http request option.
|
|
3411
|
+
* @throws {RequiredError}
|
|
3412
|
+
* @memberof DefaultApi
|
|
3413
|
+
*/
|
|
3414
|
+
registeredVehiclesIndex(orderBy, orderDirection, pageNumber, pageSize, filterBy, filterKey, startDate, endDate, plateNo, plateProvince, isVip, isExport, options) {
|
|
3415
|
+
return (0, exports.DefaultApiFp)(this.configuration).registeredVehiclesIndex(orderBy, orderDirection, pageNumber, pageSize, filterBy, filterKey, startDate, endDate, plateNo, plateProvince, isVip, isExport, options).then((request) => request(this.axios, this.basePath));
|
|
3416
|
+
}
|
|
3281
3417
|
/**
|
|
3282
3418
|
*
|
|
3283
3419
|
* @param {string} plateNo
|
package/dist/api/base.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* obk-parking
|
|
3
3
|
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 1.27.
|
|
5
|
+
* The version of the OpenAPI document: 1.27.4
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/api/base.js
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
* obk-parking
|
|
6
6
|
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
7
7
|
*
|
|
8
|
-
* The version of the OpenAPI document: 1.27.
|
|
8
|
+
* The version of the OpenAPI document: 1.27.4
|
|
9
9
|
*
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/api/common.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* obk-parking
|
|
3
3
|
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 1.27.
|
|
5
|
+
* The version of the OpenAPI document: 1.27.4
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/api/common.js
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
* obk-parking
|
|
6
6
|
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
7
7
|
*
|
|
8
|
-
* The version of the OpenAPI document: 1.27.
|
|
8
|
+
* The version of the OpenAPI document: 1.27.4
|
|
9
9
|
*
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* obk-parking
|
|
3
3
|
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 1.27.
|
|
5
|
+
* The version of the OpenAPI document: 1.27.4
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
* obk-parking
|
|
6
6
|
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
7
7
|
*
|
|
8
|
-
* The version of the OpenAPI document: 1.27.
|
|
8
|
+
* The version of the OpenAPI document: 1.27.4
|
|
9
9
|
*
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/api/index.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* obk-parking
|
|
3
3
|
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 1.27.
|
|
5
|
+
* The version of the OpenAPI document: 1.27.4
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/api/index.js
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
* obk-parking
|
|
6
6
|
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
7
7
|
*
|
|
8
|
-
* The version of the OpenAPI document: 1.27.
|
|
8
|
+
* The version of the OpenAPI document: 1.27.4
|
|
9
9
|
*
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|