ob-parking-sdk 0.0.57 → 0.0.59

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
@@ -113,6 +113,12 @@ export interface AddConfigStoreWhitelist {
113
113
  * @memberof AddConfigStoreWhitelist
114
114
  */
115
115
  'ocr_verified': boolean;
116
+ /**
117
+ *
118
+ * @type {boolean}
119
+ * @memberof AddConfigStoreWhitelist
120
+ */
121
+ 'convert_date': boolean;
116
122
  }
117
123
  /**
118
124
  *
@@ -555,6 +561,24 @@ export interface ConfigStoreWhitelistQuery {
555
561
  * @memberof ConfigStoreWhitelistQuery
556
562
  */
557
563
  'property_id'?: string;
564
+ /**
565
+ *
566
+ * @type {boolean}
567
+ * @memberof ConfigStoreWhitelistQuery
568
+ */
569
+ 'ignore_store'?: boolean;
570
+ /**
571
+ *
572
+ * @type {boolean}
573
+ * @memberof ConfigStoreWhitelistQuery
574
+ */
575
+ 'ocr_verified'?: boolean;
576
+ /**
577
+ *
578
+ * @type {boolean}
579
+ * @memberof ConfigStoreWhitelistQuery
580
+ */
581
+ 'convert_date'?: boolean;
558
582
  /**
559
583
  *
560
584
  * @type {string}
@@ -2649,6 +2673,12 @@ export interface StoreWhitelistResponse {
2649
2673
  * @memberof StoreWhitelistResponse
2650
2674
  */
2651
2675
  'property': StoreWhitelistResponseProperty;
2676
+ /**
2677
+ *
2678
+ * @type {boolean}
2679
+ * @memberof StoreWhitelistResponse
2680
+ */
2681
+ 'convert_date': boolean;
2652
2682
  /**
2653
2683
  *
2654
2684
  * @type {boolean}
@@ -2790,6 +2820,12 @@ export interface TestTest200Response {
2790
2820
  * @interface UpdateConfigStoreWhitelist
2791
2821
  */
