automation-lib 5.4.382 → 5.4.384
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 +58 -18
- package/dist/index.d.ts +58 -18
- package/dist/index.js +123 -1
- package/dist/index.mjs +115 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -71,6 +71,8 @@ __export(index_exports, {
|
|
|
71
71
|
ESheetToolTimeCrawl: () => ESheetToolTimeCrawl,
|
|
72
72
|
EStartStop: () => EStartStop,
|
|
73
73
|
EStatusAccountAI: () => EStatusAccountAI,
|
|
74
|
+
EStatusAccountCHPlayICloud: () => EStatusAccountCHPlayICloud,
|
|
75
|
+
EStatusAccountCanva: () => EStatusAccountCanva,
|
|
74
76
|
EStatusAccountDrive: () => EStatusAccountDrive,
|
|
75
77
|
EStatusAccountSocialCheckAuth: () => EStatusAccountSocialCheckAuth,
|
|
76
78
|
EStatusAccountSocialFolderName: () => EStatusAccountSocialFolderName,
|
|
@@ -81,6 +83,7 @@ __export(index_exports, {
|
|
|
81
83
|
EStatusAccountSocialSetting: () => EStatusAccountSocialSetting,
|
|
82
84
|
EStatusAccountSocialSync: () => EStatusAccountSocialSync,
|
|
83
85
|
EStatusAccountSocialSyncInstagramThreads: () => EStatusAccountSocialSyncInstagramThreads,
|
|
86
|
+
EStatusAccountVPN: () => EStatusAccountVPN,
|
|
84
87
|
EStatusActive: () => EStatusActive,
|
|
85
88
|
EStatusBlog: () => EStatusBlog,
|
|
86
89
|
EStatusChangeInfo: () => EStatusChangeInfo,
|
|
@@ -101,6 +104,7 @@ __export(index_exports, {
|
|
|
101
104
|
EStatusDeviceSetupSettingTask: () => EStatusDeviceSetupSettingTask,
|
|
102
105
|
EStatusDeviceSync: () => EStatusDeviceSync,
|
|
103
106
|
EStatusEditPost: () => EStatusEditPost,
|
|
107
|
+
EStatusEmail: () => EStatusEmail,
|
|
104
108
|
EStatusExecuteCommon: () => EStatusExecuteCommon,
|
|
105
109
|
EStatusGenerate: () => EStatusGenerate,
|
|
106
110
|
EStatusImportAccountSocial: () => EStatusImportAccountSocial,
|
|
@@ -109,6 +113,8 @@ __export(index_exports, {
|
|
|
109
113
|
EStatusPC: () => EStatusPC,
|
|
110
114
|
EStatusPCControl: () => EStatusPCControl,
|
|
111
115
|
EStatusPost: () => EStatusPost,
|
|
116
|
+
EStatusProxyChecked: () => EStatusProxyChecked,
|
|
117
|
+
EStatusProxyNewIP: () => EStatusProxyNewIP,
|
|
112
118
|
EStatusRole: () => EStatusRole,
|
|
113
119
|
EStatusSheetWork: () => EStatusSheetWork,
|
|
114
120
|
EStatusTaskAIContent: () => EStatusTaskAIContent,
|
|
@@ -122,6 +128,8 @@ __export(index_exports, {
|
|
|
122
128
|
EStatusTaskVoice: () => EStatusTaskVoice,
|
|
123
129
|
EStatusTeam: () => EStatusTeam,
|
|
124
130
|
EStatusUser: () => EStatusUser,
|
|
131
|
+
EStatusVPS: () => EStatusVPS,
|
|
132
|
+
EStatusVPSReplace: () => EStatusVPSReplace,
|
|
125
133
|
ETimeFilter: () => ETimeFilter,
|
|
126
134
|
ETimeZone: () => ETimeZone,
|
|
127
135
|
EToolName: () => EToolName,
|
|
@@ -2101,7 +2109,15 @@ var models_exports = {};
|
|
|
2101
2109
|
__export(models_exports, {
|
|
2102
2110
|
Auth: () => auth_exports,
|
|
2103
2111
|
Common: () => common_exports,
|
|
2112
|
+
EStatusAccountCHPlayICloud: () => EStatusAccountCHPlayICloud,
|
|
2113
|
+
EStatusAccountCanva: () => EStatusAccountCanva,
|
|
2104
2114
|
EStatusAccountDrive: () => EStatusAccountDrive,
|
|
2115
|
+
EStatusAccountVPN: () => EStatusAccountVPN,
|
|
2116
|
+
EStatusEmail: () => EStatusEmail,
|
|
2117
|
+
EStatusProxyChecked: () => EStatusProxyChecked,
|
|
2118
|
+
EStatusProxyNewIP: () => EStatusProxyNewIP,
|
|
2119
|
+
EStatusVPS: () => EStatusVPS,
|
|
2120
|
+
EStatusVPSReplace: () => EStatusVPSReplace,
|
|
2105
2121
|
Forum: () => forum_exports,
|
|
2106
2122
|
History: () => history_exports,
|
|
2107
2123
|
Permission: () => permission_exports,
|
|
@@ -2125,9 +2141,43 @@ var socials_exports = {};
|
|
|
2125
2141
|
// src/interfaces/models/tool/index.ts
|
|
2126
2142
|
var tool_exports = {};
|
|
2127
2143
|
__export(tool_exports, {
|
|
2128
|
-
|
|
2144
|
+
EStatusAccountCHPlayICloud: () => EStatusAccountCHPlayICloud,
|
|
2145
|
+
EStatusAccountCanva: () => EStatusAccountCanva,
|
|
2146
|
+
EStatusAccountDrive: () => EStatusAccountDrive,
|
|
2147
|
+
EStatusAccountVPN: () => EStatusAccountVPN,
|
|
2148
|
+
EStatusEmail: () => EStatusEmail,
|
|
2149
|
+
EStatusProxyChecked: () => EStatusProxyChecked,
|
|
2150
|
+
EStatusProxyNewIP: () => EStatusProxyNewIP,
|
|
2151
|
+
EStatusVPS: () => EStatusVPS,
|
|
2152
|
+
EStatusVPSReplace: () => EStatusVPSReplace
|
|
2129
2153
|
});
|
|
2130
2154
|
|
|
2155
|
+
// src/interfaces/models/tool/managers/account-canva/enum/EStatusAccountCanva.enum.ts
|
|
2156
|
+
var EStatusAccountCanva = /* @__PURE__ */ ((EStatusAccountCanva2) => {
|
|
2157
|
+
EStatusAccountCanva2["New"] = "New";
|
|
2158
|
+
EStatusAccountCanva2["InActive"] = "InActive";
|
|
2159
|
+
EStatusAccountCanva2["Active"] = "Active";
|
|
2160
|
+
EStatusAccountCanva2["Working"] = "Working";
|
|
2161
|
+
EStatusAccountCanva2["AccountNotExist"] = "AccountNotExist";
|
|
2162
|
+
EStatusAccountCanva2["WrongPassword"] = "WrongPassword";
|
|
2163
|
+
EStatusAccountCanva2["Wrong2FA"] = "Wrong2FA";
|
|
2164
|
+
EStatusAccountCanva2["Error"] = "Error";
|
|
2165
|
+
return EStatusAccountCanva2;
|
|
2166
|
+
})(EStatusAccountCanva || {});
|
|
2167
|
+
|
|
2168
|
+
// src/interfaces/models/tool/managers/account-chplay-icloud/enum/EStatusAccountCHPlayICloud.enum.ts
|
|
2169
|
+
var EStatusAccountCHPlayICloud = /* @__PURE__ */ ((EStatusAccountCHPlayICloud2) => {
|
|
2170
|
+
EStatusAccountCHPlayICloud2["New"] = "New";
|
|
2171
|
+
EStatusAccountCHPlayICloud2["InActive"] = "InActive";
|
|
2172
|
+
EStatusAccountCHPlayICloud2["Active"] = "Active";
|
|
2173
|
+
EStatusAccountCHPlayICloud2["Working"] = "Working";
|
|
2174
|
+
EStatusAccountCHPlayICloud2["AccountNotExist"] = "AccountNotExist";
|
|
2175
|
+
EStatusAccountCHPlayICloud2["WrongPassword"] = "WrongPassword";
|
|
2176
|
+
EStatusAccountCHPlayICloud2["Error"] = "Error";
|
|
2177
|
+
EStatusAccountCHPlayICloud2["NotExist"] = "NotExist";
|
|
2178
|
+
return EStatusAccountCHPlayICloud2;
|
|
2179
|
+
})(EStatusAccountCHPlayICloud || {});
|
|
2180
|
+
|
|
2131
2181
|
// src/interfaces/models/tool/managers/account-drive/enum/EStatusAccountDrive.enum.ts
|
|
2132
2182
|
var EStatusAccountDrive = /* @__PURE__ */ ((EStatusAccountDrive2) => {
|
|
2133
2183
|
EStatusAccountDrive2["New"] = "New";
|
|
@@ -2141,6 +2191,62 @@ var EStatusAccountDrive = /* @__PURE__ */ ((EStatusAccountDrive2) => {
|
|
|
2141
2191
|
return EStatusAccountDrive2;
|
|
2142
2192
|
})(EStatusAccountDrive || {});
|
|
2143
2193
|
|
|
2194
|
+
// src/interfaces/models/tool/managers/account-email/enum/EAccountEmail.enum.ts
|
|
2195
|
+
var EStatusEmail = /* @__PURE__ */ ((EStatusEmail2) => {
|
|
2196
|
+
EStatusEmail2["New"] = "New";
|
|
2197
|
+
EStatusEmail2["Active"] = "Active";
|
|
2198
|
+
EStatusEmail2["InActive"] = "InActive";
|
|
2199
|
+
EStatusEmail2["AccountNotExist"] = "AccountNotExist";
|
|
2200
|
+
EStatusEmail2["WrongPassword"] = "WrongPassword";
|
|
2201
|
+
EStatusEmail2["Wrong2FA"] = "Wrong2FA";
|
|
2202
|
+
EStatusEmail2["Error"] = "Error";
|
|
2203
|
+
return EStatusEmail2;
|
|
2204
|
+
})(EStatusEmail || {});
|
|
2205
|
+
|
|
2206
|
+
// src/interfaces/models/tool/managers/account-proxy/enum/EStatusAccountProxy.enum.ts
|
|
2207
|
+
var EStatusProxyNewIP = /* @__PURE__ */ ((EStatusProxyNewIP2) => {
|
|
2208
|
+
EStatusProxyNewIP2["Active"] = "Active";
|
|
2209
|
+
EStatusProxyNewIP2["New"] = "New";
|
|
2210
|
+
EStatusProxyNewIP2["Error"] = "Error";
|
|
2211
|
+
EStatusProxyNewIP2["Unknown"] = "Unknown";
|
|
2212
|
+
return EStatusProxyNewIP2;
|
|
2213
|
+
})(EStatusProxyNewIP || {});
|
|
2214
|
+
var EStatusProxyChecked = /* @__PURE__ */ ((EStatusProxyChecked2) => {
|
|
2215
|
+
EStatusProxyChecked2["Dead"] = "Dead";
|
|
2216
|
+
EStatusProxyChecked2["Unknown"] = "Unknown";
|
|
2217
|
+
EStatusProxyChecked2["Working"] = "Working";
|
|
2218
|
+
EStatusProxyChecked2["Expired"] = "Expired";
|
|
2219
|
+
EStatusProxyChecked2["ErrorChecker"] = "ErrorChecker";
|
|
2220
|
+
return EStatusProxyChecked2;
|
|
2221
|
+
})(EStatusProxyChecked || {});
|
|
2222
|
+
|
|
2223
|
+
// src/interfaces/models/tool/managers/account-vpn/enum/EStatusAccountVPN.enum.ts
|
|
2224
|
+
var EStatusAccountVPN = /* @__PURE__ */ ((EStatusAccountVPN2) => {
|
|
2225
|
+
EStatusAccountVPN2["New"] = "New";
|
|
2226
|
+
EStatusAccountVPN2["InActive"] = "InActive";
|
|
2227
|
+
EStatusAccountVPN2["Active"] = "Active";
|
|
2228
|
+
EStatusAccountVPN2["Working"] = "Working";
|
|
2229
|
+
EStatusAccountVPN2["AccountNotExist"] = "AccountNotExist";
|
|
2230
|
+
EStatusAccountVPN2["WrongPassword"] = "WrongPassword";
|
|
2231
|
+
EStatusAccountVPN2["Expired"] = "Expired";
|
|
2232
|
+
EStatusAccountVPN2["Error"] = "Error";
|
|
2233
|
+
return EStatusAccountVPN2;
|
|
2234
|
+
})(EStatusAccountVPN || {});
|
|
2235
|
+
|
|
2236
|
+
// src/interfaces/models/tool/managers/account-vps/enum/EStatusVPS.enum.ts
|
|
2237
|
+
var EStatusVPS = /* @__PURE__ */ ((EStatusVPS2) => {
|
|
2238
|
+
EStatusVPS2["Active"] = "Active";
|
|
2239
|
+
EStatusVPS2["Pending"] = "Pending";
|
|
2240
|
+
EStatusVPS2["NewRaw"] = "NewRaw";
|
|
2241
|
+
EStatusVPS2["Error"] = "Error";
|
|
2242
|
+
return EStatusVPS2;
|
|
2243
|
+
})(EStatusVPS || {});
|
|
2244
|
+
var EStatusVPSReplace = /* @__PURE__ */ ((EStatusVPSReplace2) => {
|
|
2245
|
+
EStatusVPSReplace2["NA"] = "N/A";
|
|
2246
|
+
EStatusVPSReplace2["Replaced"] = "Replaced";
|
|
2247
|
+
return EStatusVPSReplace2;
|
|
2248
|
+
})(EStatusVPSReplace || {});
|
|
2249
|
+
|
|
2144
2250
|
// src/interfaces/models/forum/index.ts
|
|
2145
2251
|
var forum_exports = {};
|
|
2146
2252
|
|
|
@@ -2158,7 +2264,15 @@ var interfaces_exports = {};
|
|
|
2158
2264
|
__export(interfaces_exports, {
|
|
2159
2265
|
Auth: () => auth_exports,
|
|
2160
2266
|
Common: () => common_exports,
|
|
2267
|
+
EStatusAccountCHPlayICloud: () => EStatusAccountCHPlayICloud,
|
|
2268
|
+
EStatusAccountCanva: () => EStatusAccountCanva,
|
|
2161
2269
|
EStatusAccountDrive: () => EStatusAccountDrive,
|
|
2270
|
+
EStatusAccountVPN: () => EStatusAccountVPN,
|
|
2271
|
+
EStatusEmail: () => EStatusEmail,
|
|
2272
|
+
EStatusProxyChecked: () => EStatusProxyChecked,
|
|
2273
|
+
EStatusProxyNewIP: () => EStatusProxyNewIP,
|
|
2274
|
+
EStatusVPS: () => EStatusVPS,
|
|
2275
|
+
EStatusVPSReplace: () => EStatusVPSReplace,
|
|
2162
2276
|
Forum: () => forum_exports,
|
|
2163
2277
|
History: () => history_exports,
|
|
2164
2278
|
Permission: () => permission_exports,
|
|
@@ -2219,6 +2333,8 @@ __export(interfaces_exports, {
|
|
|
2219
2333
|
ESheetToolTimeCrawl,
|
|
2220
2334
|
EStartStop,
|
|
2221
2335
|
EStatusAccountAI,
|
|
2336
|
+
EStatusAccountCHPlayICloud,
|
|
2337
|
+
EStatusAccountCanva,
|
|
2222
2338
|
EStatusAccountDrive,
|
|
2223
2339
|
EStatusAccountSocialCheckAuth,
|
|
2224
2340
|
EStatusAccountSocialFolderName,
|
|
@@ -2229,6 +2345,7 @@ __export(interfaces_exports, {
|
|
|
2229
2345
|
EStatusAccountSocialSetting,
|
|
2230
2346
|
EStatusAccountSocialSync,
|
|
2231
2347
|
EStatusAccountSocialSyncInstagramThreads,
|
|
2348
|
+
EStatusAccountVPN,
|
|
2232
2349
|
EStatusActive,
|
|
2233
2350
|
EStatusBlog,
|
|
2234
2351
|
EStatusChangeInfo,
|
|
@@ -2249,6 +2366,7 @@ __export(interfaces_exports, {
|
|
|
2249
2366
|
EStatusDeviceSetupSettingTask,
|
|
2250
2367
|
EStatusDeviceSync,
|
|
2251
2368
|
EStatusEditPost,
|
|
2369
|
+
EStatusEmail,
|
|
2252
2370
|
EStatusExecuteCommon,
|
|
2253
2371
|
EStatusGenerate,
|
|
2254
2372
|
EStatusImportAccountSocial,
|
|
@@ -2257,6 +2375,8 @@ __export(interfaces_exports, {
|
|
|
2257
2375
|
EStatusPC,
|
|
2258
2376
|
EStatusPCControl,
|
|
2259
2377
|
EStatusPost,
|
|
2378
|
+
EStatusProxyChecked,
|
|
2379
|
+
EStatusProxyNewIP,
|
|
2260
2380
|
EStatusRole,
|
|
2261
2381
|
EStatusSheetWork,
|
|
2262
2382
|
EStatusTaskAIContent,
|
|
@@ -2270,6 +2390,8 @@ __export(interfaces_exports, {
|
|
|
2270
2390
|
EStatusTaskVoice,
|
|
2271
2391
|
EStatusTeam,
|
|
2272
2392
|
EStatusUser,
|
|
2393
|
+
EStatusVPS,
|
|
2394
|
+
EStatusVPSReplace,
|
|
2273
2395
|
ETimeFilter,
|
|
2274
2396
|
ETimeZone,
|
|
2275
2397
|
EToolName,
|
package/dist/index.mjs
CHANGED
|
@@ -1938,7 +1938,15 @@ var models_exports = {};
|
|
|
1938
1938
|
__export(models_exports, {
|
|
1939
1939
|
Auth: () => auth_exports,
|
|
1940
1940
|
Common: () => common_exports,
|
|
1941
|
+
EStatusAccountCHPlayICloud: () => EStatusAccountCHPlayICloud,
|
|
1942
|
+
EStatusAccountCanva: () => EStatusAccountCanva,
|
|
1941
1943
|
EStatusAccountDrive: () => EStatusAccountDrive,
|
|
1944
|
+
EStatusAccountVPN: () => EStatusAccountVPN,
|
|
1945
|
+
EStatusEmail: () => EStatusEmail,
|
|
1946
|
+
EStatusProxyChecked: () => EStatusProxyChecked,
|
|
1947
|
+
EStatusProxyNewIP: () => EStatusProxyNewIP,
|
|
1948
|
+
EStatusVPS: () => EStatusVPS,
|
|
1949
|
+
EStatusVPSReplace: () => EStatusVPSReplace,
|
|
1942
1950
|
Forum: () => forum_exports,
|
|
1943
1951
|
History: () => history_exports,
|
|
1944
1952
|
Permission: () => permission_exports,
|
|
@@ -1962,9 +1970,43 @@ var socials_exports = {};
|
|
|
1962
1970
|
// src/interfaces/models/tool/index.ts
|
|
1963
1971
|
var tool_exports = {};
|
|
1964
1972
|
__export(tool_exports, {
|
|
1965
|
-
|
|
1973
|
+
EStatusAccountCHPlayICloud: () => EStatusAccountCHPlayICloud,
|
|
1974
|
+
EStatusAccountCanva: () => EStatusAccountCanva,
|
|
1975
|
+
EStatusAccountDrive: () => EStatusAccountDrive,
|
|
1976
|
+
EStatusAccountVPN: () => EStatusAccountVPN,
|
|
1977
|
+
EStatusEmail: () => EStatusEmail,
|
|
1978
|
+
EStatusProxyChecked: () => EStatusProxyChecked,
|
|
1979
|
+
EStatusProxyNewIP: () => EStatusProxyNewIP,
|
|
1980
|
+
EStatusVPS: () => EStatusVPS,
|
|
1981
|
+
EStatusVPSReplace: () => EStatusVPSReplace
|
|
1966
1982
|
});
|
|
1967
1983
|
|
|
1984
|
+
// src/interfaces/models/tool/managers/account-canva/enum/EStatusAccountCanva.enum.ts
|
|
1985
|
+
var EStatusAccountCanva = /* @__PURE__ */ ((EStatusAccountCanva2) => {
|
|
1986
|
+
EStatusAccountCanva2["New"] = "New";
|
|
1987
|
+
EStatusAccountCanva2["InActive"] = "InActive";
|
|
1988
|
+
EStatusAccountCanva2["Active"] = "Active";
|
|
1989
|
+
EStatusAccountCanva2["Working"] = "Working";
|
|
1990
|
+
EStatusAccountCanva2["AccountNotExist"] = "AccountNotExist";
|
|
1991
|
+
EStatusAccountCanva2["WrongPassword"] = "WrongPassword";
|
|
1992
|
+
EStatusAccountCanva2["Wrong2FA"] = "Wrong2FA";
|
|
1993
|
+
EStatusAccountCanva2["Error"] = "Error";
|
|
1994
|
+
return EStatusAccountCanva2;
|
|
1995
|
+
})(EStatusAccountCanva || {});
|
|
1996
|
+
|
|
1997
|
+
// src/interfaces/models/tool/managers/account-chplay-icloud/enum/EStatusAccountCHPlayICloud.enum.ts
|
|
1998
|
+
var EStatusAccountCHPlayICloud = /* @__PURE__ */ ((EStatusAccountCHPlayICloud2) => {
|
|
1999
|
+
EStatusAccountCHPlayICloud2["New"] = "New";
|
|
2000
|
+
EStatusAccountCHPlayICloud2["InActive"] = "InActive";
|
|
2001
|
+
EStatusAccountCHPlayICloud2["Active"] = "Active";
|
|
2002
|
+
EStatusAccountCHPlayICloud2["Working"] = "Working";
|
|
2003
|
+
EStatusAccountCHPlayICloud2["AccountNotExist"] = "AccountNotExist";
|
|
2004
|
+
EStatusAccountCHPlayICloud2["WrongPassword"] = "WrongPassword";
|
|
2005
|
+
EStatusAccountCHPlayICloud2["Error"] = "Error";
|
|
2006
|
+
EStatusAccountCHPlayICloud2["NotExist"] = "NotExist";
|
|
2007
|
+
return EStatusAccountCHPlayICloud2;
|
|
2008
|
+
})(EStatusAccountCHPlayICloud || {});
|
|
2009
|
+
|
|
1968
2010
|
// src/interfaces/models/tool/managers/account-drive/enum/EStatusAccountDrive.enum.ts
|
|
1969
2011
|
var EStatusAccountDrive = /* @__PURE__ */ ((EStatusAccountDrive2) => {
|
|
1970
2012
|
EStatusAccountDrive2["New"] = "New";
|
|
@@ -1978,6 +2020,62 @@ var EStatusAccountDrive = /* @__PURE__ */ ((EStatusAccountDrive2) => {
|
|
|
1978
2020
|
return EStatusAccountDrive2;
|
|
1979
2021
|
})(EStatusAccountDrive || {});
|
|
1980
2022
|
|
|
2023
|
+
// src/interfaces/models/tool/managers/account-email/enum/EAccountEmail.enum.ts
|
|
2024
|
+
var EStatusEmail = /* @__PURE__ */ ((EStatusEmail2) => {
|
|
2025
|
+
EStatusEmail2["New"] = "New";
|
|
2026
|
+
EStatusEmail2["Active"] = "Active";
|
|
2027
|
+
EStatusEmail2["InActive"] = "InActive";
|
|
2028
|
+
EStatusEmail2["AccountNotExist"] = "AccountNotExist";
|
|
2029
|
+
EStatusEmail2["WrongPassword"] = "WrongPassword";
|
|
2030
|
+
EStatusEmail2["Wrong2FA"] = "Wrong2FA";
|
|
2031
|
+
EStatusEmail2["Error"] = "Error";
|
|
2032
|
+
return EStatusEmail2;
|
|
2033
|
+
})(EStatusEmail || {});
|
|
2034
|
+
|
|
2035
|
+
// src/interfaces/models/tool/managers/account-proxy/enum/EStatusAccountProxy.enum.ts
|
|
2036
|
+
var EStatusProxyNewIP = /* @__PURE__ */ ((EStatusProxyNewIP2) => {
|
|
2037
|
+
EStatusProxyNewIP2["Active"] = "Active";
|
|
2038
|
+
EStatusProxyNewIP2["New"] = "New";
|
|
2039
|
+
EStatusProxyNewIP2["Error"] = "Error";
|
|
2040
|
+
EStatusProxyNewIP2["Unknown"] = "Unknown";
|
|
2041
|
+
return EStatusProxyNewIP2;
|
|
2042
|
+
})(EStatusProxyNewIP || {});
|
|
2043
|
+
var EStatusProxyChecked = /* @__PURE__ */ ((EStatusProxyChecked2) => {
|
|
2044
|
+
EStatusProxyChecked2["Dead"] = "Dead";
|
|
2045
|
+
EStatusProxyChecked2["Unknown"] = "Unknown";
|
|
2046
|
+
EStatusProxyChecked2["Working"] = "Working";
|
|
2047
|
+
EStatusProxyChecked2["Expired"] = "Expired";
|
|
2048
|
+
EStatusProxyChecked2["ErrorChecker"] = "ErrorChecker";
|
|
2049
|
+
return EStatusProxyChecked2;
|
|
2050
|
+
})(EStatusProxyChecked || {});
|
|
2051
|
+
|
|
2052
|
+
// src/interfaces/models/tool/managers/account-vpn/enum/EStatusAccountVPN.enum.ts
|
|
2053
|
+
var EStatusAccountVPN = /* @__PURE__ */ ((EStatusAccountVPN2) => {
|
|
2054
|
+
EStatusAccountVPN2["New"] = "New";
|
|
2055
|
+
EStatusAccountVPN2["InActive"] = "InActive";
|
|
2056
|
+
EStatusAccountVPN2["Active"] = "Active";
|
|
2057
|
+
EStatusAccountVPN2["Working"] = "Working";
|
|
2058
|
+
EStatusAccountVPN2["AccountNotExist"] = "AccountNotExist";
|
|
2059
|
+
EStatusAccountVPN2["WrongPassword"] = "WrongPassword";
|
|
2060
|
+
EStatusAccountVPN2["Expired"] = "Expired";
|
|
2061
|
+
EStatusAccountVPN2["Error"] = "Error";
|
|
2062
|
+
return EStatusAccountVPN2;
|
|
2063
|
+
})(EStatusAccountVPN || {});
|
|
2064
|
+
|
|
2065
|
+
// src/interfaces/models/tool/managers/account-vps/enum/EStatusVPS.enum.ts
|
|
2066
|
+
var EStatusVPS = /* @__PURE__ */ ((EStatusVPS2) => {
|
|
2067
|
+
EStatusVPS2["Active"] = "Active";
|
|
2068
|
+
EStatusVPS2["Pending"] = "Pending";
|
|
2069
|
+
EStatusVPS2["NewRaw"] = "NewRaw";
|
|
2070
|
+
EStatusVPS2["Error"] = "Error";
|
|
2071
|
+
return EStatusVPS2;
|
|
2072
|
+
})(EStatusVPS || {});
|
|
2073
|
+
var EStatusVPSReplace = /* @__PURE__ */ ((EStatusVPSReplace2) => {
|
|
2074
|
+
EStatusVPSReplace2["NA"] = "N/A";
|
|
2075
|
+
EStatusVPSReplace2["Replaced"] = "Replaced";
|
|
2076
|
+
return EStatusVPSReplace2;
|
|
2077
|
+
})(EStatusVPSReplace || {});
|
|
2078
|
+
|
|
1981
2079
|
// src/interfaces/models/forum/index.ts
|
|
1982
2080
|
var forum_exports = {};
|
|
1983
2081
|
|
|
@@ -1995,7 +2093,15 @@ var interfaces_exports = {};
|
|
|
1995
2093
|
__export(interfaces_exports, {
|
|
1996
2094
|
Auth: () => auth_exports,
|
|
1997
2095
|
Common: () => common_exports,
|
|
2096
|
+
EStatusAccountCHPlayICloud: () => EStatusAccountCHPlayICloud,
|
|
2097
|
+
EStatusAccountCanva: () => EStatusAccountCanva,
|
|
1998
2098
|
EStatusAccountDrive: () => EStatusAccountDrive,
|
|
2099
|
+
EStatusAccountVPN: () => EStatusAccountVPN,
|
|
2100
|
+
EStatusEmail: () => EStatusEmail,
|
|
2101
|
+
EStatusProxyChecked: () => EStatusProxyChecked,
|
|
2102
|
+
EStatusProxyNewIP: () => EStatusProxyNewIP,
|
|
2103
|
+
EStatusVPS: () => EStatusVPS,
|
|
2104
|
+
EStatusVPSReplace: () => EStatusVPSReplace,
|
|
1999
2105
|
Forum: () => forum_exports,
|
|
2000
2106
|
History: () => history_exports,
|
|
2001
2107
|
Permission: () => permission_exports,
|
|
@@ -2055,6 +2161,8 @@ export {
|
|
|
2055
2161
|
ESheetToolTimeCrawl,
|
|
2056
2162
|
EStartStop,
|
|
2057
2163
|
EStatusAccountAI,
|
|
2164
|
+
EStatusAccountCHPlayICloud,
|
|
2165
|
+
EStatusAccountCanva,
|
|
2058
2166
|
EStatusAccountDrive,
|
|
2059
2167
|
EStatusAccountSocialCheckAuth,
|
|
2060
2168
|
EStatusAccountSocialFolderName,
|
|
@@ -2065,6 +2173,7 @@ export {
|
|
|
2065
2173
|
EStatusAccountSocialSetting,
|
|
2066
2174
|
EStatusAccountSocialSync,
|
|
2067
2175
|
EStatusAccountSocialSyncInstagramThreads,
|
|
2176
|
+
EStatusAccountVPN,
|
|
2068
2177
|
EStatusActive,
|
|
2069
2178
|
EStatusBlog,
|
|
2070
2179
|
EStatusChangeInfo,
|
|
@@ -2085,6 +2194,7 @@ export {
|
|
|
2085
2194
|
EStatusDeviceSetupSettingTask,
|
|
2086
2195
|
EStatusDeviceSync,
|
|
2087
2196
|
EStatusEditPost,
|
|
2197
|
+
EStatusEmail,
|
|
2088
2198
|
EStatusExecuteCommon,
|
|
2089
2199
|
EStatusGenerate,
|
|
2090
2200
|
EStatusImportAccountSocial,
|
|
@@ -2093,6 +2203,8 @@ export {
|
|
|
2093
2203
|
EStatusPC,
|
|
2094
2204
|
EStatusPCControl,
|
|
2095
2205
|
EStatusPost,
|
|
2206
|
+
EStatusProxyChecked,
|
|
2207
|
+
EStatusProxyNewIP,
|
|
2096
2208
|
EStatusRole,
|
|
2097
2209
|
EStatusSheetWork,
|
|
2098
2210
|
EStatusTaskAIContent,
|
|
@@ -2106,6 +2218,8 @@ export {
|
|
|
2106
2218
|
EStatusTaskVoice,
|
|
2107
2219
|
EStatusTeam,
|
|
2108
2220
|
EStatusUser,
|
|
2221
|
+
EStatusVPS,
|
|
2222
|
+
EStatusVPSReplace,
|
|
2109
2223
|
ETimeFilter,
|
|
2110
2224
|
ETimeZone,
|
|
2111
2225
|
EToolName,
|