ob-parking-sdk 0.0.74 → 0.0.76

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
@@ -588,52 +588,52 @@ export interface ConfigStoreWhitelistQuery {
588
588
  'property_id'?: string;
589
589
  /**
590
590
  *
591
- * @type {boolean}
591
+ * @type {string}
592
592
  * @memberof ConfigStoreWhitelistQuery
593
593
  */
594
- 'ignore_store'?: boolean;
594
+ 'sort_key'?: string;
595
595
  /**
596
596
  *
597
- * @type {boolean}
597
+ * @type {string}
598
598
  * @memberof ConfigStoreWhitelistQuery
599
599
  */
600
- 'ocr_verified'?: boolean;
600
+ 'sort_direction'?: string;
601
601
  /**
602
602
  *
603
603
  * @type {boolean}
604
604
  * @memberof ConfigStoreWhitelistQuery
605
605
  */
606
- 'convert_date'?: boolean;
606
+ 'has_tax_id'?: boolean;
607
607
  /**
608
608
  *
609
- * @type {string}
609
+ * @type {boolean}
610
610
  * @memberof ConfigStoreWhitelistQuery
611
611
  */
612
- 'sort_key'?: string;
612
+ 'receipt_address_in_obk'?: boolean;
613
613
  /**
614
614
  *
615
- * @type {string}
615
+ * @type {boolean}
616
616
  * @memberof ConfigStoreWhitelistQuery
617
617
  */
618
- 'sort_direction'?: string;
618
+ 'is_active'?: boolean;
619
619
  /**
620
620
  *
621
621
  * @type {boolean}
622
622
  * @memberof ConfigStoreWhitelistQuery
623
623
  */
624
- 'has_tax_id'?: boolean;
624
+ 'ignore_store'?: boolean;
625
625
  /**
626
626
  *
627
627
  * @type {boolean}
628
628
  * @memberof ConfigStoreWhitelistQuery
629
629
  */
630
- 'receipt_address_in_obk'?: boolean;
630
+ 'ocr_verified'?: boolean;
631
631
  /**
632
632
  *
633
633
  * @type {boolean}
634
634
  * @memberof ConfigStoreWhitelistQuery
635
635
  */
636
- 'is_active'?: boolean;
636
+ 'convert_date'?: boolean;
637
637
  }
638
638
  /**
639
639
  *
@@ -2781,6 +2781,12 @@ export type RedeemType = typeof RedeemType[keyof typeof RedeemType];
2781
2781
  * @interface RegisteredVehicleIndexResponse
2782
2782
  */
