ob-parking-sdk 0.0.34 → 0.0.35

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
@@ -517,12 +517,6 @@ export interface ConfigStoreWhitelistQuery {
517
517
  * @memberof ConfigStoreWhitelistQuery
518
518
  */
519
519
  'sort_direction'?: string;
520
- /**
521
- *
522
- * @type {boolean}
523
- * @memberof ConfigStoreWhitelistQuery
524
- */
525
- 'is_export'?: boolean;
526
520
  /**
527
521
  *
528
522
  * @type {boolean}
@@ -542,6 +536,19 @@ export interface ConfigStoreWhitelistQuery {
542
536
  */
543
537
  'is_active'?: boolean;
544
538
  }
539
+ /**
540
+ *
541
+ * @export
542
+ * @interface ConfigStorewhitelistExport
543
+ */
544
+ export interface ConfigStorewhitelistExport {
545
+ /**
546
+ *
547
+ * @type {Array<string>}
548
+ * @memberof ConfigStorewhitelistExport
549
+ */
550
+ 'storeWhiteListIds': Array<string>;
551
+ }
545
552
  /**
546
553
  *
547
554
  * @export
@@ -2843,6 +2850,41 @@ export const DefaultApiAxiosParamCreator = function (configuration?: Configurati
2843
2850
  options: localVarRequestOptions,
2844
2851
  };
2845
2852
  },
2853
+ /**
2854
+ *
2855
+ * @param {ConfigStorewhitelistExport} configStorewhitelistExport
2856
+ * @param {*} [options] Override http request option.
2857
+ * @throws {RequiredError}
2858
+ */
2859
+ configStoreWhitelistExport: async (configStorewhitelistExport: ConfigStorewhitelistExport, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
2860
+ // verify required parameter 'configStorewhitelistExport' is not null or undefined
2861
+ assertParamExists('configStoreWhitelistExport', 'configStorewhitelistExport', configStorewhitelistExport)
2862
+ const localVarPath = `/config/store/whitelist/export`;
2863
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
2864
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
2865
+ let baseOptions;
2866
+ if (configuration) {
2867
+ baseOptions = configuration.baseOptions;
2868
+ }
2869
+
2870
+ const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options};
2871
+ const localVarHeaderParameter = {} as any;
2872
+ const localVarQueryParameter = {} as any;
2873
+
2874
+
2875
+
2876
+ localVarHeaderParameter['Content-Type'] = 'application/json';
2877
+
2878
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
2879
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
2880
+ localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
2881
+ localVarRequestOptions.data = serializeDataIfNeeded(configStorewhitelistExport, localVarRequestOptions, configuration)
2882
+
2883
+ return {
2884
+ url: toPathString(localVarUrlObj),
2885
+ options: localVarRequestOptions,
2886
+ };
2887
+ },
2846
2888
  /**
2847
2889
  *
2848
2890
  * @param {File} [file]
@@ -2896,14 +2938,13 @@ export const DefaultApiAxiosParamCreator = function (configuration?: Configurati
2896
2938
  * @param {string} [propertyId]
2897
2939
  * @param {string} [sortKey]
2898
2940
  * @param {string} [sortDirection]
2899
- * @param {boolean} [isExport]
2900
2941
  * @param {boolean} [hasTaxId]
2901
2942
  * @param {boolean} [receiptAddressInObk]
2902
2943
  * @param {boolean} [isActive]
2903
2944
  * @param {*} [options] Override http request option.
2904
2945
  * @throws {RequiredError}
2905
2946
  */
