ob-parking-sdk 0.0.42 → 0.0.44

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
@@ -611,6 +611,12 @@ export interface CreateReceiptBody {
611
611
  * @memberof CreateReceiptBody
612
612
  */
613
613
  'email'?: string;
614
+ /**
615
+ *
616
+ * @type {string}
617
+ * @memberof CreateReceiptBody
618
+ */
619
+ 'counter'?: string;
614
620
  }
615
621
  /**
616
622
  *
@@ -1382,9 +1388,52 @@ export interface GetParkingDetailsIndexResponse {
1382
1388
  * @memberof GetParkingDetailsIndexResponse
1383
1389
  */
1384
1390
  'channel'?: string;
1391
+ /**
1392
+ *
1393
+ * @type {string}
1394
+ * @memberof GetParkingDetailsIndexResponse
1395
+ */
1396
+ 'time_in'?: string;
1397
+ /**
1398
+ *
1399
+ * @type {string}
1400
+ * @memberof GetParkingDetailsIndexResponse
1401
+ */
1402
+ 'time_out'?: string;
1403
+ /**
1404
+ *
1405
+ * @type {string}
1406
+ * @memberof GetParkingDetailsIndexResponse
1407
+ */
1408
+ 'total_time'?: string;
1409
+ /**
1410
+ *
1411
+ * @type {GetParkingDetailsIndexResponseResponseDiscount}
1412
+ * @memberof GetParkingDetailsIndexResponse
1413
+ */
1414
+ 'response_discount'?: GetParkingDetailsIndexResponseResponseDiscount;
1415
+ /**
1416
+ *
1417
+ * @type {GetParkingDetailsIndexResponseResponseDiscount}
1418
+ * @memberof GetParkingDetailsIndexResponse
1419
+ */
1420
+ 'response_park_fee'?: GetParkingDetailsIndexResponseResponseDiscount;
1421
+ /**
1422
+ *
1423
+ * @type {GetParkingDetailsIndexResponseResponseDiscount}
1424
+ * @memberof GetParkingDetailsIndexResponse
1425
+ */
1426
+ 'response_subtotal'?: GetParkingDetailsIndexResponseResponseDiscount;
1385
1427
  }
1386
1428
 
1387
1429
 
1430
+ /**
1431
+ *
1432
+ * @export
1433
+ * @interface GetParkingDetailsIndexResponseResponseDiscount
1434
+ */
1435
+ export interface GetParkingDetailsIndexResponseResponseDiscount {
1436
+ }
1388
1437
  /**
1389
1438
  *
1390
1439
  * @export
@@ -1421,6 +1470,12 @@ export interface Health200Response {
1421
1470
  * @memberof Health200Response
1422
1471
  */
1423
1472
  'tccSetviceStatus': Health200ResponseIamSetviceStatus;
1473
+ /**
1474
+ *
1475
+ * @type {string}
1476
+ * @memberof Health200Response
1477
+ */
1478
+ 'FS_IVIVA_PARKING_API_KEY': string;
1424
1479
  /**
1425
1480
  *
1426
1481
  * @type {string}
@@ -1487,6 +1542,12 @@ export interface Health200Response {
1487
1542
  * @memberof Health200Response
1488
1543
  */
1489
1544
  'CACHE_REDIS': string;
1545
+ /**
1546
+ *
1547
+ * @type {string}
1548
+ * @memberof Health200Response
1549
+ */
1550
+ 'ENABLE_IVIVA_WORKER': string;
1490
1551
  /**
1491
1552
  *
1492
1553
  * @type {string}
@@ -1696,6 +1757,18 @@ export type ParkingDetailStatus = typeof ParkingDetailStatus[keyof typeof Parkin
1696
1757
  * @interface ParkingDetailsGetParkingDetailUid200Response
1697
1758
  */
