ob-parking-sdk 0.0.51 → 0.0.52

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 CHANGED
@@ -4749,14 +4749,12 @@ export const DefaultApiAxiosParamCreator = function (configuration?: Configurati
4749
4749
  },
4750
4750
  /**
4751
4751
  *
4752
- * @param {string} xAccountId
4753
4752
  * @param {CreateRegisteredVehicleBody} createRegisteredVehicleBody
4753
+ * @param {string} [xAccountId]
4754
4754
  * @param {*} [options] Override http request option.
4755
4755
  * @throws {RequiredError}
4756
4756
  */
4757
- registeredVehiclesCreate: async (xAccountId: string, createRegisteredVehicleBody: CreateRegisteredVehicleBody, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
4758
- // verify required parameter 'xAccountId' is not null or undefined
4759
- assertParamExists('registeredVehiclesCreate', 'xAccountId', xAccountId)
4757
+ registeredVehiclesCreate: async (createRegisteredVehicleBody: CreateRegisteredVehicleBody, xAccountId?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
4760
4758
  // verify required parameter 'createRegisteredVehicleBody' is not null or undefined
4761
4759
  assertParamExists('registeredVehiclesCreate', 'createRegisteredVehicleBody', createRegisteredVehicleBody)
4762
4760
  const localVarPath = `/registered-vehicles`;
@@ -4857,13 +4855,11 @@ export const DefaultApiAxiosParamCreator = function (configuration?: Configurati
4857
4855
  },
4858
4856
  /**
4859
4857
  *
4860
- * @param {string} xAccountId
4858
+ * @param {string} [xAccountId]
4861
4859
  * @param {*} [options] Override http request option.
4862
4860
  * @throws {RequiredError}
4863
4861
  */
4864
- registeredVehiclesGetByAccountId: async (xAccountId: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
4865
- // verify required parameter 'xAccountId' is not null or undefined
4866
- assertParamExists('registeredVehiclesGetByAccountId', 'xAccountId', xAccountId)
4862
+ registeredVehiclesGetByAccountId: async (xAccountId?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
4867
4863
  const localVarPath = `/registered-vehicles/account`;
4868
4864
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
4869
4865
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
@@ -5714,13 +5710,13 @@ export const DefaultApiFp = function(configuration?: Configuration) {
5714
5710
  },
5715
5711
  /**
5716
5712
  *
5717
- * @param {string} xAccountId
5718
5713
  * @param {CreateRegisteredVehicleBody} createRegisteredVehicleBody
5714
+ * @param {string} [xAccountId]
5719
5715
  * @param {*} [options] Override http request option.
5720
5716
  * @throws {RequiredError}
5721
5717
  */
5722
- async registeredVehiclesCreate(xAccountId: string, createRegisteredVehicleBody: CreateRegisteredVehicleBody, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<RegisteredVehicleResponse>> {
5723
- const localVarAxiosArgs = await localVarAxiosParamCreator.registeredVehiclesCreate(xAccountId, createRegisteredVehicleBody, options);
5718
+ async registeredVehiclesCreate(createRegisteredVehicleBody: CreateRegisteredVehicleBody, xAccountId?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<RegisteredVehicleResponse>> {
5719
+ const localVarAxiosArgs = await localVarAxiosParamCreator.registeredVehiclesCreate(createRegisteredVehicleBody, xAccountId, options);
5724
5720
  return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
5725
5721
  },
5726
5722
  /**
@@ -5745,11 +5741,11 @@ export const DefaultApiFp = function(configuration?: Configuration) {
5745
5741
  },
5746
5742
  /**
5747
5743
  *
5748
- * @param {string} xAccountId
5744
+ * @param {string} [xAccountId]
5749
5745
  * @param {*} [options] Override http request option.
5750
5746
  * @throws {RequiredError}
5751
5747
  */
5752
- async registeredVehiclesGetByAccountId(xAccountId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<RegisteredVehicleIndexResponse>> {
5748
+ async registeredVehiclesGetByAccountId(xAccountId?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<RegisteredVehicleIndexResponse>> {
5753
5749
  const localVarAxiosArgs = await localVarAxiosParamCreator.registeredVehiclesGetByAccountId(xAccountId, options);
5754
5750
  return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
5755
5751
  },
@@ -6247,13 +6243,13 @@ export const DefaultApiFactory = function (configuration?: Configuration, basePa
6247
6243
  },
6248
6244
  /**
6249
6245
  *
6250
- * @param {string} xAccountId
6251
6246
  * @param {CreateRegisteredVehicleBody} createRegisteredVehicleBody
6247
+ * @param {string} [xAccountId]
6252
6248
  * @param {*} [options] Override http request option.
6253
6249
  * @throws {RequiredError}
6254
6250
  */
6255
- registeredVehiclesCreate(xAccountId: string, createRegisteredVehicleBody: CreateRegisteredVehicleBody, options?: any): AxiosPromise<RegisteredVehicleResponse> {
6256
- return localVarFp.registeredVehiclesCreate(xAccountId, createRegisteredVehicleBody, options).then((request) => request(axios, basePath));
6251
+ registeredVehiclesCreate(createRegisteredVehicleBody: CreateRegisteredVehicleBody, xAccountId?: string, options?: any): AxiosPromise<RegisteredVehicleResponse> {
6252
+ return localVarFp.registeredVehiclesCreate(createRegisteredVehicleBody, xAccountId, options).then((request) => request(axios, basePath));
6257
6253
  },
6258
6254
  /**
6259
6255
  *
@@ -6275,11 +6271,11 @@ export const DefaultApiFactory = function (configuration?: Configuration, basePa
6275
6271
  },
6276
6272
  /**
6277
6273
  *
6278
- * @param {string} xAccountId
6274
+ * @param {string} [xAccountId]
6279
6275
  * @param {*} [options] Override http request option.
6280
6276
  * @throws {RequiredError}
6281
6277
  */
6282
- registeredVehiclesGetByAccountId(xAccountId: string, options?: any): AxiosPromise<RegisteredVehicleIndexResponse> {
6278
+ registeredVehiclesGetByAccountId(xAccountId?: string, options?: any): AxiosPromise<RegisteredVehicleIndexResponse> {
6283
6279
  return localVarFp.registeredVehiclesGetByAccountId(xAccountId, options).then((request) => request(axios, basePath));
6284
6280
  },
6285
6281
  /**
@@ -6832,14 +6828,14 @@ export class DefaultApi extends BaseAPI {
6832
6828
 
6833
6829
  /**
6834
6830
  *
6835
- * @param {string} xAccountId
6836
6831
  * @param {CreateRegisteredVehicleBody} createRegisteredVehicleBody
6832
+ * @param {string} [xAccountId]
6837
6833
  * @param {*} [options] Override http request option.
6838
6834
  * @throws {RequiredError}
6839
6835
  * @memberof DefaultApi
6840
6836
  */
6841
- public registeredVehiclesCreate(xAccountId: string, createRegisteredVehicleBody: CreateRegisteredVehicleBody, options?: AxiosRequestConfig) {
6842
- return DefaultApiFp(this.configuration).registeredVehiclesCreate(xAccountId, createRegisteredVehicleBody, options).then((request) => request(this.axios, this.basePath));
6837
+ public registeredVehiclesCreate(createRegisteredVehicleBody: CreateRegisteredVehicleBody, xAccountId?: string, options?: AxiosRequestConfig) {
6838
+ return DefaultApiFp(this.configuration).registeredVehiclesCreate(createRegisteredVehicleBody, xAccountId, options).then((request) => request(this.axios, this.basePath));
6843
6839
  }
6844
6840
 
6845
6841
  /**
@@ -6866,12 +6862,12 @@ export class DefaultApi extends BaseAPI {
6866
6862
 
6867
6863
  /**
6868
6864
  *
6869
- * @param {string} xAccountId
6865
+ * @param {string} [xAccountId]
6870
6866
  * @param {*} [options] Override http request option.
6871
6867
  * @throws {RequiredError}
6872
6868
  * @memberof DefaultApi
6873
6869
  */
6874
- public registeredVehiclesGetByAccountId(xAccountId: string, options?: AxiosRequestConfig) {
6870
+ public registeredVehiclesGetByAccountId(xAccountId?: string, options?: AxiosRequestConfig) {
6875
6871
  return DefaultApiFp(this.configuration).registeredVehiclesGetByAccountId(xAccountId, options).then((request) => request(this.axios, this.basePath));
6876
6872
  }
6877
6873
 
package/dist/api/api.d.ts CHANGED
@@ -3537,12 +3537,12 @@ export declare const DefaultApiAxiosParamCreator: (configuration?: Configuration
3537
3537
  receiptValidateOcrReceiptImage: (validateReceiptImageBody: ValidateReceiptImageBody, xAccountId?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
3538
3538
  /**
3539
3539
  *
3540
- * @param {string} xAccountId
3541
3540
  * @param {CreateRegisteredVehicleBody} createRegisteredVehicleBody
3541
+ * @param {string} [xAccountId]
3542
3542
  * @param {*} [options] Override http request option.
3543
3543
  * @throws {RequiredError}
3544
3544
  */
3545
- registeredVehiclesCreate: (xAccountId: string, createRegisteredVehicleBody: CreateRegisteredVehicleBody, options?: AxiosRequestConfig) => Promise<RequestArgs>;
3545
+ registeredVehiclesCreate: (createRegisteredVehicleBody: CreateRegisteredVehicleBody, xAccountId?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
3546
3546
  /**
3547
3547
  *
3548
3548
  * @param {string} id
@@ -3559,11 +3559,11 @@ export declare const DefaultApiAxiosParamCreator: (configuration?: Configuration
3559
3559
  registeredVehiclesGet: (id: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
3560
3560
  /**
3561
3561
  *
3562
- * @param {string} xAccountId
3562
+ * @param {string} [xAccountId]
3563
3563
  * @param {*} [options] Override http request option.
3564
3564
  * @throws {RequiredError}
3565
3565
  */
3566
- registeredVehiclesGetByAccountId: (xAccountId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
3566
+ registeredVehiclesGetByAccountId: (xAccountId?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
3567
3567
  /**
3568
3568
  *
3569
3569
  * @param {*} [options] Override http request option.
@@ -3950,12 +3950,12 @@ export declare const DefaultApiFp: (configuration?: Configuration) => {
3950
3950
  receiptValidateOcrReceiptImage(validateReceiptImageBody: ValidateReceiptImageBody, xAccountId?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ReceiptData>>;
3951
3951
  /**
3952
3952
  *
3953
- * @param {string} xAccountId
3954
3953
  * @param {CreateRegisteredVehicleBody} createRegisteredVehicleBody
3954
+ * @param {string} [xAccountId]
3955
3955
  * @param {*} [options] Override http request option.
3956
3956
  * @throws {RequiredError}
3957
3957
  */
3958
- registeredVehiclesCreate(xAccountId: string, createRegisteredVehicleBody: CreateRegisteredVehicleBody, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<RegisteredVehicleResponse>>;
3958
+ registeredVehiclesCreate(createRegisteredVehicleBody: CreateRegisteredVehicleBody, xAccountId?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<RegisteredVehicleResponse>>;
3959
3959
  /**
3960
3960
  *
3961
3961
  * @param {string} id
@@ -3972,11 +3972,11 @@ export declare const DefaultApiFp: (configuration?: Configuration) => {
3972
3972
  registeredVehiclesGet(id: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<RegisteredVehicleResponse>>;
3973
3973
  /**
3974
3974
  *
3975
- * @param {string} xAccountId
3975
+ * @param {string} [xAccountId]
3976
3976
  * @param {*} [options] Override http request option.
3977
3977
  * @throws {RequiredError}
3978
3978
  */
3979
- registeredVehiclesGetByAccountId(xAccountId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<RegisteredVehicleIndexResponse>>;
3979
+ registeredVehiclesGetByAccountId(xAccountId?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<RegisteredVehicleIndexResponse>>;
3980
3980
  /**
3981
3981
  *
3982
3982
  * @param {*} [options] Override http request option.
@@ -4363,12 +4363,12 @@ export declare const DefaultApiFactory: (configuration?: Configuration, basePath
4363
4363
  receiptValidateOcrReceiptImage(validateReceiptImageBody: ValidateReceiptImageBody, xAccountId?: string, options?: any): AxiosPromise<ReceiptData>;
4364
4364
  /**
4365
4365
  *
4366
- * @param {string} xAccountId
4367
4366
  * @param {CreateRegisteredVehicleBody} createRegisteredVehicleBody
4367
+ * @param {string} [xAccountId]
4368
4368
  * @param {*} [options] Override http request option.
4369
4369
  * @throws {RequiredError}
4370
4370
  */
4371
- registeredVehiclesCreate(xAccountId: string, createRegisteredVehicleBody: CreateRegisteredVehicleBody, options?: any): AxiosPromise<RegisteredVehicleResponse>;
4371
+ registeredVehiclesCreate(createRegisteredVehicleBody: CreateRegisteredVehicleBody, xAccountId?: string, options?: any): AxiosPromise<RegisteredVehicleResponse>;
4372
4372
  /**
4373
4373
  *
4374
4374
  * @param {string} id
@@ -4385,11 +4385,11 @@ export declare const DefaultApiFactory: (configuration?: Configuration, basePath
4385
4385
  registeredVehiclesGet(id: string, options?: any): AxiosPromise<RegisteredVehicleResponse>;
4386
4386
  /**
4387
4387
  *
4388
- * @param {string} xAccountId
4388
+ * @param {string} [xAccountId]
4389
4389
  * @param {*} [options] Override http request option.
4390
4390
  * @throws {RequiredError}
4391
4391
  */
4392
- registeredVehiclesGetByAccountId(xAccountId: string, options?: any): AxiosPromise<RegisteredVehicleIndexResponse>;
4392
+ registeredVehiclesGetByAccountId(xAccountId?: string, options?: any): AxiosPromise<RegisteredVehicleIndexResponse>;
4393
4393
  /**
4394
4394
  *
4395
4395
  * @param {*} [options] Override http request option.
@@ -4812,13 +4812,13 @@ export declare class DefaultApi extends BaseAPI {
4812
4812
  receiptValidateOcrReceiptImage(validateReceiptImageBody: ValidateReceiptImageBody, xAccountId?: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ReceiptData, any>>;
4813
4813
  /**
4814
4814
  *
4815
- * @param {string} xAccountId
4816
4815
  * @param {CreateRegisteredVehicleBody} createRegisteredVehicleBody
4816
+ * @param {string} [xAccountId]
4817
4817
  * @param {*} [options] Override http request option.
4818
4818
  * @throws {RequiredError}
4819
4819
  * @memberof DefaultApi
4820
4820
  */
4821
- registeredVehiclesCreate(xAccountId: string, createRegisteredVehicleBody: CreateRegisteredVehicleBody, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<RegisteredVehicleResponse, any>>;
4821
+ registeredVehiclesCreate(createRegisteredVehicleBody: CreateRegisteredVehicleBody, xAccountId?: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<RegisteredVehicleResponse, any>>;
4822
4822
  /**
4823
4823
  *
4824
4824
  * @param {string} id
@@ -4837,12 +4837,12 @@ export declare class DefaultApi extends BaseAPI {
4837
4837
  registeredVehiclesGet(id: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<RegisteredVehicleResponse, any>>;
4838
4838
  /**
4839
4839
  *
4840
- * @param {string} xAccountId
4840
+ * @param {string} [xAccountId]
4841
4841
  * @param {*} [options] Override http request option.
4842
4842
  * @throws {RequiredError}
4843
4843
  * @memberof DefaultApi
4844
4844
  */
4845
- registeredVehiclesGetByAccountId(xAccountId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<RegisteredVehicleIndexResponse, any>>;
4845
+ registeredVehiclesGetByAccountId(xAccountId?: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<RegisteredVehicleIndexResponse, any>>;
4846
4846
  /**
4847
4847
  *
4848
4848
  * @param {*} [options] Override http request option.
package/dist/api/api.js CHANGED
@@ -1307,14 +1307,12 @@ const DefaultApiAxiosParamCreator = function (configuration) {
1307
1307
  }),
1308
1308
  /**
1309
1309
  *
1310
- * @param {string} xAccountId
1311
1310
  * @param {CreateRegisteredVehicleBody} createRegisteredVehicleBody
1311
+ * @param {string} [xAccountId]
1312
1312
  * @param {*} [options] Override http request option.
1313
1313
  * @throws {RequiredError}
1314
1314
  */
1315
- registeredVehiclesCreate: (xAccountId, createRegisteredVehicleBody, options = {}) => __awaiter(this, void 0, void 0, function* () {
1316
- // verify required parameter 'xAccountId' is not null or undefined
1317
- (0, common_1.assertParamExists)('registeredVehiclesCreate', 'xAccountId', xAccountId);
1315
+ registeredVehiclesCreate: (createRegisteredVehicleBody, xAccountId, options = {}) => __awaiter(this, void 0, void 0, function* () {
1318
1316
  // verify required parameter 'createRegisteredVehicleBody' is not null or undefined
1319
1317
  (0, common_1.assertParamExists)('registeredVehiclesCreate', 'createRegisteredVehicleBody', createRegisteredVehicleBody);
1320
1318
  const localVarPath = `/registered-vehicles`;
@@ -1398,13 +1396,11 @@ const DefaultApiAxiosParamCreator = function (configuration) {
1398
1396
  }),
1399
1397
  /**
1400
1398
  *
1401
- * @param {string} xAccountId
1399
+ * @param {string} [xAccountId]
1402
1400
  * @param {*} [options] Override http request option.
1403
1401
  * @throws {RequiredError}
1404
1402
  */
1405
1403
  registeredVehiclesGetByAccountId: (xAccountId, options = {}) => __awaiter(this, void 0, void 0, function* () {
1406
- // verify required parameter 'xAccountId' is not null or undefined
1407
- (0, common_1.assertParamExists)('registeredVehiclesGetByAccountId', 'xAccountId', xAccountId);
1408
1404
  const localVarPath = `/registered-vehicles/account`;
1409
1405
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
1410
1406
  const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
@@ -2249,14 +2245,14 @@ const DefaultApiFp = function (configuration) {
2249
2245
  },
2250
2246
  /**
2251
2247
  *
2252
- * @param {string} xAccountId
2253
2248
  * @param {CreateRegisteredVehicleBody} createRegisteredVehicleBody
2249
+ * @param {string} [xAccountId]
2254
2250
  * @param {*} [options] Override http request option.
2255
2251
  * @throws {RequiredError}
2256
2252
  */
2257
- registeredVehiclesCreate(xAccountId, createRegisteredVehicleBody, options) {
2253
+ registeredVehiclesCreate(createRegisteredVehicleBody, xAccountId, options) {
2258
2254
  return __awaiter(this, void 0, void 0, function* () {
2259
- const localVarAxiosArgs = yield localVarAxiosParamCreator.registeredVehiclesCreate(xAccountId, createRegisteredVehicleBody, options);
2255
+ const localVarAxiosArgs = yield localVarAxiosParamCreator.registeredVehiclesCreate(createRegisteredVehicleBody, xAccountId, options);
2260
2256
  return (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration);
2261
2257
  });
2262
2258
  },
@@ -2286,7 +2282,7 @@ const DefaultApiFp = function (configuration) {
2286
2282
  },
2287
2283
  /**
2288
2284
  *
2289
- * @param {string} xAccountId
2285
+ * @param {string} [xAccountId]
2290
2286
  * @param {*} [options] Override http request option.
2291
2287
  * @throws {RequiredError}
2292
2288
  */
@@ -2814,13 +2810,13 @@ const DefaultApiFactory = function (configuration, basePath, axios) {
2814
2810
  },
2815
2811
  /**
2816
2812
  *
2817
- * @param {string} xAccountId
2818
2813
  * @param {CreateRegisteredVehicleBody} createRegisteredVehicleBody
2814
+ * @param {string} [xAccountId]
2819
2815
  * @param {*} [options] Override http request option.
2820
2816
  * @throws {RequiredError}
2821
2817
  */
2822
- registeredVehiclesCreate(xAccountId, createRegisteredVehicleBody, options) {
2823
- return localVarFp.registeredVehiclesCreate(xAccountId, createRegisteredVehicleBody, options).then((request) => request(axios, basePath));
2818
+ registeredVehiclesCreate(createRegisteredVehicleBody, xAccountId, options) {
2819
+ return localVarFp.registeredVehiclesCreate(createRegisteredVehicleBody, xAccountId, options).then((request) => request(axios, basePath));
2824
2820
  },
2825
2821
  /**
2826
2822
  *
@@ -2842,7 +2838,7 @@ const DefaultApiFactory = function (configuration, basePath, axios) {
2842
2838
  },
2843
2839
  /**
2844
2840
  *
2845
- * @param {string} xAccountId
2841
+ * @param {string} [xAccountId]
2846
2842
  * @param {*} [options] Override http request option.
2847
2843
  * @throws {RequiredError}
2848
2844
  */
@@ -3365,14 +3361,14 @@ class DefaultApi extends base_1.BaseAPI {
3365
3361
  }
3366
3362
  /**
3367
3363
  *
3368
- * @param {string} xAccountId
3369
3364
  * @param {CreateRegisteredVehicleBody} createRegisteredVehicleBody
3365
+ * @param {string} [xAccountId]
3370
3366
  * @param {*} [options] Override http request option.
3371
3367
  * @throws {RequiredError}
3372
3368
  * @memberof DefaultApi
3373
3369
  */
3374
- registeredVehiclesCreate(xAccountId, createRegisteredVehicleBody, options) {
3375
- return (0, exports.DefaultApiFp)(this.configuration).registeredVehiclesCreate(xAccountId, createRegisteredVehicleBody, options).then((request) => request(this.axios, this.basePath));
3370
+ registeredVehiclesCreate(createRegisteredVehicleBody, xAccountId, options) {
3371
+ return (0, exports.DefaultApiFp)(this.configuration).registeredVehiclesCreate(createRegisteredVehicleBody, xAccountId, options).then((request) => request(this.axios, this.basePath));
3376
3372
  }
3377
3373
  /**
3378
3374
  *
@@ -3396,7 +3392,7 @@ class DefaultApi extends base_1.BaseAPI {
3396
3392
  }
3397
3393
  /**
3398
3394
  *
3399
- * @param {string} xAccountId
3395
+ * @param {string} [xAccountId]
3400
3396
  * @param {*} [options] Override http request option.
3401
3397
  * @throws {RequiredError}
3402
3398
  * @memberof DefaultApi
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ob-parking-sdk",
3
- "version": "0.0.51",
3
+ "version": "0.0.52",
4
4
  "description": "API interfaces for OB PARKING",
5
5
  "main": "./dist/index.js",
6
6
  "license": "MIT"