2906
- configStoreWhitelistIndex: async (taxId?: string, storeName?: string, shopName?: string, companyName?: string, unitNo?: string, address?: string, building?: string, createdAt?: string, updatedAt?: string, propertyName?: string, propertyId?: string, sortKey?: string, sortDirection?: string, isExport?: boolean, hasTaxId?: boolean, receiptAddressInObk?: boolean, isActive?: boolean, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
2947
+ configStoreWhitelistIndex: async (taxId?: string, storeName?: string, shopName?: string, companyName?: string, unitNo?: string, address?: string, building?: string, createdAt?: string, updatedAt?: string, propertyName?: string, propertyId?: string, sortKey?: string, sortDirection?: string, hasTaxId?: boolean, receiptAddressInObk?: boolean, isActive?: boolean, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
2907
2948
  const localVarPath = `/config/store/whitelist`;
2908
2949
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
2909
2950
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
@@ -2970,10 +3011,6 @@ export const DefaultApiAxiosParamCreator = function (configuration?: Configurati
2970
3011
  localVarQueryParameter['sort_direction'] = sortDirection;
2971
3012
  }
2972
3013
 
2973
- if (isExport !== undefined) {
2974
- localVarQueryParameter['is_export'] = isExport;
2975
- }
2976
-
2977
3014
  if (hasTaxId !== undefined) {
2978
3015
  localVarQueryParameter['has_tax_id'] = hasTaxId;
2979
3016
  }
@@ -3926,6 +3963,16 @@ export const DefaultApiFp = function(configuration?: Configuration) {
3926
3963
  const localVarAxiosArgs = await localVarAxiosParamCreator.configPropertyShow(id, options);
3927
3964
  return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
3928
3965
  },
3966
+ /**
3967
+ *
3968
+ * @param {ConfigStorewhitelistExport} configStorewhitelistExport
3969
+ * @param {*} [options] Override http request option.
3970
+ * @throws {RequiredError}
3971
+ */
3972
+ async configStoreWhitelistExport(configStorewhitelistExport: ConfigStorewhitelistExport, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>> {
3973
+ const localVarAxiosArgs = await localVarAxiosParamCreator.configStoreWhitelistExport(configStorewhitelistExport, options);
3974
+ return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
3975
+ },
3929
3976
  /**
3930
3977
  *
3931
3978
  * @param {File} [file]
@@ -3951,15 +3998,14 @@ export const DefaultApiFp = function(configuration?: Configuration) {
3951
3998
  * @param {string} [propertyId]
3952
3999
  * @param {string} [sortKey]
3953
4000
  * @param {string} [sortDirection]
3954
- * @param {boolean} [isExport]
3955
4001
  * @param {boolean} [hasTaxId]
3956
4002
  * @param {boolean} [receiptAddressInObk]
3957
4003
  * @param {boolean} [isActive]
3958
4004
  * @param {*} [options] Override http request option.
3959
4005
  * @throws {RequiredError}
3960
4006
  */
3961
- async configStoreWhitelistIndex(taxId?: string, storeName?: string, shopName?: string, companyName?: string, unitNo?: string, address?: string, building?: string, createdAt?: string, updatedAt?: string, propertyName?: string, propertyId?: string, sortKey?: string, sortDirection?: string, isExport?: boolean, hasTaxId?: boolean, receiptAddressInObk?: boolean, isActive?: boolean, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<StoreWhitelistResponse>>> {
3962
- const localVarAxiosArgs = await localVarAxiosParamCreator.configStoreWhitelistIndex(taxId, storeName, shopName, companyName, unitNo, address, building, createdAt, updatedAt, propertyName, propertyId, sortKey, sortDirection, isExport, hasTaxId, receiptAddressInObk, isActive, options);
4007
+ async configStoreWhitelistIndex(taxId?: string, storeName?: string, shopName?: string, companyName?: string, unitNo?: string, address?: string, building?: string, createdAt?: string, updatedAt?: string, propertyName?: string, propertyId?: string, sortKey?: string, sortDirection?: string, hasTaxId?: boolean, receiptAddressInObk?: boolean, isActive?: boolean, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<StoreWhitelistResponse>>> {
4008
+ const localVarAxiosArgs = await localVarAxiosParamCreator.configStoreWhitelistIndex(taxId, storeName, shopName, companyName, unitNo, address, building, createdAt, updatedAt, propertyName, propertyId, sortKey, sortDirection, hasTaxId, receiptAddressInObk, isActive, options);
3963
4009
  return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
3964
4010
  },
3965
4011
  /**
@@ -4296,6 +4342,15 @@ export const DefaultApiFactory = function (configuration?: Configuration, basePa
4296
4342
  configPropertyShow(id: string, options?: any): AxiosPromise<PropertiesResponse> {
4297
4343
  return localVarFp.configPropertyShow(id, options).then((request) => request(axios, basePath));
4298
4344
  },
4345
+ /**
4346
+ *
4347
+ * @param {ConfigStorewhitelistExport} configStorewhitelistExport
4348
+ * @param {*} [options] Override http request option.
4349
+ * @throws {RequiredError}
4350
+ */
4351
+ configStoreWhitelistExport(configStorewhitelistExport: ConfigStorewhitelistExport, options?: any): AxiosPromise<void> {
4352
+ return localVarFp.configStoreWhitelistExport(configStorewhitelistExport, options).then((request) => request(axios, basePath));
4353
+ },
4299
4354
  /**
4300
4355
  *
4301
4356
  * @param {File} [file]
@@ -4320,15 +4375,14 @@ export const DefaultApiFactory = function (configuration?: Configuration, basePa
4320
4375
  * @param {string} [propertyId]
4321
4376
  * @param {string} [sortKey]
4322
4377
  * @param {string} [sortDirection]
4323
- * @param {boolean} [isExport]
4324
4378
  * @param {boolean} [hasTaxId]
4325
4379
  * @param {boolean} [receiptAddressInObk]
4326
4380
  * @param {boolean} [isActive]
4327
4381
  * @param {*} [options] Override http request option.
4328
4382
  * @throws {RequiredError}
4329
4383
  */
4330
- configStoreWhitelistIndex(taxId?: string, storeName?: string, shopName?: string, companyName?: string, unitNo?: string, address?: string, building?: string, createdAt?: string, updatedAt?: string, propertyName?: string, propertyId?: string, sortKey?: string, sortDirection?: string, isExport?: boolean, hasTaxId?: boolean, receiptAddressInObk?: boolean, isActive?: boolean, options?: any): AxiosPromise<Array<StoreWhitelistResponse>> {
4331
- return localVarFp.configStoreWhitelistIndex(taxId, storeName, shopName, companyName, unitNo, address, building, createdAt, updatedAt, propertyName, propertyId, sortKey, sortDirection, isExport, hasTaxId, receiptAddressInObk, isActive, options).then((request) => request(axios, basePath));
4384
+ configStoreWhitelistIndex(taxId?: string, storeName?: string, shopName?: string, companyName?: string, unitNo?: string, address?: string, building?: string, createdAt?: string, updatedAt?: string, propertyName?: string, propertyId?: string, sortKey?: string, sortDirection?: string, hasTaxId?: boolean, receiptAddressInObk?: boolean, isActive?: boolean, options?: any): AxiosPromise<Array<StoreWhitelistResponse>> {
4385
+ return localVarFp.configStoreWhitelistIndex(taxId, storeName, shopName, companyName, unitNo, address, building, createdAt, updatedAt, propertyName, propertyId, sortKey, sortDirection, hasTaxId, receiptAddressInObk, isActive, options).then((request) => request(axios, basePath));
4332
4386
  },
4333
4387
  /**
4334
4388
  *
@@ -4670,6 +4724,17 @@ export class DefaultApi extends BaseAPI {
4670
4724
  return DefaultApiFp(this.configuration).configPropertyShow(id, options).then((request) => request(this.axios, this.basePath));
4671
4725
  }
4672
4726
 
4727
+ /**
4728
+ *
4729
+ * @param {ConfigStorewhitelistExport} configStorewhitelistExport
4730
+ * @param {*} [options] Override http request option.
4731
+ * @throws {RequiredError}
4732
+ * @memberof DefaultApi
4733
+ */
4734
+ public configStoreWhitelistExport(configStorewhitelistExport: ConfigStorewhitelistExport, options?: AxiosRequestConfig) {
4735
+ return DefaultApiFp(this.configuration).configStoreWhitelistExport(configStorewhitelistExport, options).then((request) => request(this.axios, this.basePath));
4736
+ }
4737
+
4673
4738
  /**
4674
4739
  *
4675
4740
  * @param {File} [file]
@@ -4696,7 +4761,6 @@ export class DefaultApi extends BaseAPI {
4696
4761
  * @param {string} [propertyId]
4697
4762
  * @param {string} [sortKey]
4698
4763
  * @param {string} [sortDirection]
4699
- * @param {boolean} [isExport]
4700
4764
  * @param {boolean} [hasTaxId]
4701
4765
  * @param {boolean} [receiptAddressInObk]
4702
4766
  * @param {boolean} [isActive]
@@ -4704,8 +4768,8 @@ export class DefaultApi extends BaseAPI {
4704
4768
  * @throws {RequiredError}
4705
4769
  * @memberof DefaultApi
4706
4770
  */
4707
- public configStoreWhitelistIndex(taxId?: string, storeName?: string, shopName?: string, companyName?: string, unitNo?: string, address?: string, building?: string, createdAt?: string, updatedAt?: string, propertyName?: string, propertyId?: string, sortKey?: string, sortDirection?: string, isExport?: boolean, hasTaxId?: boolean, receiptAddressInObk?: boolean, isActive?: boolean, options?: AxiosRequestConfig) {
4708
- return DefaultApiFp(this.configuration).configStoreWhitelistIndex(taxId, storeName, shopName, companyName, unitNo, address, building, createdAt, updatedAt, propertyName, propertyId, sortKey, sortDirection, isExport, hasTaxId, receiptAddressInObk, isActive, options).then((request) => request(this.axios, this.basePath));
4771
+ public configStoreWhitelistIndex(taxId?: string, storeName?: string, shopName?: string, companyName?: string, unitNo?: string, address?: string, building?: string, createdAt?: string, updatedAt?: string, propertyName?: string, propertyId?: string, sortKey?: string, sortDirection?: string, hasTaxId?: boolean, receiptAddressInObk?: boolean, isActive?: boolean, options?: AxiosRequestConfig) {
4772
+ return DefaultApiFp(this.configuration).configStoreWhitelistIndex(taxId, storeName, shopName, companyName, unitNo, address, building, createdAt, updatedAt, propertyName, propertyId, sortKey, sortDirection, hasTaxId, receiptAddressInObk, isActive, options).then((request) => request(this.axios, this.basePath));
4709
4773
  }
4710
4774
 
4711
4775
  /**
package/dist/api/api.d.ts CHANGED
@@ -497,12 +497,6 @@ export interface ConfigStoreWhitelistQuery {
497
497
  * @memberof ConfigStoreWhitelistQuery
498
498
  */
499
499
  'sort_direction'?: string;
500
- /**
501
- *
502
- * @type {boolean}
503
- * @memberof ConfigStoreWhitelistQuery
504
- */
505
- 'is_export'?: boolean;
506
500
  /**
507
501
  *
508
502
  * @type {boolean}
@@ -522,6 +516,19 @@ export interface ConfigStoreWhitelistQuery {
522
516
  */
523
517
  'is_active'?: boolean;
524
518
  }
519
+ /**
520
+ *
521
+ * @export
522
+ * @interface ConfigStorewhitelistExport
523
+ */
524
+ export interface ConfigStorewhitelistExport {
525
+ /**
526
+ *
527
+ * @type {Array<string>}
528
+ * @memberof ConfigStorewhitelistExport
529
+ */
530
+ 'storeWhiteListIds': Array<string>;
531
+ }
525
532
  /**
526
533
  *
527
534
  * @export
@@ -2474,6 +2481,13 @@ export declare const DefaultApiAxiosParamCreator: (configuration?: Configuration
2474
2481
  * @throws {RequiredError}
2475
2482
  */
2476
2483
  configPropertyShow: (id: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
2484
+ /**
2485
+ *
2486
+ * @param {ConfigStorewhitelistExport} configStorewhitelistExport
2487
+ * @param {*} [options] Override http request option.
2488
+ * @throws {RequiredError}
2489
+ */
2490
+ configStoreWhitelistExport: (configStorewhitelistExport: ConfigStorewhitelistExport, options?: AxiosRequestConfig) => Promise<RequestArgs>;
2477
2491
  /**
2478
2492
  *
2479
2493
  * @param {File} [file]
@@ -2496,14 +2510,13 @@ export declare const DefaultApiAxiosParamCreator: (configuration?: Configuration
2496
2510
  * @param {string} [propertyId]
2497
2511
  * @param {string} [sortKey]
2498
2512
  * @param {string} [sortDirection]
2499
- * @param {boolean} [isExport]
2500
2513
  * @param {boolean} [hasTaxId]
2501
2514
  * @param {boolean} [receiptAddressInObk]
2502
2515
  * @param {boolean} [isActive]
2503
2516
  * @param {*} [options] Override http request option.
2504
2517
  * @throws {RequiredError}
2505
2518
  */
2506
- configStoreWhitelistIndex: (taxId?: string, storeName?: string, shopName?: string, companyName?: string, unitNo?: string, address?: string, building?: string, createdAt?: string, updatedAt?: string, propertyName?: string, propertyId?: string, sortKey?: string, sortDirection?: string, isExport?: boolean, hasTaxId?: boolean, receiptAddressInObk?: boolean, isActive?: boolean, options?: AxiosRequestConfig) => Promise<RequestArgs>;
2519
+ configStoreWhitelistIndex: (taxId?: string, storeName?: string, shopName?: string, companyName?: string, unitNo?: string, address?: string, building?: string, createdAt?: string, updatedAt?: string, propertyName?: string, propertyId?: string, sortKey?: string, sortDirection?: string, hasTaxId?: boolean, receiptAddressInObk?: boolean, isActive?: boolean, options?: AxiosRequestConfig) => Promise<RequestArgs>;
2507
2520
  /**
2508
2521
  *
2509
2522
  * @param {string} id
@@ -2756,6 +2769,13 @@ export declare const DefaultApiFp: (configuration?: Configuration) => {
2756
2769
  * @throws {RequiredError}
2757
2770
  */
2758
2771
  configPropertyShow(id: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PropertiesResponse>>;
2772
+ /**
2773
+ *
2774
+ * @param {ConfigStorewhitelistExport} configStorewhitelistExport
2775
+ * @param {*} [options] Override http request option.
2776
+ * @throws {RequiredError}
2777
+ */
2778
+ configStoreWhitelistExport(configStorewhitelistExport: ConfigStorewhitelistExport, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
2759
2779
  /**
2760
2780
  *
2761
2781
  * @param {File} [file]
@@ -2778,14 +2798,13 @@ export declare const DefaultApiFp: (configuration?: Configuration) => {
2778
2798
  * @param {string} [propertyId]
2779
2799
  * @param {string} [sortKey]
2780
2800
  * @param {string} [sortDirection]
2781
- * @param {boolean} [isExport]
2782
2801
  * @param {boolean} [hasTaxId]
2783
2802
  * @param {boolean} [receiptAddressInObk]
2784
2803
  * @param {boolean} [isActive]
2785
2804
  * @param {*} [options] Override http request option.
2786
2805
  * @throws {RequiredError}
2787
2806
  */
2788
- configStoreWhitelistIndex(taxId?: string, storeName?: string, shopName?: string, companyName?: string, unitNo?: string, address?: string, building?: string, createdAt?: string, updatedAt?: string, propertyName?: string, propertyId?: string, sortKey?: string, sortDirection?: string, isExport?: boolean, hasTaxId?: boolean, receiptAddressInObk?: boolean, isActive?: boolean, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<StoreWhitelistResponse>>>;
2807
+ configStoreWhitelistIndex(taxId?: string, storeName?: string, shopName?: string, companyName?: string, unitNo?: string, address?: string, building?: string, createdAt?: string, updatedAt?: string, propertyName?: string, propertyId?: string, sortKey?: string, sortDirection?: string, hasTaxId?: boolean, receiptAddressInObk?: boolean, isActive?: boolean, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<StoreWhitelistResponse>>>;
2789
2808
  /**
2790
2809
  *
2791
2810
  * @param {string} id
@@ -3038,6 +3057,13 @@ export declare const DefaultApiFactory: (configuration?: Configuration, basePath
3038
3057
  * @throws {RequiredError}
3039
3058
  */
3040
3059
  configPropertyShow(id: string, options?: any): AxiosPromise<PropertiesResponse>;
3060
+ /**
3061
+ *
3062
+ * @param {ConfigStorewhitelistExport} configStorewhitelistExport
3063
+ * @param {*} [options] Override http request option.
3064
+ * @throws {RequiredError}
3065
+ */
3066
+ configStoreWhitelistExport(configStorewhitelistExport: ConfigStorewhitelistExport, options?: any): AxiosPromise<void>;
3041
3067
  /**
3042
3068
  *
3043
3069
  * @param {File} [file]
@@ -3060,14 +3086,13 @@ export declare const DefaultApiFactory: (configuration?: Configuration, basePath
3060
3086
  * @param {string} [propertyId]
3061
3087
  * @param {string} [sortKey]
3062
3088
  * @param {string} [sortDirection]
3063
- * @param {boolean} [isExport]
3064
3089
  * @param {boolean} [hasTaxId]
3065
3090
  * @param {boolean} [receiptAddressInObk]
3066
3091
  * @param {boolean} [isActive]
3067
3092
  * @param {*} [options] Override http request option.
3068
3093
  * @throws {RequiredError}
3069
3094
  */
3070
- configStoreWhitelistIndex(taxId?: string, storeName?: string, shopName?: string, companyName?: string, unitNo?: string, address?: string, building?: string, createdAt?: string, updatedAt?: string, propertyName?: string, propertyId?: string, sortKey?: string, sortDirection?: string, isExport?: boolean, hasTaxId?: boolean, receiptAddressInObk?: boolean, isActive?: boolean, options?: any): AxiosPromise<Array<StoreWhitelistResponse>>;
3095
+ configStoreWhitelistIndex(taxId?: string, storeName?: string, shopName?: string, companyName?: string, unitNo?: string, address?: string, building?: string, createdAt?: string, updatedAt?: string, propertyName?: string, propertyId?: string, sortKey?: string, sortDirection?: string, hasTaxId?: boolean, receiptAddressInObk?: boolean, isActive?: boolean, options?: any): AxiosPromise<Array<StoreWhitelistResponse>>;
3071
3096
  /**
3072
3097
  *
3073
3098
  * @param {string} id
@@ -3334,6 +3359,14 @@ export declare class DefaultApi extends BaseAPI {
3334
3359
  * @memberof DefaultApi
3335
3360
  */
3336
3361
  configPropertyShow(id: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<PropertiesResponse, any>>;
3362
+ /**
3363
+ *
3364
+ * @param {ConfigStorewhitelistExport} configStorewhitelistExport
3365
+ * @param {*} [options] Override http request option.
3366
+ * @throws {RequiredError}
3367
+ * @memberof DefaultApi
3368
+ */
3369
+ configStoreWhitelistExport(configStorewhitelistExport: ConfigStorewhitelistExport, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
3337
3370
  /**
3338
3371
  *
3339
3372
  * @param {File} [file]
@@ -3357,7 +3390,6 @@ export declare class DefaultApi extends BaseAPI {
3357
3390
  * @param {string} [propertyId]
3358
3391
  * @param {string} [sortKey]
3359
3392
  * @param {string} [sortDirection]
3360
- * @param {boolean} [isExport]
3361
3393
  * @param {boolean} [hasTaxId]
3362
3394
  * @param {boolean} [receiptAddressInObk]
3363
3395
  * @param {boolean} [isActive]
@@ -3365,7 +3397,7 @@ export declare class DefaultApi extends BaseAPI {
3365
3397
  * @throws {RequiredError}
3366
3398
  * @memberof DefaultApi
3367
3399
  */
3368
- configStoreWhitelistIndex(taxId?: string, storeName?: string, shopName?: string, companyName?: string, unitNo?: string, address?: string, building?: string, createdAt?: string, updatedAt?: string, propertyName?: string, propertyId?: string, sortKey?: string, sortDirection?: string, isExport?: boolean, hasTaxId?: boolean, receiptAddressInObk?: boolean, isActive?: boolean, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<StoreWhitelistResponse[], any>>;
3400
+ configStoreWhitelistIndex(taxId?: string, storeName?: string, shopName?: string, companyName?: string, unitNo?: string, address?: string, building?: string, createdAt?: string, updatedAt?: string, propertyName?: string, propertyId?: string, sortKey?: string, sortDirection?: string, hasTaxId?: boolean, receiptAddressInObk?: boolean, isActive?: boolean, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<StoreWhitelistResponse[], any>>;
3369
3401
  /**
3370
3402
  *
3371
3403
  * @param {string} id
package/dist/api/api.js CHANGED
@@ -426,6 +426,35 @@ const DefaultApiAxiosParamCreator = function (configuration) {
426
426
  options: localVarRequestOptions,
427
427
  };
428
428
  }),
429
+ /**
430
+ *
431
+ * @param {ConfigStorewhitelistExport} configStorewhitelistExport
432
+ * @param {*} [options] Override http request option.
433
+ * @throws {RequiredError}
434
+ */
435
+ configStoreWhitelistExport: (configStorewhitelistExport, options = {}) => __awaiter(this, void 0, void 0, function* () {
436
+ // verify required parameter 'configStorewhitelistExport' is not null or undefined
437
+ (0, common_1.assertParamExists)('configStoreWhitelistExport', 'configStorewhitelistExport', configStorewhitelistExport);
438
+ const localVarPath = `/config/store/whitelist/export`;
439
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
440
+ const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
441
+ let baseOptions;
442
+ if (configuration) {
443
+ baseOptions = configuration.baseOptions;
444
+ }
445
+ const localVarRequestOptions = Object.assign(Object.assign({ method: 'POST' }, baseOptions), options);
446
+ const localVarHeaderParameter = {};
447
+ const localVarQueryParameter = {};
448
+ localVarHeaderParameter['Content-Type'] = 'application/json';
449
+ (0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
450
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
451
+ localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
452
+ localVarRequestOptions.data = (0, common_1.serializeDataIfNeeded)(configStorewhitelistExport, localVarRequestOptions, configuration);
453
+ return {
454
+ url: (0, common_1.toPathString)(localVarUrlObj),
455
+ options: localVarRequestOptions,
456
+ };
457
+ }),
429
458
  /**
430
459
  *
431
460
  * @param {File} [file]
@@ -472,14 +501,13 @@ const DefaultApiAxiosParamCreator = function (configuration) {
472
501
  * @param {string} [propertyId]
473
502
  * @param {string} [sortKey]
474
503
  * @param {string} [sortDirection]
475
- * @param {boolean} [isExport]
476
504
  * @param {boolean} [hasTaxId]
477
505
  * @param {boolean} [receiptAddressInObk]
478
506
  * @param {boolean} [isActive]
479
507
  * @param {*} [options] Override http request option.
480
508
  * @throws {RequiredError}
481
509
  */
482
- configStoreWhitelistIndex: (taxId, storeName, shopName, companyName, unitNo, address, building, createdAt, updatedAt, propertyName, propertyId, sortKey, sortDirection, isExport, hasTaxId, receiptAddressInObk, isActive, options = {}) => __awaiter(this, void 0, void 0, function* () {
510
+ configStoreWhitelistIndex: (taxId, storeName, shopName, companyName, unitNo, address, building, createdAt, updatedAt, propertyName, propertyId, sortKey, sortDirection, hasTaxId, receiptAddressInObk, isActive, options = {}) => __awaiter(this, void 0, void 0, function* () {
483
511
  const localVarPath = `/config/store/whitelist`;
484
512
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
485
513
  const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
@@ -531,9 +559,6 @@ const DefaultApiAxiosParamCreator = function (configuration) {
531
559
  if (sortDirection !== undefined) {
532
560
  localVarQueryParameter['sort_direction'] = sortDirection;
533
561
  }
534
- if (isExport !== undefined) {
535
- localVarQueryParameter['is_export'] = isExport;
536
- }
537
562
  if (hasTaxId !== undefined) {
538
563
  localVarQueryParameter['has_tax_id'] = hasTaxId;
539
564
  }
@@ -1369,6 +1394,18 @@ const DefaultApiFp = function (configuration) {
1369
1394
  return (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration);
1370
1395
  });
1371
1396
  },
1397
+ /**
1398
+ *
1399
+ * @param {ConfigStorewhitelistExport} configStorewhitelistExport
1400
+ * @param {*} [options] Override http request option.
1401
+ * @throws {RequiredError}
1402
+ */
1403
+ configStoreWhitelistExport(configStorewhitelistExport, options) {
1404
+ return __awaiter(this, void 0, void 0, function* () {
1405
+ const localVarAxiosArgs = yield localVarAxiosParamCreator.configStoreWhitelistExport(configStorewhitelistExport, options);
1406
+ return (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration);
1407
+ });
1408
+ },
1372
1409
  /**
1373
1410
  *
1374
1411
  * @param {File} [file]
@@ -1396,16 +1433,15 @@ const DefaultApiFp = function (configuration) {
1396
1433
  * @param {string} [propertyId]
1397
1434
  * @param {string} [sortKey]
1398
1435
  * @param {string} [sortDirection]
1399
- * @param {boolean} [isExport]
1400
1436
  * @param {boolean} [hasTaxId]
1401
1437
  * @param {boolean} [receiptAddressInObk]
1402
1438
  * @param {boolean} [isActive]
1403
1439
  * @param {*} [options] Override http request option.
1404
1440
  * @throws {RequiredError}
1405
1441
  */
1406
- configStoreWhitelistIndex(taxId, storeName, shopName, companyName, unitNo, address, building, createdAt, updatedAt, propertyName, propertyId, sortKey, sortDirection, isExport, hasTaxId, receiptAddressInObk, isActive, options) {
1442
+ configStoreWhitelistIndex(taxId, storeName, shopName, companyName, unitNo, address, building, createdAt, updatedAt, propertyName, propertyId, sortKey, sortDirection, hasTaxId, receiptAddressInObk, isActive, options) {
1407
1443
  return __awaiter(this, void 0, void 0, function* () {
1408
- const localVarAxiosArgs = yield localVarAxiosParamCreator.configStoreWhitelistIndex(taxId, storeName, shopName, companyName, unitNo, address, building, createdAt, updatedAt, propertyName, propertyId, sortKey, sortDirection, isExport, hasTaxId, receiptAddressInObk, isActive, options);
1444
+ const localVarAxiosArgs = yield localVarAxiosParamCreator.configStoreWhitelistIndex(taxId, storeName, shopName, companyName, unitNo, address, building, createdAt, updatedAt, propertyName, propertyId, sortKey, sortDirection, hasTaxId, receiptAddressInObk, isActive, options);
1409
1445
  return (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration);
1410
1446
  });
1411
1447
  },
@@ -1779,6 +1815,15 @@ const DefaultApiFactory = function (configuration, basePath, axios) {
1779
1815
  configPropertyShow(id, options) {
1780
1816
  return localVarFp.configPropertyShow(id, options).then((request) => request(axios, basePath));
1781
1817
  },
1818
+ /**
1819
+ *
1820
+ * @param {ConfigStorewhitelistExport} configStorewhitelistExport
1821
+ * @param {*} [options] Override http request option.
1822
+ * @throws {RequiredError}
1823
+ */
1824
+ configStoreWhitelistExport(configStorewhitelistExport, options) {
1825
+ return localVarFp.configStoreWhitelistExport(configStorewhitelistExport, options).then((request) => request(axios, basePath));
1826
+ },
1782
1827
  /**
1783
1828
  *
1784
1829
  * @param {File} [file]
@@ -1803,15 +1848,14 @@ const DefaultApiFactory = function (configuration, basePath, axios) {
1803
1848
  * @param {string} [propertyId]
1804
1849
  * @param {string} [sortKey]
1805
1850
  * @param {string} [sortDirection]
1806
- * @param {boolean} [isExport]
1807
1851
  * @param {boolean} [hasTaxId]
1808
1852
  * @param {boolean} [receiptAddressInObk]
1809
1853
  * @param {boolean} [isActive]
1810
1854
  * @param {*} [options] Override http request option.
1811
1855
  * @throws {RequiredError}
1812
1856
  */
1813
- configStoreWhitelistIndex(taxId, storeName, shopName, companyName, unitNo, address, building, createdAt, updatedAt, propertyName, propertyId, sortKey, sortDirection, isExport, hasTaxId, receiptAddressInObk, isActive, options) {
1814
- return localVarFp.configStoreWhitelistIndex(taxId, storeName, shopName, companyName, unitNo, address, building, createdAt, updatedAt, propertyName, propertyId, sortKey, sortDirection, isExport, hasTaxId, receiptAddressInObk, isActive, options).then((request) => request(axios, basePath));
1857
+ configStoreWhitelistIndex(taxId, storeName, shopName, companyName, unitNo, address, building, createdAt, updatedAt, propertyName, propertyId, sortKey, sortDirection, hasTaxId, receiptAddressInObk, isActive, options) {
1858
+ return localVarFp.configStoreWhitelistIndex(taxId, storeName, shopName, companyName, unitNo, address, building, createdAt, updatedAt, propertyName, propertyId, sortKey, sortDirection, hasTaxId, receiptAddressInObk, isActive, options).then((request) => request(axios, basePath));
1815
1859
  },
1816
1860
  /**
1817
1861
  *
@@ -2141,6 +2185,16 @@ class DefaultApi extends base_1.BaseAPI {
2141
2185
  configPropertyShow(id, options) {
2142
2186
  return (0, exports.DefaultApiFp)(this.configuration).configPropertyShow(id, options).then((request) => request(this.axios, this.basePath));
2143
2187
  }
2188
+ /**
2189
+ *
2190
+ * @param {ConfigStorewhitelistExport} configStorewhitelistExport
2191
+ * @param {*} [options] Override http request option.
2192
+ * @throws {RequiredError}
2193
+ * @memberof DefaultApi
2194
+ */
2195
+ configStoreWhitelistExport(configStorewhitelistExport, options) {
2196
+ return (0, exports.DefaultApiFp)(this.configuration).configStoreWhitelistExport(configStorewhitelistExport, options).then((request) => request(this.axios, this.basePath));
2197
+ }
2144
2198
  /**
2145
2199
  *
2146
2200
  * @param {File} [file]
@@ -2166,7 +2220,6 @@ class DefaultApi extends base_1.BaseAPI {
2166
2220
  * @param {string} [propertyId]
2167
2221
  * @param {string} [sortKey]
2168
2222
  * @param {string} [sortDirection]
2169
- * @param {boolean} [isExport]
2170
2223
  * @param {boolean} [hasTaxId]
2171
2224
  * @param {boolean} [receiptAddressInObk]
2172
2225
  * @param {boolean} [isActive]
@@ -2174,8 +2227,8 @@ class DefaultApi extends base_1.BaseAPI {
2174
2227
  * @throws {RequiredError}
2175
2228
  * @memberof DefaultApi
2176
2229
  */
2177
- configStoreWhitelistIndex(taxId, storeName, shopName, companyName, unitNo, address, building, createdAt, updatedAt, propertyName, propertyId, sortKey, sortDirection, isExport, hasTaxId, receiptAddressInObk, isActive, options) {
2178
- return (0, exports.DefaultApiFp)(this.configuration).configStoreWhitelistIndex(taxId, storeName, shopName, companyName, unitNo, address, building, createdAt, updatedAt, propertyName, propertyId, sortKey, sortDirection, isExport, hasTaxId, receiptAddressInObk, isActive, options).then((request) => request(this.axios, this.basePath));
2230
+ configStoreWhitelistIndex(taxId, storeName, shopName, companyName, unitNo, address, building, createdAt, updatedAt, propertyName, propertyId, sortKey, sortDirection, hasTaxId, receiptAddressInObk, isActive, options) {
2231
+ return (0, exports.DefaultApiFp)(this.configuration).configStoreWhitelistIndex(taxId, storeName, shopName, companyName, unitNo, address, building, createdAt, updatedAt, propertyName, propertyId, sortKey, sortDirection, hasTaxId, receiptAddressInObk, isActive, options).then((request) => request(this.axios, this.basePath));
2179
2232
  }
2180
2233
  /**
2181
2234
  *
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ob-parking-sdk",
3
- "version": "0.0.34",
3
+ "version": "0.0.35",
4
4
  "description": "API interfaces for OB PARKING",
5
5
  "main": "./dist/index.js",
6
6
  "license": "MIT"