ob-parking-sdk 0.0.75 → 0.0.77

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
  *
@@ -2775,6 +2775,55 @@ export const RedeemType = {
2775
2775
  export type RedeemType = typeof RedeemType[keyof typeof RedeemType];
2776
2776
 
2777
2777
 
2778
+ /**
2779
+ *
2780
+ * @export
2781
+ * @interface RegisteredVehicleHistoryIndexResponse
2782
+ */
2783
+ export interface RegisteredVehicleHistoryIndexResponse {
2784
+ /**
2785
+ *
2786
+ * @type {boolean}
2787
+ * @memberof RegisteredVehicleHistoryIndexResponse
2788
+ */
2789
+ 'is_vip': boolean;
2790
+ /**
2791
+ *
2792
+ * @type {string}
2793
+ * @memberof RegisteredVehicleHistoryIndexResponse
2794
+ */
2795
+ 'phone_number': string | null;
2796
+ /**
2797
+ *
2798
+ * @type {string}
2799
+ * @memberof RegisteredVehicleHistoryIndexResponse
2800
+ */
2801
+ 'email': string | null;
2802
+ /**
2803
+ *
2804
+ * @type {string}
2805
+ * @memberof RegisteredVehicleHistoryIndexResponse
2806
+ */
2807
+ 'plate_province': string | null;
2808
+ /**
2809
+ *
2810
+ * @type {string}
2811
+ * @memberof RegisteredVehicleHistoryIndexResponse
2812
+ */
2813
+ 'plate_no': string;
2814
+ /**
2815
+ *
2816
+ * @type {string}
2817
+ * @memberof RegisteredVehicleHistoryIndexResponse
2818
+ */
2819
+ 'account_id': string;
2820
+ /**
2821
+ *
2822
+ * @type {string}
2823
+ * @memberof RegisteredVehicleHistoryIndexResponse
2824
+ */
2825
+ 'id': string;
2826
+ }
2778
2827
  /**
2779
2828
  *
2780
2829
  * @export
@@ -2783,10 +2832,10 @@ export type RedeemType = typeof RedeemType[keyof typeof RedeemType];
2783
2832
  export interface RegisteredVehicleIndexResponse {
2784
2833
  /**
2785
2834
  *
2786
- * @type {string}
2835
+ * @type {RegisteredVehicleIndexResponseCreatedAt}
2787
2836
  * @memberof RegisteredVehicleIndexResponse
2788
2837
  */
2789
- 'created_at'?: string;
2838
+ 'created_at'?: RegisteredVehicleIndexResponseCreatedAt;
2790
2839
  /**
2791
2840
  *
2792
2841
  * @type {boolean}
@@ -2856,6 +2905,13 @@ export interface RegisteredVehicleIndexResponse {
2856
2905
  }
2857
2906
 
2858
2907
 
2908
+ /**
2909
+ *
2910
+ * @export
2911
+ * @interface RegisteredVehicleIndexResponseCreatedAt
2912
+ */
2913
+ export interface RegisteredVehicleIndexResponseCreatedAt {
2914
+ }
2859
2915
  /**
2860
2916
  *
2861
2917
  * @export
@@ -3027,6 +3083,25 @@ export interface ResponseDataGetParkingDetailsIndexResponseArray {
3027
3083
  */
3028
3084
  'pagination'?: Pagination;
3029
3085
  }
3086
+ /**
3087
+ *
3088
+ * @export
3089
+ * @interface ResponseDataRegisteredVehicleHistoryIndexResponseArray
3090
+ */
3091
+ export interface ResponseDataRegisteredVehicleHistoryIndexResponseArray {
3092
+ /**
3093
+ *
3094
+ * @type {Array<RegisteredVehicleHistoryIndexResponse>}
3095
+ * @memberof ResponseDataRegisteredVehicleHistoryIndexResponseArray
3096
+ */
3097
+ 'data': Array<RegisteredVehicleHistoryIndexResponse>;
3098
+ /**
3099
+ *
3100
+ * @type {Pagination}
3101
+ * @memberof ResponseDataRegisteredVehicleHistoryIndexResponseArray
3102
+ */
3103
+ 'pagination'?: Pagination;
3104
+ }
3030
3105
  /**
3031
3106
  *
3032
3107
  * @export
@@ -4125,21 +4200,18 @@ export const DefaultApiAxiosParamCreator = function (configuration?: Configurati
4125
4200
  * @param {string} [updatedAt]
4126
4201
  * @param {string} [propertyName]
4127
4202
  * @param {string} [propertyId]
4128
- * @param {boolean} [ignoreStore]
4129
- * @param {boolean} [ocrVerified]
4130
- * @param {boolean} [convertDate]
4131
4203
  * @param {string} [sortKey]
4132
4204
  * @param {string} [sortDirection]
4133
4205
  * @param {boolean} [hasTaxId]
4134
4206
  * @param {boolean} [receiptAddressInObk]
4135
4207
  * @param {boolean} [isActive]
4136
- * @param {boolean} [ignoreStore2]
4137
- * @param {boolean} [ocrVerified2]
4138
- * @param {boolean} [convertDate2]
4208
+ * @param {boolean} [ignoreStore]
4209
+ * @param {boolean} [ocrVerified]
4210
+ * @param {boolean} [convertDate]
4139
4211
  * @param {*} [options] Override http request option.
4140
4212
  * @throws {RequiredError}
4141
4213
  */
