automation-lib 5.0.160 → 5.0.161
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 +10 -8
- package/dist/index.d.ts +10 -8
- package/dist/index.js +10 -0
- package/dist/index.mjs +10 -0
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -299,6 +299,13 @@ declare enum ETypeDeviceOS {
|
|
|
299
299
|
Android = "Android"
|
|
300
300
|
}
|
|
301
301
|
|
|
302
|
+
declare enum ETypeAccountInstagramSetting {
|
|
303
|
+
Business = "Business",
|
|
304
|
+
Personal = "Business",
|
|
305
|
+
Creator = "Business",
|
|
306
|
+
Professional = "Professional"
|
|
307
|
+
}
|
|
308
|
+
|
|
302
309
|
declare enum ETypeExport {
|
|
303
310
|
Append = "Append",
|
|
304
311
|
Overwrite = "Overwrite"
|
|
@@ -397,6 +404,8 @@ declare enum ETypeVoiceLanguage {
|
|
|
397
404
|
English = "en"
|
|
398
405
|
}
|
|
399
406
|
|
|
407
|
+
type index$j_ETypeAccountInstagramSetting = ETypeAccountInstagramSetting;
|
|
408
|
+
declare const index$j_ETypeAccountInstagramSetting: typeof ETypeAccountInstagramSetting;
|
|
400
409
|
type index$j_ETypeAccountVPN = ETypeAccountVPN;
|
|
401
410
|
declare const index$j_ETypeAccountVPN: typeof ETypeAccountVPN;
|
|
402
411
|
type index$j_ETypeCanva = ETypeCanva;
|
|
@@ -436,7 +445,7 @@ declare const index$j_ETypeTimeFilter: typeof ETypeTimeFilter;
|
|
|
436
445
|
type index$j_ETypeVoiceLanguage = ETypeVoiceLanguage;
|
|
437
446
|
declare const index$j_ETypeVoiceLanguage: typeof ETypeVoiceLanguage;
|
|
438
447
|
declare namespace index$j {
|
|
439
|
-
export { index$j_ETypeAccountVPN as ETypeAccountVPN, index$j_ETypeCanva as ETypeCanva, index$j_ETypeColumnManagerWork as ETypeColumnManagerWork, index$j_ETypeDeviceOS as ETypeDeviceOS, index$j_ETypeExport as ETypeExport, index$j_ETypeManagerWorkClassify as ETypeManagerWorkClassify, index$j_ETypeManagerWorkPin as ETypeManagerWorkPin, index$j_ETypeManagerWorkType as ETypeManagerWorkType, index$j_ETypeProviderAccountVPN as ETypeProviderAccountVPN, index$j_ETypeProxy as ETypeProxy, index$j_ETypeProxyChecked as ETypeProxyChecked, index$j_ETypeProxyNewIP as ETypeProxyNewIP, index$j_ETypeRatioImage as ETypeRatioImage, index$j_ETypeSheetWorkClassify as ETypeSheetWorkClassify, index$j_ETypeSheetWorkPin as ETypeSheetWorkPin, index$j_ETypeSocial as ETypeSocial, index$j_ETypeSocialSetting as ETypeSocialSetting, index$j_ETypeTimeFilter as ETypeTimeFilter, index$j_ETypeVoiceLanguage as ETypeVoiceLanguage };
|
|
448
|
+
export { index$j_ETypeAccountInstagramSetting as ETypeAccountInstagramSetting, index$j_ETypeAccountVPN as ETypeAccountVPN, index$j_ETypeCanva as ETypeCanva, index$j_ETypeColumnManagerWork as ETypeColumnManagerWork, index$j_ETypeDeviceOS as ETypeDeviceOS, index$j_ETypeExport as ETypeExport, index$j_ETypeManagerWorkClassify as ETypeManagerWorkClassify, index$j_ETypeManagerWorkPin as ETypeManagerWorkPin, index$j_ETypeManagerWorkType as ETypeManagerWorkType, index$j_ETypeProviderAccountVPN as ETypeProviderAccountVPN, index$j_ETypeProxy as ETypeProxy, index$j_ETypeProxyChecked as ETypeProxyChecked, index$j_ETypeProxyNewIP as ETypeProxyNewIP, index$j_ETypeRatioImage as ETypeRatioImage, index$j_ETypeSheetWorkClassify as ETypeSheetWorkClassify, index$j_ETypeSheetWorkPin as ETypeSheetWorkPin, index$j_ETypeSocial as ETypeSocial, index$j_ETypeSocialSetting as ETypeSocialSetting, index$j_ETypeTimeFilter as ETypeTimeFilter, index$j_ETypeVoiceLanguage as ETypeVoiceLanguage };
|
|
440
449
|
}
|
|
441
450
|
|
|
442
451
|
declare enum EStatusVPS {
|
|
@@ -1522,13 +1531,6 @@ interface IAccountsGroup extends IBaseModel, ITrackingModel<IUser> {
|
|
|
1522
1531
|
ag_slug: string;
|
|
1523
1532
|
}
|
|
1524
1533
|
|
|
1525
|
-
declare enum ETypeAccountInstagramSetting {
|
|
1526
|
-
Business = "Business",
|
|
1527
|
-
Personal = "Business",
|
|
1528
|
-
Creator = "Business",
|
|
1529
|
-
Professional = "Professional"
|
|
1530
|
-
}
|
|
1531
|
-
|
|
1532
1534
|
interface IPC extends IBaseModel, ITrackingModel<IUser> {
|
|
1533
1535
|
pc_name: string;
|
|
1534
1536
|
pc_description: string;
|
package/dist/index.d.ts
CHANGED
|
@@ -299,6 +299,13 @@ declare enum ETypeDeviceOS {
|
|
|
299
299
|
Android = "Android"
|
|
300
300
|
}
|
|
301
301
|
|
|
302
|
+
declare enum ETypeAccountInstagramSetting {
|
|
303
|
+
Business = "Business",
|
|
304
|
+
Personal = "Business",
|
|
305
|
+
Creator = "Business",
|
|
306
|
+
Professional = "Professional"
|
|
307
|
+
}
|
|
308
|
+
|
|
302
309
|
declare enum ETypeExport {
|
|
303
310
|
Append = "Append",
|
|
304
311
|
Overwrite = "Overwrite"
|
|
@@ -397,6 +404,8 @@ declare enum ETypeVoiceLanguage {
|
|
|
397
404
|
English = "en"
|
|
398
405
|
}
|
|
399
406
|
|
|
407
|
+
type index$j_ETypeAccountInstagramSetting = ETypeAccountInstagramSetting;
|
|
408
|
+
declare const index$j_ETypeAccountInstagramSetting: typeof ETypeAccountInstagramSetting;
|
|
400
409
|
type index$j_ETypeAccountVPN = ETypeAccountVPN;
|
|
401
410
|
declare const index$j_ETypeAccountVPN: typeof ETypeAccountVPN;
|
|
402
411
|
type index$j_ETypeCanva = ETypeCanva;
|
|
@@ -436,7 +445,7 @@ declare const index$j_ETypeTimeFilter: typeof ETypeTimeFilter;
|
|
|
436
445
|
type index$j_ETypeVoiceLanguage = ETypeVoiceLanguage;
|
|
437
446
|
declare const index$j_ETypeVoiceLanguage: typeof ETypeVoiceLanguage;
|
|
438
447
|
declare namespace index$j {
|
|
439
|
-
export { index$j_ETypeAccountVPN as ETypeAccountVPN, index$j_ETypeCanva as ETypeCanva, index$j_ETypeColumnManagerWork as ETypeColumnManagerWork, index$j_ETypeDeviceOS as ETypeDeviceOS, index$j_ETypeExport as ETypeExport, index$j_ETypeManagerWorkClassify as ETypeManagerWorkClassify, index$j_ETypeManagerWorkPin as ETypeManagerWorkPin, index$j_ETypeManagerWorkType as ETypeManagerWorkType, index$j_ETypeProviderAccountVPN as ETypeProviderAccountVPN, index$j_ETypeProxy as ETypeProxy, index$j_ETypeProxyChecked as ETypeProxyChecked, index$j_ETypeProxyNewIP as ETypeProxyNewIP, index$j_ETypeRatioImage as ETypeRatioImage, index$j_ETypeSheetWorkClassify as ETypeSheetWorkClassify, index$j_ETypeSheetWorkPin as ETypeSheetWorkPin, index$j_ETypeSocial as ETypeSocial, index$j_ETypeSocialSetting as ETypeSocialSetting, index$j_ETypeTimeFilter as ETypeTimeFilter, index$j_ETypeVoiceLanguage as ETypeVoiceLanguage };
|
|
448
|
+
export { index$j_ETypeAccountInstagramSetting as ETypeAccountInstagramSetting, index$j_ETypeAccountVPN as ETypeAccountVPN, index$j_ETypeCanva as ETypeCanva, index$j_ETypeColumnManagerWork as ETypeColumnManagerWork, index$j_ETypeDeviceOS as ETypeDeviceOS, index$j_ETypeExport as ETypeExport, index$j_ETypeManagerWorkClassify as ETypeManagerWorkClassify, index$j_ETypeManagerWorkPin as ETypeManagerWorkPin, index$j_ETypeManagerWorkType as ETypeManagerWorkType, index$j_ETypeProviderAccountVPN as ETypeProviderAccountVPN, index$j_ETypeProxy as ETypeProxy, index$j_ETypeProxyChecked as ETypeProxyChecked, index$j_ETypeProxyNewIP as ETypeProxyNewIP, index$j_ETypeRatioImage as ETypeRatioImage, index$j_ETypeSheetWorkClassify as ETypeSheetWorkClassify, index$j_ETypeSheetWorkPin as ETypeSheetWorkPin, index$j_ETypeSocial as ETypeSocial, index$j_ETypeSocialSetting as ETypeSocialSetting, index$j_ETypeTimeFilter as ETypeTimeFilter, index$j_ETypeVoiceLanguage as ETypeVoiceLanguage };
|
|
440
449
|
}
|
|
441
450
|
|
|
442
451
|
declare enum EStatusVPS {
|
|
@@ -1522,13 +1531,6 @@ interface IAccountsGroup extends IBaseModel, ITrackingModel<IUser> {
|
|
|
1522
1531
|
ag_slug: string;
|
|
1523
1532
|
}
|
|
1524
1533
|
|
|
1525
|
-
declare enum ETypeAccountInstagramSetting {
|
|
1526
|
-
Business = "Business",
|
|
1527
|
-
Personal = "Business",
|
|
1528
|
-
Creator = "Business",
|
|
1529
|
-
Professional = "Professional"
|
|
1530
|
-
}
|
|
1531
|
-
|
|
1532
1534
|
interface IPC extends IBaseModel, ITrackingModel<IUser> {
|
|
1533
1535
|
pc_name: string;
|
|
1534
1536
|
pc_description: string;
|
package/dist/index.js
CHANGED
|
@@ -335,6 +335,7 @@ var EInputTypeFilter = /* @__PURE__ */ ((EInputTypeFilter2) => {
|
|
|
335
335
|
// src/enums/types/index.ts
|
|
336
336
|
var types_exports = {};
|
|
337
337
|
__export(types_exports, {
|
|
338
|
+
ETypeAccountInstagramSetting: () => ETypeAccountInstagramSetting,
|
|
338
339
|
ETypeAccountVPN: () => ETypeAccountVPN,
|
|
339
340
|
ETypeCanva: () => ETypeCanva,
|
|
340
341
|
ETypeColumnManagerWork: () => ETypeColumnManagerWork,
|
|
@@ -385,6 +386,15 @@ var ETypeDeviceOS = /* @__PURE__ */ ((ETypeDeviceOS2) => {
|
|
|
385
386
|
return ETypeDeviceOS2;
|
|
386
387
|
})(ETypeDeviceOS || {});
|
|
387
388
|
|
|
389
|
+
// src/enums/types/ETypeAccountInstagramSetting.enum.ts
|
|
390
|
+
var ETypeAccountInstagramSetting = /* @__PURE__ */ ((ETypeAccountInstagramSetting2) => {
|
|
391
|
+
ETypeAccountInstagramSetting2["Business"] = "Business";
|
|
392
|
+
ETypeAccountInstagramSetting2["Personal"] = "Business";
|
|
393
|
+
ETypeAccountInstagramSetting2["Creator"] = "Business";
|
|
394
|
+
ETypeAccountInstagramSetting2["Professional"] = "Professional";
|
|
395
|
+
return ETypeAccountInstagramSetting2;
|
|
396
|
+
})(ETypeAccountInstagramSetting || {});
|
|
397
|
+
|
|
388
398
|
// src/enums/types/ETypeExport.enum.ts
|
|
389
399
|
var ETypeExport = /* @__PURE__ */ ((ETypeExport2) => {
|
|
390
400
|
ETypeExport2["Append"] = "Append";
|
package/dist/index.mjs
CHANGED
|
@@ -310,6 +310,7 @@ var EInputTypeFilter = /* @__PURE__ */ ((EInputTypeFilter2) => {
|
|
|
310
310
|
// src/enums/types/index.ts
|
|
311
311
|
var types_exports = {};
|
|
312
312
|
__export(types_exports, {
|
|
313
|
+
ETypeAccountInstagramSetting: () => ETypeAccountInstagramSetting,
|
|
313
314
|
ETypeAccountVPN: () => ETypeAccountVPN,
|
|
314
315
|
ETypeCanva: () => ETypeCanva,
|
|
315
316
|
ETypeColumnManagerWork: () => ETypeColumnManagerWork,
|
|
@@ -360,6 +361,15 @@ var ETypeDeviceOS = /* @__PURE__ */ ((ETypeDeviceOS2) => {
|
|
|
360
361
|
return ETypeDeviceOS2;
|
|
361
362
|
})(ETypeDeviceOS || {});
|
|
362
363
|
|
|
364
|
+
// src/enums/types/ETypeAccountInstagramSetting.enum.ts
|
|
365
|
+
var ETypeAccountInstagramSetting = /* @__PURE__ */ ((ETypeAccountInstagramSetting2) => {
|
|
366
|
+
ETypeAccountInstagramSetting2["Business"] = "Business";
|
|
367
|
+
ETypeAccountInstagramSetting2["Personal"] = "Business";
|
|
368
|
+
ETypeAccountInstagramSetting2["Creator"] = "Business";
|
|
369
|
+
ETypeAccountInstagramSetting2["Professional"] = "Professional";
|
|
370
|
+
return ETypeAccountInstagramSetting2;
|
|
371
|
+
})(ETypeAccountInstagramSetting || {});
|
|
372
|
+
|
|
363
373
|
// src/enums/types/ETypeExport.enum.ts
|
|
364
374
|
var ETypeExport = /* @__PURE__ */ ((ETypeExport2) => {
|
|
365
375
|
ETypeExport2["Append"] = "Append";
|