ob-bms-sdk 0.0.114 → 0.0.115
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 +8 -10
- package/dist/api/api.d.ts +8 -8
- package/dist/api/api.js +4 -6
- package/package.json +1 -1
package/api/api.ts
CHANGED
|
@@ -10726,13 +10726,11 @@ export const DefaultApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
10726
10726
|
},
|
|
10727
10727
|
/**
|
|
10728
10728
|
*
|
|
10729
|
-
* @param {string} xAccountId
|
|
10729
|
+
* @param {string} [xAccountId]
|
|
10730
10730
|
* @param {*} [options] Override http request option.
|
|
10731
10731
|
* @throws {RequiredError}
|
|
10732
10732
|
*/
|
|
10733
|
-
parkingTicketsV2AllDetails: async (xAccountId
|
|
10734
|
-
// verify required parameter 'xAccountId' is not null or undefined
|
|
10735
|
-
assertParamExists('parkingTicketsV2AllDetails', 'xAccountId', xAccountId)
|
|
10733
|
+
parkingTicketsV2AllDetails: async (xAccountId?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
10736
10734
|
const localVarPath = `/v2/parking_tickets/all_details`;
|
|
10737
10735
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
10738
10736
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -12084,11 +12082,11 @@ export const DefaultApiFp = function(configuration?: Configuration) {
|
|
|
12084
12082
|
},
|
|
12085
12083
|
/**
|
|
12086
12084
|
*
|
|
12087
|
-
* @param {string} xAccountId
|
|
12085
|
+
* @param {string} [xAccountId]
|
|
12088
12086
|
* @param {*} [options] Override http request option.
|
|
12089
12087
|
* @throws {RequiredError}
|
|
12090
12088
|
*/
|
|
12091
|
-
async parkingTicketsV2AllDetails(xAccountId
|
|
12089
|
+
async parkingTicketsV2AllDetails(xAccountId?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<WrappedResponseParkingSpaceDetailAndSpaceDetailData>> {
|
|
12092
12090
|
const localVarAxiosArgs = await localVarAxiosParamCreator.parkingTicketsV2AllDetails(xAccountId, options);
|
|
12093
12091
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
12094
12092
|
},
|
|
@@ -12804,11 +12802,11 @@ export const DefaultApiFactory = function (configuration?: Configuration, basePa
|
|
|
12804
12802
|
},
|
|
12805
12803
|
/**
|
|
12806
12804
|
*
|
|
12807
|
-
* @param {string} xAccountId
|
|
12805
|
+
* @param {string} [xAccountId]
|
|
12808
12806
|
* @param {*} [options] Override http request option.
|
|
12809
12807
|
* @throws {RequiredError}
|
|
12810
12808
|
*/
|
|
12811
|
-
parkingTicketsV2AllDetails(xAccountId
|
|
12809
|
+
parkingTicketsV2AllDetails(xAccountId?: string, options?: any): AxiosPromise<WrappedResponseParkingSpaceDetailAndSpaceDetailData> {
|
|
12812
12810
|
return localVarFp.parkingTicketsV2AllDetails(xAccountId, options).then((request) => request(axios, basePath));
|
|
12813
12811
|
},
|
|
12814
12812
|
/**
|
|
@@ -13593,12 +13591,12 @@ export class DefaultApi extends BaseAPI {
|
|
|
13593
13591
|
|
|
13594
13592
|
/**
|
|
13595
13593
|
*
|
|
13596
|
-
* @param {string} xAccountId
|
|
13594
|
+
* @param {string} [xAccountId]
|
|
13597
13595
|
* @param {*} [options] Override http request option.
|
|
13598
13596
|
* @throws {RequiredError}
|
|
13599
13597
|
* @memberof DefaultApi
|
|
13600
13598
|
*/
|
|
13601
|
-
public parkingTicketsV2AllDetails(xAccountId
|
|
13599
|
+
public parkingTicketsV2AllDetails(xAccountId?: string, options?: AxiosRequestConfig) {
|
|
13602
13600
|
return DefaultApiFp(this.configuration).parkingTicketsV2AllDetails(xAccountId, options).then((request) => request(this.axios, this.basePath));
|
|
13603
13601
|
}
|
|
13604
13602
|
|
package/dist/api/api.d.ts
CHANGED
|
@@ -9138,11 +9138,11 @@ export declare const DefaultApiAxiosParamCreator: (configuration?: Configuration
|
|
|
9138
9138
|
parkingTicketsRedeem: (logId: string, parkingTicketsRedeemBody: ParkingTicketsRedeemBody, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
9139
9139
|
/**
|
|
9140
9140
|
*
|
|
9141
|
-
* @param {string} xAccountId
|
|
9141
|
+
* @param {string} [xAccountId]
|
|
9142
9142
|
* @param {*} [options] Override http request option.
|
|
9143
9143
|
* @throws {RequiredError}
|
|
9144
9144
|
*/
|
|
9145
|
-
parkingTicketsV2AllDetails: (xAccountId
|
|
9145
|
+
parkingTicketsV2AllDetails: (xAccountId?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
9146
9146
|
/**
|
|
9147
9147
|
*
|
|
9148
9148
|
* @param {string} visitScheduleId
|
|
@@ -9693,11 +9693,11 @@ export declare const DefaultApiFp: (configuration?: Configuration) => {
|
|
|
9693
9693
|
parkingTicketsRedeem(logId: string, parkingTicketsRedeemBody: ParkingTicketsRedeemBody, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<WrappedResponseParkingTicketData>>;
|
|
9694
9694
|
/**
|
|
9695
9695
|
*
|
|
9696
|
-
* @param {string} xAccountId
|
|
9696
|
+
* @param {string} [xAccountId]
|
|
9697
9697
|
* @param {*} [options] Override http request option.
|
|
9698
9698
|
* @throws {RequiredError}
|
|
9699
9699
|
*/
|
|
9700
|
-
parkingTicketsV2AllDetails(xAccountId
|
|
9700
|
+
parkingTicketsV2AllDetails(xAccountId?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<WrappedResponseParkingSpaceDetailAndSpaceDetailData>>;
|
|
9701
9701
|
/**
|
|
9702
9702
|
*
|
|
9703
9703
|
* @param {string} visitScheduleId
|
|
@@ -10248,11 +10248,11 @@ export declare const DefaultApiFactory: (configuration?: Configuration, basePath
|
|
|
10248
10248
|
parkingTicketsRedeem(logId: string, parkingTicketsRedeemBody: ParkingTicketsRedeemBody, options?: any): AxiosPromise<WrappedResponseParkingTicketData>;
|
|
10249
10249
|
/**
|
|
10250
10250
|
*
|
|
10251
|
-
* @param {string} xAccountId
|
|
10251
|
+
* @param {string} [xAccountId]
|
|
10252
10252
|
* @param {*} [options] Override http request option.
|
|
10253
10253
|
* @throws {RequiredError}
|
|
10254
10254
|
*/
|
|
10255
|
-
parkingTicketsV2AllDetails(xAccountId
|
|
10255
|
+
parkingTicketsV2AllDetails(xAccountId?: string, options?: any): AxiosPromise<WrappedResponseParkingSpaceDetailAndSpaceDetailData>;
|
|
10256
10256
|
/**
|
|
10257
10257
|
*
|
|
10258
10258
|
* @param {string} visitScheduleId
|
|
@@ -10851,12 +10851,12 @@ export declare class DefaultApi extends BaseAPI {
|
|
|
10851
10851
|
parkingTicketsRedeem(logId: string, parkingTicketsRedeemBody: ParkingTicketsRedeemBody, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<WrappedResponseParkingTicketData, any>>;
|
|
10852
10852
|
/**
|
|
10853
10853
|
*
|
|
10854
|
-
* @param {string} xAccountId
|
|
10854
|
+
* @param {string} [xAccountId]
|
|
10855
10855
|
* @param {*} [options] Override http request option.
|
|
10856
10856
|
* @throws {RequiredError}
|
|
10857
10857
|
* @memberof DefaultApi
|
|
10858
10858
|
*/
|
|
10859
|
-
parkingTicketsV2AllDetails(xAccountId
|
|
10859
|
+
parkingTicketsV2AllDetails(xAccountId?: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<WrappedResponseParkingSpaceDetailAndSpaceDetailData, any>>;
|
|
10860
10860
|
/**
|
|
10861
10861
|
*
|
|
10862
10862
|
* @param {string} visitScheduleId
|
package/dist/api/api.js
CHANGED
|
@@ -1736,13 +1736,11 @@ const DefaultApiAxiosParamCreator = function (configuration) {
|
|
|
1736
1736
|
}),
|
|
1737
1737
|
/**
|
|
1738
1738
|
*
|
|
1739
|
-
* @param {string} xAccountId
|
|
1739
|
+
* @param {string} [xAccountId]
|
|
1740
1740
|
* @param {*} [options] Override http request option.
|
|
1741
1741
|
* @throws {RequiredError}
|
|
1742
1742
|
*/
|
|
1743
1743
|
parkingTicketsV2AllDetails: (xAccountId, options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
1744
|
-
// verify required parameter 'xAccountId' is not null or undefined
|
|
1745
|
-
(0, common_1.assertParamExists)('parkingTicketsV2AllDetails', 'xAccountId', xAccountId);
|
|
1746
1744
|
const localVarPath = `/v2/parking_tickets/all_details`;
|
|
1747
1745
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
1748
1746
|
const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
@@ -3048,7 +3046,7 @@ const DefaultApiFp = function (configuration) {
|
|
|
3048
3046
|
},
|
|
3049
3047
|
/**
|
|
3050
3048
|
*
|
|
3051
|
-
* @param {string} xAccountId
|
|
3049
|
+
* @param {string} [xAccountId]
|
|
3052
3050
|
* @param {*} [options] Override http request option.
|
|
3053
3051
|
* @throws {RequiredError}
|
|
3054
3052
|
*/
|
|
@@ -3814,7 +3812,7 @@ const DefaultApiFactory = function (configuration, basePath, axios) {
|
|
|
3814
3812
|
},
|
|
3815
3813
|
/**
|
|
3816
3814
|
*
|
|
3817
|
-
* @param {string} xAccountId
|
|
3815
|
+
* @param {string} [xAccountId]
|
|
3818
3816
|
* @param {*} [options] Override http request option.
|
|
3819
3817
|
* @throws {RequiredError}
|
|
3820
3818
|
*/
|
|
@@ -4557,7 +4555,7 @@ class DefaultApi extends base_1.BaseAPI {
|
|
|
4557
4555
|
}
|
|
4558
4556
|
/**
|
|
4559
4557
|
*
|
|
4560
|
-
* @param {string} xAccountId
|
|
4558
|
+
* @param {string} [xAccountId]
|
|
4561
4559
|
* @param {*} [options] Override http request option.
|
|
4562
4560
|
* @throws {RequiredError}
|
|
4563
4561
|
* @memberof DefaultApi
|