ob-parking-sdk 0.0.78 → 0.0.79
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 +38 -25
- 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 +28 -13
- package/dist/api/api.js +18 -24
- 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.7
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -3539,6 +3539,25 @@ export interface UpdateRegisteredVehicleBody {
|
|
|
3539
3539
|
}
|
|
3540
3540
|
|
|
3541
3541
|
|
|
3542
|
+
/**
|
|
3543
|
+
*
|
|
3544
|
+
* @export
|
|
3545
|
+
* @interface UpgradeToVipBody
|
|
3546
|
+
*/
|
|
3547
|
+
export interface UpgradeToVipBody {
|
|
3548
|
+
/**
|
|
3549
|
+
*
|
|
3550
|
+
* @type {string}
|
|
3551
|
+
* @memberof UpgradeToVipBody
|
|
3552
|
+
*/
|
|
3553
|
+
'province'?: string | null;
|
|
3554
|
+
/**
|
|
3555
|
+
*
|
|
3556
|
+
* @type {string}
|
|
3557
|
+
* @memberof UpgradeToVipBody
|
|
3558
|
+
*/
|
|
3559
|
+
'license_plate': string;
|
|
3560
|
+
}
|
|
3542
3561
|
/**
|
|
3543
3562
|
*
|
|
3544
3563
|
* @export
|
|
@@ -5669,16 +5688,14 @@ export const DefaultApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
5669
5688
|
},
|
|
5670
5689
|
/**
|
|
5671
5690
|
*
|
|
5672
|
-
* @param {
|
|
5673
|
-
* @param {string} [province]
|
|
5691
|
+
* @param {UpgradeToVipBody} upgradeToVipBody
|
|
5674
5692
|
* @param {*} [options] Override http request option.
|
|
5675
5693
|
* @throws {RequiredError}
|
|
5676
5694
|
*/
|
|
5677
|
-
registeredVehiclesUpgradeToVip: async (
|
|
5678
|
-
// verify required parameter '
|
|
5679
|
-
assertParamExists('registeredVehiclesUpgradeToVip', '
|
|
5680
|
-
const localVarPath = `/registered-vehicles/upgrade-to-vip
|
|
5681
|
-
.replace(`{${"license-plate"}}`, encodeURIComponent(String(licensePlate)));
|
|
5695
|
+
registeredVehiclesUpgradeToVip: async (upgradeToVipBody: UpgradeToVipBody, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
5696
|
+
// verify required parameter 'upgradeToVipBody' is not null or undefined
|
|
5697
|
+
assertParamExists('registeredVehiclesUpgradeToVip', 'upgradeToVipBody', upgradeToVipBody)
|
|
5698
|
+
const localVarPath = `/registered-vehicles/upgrade-to-vip`;
|
|
5682
5699
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
5683
5700
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
5684
5701
|
let baseOptions;
|
|
@@ -5686,19 +5703,18 @@ export const DefaultApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
5686
5703
|
baseOptions = configuration.baseOptions;
|
|
5687
5704
|
}
|
|
5688
5705
|
|
|
5689
|
-
const localVarRequestOptions = { method: '
|
|
5706
|
+
const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options};
|
|
5690
5707
|
const localVarHeaderParameter = {} as any;
|
|
5691
5708
|
const localVarQueryParameter = {} as any;
|
|
5692
5709
|
|
|
5693
|
-
if (province !== undefined) {
|
|
5694
|
-
localVarQueryParameter['province'] = province;
|
|
5695
|
-
}
|
|
5696
|
-
|
|
5697
5710
|
|
|
5698
5711
|
|
|
5712
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
5713
|
+
|
|
5699
5714
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
5700
5715
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
5701
5716
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
5717
|
+
localVarRequestOptions.data = serializeDataIfNeeded(upgradeToVipBody, localVarRequestOptions, configuration)
|
|
5702
5718
|
|
|
5703
5719
|
return {
|
|
5704
5720
|
url: toPathString(localVarUrlObj),
|
|
@@ -6378,13 +6394,12 @@ export const DefaultApiFp = function(configuration?: Configuration) {
|
|
|
6378
6394
|
},
|
|
6379
6395
|
/**
|
|
6380
6396
|
*
|
|
6381
|
-
* @param {
|
|
6382
|
-
* @param {string} [province]
|
|
6397
|
+
* @param {UpgradeToVipBody} upgradeToVipBody
|
|
6383
6398
|
* @param {*} [options] Override http request option.
|
|
6384
6399
|
* @throws {RequiredError}
|
|
6385
6400
|
*/
|
|
6386
|
-
async registeredVehiclesUpgradeToVip(
|
|
6387
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.registeredVehiclesUpgradeToVip(
|
|
6401
|
+
async registeredVehiclesUpgradeToVip(upgradeToVipBody: UpgradeToVipBody, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<RegisteredVehicleResponse>> {
|
|
6402
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.registeredVehiclesUpgradeToVip(upgradeToVipBody, options);
|
|
6388
6403
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
6389
6404
|
},
|
|
6390
6405
|
/**
|
|
@@ -6930,13 +6945,12 @@ export const DefaultApiFactory = function (configuration?: Configuration, basePa
|
|
|
6930
6945
|
},
|
|
6931
6946
|
/**
|
|
6932
6947
|
*
|
|
6933
|
-
* @param {
|
|
6934
|
-
* @param {string} [province]
|
|
6948
|
+
* @param {UpgradeToVipBody} upgradeToVipBody
|
|
6935
6949
|
* @param {*} [options] Override http request option.
|
|
6936
6950
|
* @throws {RequiredError}
|
|
6937
6951
|
*/
|
|
6938
|
-
registeredVehiclesUpgradeToVip(
|
|
6939
|
-
return localVarFp.registeredVehiclesUpgradeToVip(
|
|
6952
|
+
registeredVehiclesUpgradeToVip(upgradeToVipBody: UpgradeToVipBody, options?: any): AxiosPromise<RegisteredVehicleResponse> {
|
|
6953
|
+
return localVarFp.registeredVehiclesUpgradeToVip(upgradeToVipBody, options).then((request) => request(axios, basePath));
|
|
6940
6954
|
},
|
|
6941
6955
|
/**
|
|
6942
6956
|
*
|
|
@@ -7567,14 +7581,13 @@ export class DefaultApi extends BaseAPI {
|
|
|
7567
7581
|
|
|
7568
7582
|
/**
|
|
7569
7583
|
*
|
|
7570
|
-
* @param {
|
|
7571
|
-
* @param {string} [province]
|
|
7584
|
+
* @param {UpgradeToVipBody} upgradeToVipBody
|
|
7572
7585
|
* @param {*} [options] Override http request option.
|
|
7573
7586
|
* @throws {RequiredError}
|
|
7574
7587
|
* @memberof DefaultApi
|
|
7575
7588
|
*/
|
|
7576
|
-
public registeredVehiclesUpgradeToVip(
|
|
7577
|
-
return DefaultApiFp(this.configuration).registeredVehiclesUpgradeToVip(
|
|
7589
|
+
public registeredVehiclesUpgradeToVip(upgradeToVipBody: UpgradeToVipBody, options?: AxiosRequestConfig) {
|
|
7590
|
+
return DefaultApiFp(this.configuration).registeredVehiclesUpgradeToVip(upgradeToVipBody, options).then((request) => request(this.axios, this.basePath));
|
|
7578
7591
|
}
|
|
7579
7592
|
|
|
7580
7593
|
/**
|
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.7
|
|
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.7
|
|
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.7
|
|
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.7
|
|
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.7
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -3473,6 +3473,25 @@ export interface UpdateRegisteredVehicleBody {
|
|
|
3473
3473
|
*/
|
|
3474
3474
|
'id': string;
|
|
3475
3475
|
}
|
|
3476
|
+
/**
|
|
3477
|
+
*
|
|
3478
|
+
* @export
|
|
3479
|
+
* @interface UpgradeToVipBody
|
|
3480
|
+
*/
|
|
3481
|
+
export interface UpgradeToVipBody {
|
|
3482
|
+
/**
|
|
3483
|
+
*
|
|
3484
|
+
* @type {string}
|
|
3485
|
+
* @memberof UpgradeToVipBody
|
|
3486
|
+
*/
|
|
3487
|
+
'province'?: string | null;
|
|
3488
|
+
/**
|
|
3489
|
+
*
|
|
3490
|
+
* @type {string}
|
|
3491
|
+
* @memberof UpgradeToVipBody
|
|
3492
|
+
*/
|
|
3493
|
+
'license_plate': string;
|
|
3494
|
+
}
|
|
3476
3495
|
/**
|
|
3477
3496
|
*
|
|
3478
3497
|
* @export
|
|
@@ -4013,12 +4032,11 @@ export declare const DefaultApiAxiosParamCreator: (configuration?: Configuration
|
|
|
4013
4032
|
registeredVehiclesUpdate: (updateRegisteredVehicleBody: UpdateRegisteredVehicleBody, xAccountId?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
4014
4033
|
/**
|
|
4015
4034
|
*
|
|
4016
|
-
* @param {
|
|
4017
|
-
* @param {string} [province]
|
|
4035
|
+
* @param {UpgradeToVipBody} upgradeToVipBody
|
|
4018
4036
|
* @param {*} [options] Override http request option.
|
|
4019
4037
|
* @throws {RequiredError}
|
|
4020
4038
|
*/
|
|
4021
|
-
registeredVehiclesUpgradeToVip: (
|
|
4039
|
+
registeredVehiclesUpgradeToVip: (upgradeToVipBody: UpgradeToVipBody, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
4022
4040
|
/**
|
|
4023
4041
|
*
|
|
4024
4042
|
* @param {*} [options] Override http request option.
|
|
@@ -4456,12 +4474,11 @@ export declare const DefaultApiFp: (configuration?: Configuration) => {
|
|
|
4456
4474
|
registeredVehiclesUpdate(updateRegisteredVehicleBody: UpdateRegisteredVehicleBody, xAccountId?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<RegisteredVehicleResponse>>;
|
|
4457
4475
|
/**
|
|
4458
4476
|
*
|
|
4459
|
-
* @param {
|
|
4460
|
-
* @param {string} [province]
|
|
4477
|
+
* @param {UpgradeToVipBody} upgradeToVipBody
|
|
4461
4478
|
* @param {*} [options] Override http request option.
|
|
4462
4479
|
* @throws {RequiredError}
|
|
4463
4480
|
*/
|
|
4464
|
-
registeredVehiclesUpgradeToVip(
|
|
4481
|
+
registeredVehiclesUpgradeToVip(upgradeToVipBody: UpgradeToVipBody, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<RegisteredVehicleResponse>>;
|
|
4465
4482
|
/**
|
|
4466
4483
|
*
|
|
4467
4484
|
* @param {*} [options] Override http request option.
|
|
@@ -4899,12 +4916,11 @@ export declare const DefaultApiFactory: (configuration?: Configuration, basePath
|
|
|
4899
4916
|
registeredVehiclesUpdate(updateRegisteredVehicleBody: UpdateRegisteredVehicleBody, xAccountId?: string, options?: any): AxiosPromise<RegisteredVehicleResponse>;
|
|
4900
4917
|
/**
|
|
4901
4918
|
*
|
|
4902
|
-
* @param {
|
|
4903
|
-
* @param {string} [province]
|
|
4919
|
+
* @param {UpgradeToVipBody} upgradeToVipBody
|
|
4904
4920
|
* @param {*} [options] Override http request option.
|
|
4905
4921
|
* @throws {RequiredError}
|
|
4906
4922
|
*/
|
|
4907
|
-
registeredVehiclesUpgradeToVip(
|
|
4923
|
+
registeredVehiclesUpgradeToVip(upgradeToVipBody: UpgradeToVipBody, options?: any): AxiosPromise<RegisteredVehicleResponse>;
|
|
4908
4924
|
/**
|
|
4909
4925
|
*
|
|
4910
4926
|
* @param {*} [options] Override http request option.
|
|
@@ -5389,13 +5405,12 @@ export declare class DefaultApi extends BaseAPI {
|
|
|
5389
5405
|
registeredVehiclesUpdate(updateRegisteredVehicleBody: UpdateRegisteredVehicleBody, xAccountId?: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<RegisteredVehicleResponse, any>>;
|
|
5390
5406
|
/**
|
|
5391
5407
|
*
|
|
5392
|
-
* @param {
|
|
5393
|
-
* @param {string} [province]
|
|
5408
|
+
* @param {UpgradeToVipBody} upgradeToVipBody
|
|
5394
5409
|
* @param {*} [options] Override http request option.
|
|
5395
5410
|
* @throws {RequiredError}
|
|
5396
5411
|
* @memberof DefaultApi
|
|
5397
5412
|
*/
|
|
5398
|
-
registeredVehiclesUpgradeToVip(
|
|
5413
|
+
registeredVehiclesUpgradeToVip(upgradeToVipBody: UpgradeToVipBody, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<RegisteredVehicleResponse, any>>;
|
|
5399
5414
|
/**
|
|
5400
5415
|
*
|
|
5401
5416
|
* @param {*} [options] Override http request option.
|
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.7
|
|
9
9
|
*
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -1763,31 +1763,28 @@ const DefaultApiAxiosParamCreator = function (configuration) {
|
|
|
1763
1763
|
}),
|
|
1764
1764
|
/**
|
|
1765
1765
|
*
|
|
1766
|
-
* @param {
|
|
1767
|
-
* @param {string} [province]
|
|
1766
|
+
* @param {UpgradeToVipBody} upgradeToVipBody
|
|
1768
1767
|
* @param {*} [options] Override http request option.
|
|
1769
1768
|
* @throws {RequiredError}
|
|
1770
1769
|
*/
|
|
1771
|
-
registeredVehiclesUpgradeToVip: (
|
|
1772
|
-
// verify required parameter '
|
|
1773
|
-
(0, common_1.assertParamExists)('registeredVehiclesUpgradeToVip', '
|
|
1774
|
-
const localVarPath = `/registered-vehicles/upgrade-to-vip
|
|
1775
|
-
.replace(`{${"license-plate"}}`, encodeURIComponent(String(licensePlate)));
|
|
1770
|
+
registeredVehiclesUpgradeToVip: (upgradeToVipBody, options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
1771
|
+
// verify required parameter 'upgradeToVipBody' is not null or undefined
|
|
1772
|
+
(0, common_1.assertParamExists)('registeredVehiclesUpgradeToVip', 'upgradeToVipBody', upgradeToVipBody);
|
|
1773
|
+
const localVarPath = `/registered-vehicles/upgrade-to-vip`;
|
|
1776
1774
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
1777
1775
|
const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
1778
1776
|
let baseOptions;
|
|
1779
1777
|
if (configuration) {
|
|
1780
1778
|
baseOptions = configuration.baseOptions;
|
|
1781
1779
|
}
|
|
1782
|
-
const localVarRequestOptions = Object.assign(Object.assign({ method: '
|
|
1780
|
+
const localVarRequestOptions = Object.assign(Object.assign({ method: 'POST' }, baseOptions), options);
|
|
1783
1781
|
const localVarHeaderParameter = {};
|
|
1784
1782
|
const localVarQueryParameter = {};
|
|
1785
|
-
|
|
1786
|
-
localVarQueryParameter['province'] = province;
|
|
1787
|
-
}
|
|
1783
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
1788
1784
|
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
1789
1785
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
1790
1786
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
1787
|
+
localVarRequestOptions.data = (0, common_1.serializeDataIfNeeded)(upgradeToVipBody, localVarRequestOptions, configuration);
|
|
1791
1788
|
return {
|
|
1792
1789
|
url: (0, common_1.toPathString)(localVarUrlObj),
|
|
1793
1790
|
options: localVarRequestOptions,
|
|
@@ -2535,14 +2532,13 @@ const DefaultApiFp = function (configuration) {
|
|
|
2535
2532
|
},
|
|
2536
2533
|
/**
|
|
2537
2534
|
*
|
|
2538
|
-
* @param {
|
|
2539
|
-
* @param {string} [province]
|
|
2535
|
+
* @param {UpgradeToVipBody} upgradeToVipBody
|
|
2540
2536
|
* @param {*} [options] Override http request option.
|
|
2541
2537
|
* @throws {RequiredError}
|
|
2542
2538
|
*/
|
|
2543
|
-
registeredVehiclesUpgradeToVip(
|
|
2539
|
+
registeredVehiclesUpgradeToVip(upgradeToVipBody, options) {
|
|
2544
2540
|
return __awaiter(this, void 0, void 0, function* () {
|
|
2545
|
-
const localVarAxiosArgs = yield localVarAxiosParamCreator.registeredVehiclesUpgradeToVip(
|
|
2541
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.registeredVehiclesUpgradeToVip(upgradeToVipBody, options);
|
|
2546
2542
|
return (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration);
|
|
2547
2543
|
});
|
|
2548
2544
|
},
|
|
@@ -3097,13 +3093,12 @@ const DefaultApiFactory = function (configuration, basePath, axios) {
|
|
|
3097
3093
|
},
|
|
3098
3094
|
/**
|
|
3099
3095
|
*
|
|
3100
|
-
* @param {
|
|
3101
|
-
* @param {string} [province]
|
|
3096
|
+
* @param {UpgradeToVipBody} upgradeToVipBody
|
|
3102
3097
|
* @param {*} [options] Override http request option.
|
|
3103
3098
|
* @throws {RequiredError}
|
|
3104
3099
|
*/
|
|
3105
|
-
registeredVehiclesUpgradeToVip(
|
|
3106
|
-
return localVarFp.registeredVehiclesUpgradeToVip(
|
|
3100
|
+
registeredVehiclesUpgradeToVip(upgradeToVipBody, options) {
|
|
3101
|
+
return localVarFp.registeredVehiclesUpgradeToVip(upgradeToVipBody, options).then((request) => request(axios, basePath));
|
|
3107
3102
|
},
|
|
3108
3103
|
/**
|
|
3109
3104
|
*
|
|
@@ -3689,14 +3684,13 @@ class DefaultApi extends base_1.BaseAPI {
|
|
|
3689
3684
|
}
|
|
3690
3685
|
/**
|
|
3691
3686
|
*
|
|
3692
|
-
* @param {
|
|
3693
|
-
* @param {string} [province]
|
|
3687
|
+
* @param {UpgradeToVipBody} upgradeToVipBody
|
|
3694
3688
|
* @param {*} [options] Override http request option.
|
|
3695
3689
|
* @throws {RequiredError}
|
|
3696
3690
|
* @memberof DefaultApi
|
|
3697
3691
|
*/
|
|
3698
|
-
registeredVehiclesUpgradeToVip(
|
|
3699
|
-
return (0, exports.DefaultApiFp)(this.configuration).registeredVehiclesUpgradeToVip(
|
|
3692
|
+
registeredVehiclesUpgradeToVip(upgradeToVipBody, options) {
|
|
3693
|
+
return (0, exports.DefaultApiFp)(this.configuration).registeredVehiclesUpgradeToVip(upgradeToVipBody, options).then((request) => request(this.axios, this.basePath));
|
|
3700
3694
|
}
|
|
3701
3695
|
/**
|
|
3702
3696
|
*
|
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.7
|
|
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.7
|
|
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.7
|
|
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.7
|
|
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.7
|
|
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.7
|
|
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.7
|
|
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.7
|
|
9
9
|
*
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|