4142
- 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> => {
4214
+ 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> => {
4143
4215
  const localVarPath = `/config/store/whitelist`;
4144
4216
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
4145
4217
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
@@ -4196,18 +4268,6 @@ export const DefaultApiAxiosParamCreator = function (configuration?: Configurati
4196
4268
  localVarQueryParameter['property_id'] = propertyId;
4197
4269
  }
4198
4270
 
4199
- if (ignoreStore !== undefined) {
4200
- localVarQueryParameter['ignore_store'] = ignoreStore;
4201
- }
4202
-
4203
- if (ocrVerified !== undefined) {
4204
- localVarQueryParameter['ocr_verified'] = ocrVerified;
4205
- }
4206
-
4207
- if (convertDate !== undefined) {
4208
- localVarQueryParameter['convert_date'] = convertDate;
4209
- }
4210
-
4211
4271
  if (sortKey !== undefined) {
4212
4272
  localVarQueryParameter['sort_key'] = sortKey;
4213
4273
  }
@@ -4228,16 +4288,16 @@ export const DefaultApiAxiosParamCreator = function (configuration?: Configurati
4228
4288
  localVarQueryParameter['is_active'] = isActive;
4229
4289
  }
4230
4290
 
4231
- if (ignoreStore2 !== undefined) {
4232
- localVarQueryParameter['ignore_store'] = ignoreStore2;
4291
+ if (ignoreStore !== undefined) {
4292
+ localVarQueryParameter['ignore_store'] = ignoreStore;
4233
4293
  }
4234
4294
 
4235
- if (ocrVerified2 !== undefined) {
4236
- localVarQueryParameter['ocr_verified'] = ocrVerified2;
4295
+ if (ocrVerified !== undefined) {
4296
+ localVarQueryParameter['ocr_verified'] = ocrVerified;
4237
4297
  }
4238
4298
 
4239
- if (convertDate2 !== undefined) {
4240
- localVarQueryParameter['convert_date'] = convertDate2;
4299
+ if (convertDate !== undefined) {
4300
+ localVarQueryParameter['convert_date'] = convertDate;
4241
4301
  }
4242
4302
 
4243
4303
 
@@ -5934,22 +5994,19 @@ export const DefaultApiFp = function(configuration?: Configuration) {
5934
5994
  * @param {string} [updatedAt]
5935
5995
  * @param {string} [propertyName]
5936
5996
  * @param {string} [propertyId]
5937
- * @param {boolean} [ignoreStore]
5938
- * @param {boolean} [ocrVerified]
5939
- * @param {boolean} [convertDate]
5940
5997
  * @param {string} [sortKey]
5941
5998
  * @param {string} [sortDirection]
5942
5999
  * @param {boolean} [hasTaxId]
5943
6000
  * @param {boolean} [receiptAddressInObk]
5944
6001
  * @param {boolean} [isActive]
5945
- * @param {boolean} [ignoreStore2]
5946
- * @param {boolean} [ocrVerified2]
5947
- * @param {boolean} [convertDate2]
6002
+ * @param {boolean} [ignoreStore]
6003
+ * @param {boolean} [ocrVerified]
6004
+ * @param {boolean} [convertDate]
5948
6005
  * @param {*} [options] Override http request option.
5949
6006
  * @throws {RequiredError}
5950
6007
  */
5951
- 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>>> {
5952
- 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);
6008
+ 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>>> {
6009
+ 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);
5953
6010
  return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
5954
6011
  },
5955
6012
  /**
@@ -6236,7 +6293,7 @@ export const DefaultApiFp = function(configuration?: Configuration) {
6236
6293
  * @param {*} [options] Override http request option.
6237
6294
  * @throws {RequiredError}
6238
6295
  */
6239
- async registeredVehiclesHistoryIndex(orderBy?: string, orderDirection?: string, pageNumber?: number, pageSize?: number, filterBy?: string, filterKey?: string, startDate?: string, endDate?: string, isVip?: boolean, isExport?: boolean, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ResponseDataRegisteredVehicleIndexResponseArray>> {
6296
+ async registeredVehiclesHistoryIndex(orderBy?: string, orderDirection?: string, pageNumber?: number, pageSize?: number, filterBy?: string, filterKey?: string, startDate?: string, endDate?: string, isVip?: boolean, isExport?: boolean, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ResponseDataRegisteredVehicleHistoryIndexResponseArray>> {
6240
6297
  const localVarAxiosArgs = await localVarAxiosParamCreator.registeredVehiclesHistoryIndex(orderBy, orderDirection, pageNumber, pageSize, filterBy, filterKey, startDate, endDate, isVip, isExport, options);
6241
6298
  return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
6242
6299
  },
@@ -6519,22 +6576,19 @@ export const DefaultApiFactory = function (configuration?: Configuration, basePa
6519
6576
  * @param {string} [updatedAt]
6520
6577
  * @param {string} [propertyName]
6521
6578
  * @param {string} [propertyId]
6522
- * @param {boolean} [ignoreStore]
6523
- * @param {boolean} [ocrVerified]
6524
- * @param {boolean} [convertDate]
6525
6579
  * @param {string} [sortKey]
6526
6580
  * @param {string} [sortDirection]
6527
6581
  * @param {boolean} [hasTaxId]
6528
6582
  * @param {boolean} [receiptAddressInObk]
6529
6583
  * @param {boolean} [isActive]
6530
- * @param {boolean} [ignoreStore2]
6531
- * @param {boolean} [ocrVerified2]
6532
- * @param {boolean} [convertDate2]
6584
+ * @param {boolean} [ignoreStore]
6585
+ * @param {boolean} [ocrVerified]
6586
+ * @param {boolean} [convertDate]
6533
6587
  * @param {*} [options] Override http request option.
6534
6588
  * @throws {RequiredError}
6535
6589
  */
6536
- 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>> {
6537
- 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));
6590
+ 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>> {
6591
+ 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));
6538
6592
  },
6539
6593
  /**
6540
6594
  *
@@ -6798,7 +6852,7 @@ export const DefaultApiFactory = function (configuration?: Configuration, basePa
6798
6852
  * @param {*} [options] Override http request option.
6799
6853
  * @throws {RequiredError}
6800
6854
  */
6801
- registeredVehiclesHistoryIndex(orderBy?: string, orderDirection?: string, pageNumber?: number, pageSize?: number, filterBy?: string, filterKey?: string, startDate?: string, endDate?: string, isVip?: boolean, isExport?: boolean, options?: any): AxiosPromise<ResponseDataRegisteredVehicleIndexResponseArray> {
6855
+ registeredVehiclesHistoryIndex(orderBy?: string, orderDirection?: string, pageNumber?: number, pageSize?: number, filterBy?: string, filterKey?: string, startDate?: string, endDate?: string, isVip?: boolean, isExport?: boolean, options?: any): AxiosPromise<ResponseDataRegisteredVehicleHistoryIndexResponseArray> {
6802
6856
  return localVarFp.registeredVehiclesHistoryIndex(orderBy, orderDirection, pageNumber, pageSize, filterBy, filterKey, startDate, endDate, isVip, isExport, options).then((request) => request(axios, basePath));
6803
6857
  },
6804
6858
  /**
@@ -7099,23 +7153,20 @@ export class DefaultApi extends BaseAPI {
7099
7153
  * @param {string} [updatedAt]
7100
7154
  * @param {string} [propertyName]
7101
7155
  * @param {string} [propertyId]
7102
- * @param {boolean} [ignoreStore]
7103
- * @param {boolean} [ocrVerified]
7104
- * @param {boolean} [convertDate]
7105
7156
  * @param {string} [sortKey]
7106
7157
  * @param {string} [sortDirection]
7107
7158
  * @param {boolean} [hasTaxId]
7108
7159
  * @param {boolean} [receiptAddressInObk]
7109
7160
  * @param {boolean} [isActive]
7110
- * @param {boolean} [ignoreStore2]
7111
- * @param {boolean} [ocrVerified2]
7112
- * @param {boolean} [convertDate2]
7161
+ * @param {boolean} [ignoreStore]
7162
+ * @param {boolean} [ocrVerified]
7163
+ * @param {boolean} [convertDate]
7113
7164
  * @param {*} [options] Override http request option.
7114
7165
  * @throws {RequiredError}
7115
7166
  * @memberof DefaultApi
7116
7167
  */
7117
- 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) {
7118
- 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));
7168
+ 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) {
7169
+ 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));
7119
7170
  }
7120
7171
 
7121
7172
  /**
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
  *
@@ -2717,6 +2717,55 @@ export declare const RedeemType: {
2717
2717
  readonly Redeem: "REDEEM";
2718
2718
  };
2719
2719
  export type RedeemType = typeof RedeemType[keyof typeof RedeemType];
2720
+ /**
2721
+ *
2722
+ * @export
2723
+ * @interface RegisteredVehicleHistoryIndexResponse
2724
+ */
2725
+ export interface RegisteredVehicleHistoryIndexResponse {
2726
+ /**
2727
+ *
2728
+ * @type {boolean}
2729
+ * @memberof RegisteredVehicleHistoryIndexResponse
2730
+ */
2731
+ 'is_vip': boolean;
2732
+ /**
2733
+ *
2734
+ * @type {string}
2735
+ * @memberof RegisteredVehicleHistoryIndexResponse
2736
+ */
2737
+ 'phone_number': string | null;
2738
+ /**
2739
+ *
2740
+ * @type {string}
2741
+ * @memberof RegisteredVehicleHistoryIndexResponse
2742
+ */
2743
+ 'email': string | null;
2744
+ /**
2745
+ *
2746
+ * @type {string}
2747
+ * @memberof RegisteredVehicleHistoryIndexResponse
2748
+ */
2749
+ 'plate_province': string | null;
2750
+ /**
2751
+ *
2752
+ * @type {string}
2753
+ * @memberof RegisteredVehicleHistoryIndexResponse
2754
+ */
2755
+ 'plate_no': string;
2756
+ /**
2757
+ *
2758
+ * @type {string}
2759
+ * @memberof RegisteredVehicleHistoryIndexResponse
2760
+ */
2761
+ 'account_id': string;
2762
+ /**
2763
+ *
2764
+ * @type {string}
2765
+ * @memberof RegisteredVehicleHistoryIndexResponse
2766
+ */
2767
+ 'id': string;
2768
+ }
2720
2769
  /**
2721
2770
  *
2722
2771
  * @export
@@ -2725,10 +2774,10 @@ export type RedeemType = typeof RedeemType[keyof typeof RedeemType];
2725
2774
  export interface RegisteredVehicleIndexResponse {
2726
2775
  /**
2727
2776
  *
2728
- * @type {string}
2777
+ * @type {RegisteredVehicleIndexResponseCreatedAt}
2729
2778
  * @memberof RegisteredVehicleIndexResponse
2730
2779
  */
2731
- 'created_at'?: string;
2780
+ 'created_at'?: RegisteredVehicleIndexResponseCreatedAt;
2732
2781
  /**
2733
2782
  *
2734
2783
  * @type {boolean}
@@ -2796,6 +2845,13 @@ export interface RegisteredVehicleIndexResponse {
2796
2845
  */
2797
2846
  'id': string;
2798
2847
  }
2848
+ /**
2849
+ *
2850
+ * @export
2851
+ * @interface RegisteredVehicleIndexResponseCreatedAt
2852
+ */
2853
+ export interface RegisteredVehicleIndexResponseCreatedAt {
2854
+ }
2799
2855
  /**
2800
2856
  *
2801
2857
  * @export
@@ -2965,6 +3021,25 @@ export interface ResponseDataGetParkingDetailsIndexResponseArray {
2965
3021
  */
2966
3022
  'pagination'?: Pagination;
2967
3023
  }
