ob-parking-sdk 0.0.56 → 0.0.57

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/api/api.ts CHANGED
@@ -101,6 +101,18 @@ export interface AddConfigStoreWhitelist {
101
101
  * @memberof AddConfigStoreWhitelist
102
102
  */
103
103
  'updated_by'?: string;
104
+ /**
105
+ *
106
+ * @type {boolean}
107
+ * @memberof AddConfigStoreWhitelist
108
+ */
109
+ 'ignore_store': boolean;
110
+ /**
111
+ *
112
+ * @type {boolean}
113
+ * @memberof AddConfigStoreWhitelist
114
+ */
115
+ 'ocr_verified': boolean;
104
116
  }
105
117
  /**
106
118
  *
@@ -703,69 +715,6 @@ export const EngineType = {
703
715
  export type EngineType = typeof EngineType[keyof typeof EngineType];
704
716
 
705
717
 
706
- /**
707
- *
708
- * @export
709
- * @interface ExportParkingDetailIndexQuery
710
- */
711
- export interface ExportParkingDetailIndexQuery {
712
- /**
713
- *
714
- * @type {string}
715
- * @memberof ExportParkingDetailIndexQuery
716
- */
717
- 'order_by'?: string;
718
- /**
719
- *
720
- * @type {string}
721
- * @memberof ExportParkingDetailIndexQuery
722
- */
723
- 'order_direction'?: string;
724
- /**
725
- *
726
- * @type {number}
727
- * @memberof ExportParkingDetailIndexQuery
728
- */
729
- 'page_number'?: number;
730
- /**
731
- *
732
- * @type {number}
733
- * @memberof ExportParkingDetailIndexQuery
734
- */
735
- 'page_size'?: number;
736
- /**
737
- *
738
- * @type {string}
739
- * @memberof ExportParkingDetailIndexQuery
740
- */
741
- 'filter_by'?: string;
742
- /**
743
- *
744
- * @type {string}
745
- * @memberof ExportParkingDetailIndexQuery
746
- */
747
- 'filter_key'?: string;
748
- /**
749
- *
750
- * @type {string}
751
- * @memberof ExportParkingDetailIndexQuery
752
- */
753
- 'startDate'?: string;
754
- /**
755
- *
756
- * @type {string}
757
- * @memberof ExportParkingDetailIndexQuery
758
- */
759
- 'endDate'?: string;
760
- /**
761
- *
762
- * @type {ParkingDetailStatus}
763
- * @memberof ExportParkingDetailIndexQuery
764
- */
765
- 'status'?: ParkingDetailStatus;
766
- }
767
-
768
-
769
718
  /**
770
719
  *
771
720
  * @export
@@ -1464,163 +1413,6 @@ export interface GetParkingDetailResponseRateDetail {
1464
1413
  */
1465
1414
  'en': string;
1466
1415
  }
