ob-parking-sdk 0.0.6 → 0.0.8

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.
Files changed (4) hide show
  1. package/api/api.ts +1846 -329
  2. package/dist/api/api.d.ts +1042 -208
  3. package/dist/api/api.js +1411 -242
  4. package/package.json +1 -1
package/api/api.ts CHANGED
@@ -23,6 +23,73 @@ import type { RequestArgs } from './base';
23
23
  // @ts-ignore
24
24
  import { BASE_PATH, COLLECTION_FORMATS, BaseAPI, RequiredError } from './base';
25
25
 
26
+ /**
27
+ *
28
+ * @export
29
+ * @interface AddConfigStoreWhitelist
30
+ */
31
+ export interface AddConfigStoreWhitelist {
32
+ /**
33
+ *
34
+ * @type {string}
35
+ * @memberof AddConfigStoreWhitelist
36
+ */
37
+ 'tax_id'?: string;
38
+ /**
39
+ *
40
+ * @type {string}
41
+ * @memberof AddConfigStoreWhitelist
42
+ */
43
+ 'store_name': string;
44
+ /**
45
+ *
46
+ * @type {string}
47
+ * @memberof AddConfigStoreWhitelist
48
+ */
49
+ 'company_name': string;
50
+ /**
51
+ *
52
+ * @type {string}
53
+ * @memberof AddConfigStoreWhitelist
54
+ */
55
+ 'property_id': string;
56
+ /**
57
+ *
58
+ * @type {string}
59
+ * @memberof AddConfigStoreWhitelist
60
+ */
61
+ 'unit_no'?: string;
62
+ /**
63
+ *
64
+ * @type {string}
65
+ * @memberof AddConfigStoreWhitelist
66
+ */
67
+ 'address'?: string;
68
+ /**
69
+ *
70
+ * @type {string}
71
+ * @memberof AddConfigStoreWhitelist
72
+ */
73
+ 'building'?: string;
74
+ /**
75
+ *
76
+ * @type {boolean}
77
+ * @memberof AddConfigStoreWhitelist
78
+ */
79
+ 'has_tax_id': boolean;
80
+ /**
81
+ *
82
+ * @type {boolean}
83
+ * @memberof AddConfigStoreWhitelist
84
+ */
85
+ 'receipt_address_in_obk': boolean;
86
+ /**
87
+ *
88
+ * @type {string}
89
+ * @memberof AddConfigStoreWhitelist
90
+ */
91
+ 'updated_by'?: string;
92
+ }
26
93
  /**
27
94
  *
28
95
  * @export
@@ -74,76 +141,201 @@ export type AddParkingTicketType = typeof AddParkingTicketType[keyof typeof AddP
74
141
  /**
75
142
  *
76
143
  * @export
77
- * @interface CreateReceiptBody
144
+ * @interface ConfigDocsTypeBody
78
145
  */
