ob-parking-sdk 0.0.75 → 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 +46 -63
- package/dist/api/api.d.ts +37 -42
- package/dist/api/api.js +25 -46
- package/package.json +1 -1
package/api/api.ts
CHANGED
|
@@ -588,52 +588,52 @@ export interface ConfigStoreWhitelistQuery {
|
|
|
588
588
|
'property_id'?: string;
|
|
589
589
|
/**
|
|
590
590
|
*
|
|
591
|
-
* @type {
|
|
591
|
+
* @type {string}
|
|
592
592
|
* @memberof ConfigStoreWhitelistQuery
|
|
593
593
|
*/
|
|
594
|
-
'
|
|
594
|
+
'sort_key'?: string;
|
|
595
595
|
/**
|
|
596
596
|
*
|
|
597
|
-
* @type {
|
|
597
|
+
* @type {string}
|
|
598
598
|
* @memberof ConfigStoreWhitelistQuery
|
|
599
599
|
*/
|
|
600
|
-
'
|
|
600
|
+
'sort_direction'?: string;
|
|
601
601
|
/**
|
|
602
602
|
*
|
|
603
603
|
* @type {boolean}
|
|
604
604
|
* @memberof ConfigStoreWhitelistQuery
|
|
605
605
|
*/
|
|
606
|
-
'
|
|
606
|
+
'has_tax_id'?: boolean;
|
|
607
607
|
/**
|
|
608
608
|
*
|
|
609
|
-
* @type {
|
|
609
|
+
* @type {boolean}
|
|
610
610
|
* @memberof ConfigStoreWhitelistQuery
|
|
611
611
|
*/
|
|
612
|
-
'
|
|
612
|
+
'receipt_address_in_obk'?: boolean;
|
|
613
613
|
/**
|
|
614
614
|
*
|
|
615
|
-
* @type {
|
|
615
|
+
* @type {boolean}
|
|
616
616
|
* @memberof ConfigStoreWhitelistQuery
|
|
617
617
|
*/
|
|
618
|
-
'
|
|
618
|
+
'is_active'?: boolean;
|
|
619
619
|
/**
|
|
620
620
|
*
|
|
621
621
|
* @type {boolean}
|
|
622
622
|
* @memberof ConfigStoreWhitelistQuery
|
|
623
623
|
*/
|
|
624
|
-
'
|
|
624
|
+
'ignore_store'?: boolean;
|
|
625
625
|
/**
|
|
626
626
|
*
|
|
627
627
|
* @type {boolean}
|
|
628
628
|
* @memberof ConfigStoreWhitelistQuery
|
|
629
629
|
*/
|
|
630
|
-
'
|
|
630
|
+
'ocr_verified'?: boolean;
|
|
631
631
|
/**
|
|
632
632
|
*
|
|
633
633
|
* @type {boolean}
|
|
634
634
|
* @memberof ConfigStoreWhitelistQuery
|
|
635
635
|
*/
|
|
636
|
-
'
|
|
636
|
+
'convert_date'?: boolean;
|
|
637
637
|
}
|
|
638
638
|
/**
|
|
639
639
|
*
|
|
@@ -2783,10 +2783,10 @@ export type RedeemType = typeof RedeemType[keyof typeof RedeemType];
|
|
|
2783
2783
|
export interface RegisteredVehicleIndexResponse {
|
|
2784
2784
|
/**
|
|
2785
2785
|
*
|
|
2786
|
-
* @type {
|
|
2786
|
+
* @type {RegisteredVehicleIndexResponseCreatedAt}
|
|
2787
2787
|
* @memberof RegisteredVehicleIndexResponse
|
|
2788
2788
|
*/
|
|
2789
|
-
'created_at'?:
|
|
2789
|
+
'created_at'?: RegisteredVehicleIndexResponseCreatedAt;
|
|
2790
2790
|
/**
|
|
2791
2791
|
*
|
|
2792
2792
|
* @type {boolean}
|
|
@@ -2856,6 +2856,13 @@ export interface RegisteredVehicleIndexResponse {
|
|
|
2856
2856
|
}
|
|
2857
2857
|
|
|
2858
2858
|
|
|
2859
|
+
/**
|
|
2860
|
+
*
|
|
2861
|
+
* @export
|
|
2862
|
+
* @interface RegisteredVehicleIndexResponseCreatedAt
|
|
2863
|
+
*/
|
|
2864
|
+
export interface RegisteredVehicleIndexResponseCreatedAt {
|
|
2865
|
+
}
|
|
2859
2866
|
/**
|
|
2860
2867
|
*
|
|
2861
2868
|
* @export
|
|
@@ -4125,21 +4132,18 @@ export const DefaultApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
4125
4132
|
* @param {string} [updatedAt]
|
|
4126
4133
|
* @param {string} [propertyName]
|
|
4127
4134
|
* @param {string} [propertyId]
|
|
4128
|
-
* @param {boolean} [ignoreStore]
|
|
4129
|
-
* @param {boolean} [ocrVerified]
|
|
4130
|
-
* @param {boolean} [convertDate]
|
|
4131
4135
|
* @param {string} [sortKey]
|
|
4132
4136
|
* @param {string} [sortDirection]
|
|
4133
4137
|
* @param {boolean} [hasTaxId]
|
|
4134
4138
|
* @param {boolean} [receiptAddressInObk]
|
|
4135
4139
|
* @param {boolean} [isActive]
|
|
4136
|
-
* @param {boolean} [
|
|
4137
|
-
* @param {boolean} [
|
|
4138
|
-
* @param {boolean} [
|
|
4140
|
+
* @param {boolean} [ignoreStore]
|
|
4141
|
+
* @param {boolean} [ocrVerified]
|
|
4142
|
+
* @param {boolean} [convertDate]
|
|
4139
4143
|
* @param {*} [options] Override http request option.
|
|
4140
4144
|
* @throws {RequiredError}
|
|
4141
4145
|
*/
|
|
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,
|
|
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> => {
|
|
4143
4147
|
const localVarPath = `/config/store/whitelist`;
|
|
4144
4148
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
4145
4149
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -4196,18 +4200,6 @@ export const DefaultApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
4196
4200
|
localVarQueryParameter['property_id'] = propertyId;
|
|
4197
4201
|
}
|
|
4198
4202
|
|
|
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
4203
|
if (sortKey !== undefined) {
|
|
4212
4204
|
localVarQueryParameter['sort_key'] = sortKey;
|
|
4213
4205
|
}
|
|
@@ -4228,16 +4220,16 @@ export const DefaultApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
4228
4220
|
localVarQueryParameter['is_active'] = isActive;
|
|
4229
4221
|
}
|
|
4230
4222
|
|
|
4231
|
-
if (
|
|
4232
|
-
localVarQueryParameter['ignore_store'] =
|
|
4223
|
+
if (ignoreStore !== undefined) {
|
|
4224
|
+
localVarQueryParameter['ignore_store'] = ignoreStore;
|
|
4233
4225
|
}
|
|
4234
4226
|
|
|
4235
|
-
if (
|
|
4236
|
-
localVarQueryParameter['ocr_verified'] =
|
|
4227
|
+
if (ocrVerified !== undefined) {
|
|
4228
|
+
localVarQueryParameter['ocr_verified'] = ocrVerified;
|
|
4237
4229
|
}
|
|
4238
4230
|
|
|
4239
|
-
if (
|
|
4240
|
-
localVarQueryParameter['convert_date'] =
|
|
4231
|
+
if (convertDate !== undefined) {
|
|
4232
|
+
localVarQueryParameter['convert_date'] = convertDate;
|
|
4241
4233
|
}
|
|
4242
4234
|
|
|
4243
4235
|
|
|
@@ -5934,22 +5926,19 @@ export const DefaultApiFp = function(configuration?: Configuration) {
|
|
|
5934
5926
|
* @param {string} [updatedAt]
|
|
5935
5927
|
* @param {string} [propertyName]
|
|
5936
5928
|
* @param {string} [propertyId]
|
|
5937
|
-
* @param {boolean} [ignoreStore]
|
|
5938
|
-
* @param {boolean} [ocrVerified]
|
|
5939
|
-
* @param {boolean} [convertDate]
|
|
5940
5929
|
* @param {string} [sortKey]
|
|
5941
5930
|
* @param {string} [sortDirection]
|
|
5942
5931
|
* @param {boolean} [hasTaxId]
|
|
5943
5932
|
* @param {boolean} [receiptAddressInObk]
|
|
5944
5933
|
* @param {boolean} [isActive]
|
|
5945
|
-
* @param {boolean} [
|
|
5946
|
-
* @param {boolean} [
|
|
5947
|
-
* @param {boolean} [
|
|
5934
|
+
* @param {boolean} [ignoreStore]
|
|
5935
|
+
* @param {boolean} [ocrVerified]
|
|
5936
|
+
* @param {boolean} [convertDate]
|
|
5948
5937
|
* @param {*} [options] Override http request option.
|
|
5949
5938
|
* @throws {RequiredError}
|
|
5950
5939
|
*/
|
|
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,
|
|
5952
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.configStoreWhitelistIndex(taxId, storeName, shopName, companyName, unitNo, address, building, createdAt, updatedAt, propertyName, propertyId,
|
|
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);
|
|
5953
5942
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
5954
5943
|
},
|
|
5955
5944
|
/**
|
|
@@ -6519,22 +6508,19 @@ export const DefaultApiFactory = function (configuration?: Configuration, basePa
|
|
|
6519
6508
|
* @param {string} [updatedAt]
|
|
6520
6509
|
* @param {string} [propertyName]
|
|
6521
6510
|
* @param {string} [propertyId]
|
|
6522
|
-
* @param {boolean} [ignoreStore]
|
|
6523
|
-
* @param {boolean} [ocrVerified]
|
|
6524
|
-
* @param {boolean} [convertDate]
|
|
6525
6511
|
* @param {string} [sortKey]
|
|
6526
6512
|
* @param {string} [sortDirection]
|
|
6527
6513
|
* @param {boolean} [hasTaxId]
|
|
6528
6514
|
* @param {boolean} [receiptAddressInObk]
|
|
6529
6515
|
* @param {boolean} [isActive]
|
|
6530
|
-
* @param {boolean} [
|
|
6531
|
-
* @param {boolean} [
|
|
6532
|
-
* @param {boolean} [
|
|
6516
|
+
* @param {boolean} [ignoreStore]
|
|
6517
|
+
* @param {boolean} [ocrVerified]
|
|
6518
|
+
* @param {boolean} [convertDate]
|
|
6533
6519
|
* @param {*} [options] Override http request option.
|
|
6534
6520
|
* @throws {RequiredError}
|
|
6535
6521
|
*/
|
|
6536
|
-
configStoreWhitelistIndex(taxId?: string, storeName?: string, shopName?: string, companyName?: string, unitNo?: string, address?: string, building?: string, createdAt?: string, updatedAt?: string, propertyName?: string, propertyId?: string,
|
|
6537
|
-
return localVarFp.configStoreWhitelistIndex(taxId, storeName, shopName, companyName, unitNo, address, building, createdAt, updatedAt, propertyName, propertyId,
|
|
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));
|
|
6538
6524
|
},
|
|
6539
6525
|
/**
|
|
6540
6526
|
*
|
|
@@ -7099,23 +7085,20 @@ export class DefaultApi extends BaseAPI {
|
|
|
7099
7085
|
* @param {string} [updatedAt]
|
|
7100
7086
|
* @param {string} [propertyName]
|
|
7101
7087
|
* @param {string} [propertyId]
|
|
7102
|
-
* @param {boolean} [ignoreStore]
|
|
7103
|
-
* @param {boolean} [ocrVerified]
|
|
7104
|
-
* @param {boolean} [convertDate]
|
|
7105
7088
|
* @param {string} [sortKey]
|
|
7106
7089
|
* @param {string} [sortDirection]
|
|
7107
7090
|
* @param {boolean} [hasTaxId]
|
|
7108
7091
|
* @param {boolean} [receiptAddressInObk]
|
|
7109
7092
|
* @param {boolean} [isActive]
|
|
7110
|
-
* @param {boolean} [
|
|
7111
|
-
* @param {boolean} [
|
|
7112
|
-
* @param {boolean} [
|
|
7093
|
+
* @param {boolean} [ignoreStore]
|
|
7094
|
+
* @param {boolean} [ocrVerified]
|
|
7095
|
+
* @param {boolean} [convertDate]
|
|
7113
7096
|
* @param {*} [options] Override http request option.
|
|
7114
7097
|
* @throws {RequiredError}
|
|
7115
7098
|
* @memberof DefaultApi
|
|
7116
7099
|
*/
|
|
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,
|
|
7118
|
-
return DefaultApiFp(this.configuration).configStoreWhitelistIndex(taxId, storeName, shopName, companyName, unitNo, address, building, createdAt, updatedAt, propertyName, propertyId,
|
|
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));
|
|
7119
7102
|
}
|
|
7120
7103
|
|
|
7121
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 {
|
|
568
|
+
* @type {string}
|
|
569
569
|
* @memberof ConfigStoreWhitelistQuery
|
|
570
570
|
*/
|
|
571
|
-
'
|
|
571
|
+
'sort_key'?: string;
|
|
572
572
|
/**
|
|
573
573
|
*
|
|
574
|
-
* @type {
|
|
574
|
+
* @type {string}
|
|
575
575
|
* @memberof ConfigStoreWhitelistQuery
|
|
576
576
|
*/
|
|
577
|
-
'
|
|
577
|
+
'sort_direction'?: string;
|
|
578
578
|
/**
|
|
579
579
|
*
|
|
580
580
|
* @type {boolean}
|
|
581
581
|
* @memberof ConfigStoreWhitelistQuery
|
|
582
582
|
*/
|
|
583
|
-
'
|
|
583
|
+
'has_tax_id'?: boolean;
|
|
584
584
|
/**
|
|
585
585
|
*
|
|
586
|
-
* @type {
|
|
586
|
+
* @type {boolean}
|
|
587
587
|
* @memberof ConfigStoreWhitelistQuery
|
|
588
588
|
*/
|
|
589
|
-
'
|
|
589
|
+
'receipt_address_in_obk'?: boolean;
|
|
590
590
|
/**
|
|
591
591
|
*
|
|
592
|
-
* @type {
|
|
592
|
+
* @type {boolean}
|
|
593
593
|
* @memberof ConfigStoreWhitelistQuery
|
|
594
594
|
*/
|
|
595
|
-
'
|
|
595
|
+
'is_active'?: boolean;
|
|
596
596
|
/**
|
|
597
597
|
*
|
|
598
598
|
* @type {boolean}
|
|
599
599
|
* @memberof ConfigStoreWhitelistQuery
|
|
600
600
|
*/
|
|
601
|
-
'
|
|
601
|
+
'ignore_store'?: boolean;
|
|
602
602
|
/**
|
|
603
603
|
*
|
|
604
604
|
* @type {boolean}
|
|
605
605
|
* @memberof ConfigStoreWhitelistQuery
|
|
606
606
|
*/
|
|
607
|
-
'
|
|
607
|
+
'ocr_verified'?: boolean;
|
|
608
608
|
/**
|
|
609
609
|
*
|
|
610
610
|
* @type {boolean}
|
|
611
611
|
* @memberof ConfigStoreWhitelistQuery
|
|
612
612
|
*/
|
|
613
|
-
'
|
|
613
|
+
'convert_date'?: boolean;
|
|
614
614
|
}
|
|
615
615
|
/**
|
|
616
616
|
*
|
|
@@ -2725,10 +2725,10 @@ export type RedeemType = typeof RedeemType[keyof typeof RedeemType];
|
|
|
2725
2725
|
export interface RegisteredVehicleIndexResponse {
|
|
2726
2726
|
/**
|
|
2727
2727
|
*
|
|
2728
|
-
* @type {
|
|
2728
|
+
* @type {RegisteredVehicleIndexResponseCreatedAt}
|
|
2729
2729
|
* @memberof RegisteredVehicleIndexResponse
|
|
2730
2730
|
*/
|
|
2731
|
-
'created_at'?:
|
|
2731
|
+
'created_at'?: RegisteredVehicleIndexResponseCreatedAt;
|
|
2732
2732
|
/**
|
|
2733
2733
|
*
|
|
2734
2734
|
* @type {boolean}
|
|
@@ -2796,6 +2796,13 @@ export interface RegisteredVehicleIndexResponse {
|
|
|
2796
2796
|
*/
|
|
2797
2797
|
'id': string;
|
|
2798
2798
|
}
|
|
2799
|
+
/**
|
|
2800
|
+
*
|
|
2801
|
+
* @export
|
|
2802
|
+
* @interface RegisteredVehicleIndexResponseCreatedAt
|
|
2803
|
+
*/
|
|
2804
|
+
export interface RegisteredVehicleIndexResponseCreatedAt {
|
|
2805
|
+
}
|
|
2799
2806
|
/**
|
|
2800
2807
|
*
|
|
2801
2808
|
* @export
|
|
@@ -3644,21 +3651,18 @@ export declare const DefaultApiAxiosParamCreator: (configuration?: Configuration
|
|
|
3644
3651
|
* @param {string} [updatedAt]
|
|
3645
3652
|
* @param {string} [propertyName]
|
|
3646
3653
|
* @param {string} [propertyId]
|
|
3647
|
-
* @param {boolean} [ignoreStore]
|
|
3648
|
-
* @param {boolean} [ocrVerified]
|
|
3649
|
-
* @param {boolean} [convertDate]
|
|
3650
3654
|
* @param {string} [sortKey]
|
|
3651
3655
|
* @param {string} [sortDirection]
|
|
3652
3656
|
* @param {boolean} [hasTaxId]
|
|
3653
3657
|
* @param {boolean} [receiptAddressInObk]
|
|
3654
3658
|
* @param {boolean} [isActive]
|
|
3655
|
-
* @param {boolean} [
|
|
3656
|
-
* @param {boolean} [
|
|
3657
|
-
* @param {boolean} [
|
|
3659
|
+
* @param {boolean} [ignoreStore]
|
|
3660
|
+
* @param {boolean} [ocrVerified]
|
|
3661
|
+
* @param {boolean} [convertDate]
|
|
3658
3662
|
* @param {*} [options] Override http request option.
|
|
3659
3663
|
* @throws {RequiredError}
|
|
3660
3664
|
*/
|
|
3661
|
-
configStoreWhitelistIndex: (taxId?: string, storeName?: string, shopName?: string, companyName?: string, unitNo?: string, address?: string, building?: string, createdAt?: string, updatedAt?: string, propertyName?: string, propertyId?: string,
|
|
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>;
|
|
3662
3666
|
/**
|
|
3663
3667
|
*
|
|
3664
3668
|
* @param {string} id
|
|
@@ -4090,21 +4094,18 @@ export declare const DefaultApiFp: (configuration?: Configuration) => {
|
|
|
4090
4094
|
* @param {string} [updatedAt]
|
|
4091
4095
|
* @param {string} [propertyName]
|
|
4092
4096
|
* @param {string} [propertyId]
|
|
4093
|
-
* @param {boolean} [ignoreStore]
|
|
4094
|
-
* @param {boolean} [ocrVerified]
|
|
4095
|
-
* @param {boolean} [convertDate]
|
|
4096
4097
|
* @param {string} [sortKey]
|
|
4097
4098
|
* @param {string} [sortDirection]
|
|
4098
4099
|
* @param {boolean} [hasTaxId]
|
|
4099
4100
|
* @param {boolean} [receiptAddressInObk]
|
|
4100
4101
|
* @param {boolean} [isActive]
|
|
4101
|
-
* @param {boolean} [
|
|
4102
|
-
* @param {boolean} [
|
|
4103
|
-
* @param {boolean} [
|
|
4102
|
+
* @param {boolean} [ignoreStore]
|
|
4103
|
+
* @param {boolean} [ocrVerified]
|
|
4104
|
+
* @param {boolean} [convertDate]
|
|
4104
4105
|
* @param {*} [options] Override http request option.
|
|
4105
4106
|
* @throws {RequiredError}
|
|
4106
4107
|
*/
|
|
4107
|
-
configStoreWhitelistIndex(taxId?: string, storeName?: string, shopName?: string, companyName?: string, unitNo?: string, address?: string, building?: string, createdAt?: string, updatedAt?: string, propertyName?: string, propertyId?: string,
|
|
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>>>;
|
|
4108
4109
|
/**
|
|
4109
4110
|
*
|
|
4110
4111
|
* @param {string} id
|
|
@@ -4536,21 +4537,18 @@ export declare const DefaultApiFactory: (configuration?: Configuration, basePath
|
|
|
4536
4537
|
* @param {string} [updatedAt]
|
|
4537
4538
|
* @param {string} [propertyName]
|
|
4538
4539
|
* @param {string} [propertyId]
|
|
4539
|
-
* @param {boolean} [ignoreStore]
|
|
4540
|
-
* @param {boolean} [ocrVerified]
|
|
4541
|
-
* @param {boolean} [convertDate]
|
|
4542
4540
|
* @param {string} [sortKey]
|
|
4543
4541
|
* @param {string} [sortDirection]
|
|
4544
4542
|
* @param {boolean} [hasTaxId]
|
|
4545
4543
|
* @param {boolean} [receiptAddressInObk]
|
|
4546
4544
|
* @param {boolean} [isActive]
|
|
4547
|
-
* @param {boolean} [
|
|
4548
|
-
* @param {boolean} [
|
|
4549
|
-
* @param {boolean} [
|
|
4545
|
+
* @param {boolean} [ignoreStore]
|
|
4546
|
+
* @param {boolean} [ocrVerified]
|
|
4547
|
+
* @param {boolean} [convertDate]
|
|
4550
4548
|
* @param {*} [options] Override http request option.
|
|
4551
4549
|
* @throws {RequiredError}
|
|
4552
4550
|
*/
|
|
4553
|
-
configStoreWhitelistIndex(taxId?: string, storeName?: string, shopName?: string, companyName?: string, unitNo?: string, address?: string, building?: string, createdAt?: string, updatedAt?: string, propertyName?: string, propertyId?: string,
|
|
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>>;
|
|
4554
4552
|
/**
|
|
4555
4553
|
*
|
|
4556
4554
|
* @param {string} id
|
|
@@ -4999,22 +4997,19 @@ export declare class DefaultApi extends BaseAPI {
|
|
|
4999
4997
|
* @param {string} [updatedAt]
|
|
5000
4998
|
* @param {string} [propertyName]
|
|
5001
4999
|
* @param {string} [propertyId]
|
|
5002
|
-
* @param {boolean} [ignoreStore]
|
|
5003
|
-
* @param {boolean} [ocrVerified]
|
|
5004
|
-
* @param {boolean} [convertDate]
|
|
5005
5000
|
* @param {string} [sortKey]
|
|
5006
5001
|
* @param {string} [sortDirection]
|
|
5007
5002
|
* @param {boolean} [hasTaxId]
|
|
5008
5003
|
* @param {boolean} [receiptAddressInObk]
|
|
5009
5004
|
* @param {boolean} [isActive]
|
|
5010
|
-
* @param {boolean} [
|
|
5011
|
-
* @param {boolean} [
|
|
5012
|
-
* @param {boolean} [
|
|
5005
|
+
* @param {boolean} [ignoreStore]
|
|
5006
|
+
* @param {boolean} [ocrVerified]
|
|
5007
|
+
* @param {boolean} [convertDate]
|
|
5013
5008
|
* @param {*} [options] Override http request option.
|
|
5014
5009
|
* @throws {RequiredError}
|
|
5015
5010
|
* @memberof DefaultApi
|
|
5016
5011
|
*/
|
|
5017
|
-
configStoreWhitelistIndex(taxId?: string, storeName?: string, shopName?: string, companyName?: string, unitNo?: string, address?: string, building?: string, createdAt?: string, updatedAt?: string, propertyName?: string, propertyId?: string,
|
|
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>>;
|
|
5018
5013
|
/**
|
|
5019
5014
|
*
|
|
5020
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} [
|
|
568
|
-
* @param {boolean} [
|
|
569
|
-
* @param {boolean} [
|
|
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,
|
|
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 (
|
|
642
|
-
localVarQueryParameter['ignore_store'] =
|
|
629
|
+
if (ignoreStore !== undefined) {
|
|
630
|
+
localVarQueryParameter['ignore_store'] = ignoreStore;
|
|
643
631
|
}
|
|
644
|
-
if (
|
|
645
|
-
localVarQueryParameter['ocr_verified'] =
|
|
632
|
+
if (ocrVerified !== undefined) {
|
|
633
|
+
localVarQueryParameter['ocr_verified'] = ocrVerified;
|
|
646
634
|
}
|
|
647
|
-
if (
|
|
648
|
-
localVarQueryParameter['convert_date'] =
|
|
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} [
|
|
2121
|
-
* @param {boolean} [
|
|
2122
|
-
* @param {boolean} [
|
|
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,
|
|
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,
|
|
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} [
|
|
2776
|
-
* @param {boolean} [
|
|
2777
|
-
* @param {boolean} [
|
|
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,
|
|
2782
|
-
return localVarFp.configStoreWhitelistIndex(taxId, storeName, shopName, companyName, unitNo, address, building, createdAt, updatedAt, propertyName, propertyId,
|
|
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} [
|
|
3341
|
-
* @param {boolean} [
|
|
3342
|
-
* @param {boolean} [
|
|
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,
|
|
3348
|
-
return (0, exports.DefaultApiFp)(this.configuration).configStoreWhitelistIndex(taxId, storeName, shopName, companyName, unitNo, address, building, createdAt, updatedAt, propertyName, propertyId,
|
|
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
|
*
|