2783
2783
  export interface RegisteredVehicleIndexResponse {
2784
+ /**
2785
+ *
2786
+ * @type {RegisteredVehicleIndexResponseCreatedAt}
2787
+ * @memberof RegisteredVehicleIndexResponse
2788
+ */
2789
+ 'created_at'?: RegisteredVehicleIndexResponseCreatedAt;
2784
2790
  /**
2785
2791
  *
2786
2792
  * @type {boolean}
@@ -2850,6 +2856,13 @@ export interface RegisteredVehicleIndexResponse {
2850
2856
  }
2851
2857
 
2852
2858
 
2859
+ /**
2860
+ *
2861
+ * @export
2862
+ * @interface RegisteredVehicleIndexResponseCreatedAt
2863
+ */
2864
+ export interface RegisteredVehicleIndexResponseCreatedAt {
2865
+ }
2853
2866
  /**
2854
2867
  *
2855
2868
  * @export
@@ -4119,21 +4132,18 @@ export const DefaultApiAxiosParamCreator = function (configuration?: Configurati
4119
4132
  * @param {string} [updatedAt]
4120
4133
  * @param {string} [propertyName]
4121
4134
  * @param {string} [propertyId]
4122
- * @param {boolean} [ignoreStore]
4123
- * @param {boolean} [ocrVerified]
4124
- * @param {boolean} [convertDate]
4125
4135
  * @param {string} [sortKey]
4126
4136
  * @param {string} [sortDirection]
4127
4137
  * @param {boolean} [hasTaxId]
4128
4138
  * @param {boolean} [receiptAddressInObk]
4129
4139
  * @param {boolean} [isActive]
4130
- * @param {boolean} [ignoreStore2]
4131
- * @param {boolean} [ocrVerified2]
4132
- * @param {boolean} [convertDate2]
4140
+ * @param {boolean} [ignoreStore]
4141
+ * @param {boolean} [ocrVerified]
4142
+ * @param {boolean} [convertDate]
4133
4143
  * @param {*} [options] Override http request option.
4134
4144
  * @throws {RequiredError}
4135
4145
  */
4136
- 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, ignoreStore2?: boolean, ocrVerified2?: boolean, convertDate2?: boolean, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
4146
+ 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, ignoreStore?: boolean, ocrVerified?: boolean, convertDate?: boolean, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
4137
4147
  const localVarPath = `/config/store/whitelist`;
4138
4148
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
4139
4149
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
@@ -4190,18 +4200,6 @@ export const DefaultApiAxiosParamCreator = function (configuration?: Configurati
4190
4200
  localVarQueryParameter['property_id'] = propertyId;
4191
4201
  }
4192
4202
 
4193
- if (ignoreStore !== undefined) {
4194
- localVarQueryParameter['ignore_store'] = ignoreStore;
4195
- }
4196
-
4197
- if (ocrVerified !== undefined) {
4198
- localVarQueryParameter['ocr_verified'] = ocrVerified;
4199
- }
4200
-
4201
- if (convertDate !== undefined) {
4202
- localVarQueryParameter['convert_date'] = convertDate;
4203
- }
4204
-
4205
4203
  if (sortKey !== undefined) {
4206
4204
  localVarQueryParameter['sort_key'] = sortKey;
4207
4205
  }
@@ -4222,16 +4220,16 @@ export const DefaultApiAxiosParamCreator = function (configuration?: Configurati
4222
4220
  localVarQueryParameter['is_active'] = isActive;
4223
4221
  }
4224
4222
 
4225
- if (ignoreStore2 !== undefined) {
4226
- localVarQueryParameter['ignore_store'] = ignoreStore2;
4223
+ if (ignoreStore !== undefined) {
4224
+ localVarQueryParameter['ignore_store'] = ignoreStore;
4227
4225
  }
4228
4226
 
4229
- if (ocrVerified2 !== undefined) {
4230
- localVarQueryParameter['ocr_verified'] = ocrVerified2;
4227
+ if (ocrVerified !== undefined) {
4228
+ localVarQueryParameter['ocr_verified'] = ocrVerified;
4231
4229
  }
4232
4230
 
4233
- if (convertDate2 !== undefined) {
4234
- localVarQueryParameter['convert_date'] = convertDate2;
4231
+ if (convertDate !== undefined) {
4232
+ localVarQueryParameter['convert_date'] = convertDate;
4235
4233
  }
4236
4234
 
4237
4235
 
@@ -5928,22 +5926,19 @@ export const DefaultApiFp = function(configuration?: Configuration) {
5928
5926
  * @param {string} [updatedAt]
5929
5927
  * @param {string} [propertyName]
5930
5928
  * @param {string} [propertyId]
5931
- * @param {boolean} [ignoreStore]
5932
- * @param {boolean} [ocrVerified]
5933
- * @param {boolean} [convertDate]
5934
5929
  * @param {string} [sortKey]
5935
5930
  * @param {string} [sortDirection]
5936
5931
  * @param {boolean} [hasTaxId]
5937
5932
  * @param {boolean} [receiptAddressInObk]
5938
5933
  * @param {boolean} [isActive]
5939
- * @param {boolean} [ignoreStore2]
5940
- * @param {boolean} [ocrVerified2]
5941
- * @param {boolean} [convertDate2]
5934
+ * @param {boolean} [ignoreStore]
5935
+ * @param {boolean} [ocrVerified]
5936
+ * @param {boolean} [convertDate]
5942
5937
  * @param {*} [options] Override http request option.
5943
5938
  * @throws {RequiredError}
5944
5939
  */
5945
- 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, ignoreStore2?: boolean, ocrVerified2?: boolean, convertDate2?: boolean, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<StoreWhitelistResponse>>> {
5946
- const localVarAxiosArgs = await localVarAxiosParamCreator.configStoreWhitelistIndex(taxId, storeName, shopName, companyName, unitNo, address, building, createdAt, updatedAt, propertyName, propertyId, ignoreStore, ocrVerified, convertDate, sortKey, sortDirection, hasTaxId, receiptAddressInObk, isActive, ignoreStore2, ocrVerified2, convertDate2, options);
5940
+ 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, ignoreStore?: boolean, ocrVerified?: boolean, convertDate?: boolean, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<StoreWhitelistResponse>>> {
5941
+ const localVarAxiosArgs = await localVarAxiosParamCreator.configStoreWhitelistIndex(taxId, storeName, shopName, companyName, unitNo, address, building, createdAt, updatedAt, propertyName, propertyId, sortKey, sortDirection, hasTaxId, receiptAddressInObk, isActive, ignoreStore, ocrVerified, convertDate, options);
5947
5942
  return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
5948
5943
  },
5949
5944
  /**
@@ -6513,22 +6508,19 @@ export const DefaultApiFactory = function (configuration?: Configuration, basePa
6513
6508
  * @param {string} [updatedAt]
6514
6509
  * @param {string} [propertyName]
6515
6510
  * @param {string} [propertyId]
6516
- * @param {boolean} [ignoreStore]
6517
- * @param {boolean} [ocrVerified]
6518
- * @param {boolean} [convertDate]
6519
6511
  * @param {string} [sortKey]
6520
6512
  * @param {string} [sortDirection]
6521
6513
  * @param {boolean} [hasTaxId]
6522
6514
  * @param {boolean} [receiptAddressInObk]
6523
6515
  * @param {boolean} [isActive]
6524
- * @param {boolean} [ignoreStore2]
6525
- * @param {boolean} [ocrVerified2]
6526
- * @param {boolean} [convertDate2]
6516
+ * @param {boolean} [ignoreStore]
6517
+ * @param {boolean} [ocrVerified]
6518
+ * @param {boolean} [convertDate]
6527
6519
  * @param {*} [options] Override http request option.
6528
6520
  * @throws {RequiredError}
6529
6521
  */
6530
- 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, ignoreStore2?: boolean, ocrVerified2?: boolean, convertDate2?: boolean, options?: any): AxiosPromise<Array<StoreWhitelistResponse>> {
6531
- return localVarFp.configStoreWhitelistIndex(taxId, storeName, shopName, companyName, unitNo, address, building, createdAt, updatedAt, propertyName, propertyId, ignoreStore, ocrVerified, convertDate, sortKey, sortDirection, hasTaxId, receiptAddressInObk, isActive, ignoreStore2, ocrVerified2, convertDate2, options).then((request) => request(axios, basePath));
6522
+ 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, ignoreStore?: boolean, ocrVerified?: boolean, convertDate?: boolean, options?: any): AxiosPromise<Array<StoreWhitelistResponse>> {
6523
+ return localVarFp.configStoreWhitelistIndex(taxId, storeName, shopName, companyName, unitNo, address, building, createdAt, updatedAt, propertyName, propertyId, sortKey, sortDirection, hasTaxId, receiptAddressInObk, isActive, ignoreStore, ocrVerified, convertDate, options).then((request) => request(axios, basePath));
6532
6524
  },
6533
6525
  /**
6534
6526
  *
@@ -7093,23 +7085,20 @@ export class DefaultApi extends BaseAPI {
7093
7085
  * @param {string} [updatedAt]
7094
7086
  * @param {string} [propertyName]
7095
7087
  * @param {string} [propertyId]
7096
- * @param {boolean} [ignoreStore]
7097
- * @param {boolean} [ocrVerified]
7098
- * @param {boolean} [convertDate]
7099
7088
  * @param {string} [sortKey]
7100
7089
  * @param {string} [sortDirection]
7101
7090
  * @param {boolean} [hasTaxId]
7102
7091
  * @param {boolean} [receiptAddressInObk]
7103
7092
  * @param {boolean} [isActive]
7104
- * @param {boolean} [ignoreStore2]
7105
- * @param {boolean} [ocrVerified2]
7106
- * @param {boolean} [convertDate2]
7093
+ * @param {boolean} [ignoreStore]
7094
+ * @param {boolean} [ocrVerified]
7095
+ * @param {boolean} [convertDate]
7107
7096
  * @param {*} [options] Override http request option.
7108
7097
  * @throws {RequiredError}
7109
7098
  * @memberof DefaultApi
7110
7099
  */
7111
- 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, ignoreStore2?: boolean, ocrVerified2?: boolean, convertDate2?: boolean, options?: AxiosRequestConfig) {
7112
- return DefaultApiFp(this.configuration).configStoreWhitelistIndex(taxId, storeName, shopName, companyName, unitNo, address, building, createdAt, updatedAt, propertyName, propertyId, ignoreStore, ocrVerified, convertDate, sortKey, sortDirection, hasTaxId, receiptAddressInObk, isActive, ignoreStore2, ocrVerified2, convertDate2, options).then((request) => request(this.axios, this.basePath));
7100
+ 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, ignoreStore?: boolean, ocrVerified?: boolean, convertDate?: boolean, options?: AxiosRequestConfig) {
7101
+ return DefaultApiFp(this.configuration).configStoreWhitelistIndex(taxId, storeName, shopName, companyName, unitNo, address, building, createdAt, updatedAt, propertyName, propertyId, sortKey, sortDirection, hasTaxId, receiptAddressInObk, isActive, ignoreStore, ocrVerified, convertDate, options).then((request) => request(this.axios, this.basePath));
7113
7102
  }
7114
7103
 
7115
7104
  /**
package/dist/api/api.d.ts CHANGED
@@ -565,52 +565,52 @@ export interface ConfigStoreWhitelistQuery {
565
565
  'property_id'?: string;
566
566
  /**
567
567
  *
568
- * @type {boolean}
568
+ * @type {string}
569
569
  * @memberof ConfigStoreWhitelistQuery
570
570
  */
571
- 'ignore_store'?: boolean;
571
+ 'sort_key'?: string;
572
572
  /**
573
573
  *
574
- * @type {boolean}
574
+ * @type {string}
575
575
  * @memberof ConfigStoreWhitelistQuery
576
576
  */
577
- 'ocr_verified'?: boolean;
577
+ 'sort_direction'?: string;
578
578
  /**
579
579
  *
580
580
  * @type {boolean}
581
581
  * @memberof ConfigStoreWhitelistQuery
582
582
  */
583
- 'convert_date'?: boolean;
583
+ 'has_tax_id'?: boolean;
584
584
  /**
585
585
  *
586
- * @type {string}
586
+ * @type {boolean}
587
587
  * @memberof ConfigStoreWhitelistQuery
588
588
  */
589
- 'sort_key'?: string;
589
+ 'receipt_address_in_obk'?: boolean;
590
590
  /**
591
591
  *
592
- * @type {string}
592
+ * @type {boolean}
593
593
  * @memberof ConfigStoreWhitelistQuery
594
594
  */
595
- 'sort_direction'?: string;
595
+ 'is_active'?: boolean;
596
596
  /**
597
597
  *
598
598
  * @type {boolean}
599
599
  * @memberof ConfigStoreWhitelistQuery
600
600
  */
601
- 'has_tax_id'?: boolean;
601
+ 'ignore_store'?: boolean;
602
602
  /**
603
603
  *
604
604
  * @type {boolean}
605
605
  * @memberof ConfigStoreWhitelistQuery
606
606
  */
607
- 'receipt_address_in_obk'?: boolean;
607
+ 'ocr_verified'?: boolean;
608
608
  /**
609
609
  *
610
610
  * @type {boolean}
611
611
  * @memberof ConfigStoreWhitelistQuery
612
612
  */
613
- 'is_active'?: boolean;
613
+ 'convert_date'?: boolean;
614
614
  }
615
615
  /**
616
616
  *
@@ -2723,6 +2723,12 @@ export type RedeemType = typeof RedeemType[keyof typeof RedeemType];
2723
2723
  * @interface RegisteredVehicleIndexResponse
2724
2724
  */
2725
2725
  export interface RegisteredVehicleIndexResponse {
2726
+ /**
2727
+ *
2728
+ * @type {RegisteredVehicleIndexResponseCreatedAt}
2729
+ * @memberof RegisteredVehicleIndexResponse
2730
+ */
2731
+ 'created_at'?: RegisteredVehicleIndexResponseCreatedAt;
2726
2732
  /**
2727
2733
  *
2728
2734
  * @type {boolean}
@@ -2790,6 +2796,13 @@ export interface RegisteredVehicleIndexResponse {
2790
2796
  */
2791
2797
  'id': string;
2792
2798
  }
2799
+ /**
2800
+ *
2801
+ * @export
2802
+ * @interface RegisteredVehicleIndexResponseCreatedAt
2803
+ */
2804
+ export interface RegisteredVehicleIndexResponseCreatedAt {
2805
+ }
2793
2806
  /**
2794
2807
  *
2795
2808
  * @export
@@ -3638,21 +3651,18 @@ export declare const DefaultApiAxiosParamCreator: (configuration?: Configuration
3638
3651
  * @param {string} [updatedAt]
3639
3652
  * @param {string} [propertyName]
3640
3653
  * @param {string} [propertyId]
3641
- * @param {boolean} [ignoreStore]
3642
- * @param {boolean} [ocrVerified]
3643
- * @param {boolean} [convertDate]
3644
3654
  * @param {string} [sortKey]
3645
3655
  * @param {string} [sortDirection]
3646
3656
  * @param {boolean} [hasTaxId]
3647
3657
  * @param {boolean} [receiptAddressInObk]
3648
3658
  * @param {boolean} [isActive]
3649
- * @param {boolean} [ignoreStore2]
3650
- * @param {boolean} [ocrVerified2]
3651
- * @param {boolean} [convertDate2]
3659
+ * @param {boolean} [ignoreStore]
3660
+ * @param {boolean} [ocrVerified]
3661
+ * @param {boolean} [convertDate]
3652
3662
  * @param {*} [options] Override http request option.
3653
3663
  * @throws {RequiredError}
3654
3664
  */
3655
- 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, ignoreStore2?: boolean, ocrVerified2?: boolean, convertDate2?: boolean, options?: AxiosRequestConfig) => Promise<RequestArgs>;
3665
+ 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, ignoreStore?: boolean, ocrVerified?: boolean, convertDate?: boolean, options?: AxiosRequestConfig) => Promise<RequestArgs>;
3656
3666
  /**
3657
3667
  *
3658
3668
  * @param {string} id
@@ -4084,21 +4094,18 @@ export declare const DefaultApiFp: (configuration?: Configuration) => {
4084
4094
  * @param {string} [updatedAt]
4085
4095
  * @param {string} [propertyName]
4086
4096
  * @param {string} [propertyId]
4087
- * @param {boolean} [ignoreStore]
4088
- * @param {boolean} [ocrVerified]
4089
- * @param {boolean} [convertDate]
4090
4097
  * @param {string} [sortKey]
4091
4098
  * @param {string} [sortDirection]
4092
4099
  * @param {boolean} [hasTaxId]
4093
4100
  * @param {boolean} [receiptAddressInObk]
4094
4101
  * @param {boolean} [isActive]
4095
- * @param {boolean} [ignoreStore2]
4096
- * @param {boolean} [ocrVerified2]
4097
- * @param {boolean} [convertDate2]
4102
+ * @param {boolean} [ignoreStore]
4103
+ * @param {boolean} [ocrVerified]
4104
+ * @param {boolean} [convertDate]
4098
4105
  * @param {*} [options] Override http request option.
4099
4106
  * @throws {RequiredError}
4100
4107
  */
4101
- 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, ignoreStore2?: boolean, ocrVerified2?: boolean, convertDate2?: boolean, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<StoreWhitelistResponse>>>;
4108
+ 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, ignoreStore?: boolean, ocrVerified?: boolean, convertDate?: boolean, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<StoreWhitelistResponse>>>;
4102
4109
  /**
4103
4110
  *
4104
4111
  * @param {string} id
@@ -4530,21 +4537,18 @@ export declare const DefaultApiFactory: (configuration?: Configuration, basePath
4530
4537
  * @param {string} [updatedAt]
4531
4538
  * @param {string} [propertyName]
4532
4539
  * @param {string} [propertyId]
4533
- * @param {boolean} [ignoreStore]
4534
- * @param {boolean} [ocrVerified]
4535
- * @param {boolean} [convertDate]
4536
4540
  * @param {string} [sortKey]
4537
4541
  * @param {string} [sortDirection]
4538
4542
  * @param {boolean} [hasTaxId]
4539
4543
  * @param {boolean} [receiptAddressInObk]
4540
4544
  * @param {boolean} [isActive]
4541
- * @param {boolean} [ignoreStore2]
4542
- * @param {boolean} [ocrVerified2]
4543
- * @param {boolean} [convertDate2]
4545
+ * @param {boolean} [ignoreStore]
4546
+ * @param {boolean} [ocrVerified]
4547
+ * @param {boolean} [convertDate]
4544
4548
  * @param {*} [options] Override http request option.
4545
4549
  * @throws {RequiredError}
4546
4550
  */
4547
- 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, ignoreStore2?: boolean, ocrVerified2?: boolean, convertDate2?: boolean, options?: any): AxiosPromise<Array<StoreWhitelistResponse>>;
4551
+ 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, ignoreStore?: boolean, ocrVerified?: boolean, convertDate?: boolean, options?: any): AxiosPromise<Array<StoreWhitelistResponse>>;
4548
4552
  /**
4549
4553
  *
4550
4554
  * @param {string} id
@@ -4993,22 +4997,19 @@ export declare class DefaultApi extends BaseAPI {
4993
4997
  * @param {string} [updatedAt]
4994
4998
  * @param {string} [propertyName]
4995
4999
  * @param {string} [propertyId]
4996
- * @param {boolean} [ignoreStore]
4997
- * @param {boolean} [ocrVerified]
4998
- * @param {boolean} [convertDate]
4999
5000
  * @param {string} [sortKey]
5000
5001
  * @param {string} [sortDirection]
5001
5002
  * @param {boolean} [hasTaxId]
5002
5003
  * @param {boolean} [receiptAddressInObk]
5003
5004
  * @param {boolean} [isActive]
5004
- * @param {boolean} [ignoreStore2]
5005
- * @param {boolean} [ocrVerified2]
5006
- * @param {boolean} [convertDate2]
5005
+ * @param {boolean} [ignoreStore]
5006
+ * @param {boolean} [ocrVerified]
5007
+ * @param {boolean} [convertDate]
5007
5008
  * @param {*} [options] Override http request option.
5008
5009
  * @throws {RequiredError}
5009
5010
  * @memberof DefaultApi
5010
5011
  */
