automation-lib 5.1.9 → 5.1.11
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/dist/index.d.mts +6 -1
- package/dist/index.d.ts +6 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -1702,6 +1702,9 @@ interface IAccountVPS extends IBaseModel, ITrackingModel<IUser> {
|
|
|
1702
1702
|
displayName: string;
|
|
1703
1703
|
isActive: boolean;
|
|
1704
1704
|
status: EStatusVPS;
|
|
1705
|
+
timeLastUsed: Date;
|
|
1706
|
+
lastUserUsed: string | IUser;
|
|
1707
|
+
note: string;
|
|
1705
1708
|
}
|
|
1706
1709
|
|
|
1707
1710
|
interface IAccountVPN extends IBaseModel, ITrackingModel<IUser> {
|
|
@@ -1726,6 +1729,7 @@ interface IAccountVPN extends IBaseModel, ITrackingModel<IUser> {
|
|
|
1726
1729
|
timeLastUsed: Date;
|
|
1727
1730
|
lastUserUsed: string | IUser;
|
|
1728
1731
|
note: string;
|
|
1732
|
+
currentOwner: string | IUser;
|
|
1729
1733
|
}
|
|
1730
1734
|
|
|
1731
1735
|
interface IAccountCHPlayICloud extends IBaseModel, ITrackingModel<IUser> {
|
|
@@ -1764,10 +1768,11 @@ interface IDevice extends IBaseModel, ITrackingModel<IUser> {
|
|
|
1764
1768
|
maximumVPN: number;
|
|
1765
1769
|
maximumProxy: number;
|
|
1766
1770
|
maximumCHPlayICloud: number;
|
|
1767
|
-
maximumAccountApplyPerSocial: number;
|
|
1768
1771
|
statusConnect: EStatusConnectDevice;
|
|
1769
1772
|
statusSetupBasic: EStatusSetupDeviceSystem;
|
|
1770
1773
|
statusCHPlayICloud: EStatusAccountCHPlayICloud;
|
|
1774
|
+
timeLastUsed: Date;
|
|
1775
|
+
lastUserUsed: string | IUser;
|
|
1771
1776
|
note: string;
|
|
1772
1777
|
}
|
|
1773
1778
|
|
package/dist/index.d.ts
CHANGED
|
@@ -1702,6 +1702,9 @@ interface IAccountVPS extends IBaseModel, ITrackingModel<IUser> {
|
|
|
1702
1702
|
displayName: string;
|
|
1703
1703
|
isActive: boolean;
|
|
1704
1704
|
status: EStatusVPS;
|
|
1705
|
+
timeLastUsed: Date;
|
|
1706
|
+
lastUserUsed: string | IUser;
|
|
1707
|
+
note: string;
|
|
1705
1708
|
}
|
|
1706
1709
|
|
|
1707
1710
|
interface IAccountVPN extends IBaseModel, ITrackingModel<IUser> {
|
|
@@ -1726,6 +1729,7 @@ interface IAccountVPN extends IBaseModel, ITrackingModel<IUser> {
|
|
|
1726
1729
|
timeLastUsed: Date;
|
|
1727
1730
|
lastUserUsed: string | IUser;
|
|
1728
1731
|
note: string;
|
|
1732
|
+
currentOwner: string | IUser;
|
|
1729
1733
|
}
|
|
1730
1734
|
|
|
1731
1735
|
interface IAccountCHPlayICloud extends IBaseModel, ITrackingModel<IUser> {
|
|
@@ -1764,10 +1768,11 @@ interface IDevice extends IBaseModel, ITrackingModel<IUser> {
|
|
|
1764
1768
|
maximumVPN: number;
|
|
1765
1769
|
maximumProxy: number;
|
|
1766
1770
|
maximumCHPlayICloud: number;
|
|
1767
|
-
maximumAccountApplyPerSocial: number;
|
|
1768
1771
|
statusConnect: EStatusConnectDevice;
|
|
1769
1772
|
statusSetupBasic: EStatusSetupDeviceSystem;
|
|
1770
1773
|
statusCHPlayICloud: EStatusAccountCHPlayICloud;
|
|
1774
|
+
timeLastUsed: Date;
|
|
1775
|
+
lastUserUsed: string | IUser;
|
|
1771
1776
|
note: string;
|
|
1772
1777
|
}
|
|
1773
1778
|
|