2792
2822
  export interface UpdateConfigStoreWhitelist {
2823
+ /**
2824
+ *
2825
+ * @type {boolean}
2826
+ * @memberof UpdateConfigStoreWhitelist
2827
+ */
2828
+ 'convert_date': boolean;
2793
2829
  /**
2794
2830
  *
2795
2831
  * @type {boolean}
@@ -3743,6 +3779,9 @@ export const DefaultApiAxiosParamCreator = function (configuration?: Configurati
3743
3779
  * @param {string} [updatedAt]
3744
3780
  * @param {string} [propertyName]
3745
3781
  * @param {string} [propertyId]
3782
+ * @param {boolean} [ignoreStore]
3783
+ * @param {boolean} [ocrVerified]
3784
+ * @param {boolean} [convertDate]
3746
3785
  * @param {string} [sortKey]
3747
3786
  * @param {string} [sortDirection]
3748
3787
  * @param {boolean} [hasTaxId]
@@ -3751,7 +3790,7 @@ export const DefaultApiAxiosParamCreator = function (configuration?: Configurati
3751
3790
  * @param {*} [options] Override http request option.
3752
3791
  * @throws {RequiredError}
3753
3792
  */
3754
- 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> => {
3793
+ configStoreWhitelistIndex: async (taxId?: string, storeName?: string, shopName?: string, companyName?: string, unitNo?: string, address?: string, building?: string, createdAt?: string, updatedAt?: string, propertyName?: string, propertyId?: string, ignoreStore?: boolean, ocrVerified?: boolean, convertDate?: boolean, sortKey?: string, sortDirection?: string, hasTaxId?: boolean, receiptAddressInObk?: boolean, isActive?: boolean, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
3755
3794
  const localVarPath = `/config/store/whitelist`;
3756
3795
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
3757
3796
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
@@ -3808,6 +3847,18 @@ export const DefaultApiAxiosParamCreator = function (configuration?: Configurati
3808
3847
  localVarQueryParameter['property_id'] = propertyId;
3809
3848
  }
3810
3849
 
3850
+ if (ignoreStore !== undefined) {
3851
+ localVarQueryParameter['ignore_store'] = ignoreStore;
3852
+ }
3853
+
3854
+ if (ocrVerified !== undefined) {
3855
+ localVarQueryParameter['ocr_verified'] = ocrVerified;
3856
+ }
3857
+
3858
+ if (convertDate !== undefined) {
3859
+ localVarQueryParameter['convert_date'] = convertDate;
3860
+ }
3861
+
3811
3862
  if (sortKey !== undefined) {
3812
3863
  localVarQueryParameter['sort_key'] = sortKey;
3813
3864
  }
@@ -5219,6 +5270,9 @@ export const DefaultApiFp = function(configuration?: Configuration) {
5219
5270
  * @param {string} [updatedAt]
5220
5271
  * @param {string} [propertyName]
5221
5272
  * @param {string} [propertyId]
5273
+ * @param {boolean} [ignoreStore]
5274
+ * @param {boolean} [ocrVerified]
5275
+ * @param {boolean} [convertDate]
5222
5276
  * @param {string} [sortKey]
5223
5277
  * @param {string} [sortDirection]
5224
5278
  * @param {boolean} [hasTaxId]
@@ -5227,8 +5281,8 @@ export const DefaultApiFp = function(configuration?: Configuration) {
5227
5281
  * @param {*} [options] Override http request option.
5228
5282
  * @throws {RequiredError}
5229
5283
  */
5230
- 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>>> {
5231
- const localVarAxiosArgs = await localVarAxiosParamCreator.configStoreWhitelistIndex(taxId, storeName, shopName, companyName, unitNo, address, building, createdAt, updatedAt, propertyName, propertyId, sortKey, sortDirection, hasTaxId, receiptAddressInObk, isActive, options);
5284
+ async configStoreWhitelistIndex(taxId?: string, storeName?: string, shopName?: string, companyName?: string, unitNo?: string, address?: string, building?: string, createdAt?: string, updatedAt?: string, propertyName?: string, propertyId?: string, ignoreStore?: boolean, ocrVerified?: boolean, convertDate?: boolean, sortKey?: string, sortDirection?: string, hasTaxId?: boolean, receiptAddressInObk?: boolean, isActive?: boolean, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<StoreWhitelistResponse>>> {
5285
+ const localVarAxiosArgs = await localVarAxiosParamCreator.configStoreWhitelistIndex(taxId, storeName, shopName, companyName, unitNo, address, building, createdAt, updatedAt, propertyName, propertyId, ignoreStore, ocrVerified, convertDate, sortKey, sortDirection, hasTaxId, receiptAddressInObk, isActive, options);
5232
5286
  return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
5233
5287
  },
5234
5288
  /**
@@ -5722,6 +5776,9 @@ export const DefaultApiFactory = function (configuration?: Configuration, basePa
5722
5776
  * @param {string} [updatedAt]
5723
5777
  * @param {string} [propertyName]
5724
5778
  * @param {string} [propertyId]
5779
+ * @param {boolean} [ignoreStore]
5780
+ * @param {boolean} [ocrVerified]
5781
+ * @param {boolean} [convertDate]
5725
5782
  * @param {string} [sortKey]
5726
5783
  * @param {string} [sortDirection]
5727
5784
  * @param {boolean} [hasTaxId]
@@ -5730,8 +5787,8 @@ export const DefaultApiFactory = function (configuration?: Configuration, basePa
5730
5787
  * @param {*} [options] Override http request option.
5731
5788
  * @throws {RequiredError}
5732
5789
  */
5733
- 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>> {
5734
- 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));
5790
+ configStoreWhitelistIndex(taxId?: string, storeName?: string, shopName?: string, companyName?: string, unitNo?: string, address?: string, building?: string, createdAt?: string, updatedAt?: string, propertyName?: string, propertyId?: string, ignoreStore?: boolean, ocrVerified?: boolean, convertDate?: boolean, sortKey?: string, sortDirection?: string, hasTaxId?: boolean, receiptAddressInObk?: boolean, isActive?: boolean, options?: any): AxiosPromise<Array<StoreWhitelistResponse>> {
5791
+ return localVarFp.configStoreWhitelistIndex(taxId, storeName, shopName, companyName, unitNo, address, building, createdAt, updatedAt, propertyName, propertyId, ignoreStore, ocrVerified, convertDate, sortKey, sortDirection, hasTaxId, receiptAddressInObk, isActive, options).then((request) => request(axios, basePath));
5735
5792
  },
5736
5793
  /**
5737
5794
  *
@@ -6225,6 +6282,9 @@ export class DefaultApi extends BaseAPI {
6225
6282
  * @param {string} [updatedAt]
6226
6283
  * @param {string} [propertyName]
6227
6284
  * @param {string} [propertyId]
6285
+ * @param {boolean} [ignoreStore]
6286
+ * @param {boolean} [ocrVerified]
6287
+ * @param {boolean} [convertDate]
6228
6288
  * @param {string} [sortKey]
6229
6289
  * @param {string} [sortDirection]
6230
6290
  * @param {boolean} [hasTaxId]
@@ -6234,8 +6294,8 @@ export class DefaultApi extends BaseAPI {
6234
6294
  * @throws {RequiredError}
6235
6295
  * @memberof DefaultApi
6236
6296
  */
6237
- 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) {
6238
- 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));
6297
+ public configStoreWhitelistIndex(taxId?: string, storeName?: string, shopName?: string, companyName?: string, unitNo?: string, address?: string, building?: string, createdAt?: string, updatedAt?: string, propertyName?: string, propertyId?: string, ignoreStore?: boolean, ocrVerified?: boolean, convertDate?: boolean, sortKey?: string, sortDirection?: string, hasTaxId?: boolean, receiptAddressInObk?: boolean, isActive?: boolean, options?: AxiosRequestConfig) {
6298
+ return DefaultApiFp(this.configuration).configStoreWhitelistIndex(taxId, storeName, shopName, companyName, unitNo, address, building, createdAt, updatedAt, propertyName, propertyId, ignoreStore, ocrVerified, convertDate, sortKey, sortDirection, hasTaxId, receiptAddressInObk, isActive, options).then((request) => request(this.axios, this.basePath));
6239
6299
  }
6240
6300
 
6241
6301
  /**
package/dist/api/api.d.ts CHANGED
@@ -103,6 +103,12 @@ export interface AddConfigStoreWhitelist {
103
103
  * @memberof AddConfigStoreWhitelist
104
104
  */
105
105
  'ocr_verified': boolean;
106
+ /**
107
+ *
108
+ * @type {boolean}
109
+ * @memberof AddConfigStoreWhitelist
110
+ */
111
+ 'convert_date': boolean;
106
112
  }
107
113
  /**
108
114
  *
@@ -532,6 +538,24 @@ export interface ConfigStoreWhitelistQuery {
532
538
  * @memberof ConfigStoreWhitelistQuery
533
539
  */
534
540
  'property_id'?: string;
541
+ /**
542
+ *
543
+ * @type {boolean}
544
+ * @memberof ConfigStoreWhitelistQuery
545
+ */
546
+ 'ignore_store'?: boolean;
547
+ /**
548
+ *
549
+ * @type {boolean}
550
+ * @memberof ConfigStoreWhitelistQuery
551
+ */
552
+ 'ocr_verified'?: boolean;
553
+ /**
554
+ *
555
+ * @type {boolean}
556
+ * @memberof ConfigStoreWhitelistQuery
557
+ */
558
+ 'convert_date'?: boolean;
535
559
  /**
536
560
  *
537
561
  * @type {string}
@@ -2589,6 +2613,12 @@ export interface StoreWhitelistResponse {
2589
2613
  * @memberof StoreWhitelistResponse
2590
2614
  */
2591
2615
  'property': StoreWhitelistResponseProperty;
2616
+ /**
2617
+ *
2618
+ * @type {boolean}
2619
+ * @memberof StoreWhitelistResponse
2620
+ */
2621
+ 'convert_date': boolean;
2592
2622
  /**
2593
2623
  *
2594
2624
  * @type {boolean}
@@ -2730,6 +2760,12 @@ export interface TestTest200Response {
2730
2760
  * @interface UpdateConfigStoreWhitelist
2731
2761
  */
2732
2762
  export interface UpdateConfigStoreWhitelist {
2763
+ /**
2764
+ *
2765
+ * @type {boolean}
2766
+ * @memberof UpdateConfigStoreWhitelist
2767
+ */
2768
+ 'convert_date': boolean;
2733
2769
  /**
2734
2770
  *
2735
2771
  * @type {boolean}
@@ -3264,6 +3300,9 @@ export declare const DefaultApiAxiosParamCreator: (configuration?: Configuration
3264
3300
  * @param {string} [updatedAt]
3265
3301
  * @param {string} [propertyName]
3266
3302
  * @param {string} [propertyId]
3303
+ * @param {boolean} [ignoreStore]
3304
+ * @param {boolean} [ocrVerified]
3305
+ * @param {boolean} [convertDate]
3267
3306
  * @param {string} [sortKey]
3268
3307
  * @param {string} [sortDirection]
3269
3308
  * @param {boolean} [hasTaxId]
@@ -3272,7 +3311,7 @@ export declare const DefaultApiAxiosParamCreator: (configuration?: Configuration
3272
3311
  * @param {*} [options] Override http request option.
3273
3312
  * @throws {RequiredError}
3274
3313
  */
3275
- 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>;
3314
+ configStoreWhitelistIndex: (taxId?: string, storeName?: string, shopName?: string, companyName?: string, unitNo?: string, address?: string, building?: string, createdAt?: string, updatedAt?: string, propertyName?: string, propertyId?: string, ignoreStore?: boolean, ocrVerified?: boolean, convertDate?: boolean, sortKey?: string, sortDirection?: string, hasTaxId?: boolean, receiptAddressInObk?: boolean, isActive?: boolean, options?: AxiosRequestConfig) => Promise<RequestArgs>;
3276
3315
  /**
3277
3316
  *
3278
3317
  * @param {string} id
@@ -3643,6 +3682,9 @@ export declare const DefaultApiFp: (configuration?: Configuration) => {
3643
3682
  * @param {string} [updatedAt]
3644
3683
  * @param {string} [propertyName]
3645
3684
  * @param {string} [propertyId]
3685
+ * @param {boolean} [ignoreStore]
3686
+ * @param {boolean} [ocrVerified]
3687
+ * @param {boolean} [convertDate]
3646
3688
  * @param {string} [sortKey]
3647
3689
  * @param {string} [sortDirection]
3648
3690
  * @param {boolean} [hasTaxId]
@@ -3651,7 +3693,7 @@ export declare const DefaultApiFp: (configuration?: Configuration) => {
3651
3693
  * @param {*} [options] Override http request option.
3652
3694
  * @throws {RequiredError}
3653
3695
  */
3654
- 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>>>;
3696
+ configStoreWhitelistIndex(taxId?: string, storeName?: string, shopName?: string, companyName?: string, unitNo?: string, address?: string, building?: string, createdAt?: string, updatedAt?: string, propertyName?: string, propertyId?: string, ignoreStore?: boolean, ocrVerified?: boolean, convertDate?: boolean, sortKey?: string, sortDirection?: string, hasTaxId?: boolean, receiptAddressInObk?: boolean, isActive?: boolean, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<StoreWhitelistResponse>>>;
3655
3697
  /**
3656
3698
  *
3657
3699
  * @param {string} id
@@ -4022,6 +4064,9 @@ export declare const DefaultApiFactory: (configuration?: Configuration, basePath
4022
4064
  * @param {string} [updatedAt]
4023
4065
  * @param {string} [propertyName]
4024
4066
  * @param {string} [propertyId]
4067
+ * @param {boolean} [ignoreStore]
4068
+ * @param {boolean} [ocrVerified]
4069
+ * @param {boolean} [convertDate]
4025
4070
  * @param {string} [sortKey]
4026
4071
  * @param {string} [sortDirection]
4027
4072
  * @param {boolean} [hasTaxId]
@@ -4030,7 +4075,7 @@ export declare const DefaultApiFactory: (configuration?: Configuration, basePath
4030
4075
  * @param {*} [options] Override http request option.
4031
4076
  * @throws {RequiredError}
4032
4077
  */
4033
- 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>>;
4078
+ configStoreWhitelistIndex(taxId?: string, storeName?: string, shopName?: string, companyName?: string, unitNo?: string, address?: string, building?: string, createdAt?: string, updatedAt?: string, propertyName?: string, propertyId?: string, ignoreStore?: boolean, ocrVerified?: boolean, convertDate?: boolean, sortKey?: string, sortDirection?: string, hasTaxId?: boolean, receiptAddressInObk?: boolean, isActive?: boolean, options?: any): AxiosPromise<Array<StoreWhitelistResponse>>;
4034
4079
  /**
4035
4080
  *
4036
4081
  * @param {string} id
@@ -4418,6 +4463,9 @@ export declare class DefaultApi extends BaseAPI {
4418
4463
  * @param {string} [updatedAt]
4419
4464
  * @param {string} [propertyName]
4420
4465
  * @param {string} [propertyId]
4466
+ * @param {boolean} [ignoreStore]
4467
+ * @param {boolean} [ocrVerified]
4468
+ * @param {boolean} [convertDate]
4421
4469
  * @param {string} [sortKey]
4422
4470
  * @param {string} [sortDirection]
4423
4471
  * @param {boolean} [hasTaxId]
@@ -4427,7 +4475,7 @@ export declare class DefaultApi extends BaseAPI {
4427
4475
  * @throws {RequiredError}
4428
4476
  * @memberof DefaultApi
4429
4477
  */
4430
- 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>>;
4478
+ configStoreWhitelistIndex(taxId?: string, storeName?: string, shopName?: string, companyName?: string, unitNo?: string, address?: string, building?: string, createdAt?: string, updatedAt?: string, propertyName?: string, propertyId?: string, ignoreStore?: boolean, ocrVerified?: boolean, convertDate?: boolean, sortKey?: string, sortDirection?: string, hasTaxId?: boolean, receiptAddressInObk?: boolean, isActive?: boolean, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<StoreWhitelistResponse[], any>>;
4431
4479
  /**
4432
4480
  *
4433
4481
  * @param {string} id
package/dist/api/api.js CHANGED
@@ -556,6 +556,9 @@ const DefaultApiAxiosParamCreator = function (configuration) {
556
556
  * @param {string} [updatedAt]
557
557
  * @param {string} [propertyName]
558
558
  * @param {string} [propertyId]
559
+ * @param {boolean} [ignoreStore]
560
+ * @param {boolean} [ocrVerified]
561
+ * @param {boolean} [convertDate]
559
562
  * @param {string} [sortKey]
560
563
  * @param {string} [sortDirection]
561
564
  * @param {boolean} [hasTaxId]
@@ -564,7 +567,7 @@ const DefaultApiAxiosParamCreator = function (configuration) {
564
567
  * @param {*} [options] Override http request option.
565
568
  * @throws {RequiredError}
566
569
  */
567
- 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* () {
570
+ configStoreWhitelistIndex: (taxId, storeName, shopName, companyName, unitNo, address, building, createdAt, updatedAt, propertyName, propertyId, ignoreStore, ocrVerified, convertDate, sortKey, sortDirection, hasTaxId, receiptAddressInObk, isActive, options = {}) => __awaiter(this, void 0, void 0, function* () {
568
571
  const localVarPath = `/config/store/whitelist`;
569
572
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
570
573
  const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
@@ -608,6 +611,15 @@ const DefaultApiAxiosParamCreator = function (configuration) {
608
611
  if (propertyId !== undefined) {
609
612
  localVarQueryParameter['property_id'] = propertyId;
610
613
  }
614
+ if (ignoreStore !== undefined) {
615
+ localVarQueryParameter['ignore_store'] = ignoreStore;
616
+ }
617
+ if (ocrVerified !== undefined) {
618
+ localVarQueryParameter['ocr_verified'] = ocrVerified;
619
+ }
620
+ if (convertDate !== undefined) {
621
+ localVarQueryParameter['convert_date'] = convertDate;
622
+ }
611
623
  if (sortKey !== undefined) {
612
624
  localVarQueryParameter['sort_key'] = sortKey;
613
625
  }
@@ -1838,6 +1850,9 @@ const DefaultApiFp = function (configuration) {
1838
1850
  * @param {string} [updatedAt]
1839
1851
  * @param {string} [propertyName]
1840
1852
  * @param {string} [propertyId]
1853
+ * @param {boolean} [ignoreStore]
1854
+ * @param {boolean} [ocrVerified]
1855
+ * @param {boolean} [convertDate]
1841
1856
  * @param {string} [sortKey]
1842
1857
  * @param {string} [sortDirection]
1843
1858
  * @param {boolean} [hasTaxId]
@@ -1846,9 +1861,9 @@ const DefaultApiFp = function (configuration) {
1846
1861
  * @param {*} [options] Override http request option.
1847
1862
  * @throws {RequiredError}
1848
1863
  */
1849
- configStoreWhitelistIndex(taxId, storeName, shopName, companyName, unitNo, address, building, createdAt, updatedAt, propertyName, propertyId, sortKey, sortDirection, hasTaxId, receiptAddressInObk, isActive, options) {
1864
+ configStoreWhitelistIndex(taxId, storeName, shopName, companyName, unitNo, address, building, createdAt, updatedAt, propertyName, propertyId, ignoreStore, ocrVerified, convertDate, sortKey, sortDirection, hasTaxId, receiptAddressInObk, isActive, options) {
1850
1865
  return __awaiter(this, void 0, void 0, function* () {
1851
- const localVarAxiosArgs = yield localVarAxiosParamCreator.configStoreWhitelistIndex(taxId, storeName, shopName, companyName, unitNo, address, building, createdAt, updatedAt, propertyName, propertyId, sortKey, sortDirection, hasTaxId, receiptAddressInObk, isActive, options);
1866
+ const localVarAxiosArgs = yield localVarAxiosParamCreator.configStoreWhitelistIndex(taxId, storeName, shopName, companyName, unitNo, address, building, createdAt, updatedAt, propertyName, propertyId, ignoreStore, ocrVerified, convertDate, sortKey, sortDirection, hasTaxId, receiptAddressInObk, isActive, options);
1852
1867
  return (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration);
1853
1868
  });
1854
1869
  },
@@ -2401,6 +2416,9 @@ const DefaultApiFactory = function (configuration, basePath, axios) {
2401
2416
  * @param {string} [updatedAt]
2402
2417
  * @param {string} [propertyName]
2403
2418
  * @param {string} [propertyId]
2419
+ * @param {boolean} [ignoreStore]
2420
+ * @param {boolean} [ocrVerified]
2421
+ * @param {boolean} [convertDate]
2404
2422
  * @param {string} [sortKey]
2405
2423
  * @param {string} [sortDirection]
2406
2424
  * @param {boolean} [hasTaxId]
@@ -2409,8 +2427,8 @@ const DefaultApiFactory = function (configuration, basePath, axios) {
2409
2427
  * @param {*} [options] Override http request option.
2410
2428
  * @throws {RequiredError}
2411
2429
  */
2412
- configStoreWhitelistIndex(taxId, storeName, shopName, companyName, unitNo, address, building, createdAt, updatedAt, propertyName, propertyId, sortKey, sortDirection, hasTaxId, receiptAddressInObk, isActive, options) {
2413
- 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));
2430
+ configStoreWhitelistIndex(taxId, storeName, shopName, companyName, unitNo, address, building, createdAt, updatedAt, propertyName, propertyId, ignoreStore, ocrVerified, convertDate, sortKey, sortDirection, hasTaxId, receiptAddressInObk, isActive, options) {
2431
+ return localVarFp.configStoreWhitelistIndex(taxId, storeName, shopName, companyName, unitNo, address, building, createdAt, updatedAt, propertyName, propertyId, ignoreStore, ocrVerified, convertDate, sortKey, sortDirection, hasTaxId, receiptAddressInObk, isActive, options).then((request) => request(axios, basePath));
2414
2432
  },
2415
2433
  /**
2416
2434
  *
@@ -2889,6 +2907,9 @@ class DefaultApi extends base_1.BaseAPI {
2889
2907
  * @param {string} [updatedAt]
2890
2908
  * @param {string} [propertyName]
2891
2909
  * @param {string} [propertyId]
2910
+ * @param {boolean} [ignoreStore]
2911
+ * @param {boolean} [ocrVerified]
2912
+ * @param {boolean} [convertDate]
2892
2913
  * @param {string} [sortKey]
2893
2914
  * @param {string} [sortDirection]
2894
2915
  * @param {boolean} [hasTaxId]
@@ -2898,8 +2919,8 @@ class DefaultApi extends base_1.BaseAPI {
2898
2919
  * @throws {RequiredError}
2899
2920
  * @memberof DefaultApi
2900
2921
  */
2901
- configStoreWhitelistIndex(taxId, storeName, shopName, companyName, unitNo, address, building, createdAt, updatedAt, propertyName, propertyId, sortKey, sortDirection, hasTaxId, receiptAddressInObk, isActive, options) {
2902
- 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));
2922
+ configStoreWhitelistIndex(taxId, storeName, shopName, companyName, unitNo, address, building, createdAt, updatedAt, propertyName, propertyId, ignoreStore, ocrVerified, convertDate, sortKey, sortDirection, hasTaxId, receiptAddressInObk, isActive, options) {
2923
+ return (0, exports.DefaultApiFp)(this.configuration).configStoreWhitelistIndex(taxId, storeName, shopName, companyName, unitNo, address, building, createdAt, updatedAt, propertyName, propertyId, ignoreStore, ocrVerified, convertDate, sortKey, sortDirection, hasTaxId, receiptAddressInObk, isActive, options).then((request) => request(this.axios, this.basePath));
2903
2924
  }
2904
2925
  /**
2905
2926
  *
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ob-parking-sdk",
3
- "version": "0.0.57",
3
+ "version": "0.0.59",
4
4
  "description": "API interfaces for OB PARKING",
5
5
  "main": "./dist/index.js",
6
6
  "license": "MIT"