5011
- 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, ignoreStore2?: boolean, ocrVerified2?: boolean, convertDate2?: boolean, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<StoreWhitelistResponse[], any>>;
5012
+ 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, ignoreStore?: boolean, ocrVerified?: boolean, convertDate?: boolean, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<StoreWhitelistResponse[], any>>;
5012
5013
  /**
5013
5014
  *
5014
5015
  * @param {string} id
package/dist/api/api.js CHANGED
@@ -556,21 +556,18 @@ 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]
562
559
  * @param {string} [sortKey]
563
560
  * @param {string} [sortDirection]
564
561
  * @param {boolean} [hasTaxId]
565
562
  * @param {boolean} [receiptAddressInObk]
566
563
  * @param {boolean} [isActive]
567
- * @param {boolean} [ignoreStore2]
568
- * @param {boolean} [ocrVerified2]
569
- * @param {boolean} [convertDate2]
564
+ * @param {boolean} [ignoreStore]
565
+ * @param {boolean} [ocrVerified]
566
+ * @param {boolean} [convertDate]
570
567
  * @param {*} [options] Override http request option.
571
568
  * @throws {RequiredError}
572
569
  */
573
- configStoreWhitelistIndex: (taxId, storeName, shopName, companyName, unitNo, address, building, createdAt, updatedAt, propertyName, propertyId, ignoreStore, ocrVerified, convertDate, sortKey, sortDirection, hasTaxId, receiptAddressInObk, isActive, ignoreStore2, ocrVerified2, convertDate2, options = {}) => __awaiter(this, void 0, void 0, function* () {
570
+ configStoreWhitelistIndex: (taxId, storeName, shopName, companyName, unitNo, address, building, createdAt, updatedAt, propertyName, propertyId, sortKey, sortDirection, hasTaxId, receiptAddressInObk, isActive, ignoreStore, ocrVerified, convertDate, options = {}) => __awaiter(this, void 0, void 0, function* () {
574
571
  const localVarPath = `/config/store/whitelist`;
575
572
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
576
573
  const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
@@ -614,15 +611,6 @@ const DefaultApiAxiosParamCreator = function (configuration) {
614
611
  if (propertyId !== undefined) {
615
612
  localVarQueryParameter['property_id'] = propertyId;
616
613
  }
617
- if (ignoreStore !== undefined) {
618
- localVarQueryParameter['ignore_store'] = ignoreStore;
619
- }
620
- if (ocrVerified !== undefined) {
621
- localVarQueryParameter['ocr_verified'] = ocrVerified;
622
- }
623
- if (convertDate !== undefined) {
624
- localVarQueryParameter['convert_date'] = convertDate;
625
- }
626
614
  if (sortKey !== undefined) {
627
615
  localVarQueryParameter['sort_key'] = sortKey;
628
616
  }
@@ -638,14 +626,14 @@ const DefaultApiAxiosParamCreator = function (configuration) {
638
626
  if (isActive !== undefined) {
639
627
  localVarQueryParameter['is_active'] = isActive;
640
628
  }
641
- if (ignoreStore2 !== undefined) {
642
- localVarQueryParameter['ignore_store'] = ignoreStore2;
629
+ if (ignoreStore !== undefined) {
630
+ localVarQueryParameter['ignore_store'] = ignoreStore;
643
631
  }
644
- if (ocrVerified2 !== undefined) {
645
- localVarQueryParameter['ocr_verified'] = ocrVerified2;
632
+ if (ocrVerified !== undefined) {
633
+ localVarQueryParameter['ocr_verified'] = ocrVerified;
646
634
  }
647
- if (convertDate2 !== undefined) {
648
- localVarQueryParameter['convert_date'] = convertDate2;
635
+ if (convertDate !== undefined) {
636
+ localVarQueryParameter['convert_date'] = convertDate;
649
637
  }
650
638
  (0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
651
639
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
@@ -2109,23 +2097,20 @@ const DefaultApiFp = function (configuration) {
2109
2097
  * @param {string} [updatedAt]
2110
2098
  * @param {string} [propertyName]
2111
2099
  * @param {string} [propertyId]
2112
- * @param {boolean} [ignoreStore]
2113
- * @param {boolean} [ocrVerified]
2114
- * @param {boolean} [convertDate]
2115
2100
  * @param {string} [sortKey]
2116
2101
  * @param {string} [sortDirection]
2117
2102
  * @param {boolean} [hasTaxId]
2118
2103
  * @param {boolean} [receiptAddressInObk]
2119
2104
  * @param {boolean} [isActive]
2120
- * @param {boolean} [ignoreStore2]
2121
- * @param {boolean} [ocrVerified2]
2122
- * @param {boolean} [convertDate2]
2105
+ * @param {boolean} [ignoreStore]
2106
+ * @param {boolean} [ocrVerified]
2107
+ * @param {boolean} [convertDate]
2123
2108
  * @param {*} [options] Override http request option.
2124
2109
  * @throws {RequiredError}
2125
2110
  */
2126
- configStoreWhitelistIndex(taxId, storeName, shopName, companyName, unitNo, address, building, createdAt, updatedAt, propertyName, propertyId, ignoreStore, ocrVerified, convertDate, sortKey, sortDirection, hasTaxId, receiptAddressInObk, isActive, ignoreStore2, ocrVerified2, convertDate2, options) {
2111
+ configStoreWhitelistIndex(taxId, storeName, shopName, companyName, unitNo, address, building, createdAt, updatedAt, propertyName, propertyId, sortKey, sortDirection, hasTaxId, receiptAddressInObk, isActive, ignoreStore, ocrVerified, convertDate, options) {
2127
2112
  return __awaiter(this, void 0, void 0, function* () {
2128
- const localVarAxiosArgs = yield localVarAxiosParamCreator.configStoreWhitelistIndex(taxId, storeName, shopName, companyName, unitNo, address, building, createdAt, updatedAt, propertyName, propertyId, ignoreStore, ocrVerified, convertDate, sortKey, sortDirection, hasTaxId, receiptAddressInObk, isActive, ignoreStore2, ocrVerified2, convertDate2, options);
2113
+ const localVarAxiosArgs = yield localVarAxiosParamCreator.configStoreWhitelistIndex(taxId, storeName, shopName, companyName, unitNo, address, building, createdAt, updatedAt, propertyName, propertyId, sortKey, sortDirection, hasTaxId, receiptAddressInObk, isActive, ignoreStore, ocrVerified, convertDate, options);
2129
2114
  return (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration);
2130
2115
  });
2131
2116
  },
@@ -2764,22 +2749,19 @@ const DefaultApiFactory = function (configuration, basePath, axios) {
2764
2749
  * @param {string} [updatedAt]
2765
2750
  * @param {string} [propertyName]
2766
2751
  * @param {string} [propertyId]
2767
- * @param {boolean} [ignoreStore]
2768
- * @param {boolean} [ocrVerified]
2769
- * @param {boolean} [convertDate]
2770
2752
  * @param {string} [sortKey]
2771
2753
  * @param {string} [sortDirection]
2772
2754
  * @param {boolean} [hasTaxId]
2773
2755
  * @param {boolean} [receiptAddressInObk]
2774
2756
  * @param {boolean} [isActive]
2775
- * @param {boolean} [ignoreStore2]
2776
- * @param {boolean} [ocrVerified2]
2777
- * @param {boolean} [convertDate2]
2757
+ * @param {boolean} [ignoreStore]
2758
+ * @param {boolean} [ocrVerified]
2759
+ * @param {boolean} [convertDate]
2778
2760
  * @param {*} [options] Override http request option.
2779
2761
  * @throws {RequiredError}
2780
2762
  */
2781
- configStoreWhitelistIndex(taxId, storeName, shopName, companyName, unitNo, address, building, createdAt, updatedAt, propertyName, propertyId, ignoreStore, ocrVerified, convertDate, sortKey, sortDirection, hasTaxId, receiptAddressInObk, isActive, ignoreStore2, ocrVerified2, convertDate2, options) {
2782
- return localVarFp.configStoreWhitelistIndex(taxId, storeName, shopName, companyName, unitNo, address, building, createdAt, updatedAt, propertyName, propertyId, ignoreStore, ocrVerified, convertDate, sortKey, sortDirection, hasTaxId, receiptAddressInObk, isActive, ignoreStore2, ocrVerified2, convertDate2, options).then((request) => request(axios, basePath));
2763
+ configStoreWhitelistIndex(taxId, storeName, shopName, companyName, unitNo, address, building, createdAt, updatedAt, propertyName, propertyId, sortKey, sortDirection, hasTaxId, receiptAddressInObk, isActive, ignoreStore, ocrVerified, convertDate, options) {
2764
+ return localVarFp.configStoreWhitelistIndex(taxId, storeName, shopName, companyName, unitNo, address, building, createdAt, updatedAt, propertyName, propertyId, sortKey, sortDirection, hasTaxId, receiptAddressInObk, isActive, ignoreStore, ocrVerified, convertDate, options).then((request) => request(axios, basePath));
2783
2765
  },
2784
2766
  /**
2785
2767
  *
@@ -3329,23 +3311,20 @@ class DefaultApi extends base_1.BaseAPI {
3329
3311
  * @param {string} [updatedAt]
3330
3312
  * @param {string} [propertyName]
3331
3313
  * @param {string} [propertyId]
3332
- * @param {boolean} [ignoreStore]
3333
- * @param {boolean} [ocrVerified]
3334
- * @param {boolean} [convertDate]
3335
3314
  * @param {string} [sortKey]
3336
3315
  * @param {string} [sortDirection]
3337
3316
  * @param {boolean} [hasTaxId]
3338
3317
  * @param {boolean} [receiptAddressInObk]
3339
3318
  * @param {boolean} [isActive]
3340
- * @param {boolean} [ignoreStore2]
3341
- * @param {boolean} [ocrVerified2]
3342
- * @param {boolean} [convertDate2]
3319
+ * @param {boolean} [ignoreStore]
3320
+ * @param {boolean} [ocrVerified]
3321
+ * @param {boolean} [convertDate]
3343
3322
  * @param {*} [options] Override http request option.
3344
3323
  * @throws {RequiredError}
3345
3324
  * @memberof DefaultApi
3346
3325
  */
3347
- configStoreWhitelistIndex(taxId, storeName, shopName, companyName, unitNo, address, building, createdAt, updatedAt, propertyName, propertyId, ignoreStore, ocrVerified, convertDate, sortKey, sortDirection, hasTaxId, receiptAddressInObk, isActive, ignoreStore2, ocrVerified2, convertDate2, options) {
3348
- 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, ignoreStore2, ocrVerified2, convertDate2, options).then((request) => request(this.axios, this.basePath));
3326
+ configStoreWhitelistIndex(taxId, storeName, shopName, companyName, unitNo, address, building, createdAt, updatedAt, propertyName, propertyId, sortKey, sortDirection, hasTaxId, receiptAddressInObk, isActive, ignoreStore, ocrVerified, convertDate, options) {
3327
+ return (0, exports.DefaultApiFp)(this.configuration).configStoreWhitelistIndex(taxId, storeName, shopName, companyName, unitNo, address, building, createdAt, updatedAt, propertyName, propertyId, sortKey, sortDirection, hasTaxId, receiptAddressInObk, isActive, ignoreStore, ocrVerified, convertDate, options).then((request) => request(this.axios, this.basePath));
3349
3328
  }
3350
3329
  /**
3351
3330
  *
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ob-parking-sdk",
3
- "version": "0.0.74",
3
+ "version": "0.0.76",
4
4
  "description": "API interfaces for OB PARKING",
5
5
  "main": "./dist/index.js",
6
6
  "license": "MIT"