3024
+ /**
3025
+ *
3026
+ * @export
3027
+ * @interface ResponseDataRegisteredVehicleHistoryIndexResponseArray
3028
+ */
3029
+ export interface ResponseDataRegisteredVehicleHistoryIndexResponseArray {
3030
+ /**
3031
+ *
3032
+ * @type {Array<RegisteredVehicleHistoryIndexResponse>}
3033
+ * @memberof ResponseDataRegisteredVehicleHistoryIndexResponseArray
3034
+ */
3035
+ 'data': Array<RegisteredVehicleHistoryIndexResponse>;
3036
+ /**
3037
+ *
3038
+ * @type {Pagination}
3039
+ * @memberof ResponseDataRegisteredVehicleHistoryIndexResponseArray
3040
+ */
3041
+ 'pagination'?: Pagination;
3042
+ }
2968
3043
  /**
2969
3044
  *
2970
3045
  * @export
@@ -3644,21 +3719,18 @@ export declare const DefaultApiAxiosParamCreator: (configuration?: Configuration
3644
3719
  * @param {string} [updatedAt]
3645
3720
  * @param {string} [propertyName]
3646
3721
  * @param {string} [propertyId]
3647
- * @param {boolean} [ignoreStore]
3648
- * @param {boolean} [ocrVerified]
3649
- * @param {boolean} [convertDate]
3650
3722
  * @param {string} [sortKey]
3651
3723
  * @param {string} [sortDirection]
3652
3724
  * @param {boolean} [hasTaxId]
3653
3725
  * @param {boolean} [receiptAddressInObk]
3654
3726
  * @param {boolean} [isActive]
3655
- * @param {boolean} [ignoreStore2]
3656
- * @param {boolean} [ocrVerified2]
3657
- * @param {boolean} [convertDate2]
3727
+ * @param {boolean} [ignoreStore]
3728
+ * @param {boolean} [ocrVerified]
3729
+ * @param {boolean} [convertDate]
3658
3730
  * @param {*} [options] Override http request option.
3659
3731
  * @throws {RequiredError}
3660
3732
  */
