@xrystal/core 3.7.3 → 3.7.4
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/package.json
CHANGED
|
@@ -41,6 +41,12 @@ export declare enum ContentTypeEnum {
|
|
|
41
41
|
applicationJson = "application/json",
|
|
42
42
|
applicationXWwwFormUrlencoded = "application/x-www-form-urlencoded"
|
|
43
43
|
}
|
|
44
|
+
export declare enum DeviceStatusEnum {
|
|
45
|
+
PENDING = 0,
|
|
46
|
+
OFFLINE = 1,
|
|
47
|
+
ONLINE = 2,
|
|
48
|
+
AUTHED = 2
|
|
49
|
+
}
|
|
44
50
|
export declare enum DevicePlatformEnum {
|
|
45
51
|
WEB = "web",
|
|
46
52
|
NATIVE = "native",
|
|
@@ -49,6 +49,13 @@ export var ContentTypeEnum;
|
|
|
49
49
|
ContentTypeEnum["applicationJson"] = "application/json";
|
|
50
50
|
ContentTypeEnum["applicationXWwwFormUrlencoded"] = "application/x-www-form-urlencoded";
|
|
51
51
|
})(ContentTypeEnum || (ContentTypeEnum = {}));
|
|
52
|
+
export var DeviceStatusEnum;
|
|
53
|
+
(function (DeviceStatusEnum) {
|
|
54
|
+
DeviceStatusEnum[DeviceStatusEnum["PENDING"] = 0] = "PENDING";
|
|
55
|
+
DeviceStatusEnum[DeviceStatusEnum["OFFLINE"] = 1] = "OFFLINE";
|
|
56
|
+
DeviceStatusEnum[DeviceStatusEnum["ONLINE"] = 2] = "ONLINE";
|
|
57
|
+
DeviceStatusEnum[DeviceStatusEnum["AUTHED"] = 2] = "AUTHED";
|
|
58
|
+
})(DeviceStatusEnum || (DeviceStatusEnum = {}));
|
|
52
59
|
export var DevicePlatformEnum;
|
|
53
60
|
(function (DevicePlatformEnum) {
|
|
54
61
|
DevicePlatformEnum["WEB"] = "web";
|