1698
1759
  export interface ParkingDetailsGetParkingDetailUid200Response {
1760
+ /**
1761
+ *
1762
+ * @type {JsonValue}
1763
+ * @memberof ParkingDetailsGetParkingDetailUid200Response
1764
+ */
1765
+ 'iviva_meta_redemption': JsonValue | null;
1766
+ /**
1767
+ *
1768
+ * @type {JsonValue}
1769
+ * @memberof ParkingDetailsGetParkingDetailUid200Response
1770
+ */
1771
+ 'iviva_meta_revenue': JsonValue | null;
1699
1772
  /**
1700
1773
  *
1701
1774
  * @type {string}
@@ -1949,6 +2022,12 @@ export interface Receipt {
1949
2022
  * @memberof Receipt
1950
2023
  */
1951
2024
  'merchant_name'?: string;
2025
+ /**
2026
+ *
2027
+ * @type {string}
2028
+ * @memberof Receipt
2029
+ */
2030
+ 'shop_name'?: string;
1952
2031
  /**
1953
2032
  *
1954
2033
  * @type {string}
@@ -1991,6 +2070,18 @@ export interface Receipt {
1991
2070
  * @memberof Receipt
1992
2071
  */
1993
2072
  'mall_name'?: string;
2073
+ /**
2074
+ *
2075
+ * @type {ReceiptContent}
2076
+ * @memberof Receipt
2077
+ */
2078
+ 'content'?: ReceiptContent;
2079
+ /**
2080
+ *
2081
+ * @type {string}
2082
+ * @memberof Receipt
2083
+ */
2084
+ 'counter'?: string;
1994
2085
  /**
1995
2086
  *
1996
2087
  * @type {string}
@@ -2018,6 +2109,56 @@ export interface Receipt {
2018
2109
  }
2019
2110
 
2020
2111
 
2112
+ /**
2113
+ *
2114
+ * @export
2115
+ * @interface ReceiptContent
2116
+ */
2117
+ export interface ReceiptContent {
2118
+ /**
2119
+ *
2120
+ * @type {string}
2121
+ * @memberof ReceiptContent
2122
+ */
2123
+ 'total': string;
2124
+ /**
2125
+ *
2126
+ * @type {string}
2127
+ * @memberof ReceiptContent
2128
+ */
2129
+ 'raw_data': string;
2130
+ /**
2131
+ *
2132
+ * @type {ReceiptContentMatchedStore}
2133
+ * @memberof ReceiptContent
2134
+ */
2135
+ 'matched_store': ReceiptContentMatchedStore;
2136
+ }
2137
+ /**
2138
+ *
2139
+ * @export
2140
+ * @interface ReceiptContentMatchedStore
2141
+ */
2142
+ export interface ReceiptContentMatchedStore {
2143
+ /**
2144
+ *
2145
+ * @type {string}
2146
+ * @memberof ReceiptContentMatchedStore
2147
+ */
2148
+ 'store_name': string;
2149
+ /**
2150
+ *
2151
+ * @type {string}
2152
+ * @memberof ReceiptContentMatchedStore
2153
+ */
2154
+ 'shop_name': string;
2155
+ /**
2156
+ *
2157
+ * @type {string}
2158
+ * @memberof ReceiptContentMatchedStore
2159
+ */
2160
+ 'id': string;
2161
+ }
2021
2162
  /**
2022
2163
  *
2023
2164
  * @export
@@ -2407,6 +2548,12 @@ export interface UpdateReceiptBody {
2407
2548
  * @memberof UpdateReceiptBody
2408
2549
  */
2409
2550
  'merchant_name'?: string;
2551
+ /**
2552
+ *
2553
+ * @type {string}
2554
+ * @memberof UpdateReceiptBody
2555
+ */
2556
+ 'shop_name'?: string;
2410
2557
  /**
2411
2558
  *
2412
2559
  * @type {string}
package/dist/api/api.d.ts CHANGED
@@ -588,6 +588,12 @@ export interface CreateReceiptBody {
588
588
  * @memberof CreateReceiptBody
589
589
  */
590
590
  'email'?: string;
591
+ /**
592
+ *
593
+ * @type {string}
594
+ * @memberof CreateReceiptBody
595
+ */
596
+ 'counter'?: string;
591
597
  }
