ob-parking-sdk 0.0.26 → 0.0.28
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/api/api.ts +368 -84
- package/dist/api/api.d.ts +246 -57
- package/dist/api/api.js +213 -55
- package/package.json +1 -1
package/api/api.ts
CHANGED
|
@@ -41,6 +41,12 @@ export interface AddConfigStoreWhitelist {
|
|
|
41
41
|
* @memberof AddConfigStoreWhitelist
|
|
42
42
|
*/
|
|
43
43
|
'store_name': string;
|
|
44
|
+
/**
|
|
45
|
+
*
|
|
46
|
+
* @type {string}
|
|
47
|
+
* @memberof AddConfigStoreWhitelist
|
|
48
|
+
*/
|
|
49
|
+
'shop_name': string;
|
|
44
50
|
/**
|
|
45
51
|
*
|
|
46
52
|
* @type {string}
|
|
@@ -77,6 +83,12 @@ export interface AddConfigStoreWhitelist {
|
|
|
77
83
|
* @memberof AddConfigStoreWhitelist
|
|
78
84
|
*/
|
|
79
85
|
'has_tax_id': boolean;
|
|
86
|
+
/**
|
|
87
|
+
*
|
|
88
|
+
* @type {boolean}
|
|
89
|
+
* @memberof AddConfigStoreWhitelist
|
|
90
|
+
*/
|
|
91
|
+
'is_active': boolean;
|
|
80
92
|
/**
|
|
81
93
|
*
|
|
82
94
|
* @type {boolean}
|
|
@@ -99,7 +111,8 @@ export interface AddConfigStoreWhitelist {
|
|
|
99
111
|
export const AddParkingTicketIdType = {
|
|
100
112
|
LogId: 'log_id',
|
|
101
113
|
InviteId: 'invite_id',
|
|
102
|
-
MemberId: 'member_id'
|
|
114
|
+
MemberId: 'member_id',
|
|
115
|
+
LicensePlate: 'license_plate'
|
|
103
116
|
} as const;
|
|
104
117
|
|
|
105
118
|
export type AddParkingTicketIdType = typeof AddParkingTicketIdType[keyof typeof AddParkingTicketIdType];
|
|
@@ -404,45 +417,52 @@ export interface ConfigDocsTypeResponse {
|
|
|
404
417
|
/**
|
|
405
418
|
*
|
|
406
419
|
* @export
|
|
407
|
-
* @interface
|
|
420
|
+
* @interface ConfigStoreWhitelistImport200Response
|
|
408
421
|
*/
|
|
409
|
-
export interface
|
|
422
|
+
export interface ConfigStoreWhitelistImport200Response {
|
|
410
423
|
/**
|
|
411
424
|
*
|
|
412
|
-
* @type {
|
|
413
|
-
* @memberof
|
|
425
|
+
* @type {number}
|
|
426
|
+
* @memberof ConfigStoreWhitelistImport200Response
|
|
414
427
|
*/
|
|
415
|
-
'
|
|
428
|
+
'count': number;
|
|
416
429
|
/**
|
|
417
430
|
*
|
|
418
|
-
* @type {
|
|
419
|
-
* @memberof
|
|
431
|
+
* @type {boolean}
|
|
432
|
+
* @memberof ConfigStoreWhitelistImport200Response
|
|
420
433
|
*/
|
|
421
|
-
'
|
|
434
|
+
'success': boolean;
|
|
435
|
+
}
|
|
436
|
+
/**
|
|
437
|
+
*
|
|
438
|
+
* @export
|
|
439
|
+
* @interface ConfigStoreWhitelistQuery
|
|
440
|
+
*/
|
|
441
|
+
export interface ConfigStoreWhitelistQuery {
|
|
422
442
|
/**
|
|
423
443
|
*
|
|
424
444
|
* @type {string}
|
|
425
445
|
* @memberof ConfigStoreWhitelistQuery
|
|
426
446
|
*/
|
|
427
|
-
'
|
|
447
|
+
'tax_id'?: string;
|
|
428
448
|
/**
|
|
429
449
|
*
|
|
430
450
|
* @type {string}
|
|
431
451
|
* @memberof ConfigStoreWhitelistQuery
|
|
432
452
|
*/
|
|
433
|
-
'
|
|
453
|
+
'store_name'?: string;
|
|
434
454
|
/**
|
|
435
455
|
*
|
|
436
456
|
* @type {string}
|
|
437
457
|
* @memberof ConfigStoreWhitelistQuery
|
|
438
458
|
*/
|
|
439
|
-
'
|
|
459
|
+
'shop_name'?: string;
|
|
440
460
|
/**
|
|
441
461
|
*
|
|
442
462
|
* @type {string}
|
|
443
463
|
* @memberof ConfigStoreWhitelistQuery
|
|
444
464
|
*/
|
|
445
|
-
'
|
|
465
|
+
'company_name'?: string;
|
|
446
466
|
/**
|
|
447
467
|
*
|
|
448
468
|
* @type {string}
|
|
@@ -463,28 +483,28 @@ export interface ConfigStoreWhitelistQuery {
|
|
|
463
483
|
'building'?: string;
|
|
464
484
|
/**
|
|
465
485
|
*
|
|
466
|
-
* @type {
|
|
486
|
+
* @type {string}
|
|
467
487
|
* @memberof ConfigStoreWhitelistQuery
|
|
468
488
|
*/
|
|
469
|
-
'
|
|
489
|
+
'created_at'?: string;
|
|
470
490
|
/**
|
|
471
491
|
*
|
|
472
|
-
* @type {
|
|
492
|
+
* @type {string}
|
|
473
493
|
* @memberof ConfigStoreWhitelistQuery
|
|
474
494
|
*/
|
|
475
|
-
'
|
|
495
|
+
'updated_at'?: string;
|
|
476
496
|
/**
|
|
477
497
|
*
|
|
478
498
|
* @type {string}
|
|
479
499
|
* @memberof ConfigStoreWhitelistQuery
|
|
480
500
|
*/
|
|
481
|
-
'
|
|
501
|
+
'property_name'?: string;
|
|
482
502
|
/**
|
|
483
503
|
*
|
|
484
504
|
* @type {string}
|
|
485
505
|
* @memberof ConfigStoreWhitelistQuery
|
|
486
506
|
*/
|
|
487
|
-
'
|
|
507
|
+
'property_id'?: string;
|
|
488
508
|
/**
|
|
489
509
|
*
|
|
490
510
|
* @type {string}
|
|
@@ -497,6 +517,30 @@ export interface ConfigStoreWhitelistQuery {
|
|
|
497
517
|
* @memberof ConfigStoreWhitelistQuery
|
|
498
518
|
*/
|
|
499
519
|
'sort_direction'?: string;
|
|
520
|
+
/**
|
|
521
|
+
*
|
|
522
|
+
* @type {boolean}
|
|
523
|
+
* @memberof ConfigStoreWhitelistQuery
|
|
524
|
+
*/
|
|
525
|
+
'is_export'?: boolean;
|
|
526
|
+
/**
|
|
527
|
+
*
|
|
528
|
+
* @type {boolean}
|
|
529
|
+
* @memberof ConfigStoreWhitelistQuery
|
|
530
|
+
*/
|
|
531
|
+
'has_tax_id'?: boolean;
|
|
532
|
+
/**
|
|
533
|
+
*
|
|
534
|
+
* @type {boolean}
|
|
535
|
+
* @memberof ConfigStoreWhitelistQuery
|
|
536
|
+
*/
|
|
537
|
+
'receipt_address_in_obk'?: boolean;
|
|
538
|
+
/**
|
|
539
|
+
*
|
|
540
|
+
* @type {boolean}
|
|
541
|
+
* @memberof ConfigStoreWhitelistQuery
|
|
542
|
+
*/
|
|
543
|
+
'is_active'?: boolean;
|
|
500
544
|
}
|
|
501
545
|
/**
|
|
502
546
|
*
|
|
@@ -789,6 +833,12 @@ export interface GetParkingDetailIndexQuery {
|
|
|
789
833
|
* @memberof GetParkingDetailIndexQuery
|
|
790
834
|
*/
|
|
791
835
|
'status'?: ParkingDetailStatus;
|
|
836
|
+
/**
|
|
837
|
+
*
|
|
838
|
+
* @type {boolean}
|
|
839
|
+
* @memberof GetParkingDetailIndexQuery
|
|
840
|
+
*/
|
|
841
|
+
'is_export'?: boolean;
|
|
792
842
|
}
|
|
793
843
|
|
|
794
844
|
|
|
@@ -926,6 +976,18 @@ export interface GetParkingDetailsIndexResponse {
|
|
|
926
976
|
* @memberof GetParkingDetailsIndexResponse
|
|
927
977
|
*/
|
|
928
978
|
'status': ParkingDetailStatus;
|
|
979
|
+
/**
|
|
980
|
+
*
|
|
981
|
+
* @type {string}
|
|
982
|
+
* @memberof GetParkingDetailsIndexResponse
|
|
983
|
+
*/
|
|
984
|
+
'created_at'?: string;
|
|
985
|
+
/**
|
|
986
|
+
*
|
|
987
|
+
* @type {string}
|
|
988
|
+
* @memberof GetParkingDetailsIndexResponse
|
|
989
|
+
*/
|
|
990
|
+
'rate_detail'?: string;
|
|
929
991
|
}
|
|
930
992
|
|
|
931
993
|
|
|
@@ -1095,6 +1157,31 @@ export interface Item {
|
|
|
1095
1157
|
*/
|
|
1096
1158
|
export interface JsonValue {
|
|
1097
1159
|
}
|
|
1160
|
+
/**
|
|
1161
|
+
*
|
|
1162
|
+
* @export
|
|
1163
|
+
* @interface ManualCreateReceiptBody
|
|
1164
|
+
*/
|
|
1165
|
+
export interface ManualCreateReceiptBody {
|
|
1166
|
+
/**
|
|
1167
|
+
*
|
|
1168
|
+
* @type {string}
|
|
1169
|
+
* @memberof ManualCreateReceiptBody
|
|
1170
|
+
*/
|
|
1171
|
+
'parkingDetailId': string;
|
|
1172
|
+
/**
|
|
1173
|
+
*
|
|
1174
|
+
* @type {string}
|
|
1175
|
+
* @memberof ManualCreateReceiptBody
|
|
1176
|
+
*/
|
|
1177
|
+
'merchant_name': string;
|
|
1178
|
+
/**
|
|
1179
|
+
*
|
|
1180
|
+
* @type {string}
|
|
1181
|
+
* @memberof ManualCreateReceiptBody
|
|
1182
|
+
*/
|
|
1183
|
+
'total': string;
|
|
1184
|
+
}
|
|
1098
1185
|
/**
|
|
1099
1186
|
*
|
|
1100
1187
|
* @export
|
|
@@ -1451,12 +1538,6 @@ export interface Receipt {
|
|
|
1451
1538
|
* @memberof Receipt
|
|
1452
1539
|
*/
|
|
1453
1540
|
'transaction_time'?: string;
|
|
1454
|
-
/**
|
|
1455
|
-
*
|
|
1456
|
-
* @type {Array<Item>}
|
|
1457
|
-
* @memberof Receipt
|
|
1458
|
-
*/
|
|
1459
|
-
'items': Array<Item>;
|
|
1460
1541
|
/**
|
|
1461
1542
|
*
|
|
1462
1543
|
* @type {string}
|
|
@@ -1474,7 +1555,7 @@ export interface Receipt {
|
|
|
1474
1555
|
* @type {string}
|
|
1475
1556
|
* @memberof Receipt
|
|
1476
1557
|
*/
|
|
1477
|
-
'
|
|
1558
|
+
'address'?: string;
|
|
1478
1559
|
/**
|
|
1479
1560
|
*
|
|
1480
1561
|
* @type {string}
|
|
@@ -1493,12 +1574,24 @@ export interface Receipt {
|
|
|
1493
1574
|
* @memberof Receipt
|
|
1494
1575
|
*/
|
|
1495
1576
|
'hashed_receipt'?: string;
|
|
1577
|
+
/**
|
|
1578
|
+
*
|
|
1579
|
+
* @type {string}
|
|
1580
|
+
* @memberof Receipt
|
|
1581
|
+
*/
|
|
1582
|
+
'parking_detail_id'?: string;
|
|
1496
1583
|
/**
|
|
1497
1584
|
*
|
|
1498
1585
|
* @type {string}
|
|
1499
1586
|
* @memberof Receipt
|
|
1500
1587
|
*/
|
|
1501
1588
|
'redeemed_at'?: string;
|
|
1589
|
+
/**
|
|
1590
|
+
*
|
|
1591
|
+
* @type {Array<Item>}
|
|
1592
|
+
* @memberof Receipt
|
|
1593
|
+
*/
|
|
1594
|
+
'items': Array<Item>;
|
|
1502
1595
|
}
|
|
1503
1596
|
|
|
1504
1597
|
|
|
@@ -1652,6 +1745,12 @@ export interface StoreWhitelistResponse {
|
|
|
1652
1745
|
* @memberof StoreWhitelistResponse
|
|
1653
1746
|
*/
|
|
1654
1747
|
'property': StoreWhitelistResponseProperty;
|
|
1748
|
+
/**
|
|
1749
|
+
*
|
|
1750
|
+
* @type {boolean}
|
|
1751
|
+
* @memberof StoreWhitelistResponse
|
|
1752
|
+
*/
|
|
1753
|
+
'is_active': boolean;
|
|
1655
1754
|
/**
|
|
1656
1755
|
*
|
|
1657
1756
|
* @type {boolean}
|
|
@@ -1775,6 +1874,12 @@ export interface UpdateConfigStoreWhitelist {
|
|
|
1775
1874
|
* @memberof UpdateConfigStoreWhitelist
|
|
1776
1875
|
*/
|
|
1777
1876
|
'updated_by'?: string;
|
|
1877
|
+
/**
|
|
1878
|
+
*
|
|
1879
|
+
* @type {boolean}
|
|
1880
|
+
* @memberof UpdateConfigStoreWhitelist
|
|
1881
|
+
*/
|
|
1882
|
+
'is_active'?: boolean;
|
|
1778
1883
|
/**
|
|
1779
1884
|
*
|
|
1780
1885
|
* @type {boolean}
|
|
@@ -1817,6 +1922,12 @@ export interface UpdateConfigStoreWhitelist {
|
|
|
1817
1922
|
* @memberof UpdateConfigStoreWhitelist
|
|
1818
1923
|
*/
|
|
1819
1924
|
'company_name'?: string;
|
|
1925
|
+
/**
|
|
1926
|
+
*
|
|
1927
|
+
* @type {string}
|
|
1928
|
+
* @memberof UpdateConfigStoreWhitelist
|
|
1929
|
+
*/
|
|
1930
|
+
'shop_name'?: string;
|
|
1820
1931
|
/**
|
|
1821
1932
|
*
|
|
1822
1933
|
* @type {string}
|
|
@@ -2384,25 +2495,66 @@ export const DefaultApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
2384
2495
|
},
|
|
2385
2496
|
/**
|
|
2386
2497
|
*
|
|
2387
|
-
* @param {
|
|
2498
|
+
* @param {File} [file]
|
|
2499
|
+
* @param {*} [options] Override http request option.
|
|
2500
|
+
* @throws {RequiredError}
|
|
2501
|
+
*/
|
|
2502
|
+
configStoreWhitelistImport: async (file?: File, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
2503
|
+
const localVarPath = `/config/store/whitelist/import`;
|
|
2504
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
2505
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
2506
|
+
let baseOptions;
|
|
2507
|
+
if (configuration) {
|
|
2508
|
+
baseOptions = configuration.baseOptions;
|
|
2509
|
+
}
|
|
2510
|
+
|
|
2511
|
+
const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options};
|
|
2512
|
+
const localVarHeaderParameter = {} as any;
|
|
2513
|
+
const localVarQueryParameter = {} as any;
|
|
2514
|
+
const localVarFormParams = new ((configuration && configuration.formDataCtor) || FormData)();
|
|
2515
|
+
|
|
2516
|
+
|
|
2517
|
+
if (file !== undefined) {
|
|
2518
|
+
localVarFormParams.append('file', file as any);
|
|
2519
|
+
}
|
|
2520
|
+
|
|
2521
|
+
|
|
2522
|
+
localVarHeaderParameter['Content-Type'] = 'multipart/form-data';
|
|
2523
|
+
|
|
2524
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
2525
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
2526
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
2527
|
+
localVarRequestOptions.data = localVarFormParams;
|
|
2528
|
+
|
|
2529
|
+
return {
|
|
2530
|
+
url: toPathString(localVarUrlObj),
|
|
2531
|
+
options: localVarRequestOptions,
|
|
2532
|
+
};
|
|
2533
|
+
},
|
|
2534
|
+
/**
|
|
2535
|
+
*
|
|
2388
2536
|
* @param {string} [taxId]
|
|
2389
2537
|
* @param {string} [storeName]
|
|
2538
|
+
* @param {string} [shopName]
|
|
2390
2539
|
* @param {string} [companyName]
|
|
2391
|
-
* @param {string} [propertyName]
|
|
2392
|
-
* @param {string} [propertyId]
|
|
2393
2540
|
* @param {string} [unitNo]
|
|
2394
2541
|
* @param {string} [address]
|
|
2395
2542
|
* @param {string} [building]
|
|
2396
|
-
* @param {boolean} [hasTaxId]
|
|
2397
|
-
* @param {boolean} [receiptAddressInObk]
|
|
2398
|
-
* @param {string} [updatedAt]
|
|
2399
2543
|
* @param {string} [createdAt]
|
|
2544
|
+
* @param {string} [updatedAt]
|
|
2545
|
+
* @param {string} [propertyName]
|
|
2546
|
+
* @param {string} [propertyId]
|
|
2547
|
+
* @param {string} [propertyId2]
|
|
2400
2548
|
* @param {string} [sortKey]
|
|
2401
2549
|
* @param {string} [sortDirection]
|
|
2550
|
+
* @param {boolean} [isExport]
|
|
2551
|
+
* @param {boolean} [hasTaxId]
|
|
2552
|
+
* @param {boolean} [receiptAddressInObk]
|
|
2553
|
+
* @param {boolean} [isActive]
|
|
2402
2554
|
* @param {*} [options] Override http request option.
|
|
2403
2555
|
* @throws {RequiredError}
|
|
2404
2556
|
*/
|
|
2405
|
-
configStoreWhitelistIndex: async (
|
|
2557
|
+
configStoreWhitelistIndex: async (taxId?: string, storeName?: string, shopName?: string, companyName?: string, unitNo?: string, address?: string, building?: string, createdAt?: string, updatedAt?: string, propertyName?: string, propertyId?: string, propertyId2?: string, sortKey?: string, sortDirection?: string, isExport?: boolean, hasTaxId?: boolean, receiptAddressInObk?: boolean, isActive?: boolean, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
2406
2558
|
const localVarPath = `/config/store/whitelist`;
|
|
2407
2559
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
2408
2560
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -2415,10 +2567,6 @@ export const DefaultApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
2415
2567
|
const localVarHeaderParameter = {} as any;
|
|
2416
2568
|
const localVarQueryParameter = {} as any;
|
|
2417
2569
|
|
|
2418
|
-
if (id !== undefined) {
|
|
2419
|
-
localVarQueryParameter['id'] = id;
|
|
2420
|
-
}
|
|
2421
|
-
|
|
2422
2570
|
if (taxId !== undefined) {
|
|
2423
2571
|
localVarQueryParameter['tax_id'] = taxId;
|
|
2424
2572
|
}
|
|
@@ -2427,16 +2575,12 @@ export const DefaultApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
2427
2575
|
localVarQueryParameter['store_name'] = storeName;
|
|
2428
2576
|
}
|
|
2429
2577
|
|
|
2430
|
-
if (
|
|
2431
|
-
localVarQueryParameter['
|
|
2432
|
-
}
|
|
2433
|
-
|
|
2434
|
-
if (propertyName !== undefined) {
|
|
2435
|
-
localVarQueryParameter['property_name'] = propertyName;
|
|
2578
|
+
if (shopName !== undefined) {
|
|
2579
|
+
localVarQueryParameter['shop_name'] = shopName;
|
|
2436
2580
|
}
|
|
2437
2581
|
|
|
2438
|
-
if (
|
|
2439
|
-
localVarQueryParameter['
|
|
2582
|
+
if (companyName !== undefined) {
|
|
2583
|
+
localVarQueryParameter['company_name'] = companyName;
|
|
2440
2584
|
}
|
|
2441
2585
|
|
|
2442
2586
|
if (unitNo !== undefined) {
|
|
@@ -2451,12 +2595,8 @@ export const DefaultApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
2451
2595
|
localVarQueryParameter['building'] = building;
|
|
2452
2596
|
}
|
|
2453
2597
|
|
|
2454
|
-
if (
|
|
2455
|
-
localVarQueryParameter['
|
|
2456
|
-
}
|
|
2457
|
-
|
|
2458
|
-
if (receiptAddressInObk !== undefined) {
|
|
2459
|
-
localVarQueryParameter['receipt_address_in_obk'] = receiptAddressInObk;
|
|
2598
|
+
if (createdAt !== undefined) {
|
|
2599
|
+
localVarQueryParameter['created_at'] = createdAt;
|
|
2460
2600
|
}
|
|
2461
2601
|
|
|
2462
2602
|
if (updatedAt !== undefined) {
|
|
@@ -2465,8 +2605,16 @@ export const DefaultApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
2465
2605
|
updatedAt;
|
|
2466
2606
|
}
|
|
2467
2607
|
|
|
2468
|
-
if (
|
|
2469
|
-
localVarQueryParameter['
|
|
2608
|
+
if (propertyName !== undefined) {
|
|
2609
|
+
localVarQueryParameter['property_name'] = propertyName;
|
|
2610
|
+
}
|
|
2611
|
+
|
|
2612
|
+
if (propertyId !== undefined) {
|
|
2613
|
+
localVarQueryParameter['property_id'] = propertyId;
|
|
2614
|
+
}
|
|
2615
|
+
|
|
2616
|
+
if (propertyId2 !== undefined) {
|
|
2617
|
+
localVarQueryParameter['property_id'] = propertyId2;
|
|
2470
2618
|
}
|
|
2471
2619
|
|
|
2472
2620
|
if (sortKey !== undefined) {
|
|
@@ -2477,6 +2625,22 @@ export const DefaultApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
2477
2625
|
localVarQueryParameter['sort_direction'] = sortDirection;
|
|
2478
2626
|
}
|
|
2479
2627
|
|
|
2628
|
+
if (isExport !== undefined) {
|
|
2629
|
+
localVarQueryParameter['is_export'] = isExport;
|
|
2630
|
+
}
|
|
2631
|
+
|
|
2632
|
+
if (hasTaxId !== undefined) {
|
|
2633
|
+
localVarQueryParameter['has_tax_id'] = hasTaxId;
|
|
2634
|
+
}
|
|
2635
|
+
|
|
2636
|
+
if (receiptAddressInObk !== undefined) {
|
|
2637
|
+
localVarQueryParameter['receipt_address_in_obk'] = receiptAddressInObk;
|
|
2638
|
+
}
|
|
2639
|
+
|
|
2640
|
+
if (isActive !== undefined) {
|
|
2641
|
+
localVarQueryParameter['is_active'] = isActive;
|
|
2642
|
+
}
|
|
2643
|
+
|
|
2480
2644
|
|
|
2481
2645
|
|
|
2482
2646
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -2829,10 +2993,11 @@ export const DefaultApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
2829
2993
|
* @param {string} [startDate]
|
|
2830
2994
|
* @param {string} [endDate]
|
|
2831
2995
|
* @param {ParkingDetailStatus} [status]
|
|
2996
|
+
* @param {boolean} [isExport]
|
|
2832
2997
|
* @param {*} [options] Override http request option.
|
|
2833
2998
|
* @throws {RequiredError}
|
|
2834
2999
|
*/
|
|
2835
|
-
parkingDetailsIndex: async (orderBy?: string, orderDirection?: string, pageNumber?: number, pageSize?: number, filterBy?: string, filterKey?: string, startDate?: string, endDate?: string, status?: ParkingDetailStatus, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
3000
|
+
parkingDetailsIndex: async (orderBy?: string, orderDirection?: string, pageNumber?: number, pageSize?: number, filterBy?: string, filterKey?: string, startDate?: string, endDate?: string, status?: ParkingDetailStatus, isExport?: boolean, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
2836
3001
|
const localVarPath = `/parking-details`;
|
|
2837
3002
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
2838
3003
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -2881,6 +3046,10 @@ export const DefaultApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
2881
3046
|
localVarQueryParameter['status'] = status;
|
|
2882
3047
|
}
|
|
2883
3048
|
|
|
3049
|
+
if (isExport !== undefined) {
|
|
3050
|
+
localVarQueryParameter['is_export'] = isExport;
|
|
3051
|
+
}
|
|
3052
|
+
|
|
2884
3053
|
|
|
2885
3054
|
|
|
2886
3055
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -3045,6 +3214,46 @@ export const DefaultApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
3045
3214
|
options: localVarRequestOptions,
|
|
3046
3215
|
};
|
|
3047
3216
|
},
|
|
3217
|
+
/**
|
|
3218
|
+
*
|
|
3219
|
+
* @param {ManualCreateReceiptBody} manualCreateReceiptBody
|
|
3220
|
+
* @param {string} [xAccountId]
|
|
3221
|
+
* @param {*} [options] Override http request option.
|
|
3222
|
+
* @throws {RequiredError}
|
|
3223
|
+
*/
|
|
3224
|
+
receiptManualCreateReceipt: async (manualCreateReceiptBody: ManualCreateReceiptBody, xAccountId?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
3225
|
+
// verify required parameter 'manualCreateReceiptBody' is not null or undefined
|
|
3226
|
+
assertParamExists('receiptManualCreateReceipt', 'manualCreateReceiptBody', manualCreateReceiptBody)
|
|
3227
|
+
const localVarPath = `/receipt/create-receipt/manual`;
|
|
3228
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
3229
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
3230
|
+
let baseOptions;
|
|
3231
|
+
if (configuration) {
|
|
3232
|
+
baseOptions = configuration.baseOptions;
|
|
3233
|
+
}
|
|
3234
|
+
|
|
3235
|
+
const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options};
|
|
3236
|
+
const localVarHeaderParameter = {} as any;
|
|
3237
|
+
const localVarQueryParameter = {} as any;
|
|
3238
|
+
|
|
3239
|
+
if (xAccountId != null) {
|
|
3240
|
+
localVarHeaderParameter['x-account-id'] = String(xAccountId);
|
|
3241
|
+
}
|
|
3242
|
+
|
|
3243
|
+
|
|
3244
|
+
|
|
3245
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
3246
|
+
|
|
3247
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
3248
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
3249
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
3250
|
+
localVarRequestOptions.data = serializeDataIfNeeded(manualCreateReceiptBody, localVarRequestOptions, configuration)
|
|
3251
|
+
|
|
3252
|
+
return {
|
|
3253
|
+
url: toPathString(localVarUrlObj),
|
|
3254
|
+
options: localVarRequestOptions,
|
|
3255
|
+
};
|
|
3256
|
+
},
|
|
3048
3257
|
/**
|
|
3049
3258
|
*
|
|
3050
3259
|
* @param {UpdateReceiptBody} updateReceiptBody
|
|
@@ -3240,26 +3449,39 @@ export const DefaultApiFp = function(configuration?: Configuration) {
|
|
|
3240
3449
|
},
|
|
3241
3450
|
/**
|
|
3242
3451
|
*
|
|
3243
|
-
* @param {
|
|
3452
|
+
* @param {File} [file]
|
|
3453
|
+
* @param {*} [options] Override http request option.
|
|
3454
|
+
* @throws {RequiredError}
|
|
3455
|
+
*/
|
|
3456
|
+
async configStoreWhitelistImport(file?: File, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ConfigStoreWhitelistImport200Response>> {
|
|
3457
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.configStoreWhitelistImport(file, options);
|
|
3458
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
3459
|
+
},
|
|
3460
|
+
/**
|
|
3461
|
+
*
|
|
3244
3462
|
* @param {string} [taxId]
|
|
3245
3463
|
* @param {string} [storeName]
|
|
3464
|
+
* @param {string} [shopName]
|
|
3246
3465
|
* @param {string} [companyName]
|
|
3247
|
-
* @param {string} [propertyName]
|
|
3248
|
-
* @param {string} [propertyId]
|
|
3249
3466
|
* @param {string} [unitNo]
|
|
3250
3467
|
* @param {string} [address]
|
|
3251
3468
|
* @param {string} [building]
|
|
3252
|
-
* @param {boolean} [hasTaxId]
|
|
3253
|
-
* @param {boolean} [receiptAddressInObk]
|
|
3254
|
-
* @param {string} [updatedAt]
|
|
3255
3469
|
* @param {string} [createdAt]
|
|
3470
|
+
* @param {string} [updatedAt]
|
|
3471
|
+
* @param {string} [propertyName]
|
|
3472
|
+
* @param {string} [propertyId]
|
|
3473
|
+
* @param {string} [propertyId2]
|
|
3256
3474
|
* @param {string} [sortKey]
|
|
3257
3475
|
* @param {string} [sortDirection]
|
|
3476
|
+
* @param {boolean} [isExport]
|
|
3477
|
+
* @param {boolean} [hasTaxId]
|
|
3478
|
+
* @param {boolean} [receiptAddressInObk]
|
|
3479
|
+
* @param {boolean} [isActive]
|
|
3258
3480
|
* @param {*} [options] Override http request option.
|
|
3259
3481
|
* @throws {RequiredError}
|
|
3260
3482
|
*/
|
|
3261
|
-
async configStoreWhitelistIndex(
|
|
3262
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.configStoreWhitelistIndex(
|
|
3483
|
+
async configStoreWhitelistIndex(taxId?: string, storeName?: string, shopName?: string, companyName?: string, unitNo?: string, address?: string, building?: string, createdAt?: string, updatedAt?: string, propertyName?: string, propertyId?: string, propertyId2?: string, sortKey?: string, sortDirection?: string, isExport?: boolean, hasTaxId?: boolean, receiptAddressInObk?: boolean, isActive?: boolean, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<StoreWhitelistResponse>>> {
|
|
3484
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.configStoreWhitelistIndex(taxId, storeName, shopName, companyName, unitNo, address, building, createdAt, updatedAt, propertyName, propertyId, propertyId2, sortKey, sortDirection, isExport, hasTaxId, receiptAddressInObk, isActive, options);
|
|
3263
3485
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
3264
3486
|
},
|
|
3265
3487
|
/**
|
|
@@ -3364,11 +3586,12 @@ export const DefaultApiFp = function(configuration?: Configuration) {
|
|
|
3364
3586
|
* @param {string} [startDate]
|
|
3365
3587
|
* @param {string} [endDate]
|
|
3366
3588
|
* @param {ParkingDetailStatus} [status]
|
|
3589
|
+
* @param {boolean} [isExport]
|
|
3367
3590
|
* @param {*} [options] Override http request option.
|
|
3368
3591
|
* @throws {RequiredError}
|
|
3369
3592
|
*/
|
|
3370
|
-
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>> {
|
|
3371
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.parkingDetailsIndex(orderBy, orderDirection, pageNumber, pageSize, filterBy, filterKey, startDate, endDate, status, options);
|
|
3593
|
+
async parkingDetailsIndex(orderBy?: string, orderDirection?: string, pageNumber?: number, pageSize?: number, filterBy?: string, filterKey?: string, startDate?: string, endDate?: string, status?: ParkingDetailStatus, isExport?: boolean, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ResponseDataGetParkingDetailsIndexResponseArray>> {
|
|
3594
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.parkingDetailsIndex(orderBy, orderDirection, pageNumber, pageSize, filterBy, filterKey, startDate, endDate, status, isExport, options);
|
|
3372
3595
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
3373
3596
|
},
|
|
3374
3597
|
/**
|
|
@@ -3411,6 +3634,17 @@ export const DefaultApiFp = function(configuration?: Configuration) {
|
|
|
3411
3634
|
const localVarAxiosArgs = await localVarAxiosParamCreator.receiptCreateReceipt(createReceiptBody, xAccountId, options);
|
|
3412
3635
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
3413
3636
|
},
|
|
3637
|
+
/**
|
|
3638
|
+
*
|
|
3639
|
+
* @param {ManualCreateReceiptBody} manualCreateReceiptBody
|
|
3640
|
+
* @param {string} [xAccountId]
|
|
3641
|
+
* @param {*} [options] Override http request option.
|
|
3642
|
+
* @throws {RequiredError}
|
|
3643
|
+
*/
|
|
3644
|
+
async receiptManualCreateReceipt(manualCreateReceiptBody: ManualCreateReceiptBody, xAccountId?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<boolean>> {
|
|
3645
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.receiptManualCreateReceipt(manualCreateReceiptBody, xAccountId, options);
|
|
3646
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
3647
|
+
},
|
|
3414
3648
|
/**
|
|
3415
3649
|
*
|
|
3416
3650
|
* @param {UpdateReceiptBody} updateReceiptBody
|
|
@@ -3549,26 +3783,38 @@ export const DefaultApiFactory = function (configuration?: Configuration, basePa
|
|
|
3549
3783
|
},
|
|
3550
3784
|
/**
|
|
3551
3785
|
*
|
|
3552
|
-
* @param {
|
|
3786
|
+
* @param {File} [file]
|
|
3787
|
+
* @param {*} [options] Override http request option.
|
|
3788
|
+
* @throws {RequiredError}
|
|
3789
|
+
*/
|
|
3790
|
+
configStoreWhitelistImport(file?: File, options?: any): AxiosPromise<ConfigStoreWhitelistImport200Response> {
|
|
3791
|
+
return localVarFp.configStoreWhitelistImport(file, options).then((request) => request(axios, basePath));
|
|
3792
|
+
},
|
|
3793
|
+
/**
|
|
3794
|
+
*
|
|
3553
3795
|
* @param {string} [taxId]
|
|
3554
3796
|
* @param {string} [storeName]
|
|
3797
|
+
* @param {string} [shopName]
|
|
3555
3798
|
* @param {string} [companyName]
|
|
3556
|
-
* @param {string} [propertyName]
|
|
3557
|
-
* @param {string} [propertyId]
|
|
3558
3799
|
* @param {string} [unitNo]
|
|
3559
3800
|
* @param {string} [address]
|
|
3560
3801
|
* @param {string} [building]
|
|
3561
|
-
* @param {boolean} [hasTaxId]
|
|
3562
|
-
* @param {boolean} [receiptAddressInObk]
|
|
3563
|
-
* @param {string} [updatedAt]
|
|
3564
3802
|
* @param {string} [createdAt]
|
|
3803
|
+
* @param {string} [updatedAt]
|
|
3804
|
+
* @param {string} [propertyName]
|
|
3805
|
+
* @param {string} [propertyId]
|
|
3806
|
+
* @param {string} [propertyId2]
|
|
3565
3807
|
* @param {string} [sortKey]
|
|
3566
3808
|
* @param {string} [sortDirection]
|
|
3809
|
+
* @param {boolean} [isExport]
|
|
3810
|
+
* @param {boolean} [hasTaxId]
|
|
3811
|
+
* @param {boolean} [receiptAddressInObk]
|
|
3812
|
+
* @param {boolean} [isActive]
|
|
3567
3813
|
* @param {*} [options] Override http request option.
|
|
3568
3814
|
* @throws {RequiredError}
|
|
3569
3815
|
*/
|
|
3570
|
-
configStoreWhitelistIndex(
|
|
3571
|
-
return localVarFp.configStoreWhitelistIndex(
|
|
3816
|
+
configStoreWhitelistIndex(taxId?: string, storeName?: string, shopName?: string, companyName?: string, unitNo?: string, address?: string, building?: string, createdAt?: string, updatedAt?: string, propertyName?: string, propertyId?: string, propertyId2?: string, sortKey?: string, sortDirection?: string, isExport?: boolean, hasTaxId?: boolean, receiptAddressInObk?: boolean, isActive?: boolean, options?: any): AxiosPromise<Array<StoreWhitelistResponse>> {
|
|
3817
|
+
return localVarFp.configStoreWhitelistIndex(taxId, storeName, shopName, companyName, unitNo, address, building, createdAt, updatedAt, propertyName, propertyId, propertyId2, sortKey, sortDirection, isExport, hasTaxId, receiptAddressInObk, isActive, options).then((request) => request(axios, basePath));
|
|
3572
3818
|
},
|
|
3573
3819
|
/**
|
|
3574
3820
|
*
|
|
@@ -3664,11 +3910,12 @@ export const DefaultApiFactory = function (configuration?: Configuration, basePa
|
|
|
3664
3910
|
* @param {string} [startDate]
|
|
3665
3911
|
* @param {string} [endDate]
|
|
3666
3912
|
* @param {ParkingDetailStatus} [status]
|
|
3913
|
+
* @param {boolean} [isExport]
|
|
3667
3914
|
* @param {*} [options] Override http request option.
|
|
3668
3915
|
* @throws {RequiredError}
|
|
3669
3916
|
*/
|
|
3670
|
-
parkingDetailsIndex(orderBy?: string, orderDirection?: string, pageNumber?: number, pageSize?: number, filterBy?: string, filterKey?: string, startDate?: string, endDate?: string, status?: ParkingDetailStatus, options?: any): AxiosPromise<ResponseDataGetParkingDetailsIndexResponseArray> {
|
|
3671
|
-
return localVarFp.parkingDetailsIndex(orderBy, orderDirection, pageNumber, pageSize, filterBy, filterKey, startDate, endDate, status, options).then((request) => request(axios, basePath));
|
|
3917
|
+
parkingDetailsIndex(orderBy?: string, orderDirection?: string, pageNumber?: number, pageSize?: number, filterBy?: string, filterKey?: string, startDate?: string, endDate?: string, status?: ParkingDetailStatus, isExport?: boolean, options?: any): AxiosPromise<ResponseDataGetParkingDetailsIndexResponseArray> {
|
|
3918
|
+
return localVarFp.parkingDetailsIndex(orderBy, orderDirection, pageNumber, pageSize, filterBy, filterKey, startDate, endDate, status, isExport, options).then((request) => request(axios, basePath));
|
|
3672
3919
|
},
|
|
3673
3920
|
/**
|
|
3674
3921
|
*
|
|
@@ -3707,6 +3954,16 @@ export const DefaultApiFactory = function (configuration?: Configuration, basePa
|
|
|
3707
3954
|
receiptCreateReceipt(createReceiptBody: CreateReceiptBody, xAccountId?: string, options?: any): AxiosPromise<boolean> {
|
|
3708
3955
|
return localVarFp.receiptCreateReceipt(createReceiptBody, xAccountId, options).then((request) => request(axios, basePath));
|
|
3709
3956
|
},
|
|
3957
|
+
/**
|
|
3958
|
+
*
|
|
3959
|
+
* @param {ManualCreateReceiptBody} manualCreateReceiptBody
|
|
3960
|
+
* @param {string} [xAccountId]
|
|
3961
|
+
* @param {*} [options] Override http request option.
|
|
3962
|
+
* @throws {RequiredError}
|
|
3963
|
+
*/
|
|
3964
|
+
receiptManualCreateReceipt(manualCreateReceiptBody: ManualCreateReceiptBody, xAccountId?: string, options?: any): AxiosPromise<boolean> {
|
|
3965
|
+
return localVarFp.receiptManualCreateReceipt(manualCreateReceiptBody, xAccountId, options).then((request) => request(axios, basePath));
|
|
3966
|
+
},
|
|
3710
3967
|
/**
|
|
3711
3968
|
*
|
|
3712
3969
|
* @param {UpdateReceiptBody} updateReceiptBody
|
|
@@ -3867,27 +4124,41 @@ export class DefaultApi extends BaseAPI {
|
|
|
3867
4124
|
|
|
3868
4125
|
/**
|
|
3869
4126
|
*
|
|
3870
|
-
* @param {
|
|
4127
|
+
* @param {File} [file]
|
|
4128
|
+
* @param {*} [options] Override http request option.
|
|
4129
|
+
* @throws {RequiredError}
|
|
4130
|
+
* @memberof DefaultApi
|
|
4131
|
+
*/
|
|
4132
|
+
public configStoreWhitelistImport(file?: File, options?: AxiosRequestConfig) {
|
|
4133
|
+
return DefaultApiFp(this.configuration).configStoreWhitelistImport(file, options).then((request) => request(this.axios, this.basePath));
|
|
4134
|
+
}
|
|
4135
|
+
|
|
4136
|
+
/**
|
|
4137
|
+
*
|
|
3871
4138
|
* @param {string} [taxId]
|
|
3872
4139
|
* @param {string} [storeName]
|
|
4140
|
+
* @param {string} [shopName]
|
|
3873
4141
|
* @param {string} [companyName]
|
|
3874
|
-
* @param {string} [propertyName]
|
|
3875
|
-
* @param {string} [propertyId]
|
|
3876
4142
|
* @param {string} [unitNo]
|
|
3877
4143
|
* @param {string} [address]
|
|
3878
4144
|
* @param {string} [building]
|
|
3879
|
-
* @param {boolean} [hasTaxId]
|
|
3880
|
-
* @param {boolean} [receiptAddressInObk]
|
|
3881
|
-
* @param {string} [updatedAt]
|
|
3882
4145
|
* @param {string} [createdAt]
|
|
4146
|
+
* @param {string} [updatedAt]
|
|
4147
|
+
* @param {string} [propertyName]
|
|
4148
|
+
* @param {string} [propertyId]
|
|
4149
|
+
* @param {string} [propertyId2]
|
|
3883
4150
|
* @param {string} [sortKey]
|
|
3884
4151
|
* @param {string} [sortDirection]
|
|
4152
|
+
* @param {boolean} [isExport]
|
|
4153
|
+
* @param {boolean} [hasTaxId]
|
|
4154
|
+
* @param {boolean} [receiptAddressInObk]
|
|
4155
|
+
* @param {boolean} [isActive]
|
|
3885
4156
|
* @param {*} [options] Override http request option.
|
|
3886
4157
|
* @throws {RequiredError}
|
|
3887
4158
|
* @memberof DefaultApi
|
|
3888
4159
|
*/
|
|
3889
|
-
public configStoreWhitelistIndex(
|
|
3890
|
-
return DefaultApiFp(this.configuration).configStoreWhitelistIndex(
|
|
4160
|
+
public configStoreWhitelistIndex(taxId?: string, storeName?: string, shopName?: string, companyName?: string, unitNo?: string, address?: string, building?: string, createdAt?: string, updatedAt?: string, propertyName?: string, propertyId?: string, propertyId2?: string, sortKey?: string, sortDirection?: string, isExport?: boolean, hasTaxId?: boolean, receiptAddressInObk?: boolean, isActive?: boolean, options?: AxiosRequestConfig) {
|
|
4161
|
+
return DefaultApiFp(this.configuration).configStoreWhitelistIndex(taxId, storeName, shopName, companyName, unitNo, address, building, createdAt, updatedAt, propertyName, propertyId, propertyId2, sortKey, sortDirection, isExport, hasTaxId, receiptAddressInObk, isActive, options).then((request) => request(this.axios, this.basePath));
|
|
3891
4162
|
}
|
|
3892
4163
|
|
|
3893
4164
|
/**
|
|
@@ -4000,12 +4271,13 @@ export class DefaultApi extends BaseAPI {
|
|
|
4000
4271
|
* @param {string} [startDate]
|
|
4001
4272
|
* @param {string} [endDate]
|
|
4002
4273
|
* @param {ParkingDetailStatus} [status]
|
|
4274
|
+
* @param {boolean} [isExport]
|
|
4003
4275
|
* @param {*} [options] Override http request option.
|
|
4004
4276
|
* @throws {RequiredError}
|
|
4005
4277
|
* @memberof DefaultApi
|
|
4006
4278
|
*/
|
|
4007
|
-
public parkingDetailsIndex(orderBy?: string, orderDirection?: string, pageNumber?: number, pageSize?: number, filterBy?: string, filterKey?: string, startDate?: string, endDate?: string, status?: ParkingDetailStatus, options?: AxiosRequestConfig) {
|
|
4008
|
-
return DefaultApiFp(this.configuration).parkingDetailsIndex(orderBy, orderDirection, pageNumber, pageSize, filterBy, filterKey, startDate, endDate, status, options).then((request) => request(this.axios, this.basePath));
|
|
4279
|
+
public parkingDetailsIndex(orderBy?: string, orderDirection?: string, pageNumber?: number, pageSize?: number, filterBy?: string, filterKey?: string, startDate?: string, endDate?: string, status?: ParkingDetailStatus, isExport?: boolean, options?: AxiosRequestConfig) {
|
|
4280
|
+
return DefaultApiFp(this.configuration).parkingDetailsIndex(orderBy, orderDirection, pageNumber, pageSize, filterBy, filterKey, startDate, endDate, status, isExport, options).then((request) => request(this.axios, this.basePath));
|
|
4009
4281
|
}
|
|
4010
4282
|
|
|
4011
4283
|
/**
|
|
@@ -4051,6 +4323,18 @@ export class DefaultApi extends BaseAPI {
|
|
|
4051
4323
|
return DefaultApiFp(this.configuration).receiptCreateReceipt(createReceiptBody, xAccountId, options).then((request) => request(this.axios, this.basePath));
|
|
4052
4324
|
}
|
|
4053
4325
|
|
|
4326
|
+
/**
|
|
4327
|
+
*
|
|
4328
|
+
* @param {ManualCreateReceiptBody} manualCreateReceiptBody
|
|
4329
|
+
* @param {string} [xAccountId]
|
|
4330
|
+
* @param {*} [options] Override http request option.
|
|
4331
|
+
* @throws {RequiredError}
|
|
4332
|
+
* @memberof DefaultApi
|
|
4333
|
+
*/
|
|
4334
|
+
public receiptManualCreateReceipt(manualCreateReceiptBody: ManualCreateReceiptBody, xAccountId?: string, options?: AxiosRequestConfig) {
|
|
4335
|
+
return DefaultApiFp(this.configuration).receiptManualCreateReceipt(manualCreateReceiptBody, xAccountId, options).then((request) => request(this.axios, this.basePath));
|
|
4336
|
+
}
|
|
4337
|
+
|
|
4054
4338
|
/**
|
|
4055
4339
|
*
|
|
4056
4340
|
* @param {UpdateReceiptBody} updateReceiptBody
|