3661
- 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>;
3733
+ 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>;
3662
3734
  /**
3663
3735
  *
3664
3736
  * @param {string} id
@@ -4090,21 +4162,18 @@ export declare const DefaultApiFp: (configuration?: Configuration) => {
4090
4162
  * @param {string} [updatedAt]
4091
4163
  * @param {string} [propertyName]
4092
4164
  * @param {string} [propertyId]
4093
- * @param {boolean} [ignoreStore]
4094
- * @param {boolean} [ocrVerified]
4095
- * @param {boolean} [convertDate]
4096
4165
  * @param {string} [sortKey]
4097
4166
  * @param {string} [sortDirection]
4098
4167
  * @param {boolean} [hasTaxId]
4099
4168
  * @param {boolean} [receiptAddressInObk]
4100
4169
  * @param {boolean} [isActive]
4101
- * @param {boolean} [ignoreStore2]
4102
- * @param {boolean} [ocrVerified2]
4103
- * @param {boolean} [convertDate2]
4170
+ * @param {boolean} [ignoreStore]
4171
+ * @param {boolean} [ocrVerified]
4172
+ * @param {boolean} [convertDate]
4104
4173
  * @param {*} [options] Override http request option.
4105
4174
  * @throws {RequiredError}
4106
4175
  */
