ob-parking-sdk 0.0.38 → 0.0.40
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 +42 -0
- package/dist/api/api.d.ts +42 -0
- package/package.json +1 -1
package/api/api.ts
CHANGED
|
@@ -791,6 +791,24 @@ export interface GetAllReceiptResponse {
|
|
|
791
791
|
* @memberof GetAllReceiptResponse
|
|
792
792
|
*/
|
|
793
793
|
'created_at'?: string;
|
|
794
|
+
/**
|
|
795
|
+
*
|
|
796
|
+
* @type {string}
|
|
797
|
+
* @memberof GetAllReceiptResponse
|
|
798
|
+
*/
|
|
799
|
+
'created_by'?: string;
|
|
800
|
+
/**
|
|
801
|
+
*
|
|
802
|
+
* @type {string}
|
|
803
|
+
* @memberof GetAllReceiptResponse
|
|
804
|
+
*/
|
|
805
|
+
'updated_at'?: string;
|
|
806
|
+
/**
|
|
807
|
+
*
|
|
808
|
+
* @type {string}
|
|
809
|
+
* @memberof GetAllReceiptResponse
|
|
810
|
+
*/
|
|
811
|
+
'updated_by'?: string;
|
|
794
812
|
/**
|
|
795
813
|
*
|
|
796
814
|
* @type {string}
|
|
@@ -1347,6 +1365,12 @@ export interface GetParkingDetailsIndexResponse {
|
|
|
1347
1365
|
* @memberof GetParkingDetailsIndexResponse
|
|
1348
1366
|
*/
|
|
1349
1367
|
'rate_detail'?: string;
|
|
1368
|
+
/**
|
|
1369
|
+
*
|
|
1370
|
+
* @type {string}
|
|
1371
|
+
* @memberof GetParkingDetailsIndexResponse
|
|
1372
|
+
*/
|
|
1373
|
+
'channel'?: string;
|
|
1350
1374
|
}
|
|
1351
1375
|
|
|
1352
1376
|
|
|
@@ -1540,6 +1564,12 @@ export interface ManualCreateReceiptBody {
|
|
|
1540
1564
|
* @memberof ManualCreateReceiptBody
|
|
1541
1565
|
*/
|
|
1542
1566
|
'total': string;
|
|
1567
|
+
/**
|
|
1568
|
+
*
|
|
1569
|
+
* @type {string}
|
|
1570
|
+
* @memberof ManualCreateReceiptBody
|
|
1571
|
+
*/
|
|
1572
|
+
'email'?: string;
|
|
1543
1573
|
}
|
|
1544
1574
|
/**
|
|
1545
1575
|
*
|
|
@@ -1861,6 +1891,18 @@ export interface Receipt {
|
|
|
1861
1891
|
* @memberof Receipt
|
|
1862
1892
|
*/
|
|
1863
1893
|
'updated_at': string;
|
|
1894
|
+
/**
|
|
1895
|
+
*
|
|
1896
|
+
* @type {string}
|
|
1897
|
+
* @memberof Receipt
|
|
1898
|
+
*/
|
|
1899
|
+
'created_by': string;
|
|
1900
|
+
/**
|
|
1901
|
+
*
|
|
1902
|
+
* @type {string}
|
|
1903
|
+
* @memberof Receipt
|
|
1904
|
+
*/
|
|
1905
|
+
'updated_by': string;
|
|
1864
1906
|
/**
|
|
1865
1907
|
*
|
|
1866
1908
|
* @type {ReceiptStatus}
|
package/dist/api/api.d.ts
CHANGED
|
@@ -767,6 +767,24 @@ export interface GetAllReceiptResponse {
|
|
|
767
767
|
* @memberof GetAllReceiptResponse
|
|
768
768
|
*/
|
|
769
769
|
'created_at'?: string;
|
|
770
|
+
/**
|
|
771
|
+
*
|
|
772
|
+
* @type {string}
|
|
773
|
+
* @memberof GetAllReceiptResponse
|
|
774
|
+
*/
|
|
775
|
+
'created_by'?: string;
|
|
776
|
+
/**
|
|
777
|
+
*
|
|
778
|
+
* @type {string}
|
|
779
|
+
* @memberof GetAllReceiptResponse
|
|
780
|
+
*/
|
|
781
|
+
'updated_at'?: string;
|
|
782
|
+
/**
|
|
783
|
+
*
|
|
784
|
+
* @type {string}
|
|
785
|
+
* @memberof GetAllReceiptResponse
|
|
786
|
+
*/
|
|
787
|
+
'updated_by'?: string;
|
|
770
788
|
/**
|
|
771
789
|
*
|
|
772
790
|
* @type {string}
|
|
@@ -1319,6 +1337,12 @@ export interface GetParkingDetailsIndexResponse {
|
|
|
1319
1337
|
* @memberof GetParkingDetailsIndexResponse
|
|
1320
1338
|
*/
|
|
1321
1339
|
'rate_detail'?: string;
|
|
1340
|
+
/**
|
|
1341
|
+
*
|
|
1342
|
+
* @type {string}
|
|
1343
|
+
* @memberof GetParkingDetailsIndexResponse
|
|
1344
|
+
*/
|
|
1345
|
+
'channel'?: string;
|
|
1322
1346
|
}
|
|
1323
1347
|
/**
|
|
1324
1348
|
*
|
|
@@ -1510,6 +1534,12 @@ export interface ManualCreateReceiptBody {
|
|
|
1510
1534
|
* @memberof ManualCreateReceiptBody
|
|
1511
1535
|
*/
|
|
1512
1536
|
'total': string;
|
|
1537
|
+
/**
|
|
1538
|
+
*
|
|
1539
|
+
* @type {string}
|
|
1540
|
+
* @memberof ManualCreateReceiptBody
|
|
1541
|
+
*/
|
|
1542
|
+
'email'?: string;
|
|
1513
1543
|
}
|
|
1514
1544
|
/**
|
|
1515
1545
|
*
|
|
@@ -1823,6 +1853,18 @@ export interface Receipt {
|
|
|
1823
1853
|
* @memberof Receipt
|
|
1824
1854
|
*/
|
|
1825
1855
|
'updated_at': string;
|
|
1856
|
+
/**
|
|
1857
|
+
*
|
|
1858
|
+
* @type {string}
|
|
1859
|
+
* @memberof Receipt
|
|
1860
|
+
*/
|
|
1861
|
+
'created_by': string;
|
|
1862
|
+
/**
|
|
1863
|
+
*
|
|
1864
|
+
* @type {string}
|
|
1865
|
+
* @memberof Receipt
|
|
1866
|
+
*/
|
|
1867
|
+
'updated_by': string;
|
|
1826
1868
|
/**
|
|
1827
1869
|
*
|
|
1828
1870
|
* @type {ReceiptStatus}
|