592
598
  /**
593
599
  *
@@ -1353,6 +1359,49 @@ export interface GetParkingDetailsIndexResponse {
1353
1359
  * @memberof GetParkingDetailsIndexResponse
1354
1360
  */
1355
1361
  'channel'?: string;
1362
+ /**
1363
+ *
1364
+ * @type {string}
1365
+ * @memberof GetParkingDetailsIndexResponse
1366
+ */
1367
+ 'time_in'?: string;
1368
+ /**
1369
+ *
1370
+ * @type {string}
1371
+ * @memberof GetParkingDetailsIndexResponse
1372
+ */
1373
+ 'time_out'?: string;
1374
+ /**
1375
+ *
1376
+ * @type {string}
1377
+ * @memberof GetParkingDetailsIndexResponse
1378
+ */
1379
+ 'total_time'?: string;
1380
+ /**
1381
+ *
1382
+ * @type {GetParkingDetailsIndexResponseResponseDiscount}
1383
+ * @memberof GetParkingDetailsIndexResponse
1384
+ */
1385
+ 'response_discount'?: GetParkingDetailsIndexResponseResponseDiscount;
1386
+ /**
1387
+ *
1388
+ * @type {GetParkingDetailsIndexResponseResponseDiscount}
1389
+ * @memberof GetParkingDetailsIndexResponse
1390
+ */
1391
+ 'response_park_fee'?: GetParkingDetailsIndexResponseResponseDiscount;
1392
+ /**
1393
+ *
1394
+ * @type {GetParkingDetailsIndexResponseResponseDiscount}
1395
+ * @memberof GetParkingDetailsIndexResponse
1396
+ */
1397
+ 'response_subtotal'?: GetParkingDetailsIndexResponseResponseDiscount;
1398
+ }
1399
+ /**
1400
+ *
1401
+ * @export
1402
+ * @interface GetParkingDetailsIndexResponseResponseDiscount
1403
+ */
1404
+ export interface GetParkingDetailsIndexResponseResponseDiscount {
1356
1405
  }
1357
1406
  /**
1358
1407
  *
@@ -1390,6 +1439,12 @@ export interface Health200Response {
1390
1439
  * @memberof Health200Response
1391
1440
  */
1392
1441
  'tccSetviceStatus': Health200ResponseIamSetviceStatus;
1442
+ /**
1443
+ *
1444
+ * @type {string}
1445
+ * @memberof Health200Response
1446
+ */
1447
+ 'FS_IVIVA_PARKING_API_KEY': string;
1393
1448
  /**
1394
1449
  *
1395
1450
  * @type {string}
@@ -1456,6 +1511,12 @@ export interface Health200Response {
1456
1511
  * @memberof Health200Response
1457
1512
  */
1458
1513
  'CACHE_REDIS': string;
1514
+ /**
1515
+ *
1516
+ * @type {string}
1517
+ * @memberof Health200Response
1518
+ */
1519
+ 'ENABLE_IVIVA_WORKER': string;
1459
1520
  /**
1460
1521
  *
1461
1522
  * @type {string}
@@ -1658,6 +1719,18 @@ export type ParkingDetailStatus = typeof ParkingDetailStatus[keyof typeof Parkin
1658
1719
  * @interface ParkingDetailsGetParkingDetailUid200Response
1659
1720
  */