1467
- /**
1468
- *
1469
- * @export
1470
- * @interface GetParkingDetailsExportResponse
1471
- */
1472
- export interface GetParkingDetailsExportResponse {
1473
- /**
1474
- *
1475
- * @type {string}
1476
- * @memberof GetParkingDetailsExportResponse
1477
- */
1478
- 'record_id': string;
1479
- /**
1480
- *
1481
- * @type {string}
1482
- * @memberof GetParkingDetailsExportResponse
1483
- */
1484
- 'parking_ticket_id': string;
1485
- /**
1486
- *
1487
- * @type {string}
1488
- * @memberof GetParkingDetailsExportResponse
1489
- */
1490
- 'vehicle_entry': string;
1491
- /**
1492
- *
1493
- * @type {string}
1494
- * @memberof GetParkingDetailsExportResponse
1495
- */
1496
- 'vehicle_exit': string;
1497
- /**
1498
- *
1499
- * @type {string}
1500
- * @memberof GetParkingDetailsExportResponse
1501
- */
1502
- 'total_time': string;
1503
- /**
1504
- *
1505
- * @type {string}
1506
- * @memberof GetParkingDetailsExportResponse
1507
- */
1508
- 'license_plate': string;
1509
- /**
1510
- *
1511
- * @type {string}
1512
- * @memberof GetParkingDetailsExportResponse
1513
- */
1514
- 'user_id': string;
1515
- /**
1516
- *
1517
- * @type {string}
1518
- * @memberof GetParkingDetailsExportResponse
1519
- */
1520
- 'username': string;
1521
- /**
1522
- *
1523
- * @type {string}
1524
- * @memberof GetParkingDetailsExportResponse
1525
- */
1526
- 'channel': string;
1527
- /**
1528
- *
1529
- * @type {string}
1530
- * @memberof GetParkingDetailsExportResponse
1531
- */
1532
- 'shop_name': string;
1533
- /**
1534
- *
1535
- * @type {string}
1536
- * @memberof GetParkingDetailsExportResponse
1537
- */
1538
- 'total_spent': string;
1539
- /**
1540
- *
1541
- * @type {string}
1542
- * @memberof GetParkingDetailsExportResponse
1543
- */
1544
- 'import_at': string;
1545
- /**
1546
- *
1547
- * @type {string}
1548
- * @memberof GetParkingDetailsExportResponse
1549
- */
1550
- 'rate_detail': string;
1551
- /**
1552
- *
1553
- * @type {string}
1554
- * @memberof GetParkingDetailsExportResponse
1555
- */
1556
- 'receipt_no': string;
1557
- /**
1558
- *
1559
- * @type {string}
1560
- * @memberof GetParkingDetailsExportResponse
1561
- */
1562
- 'sub_total': string;
1563
- /**
1564
- *
1565
- * @type {string}
1566
- * @memberof GetParkingDetailsExportResponse
1567
- */
1568
- 'receipt_status': string;
1569
- /**
1570
- *
1571
- * @type {string}
1572
- * @memberof GetParkingDetailsExportResponse
1573
- */
1574
- 'reason': string;
1575
- /**
1576
- *
1577
- * @type {string}
1578
- * @memberof GetParkingDetailsExportResponse
1579
- */
1580
- 'redeem_at': string;
1581
- /**
1582
- *
1583
- * @type {string}
1584
- * @memberof GetParkingDetailsExportResponse
1585
- */
1586
- 'image_url': string;
1587
- /**
1588
- *
1589
- * @type {string}
1590
- * @memberof GetParkingDetailsExportResponse
1591
- */
1592
- 'redeem_by': string;
1593
- /**
1594
- *
1595
- * @type {string}
1596
- * @memberof GetParkingDetailsExportResponse
1597
- */
1598
- 'counter': string;
1599
- /**
1600
- *
1601
- * @type {string}
1602
- * @memberof GetParkingDetailsExportResponse
1603
- */
1604
- 'parking_sub_total': string;
1605
- /**
1606
- *
1607
- * @type {string}
1608
- * @memberof GetParkingDetailsExportResponse
1609
- */
1610
- 'parking_discount': string;
1611
- /**
1612
- *
1613
- * @type {string}
1614
- * @memberof GetParkingDetailsExportResponse
1615
- */
1616
- 'parking_fee': string;
1617
- /**
1618
- *
1619
- * @type {string}
1620
- * @memberof GetParkingDetailsExportResponse
1621
- */
1622
- 'ocr_extract': string;
1623
- }
1624
1416
  /**
1625
1417
  *
1626
1418
  * @export
@@ -2826,25 +2618,6 @@ export interface ResponseDataGetParkingDetailResponse {
2826
2618
  */
2827
2619
  'pagination'?: Pagination;
2828
2620
  }
2829
- /**
2830
- *
2831
- * @export
2832
- * @interface ResponseDataGetParkingDetailsExportResponseArray
2833
- */
2834
- export interface ResponseDataGetParkingDetailsExportResponseArray {
2835
- /**
2836
- *
2837
- * @type {Array<GetParkingDetailsExportResponse>}
2838
- * @memberof ResponseDataGetParkingDetailsExportResponseArray
2839
- */
2840
- 'data': Array<GetParkingDetailsExportResponse>;
2841
- /**
2842
- *
2843
- * @type {Pagination}
2844
- * @memberof ResponseDataGetParkingDetailsExportResponseArray
2845
- */
2846
- 'pagination'?: Pagination;
2847
- }
2848
2621
  /**
2849
2622
  *
2850
2623
  * @export
@@ -2876,6 +2649,18 @@ export interface StoreWhitelistResponse {
2876
2649
  * @memberof StoreWhitelistResponse
2877
2650
  */
2878
2651
  'property': StoreWhitelistResponseProperty;
2652
+ /**
2653
+ *
2654
+ * @type {boolean}
2655
+ * @memberof StoreWhitelistResponse
2656
+ */
2657
+ 'ocr_verified': boolean;
2658
+ /**
2659
+ *
2660
+ * @type {boolean}
2661
+ * @memberof StoreWhitelistResponse
2662
+ */
2663
+ 'ignore_store': boolean;
2879
2664
  /**
2880
2665
  *
2881
2666
  * @type {boolean}
@@ -3005,6 +2790,18 @@ export interface TestTest200Response {
3005
2790
  * @interface UpdateConfigStoreWhitelist
3006
2791
  */