4107
- 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>>>;
4176
+ 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>>>;
4108
4177
  /**
4109
4178
  *
4110
4179
  * @param {string} id
@@ -4323,7 +4392,7 @@ export declare const DefaultApiFp: (configuration?: Configuration) => {
4323
4392
  * @param {*} [options] Override http request option.
4324
4393
  * @throws {RequiredError}
4325
4394
  */
4326
- registeredVehiclesHistoryIndex(orderBy?: string, orderDirection?: string, pageNumber?: number, pageSize?: number, filterBy?: string, filterKey?: string, startDate?: string, endDate?: string, isVip?: boolean, isExport?: boolean, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ResponseDataRegisteredVehicleIndexResponseArray>>;
4395
+ registeredVehiclesHistoryIndex(orderBy?: string, orderDirection?: string, pageNumber?: number, pageSize?: number, filterBy?: string, filterKey?: string, startDate?: string, endDate?: string, isVip?: boolean, isExport?: boolean, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ResponseDataRegisteredVehicleHistoryIndexResponseArray>>;
4327
4396
  /**
4328
4397
  *
4329
4398
  * @param {string} [orderBy]
@@ -4536,21 +4605,18 @@ export declare const DefaultApiFactory: (configuration?: Configuration, basePath
4536
4605
  * @param {string} [updatedAt]
4537
4606
  * @param {string} [propertyName]
4538
4607
  * @param {string} [propertyId]
4539
- * @param {boolean} [ignoreStore]
4540
- * @param {boolean} [ocrVerified]
4541
- * @param {boolean} [convertDate]
4542
4608
  * @param {string} [sortKey]
4543
4609
  * @param {string} [sortDirection]
4544
4610
  * @param {boolean} [hasTaxId]
4545
4611
  * @param {boolean} [receiptAddressInObk]
4546
4612
  * @param {boolean} [isActive]
4547
- * @param {boolean} [ignoreStore2]
4548
- * @param {boolean} [ocrVerified2]
4549
- * @param {boolean} [convertDate2]
4613
+ * @param {boolean} [ignoreStore]
4614
+ * @param {boolean} [ocrVerified]
4615
+ * @param {boolean} [convertDate]
4550
4616
  * @param {*} [options] Override http request option.
4551
4617
  * @throws {RequiredError}
4552
4618
  */
4553
- 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>>;
4619
+ 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>>;
4554
4620
  /**
4555
4621
  *
4556
4622
  * @param {string} id
@@ -4769,7 +4835,7 @@ export declare const DefaultApiFactory: (configuration?: Configuration, basePath
4769
4835
  * @param {*} [options] Override http request option.
4770
4836
  * @throws {RequiredError}
4771
4837
  */
4772
- registeredVehiclesHistoryIndex(orderBy?: string, orderDirection?: string, pageNumber?: number, pageSize?: number, filterBy?: string, filterKey?: string, startDate?: string, endDate?: string, isVip?: boolean, isExport?: boolean, options?: any): AxiosPromise<ResponseDataRegisteredVehicleIndexResponseArray>;
4838
+ registeredVehiclesHistoryIndex(orderBy?: string, orderDirection?: string, pageNumber?: number, pageSize?: number, filterBy?: string, filterKey?: string, startDate?: string, endDate?: string, isVip?: boolean, isExport?: boolean, options?: any): AxiosPromise<ResponseDataRegisteredVehicleHistoryIndexResponseArray>;
4773
4839
  /**
4774
4840
  *
4775
4841
  * @param {string} [orderBy]
@@ -4999,22 +5065,19 @@ export declare class DefaultApi extends BaseAPI {
4999
5065
  * @param {string} [updatedAt]
5000
5066
  * @param {string} [propertyName]
5001
5067
  * @param {string} [propertyId]
5002
- * @param {boolean} [ignoreStore]
5003
- * @param {boolean} [ocrVerified]
5004
- * @param {boolean} [convertDate]
5005
5068
  * @param {string} [sortKey]
5006
5069
  * @param {string} [sortDirection]
5007
5070
  * @param {boolean} [hasTaxId]
5008
5071
  * @param {boolean} [receiptAddressInObk]
5009
5072
  * @param {boolean} [isActive]
5010
- * @param {boolean} [ignoreStore2]
5011
- * @param {boolean} [ocrVerified2]
5012
- * @param {boolean} [convertDate2]
5073
+ * @param {boolean} [ignoreStore]
5074
+ * @param {boolean} [ocrVerified]
5075
+ * @param {boolean} [convertDate]
5013
5076
  * @param {*} [options] Override http request option.
5014
5077
  * @throws {RequiredError}
5015
5078
  * @memberof DefaultApi
5016
5079
  */
5017
- 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>>;
5080
+ 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>>;
5018
5081
  /**
5019
5082
  *
5020
5083
  * @param {string} id
@@ -5256,7 +5319,7 @@ export declare class DefaultApi extends BaseAPI {
5256
5319
  * @throws {RequiredError}
5257
5320
  * @memberof DefaultApi
5258
5321
  */
5259
- registeredVehiclesHistoryIndex(orderBy?: string, orderDirection?: string, pageNumber?: number, pageSize?: number, filterBy?: string, filterKey?: string, startDate?: string, endDate?: string, isVip?: boolean, isExport?: boolean, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ResponseDataRegisteredVehicleIndexResponseArray, any>>;
5322
+ registeredVehiclesHistoryIndex(orderBy?: string, orderDirection?: string, pageNumber?: number, pageSize?: number, filterBy?: string, filterKey?: string, startDate?: string, endDate?: string, isVip?: boolean, isExport?: boolean, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ResponseDataRegisteredVehicleHistoryIndexResponseArray, any>>;
5260
5323
  /**
5261
5324
  *
5262
5325
  * @param {string} [orderBy]
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.75",
3
+ "version": "0.0.77",
4
4
  "description": "API interfaces for OB PARKING",
5
5
  "main": "./dist/index.js",
6
6
  "license": "MIT"