ob-parking-sdk 0.0.44 → 0.0.45
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 +6 -22
- package/dist/api/api.d.ts +6 -20
- package/dist/api/api.js +1 -7
- package/package.json +1 -1
package/api/api.ts
CHANGED
|
@@ -388,12 +388,6 @@ export interface CmsParkingDetailRedeemBody {
|
|
|
388
388
|
* @memberof CmsParkingDetailRedeemBody
|
|
389
389
|
*/
|
|
390
390
|
'type': RedeemType;
|
|
391
|
-
/**
|
|
392
|
-
*
|
|
393
|
-
* @type {string}
|
|
394
|
-
* @memberof CmsParkingDetailRedeemBody
|
|
395
|
-
*/
|
|
396
|
-
'source'?: CmsParkingDetailRedeemBodySourceEnum;
|
|
397
391
|
/**
|
|
398
392
|
*
|
|
399
393
|
* @type {string}
|
|
@@ -402,11 +396,6 @@ export interface CmsParkingDetailRedeemBody {
|
|
|
402
396
|
'custom_code'?: string;
|
|
403
397
|
}
|
|
404
398
|
|
|
405
|
-
export const CmsParkingDetailRedeemBodySourceEnum = {
|
|
406
|
-
Cms: 'cms'
|
|
407
|
-
} as const;
|
|
408
|
-
|
|
409
|
-
export type CmsParkingDetailRedeemBodySourceEnum = typeof CmsParkingDetailRedeemBodySourceEnum[keyof typeof CmsParkingDetailRedeemBodySourceEnum];
|
|
410
399
|
|
|
411
400
|
/**
|
|
412
401
|
*
|
|
@@ -617,6 +606,12 @@ export interface CreateReceiptBody {
|
|
|
617
606
|
* @memberof CreateReceiptBody
|
|
618
607
|
*/
|
|
619
608
|
'counter'?: string;
|
|
609
|
+
/**
|
|
610
|
+
*
|
|
611
|
+
* @type {boolean}
|
|
612
|
+
* @memberof CreateReceiptBody
|
|
613
|
+
*/
|
|
614
|
+
'checkHandwriting'?: boolean;
|
|
620
615
|
}
|
|
621
616
|
/**
|
|
622
617
|
*
|
|
@@ -1723,19 +1718,8 @@ export interface ParkingDetailRedeemBody {
|
|
|
1723
1718
|
* @memberof ParkingDetailRedeemBody
|
|
1724
1719
|
*/
|
|
1725
1720
|
'type': RedeemType;
|
|
1726
|
-
/**
|
|
1727
|
-
*
|
|
1728
|
-
* @type {string}
|
|
1729
|
-
* @memberof ParkingDetailRedeemBody
|
|
1730
|
-
*/
|
|
1731
|
-
'source'?: ParkingDetailRedeemBodySourceEnum;
|
|
1732
1721
|
}
|
|
1733
1722
|
|
|
1734
|
-
export const ParkingDetailRedeemBodySourceEnum = {
|
|
1735
|
-
Cms: 'cms'
|
|
1736
|
-
} as const;
|
|
1737
|
-
|
|
1738
|
-
export type ParkingDetailRedeemBodySourceEnum = typeof ParkingDetailRedeemBodySourceEnum[keyof typeof ParkingDetailRedeemBodySourceEnum];
|
|
1739
1723
|
|
|
1740
1724
|
/**
|
|
1741
1725
|
*
|
package/dist/api/api.d.ts
CHANGED
|
@@ -368,12 +368,6 @@ export interface CmsParkingDetailRedeemBody {
|
|
|
368
368
|
* @memberof CmsParkingDetailRedeemBody
|
|
369
369
|
*/
|
|
370
370
|
'type': RedeemType;
|
|
371
|
-
/**
|
|
372
|
-
*
|
|
373
|
-
* @type {string}
|
|
374
|
-
* @memberof CmsParkingDetailRedeemBody
|
|
375
|
-
*/
|
|
376
|
-
'source'?: CmsParkingDetailRedeemBodySourceEnum;
|
|
377
371
|
/**
|
|
378
372
|
*
|
|
379
373
|
* @type {string}
|
|
@@ -381,10 +375,6 @@ export interface CmsParkingDetailRedeemBody {
|
|
|
381
375
|
*/
|
|
382
376
|
'custom_code'?: string;
|
|
383
377
|
}
|
|
384
|
-
export declare const CmsParkingDetailRedeemBodySourceEnum: {
|
|
385
|
-
readonly Cms: "cms";
|
|
386
|
-
};
|
|
387
|
-
export type CmsParkingDetailRedeemBodySourceEnum = typeof CmsParkingDetailRedeemBodySourceEnum[keyof typeof CmsParkingDetailRedeemBodySourceEnum];
|
|
388
378
|
/**
|
|
389
379
|
*
|
|
390
380
|
* @export
|
|
@@ -594,6 +584,12 @@ export interface CreateReceiptBody {
|
|
|
594
584
|
* @memberof CreateReceiptBody
|
|
595
585
|
*/
|
|
596
586
|
'counter'?: string;
|
|
587
|
+
/**
|
|
588
|
+
*
|
|
589
|
+
* @type {boolean}
|
|
590
|
+
* @memberof CreateReceiptBody
|
|
591
|
+
*/
|
|
592
|
+
'checkHandwriting'?: boolean;
|
|
597
593
|
}
|
|
598
594
|
/**
|
|
599
595
|
*
|
|
@@ -1692,17 +1688,7 @@ export interface ParkingDetailRedeemBody {
|
|
|
1692
1688
|
* @memberof ParkingDetailRedeemBody
|
|
1693
1689
|
*/
|
|
1694
1690
|
'type': RedeemType;
|
|
1695
|
-
/**
|
|
1696
|
-
*
|
|
1697
|
-
* @type {string}
|
|
1698
|
-
* @memberof ParkingDetailRedeemBody
|
|
1699
|
-
*/
|
|
1700
|
-
'source'?: ParkingDetailRedeemBodySourceEnum;
|
|
1701
1691
|
}
|
|
1702
|
-
export declare const ParkingDetailRedeemBodySourceEnum: {
|
|
1703
|
-
readonly Cms: "cms";
|
|
1704
|
-
};
|
|
1705
|
-
export type ParkingDetailRedeemBodySourceEnum = typeof ParkingDetailRedeemBodySourceEnum[keyof typeof ParkingDetailRedeemBodySourceEnum];
|
|
1706
1692
|
/**
|
|
1707
1693
|
*
|
|
1708
1694
|
* @export
|
package/dist/api/api.js
CHANGED
|
@@ -25,7 +25,7 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
|
25
25
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
26
26
|
};
|
|
27
27
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
28
|
-
exports.DefaultApi = exports.DefaultApiFactory = exports.DefaultApiFp = exports.DefaultApiAxiosParamCreator = exports.RedeemType = exports.ReceiptStatus = exports.ParkingDetailStatus = exports.
|
|
28
|
+
exports.DefaultApi = exports.DefaultApiFactory = exports.DefaultApiFp = exports.DefaultApiAxiosParamCreator = exports.RedeemType = exports.ReceiptStatus = exports.ParkingDetailStatus = exports.AddParkingTicketType = exports.AddParkingTicketIdType = void 0;
|
|
29
29
|
const axios_1 = __importDefault(require("axios"));
|
|
30
30
|
// Some imports not used depending on template conditions
|
|
31
31
|
// @ts-ignore
|
|
@@ -52,12 +52,6 @@ exports.AddParkingTicketType = {
|
|
|
52
52
|
Cms: 'CMS',
|
|
53
53
|
App: 'APP'
|
|
54
54
|
};
|
|
55
|
-
exports.CmsParkingDetailRedeemBodySourceEnum = {
|
|
56
|
-
Cms: 'cms'
|
|
57
|
-
};
|
|
58
|
-
exports.ParkingDetailRedeemBodySourceEnum = {
|
|
59
|
-
Cms: 'cms'
|
|
60
|
-
};
|
|
61
55
|
/**
|
|
62
56
|
*
|
|
63
57
|
* @export
|