3007
2792
  export interface UpdateConfigStoreWhitelist {
2793
+ /**
2794
+ *
2795
+ * @type {boolean}
2796
+ * @memberof UpdateConfigStoreWhitelist
2797
+ */
2798
+ 'ocr_verified': boolean;
2799
+ /**
2800
+ *
2801
+ * @type {boolean}
2802
+ * @memberof UpdateConfigStoreWhitelist
2803
+ */
2804
+ 'ignore_store': boolean;
3008
2805
  /**
3009
2806
  *
3010
2807
  * @type {string}
@@ -4267,80 +4064,6 @@ export const DefaultApiAxiosParamCreator = function (configuration?: Configurati
4267
4064
 
4268
4065
 
4269
4066
 
4270
- setSearchParams(localVarUrlObj, localVarQueryParameter);
4271
- let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
4272
- localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
4273
-
4274
- return {
4275
- url: toPathString(localVarUrlObj),
4276
- options: localVarRequestOptions,
4277
- };
4278
- },
4279
- /**
4280
- *
4281
- * @param {string} [orderBy]
4282
- * @param {string} [orderDirection]
4283
- * @param {number} [pageNumber]
4284
- * @param {number} [pageSize]
4285
- * @param {string} [filterBy]
4286
- * @param {string} [filterKey]
4287
- * @param {string} [startDate]
4288
- * @param {string} [endDate]
4289
- * @param {ParkingDetailStatus} [status]
4290
- * @param {*} [options] Override http request option.
4291
- * @throws {RequiredError}
4292
- */
4293
- parkingDetailsExport: async (orderBy?: string, orderDirection?: string, pageNumber?: number, pageSize?: number, filterBy?: string, filterKey?: string, startDate?: string, endDate?: string, status?: ParkingDetailStatus, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
4294
- const localVarPath = `/parking-details/export`;
4295
- // use dummy base URL string because the URL constructor only accepts absolute URLs.
4296
- const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
4297
- let baseOptions;
4298
- if (configuration) {
4299
- baseOptions = configuration.baseOptions;
4300
- }
4301
-
4302
- const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
4303
- const localVarHeaderParameter = {} as any;
4304
- const localVarQueryParameter = {} as any;
4305
-
4306
- if (orderBy !== undefined) {
4307
- localVarQueryParameter['order_by'] = orderBy;
4308
- }
4309
-
4310
- if (orderDirection !== undefined) {
4311
- localVarQueryParameter['order_direction'] = orderDirection;
4312
- }
4313
-
4314
- if (pageNumber !== undefined) {
4315
- localVarQueryParameter['page_number'] = pageNumber;
4316
- }
4317
-
4318
- if (pageSize !== undefined) {
4319
- localVarQueryParameter['page_size'] = pageSize;
4320
- }
4321
-
4322
- if (filterBy !== undefined) {
4323
- localVarQueryParameter['filter_by'] = filterBy;
4324
- }
4325
-
4326
- if (filterKey !== undefined) {
4327
- localVarQueryParameter['filter_key'] = filterKey;
4328
- }
4329
-
4330
- if (startDate !== undefined) {
4331
- localVarQueryParameter['startDate'] = startDate;
4332
- }
4333
-
4334
- if (endDate !== undefined) {
4335
- localVarQueryParameter['endDate'] = endDate;
4336
- }
4337
-
4338
- if (status !== undefined) {
4339
- localVarQueryParameter['status'] = status;
4340
- }
4341
-
4342
-
4343
-
4344
4067
  setSearchParams(localVarUrlObj, localVarQueryParameter);
4345
4068
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
4346
4069
  localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
@@ -5573,24 +5296,6 @@ export const DefaultApiFp = function(configuration?: Configuration) {
5573
5296
  const localVarAxiosArgs = await localVarAxiosParamCreator.parkingAddParkingTicket(id, platform, idType, xAccountId, options);
5574
5297
  return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
5575
5298
  },
5576
- /**
5577
- *
5578
- * @param {string} [orderBy]
5579
- * @param {string} [orderDirection]
5580
- * @param {number} [pageNumber]
5581
- * @param {number} [pageSize]
5582
- * @param {string} [filterBy]
5583
- * @param {string} [filterKey]
5584
- * @param {string} [startDate]
5585
- * @param {string} [endDate]
5586
- * @param {ParkingDetailStatus} [status]
5587
- * @param {*} [options] Override http request option.
5588
- * @throws {RequiredError}
5589
- */
5590
- async parkingDetailsExport(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<ResponseDataGetParkingDetailsExportResponseArray>> {
5591
- const localVarAxiosArgs = await localVarAxiosParamCreator.parkingDetailsExport(orderBy, orderDirection, pageNumber, pageSize, filterBy, filterKey, startDate, endDate, status, options);
5592
- return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
5593
- },
5594
5299
  /**
5595
5300
  *
5596
5301
  * @param {string} id
@@ -6087,23 +5792,6 @@ export const DefaultApiFactory = function (configuration?: Configuration, basePa
6087
5792
  parkingAddParkingTicket(id: string, platform: AddParkingTicketType, idType: AddParkingTicketIdType, xAccountId?: string, options?: any): AxiosPromise<AddParkingTicketResponse> {
6088
5793
  return localVarFp.parkingAddParkingTicket(id, platform, idType, xAccountId, options).then((request) => request(axios, basePath));
6089
5794
  },
6090
- /**
6091
- *
6092
- * @param {string} [orderBy]
6093
- * @param {string} [orderDirection]
6094
- * @param {number} [pageNumber]
6095
- * @param {number} [pageSize]
6096
- * @param {string} [filterBy]
6097
- * @param {string} [filterKey]
6098
- * @param {string} [startDate]
6099
- * @param {string} [endDate]
6100
- * @param {ParkingDetailStatus} [status]
6101
- * @param {*} [options] Override http request option.
6102
- * @throws {RequiredError}
6103
- */
6104
- parkingDetailsExport(orderBy?: string, orderDirection?: string, pageNumber?: number, pageSize?: number, filterBy?: string, filterKey?: string, startDate?: string, endDate?: string, status?: ParkingDetailStatus, options?: any): AxiosPromise<ResponseDataGetParkingDetailsExportResponseArray> {
6105
- return localVarFp.parkingDetailsExport(orderBy, orderDirection, pageNumber, pageSize, filterBy, filterKey, startDate, endDate, status, options).then((request) => request(axios, basePath));
6106
- },
6107
5795
  /**
6108
5796
  *
6109
5797
  * @param {string} id
@@ -6621,25 +6309,6 @@ export class DefaultApi extends BaseAPI {
6621
6309
  return DefaultApiFp(this.configuration).parkingAddParkingTicket(id, platform, idType, xAccountId, options).then((request) => request(this.axios, this.basePath));
6622
6310
  }
6623
6311
 
6624
- /**
6625
- *
6626
- * @param {string} [orderBy]
6627
- * @param {string} [orderDirection]
6628
- * @param {number} [pageNumber]
6629
- * @param {number} [pageSize]
6630
- * @param {string} [filterBy]
6631
- * @param {string} [filterKey]
6632
- * @param {string} [startDate]
6633
- * @param {string} [endDate]
6634
- * @param {ParkingDetailStatus} [status]
6635
- * @param {*} [options] Override http request option.
6636
- * @throws {RequiredError}
6637
- * @memberof DefaultApi
6638
- */
6639
- public parkingDetailsExport(orderBy?: string, orderDirection?: string, pageNumber?: number, pageSize?: number, filterBy?: string, filterKey?: string, startDate?: string, endDate?: string, status?: ParkingDetailStatus, options?: AxiosRequestConfig) {
6640
- return DefaultApiFp(this.configuration).parkingDetailsExport(orderBy, orderDirection, pageNumber, pageSize, filterBy, filterKey, startDate, endDate, status, options).then((request) => request(this.axios, this.basePath));
6641
- }
6642
-
6643
6312
  /**
6644
6313
  *
6645
6314
  * @param {string} id
package/dist/api/api.d.ts CHANGED
@@ -91,6 +91,18 @@ export interface AddConfigStoreWhitelist {
91
91
  * @memberof AddConfigStoreWhitelist
92
92
  */
93
93
  'updated_by'?: string;
94
+ /**
95
+ *
96
+ * @type {boolean}
97
+ * @memberof AddConfigStoreWhitelist
98
+ */
99
+ 'ignore_store': boolean;
100
+ /**
101
+ *
102
+ * @type {boolean}
103
+ * @memberof AddConfigStoreWhitelist
104
+ */
105
+ 'ocr_verified': boolean;
94
106
  }
95
107
  /**
96
108
  *
@@ -674,67 +686,6 @@ export declare const EngineType: {
674
686
  readonly Ice: "ICE";
675
687
  };
676
688
  export type EngineType = typeof EngineType[keyof typeof EngineType];
677
- /**
678
- *
679
- * @export
680
- * @interface ExportParkingDetailIndexQuery
681
- */
682
- export interface ExportParkingDetailIndexQuery {
683
- /**
684
- *
685
- * @type {string}
686
- * @memberof ExportParkingDetailIndexQuery
687
- */
688
- 'order_by'?: string;
689
- /**
690
- *
691
- * @type {string}
692
- * @memberof ExportParkingDetailIndexQuery
693
- */
694
- 'order_direction'?: string;
695
- /**
696
- *
697
- * @type {number}
698
- * @memberof ExportParkingDetailIndexQuery
699
- */
700
- 'page_number'?: number;
701
- /**
702
- *
703
- * @type {number}
704
- * @memberof ExportParkingDetailIndexQuery
705
- */
706
- 'page_size'?: number;
707
- /**
708
- *
709
- * @type {string}
710
- * @memberof ExportParkingDetailIndexQuery
711
- */
712
- 'filter_by'?: string;
713
- /**
714
- *
715
- * @type {string}
716
- * @memberof ExportParkingDetailIndexQuery
717
- */
718
- 'filter_key'?: string;
719
- /**
720
- *
721
- * @type {string}
722
- * @memberof ExportParkingDetailIndexQuery
723
- */
724
- 'startDate'?: string;
725
- /**
726
- *
727
- * @type {string}
728
- * @memberof ExportParkingDetailIndexQuery
729
- */
730
- 'endDate'?: string;
731
- /**
732
- *
733
- * @type {ParkingDetailStatus}
734
- * @memberof ExportParkingDetailIndexQuery
735
- */
736
- 'status'?: ParkingDetailStatus;
737
- }
738
689
  /**
739
690
  *
740
691
  * @export
@@ -1427,163 +1378,6 @@ export interface GetParkingDetailResponseRateDetail {
1427
1378
  */
1428
1379
  'en': string;
1429
1380
  }
1430
- /**
1431
- *
1432
- * @export
1433
- * @interface GetParkingDetailsExportResponse
1434
- */
1435
- export interface GetParkingDetailsExportResponse {
1436
- /**
1437
- *
1438
- * @type {string}
1439
- * @memberof GetParkingDetailsExportResponse
1440
- */
1441
- 'record_id': string;
1442
- /**
1443
- *
1444
- * @type {string}
1445
- * @memberof GetParkingDetailsExportResponse
1446
- */
1447
- 'parking_ticket_id': string;
1448
- /**
1449
- *
1450
- * @type {string}
1451
- * @memberof GetParkingDetailsExportResponse
1452
- */
1453
- 'vehicle_entry': string;
1454
- /**
1455
- *
1456
- * @type {string}
1457
- * @memberof GetParkingDetailsExportResponse
1458
- */
1459
- 'vehicle_exit': string;
1460
- /**
1461
- *
1462
- * @type {string}
1463
- * @memberof GetParkingDetailsExportResponse
1464
- */
1465
- 'total_time': string;
1466
- /**
1467
- *
1468
- * @type {string}
1469
- * @memberof GetParkingDetailsExportResponse
1470
- */
1471
- 'license_plate': string;
1472
- /**
1473
- *
1474
- * @type {string}
1475
- * @memberof GetParkingDetailsExportResponse
1476
- */
1477
- 'user_id': string;
1478
- /**
1479
- *
1480
- * @type {string}
1481
- * @memberof GetParkingDetailsExportResponse
1482
- */
1483
- 'username': string;
1484
- /**
1485
- *
1486
- * @type {string}
1487
- * @memberof GetParkingDetailsExportResponse
1488
- */
1489
- 'channel': string;
1490
- /**
1491
- *
1492
- * @type {string}
1493
- * @memberof GetParkingDetailsExportResponse
1494
- */
1495
- 'shop_name': string;
1496
- /**
1497
- *
1498
- * @type {string}
1499
- * @memberof GetParkingDetailsExportResponse
1500
- */
1501
- 'total_spent': string;
1502
- /**
1503
- *
1504
- * @type {string}
1505
- * @memberof GetParkingDetailsExportResponse
1506
- */
1507
- 'import_at': string;
1508
- /**
1509
- *
1510
- * @type {string}
1511
- * @memberof GetParkingDetailsExportResponse
1512
- */
1513
- 'rate_detail': string;
1514
- /**
1515
- *
1516
- * @type {string}
1517
- * @memberof GetParkingDetailsExportResponse
1518
- */
1519
- 'receipt_no': string;
1520
- /**
1521
- *
1522
- * @type {string}
1523
- * @memberof GetParkingDetailsExportResponse
1524
- */
1525
- 'sub_total': string;
1526
- /**
1527
- *
1528
- * @type {string}
1529
- * @memberof GetParkingDetailsExportResponse
1530
- */
1531
- 'receipt_status': string;
1532
- /**
1533
- *
1534
- * @type {string}
1535
- * @memberof GetParkingDetailsExportResponse
1536
- */
1537
- 'reason': string;
1538
- /**
1539
- *
1540
- * @type {string}
1541
- * @memberof GetParkingDetailsExportResponse
1542
- */
1543
- 'redeem_at': string;
1544
- /**
1545
- *
1546
- * @type {string}
1547
- * @memberof GetParkingDetailsExportResponse
1548
- */
1549
- 'image_url': string;
1550
- /**
1551
- *
1552
- * @type {string}
1553
- * @memberof GetParkingDetailsExportResponse
1554
- */
1555
- 'redeem_by': string;
1556
- /**
1557
- *
1558
- * @type {string}
1559
- * @memberof GetParkingDetailsExportResponse
1560
- */
1561
- 'counter': string;
1562
- /**
1563
- *
1564
- * @type {string}
1565
- * @memberof GetParkingDetailsExportResponse
1566
- */
1567
- 'parking_sub_total': string;
1568
- /**
1569
- *
1570
- * @type {string}
1571
- * @memberof GetParkingDetailsExportResponse
1572
- */
1573
- 'parking_discount': string;
1574
- /**
1575
- *
1576
- * @type {string}
1577
- * @memberof GetParkingDetailsExportResponse
1578
- */
1579
- 'parking_fee': string;
1580
- /**
1581
- *
1582
- * @type {string}
1583
- * @memberof GetParkingDetailsExportResponse
1584
- */
1585
- 'ocr_extract': string;
1586
- }
1587
1381
  /**
1588
1382
  *
1589
1383
  * @export
@@ -2764,25 +2558,6 @@ export interface ResponseDataGetParkingDetailResponse {
2764
2558
  */
2765
2559
  'pagination'?: Pagination;
2766
2560
  }