1660
1721
  export interface ParkingDetailsGetParkingDetailUid200Response {
1722
+ /**
1723
+ *
1724
+ * @type {JsonValue}
1725
+ * @memberof ParkingDetailsGetParkingDetailUid200Response
1726
+ */
1727
+ 'iviva_meta_redemption': JsonValue | null;
1728
+ /**
1729
+ *
1730
+ * @type {JsonValue}
1731
+ * @memberof ParkingDetailsGetParkingDetailUid200Response
1732
+ */
1733
+ 'iviva_meta_revenue': JsonValue | null;
1661
1734
  /**
1662
1735
  *
1663
1736
  * @type {string}
@@ -1909,6 +1982,12 @@ export interface Receipt {
1909
1982
  * @memberof Receipt
1910
1983
  */
1911
1984
  'merchant_name'?: string;
1985
+ /**
1986
+ *
1987
+ * @type {string}
1988
+ * @memberof Receipt
1989
+ */
1990
+ 'shop_name'?: string;
1912
1991
  /**
1913
1992
  *
1914
1993
  * @type {string}
@@ -1951,6 +2030,18 @@ export interface Receipt {
1951
2030
  * @memberof Receipt
1952
2031
  */
1953
2032
  'mall_name'?: string;
2033
+ /**
2034
+ *
2035
+ * @type {ReceiptContent}
2036
+ * @memberof Receipt
2037
+ */
2038
+ 'content'?: ReceiptContent;
2039
+ /**
2040
+ *
2041
+ * @type {string}
2042
+ * @memberof Receipt
2043
+ */
2044
+ 'counter'?: string;
1954
2045
  /**
1955
2046
  *
1956
2047
  * @type {string}
@@ -1976,6 +2067,56 @@ export interface Receipt {
1976
2067
  */
1977
2068
  'items': Array<Item>;
1978
2069
  }
2070
+ /**
2071
+ *
2072
+ * @export
2073
+ * @interface ReceiptContent
2074
+ */
2075
+ export interface ReceiptContent {
2076
+ /**
2077
+ *
2078
+ * @type {string}
2079
+ * @memberof ReceiptContent
2080
+ */
2081
+ 'total': string;
2082
+ /**
2083
+ *
2084
+ * @type {string}
2085
+ * @memberof ReceiptContent
2086
+ */
2087
+ 'raw_data': string;
2088
+ /**
2089
+ *
2090
+ * @type {ReceiptContentMatchedStore}
2091
+ * @memberof ReceiptContent
2092
+ */
2093
+ 'matched_store': ReceiptContentMatchedStore;
2094
+ }
2095
+ /**
2096
+ *
2097
+ * @export
2098
+ * @interface ReceiptContentMatchedStore
2099
+ */
2100
+ export interface ReceiptContentMatchedStore {
2101
+ /**
2102
+ *
2103
+ * @type {string}
2104
+ * @memberof ReceiptContentMatchedStore
2105
+ */
2106
+ 'store_name': string;
2107
+ /**
2108
+ *
2109
+ * @type {string}
2110
+ * @memberof ReceiptContentMatchedStore
2111
+ */
2112
+ 'shop_name': string;
2113
+ /**
2114
+ *
2115
+ * @type {string}
2116
+ * @memberof ReceiptContentMatchedStore
2117
+ */
2118
+ 'id': string;
2119
+ }
1979
2120
  /**
1980
2121
  *
1981
2122
  * @export
@@ -2357,6 +2498,12 @@ export interface UpdateReceiptBody {
2357
2498
  * @memberof UpdateReceiptBody
2358
2499
  */
2359
2500
  'merchant_name'?: string;
2501
+ /**
2502
+ *
2503
+ * @type {string}
2504
+ * @memberof UpdateReceiptBody
2505
+ */
2506
+ 'shop_name'?: string;
2360
2507
  /**
2361
2508
  *
2362
2509
  * @type {string}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ob-parking-sdk",
3
- "version": "0.0.42",
3
+ "version": "0.0.44",
4
4
  "description": "API interfaces for OB PARKING",
5
5
  "main": "./dist/index.js",
6
6
  "license": "MIT"