79
- export interface CreateReceiptBody {
146
+ export interface ConfigDocsTypeBody {
80
147
  /**
81
148
  *
82
149
  * @type {string}
83
- * @memberof CreateReceiptBody
150
+ * @memberof ConfigDocsTypeBody
84
151
  */
85
- 'parkingDetailId': string;
152
+ 'type': string;
86
153
  /**
87
154
  *
88
155
  * @type {string}
89
- * @memberof CreateReceiptBody
156
+ * @memberof ConfigDocsTypeBody
90
157
  */
91
- 'imageUrl': string;
158
+ 'keyword': string;
159
+ }
160
+ /**
161
+ *
162
+ * @export
163
+ * @interface ConfigDocsTypeResponse
164
+ */
165
+ export interface ConfigDocsTypeResponse {
166
+ /**
167
+ *
168
+ * @type {string}
169
+ * @memberof ConfigDocsTypeResponse
170
+ */
171
+ 'type': string;
92
172
  /**
93
173
  *
94
174
  * @type {string}
95
- * @memberof CreateReceiptBody
175
+ * @memberof ConfigDocsTypeResponse
96
176
  */
97
- 'email'?: string;
177
+ 'keyword': string;
98
178
  /**
99
179
  *
100
180
  * @type {string}
101
- * @memberof CreateReceiptBody
181
+ * @memberof ConfigDocsTypeResponse
102
182
  */
103
- 'hashed_receipt': string;
183
+ 'id': string;
104
184
  }
105
185
  /**
106
186
  *
107
187
  * @export
108
- * @interface GetParkingDetaiQuery
188
+ * @interface ConfigMallAddessBody
109
189
  */
110
- export interface GetParkingDetaiQuery {
190
+ export interface ConfigMallAddessBody {
111
191
  /**
112
192
  *
113
193
  * @type {string}
114
- * @memberof GetParkingDetaiQuery
194
+ * @memberof ConfigMallAddessBody
115
195
  */
116
- 'order_by'?: string;
196
+ 'address': string;
197
+ }
198
+ /**
199
+ *
200
+ * @export
201
+ * @interface ConfigMallAddressResponse
202
+ */
203
+ export interface ConfigMallAddressResponse {
117
204
  /**
118
205
  *
119
206
  * @type {string}
120
- * @memberof GetParkingDetaiQuery
207
+ * @memberof ConfigMallAddressResponse
121
208
  */
122
- 'order_direction'?: string;
209
+ 'address': string;
123
210
  /**
124
211
  *
125
- * @type {number}
126
- * @memberof GetParkingDetaiQuery
212
+ * @type {string}
213
+ * @memberof ConfigMallAddressResponse
127
214
  */
128
- 'page_number'?: number;
215
+ 'id': string;
216
+ }
217
+ /**
218
+ *
219
+ * @export
220
+ * @interface ConfigMallNameBody
221
+ */
222
+ export interface ConfigMallNameBody {
129
223
  /**
130
224
  *
131
- * @type {number}
132
- * @memberof GetParkingDetaiQuery
225
+ * @type {string}
226
+ * @memberof ConfigMallNameBody
133
227
  */
134
- 'page_size'?: number;
228
+ 'name': string;
229
+ }
230
+ /**
231
+ *
232
+ * @export
233
+ * @interface ConfigMallNameResponse
234
+ */
235
+ export interface ConfigMallNameResponse {
135
236
  /**
136
237
  *
137
238
  * @type {string}
138
- * @memberof GetParkingDetaiQuery
239
+ * @memberof ConfigMallNameResponse
139
240
  */
140
- 'filter_by'?: string;
241
+ 'name': string;
141
242
  /**
142
243
  *
143
244
  * @type {string}
144
- * @memberof GetParkingDetaiQuery
245
+ * @memberof ConfigMallNameResponse
145
246
  */
146
- 'filter_key'?: string;
247
+ 'id': string;
248
+ }
249
+ /**
250
+ *
251
+ * @export
252
+ * @interface ConfigStoreWhitelistQuery
253
+ */
254
+ export interface ConfigStoreWhitelistQuery {
255
+ /**
256
+ *
257
+ * @type {string}
258
+ * @memberof ConfigStoreWhitelistQuery
259
+ */
260
+ 'id'?: string;
261
+ /**
262
+ *
263
+ * @type {string}
264
+ * @memberof ConfigStoreWhitelistQuery
265
+ */
266
+ 'tax_id'?: string;
267
+ /**
268
+ *
269
+ * @type {string}
270
+ * @memberof ConfigStoreWhitelistQuery
271
+ */
272
+ 'store_name'?: string;
273
+ /**
274
+ *
275
+ * @type {string}
276
+ * @memberof ConfigStoreWhitelistQuery
277
+ */
278
+ 'company_name'?: string;
279
+ /**
280
+ *
281
+ * @type {string}
282
+ * @memberof ConfigStoreWhitelistQuery
283
+ */
284
+ 'property_name'?: string;
285
+ /**
286
+ *
287
+ * @type {string}
288
+ * @memberof ConfigStoreWhitelistQuery
289
+ */
290
+ 'unit_no'?: string;
291
+ /**
292
+ *
293
+ * @type {string}
294
+ * @memberof ConfigStoreWhitelistQuery
295
+ */
296
+ 'address'?: string;
297
+ /**
298
+ *
299
+ * @type {string}
300
+ * @memberof ConfigStoreWhitelistQuery
301
+ */
302
+ 'building'?: string;
303
+ /**
304
+ *
305
+ * @type {boolean}
306
+ * @memberof ConfigStoreWhitelistQuery
307
+ */
308
+ 'has_tax_id'?: boolean;
309
+ /**
310
+ *
311
+ * @type {boolean}
312
+ * @memberof ConfigStoreWhitelistQuery
313
+ */
314
+ 'receipt_address_in_obk'?: boolean;
315
+ /**
316
+ *
317
+ * @type {string}
318
+ * @memberof ConfigStoreWhitelistQuery
319
+ */
320
+ 'updated_at'?: string;
321
+ /**
322
+ *
323
+ * @type {string}
324
+ * @memberof ConfigStoreWhitelistQuery
325
+ */
326
+ 'created_at'?: string;
327
+ /**
328
+ *
329
+ * @type {string}
330
+ * @memberof ConfigStoreWhitelistQuery
331
+ */
332
+ 'sort_key'?: string;
333
+ /**
334
+ *
335
+ * @type {string}
336
+ * @memberof ConfigStoreWhitelistQuery
337
+ */
338
+ 'sort_direction'?: string;
147
339
  }
148
340
  /**
149
341
  *
@@ -302,31 +494,6 @@ export interface GetParkingDetailsIndexResponse {
302
494
  }
303
495
 
304
496
 
305
- /**
306
- *
307
- * @export
308
- * @interface Item
309
- */
310
- export interface Item {
311
- /**
312
- *
313
- * @type {string}
314
- * @memberof Item
315
- */
316
- 'description': string;
317
- /**
318
- *
319
- * @type {number}
320
- * @memberof Item
321
- */
322
- 'quantity': number;
323
- /**
324
- *
325
- * @type {string}
326
- * @memberof Item
327
- */
328
- 'total_price': string;
329
- }
330
497
  /**
331
498
  *
332
499
  * @export
@@ -403,6 +570,25 @@ export const ParkingDetailStatus = {
403
570
  export type ParkingDetailStatus = typeof ParkingDetailStatus[keyof typeof ParkingDetailStatus];
404
571
 
405
572
 
573
+ /**
574
+ *
575
+ * @export
576
+ * @interface PropertiesResponse
577
+ */
578
+ export interface PropertiesResponse {
579
+ /**
580
+ *
581
+ * @type {string}
582
+ * @memberof PropertiesResponse
583
+ */
584
+ 'name': string;
585
+ /**
586
+ *
587
+ * @type {string}
588
+ * @memberof PropertiesResponse
589
+ */
590
+ 'id': string;
591
+ }
406
592
  /**
407
593
  *
408
594
  * @export
@@ -474,40 +660,119 @@ export type ReceiptStatus = typeof ReceiptStatus[keyof typeof ReceiptStatus];
474
660
  /**
475
661
  *
476
662
  * @export
477
- * @interface ResponseDataGetParkingDetailResponse
663
+ * @interface ResponseDataGetParkingDetailsIndexResponseArray
478
664
  */
479
- export interface ResponseDataGetParkingDetailResponse {
665
+ export interface ResponseDataGetParkingDetailsIndexResponseArray {
480
666
  /**
481
667
  *
482
- * @type {GetParkingDetailResponse}
483
- * @memberof ResponseDataGetParkingDetailResponse
668
+ * @type {Array<GetParkingDetailsIndexResponse>}
669
+ * @memberof ResponseDataGetParkingDetailsIndexResponseArray
484
670
  */
485
- 'data': GetParkingDetailResponse;
671
+ 'data': Array<GetParkingDetailsIndexResponse>;
486
672
  /**
487
673
  *
488
674
  * @type {Pagination}
489
- * @memberof ResponseDataGetParkingDetailResponse
675
+ * @memberof ResponseDataGetParkingDetailsIndexResponseArray
490
676
  */
491
677
  'pagination'?: Pagination;
492
678
  }
493
679
  /**
494
680
  *
495
681
  * @export
496
- * @interface ResponseDataGetParkingDetailsIndexResponseArray
682
+ * @interface StoreWhitelistResponse
497
683
  */
498
- export interface ResponseDataGetParkingDetailsIndexResponseArray {
684
+ export interface StoreWhitelistResponse {
499
685
  /**
500
686
  *
501
- * @type {Array<GetParkingDetailsIndexResponse>}
502
- * @memberof ResponseDataGetParkingDetailsIndexResponseArray
687
+ * @type {StoreWhitelistResponseProperty}
688
+ * @memberof StoreWhitelistResponse
503
689
  */
504
- 'data': Array<GetParkingDetailsIndexResponse>;
690
+ 'property': StoreWhitelistResponseProperty;
505
691
  /**
506
692
  *
507
- * @type {Pagination}
508
- * @memberof ResponseDataGetParkingDetailsIndexResponseArray
693
+ * @type {boolean}
694
+ * @memberof StoreWhitelistResponse
509
695
  */
510
- 'pagination'?: Pagination;
696
+ 'receipt_address_in_obk': boolean;
697
+ /**
698
+ *
699
+ * @type {boolean}
700
+ * @memberof StoreWhitelistResponse
701
+ */
702
+ 'has_tax_id': boolean;
703
+ /**
704
+ *
705
+ * @type {string}
706
+ * @memberof StoreWhitelistResponse
707
+ */
708
+ 'building': string | null;
709
+ /**
710
+ *
711
+ * @type {string}
712
+ * @memberof StoreWhitelistResponse
713
+ */
714
+ 'address': string | null;
715
+ /**
716
+ *
717
+ * @type {string}
718
+ * @memberof StoreWhitelistResponse
719
+ */
720
+ 'unit_no': string | null;
721
+ /**
722
+ *
723
+ * @type {string}
724
+ * @memberof StoreWhitelistResponse
725
+ */
726
+ 'company_name': string;
727
+ /**
728
+ *
729
+ * @type {string}
730
+ * @memberof StoreWhitelistResponse
731
+ */
732
+ 'store_name': string;
733
+ /**
734
+ *
735
+ * @type {string}
736
+ * @memberof StoreWhitelistResponse
737
+ */
738
+ 'tax_id': string | null;
739
+ /**
740
+ *
741
+ * @type {string}
742
+ * @memberof StoreWhitelistResponse
743
+ */
744
+ 'created_at': string;
745
+ /**
746
+ *
747
+ * @type {string}
748
+ * @memberof StoreWhitelistResponse
749
+ */
750
+ 'updated_at': string;
751
+ /**
752
+ *
753
+ * @type {string}
754
+ * @memberof StoreWhitelistResponse
755
+ */
756
+ 'id': string;
757
+ }
758
+ /**
759
+ *
760
+ * @export
761
+ * @interface StoreWhitelistResponseProperty
762
+ */
763
+ export interface StoreWhitelistResponseProperty {
764
+ /**
765
+ *
766
+ * @type {string}
767
+ * @memberof StoreWhitelistResponseProperty
768
+ */
769
+ 'name': string;
770
+ /**
771
+ *
772
+ * @type {string}
773
+ * @memberof StoreWhitelistResponseProperty
774
+ */
775
+ 'id': string;
511
776
  }
512
777
  /**
513
778
  *
@@ -525,87 +790,81 @@ export interface TestTest200Response {
525
790
  /**
526
791
  *
527
792
  * @export
528
- * @interface UpdateReceiptBody
793
+ * @interface UpdateConfigStoreWhitelist
529
794
  */
530
- export interface UpdateReceiptBody {
795
+ export interface UpdateConfigStoreWhitelist {
531
796
  /**
532
797
  *
533
798
  * @type {string}
534
- * @memberof UpdateReceiptBody
799
+ * @memberof UpdateConfigStoreWhitelist
535
800
  */
536
- 'merchant_name': string;
801
+ 'updated_by'?: string;
537
802
  /**
538
803
  *
539
804
  * @type {string}
540
- * @memberof UpdateReceiptBody
805
+ * @memberof UpdateConfigStoreWhitelist
541
806
  */
542
- 'transaction_date': string;
807
+ 'property_id'?: string;
543
808
  /**
544
809
  *
545
810
  * @type {string}
546
- * @memberof UpdateReceiptBody
547
- */
548
- 'transaction_time': string;
549
- /**
550
- *
551
- * @type {Array<Item>}
552
- * @memberof UpdateReceiptBody
811
+ * @memberof UpdateConfigStoreWhitelist
553
812
  */
554
- 'items': Array<Item>;
813
+ 'sort_direction'?: string;
555
814
  /**
556
815
  *
557
816
  * @type {string}
558
- * @memberof UpdateReceiptBody
817
+ * @memberof UpdateConfigStoreWhitelist
559
818
  */
560
- 'total': string;
819
+ 'sort_key'?: string;
561
820
  /**
562
821
  *
563
- * @type {string}
564
- * @memberof UpdateReceiptBody
822
+ * @type {boolean}
823
+ * @memberof UpdateConfigStoreWhitelist
565
824
  */
566
- 'tax_id': string;
825
+ 'receipt_address_in_obk'?: boolean;
567
826
  /**
568
827
  *
569
- * @type {string}
570
- * @memberof UpdateReceiptBody
828
+ * @type {boolean}
829
+ * @memberof UpdateConfigStoreWhitelist
571
830
  */
572
- 'receipt_no': string;
831
+ 'has_tax_id'?: boolean;
573
832
  /**
574
833
  *
575
834
  * @type {string}
576
- * @memberof UpdateReceiptBody
835
+ * @memberof UpdateConfigStoreWhitelist
577
836
  */
578
- 'address': string;
837
+ 'building'?: string;
579
838
  /**
580
839
  *
581
840
  * @type {string}
582
- * @memberof UpdateReceiptBody
841
+ * @memberof UpdateConfigStoreWhitelist
583
842
  */
584
- 'unit_no': string;
843
+ 'address'?: string;
585
844
  /**
586
845
  *
587
846
  * @type {string}
588
- * @memberof UpdateReceiptBody
847
+ * @memberof UpdateConfigStoreWhitelist
589
848
  */
590
- 'mall_name': string;
849
+ 'unit_no'?: string;
591
850
  /**
592
851
  *
593
852
  * @type {string}
594
- * @memberof UpdateReceiptBody
853
+ * @memberof UpdateConfigStoreWhitelist
595
854
  */
596
- 'hashed_receipt': string;
855
+ 'company_name'?: string;
597
856
  /**
598
857
  *
599
858
  * @type {string}
600
- * @memberof UpdateReceiptBody
859
+ * @memberof UpdateConfigStoreWhitelist
601
860
  */
602
- 'status': string;
861
+ 'store_name'?: string;
603
862
  /**
604
863
  *
605
864
  * @type {string}
606
- * @memberof UpdateReceiptBody
865
+ * @memberof UpdateConfigStoreWhitelist
607
866
  */
608
- 'message': string;
867
+ 'tax_id'?: string;
609
868
  }
610
869
 
611
870
  /**
@@ -616,18 +875,14 @@ export const DefaultApiAxiosParamCreator = function (configuration?: Configurati
616
875
  return {
617
876
  /**
618
877
  *
619
- * @param {string} logId
620
- * @param {AddParkingTicketType} type
621
- * @param {string} [xAccountId]
878
+ * @param {ConfigDocsTypeBody} configDocsTypeBody
622
879
  * @param {*} [options] Override http request option.
623
880
  * @throws {RequiredError}
624
881
  */
625
- parkingAddParkingTicket: async (logId: string, type: AddParkingTicketType, xAccountId?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
626
- // verify required parameter 'logId' is not null or undefined
627
- assertParamExists('parkingAddParkingTicket', 'logId', logId)
628
- // verify required parameter 'type' is not null or undefined
629
- assertParamExists('parkingAddParkingTicket', 'type', type)
630
- const localVarPath = `/parking-details/add-parking-ticket`;
882
+ configAddDoc: async (configDocsTypeBody: ConfigDocsTypeBody, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
883
+ // verify required parameter 'configDocsTypeBody' is not null or undefined
884
+ assertParamExists('configAddDoc', 'configDocsTypeBody', configDocsTypeBody)
885
+ const localVarPath = `/config/doc`;
631
886
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
632
887
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
633
888
  let baseOptions;
@@ -635,27 +890,53 @@ export const DefaultApiAxiosParamCreator = function (configuration?: Configurati
635
890
  baseOptions = configuration.baseOptions;
636
891
  }
637
892
 
638
- const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
893
+ const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options};
639
894
  const localVarHeaderParameter = {} as any;
640
895
  const localVarQueryParameter = {} as any;
641
896
 
642
- if (logId !== undefined) {
643
- localVarQueryParameter['log_id'] = logId;
644
- }
645
897
 
646
- if (type !== undefined) {
647
- localVarQueryParameter['type'] = type;
648
- }
898
+
899
+ localVarHeaderParameter['Content-Type'] = 'application/json';
649
900
 
650
- if (xAccountId != null) {
651
- localVarHeaderParameter['x-account-id'] = String(xAccountId);
901
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
902
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
903
+ localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
904
+ localVarRequestOptions.data = serializeDataIfNeeded(configDocsTypeBody, localVarRequestOptions, configuration)
905
+
906
+ return {
907
+ url: toPathString(localVarUrlObj),
908
+ options: localVarRequestOptions,
909
+ };
910
+ },
911
+ /**
912
+ *
913
+ * @param {ConfigMallAddessBody} configMallAddessBody
914
+ * @param {*} [options] Override http request option.
915
+ * @throws {RequiredError}
916
+ */
917
+ configAddMallAddress: async (configMallAddessBody: ConfigMallAddessBody, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
918
+ // verify required parameter 'configMallAddessBody' is not null or undefined
919
+ assertParamExists('configAddMallAddress', 'configMallAddessBody', configMallAddessBody)
920
+ const localVarPath = `/config/mall/address`;
921
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
922
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
923
+ let baseOptions;
924
+ if (configuration) {
925
+ baseOptions = configuration.baseOptions;
652
926
  }
653
927
 
928
+ const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options};
929
+ const localVarHeaderParameter = {} as any;
930
+ const localVarQueryParameter = {} as any;
931
+
654
932
 
655
933
 
934
+ localVarHeaderParameter['Content-Type'] = 'application/json';
935
+
656
936
  setSearchParams(localVarUrlObj, localVarQueryParameter);
657
937
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
658
938
  localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
939
+ localVarRequestOptions.data = serializeDataIfNeeded(configMallAddessBody, localVarRequestOptions, configuration)
659
940
 
660
941
  return {
661
942
  url: toPathString(localVarUrlObj),
@@ -664,21 +945,14 @@ export const DefaultApiAxiosParamCreator = function (configuration?: Configurati
664
945
  },
665
946
  /**
666
947
  *
667
- * @param {string} id
668
- * @param {string} [orderBy]
669
- * @param {string} [orderDirection]
670
- * @param {number} [pageNumber]
671
- * @param {number} [pageSize]
672
- * @param {string} [filterBy]
673
- * @param {string} [filterKey]
948
+ * @param {ConfigMallNameBody} configMallNameBody
674
949
  * @param {*} [options] Override http request option.
675
950
  * @throws {RequiredError}
676
951
  */
677
- parkingDetailsGetParkingDetail: async (id: string, orderBy?: string, orderDirection?: string, pageNumber?: number, pageSize?: number, filterBy?: string, filterKey?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
678
- // verify required parameter 'id' is not null or undefined
679
- assertParamExists('parkingDetailsGetParkingDetail', 'id', id)
680
- const localVarPath = `/parking-details/{id}`
681
- .replace(`{${"id"}}`, encodeURIComponent(String(id)));
952
+ configAddMallName: async (configMallNameBody: ConfigMallNameBody, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
953
+ // verify required parameter 'configMallNameBody' is not null or undefined
954
+ assertParamExists('configAddMallName', 'configMallNameBody', configMallNameBody)
955
+ const localVarPath = `/config/mall/name`;
682
956
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
683
957
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
684
958
  let baseOptions;
@@ -686,39 +960,53 @@ export const DefaultApiAxiosParamCreator = function (configuration?: Configurati
686
960
  baseOptions = configuration.baseOptions;
687
961
  }
688
962
 
689
- const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
963
+ const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options};
690
964
  const localVarHeaderParameter = {} as any;
691
965
  const localVarQueryParameter = {} as any;
692
966
 
693
- if (orderBy !== undefined) {
694
- localVarQueryParameter['order_by'] = orderBy;
695
- }
696
-
697
- if (orderDirection !== undefined) {
698
- localVarQueryParameter['order_direction'] = orderDirection;
699
- }
700
967
 
701
- if (pageNumber !== undefined) {
702
- localVarQueryParameter['page_number'] = pageNumber;
703
- }
968
+
969
+ localVarHeaderParameter['Content-Type'] = 'application/json';
704
970
 
705
- if (pageSize !== undefined) {
706
- localVarQueryParameter['page_size'] = pageSize;
707
- }
971
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
972
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
973
+ localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
974
+ localVarRequestOptions.data = serializeDataIfNeeded(configMallNameBody, localVarRequestOptions, configuration)
708
975
 
709
- if (filterBy !== undefined) {
710
- localVarQueryParameter['filter_by'] = filterBy;
976
+ return {
977
+ url: toPathString(localVarUrlObj),
978
+ options: localVarRequestOptions,
979
+ };
980
+ },
981
+ /**
982
+ *
983
+ * @param {AddConfigStoreWhitelist} addConfigStoreWhitelist
984
+ * @param {*} [options] Override http request option.
985
+ * @throws {RequiredError}
986
+ */
987
+ configAddStoreWhitelist: async (addConfigStoreWhitelist: AddConfigStoreWhitelist, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
988
+ // verify required parameter 'addConfigStoreWhitelist' is not null or undefined
989
+ assertParamExists('configAddStoreWhitelist', 'addConfigStoreWhitelist', addConfigStoreWhitelist)
990
+ const localVarPath = `/config/store/whitelist`;
991
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
992
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
993
+ let baseOptions;
994
+ if (configuration) {
995
+ baseOptions = configuration.baseOptions;
711
996
  }
712
997
 
713
- if (filterKey !== undefined) {
714
- localVarQueryParameter['filter_key'] = filterKey;
715
- }
998
+ const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options};
999
+ const localVarHeaderParameter = {} as any;
1000
+ const localVarQueryParameter = {} as any;
716
1001
 
717
1002
 
718
1003
 
1004
+ localVarHeaderParameter['Content-Type'] = 'application/json';
1005
+
719
1006
  setSearchParams(localVarUrlObj, localVarQueryParameter);
720
1007
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
721
1008
  localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
1009
+ localVarRequestOptions.data = serializeDataIfNeeded(addConfigStoreWhitelist, localVarRequestOptions, configuration)
722
1010
 
723
1011
  return {
724
1012
  url: toPathString(localVarUrlObj),
@@ -727,20 +1015,15 @@ export const DefaultApiAxiosParamCreator = function (configuration?: Configurati
727
1015
  },
728
1016
  /**
729
1017
  *
730
- * @param {string} [orderBy]
731
- * @param {string} [orderDirection]
732
- * @param {number} [pageNumber]
733
- * @param {number} [pageSize]
734
- * @param {string} [filterBy]
735
- * @param {string} [filterKey]
736
- * @param {string} [startDate]
737
- * @param {string} [endDate]
738
- * @param {ParkingDetailStatus} [status]
1018
+ * @param {string} id
739
1019
  * @param {*} [options] Override http request option.
740
1020
  * @throws {RequiredError}
741
1021
  */
742
- parkingDetailsIndex: async (orderBy?: string, orderDirection?: string, pageNumber?: number, pageSize?: number, filterBy?: string, filterKey?: string, startDate?: string, endDate?: string, status?: ParkingDetailStatus, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
743
- const localVarPath = `/parking-details`;
1022
+ configDeleteDoc: async (id: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
1023
+ // verify required parameter 'id' is not null or undefined
1024
+ assertParamExists('configDeleteDoc', 'id', id)
1025
+ const localVarPath = `/config/doc/{id}`
1026
+ .replace(`{${"id"}}`, encodeURIComponent(String(id)));
744
1027
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
745
1028
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
746
1029
  let baseOptions;
@@ -748,45 +1031,75 @@ export const DefaultApiAxiosParamCreator = function (configuration?: Configurati
748
1031
  baseOptions = configuration.baseOptions;
749
1032
  }
750
1033
 
751
- const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
1034
+ const localVarRequestOptions = { method: 'DELETE', ...baseOptions, ...options};
752
1035
  const localVarHeaderParameter = {} as any;
753
1036
  const localVarQueryParameter = {} as any;
754
1037
 
755
- if (orderBy !== undefined) {
756
- localVarQueryParameter['order_by'] = orderBy;
757
- }
758
-
759
- if (orderDirection !== undefined) {
760
- localVarQueryParameter['order_direction'] = orderDirection;
761
- }
762
1038
 
763
- if (pageNumber !== undefined) {
764
- localVarQueryParameter['page_number'] = pageNumber;
765
- }
1039
+
1040
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
1041
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
1042
+ localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
766
1043
 
767
- if (pageSize !== undefined) {
768
- localVarQueryParameter['page_size'] = pageSize;
1044
+ return {
1045
+ url: toPathString(localVarUrlObj),
1046
+ options: localVarRequestOptions,
1047
+ };
1048
+ },
1049
+ /**
1050
+ *
1051
+ * @param {string} id
1052
+ * @param {*} [options] Override http request option.
1053
+ * @throws {RequiredError}
1054
+ */
1055
+ configDeleteMallAddress: async (id: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
1056
+ // verify required parameter 'id' is not null or undefined
1057
+ assertParamExists('configDeleteMallAddress', 'id', id)
1058
+ const localVarPath = `/config/mall/address/{id}`
1059
+ .replace(`{${"id"}}`, encodeURIComponent(String(id)));
1060
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
1061
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
1062
+ let baseOptions;
1063
+ if (configuration) {
1064
+ baseOptions = configuration.baseOptions;
769
1065
  }
770
1066
 
771
- if (filterBy !== undefined) {
772
- localVarQueryParameter['filter_by'] = filterBy;
773
- }
1067
+ const localVarRequestOptions = { method: 'DELETE', ...baseOptions, ...options};
1068
+ const localVarHeaderParameter = {} as any;
1069
+ const localVarQueryParameter = {} as any;
774
1070
 
775
- if (filterKey !== undefined) {
776
- localVarQueryParameter['filter_key'] = filterKey;
777
- }
778
1071
 
779
- if (startDate !== undefined) {
780
- localVarQueryParameter['startDate'] = startDate;
781
- }
1072
+
1073
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
1074
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
1075
+ localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
782
1076
 
783
- if (endDate !== undefined) {
784
- localVarQueryParameter['endDate'] = endDate;
1077
+ return {
1078
+ url: toPathString(localVarUrlObj),
1079
+ options: localVarRequestOptions,
1080
+ };
1081
+ },
1082
+ /**
1083
+ *
1084
+ * @param {string} id
1085
+ * @param {*} [options] Override http request option.
1086
+ * @throws {RequiredError}
1087
+ */
1088
+ configDeleteMallName: async (id: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
1089
+ // verify required parameter 'id' is not null or undefined
1090
+ assertParamExists('configDeleteMallName', 'id', id)
1091
+ const localVarPath = `/config/mall/name/{id}`
1092
+ .replace(`{${"id"}}`, encodeURIComponent(String(id)));
1093
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
1094
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
1095
+ let baseOptions;
1096
+ if (configuration) {
1097
+ baseOptions = configuration.baseOptions;
785
1098
  }
786
1099
 
787
- if (status !== undefined) {
788
- localVarQueryParameter['status'] = status;
789
- }
1100
+ const localVarRequestOptions = { method: 'DELETE', ...baseOptions, ...options};
1101
+ const localVarHeaderParameter = {} as any;
1102
+ const localVarQueryParameter = {} as any;
790
1103
 
791
1104
 
792
1105
 
@@ -801,14 +1114,15 @@ export const DefaultApiAxiosParamCreator = function (configuration?: Configurati
801
1114
  },
802
1115
  /**
803
1116
  *
804
- * @param {UpdateReceiptBody} updateReceiptBody
1117
+ * @param {string} id
805
1118
  * @param {*} [options] Override http request option.
806
1119
  * @throws {RequiredError}
807
1120
  */
808
- receiptUpdateReceipt: async (updateReceiptBody: UpdateReceiptBody, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
809
- // verify required parameter 'updateReceiptBody' is not null or undefined
810
- assertParamExists('receiptUpdateReceipt', 'updateReceiptBody', updateReceiptBody)
811
- const localVarPath = `/receipts/update-receipt`;
1121
+ configDeleteStoreWhitelist: async (id: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
1122
+ // verify required parameter 'id' is not null or undefined
1123
+ assertParamExists('configDeleteStoreWhitelist', 'id', id)
1124
+ const localVarPath = `/config/store/whitelist/{id}`
1125
+ .replace(`{${"id"}}`, encodeURIComponent(String(id)));
812
1126
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
813
1127
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
814
1128
  let baseOptions;
@@ -816,18 +1130,15 @@ export const DefaultApiAxiosParamCreator = function (configuration?: Configurati
816
1130
  baseOptions = configuration.baseOptions;
817
1131
  }
818
1132
 
819
- const localVarRequestOptions = { method: 'PATCH', ...baseOptions, ...options};
1133
+ const localVarRequestOptions = { method: 'DELETE', ...baseOptions, ...options};
820
1134
  const localVarHeaderParameter = {} as any;
821
1135
  const localVarQueryParameter = {} as any;
822
1136
 
823
1137
 
824
1138
 
825
- localVarHeaderParameter['Content-Type'] = 'application/json';
826
-
827
1139
  setSearchParams(localVarUrlObj, localVarQueryParameter);
828
1140
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
829
1141
  localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
830
- localVarRequestOptions.data = serializeDataIfNeeded(updateReceiptBody, localVarRequestOptions, configuration)
831
1142
 
832
1143
  return {
833
1144
  url: toPathString(localVarUrlObj),
@@ -836,17 +1147,11 @@ export const DefaultApiAxiosParamCreator = function (configuration?: Configurati
836
1147
  },
837
1148
  /**
838
1149
  *
839
- * @param {string} xAccountId
840
- * @param {CreateReceiptBody} createReceiptBody
841
1150
  * @param {*} [options] Override http request option.
842
1151
  * @throws {RequiredError}
843
1152
  */
844
- receiptsCreateReceipt: async (xAccountId: string, createReceiptBody: CreateReceiptBody, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
845
- // verify required parameter 'xAccountId' is not null or undefined
846
- assertParamExists('receiptsCreateReceipt', 'xAccountId', xAccountId)
847
- // verify required parameter 'createReceiptBody' is not null or undefined
848
- assertParamExists('receiptsCreateReceipt', 'createReceiptBody', createReceiptBody)
849
- const localVarPath = `/receipts/create-receipt`;
1153
+ configDocIndex: async (options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
1154
+ const localVarPath = `/config/doc`;
850
1155
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
851
1156
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
852
1157
  let baseOptions;
@@ -854,22 +1159,15 @@ export const DefaultApiAxiosParamCreator = function (configuration?: Configurati
854
1159
  baseOptions = configuration.baseOptions;
855
1160
  }
856
1161
 
857
- const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options};
1162
+ const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
858
1163
  const localVarHeaderParameter = {} as any;
859
1164
  const localVarQueryParameter = {} as any;
860
1165
 
861
- if (xAccountId != null) {
862
- localVarHeaderParameter['x-account-id'] = String(xAccountId);
863
- }
864
-
865
1166
 
866
1167
 
867
- localVarHeaderParameter['Content-Type'] = 'application/json';
868
-
869
1168
  setSearchParams(localVarUrlObj, localVarQueryParameter);
870
1169
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
871
1170
  localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
872
- localVarRequestOptions.data = serializeDataIfNeeded(createReceiptBody, localVarRequestOptions, configuration)
873
1171
 
874
1172
  return {
875
1173
  url: toPathString(localVarUrlObj),
@@ -878,11 +1176,15 @@ export const DefaultApiAxiosParamCreator = function (configuration?: Configurati
878
1176
  },
879
1177
  /**
880
1178
  *
1179
+ * @param {string} id
881
1180
  * @param {*} [options] Override http request option.
882
1181
  * @throws {RequiredError}
883
1182
  */
884
- testTest: async (options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
885
- const localVarPath = `/test`;
1183
+ configDocShow: async (id: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
1184
+ // verify required parameter 'id' is not null or undefined
1185
+ assertParamExists('configDocShow', 'id', id)
1186
+ const localVarPath = `/config/doc/{id}`
1187
+ .replace(`{${"id"}}`, encodeURIComponent(String(id)));
886
1188
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
887
1189
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
888
1190
  let baseOptions;
@@ -905,51 +1207,895 @@ export const DefaultApiAxiosParamCreator = function (configuration?: Configurati
905
1207
  options: localVarRequestOptions,
906
1208
  };
907
1209
  },
908
- }
909
- };
910
-
911
- /**
912
- * DefaultApi - functional programming interface
913
- * @export
914
- */
915
- export const DefaultApiFp = function(configuration?: Configuration) {
916
- const localVarAxiosParamCreator = DefaultApiAxiosParamCreator(configuration)
917
- return {
918
1210
  /**
919
1211
  *
920
- * @param {string} logId
921
- * @param {AddParkingTicketType} type
922
- * @param {string} [xAccountId]
923
1212
  * @param {*} [options] Override http request option.
924
1213
  * @throws {RequiredError}
925
1214
  */
926
- async parkingAddParkingTicket(logId: string, type: AddParkingTicketType, xAccountId?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AddParkingTicketResponse>> {
927
- const localVarAxiosArgs = await localVarAxiosParamCreator.parkingAddParkingTicket(logId, type, xAccountId, options);
928
- return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
1215
+ configMallAddressIndex: async (options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
1216
+ const localVarPath = `/config/mall/address`;
1217
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
1218
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
1219
+ let baseOptions;
1220
+ if (configuration) {
1221
+ baseOptions = configuration.baseOptions;
1222
+ }
1223
+
1224
+ const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
1225
+ const localVarHeaderParameter = {} as any;
1226
+ const localVarQueryParameter = {} as any;
1227
+
1228
+
1229
+
1230
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
1231
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
1232
+ localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
1233
+
1234
+ return {
1235
+ url: toPathString(localVarUrlObj),
1236
+ options: localVarRequestOptions,
1237
+ };
929
1238
  },
930
1239
  /**
931
1240
  *
932
1241
  * @param {string} id
933
- * @param {string} [orderBy]
934
- * @param {string} [orderDirection]
935
- * @param {number} [pageNumber]
936
- * @param {number} [pageSize]
937
- * @param {string} [filterBy]
938
- * @param {string} [filterKey]
939
1242
  * @param {*} [options] Override http request option.
940
1243
  * @throws {RequiredError}
941
1244
  */
942
- async parkingDetailsGetParkingDetail(id: string, orderBy?: string, orderDirection?: string, pageNumber?: number, pageSize?: number, filterBy?: string, filterKey?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ResponseDataGetParkingDetailResponse>> {
943
- const localVarAxiosArgs = await localVarAxiosParamCreator.parkingDetailsGetParkingDetail(id, orderBy, orderDirection, pageNumber, pageSize, filterBy, filterKey, options);
944
- return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
945
- },
946
- /**
947
- *
948
- * @param {string} [orderBy]
949
- * @param {string} [orderDirection]
950
- * @param {number} [pageNumber]
951
- * @param {number} [pageSize]
952
- * @param {string} [filterBy]
1245
+ configMallAddressShow: async (id: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
1246
+ // verify required parameter 'id' is not null or undefined
1247
+ assertParamExists('configMallAddressShow', 'id', id)
1248
+ const localVarPath = `/config/mall/address/{id}`
1249
+ .replace(`{${"id"}}`, encodeURIComponent(String(id)));
1250
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
1251
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
1252
+ let baseOptions;
1253
+ if (configuration) {
1254
+ baseOptions = configuration.baseOptions;
1255
+ }
1256
+
1257
+ const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
1258
+ const localVarHeaderParameter = {} as any;
1259
+ const localVarQueryParameter = {} as any;
1260
+
1261
+
1262
+
1263
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
1264
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
1265
+ localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
1266
+
1267
+ return {
1268
+ url: toPathString(localVarUrlObj),
1269
+ options: localVarRequestOptions,
1270
+ };
1271
+ },
1272
+ /**
1273
+ *
1274
+ * @param {*} [options] Override http request option.
1275
+ * @throws {RequiredError}
1276
+ */
1277
+ configMallNameIndex: async (options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
1278
+ const localVarPath = `/config/mall/name`;
1279
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
1280
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
1281
+ let baseOptions;
1282
+ if (configuration) {
1283
+ baseOptions = configuration.baseOptions;
1284
+ }
1285
+
1286
+ const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
1287
+ const localVarHeaderParameter = {} as any;
1288
+ const localVarQueryParameter = {} as any;
1289
+
1290
+
1291
+
1292
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
1293
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
1294
+ localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
1295
+
1296
+ return {
1297
+ url: toPathString(localVarUrlObj),
1298
+ options: localVarRequestOptions,
1299
+ };
1300
+ },
1301
+ /**
1302
+ *
1303
+ * @param {string} id
1304
+ * @param {*} [options] Override http request option.
1305
+ * @throws {RequiredError}
1306
+ */
1307
+ configMallNameShow: async (id: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
1308
+ // verify required parameter 'id' is not null or undefined
1309
+ assertParamExists('configMallNameShow', 'id', id)
1310
+ const localVarPath = `/config/mall/name/{id}`
1311
+ .replace(`{${"id"}}`, encodeURIComponent(String(id)));
1312
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
1313
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
1314
+ let baseOptions;
1315
+ if (configuration) {
1316
+ baseOptions = configuration.baseOptions;
1317
+ }
1318
+
1319
+ const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
1320
+ const localVarHeaderParameter = {} as any;
1321
+ const localVarQueryParameter = {} as any;
1322
+
1323
+
1324
+
1325
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
1326
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
1327
+ localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
1328
+
1329
+ return {
1330
+ url: toPathString(localVarUrlObj),
1331
+ options: localVarRequestOptions,
1332
+ };
1333
+ },
1334
+ /**
1335
+ *
1336
+ * @param {*} [options] Override http request option.
1337
+ * @throws {RequiredError}
1338
+ */
1339
+ configPropertyIndex: async (options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
1340
+ const localVarPath = `/config/property/name`;
1341
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
1342
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
1343
+ let baseOptions;
1344
+ if (configuration) {
1345
+ baseOptions = configuration.baseOptions;
1346
+ }
1347
+
1348
+ const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
1349
+ const localVarHeaderParameter = {} as any;
1350
+ const localVarQueryParameter = {} as any;
1351
+
1352
+
1353
+
1354
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
1355
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
1356
+ localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
1357
+
1358
+ return {
1359
+ url: toPathString(localVarUrlObj),
1360
+ options: localVarRequestOptions,
1361
+ };
1362
+ },
1363
+ /**
1364
+ *
1365
+ * @param {string} [id]
1366
+ * @param {string} [taxId]
1367
+ * @param {string} [storeName]
1368
+ * @param {string} [companyName]
1369
+ * @param {string} [propertyName]
1370
+ * @param {string} [unitNo]
1371
+ * @param {string} [address]
1372
+ * @param {string} [building]
1373
+ * @param {boolean} [hasTaxId]
1374
+ * @param {boolean} [receiptAddressInObk]
1375
+ * @param {string} [updatedAt]
1376
+ * @param {string} [createdAt]
1377
+ * @param {string} [sortKey]
1378
+ * @param {string} [sortDirection]
1379
+ * @param {*} [options] Override http request option.
1380
+ * @throws {RequiredError}
1381
+ */
1382
+ configStoreWhitelistIndex: async (id?: string, taxId?: string, storeName?: string, companyName?: string, propertyName?: string, unitNo?: string, address?: string, building?: string, hasTaxId?: boolean, receiptAddressInObk?: boolean, updatedAt?: string, createdAt?: string, sortKey?: string, sortDirection?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
1383
+ const localVarPath = `/config/store/whitelist`;
1384
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
1385
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
1386
+ let baseOptions;
1387
+ if (configuration) {
1388
+ baseOptions = configuration.baseOptions;
1389
+ }
1390
+
1391
+ const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
1392
+ const localVarHeaderParameter = {} as any;
1393
+ const localVarQueryParameter = {} as any;
1394
+
1395
+ if (id !== undefined) {
1396
+ localVarQueryParameter['id'] = id;
1397
+ }
1398
+
1399
+ if (taxId !== undefined) {
1400
+ localVarQueryParameter['tax_id'] = taxId;
1401
+ }
1402
+
1403
+ if (storeName !== undefined) {
1404
+ localVarQueryParameter['store_name'] = storeName;
1405
+ }
1406
+
1407
+ if (companyName !== undefined) {
1408
+ localVarQueryParameter['company_name'] = companyName;
1409
+ }
1410
+
1411
+ if (propertyName !== undefined) {
1412
+ localVarQueryParameter['property_name'] = propertyName;
1413
+ }
1414
+
1415
+ if (unitNo !== undefined) {
1416
+ localVarQueryParameter['unit_no'] = unitNo;
1417
+ }
1418
+
1419
+ if (address !== undefined) {
1420
+ localVarQueryParameter['address'] = address;
1421
+ }
1422
+
1423
+ if (building !== undefined) {
1424
+ localVarQueryParameter['building'] = building;
1425
+ }
1426
+
1427
+ if (hasTaxId !== undefined) {
1428
+ localVarQueryParameter['has_tax_id'] = hasTaxId;
1429
+ }
1430
+
1431
+ if (receiptAddressInObk !== undefined) {
1432
+ localVarQueryParameter['receipt_address_in_obk'] = receiptAddressInObk;
1433
+ }
1434
+
1435
+ if (updatedAt !== undefined) {
1436
+ localVarQueryParameter['updated_at'] = (updatedAt as any instanceof Date) ?
1437
+ (updatedAt as any).toISOString() :
1438
+ updatedAt;
1439
+ }
1440
+
1441
+ if (createdAt !== undefined) {
1442
+ localVarQueryParameter['created_at'] = createdAt;
1443
+ }
1444
+
1445
+ if (sortKey !== undefined) {
1446
+ localVarQueryParameter['sort_key'] = sortKey;
1447
+ }
1448
+
1449
+ if (sortDirection !== undefined) {
1450
+ localVarQueryParameter['sort_direction'] = sortDirection;
1451
+ }
1452
+
1453
+
1454
+
1455
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
1456
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
1457
+ localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
1458
+
1459
+ return {
1460
+ url: toPathString(localVarUrlObj),
1461
+ options: localVarRequestOptions,
1462
+ };
1463
+ },
1464
+ /**
1465
+ *
1466
+ * @param {string} id
1467
+ * @param {*} [options] Override http request option.
1468
+ * @throws {RequiredError}
1469
+ */
1470
+ configStoreWhitelistShow: async (id: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
1471
+ // verify required parameter 'id' is not null or undefined
1472
+ assertParamExists('configStoreWhitelistShow', 'id', id)
1473
+ const localVarPath = `/config/store/whitelist/{id}`
1474
+ .replace(`{${"id"}}`, encodeURIComponent(String(id)));
1475
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
1476
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
1477
+ let baseOptions;
1478
+ if (configuration) {
1479
+ baseOptions = configuration.baseOptions;
1480
+ }
1481
+
1482
+ const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
1483
+ const localVarHeaderParameter = {} as any;
1484
+ const localVarQueryParameter = {} as any;
1485
+
1486
+
1487
+
1488
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
1489
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
1490
+ localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
1491
+
1492
+ return {
1493
+ url: toPathString(localVarUrlObj),
1494
+ options: localVarRequestOptions,
1495
+ };
1496
+ },
1497
+ /**
1498
+ *
1499
+ * @param {string} id
1500
+ * @param {ConfigDocsTypeBody} configDocsTypeBody
1501
+ * @param {*} [options] Override http request option.
1502
+ * @throws {RequiredError}
1503
+ */
1504
+ configUpdateDoc: async (id: string, configDocsTypeBody: ConfigDocsTypeBody, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
1505
+ // verify required parameter 'id' is not null or undefined
1506
+ assertParamExists('configUpdateDoc', 'id', id)
1507
+ // verify required parameter 'configDocsTypeBody' is not null or undefined
1508
+ assertParamExists('configUpdateDoc', 'configDocsTypeBody', configDocsTypeBody)
1509
+ const localVarPath = `/config/doc/{id}`
1510
+ .replace(`{${"id"}}`, encodeURIComponent(String(id)));
1511
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
1512
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
1513
+ let baseOptions;
1514
+ if (configuration) {
1515
+ baseOptions = configuration.baseOptions;
1516
+ }
1517
+
1518
+ const localVarRequestOptions = { method: 'PATCH', ...baseOptions, ...options};
1519
+ const localVarHeaderParameter = {} as any;
1520
+ const localVarQueryParameter = {} as any;
1521
+
1522
+
1523
+
1524
+ localVarHeaderParameter['Content-Type'] = 'application/json';
1525
+
1526
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
1527
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
1528
+ localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
1529
+ localVarRequestOptions.data = serializeDataIfNeeded(configDocsTypeBody, localVarRequestOptions, configuration)
1530
+
1531
+ return {
1532
+ url: toPathString(localVarUrlObj),
1533
+ options: localVarRequestOptions,
1534
+ };
1535
+ },
1536
+ /**
1537
+ *
1538
+ * @param {string} id
1539
+ * @param {ConfigMallAddessBody} configMallAddessBody
1540
+ * @param {*} [options] Override http request option.
1541
+ * @throws {RequiredError}
1542
+ */
1543
+ configUpdateMallAddress: async (id: string, configMallAddessBody: ConfigMallAddessBody, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
1544
+ // verify required parameter 'id' is not null or undefined
1545
+ assertParamExists('configUpdateMallAddress', 'id', id)
1546
+ // verify required parameter 'configMallAddessBody' is not null or undefined
1547
+ assertParamExists('configUpdateMallAddress', 'configMallAddessBody', configMallAddessBody)
1548
+ const localVarPath = `/config/mall/address/{id}`
1549
+ .replace(`{${"id"}}`, encodeURIComponent(String(id)));
1550
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
1551
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
1552
+ let baseOptions;
1553
+ if (configuration) {
1554
+ baseOptions = configuration.baseOptions;
1555
+ }
1556
+
1557
+ const localVarRequestOptions = { method: 'PATCH', ...baseOptions, ...options};
1558
+ const localVarHeaderParameter = {} as any;
1559
+ const localVarQueryParameter = {} as any;
1560
+
1561
+
1562
+
1563
+ localVarHeaderParameter['Content-Type'] = 'application/json';
1564
+
1565
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
1566
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
1567
+ localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
1568
+ localVarRequestOptions.data = serializeDataIfNeeded(configMallAddessBody, localVarRequestOptions, configuration)
1569
+
1570
+ return {
1571
+ url: toPathString(localVarUrlObj),
1572
+ options: localVarRequestOptions,
1573
+ };
1574
+ },
1575
+ /**
1576
+ *
1577
+ * @param {string} id
1578
+ * @param {ConfigMallNameBody} configMallNameBody
1579
+ * @param {*} [options] Override http request option.
1580
+ * @throws {RequiredError}
1581
+ */
1582
+ configUpdateMallName: async (id: string, configMallNameBody: ConfigMallNameBody, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
1583
+ // verify required parameter 'id' is not null or undefined
1584
+ assertParamExists('configUpdateMallName', 'id', id)
1585
+ // verify required parameter 'configMallNameBody' is not null or undefined
1586
+ assertParamExists('configUpdateMallName', 'configMallNameBody', configMallNameBody)
1587
+ const localVarPath = `/config/mall/name/{id}`
1588
+ .replace(`{${"id"}}`, encodeURIComponent(String(id)));
1589
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
1590
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
1591
+ let baseOptions;
1592
+ if (configuration) {
1593
+ baseOptions = configuration.baseOptions;
1594
+ }
1595
+
1596
+ const localVarRequestOptions = { method: 'PATCH', ...baseOptions, ...options};
1597
+ const localVarHeaderParameter = {} as any;
1598
+ const localVarQueryParameter = {} as any;
1599
+
1600
+
1601
+
1602
+ localVarHeaderParameter['Content-Type'] = 'application/json';
1603
+
1604
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
1605
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
1606
+ localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
1607
+ localVarRequestOptions.data = serializeDataIfNeeded(configMallNameBody, localVarRequestOptions, configuration)
1608
+
1609
+ return {
1610
+ url: toPathString(localVarUrlObj),
1611
+ options: localVarRequestOptions,
1612
+ };
1613
+ },
1614
+ /**
1615
+ *
1616
+ * @param {string} id
1617
+ * @param {UpdateConfigStoreWhitelist} updateConfigStoreWhitelist
1618
+ * @param {*} [options] Override http request option.
1619
+ * @throws {RequiredError}
1620
+ */
1621
+ configUpdateStoreWhitelist: async (id: string, updateConfigStoreWhitelist: UpdateConfigStoreWhitelist, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
1622
+ // verify required parameter 'id' is not null or undefined
1623
+ assertParamExists('configUpdateStoreWhitelist', 'id', id)
1624
+ // verify required parameter 'updateConfigStoreWhitelist' is not null or undefined
1625
+ assertParamExists('configUpdateStoreWhitelist', 'updateConfigStoreWhitelist', updateConfigStoreWhitelist)
1626
+ const localVarPath = `/config/store/whitelist/{id}`
1627
+ .replace(`{${"id"}}`, encodeURIComponent(String(id)));
1628
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
1629
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
1630
+ let baseOptions;
1631
+ if (configuration) {
1632
+ baseOptions = configuration.baseOptions;
1633
+ }
1634
+
1635
+ const localVarRequestOptions = { method: 'PATCH', ...baseOptions, ...options};
1636
+ const localVarHeaderParameter = {} as any;
1637
+ const localVarQueryParameter = {} as any;
1638
+
1639
+
1640
+
1641
+ localVarHeaderParameter['Content-Type'] = 'application/json';
1642
+
1643
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
1644
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
1645
+ localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
1646
+ localVarRequestOptions.data = serializeDataIfNeeded(updateConfigStoreWhitelist, localVarRequestOptions, configuration)
1647
+
1648
+ return {
1649
+ url: toPathString(localVarUrlObj),
1650
+ options: localVarRequestOptions,
1651
+ };
1652
+ },
1653
+ /**
1654
+ *
1655
+ * @param {string} logId
1656
+ * @param {AddParkingTicketType} type
1657
+ * @param {string} [xAccountId]
1658
+ * @param {*} [options] Override http request option.
1659
+ * @throws {RequiredError}
1660
+ */
1661
+ parkingAddParkingTicket: async (logId: string, type: AddParkingTicketType, xAccountId?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
1662
+ // verify required parameter 'logId' is not null or undefined
1663
+ assertParamExists('parkingAddParkingTicket', 'logId', logId)
1664
+ // verify required parameter 'type' is not null or undefined
1665
+ assertParamExists('parkingAddParkingTicket', 'type', type)
1666
+ const localVarPath = `/parking-details/add-parking-ticket`;
1667
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
1668
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
1669
+ let baseOptions;
1670
+ if (configuration) {
1671
+ baseOptions = configuration.baseOptions;
1672
+ }
1673
+
1674
+ const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
1675
+ const localVarHeaderParameter = {} as any;
1676
+ const localVarQueryParameter = {} as any;
1677
+
1678
+ if (logId !== undefined) {
1679
+ localVarQueryParameter['log_id'] = logId;
1680
+ }
1681
+
1682
+ if (type !== undefined) {
1683
+ localVarQueryParameter['type'] = type;
1684
+ }
1685
+
1686
+ if (xAccountId != null) {
1687
+ localVarHeaderParameter['x-account-id'] = String(xAccountId);
1688
+ }
1689
+
1690
+
1691
+
1692
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
1693
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
1694
+ localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
1695
+
1696
+ return {
1697
+ url: toPathString(localVarUrlObj),
1698
+ options: localVarRequestOptions,
1699
+ };
1700
+ },
1701
+ /**
1702
+ *
1703
+ * @param {string} id
1704
+ * @param {*} [options] Override http request option.
1705
+ * @throws {RequiredError}
1706
+ */
1707
+ parkingDetailsGetParkingDetail: async (id: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
1708
+ // verify required parameter 'id' is not null or undefined
1709
+ assertParamExists('parkingDetailsGetParkingDetail', 'id', id)
1710
+ const localVarPath = `/parking-details/{id}`
1711
+ .replace(`{${"id"}}`, encodeURIComponent(String(id)));
1712
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
1713
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
1714
+ let baseOptions;
1715
+ if (configuration) {
1716
+ baseOptions = configuration.baseOptions;
1717
+ }
1718
+
1719
+ const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
1720
+ const localVarHeaderParameter = {} as any;
1721
+ const localVarQueryParameter = {} as any;
1722
+
1723
+
1724
+
1725
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
1726
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
1727
+ localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
1728
+
1729
+ return {
1730
+ url: toPathString(localVarUrlObj),
1731
+ options: localVarRequestOptions,
1732
+ };
1733
+ },
1734
+ /**
1735
+ *
1736
+ * @param {string} [orderBy]
1737
+ * @param {string} [orderDirection]
1738
+ * @param {number} [pageNumber]
1739
+ * @param {number} [pageSize]
1740
+ * @param {string} [filterBy]
1741
+ * @param {string} [filterKey]
1742
+ * @param {string} [startDate]
1743
+ * @param {string} [endDate]
1744
+ * @param {ParkingDetailStatus} [status]
1745
+ * @param {*} [options] Override http request option.
1746
+ * @throws {RequiredError}
1747
+ */
1748
+ parkingDetailsIndex: async (orderBy?: string, orderDirection?: string, pageNumber?: number, pageSize?: number, filterBy?: string, filterKey?: string, startDate?: string, endDate?: string, status?: ParkingDetailStatus, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
1749
+ const localVarPath = `/parking-details`;
1750
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
1751
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
1752
+ let baseOptions;
1753
+ if (configuration) {
1754
+ baseOptions = configuration.baseOptions;
1755
+ }
1756
+
1757
+ const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
1758
+ const localVarHeaderParameter = {} as any;
1759
+ const localVarQueryParameter = {} as any;
1760
+
1761
+ if (orderBy !== undefined) {
1762
+ localVarQueryParameter['order_by'] = orderBy;
1763
+ }
1764
+
1765
+ if (orderDirection !== undefined) {
1766
+ localVarQueryParameter['order_direction'] = orderDirection;
1767
+ }
1768
+
1769
+ if (pageNumber !== undefined) {
1770
+ localVarQueryParameter['page_number'] = pageNumber;
1771
+ }
1772
+
1773
+ if (pageSize !== undefined) {
1774
+ localVarQueryParameter['page_size'] = pageSize;
1775
+ }
1776
+
1777
+ if (filterBy !== undefined) {
1778
+ localVarQueryParameter['filter_by'] = filterBy;
1779
+ }
1780
+
1781
+ if (filterKey !== undefined) {
1782
+ localVarQueryParameter['filter_key'] = filterKey;
1783
+ }
1784
+
1785
+ if (startDate !== undefined) {
1786
+ localVarQueryParameter['startDate'] = startDate;
1787
+ }
1788
+
1789
+ if (endDate !== undefined) {
1790
+ localVarQueryParameter['endDate'] = endDate;
1791
+ }
1792
+
1793
+ if (status !== undefined) {
1794
+ localVarQueryParameter['status'] = status;
1795
+ }
1796
+
1797
+
1798
+
1799
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
1800
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
1801
+ localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
1802
+
1803
+ return {
1804
+ url: toPathString(localVarUrlObj),
1805
+ options: localVarRequestOptions,
1806
+ };
1807
+ },
1808
+ /**
1809
+ *
1810
+ * @param {*} [options] Override http request option.
1811
+ * @throws {RequiredError}
1812
+ */
1813
+ testTest: async (options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
1814
+ const localVarPath = `/test`;
1815
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
1816
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
1817
+ let baseOptions;
1818
+ if (configuration) {
1819
+ baseOptions = configuration.baseOptions;
1820
+ }
1821
+
1822
+ const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
1823
+ const localVarHeaderParameter = {} as any;
1824
+ const localVarQueryParameter = {} as any;
1825
+
1826
+
1827
+
1828
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
1829
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
1830
+ localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
1831
+
1832
+ return {
1833
+ url: toPathString(localVarUrlObj),
1834
+ options: localVarRequestOptions,
1835
+ };
1836
+ },
1837
+ }
1838
+ };
1839
+
1840
+ /**
1841
+ * DefaultApi - functional programming interface
1842
+ * @export
1843
+ */
1844
+ export const DefaultApiFp = function(configuration?: Configuration) {
1845
+ const localVarAxiosParamCreator = DefaultApiAxiosParamCreator(configuration)
1846
+ return {
1847
+ /**
1848
+ *
1849
+ * @param {ConfigDocsTypeBody} configDocsTypeBody
1850
+ * @param {*} [options] Override http request option.
1851
+ * @throws {RequiredError}
1852
+ */
1853
+ async configAddDoc(configDocsTypeBody: ConfigDocsTypeBody, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ConfigDocsTypeResponse>> {
1854
+ const localVarAxiosArgs = await localVarAxiosParamCreator.configAddDoc(configDocsTypeBody, options);
1855
+ return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
1856
+ },
1857
+ /**
1858
+ *
1859
+ * @param {ConfigMallAddessBody} configMallAddessBody
1860
+ * @param {*} [options] Override http request option.
1861
+ * @throws {RequiredError}
1862
+ */
1863
+ async configAddMallAddress(configMallAddessBody: ConfigMallAddessBody, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ConfigMallAddressResponse>> {
1864
+ const localVarAxiosArgs = await localVarAxiosParamCreator.configAddMallAddress(configMallAddessBody, options);
1865
+ return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
1866
+ },
1867
+ /**
1868
+ *
1869
+ * @param {ConfigMallNameBody} configMallNameBody
1870
+ * @param {*} [options] Override http request option.
1871
+ * @throws {RequiredError}
1872
+ */
1873
+ async configAddMallName(configMallNameBody: ConfigMallNameBody, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ConfigMallNameResponse>> {
1874
+ const localVarAxiosArgs = await localVarAxiosParamCreator.configAddMallName(configMallNameBody, options);
1875
+ return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
1876
+ },
1877
+ /**
1878
+ *
1879
+ * @param {AddConfigStoreWhitelist} addConfigStoreWhitelist
1880
+ * @param {*} [options] Override http request option.
1881
+ * @throws {RequiredError}
1882
+ */
1883
+ async configAddStoreWhitelist(addConfigStoreWhitelist: AddConfigStoreWhitelist, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<StoreWhitelistResponse>> {
1884
+ const localVarAxiosArgs = await localVarAxiosParamCreator.configAddStoreWhitelist(addConfigStoreWhitelist, options);
1885
+ return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
1886
+ },
1887
+ /**
1888
+ *
1889
+ * @param {string} id
1890
+ * @param {*} [options] Override http request option.
1891
+ * @throws {RequiredError}
1892
+ */
1893
+ async configDeleteDoc(id: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<boolean>> {
1894
+ const localVarAxiosArgs = await localVarAxiosParamCreator.configDeleteDoc(id, options);
1895
+ return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
1896
+ },
1897
+ /**
1898
+ *
1899
+ * @param {string} id
1900
+ * @param {*} [options] Override http request option.
1901
+ * @throws {RequiredError}
1902
+ */
1903
+ async configDeleteMallAddress(id: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<boolean>> {
1904
+ const localVarAxiosArgs = await localVarAxiosParamCreator.configDeleteMallAddress(id, options);
1905
+ return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
1906
+ },
1907
+ /**
1908
+ *
1909
+ * @param {string} id
1910
+ * @param {*} [options] Override http request option.
1911
+ * @throws {RequiredError}
1912
+ */
1913
+ async configDeleteMallName(id: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<boolean>> {
1914
+ const localVarAxiosArgs = await localVarAxiosParamCreator.configDeleteMallName(id, options);
1915
+ return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
1916
+ },
1917
+ /**
1918
+ *
1919
+ * @param {string} id
1920
+ * @param {*} [options] Override http request option.
1921
+ * @throws {RequiredError}
1922
+ */
1923
+ async configDeleteStoreWhitelist(id: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<boolean>> {
1924
+ const localVarAxiosArgs = await localVarAxiosParamCreator.configDeleteStoreWhitelist(id, options);
1925
+ return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
1926
+ },
1927
+ /**
1928
+ *
1929
+ * @param {*} [options] Override http request option.
1930
+ * @throws {RequiredError}
1931
+ */
1932
+ async configDocIndex(options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<ConfigDocsTypeResponse>>> {
1933
+ const localVarAxiosArgs = await localVarAxiosParamCreator.configDocIndex(options);
1934
+ return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
1935
+ },
1936
+ /**
1937
+ *
1938
+ * @param {string} id
1939
+ * @param {*} [options] Override http request option.
1940
+ * @throws {RequiredError}
1941
+ */
1942
+ async configDocShow(id: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ConfigDocsTypeResponse>> {
1943
+ const localVarAxiosArgs = await localVarAxiosParamCreator.configDocShow(id, options);
1944
+ return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
1945
+ },
1946
+ /**
1947
+ *
1948
+ * @param {*} [options] Override http request option.
1949
+ * @throws {RequiredError}
1950
+ */
1951
+ async configMallAddressIndex(options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<ConfigMallAddressResponse>>> {
1952
+ const localVarAxiosArgs = await localVarAxiosParamCreator.configMallAddressIndex(options);
1953
+ return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
1954
+ },
1955
+ /**
1956
+ *
1957
+ * @param {string} id
1958
+ * @param {*} [options] Override http request option.
1959
+ * @throws {RequiredError}
1960
+ */
1961
+ async configMallAddressShow(id: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ConfigMallAddressResponse>> {
1962
+ const localVarAxiosArgs = await localVarAxiosParamCreator.configMallAddressShow(id, options);
1963
+ return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
1964
+ },
1965
+ /**
1966
+ *
1967
+ * @param {*} [options] Override http request option.
1968
+ * @throws {RequiredError}
1969
+ */
1970
+ async configMallNameIndex(options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<ConfigMallNameResponse>>> {
1971
+ const localVarAxiosArgs = await localVarAxiosParamCreator.configMallNameIndex(options);
1972
+ return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
1973
+ },
1974
+ /**
1975
+ *
1976
+ * @param {string} id
1977
+ * @param {*} [options] Override http request option.
1978
+ * @throws {RequiredError}
1979
+ */
1980
+ async configMallNameShow(id: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ConfigMallNameResponse>> {
1981
+ const localVarAxiosArgs = await localVarAxiosParamCreator.configMallNameShow(id, options);
1982
+ return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
1983
+ },
1984
+ /**
1985
+ *
1986
+ * @param {*} [options] Override http request option.
1987
+ * @throws {RequiredError}
1988
+ */
1989
+ async configPropertyIndex(options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<PropertiesResponse>>> {
1990
+ const localVarAxiosArgs = await localVarAxiosParamCreator.configPropertyIndex(options);
1991
+ return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
1992
+ },
1993
+ /**
1994
+ *
1995
+ * @param {string} [id]
1996
+ * @param {string} [taxId]
1997
+ * @param {string} [storeName]
1998
+ * @param {string} [companyName]
1999
+ * @param {string} [propertyName]
2000
+ * @param {string} [unitNo]
2001
+ * @param {string} [address]
2002
+ * @param {string} [building]
2003
+ * @param {boolean} [hasTaxId]
2004
+ * @param {boolean} [receiptAddressInObk]
2005
+ * @param {string} [updatedAt]
2006
+ * @param {string} [createdAt]
2007
+ * @param {string} [sortKey]
2008
+ * @param {string} [sortDirection]
2009
+ * @param {*} [options] Override http request option.
2010
+ * @throws {RequiredError}
2011
+ */
2012
+ async configStoreWhitelistIndex(id?: string, taxId?: string, storeName?: string, companyName?: string, propertyName?: string, unitNo?: string, address?: string, building?: string, hasTaxId?: boolean, receiptAddressInObk?: boolean, updatedAt?: string, createdAt?: string, sortKey?: string, sortDirection?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<StoreWhitelistResponse>>> {
2013
+ const localVarAxiosArgs = await localVarAxiosParamCreator.configStoreWhitelistIndex(id, taxId, storeName, companyName, propertyName, unitNo, address, building, hasTaxId, receiptAddressInObk, updatedAt, createdAt, sortKey, sortDirection, options);
2014
+ return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
2015
+ },
2016
+ /**
2017
+ *
2018
+ * @param {string} id
2019
+ * @param {*} [options] Override http request option.
2020
+ * @throws {RequiredError}
2021
+ */
2022
+ async configStoreWhitelistShow(id: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<StoreWhitelistResponse>> {
2023
+ const localVarAxiosArgs = await localVarAxiosParamCreator.configStoreWhitelistShow(id, options);
2024
+ return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
2025
+ },
2026
+ /**
2027
+ *
2028
+ * @param {string} id
2029
+ * @param {ConfigDocsTypeBody} configDocsTypeBody
2030
+ * @param {*} [options] Override http request option.
2031
+ * @throws {RequiredError}
2032
+ */
2033
+ async configUpdateDoc(id: string, configDocsTypeBody: ConfigDocsTypeBody, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ConfigDocsTypeResponse>> {
2034
+ const localVarAxiosArgs = await localVarAxiosParamCreator.configUpdateDoc(id, configDocsTypeBody, options);
2035
+ return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
2036
+ },
2037
+ /**
2038
+ *
2039
+ * @param {string} id
2040
+ * @param {ConfigMallAddessBody} configMallAddessBody
2041
+ * @param {*} [options] Override http request option.
2042
+ * @throws {RequiredError}
2043
+ */
2044
+ async configUpdateMallAddress(id: string, configMallAddessBody: ConfigMallAddessBody, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ConfigMallAddressResponse>> {
2045
+ const localVarAxiosArgs = await localVarAxiosParamCreator.configUpdateMallAddress(id, configMallAddessBody, options);
2046
+ return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
2047
+ },
2048
+ /**
2049
+ *
2050
+ * @param {string} id
2051
+ * @param {ConfigMallNameBody} configMallNameBody
2052
+ * @param {*} [options] Override http request option.
2053
+ * @throws {RequiredError}
2054
+ */
2055
+ async configUpdateMallName(id: string, configMallNameBody: ConfigMallNameBody, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ConfigMallNameResponse>> {
2056
+ const localVarAxiosArgs = await localVarAxiosParamCreator.configUpdateMallName(id, configMallNameBody, options);
2057
+ return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
2058
+ },
2059
+ /**
2060
+ *
2061
+ * @param {string} id
2062
+ * @param {UpdateConfigStoreWhitelist} updateConfigStoreWhitelist
2063
+ * @param {*} [options] Override http request option.
2064
+ * @throws {RequiredError}
2065
+ */
2066
+ async configUpdateStoreWhitelist(id: string, updateConfigStoreWhitelist: UpdateConfigStoreWhitelist, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<StoreWhitelistResponse>> {
2067
+ const localVarAxiosArgs = await localVarAxiosParamCreator.configUpdateStoreWhitelist(id, updateConfigStoreWhitelist, options);
2068
+ return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
2069
+ },
2070
+ /**
2071
+ *
2072
+ * @param {string} logId
2073
+ * @param {AddParkingTicketType} type
2074
+ * @param {string} [xAccountId]
2075
+ * @param {*} [options] Override http request option.
2076
+ * @throws {RequiredError}
2077
+ */
2078
+ async parkingAddParkingTicket(logId: string, type: AddParkingTicketType, xAccountId?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AddParkingTicketResponse>> {
2079
+ const localVarAxiosArgs = await localVarAxiosParamCreator.parkingAddParkingTicket(logId, type, xAccountId, options);
2080
+ return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
2081
+ },
2082
+ /**
2083
+ *
2084
+ * @param {string} id
2085
+ * @param {*} [options] Override http request option.
2086
+ * @throws {RequiredError}
2087
+ */
2088
+ async parkingDetailsGetParkingDetail(id: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetParkingDetailResponse>> {
2089
+ const localVarAxiosArgs = await localVarAxiosParamCreator.parkingDetailsGetParkingDetail(id, options);
2090
+ return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
2091
+ },
2092
+ /**
2093
+ *
2094
+ * @param {string} [orderBy]
2095
+ * @param {string} [orderDirection]
2096
+ * @param {number} [pageNumber]
2097
+ * @param {number} [pageSize]
2098
+ * @param {string} [filterBy]
953
2099
  * @param {string} [filterKey]
954
2100
  * @param {string} [startDate]
955
2101
  * @param {string} [endDate]
@@ -957,50 +2103,231 @@ export const DefaultApiFp = function(configuration?: Configuration) {
957
2103
  * @param {*} [options] Override http request option.
958
2104
  * @throws {RequiredError}
959
2105
  */
960
- async parkingDetailsIndex(orderBy?: string, orderDirection?: string, pageNumber?: number, pageSize?: number, filterBy?: string, filterKey?: string, startDate?: string, endDate?: string, status?: ParkingDetailStatus, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ResponseDataGetParkingDetailsIndexResponseArray>> {
961
- const localVarAxiosArgs = await localVarAxiosParamCreator.parkingDetailsIndex(orderBy, orderDirection, pageNumber, pageSize, filterBy, filterKey, startDate, endDate, status, options);
962
- return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
2106
+ async parkingDetailsIndex(orderBy?: string, orderDirection?: string, pageNumber?: number, pageSize?: number, filterBy?: string, filterKey?: string, startDate?: string, endDate?: string, status?: ParkingDetailStatus, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ResponseDataGetParkingDetailsIndexResponseArray>> {
2107
+ const localVarAxiosArgs = await localVarAxiosParamCreator.parkingDetailsIndex(orderBy, orderDirection, pageNumber, pageSize, filterBy, filterKey, startDate, endDate, status, options);
2108
+ return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
2109
+ },
2110
+ /**
2111
+ *
2112
+ * @param {*} [options] Override http request option.
2113
+ * @throws {RequiredError}
2114
+ */
2115
+ async testTest(options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<TestTest200Response>> {
2116
+ const localVarAxiosArgs = await localVarAxiosParamCreator.testTest(options);
2117
+ return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
2118
+ },
2119
+ }
2120
+ };
2121
+
2122
+ /**
2123
+ * DefaultApi - factory interface
2124
+ * @export
2125
+ */
2126
+ export const DefaultApiFactory = function (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) {
2127
+ const localVarFp = DefaultApiFp(configuration)
2128
+ return {
2129
+ /**
2130
+ *
2131
+ * @param {ConfigDocsTypeBody} configDocsTypeBody
2132
+ * @param {*} [options] Override http request option.
2133
+ * @throws {RequiredError}
2134
+ */
2135
+ configAddDoc(configDocsTypeBody: ConfigDocsTypeBody, options?: any): AxiosPromise<ConfigDocsTypeResponse> {
2136
+ return localVarFp.configAddDoc(configDocsTypeBody, options).then((request) => request(axios, basePath));
2137
+ },
2138
+ /**
2139
+ *
2140
+ * @param {ConfigMallAddessBody} configMallAddessBody
2141
+ * @param {*} [options] Override http request option.
2142
+ * @throws {RequiredError}
2143
+ */
2144
+ configAddMallAddress(configMallAddessBody: ConfigMallAddessBody, options?: any): AxiosPromise<ConfigMallAddressResponse> {
2145
+ return localVarFp.configAddMallAddress(configMallAddessBody, options).then((request) => request(axios, basePath));
2146
+ },
2147
+ /**
2148
+ *
2149
+ * @param {ConfigMallNameBody} configMallNameBody
2150
+ * @param {*} [options] Override http request option.
2151
+ * @throws {RequiredError}
2152
+ */
2153
+ configAddMallName(configMallNameBody: ConfigMallNameBody, options?: any): AxiosPromise<ConfigMallNameResponse> {
2154
+ return localVarFp.configAddMallName(configMallNameBody, options).then((request) => request(axios, basePath));
2155
+ },
2156
+ /**
2157
+ *
2158
+ * @param {AddConfigStoreWhitelist} addConfigStoreWhitelist
2159
+ * @param {*} [options] Override http request option.
2160
+ * @throws {RequiredError}
2161
+ */
2162
+ configAddStoreWhitelist(addConfigStoreWhitelist: AddConfigStoreWhitelist, options?: any): AxiosPromise<StoreWhitelistResponse> {
2163
+ return localVarFp.configAddStoreWhitelist(addConfigStoreWhitelist, options).then((request) => request(axios, basePath));
2164
+ },
2165
+ /**
2166
+ *
2167
+ * @param {string} id
2168
+ * @param {*} [options] Override http request option.
2169
+ * @throws {RequiredError}
2170
+ */
2171
+ configDeleteDoc(id: string, options?: any): AxiosPromise<boolean> {
2172
+ return localVarFp.configDeleteDoc(id, options).then((request) => request(axios, basePath));
2173
+ },
2174
+ /**
2175
+ *
2176
+ * @param {string} id
2177
+ * @param {*} [options] Override http request option.
2178
+ * @throws {RequiredError}
2179
+ */
2180
+ configDeleteMallAddress(id: string, options?: any): AxiosPromise<boolean> {
2181
+ return localVarFp.configDeleteMallAddress(id, options).then((request) => request(axios, basePath));
2182
+ },
2183
+ /**
2184
+ *
2185
+ * @param {string} id
2186
+ * @param {*} [options] Override http request option.
2187
+ * @throws {RequiredError}
2188
+ */
2189
+ configDeleteMallName(id: string, options?: any): AxiosPromise<boolean> {
2190
+ return localVarFp.configDeleteMallName(id, options).then((request) => request(axios, basePath));
2191
+ },
2192
+ /**
2193
+ *
2194
+ * @param {string} id
2195
+ * @param {*} [options] Override http request option.
2196
+ * @throws {RequiredError}
2197
+ */
2198
+ configDeleteStoreWhitelist(id: string, options?: any): AxiosPromise<boolean> {
2199
+ return localVarFp.configDeleteStoreWhitelist(id, options).then((request) => request(axios, basePath));
2200
+ },
2201
+ /**
2202
+ *
2203
+ * @param {*} [options] Override http request option.
2204
+ * @throws {RequiredError}
2205
+ */
2206
+ configDocIndex(options?: any): AxiosPromise<Array<ConfigDocsTypeResponse>> {
2207
+ return localVarFp.configDocIndex(options).then((request) => request(axios, basePath));
2208
+ },
2209
+ /**
2210
+ *
2211
+ * @param {string} id
2212
+ * @param {*} [options] Override http request option.
2213
+ * @throws {RequiredError}
2214
+ */
2215
+ configDocShow(id: string, options?: any): AxiosPromise<ConfigDocsTypeResponse> {
2216
+ return localVarFp.configDocShow(id, options).then((request) => request(axios, basePath));
2217
+ },
2218
+ /**
2219
+ *
2220
+ * @param {*} [options] Override http request option.
2221
+ * @throws {RequiredError}
2222
+ */
2223
+ configMallAddressIndex(options?: any): AxiosPromise<Array<ConfigMallAddressResponse>> {
2224
+ return localVarFp.configMallAddressIndex(options).then((request) => request(axios, basePath));
2225
+ },
2226
+ /**
2227
+ *
2228
+ * @param {string} id
2229
+ * @param {*} [options] Override http request option.
2230
+ * @throws {RequiredError}
2231
+ */
2232
+ configMallAddressShow(id: string, options?: any): AxiosPromise<ConfigMallAddressResponse> {
2233
+ return localVarFp.configMallAddressShow(id, options).then((request) => request(axios, basePath));
2234
+ },
2235
+ /**
2236
+ *
2237
+ * @param {*} [options] Override http request option.
2238
+ * @throws {RequiredError}
2239
+ */
2240
+ configMallNameIndex(options?: any): AxiosPromise<Array<ConfigMallNameResponse>> {
2241
+ return localVarFp.configMallNameIndex(options).then((request) => request(axios, basePath));
2242
+ },
2243
+ /**
2244
+ *
2245
+ * @param {string} id
2246
+ * @param {*} [options] Override http request option.
2247
+ * @throws {RequiredError}
2248
+ */
2249
+ configMallNameShow(id: string, options?: any): AxiosPromise<ConfigMallNameResponse> {
2250
+ return localVarFp.configMallNameShow(id, options).then((request) => request(axios, basePath));
2251
+ },
2252
+ /**
2253
+ *
2254
+ * @param {*} [options] Override http request option.
2255
+ * @throws {RequiredError}
2256
+ */
2257
+ configPropertyIndex(options?: any): AxiosPromise<Array<PropertiesResponse>> {
2258
+ return localVarFp.configPropertyIndex(options).then((request) => request(axios, basePath));
2259
+ },
2260
+ /**
2261
+ *
2262
+ * @param {string} [id]
2263
+ * @param {string} [taxId]
2264
+ * @param {string} [storeName]
2265
+ * @param {string} [companyName]
2266
+ * @param {string} [propertyName]
2267
+ * @param {string} [unitNo]
2268
+ * @param {string} [address]
2269
+ * @param {string} [building]
2270
+ * @param {boolean} [hasTaxId]
2271
+ * @param {boolean} [receiptAddressInObk]
2272
+ * @param {string} [updatedAt]
2273
+ * @param {string} [createdAt]
2274
+ * @param {string} [sortKey]
2275
+ * @param {string} [sortDirection]
2276
+ * @param {*} [options] Override http request option.
2277
+ * @throws {RequiredError}
2278
+ */
2279
+ configStoreWhitelistIndex(id?: string, taxId?: string, storeName?: string, companyName?: string, propertyName?: string, unitNo?: string, address?: string, building?: string, hasTaxId?: boolean, receiptAddressInObk?: boolean, updatedAt?: string, createdAt?: string, sortKey?: string, sortDirection?: string, options?: any): AxiosPromise<Array<StoreWhitelistResponse>> {
2280
+ return localVarFp.configStoreWhitelistIndex(id, taxId, storeName, companyName, propertyName, unitNo, address, building, hasTaxId, receiptAddressInObk, updatedAt, createdAt, sortKey, sortDirection, options).then((request) => request(axios, basePath));
963
2281
  },
964
2282
  /**
965
2283
  *
966
- * @param {UpdateReceiptBody} updateReceiptBody
2284
+ * @param {string} id
967
2285
  * @param {*} [options] Override http request option.
968
2286
  * @throws {RequiredError}
969
2287
  */
970
- async receiptUpdateReceipt(updateReceiptBody: UpdateReceiptBody, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<boolean>> {
971
- const localVarAxiosArgs = await localVarAxiosParamCreator.receiptUpdateReceipt(updateReceiptBody, options);
972
- return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
2288
+ configStoreWhitelistShow(id: string, options?: any): AxiosPromise<StoreWhitelistResponse> {
2289
+ return localVarFp.configStoreWhitelistShow(id, options).then((request) => request(axios, basePath));
973
2290
  },
974
2291
  /**
975
2292
  *
976
- * @param {string} xAccountId
977
- * @param {CreateReceiptBody} createReceiptBody
2293
+ * @param {string} id
2294
+ * @param {ConfigDocsTypeBody} configDocsTypeBody
978
2295
  * @param {*} [options] Override http request option.
979
2296
  * @throws {RequiredError}
980
2297
  */
981
- async receiptsCreateReceipt(xAccountId: string, createReceiptBody: CreateReceiptBody, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<boolean>> {
982
- const localVarAxiosArgs = await localVarAxiosParamCreator.receiptsCreateReceipt(xAccountId, createReceiptBody, options);
983
- return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
2298
+ configUpdateDoc(id: string, configDocsTypeBody: ConfigDocsTypeBody, options?: any): AxiosPromise<ConfigDocsTypeResponse> {
2299
+ return localVarFp.configUpdateDoc(id, configDocsTypeBody, options).then((request) => request(axios, basePath));
984
2300
  },
985
2301
  /**
986
2302
  *
2303
+ * @param {string} id
2304
+ * @param {ConfigMallAddessBody} configMallAddessBody
987
2305
  * @param {*} [options] Override http request option.
988
2306
  * @throws {RequiredError}
989
2307
  */
990
- async testTest(options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<TestTest200Response>> {
991
- const localVarAxiosArgs = await localVarAxiosParamCreator.testTest(options);
992
- return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
2308
+ configUpdateMallAddress(id: string, configMallAddessBody: ConfigMallAddessBody, options?: any): AxiosPromise<ConfigMallAddressResponse> {
2309
+ return localVarFp.configUpdateMallAddress(id, configMallAddessBody, options).then((request) => request(axios, basePath));
2310
+ },
2311
+ /**
2312
+ *
2313
+ * @param {string} id
2314
+ * @param {ConfigMallNameBody} configMallNameBody
2315
+ * @param {*} [options] Override http request option.
2316
+ * @throws {RequiredError}
2317
+ */
2318
+ configUpdateMallName(id: string, configMallNameBody: ConfigMallNameBody, options?: any): AxiosPromise<ConfigMallNameResponse> {
2319
+ return localVarFp.configUpdateMallName(id, configMallNameBody, options).then((request) => request(axios, basePath));
2320
+ },
2321
+ /**
2322
+ *
2323
+ * @param {string} id
2324
+ * @param {UpdateConfigStoreWhitelist} updateConfigStoreWhitelist
2325
+ * @param {*} [options] Override http request option.
2326
+ * @throws {RequiredError}
2327
+ */
2328
+ configUpdateStoreWhitelist(id: string, updateConfigStoreWhitelist: UpdateConfigStoreWhitelist, options?: any): AxiosPromise<StoreWhitelistResponse> {
2329
+ return localVarFp.configUpdateStoreWhitelist(id, updateConfigStoreWhitelist, options).then((request) => request(axios, basePath));
993
2330
  },
994
- }
995
- };
996
-
997
- /**
998
- * DefaultApi - factory interface
999
- * @export
1000
- */
1001
- export const DefaultApiFactory = function (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) {
1002
- const localVarFp = DefaultApiFp(configuration)
1003
- return {
1004
2331
  /**
1005
2332
  *
1006
2333
  * @param {string} logId
@@ -1015,17 +2342,11 @@ export const DefaultApiFactory = function (configuration?: Configuration, basePa
1015
2342
  /**
1016
2343
  *
1017
2344
  * @param {string} id
1018
- * @param {string} [orderBy]
1019
- * @param {string} [orderDirection]
1020
- * @param {number} [pageNumber]
1021
- * @param {number} [pageSize]
1022
- * @param {string} [filterBy]
1023
- * @param {string} [filterKey]
1024
2345
  * @param {*} [options] Override http request option.
1025
2346
  * @throws {RequiredError}
1026
2347
  */
1027
- parkingDetailsGetParkingDetail(id: string, orderBy?: string, orderDirection?: string, pageNumber?: number, pageSize?: number, filterBy?: string, filterKey?: string, options?: any): AxiosPromise<ResponseDataGetParkingDetailResponse> {
1028
- return localVarFp.parkingDetailsGetParkingDetail(id, orderBy, orderDirection, pageNumber, pageSize, filterBy, filterKey, options).then((request) => request(axios, basePath));
2348
+ parkingDetailsGetParkingDetail(id: string, options?: any): AxiosPromise<GetParkingDetailResponse> {
2349
+ return localVarFp.parkingDetailsGetParkingDetail(id, options).then((request) => request(axios, basePath));
1029
2350
  },
1030
2351
  /**
1031
2352
  *
@@ -1044,25 +2365,6 @@ export const DefaultApiFactory = function (configuration?: Configuration, basePa
1044
2365
  parkingDetailsIndex(orderBy?: string, orderDirection?: string, pageNumber?: number, pageSize?: number, filterBy?: string, filterKey?: string, startDate?: string, endDate?: string, status?: ParkingDetailStatus, options?: any): AxiosPromise<ResponseDataGetParkingDetailsIndexResponseArray> {
1045
2366
  return localVarFp.parkingDetailsIndex(orderBy, orderDirection, pageNumber, pageSize, filterBy, filterKey, startDate, endDate, status, options).then((request) => request(axios, basePath));
1046
2367
  },
1047
- /**
1048
- *
1049
- * @param {UpdateReceiptBody} updateReceiptBody
1050
- * @param {*} [options] Override http request option.
1051
- * @throws {RequiredError}
1052
- */
1053
- receiptUpdateReceipt(updateReceiptBody: UpdateReceiptBody, options?: any): AxiosPromise<boolean> {
1054
- return localVarFp.receiptUpdateReceipt(updateReceiptBody, options).then((request) => request(axios, basePath));
1055
- },
1056
- /**
1057
- *
1058
- * @param {string} xAccountId
1059
- * @param {CreateReceiptBody} createReceiptBody
1060
- * @param {*} [options] Override http request option.
1061
- * @throws {RequiredError}
1062
- */
1063
- receiptsCreateReceipt(xAccountId: string, createReceiptBody: CreateReceiptBody, options?: any): AxiosPromise<boolean> {
1064
- return localVarFp.receiptsCreateReceipt(xAccountId, createReceiptBody, options).then((request) => request(axios, basePath));
1065
- },
1066
2368
  /**
1067
2369
  *
1068
2370
  * @param {*} [options] Override http request option.
@@ -1083,74 +2385,289 @@ export const DefaultApiFactory = function (configuration?: Configuration, basePa
1083
2385
  export class DefaultApi extends BaseAPI {
1084
2386
  /**
1085
2387
  *
1086
- * @param {string} logId
1087
- * @param {AddParkingTicketType} type
1088
- * @param {string} [xAccountId]
2388
+ * @param {ConfigDocsTypeBody} configDocsTypeBody
1089
2389
  * @param {*} [options] Override http request option.
1090
2390
  * @throws {RequiredError}
1091
2391
  * @memberof DefaultApi
1092
2392
  */
1093
- public parkingAddParkingTicket(logId: string, type: AddParkingTicketType, xAccountId?: string, options?: AxiosRequestConfig) {
1094
- return DefaultApiFp(this.configuration).parkingAddParkingTicket(logId, type, xAccountId, options).then((request) => request(this.axios, this.basePath));
2393
+ public configAddDoc(configDocsTypeBody: ConfigDocsTypeBody, options?: AxiosRequestConfig) {
2394
+ return DefaultApiFp(this.configuration).configAddDoc(configDocsTypeBody, options).then((request) => request(this.axios, this.basePath));
2395
+ }
2396
+
2397
+ /**
2398
+ *
2399
+ * @param {ConfigMallAddessBody} configMallAddessBody
2400
+ * @param {*} [options] Override http request option.
2401
+ * @throws {RequiredError}
2402
+ * @memberof DefaultApi
2403
+ */
2404
+ public configAddMallAddress(configMallAddessBody: ConfigMallAddessBody, options?: AxiosRequestConfig) {
2405
+ return DefaultApiFp(this.configuration).configAddMallAddress(configMallAddessBody, options).then((request) => request(this.axios, this.basePath));
2406
+ }
2407
+
2408
+ /**
2409
+ *
2410
+ * @param {ConfigMallNameBody} configMallNameBody
2411
+ * @param {*} [options] Override http request option.
2412
+ * @throws {RequiredError}
2413
+ * @memberof DefaultApi
2414
+ */
2415
+ public configAddMallName(configMallNameBody: ConfigMallNameBody, options?: AxiosRequestConfig) {
2416
+ return DefaultApiFp(this.configuration).configAddMallName(configMallNameBody, options).then((request) => request(this.axios, this.basePath));
2417
+ }
2418
+
2419
+ /**
2420
+ *
2421
+ * @param {AddConfigStoreWhitelist} addConfigStoreWhitelist
2422
+ * @param {*} [options] Override http request option.
2423
+ * @throws {RequiredError}
2424
+ * @memberof DefaultApi
2425
+ */
2426
+ public configAddStoreWhitelist(addConfigStoreWhitelist: AddConfigStoreWhitelist, options?: AxiosRequestConfig) {
2427
+ return DefaultApiFp(this.configuration).configAddStoreWhitelist(addConfigStoreWhitelist, options).then((request) => request(this.axios, this.basePath));
1095
2428
  }
1096
2429
 
1097
2430
  /**
1098
2431
  *
1099
2432
  * @param {string} id
1100
- * @param {string} [orderBy]
1101
- * @param {string} [orderDirection]
1102
- * @param {number} [pageNumber]
1103
- * @param {number} [pageSize]
1104
- * @param {string} [filterBy]
1105
- * @param {string} [filterKey]
1106
2433
  * @param {*} [options] Override http request option.
1107
2434
  * @throws {RequiredError}
1108
2435
  * @memberof DefaultApi
1109
2436
  */
1110
- public parkingDetailsGetParkingDetail(id: string, orderBy?: string, orderDirection?: string, pageNumber?: number, pageSize?: number, filterBy?: string, filterKey?: string, options?: AxiosRequestConfig) {
1111
- return DefaultApiFp(this.configuration).parkingDetailsGetParkingDetail(id, orderBy, orderDirection, pageNumber, pageSize, filterBy, filterKey, options).then((request) => request(this.axios, this.basePath));
2437
+ public configDeleteDoc(id: string, options?: AxiosRequestConfig) {
2438
+ return DefaultApiFp(this.configuration).configDeleteDoc(id, options).then((request) => request(this.axios, this.basePath));
1112
2439
  }
1113
2440
 
1114
2441
  /**
1115
2442
  *
1116
- * @param {string} [orderBy]
1117
- * @param {string} [orderDirection]
1118
- * @param {number} [pageNumber]
1119
- * @param {number} [pageSize]
1120
- * @param {string} [filterBy]
1121
- * @param {string} [filterKey]
1122
- * @param {string} [startDate]
1123
- * @param {string} [endDate]
1124
- * @param {ParkingDetailStatus} [status]
2443
+ * @param {string} id
1125
2444
  * @param {*} [options] Override http request option.
1126
2445
  * @throws {RequiredError}
1127
2446
  * @memberof DefaultApi
1128
2447
  */
1129
- public parkingDetailsIndex(orderBy?: string, orderDirection?: string, pageNumber?: number, pageSize?: number, filterBy?: string, filterKey?: string, startDate?: string, endDate?: string, status?: ParkingDetailStatus, options?: AxiosRequestConfig) {
1130
- return DefaultApiFp(this.configuration).parkingDetailsIndex(orderBy, orderDirection, pageNumber, pageSize, filterBy, filterKey, startDate, endDate, status, options).then((request) => request(this.axios, this.basePath));
2448
+ public configDeleteMallAddress(id: string, options?: AxiosRequestConfig) {
2449
+ return DefaultApiFp(this.configuration).configDeleteMallAddress(id, options).then((request) => request(this.axios, this.basePath));
2450
+ }
2451
+
2452
+ /**
2453
+ *
2454
+ * @param {string} id
2455
+ * @param {*} [options] Override http request option.
2456
+ * @throws {RequiredError}
2457
+ * @memberof DefaultApi
2458
+ */
2459
+ public configDeleteMallName(id: string, options?: AxiosRequestConfig) {
2460
+ return DefaultApiFp(this.configuration).configDeleteMallName(id, options).then((request) => request(this.axios, this.basePath));
2461
+ }
2462
+
2463
+ /**
2464
+ *
2465
+ * @param {string} id
2466
+ * @param {*} [options] Override http request option.
2467
+ * @throws {RequiredError}
2468
+ * @memberof DefaultApi
2469
+ */
2470
+ public configDeleteStoreWhitelist(id: string, options?: AxiosRequestConfig) {
2471
+ return DefaultApiFp(this.configuration).configDeleteStoreWhitelist(id, options).then((request) => request(this.axios, this.basePath));
2472
+ }
2473
+
2474
+ /**
2475
+ *
2476
+ * @param {*} [options] Override http request option.
2477
+ * @throws {RequiredError}
2478
+ * @memberof DefaultApi
2479
+ */
2480
+ public configDocIndex(options?: AxiosRequestConfig) {
2481
+ return DefaultApiFp(this.configuration).configDocIndex(options).then((request) => request(this.axios, this.basePath));
2482
+ }
2483
+
2484
+ /**
2485
+ *
2486
+ * @param {string} id
2487
+ * @param {*} [options] Override http request option.
2488
+ * @throws {RequiredError}
2489
+ * @memberof DefaultApi
2490
+ */
2491
+ public configDocShow(id: string, options?: AxiosRequestConfig) {
2492
+ return DefaultApiFp(this.configuration).configDocShow(id, options).then((request) => request(this.axios, this.basePath));
2493
+ }
2494
+
2495
+ /**
2496
+ *
2497
+ * @param {*} [options] Override http request option.
2498
+ * @throws {RequiredError}
2499
+ * @memberof DefaultApi
2500
+ */
2501
+ public configMallAddressIndex(options?: AxiosRequestConfig) {
2502
+ return DefaultApiFp(this.configuration).configMallAddressIndex(options).then((request) => request(this.axios, this.basePath));
2503
+ }
2504
+
2505
+ /**
2506
+ *
2507
+ * @param {string} id
2508
+ * @param {*} [options] Override http request option.
2509
+ * @throws {RequiredError}
2510
+ * @memberof DefaultApi
2511
+ */
2512
+ public configMallAddressShow(id: string, options?: AxiosRequestConfig) {
2513
+ return DefaultApiFp(this.configuration).configMallAddressShow(id, options).then((request) => request(this.axios, this.basePath));
2514
+ }
2515
+
2516
+ /**
2517
+ *
2518
+ * @param {*} [options] Override http request option.
2519
+ * @throws {RequiredError}
2520
+ * @memberof DefaultApi
2521
+ */
2522
+ public configMallNameIndex(options?: AxiosRequestConfig) {
2523
+ return DefaultApiFp(this.configuration).configMallNameIndex(options).then((request) => request(this.axios, this.basePath));
2524
+ }
2525
+
2526
+ /**
2527
+ *
2528
+ * @param {string} id
2529
+ * @param {*} [options] Override http request option.
2530
+ * @throws {RequiredError}
2531
+ * @memberof DefaultApi
2532
+ */
2533
+ public configMallNameShow(id: string, options?: AxiosRequestConfig) {
2534
+ return DefaultApiFp(this.configuration).configMallNameShow(id, options).then((request) => request(this.axios, this.basePath));
2535
+ }
2536
+
2537
+ /**
2538
+ *
2539
+ * @param {*} [options] Override http request option.
2540
+ * @throws {RequiredError}
2541
+ * @memberof DefaultApi
2542
+ */
2543
+ public configPropertyIndex(options?: AxiosRequestConfig) {
2544
+ return DefaultApiFp(this.configuration).configPropertyIndex(options).then((request) => request(this.axios, this.basePath));
2545
+ }
2546
+
2547
+ /**
2548
+ *
2549
+ * @param {string} [id]
2550
+ * @param {string} [taxId]
2551
+ * @param {string} [storeName]
2552
+ * @param {string} [companyName]
2553
+ * @param {string} [propertyName]
2554
+ * @param {string} [unitNo]
2555
+ * @param {string} [address]
2556
+ * @param {string} [building]
2557
+ * @param {boolean} [hasTaxId]
2558
+ * @param {boolean} [receiptAddressInObk]
2559
+ * @param {string} [updatedAt]
2560
+ * @param {string} [createdAt]
2561
+ * @param {string} [sortKey]
2562
+ * @param {string} [sortDirection]
2563
+ * @param {*} [options] Override http request option.
2564
+ * @throws {RequiredError}
2565
+ * @memberof DefaultApi
2566
+ */
2567
+ public configStoreWhitelistIndex(id?: string, taxId?: string, storeName?: string, companyName?: string, propertyName?: string, unitNo?: string, address?: string, building?: string, hasTaxId?: boolean, receiptAddressInObk?: boolean, updatedAt?: string, createdAt?: string, sortKey?: string, sortDirection?: string, options?: AxiosRequestConfig) {
2568
+ return DefaultApiFp(this.configuration).configStoreWhitelistIndex(id, taxId, storeName, companyName, propertyName, unitNo, address, building, hasTaxId, receiptAddressInObk, updatedAt, createdAt, sortKey, sortDirection, options).then((request) => request(this.axios, this.basePath));
2569
+ }
2570
+
2571
+ /**
2572
+ *
2573
+ * @param {string} id
2574
+ * @param {*} [options] Override http request option.
2575
+ * @throws {RequiredError}
2576
+ * @memberof DefaultApi
2577
+ */
2578
+ public configStoreWhitelistShow(id: string, options?: AxiosRequestConfig) {
2579
+ return DefaultApiFp(this.configuration).configStoreWhitelistShow(id, options).then((request) => request(this.axios, this.basePath));
2580
+ }
2581
+
2582
+ /**
2583
+ *
2584
+ * @param {string} id
2585
+ * @param {ConfigDocsTypeBody} configDocsTypeBody
2586
+ * @param {*} [options] Override http request option.
2587
+ * @throws {RequiredError}
2588
+ * @memberof DefaultApi
2589
+ */
2590
+ public configUpdateDoc(id: string, configDocsTypeBody: ConfigDocsTypeBody, options?: AxiosRequestConfig) {
2591
+ return DefaultApiFp(this.configuration).configUpdateDoc(id, configDocsTypeBody, options).then((request) => request(this.axios, this.basePath));
2592
+ }
2593
+
2594
+ /**
2595
+ *
2596
+ * @param {string} id
2597
+ * @param {ConfigMallAddessBody} configMallAddessBody
2598
+ * @param {*} [options] Override http request option.
2599
+ * @throws {RequiredError}
2600
+ * @memberof DefaultApi
2601
+ */
2602
+ public configUpdateMallAddress(id: string, configMallAddessBody: ConfigMallAddessBody, options?: AxiosRequestConfig) {
2603
+ return DefaultApiFp(this.configuration).configUpdateMallAddress(id, configMallAddessBody, options).then((request) => request(this.axios, this.basePath));
2604
+ }
2605
+
2606
+ /**
2607
+ *
2608
+ * @param {string} id
2609
+ * @param {ConfigMallNameBody} configMallNameBody
2610
+ * @param {*} [options] Override http request option.
2611
+ * @throws {RequiredError}
2612
+ * @memberof DefaultApi
2613
+ */
2614
+ public configUpdateMallName(id: string, configMallNameBody: ConfigMallNameBody, options?: AxiosRequestConfig) {
2615
+ return DefaultApiFp(this.configuration).configUpdateMallName(id, configMallNameBody, options).then((request) => request(this.axios, this.basePath));
2616
+ }
2617
+
2618
+ /**
2619
+ *
2620
+ * @param {string} id
2621
+ * @param {UpdateConfigStoreWhitelist} updateConfigStoreWhitelist
2622
+ * @param {*} [options] Override http request option.
2623
+ * @throws {RequiredError}
2624
+ * @memberof DefaultApi
2625
+ */
2626
+ public configUpdateStoreWhitelist(id: string, updateConfigStoreWhitelist: UpdateConfigStoreWhitelist, options?: AxiosRequestConfig) {
2627
+ return DefaultApiFp(this.configuration).configUpdateStoreWhitelist(id, updateConfigStoreWhitelist, options).then((request) => request(this.axios, this.basePath));
2628
+ }
2629
+
2630
+ /**
2631
+ *
2632
+ * @param {string} logId
2633
+ * @param {AddParkingTicketType} type
2634
+ * @param {string} [xAccountId]
2635
+ * @param {*} [options] Override http request option.
2636
+ * @throws {RequiredError}
2637
+ * @memberof DefaultApi
2638
+ */
2639
+ public parkingAddParkingTicket(logId: string, type: AddParkingTicketType, xAccountId?: string, options?: AxiosRequestConfig) {
2640
+ return DefaultApiFp(this.configuration).parkingAddParkingTicket(logId, type, xAccountId, options).then((request) => request(this.axios, this.basePath));
1131
2641
  }
1132
2642
 
1133
2643
  /**
1134
2644
  *
1135
- * @param {UpdateReceiptBody} updateReceiptBody
2645
+ * @param {string} id
1136
2646
  * @param {*} [options] Override http request option.
1137
2647
  * @throws {RequiredError}
1138
2648
  * @memberof DefaultApi
1139
2649
  */
1140
- public receiptUpdateReceipt(updateReceiptBody: UpdateReceiptBody, options?: AxiosRequestConfig) {
1141
- return DefaultApiFp(this.configuration).receiptUpdateReceipt(updateReceiptBody, options).then((request) => request(this.axios, this.basePath));
2650
+ public parkingDetailsGetParkingDetail(id: string, options?: AxiosRequestConfig) {
2651
+ return DefaultApiFp(this.configuration).parkingDetailsGetParkingDetail(id, options).then((request) => request(this.axios, this.basePath));
1142
2652
  }
1143
2653
 
1144
2654
  /**
1145
2655
  *
1146
- * @param {string} xAccountId
1147
- * @param {CreateReceiptBody} createReceiptBody
2656
+ * @param {string} [orderBy]
2657
+ * @param {string} [orderDirection]
2658
+ * @param {number} [pageNumber]
2659
+ * @param {number} [pageSize]
2660
+ * @param {string} [filterBy]
2661
+ * @param {string} [filterKey]
2662
+ * @param {string} [startDate]
2663
+ * @param {string} [endDate]
2664
+ * @param {ParkingDetailStatus} [status]
1148
2665
  * @param {*} [options] Override http request option.
1149
2666
  * @throws {RequiredError}
1150
2667
  * @memberof DefaultApi
1151
2668
  */
1152
- public receiptsCreateReceipt(xAccountId: string, createReceiptBody: CreateReceiptBody, options?: AxiosRequestConfig) {
1153
- return DefaultApiFp(this.configuration).receiptsCreateReceipt(xAccountId, createReceiptBody, options).then((request) => request(this.axios, this.basePath));
2669
+ public parkingDetailsIndex(orderBy?: string, orderDirection?: string, pageNumber?: number, pageSize?: number, filterBy?: string, filterKey?: string, startDate?: string, endDate?: string, status?: ParkingDetailStatus, options?: AxiosRequestConfig) {
2670
+ return DefaultApiFp(this.configuration).parkingDetailsIndex(orderBy, orderDirection, pageNumber, pageSize, filterBy, filterKey, startDate, endDate, status, options).then((request) => request(this.axios, this.basePath));
1154
2671
  }
1155
2672
 
1156
2673
  /**