2767
- /**
2768
- *
2769
- * @export
2770
- * @interface ResponseDataGetParkingDetailsExportResponseArray
2771
- */
2772
- export interface ResponseDataGetParkingDetailsExportResponseArray {
2773
- /**
2774
- *
2775
- * @type {Array<GetParkingDetailsExportResponse>}
2776
- * @memberof ResponseDataGetParkingDetailsExportResponseArray
2777
- */
2778
- 'data': Array<GetParkingDetailsExportResponse>;
2779
- /**
2780
- *
2781
- * @type {Pagination}
2782
- * @memberof ResponseDataGetParkingDetailsExportResponseArray
2783
- */
2784
- 'pagination'?: Pagination;
2785
- }
2786
2561
  /**
2787
2562
  *
2788
2563
  * @export
@@ -2814,6 +2589,18 @@ export interface StoreWhitelistResponse {
2814
2589
  * @memberof StoreWhitelistResponse
2815
2590
  */
2816
2591
  'property': StoreWhitelistResponseProperty;
2592
+ /**
2593
+ *
2594
+ * @type {boolean}
2595
+ * @memberof StoreWhitelistResponse
2596
+ */
2597
+ 'ocr_verified': boolean;
2598
+ /**
2599
+ *
2600
+ * @type {boolean}
2601
+ * @memberof StoreWhitelistResponse
2602
+ */
2603
+ 'ignore_store': boolean;
2817
2604
  /**
2818
2605
  *
2819
2606
  * @type {boolean}
@@ -2943,6 +2730,18 @@ export interface TestTest200Response {
2943
2730
  * @interface UpdateConfigStoreWhitelist
2944
2731
  */
2945
2732
  export interface UpdateConfigStoreWhitelist {
2733
+ /**
2734
+ *
2735
+ * @type {boolean}
2736
+ * @memberof UpdateConfigStoreWhitelist
2737
+ */
2738
+ 'ocr_verified': boolean;
2739
+ /**
2740
+ *
2741
+ * @type {boolean}
2742
+ * @memberof UpdateConfigStoreWhitelist
2743
+ */
2744
+ 'ignore_store': boolean;
2946
2745
  /**
2947
2746
  *
2948
2747
  * @type {string}
@@ -3521,21 +3320,6 @@ export declare const DefaultApiAxiosParamCreator: (configuration?: Configuration
3521
3320
  * @throws {RequiredError}
3522
3321
  */
3523
3322
  parkingAddParkingTicket: (id: string, platform: AddParkingTicketType, idType: AddParkingTicketIdType, xAccountId?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
3524
- /**
3525
- *
3526
- * @param {string} [orderBy]
3527
- * @param {string} [orderDirection]
3528
- * @param {number} [pageNumber]
3529
- * @param {number} [pageSize]
3530
- * @param {string} [filterBy]
3531
- * @param {string} [filterKey]
3532
- * @param {string} [startDate]
3533
- * @param {string} [endDate]
3534
- * @param {ParkingDetailStatus} [status]
3535
- * @param {*} [options] Override http request option.
3536
- * @throws {RequiredError}
3537
- */
3538
- parkingDetailsExport: (orderBy?: string, orderDirection?: string, pageNumber?: number, pageSize?: number, filterBy?: string, filterKey?: string, startDate?: string, endDate?: string, status?: ParkingDetailStatus, options?: AxiosRequestConfig) => Promise<RequestArgs>;
3539
3323
  /**
3540
3324
  *
3541
3325
  * @param {string} id
@@ -3915,21 +3699,6 @@ export declare const DefaultApiFp: (configuration?: Configuration) => {
3915
3699
  * @throws {RequiredError}
3916
3700
  */
3917
3701
  parkingAddParkingTicket(id: string, platform: AddParkingTicketType, idType: AddParkingTicketIdType, xAccountId?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AddParkingTicketResponse>>;
3918
- /**
3919
- *
3920
- * @param {string} [orderBy]
3921
- * @param {string} [orderDirection]
3922
- * @param {number} [pageNumber]
3923
- * @param {number} [pageSize]
3924
- * @param {string} [filterBy]
3925
- * @param {string} [filterKey]
3926
- * @param {string} [startDate]
3927
- * @param {string} [endDate]
3928
- * @param {ParkingDetailStatus} [status]
3929
- * @param {*} [options] Override http request option.
3930
- * @throws {RequiredError}
3931
- */
3932
- parkingDetailsExport(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<ResponseDataGetParkingDetailsExportResponseArray>>;
3933
3702
  /**
3934
3703
  *
3935
3704
  * @param {string} id
@@ -4309,21 +4078,6 @@ export declare const DefaultApiFactory: (configuration?: Configuration, basePath
4309
4078
  * @throws {RequiredError}
4310
4079
  */
4311
4080
  parkingAddParkingTicket(id: string, platform: AddParkingTicketType, idType: AddParkingTicketIdType, xAccountId?: string, options?: any): AxiosPromise<AddParkingTicketResponse>;
4312
- /**
4313
- *
4314
- * @param {string} [orderBy]
4315
- * @param {string} [orderDirection]
4316
- * @param {number} [pageNumber]
4317
- * @param {number} [pageSize]
4318
- * @param {string} [filterBy]
4319
- * @param {string} [filterKey]
4320
- * @param {string} [startDate]
4321
- * @param {string} [endDate]
4322
- * @param {ParkingDetailStatus} [status]
4323
- * @param {*} [options] Override http request option.
4324
- * @throws {RequiredError}
4325
- */
4326
- parkingDetailsExport(orderBy?: string, orderDirection?: string, pageNumber?: number, pageSize?: number, filterBy?: string, filterKey?: string, startDate?: string, endDate?: string, status?: ParkingDetailStatus, options?: any): AxiosPromise<ResponseDataGetParkingDetailsExportResponseArray>;
4327
4081
  /**
4328
4082
  *
4329
4083
  * @param {string} id
@@ -4727,22 +4481,6 @@ export declare class DefaultApi extends BaseAPI {
4727
4481
  * @memberof DefaultApi
4728
4482
  */
4729
4483
  parkingAddParkingTicket(id: string, platform: AddParkingTicketType, idType: AddParkingTicketIdType, xAccountId?: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<AddParkingTicketResponse, any>>;
4730
- /**
4731
- *
4732
- * @param {string} [orderBy]
4733
- * @param {string} [orderDirection]
4734
- * @param {number} [pageNumber]
4735
- * @param {number} [pageSize]
4736
- * @param {string} [filterBy]
4737
- * @param {string} [filterKey]
4738
- * @param {string} [startDate]
4739
- * @param {string} [endDate]
4740
- * @param {ParkingDetailStatus} [status]
4741
- * @param {*} [options] Override http request option.
4742
- * @throws {RequiredError}
4743
- * @memberof DefaultApi
4744
- */
4745
- parkingDetailsExport(orderBy?: string, orderDirection?: string, pageNumber?: number, pageSize?: number, filterBy?: string, filterKey?: string, startDate?: string, endDate?: string, status?: ParkingDetailStatus, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ResponseDataGetParkingDetailsExportResponseArray, any>>;
4746
4484
  /**
4747
4485
  *
4748
4486
  * @param {string} id
package/dist/api/api.js CHANGED
@@ -828,66 +828,6 @@ const DefaultApiAxiosParamCreator = function (configuration) {
828
828
  options: localVarRequestOptions,
829
829
  };
830
830
  }),
831
- /**
832
- *
833
- * @param {string} [orderBy]
834
- * @param {string} [orderDirection]
835
- * @param {number} [pageNumber]
836
- * @param {number} [pageSize]
837
- * @param {string} [filterBy]
838
- * @param {string} [filterKey]
839
- * @param {string} [startDate]
840
- * @param {string} [endDate]
841
- * @param {ParkingDetailStatus} [status]
842
- * @param {*} [options] Override http request option.
843
- * @throws {RequiredError}
844
- */
845
- parkingDetailsExport: (orderBy, orderDirection, pageNumber, pageSize, filterBy, filterKey, startDate, endDate, status, options = {}) => __awaiter(this, void 0, void 0, function* () {
846
- const localVarPath = `/parking-details/export`;
847
- // use dummy base URL string because the URL constructor only accepts absolute URLs.
848
- const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
849
- let baseOptions;
850
- if (configuration) {
851
- baseOptions = configuration.baseOptions;
852
- }
853
- const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options);
854
- const localVarHeaderParameter = {};
855
- const localVarQueryParameter = {};
856
- if (orderBy !== undefined) {
857
- localVarQueryParameter['order_by'] = orderBy;
858
- }
859
- if (orderDirection !== undefined) {
860
- localVarQueryParameter['order_direction'] = orderDirection;
861
- }
862
- if (pageNumber !== undefined) {
863
- localVarQueryParameter['page_number'] = pageNumber;
864
- }
865
- if (pageSize !== undefined) {
866
- localVarQueryParameter['page_size'] = pageSize;
867
- }
868
- if (filterBy !== undefined) {
869
- localVarQueryParameter['filter_by'] = filterBy;
870
- }
871
- if (filterKey !== undefined) {
872
- localVarQueryParameter['filter_key'] = filterKey;
873
- }
874
- if (startDate !== undefined) {
875
- localVarQueryParameter['startDate'] = startDate;
876
- }
877
- if (endDate !== undefined) {
878
- localVarQueryParameter['endDate'] = endDate;
879
- }
880
- if (status !== undefined) {
881
- localVarQueryParameter['status'] = status;
882
- }
883
- (0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
884
- let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
885
- localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
886
- return {
887
- url: (0, common_1.toPathString)(localVarUrlObj),
888
- options: localVarRequestOptions,
889
- };
890
- }),
891
831
  /**
892
832
  *
893
833
  * @param {string} id
@@ -1989,26 +1929,6 @@ const DefaultApiFp = function (configuration) {
1989
1929
  return (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration);
1990
1930
  });
1991
1931
  },
1992
- /**
1993
- *
1994
- * @param {string} [orderBy]
1995
- * @param {string} [orderDirection]
1996
- * @param {number} [pageNumber]
1997
- * @param {number} [pageSize]
1998
- * @param {string} [filterBy]
1999
- * @param {string} [filterKey]
2000
- * @param {string} [startDate]
2001
- * @param {string} [endDate]
2002
- * @param {ParkingDetailStatus} [status]
2003
- * @param {*} [options] Override http request option.
2004
- * @throws {RequiredError}
2005
- */
2006
- parkingDetailsExport(orderBy, orderDirection, pageNumber, pageSize, filterBy, filterKey, startDate, endDate, status, options) {
2007
- return __awaiter(this, void 0, void 0, function* () {
2008
- const localVarAxiosArgs = yield localVarAxiosParamCreator.parkingDetailsExport(orderBy, orderDirection, pageNumber, pageSize, filterBy, filterKey, startDate, endDate, status, options);
2009
- return (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration);
2010
- });
2011
- },
2012
1932
  /**
2013
1933
  *
2014
1934
  * @param {string} id
@@ -2551,23 +2471,6 @@ const DefaultApiFactory = function (configuration, basePath, axios) {
2551
2471
  parkingAddParkingTicket(id, platform, idType, xAccountId, options) {
2552
2472
  return localVarFp.parkingAddParkingTicket(id, platform, idType, xAccountId, options).then((request) => request(axios, basePath));
2553
2473
  },
2554
- /**
2555
- *
2556
- * @param {string} [orderBy]
2557
- * @param {string} [orderDirection]
2558
- * @param {number} [pageNumber]
2559
- * @param {number} [pageSize]
2560
- * @param {string} [filterBy]
2561
- * @param {string} [filterKey]
2562
- * @param {string} [startDate]
2563
- * @param {string} [endDate]
2564
- * @param {ParkingDetailStatus} [status]
2565
- * @param {*} [options] Override http request option.
2566
- * @throws {RequiredError}
2567
- */
2568
- parkingDetailsExport(orderBy, orderDirection, pageNumber, pageSize, filterBy, filterKey, startDate, endDate, status, options) {
2569
- return localVarFp.parkingDetailsExport(orderBy, orderDirection, pageNumber, pageSize, filterBy, filterKey, startDate, endDate, status, options).then((request) => request(axios, basePath));
2570
- },
2571
2474
  /**
2572
2475
  *
2573
2476
  * @param {string} id
@@ -3063,24 +2966,6 @@ class DefaultApi extends base_1.BaseAPI {
3063
2966
  parkingAddParkingTicket(id, platform, idType, xAccountId, options) {
3064
2967
  return (0, exports.DefaultApiFp)(this.configuration).parkingAddParkingTicket(id, platform, idType, xAccountId, options).then((request) => request(this.axios, this.basePath));
3065
2968
  }
3066
- /**
3067
- *
3068
- * @param {string} [orderBy]
3069
- * @param {string} [orderDirection]
3070
- * @param {number} [pageNumber]
3071
- * @param {number} [pageSize]
3072
- * @param {string} [filterBy]
3073
- * @param {string} [filterKey]
3074
- * @param {string} [startDate]
3075
- * @param {string} [endDate]
3076
- * @param {ParkingDetailStatus} [status]
3077
- * @param {*} [options] Override http request option.
3078
- * @throws {RequiredError}
3079
- * @memberof DefaultApi
3080
- */
3081
- parkingDetailsExport(orderBy, orderDirection, pageNumber, pageSize, filterBy, filterKey, startDate, endDate, status, options) {
3082
- return (0, exports.DefaultApiFp)(this.configuration).parkingDetailsExport(orderBy, orderDirection, pageNumber, pageSize, filterBy, filterKey, startDate, endDate, status, options).then((request) => request(this.axios, this.basePath));
3083
- }
3084
2969
  /**
3085
2970
  *
3086
2971
  * @param {string} id
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ob-parking-sdk",
3
- "version": "0.0.56",
3
+ "version": "0.0.57",
4
4
  "description": "API interfaces for OB PARKING",
5
5
  "main": "./dist/index.js",
6
6
  "license": "MIT"