automation-lib 4.8.89 → 4.8.91
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 +11 -2
- package/dist/index.d.ts +11 -2
- package/dist/index.js +11 -1
- package/dist/index.mjs +11 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -354,6 +354,13 @@ declare namespace index$9 {
|
|
|
354
354
|
export { index$9_ETypeAccountAI as ETypeAccountAI, index$9_ETypeCanva as ETypeCanva, index$9_ETypeLarkError as ETypeLarkError, index$9_ETypeLarkObject as ETypeLarkObject, index$9_ETypeManagerWorkClassify as ETypeManagerWorkClassify, index$9_ETypeManagerWorkPin as ETypeManagerWorkPin, index$9_ETypeManagerWorkType as ETypeManagerWorkType, index$9_ETypeNotification as ETypeNotification, index$9_ETypeSheetWorkClassify as ETypeSheetWorkClassify, index$9_ETypeSheetWorkPin as ETypeSheetWorkPin, index$9_ETypeSocial as ETypeSocial, index$9_ETypeSocialSetting as ETypeSocialSetting, index$9_ETypeTimeFilter as ETypeTimeFilter, index$9_ETypeVoiceLanguage as ETypeVoiceLanguage };
|
|
355
355
|
}
|
|
356
356
|
|
|
357
|
+
declare enum EStatusVPS {
|
|
358
|
+
Nothing = "Nothing",
|
|
359
|
+
Installing = "Installing",
|
|
360
|
+
Success = "Done",
|
|
361
|
+
Error = "Error"
|
|
362
|
+
}
|
|
363
|
+
|
|
357
364
|
declare enum EStatusCommon {
|
|
358
365
|
Available = "Available",
|
|
359
366
|
UnAvailable = "UnAvailable"
|
|
@@ -441,8 +448,10 @@ type index$8_EStatusTaskJobGroup = EStatusTaskJobGroup;
|
|
|
441
448
|
declare const index$8_EStatusTaskJobGroup: typeof EStatusTaskJobGroup;
|
|
442
449
|
type index$8_EStatusTaskTool = EStatusTaskTool;
|
|
443
450
|
declare const index$8_EStatusTaskTool: typeof EStatusTaskTool;
|
|
451
|
+
type index$8_EStatusVPS = EStatusVPS;
|
|
452
|
+
declare const index$8_EStatusVPS: typeof EStatusVPS;
|
|
444
453
|
declare namespace index$8 {
|
|
445
|
-
export { index$8_EStatusBlog as EStatusBlog, index$8_EStatusCommon as EStatusCommon, index$8_EStatusExecuteCommon as EStatusExecuteCommon, index$8_EStatusLoginAccountEmail as EStatusLoginAccountEmail, index$8_EStatusLoginAccountSocial as EStatusLoginAccountSocial, index$8_EStatusSheetWork as EStatusSheetWork, index$8_EStatusTaskAI as EStatusTaskAI, index$8_EStatusTaskJob as EStatusTaskJob, index$8_EStatusTaskJobGroup as EStatusTaskJobGroup, index$8_EStatusTaskTool as EStatusTaskTool };
|
|
454
|
+
export { index$8_EStatusBlog as EStatusBlog, index$8_EStatusCommon as EStatusCommon, index$8_EStatusExecuteCommon as EStatusExecuteCommon, index$8_EStatusLoginAccountEmail as EStatusLoginAccountEmail, index$8_EStatusLoginAccountSocial as EStatusLoginAccountSocial, index$8_EStatusSheetWork as EStatusSheetWork, index$8_EStatusTaskAI as EStatusTaskAI, index$8_EStatusTaskJob as EStatusTaskJob, index$8_EStatusTaskJobGroup as EStatusTaskJobGroup, index$8_EStatusTaskTool as EStatusTaskTool, index$8_EStatusVPS as EStatusVPS };
|
|
446
455
|
}
|
|
447
456
|
|
|
448
457
|
declare namespace index$7 {
|
|
@@ -585,7 +594,6 @@ interface IPatternCanvaCoverBackground extends BoInterfaceModelsCommon.IBaseMode
|
|
|
585
594
|
interface IAccountAIGroup extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceModelsCommon$1.ITrackingModel<IUser> {
|
|
586
595
|
name: string;
|
|
587
596
|
slug: string;
|
|
588
|
-
accountsAI: string[] | IAccountAI[];
|
|
589
597
|
}
|
|
590
598
|
|
|
591
599
|
interface IIdea extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ISoftDeleteModel<IUser>, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
@@ -646,6 +654,7 @@ interface IAccountVPS extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceM
|
|
|
646
654
|
password: string;
|
|
647
655
|
displayName: string;
|
|
648
656
|
isActive: boolean;
|
|
657
|
+
status: EStatusVPS;
|
|
649
658
|
}
|
|
650
659
|
|
|
651
660
|
interface IAccountsGroup extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ISoftDeleteModel<IUser>, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
package/dist/index.d.ts
CHANGED
|
@@ -354,6 +354,13 @@ declare namespace index$9 {
|
|
|
354
354
|
export { index$9_ETypeAccountAI as ETypeAccountAI, index$9_ETypeCanva as ETypeCanva, index$9_ETypeLarkError as ETypeLarkError, index$9_ETypeLarkObject as ETypeLarkObject, index$9_ETypeManagerWorkClassify as ETypeManagerWorkClassify, index$9_ETypeManagerWorkPin as ETypeManagerWorkPin, index$9_ETypeManagerWorkType as ETypeManagerWorkType, index$9_ETypeNotification as ETypeNotification, index$9_ETypeSheetWorkClassify as ETypeSheetWorkClassify, index$9_ETypeSheetWorkPin as ETypeSheetWorkPin, index$9_ETypeSocial as ETypeSocial, index$9_ETypeSocialSetting as ETypeSocialSetting, index$9_ETypeTimeFilter as ETypeTimeFilter, index$9_ETypeVoiceLanguage as ETypeVoiceLanguage };
|
|
355
355
|
}
|
|
356
356
|
|
|
357
|
+
declare enum EStatusVPS {
|
|
358
|
+
Nothing = "Nothing",
|
|
359
|
+
Installing = "Installing",
|
|
360
|
+
Success = "Done",
|
|
361
|
+
Error = "Error"
|
|
362
|
+
}
|
|
363
|
+
|
|
357
364
|
declare enum EStatusCommon {
|
|
358
365
|
Available = "Available",
|
|
359
366
|
UnAvailable = "UnAvailable"
|
|
@@ -441,8 +448,10 @@ type index$8_EStatusTaskJobGroup = EStatusTaskJobGroup;
|
|
|
441
448
|
declare const index$8_EStatusTaskJobGroup: typeof EStatusTaskJobGroup;
|
|
442
449
|
type index$8_EStatusTaskTool = EStatusTaskTool;
|
|
443
450
|
declare const index$8_EStatusTaskTool: typeof EStatusTaskTool;
|
|
451
|
+
type index$8_EStatusVPS = EStatusVPS;
|
|
452
|
+
declare const index$8_EStatusVPS: typeof EStatusVPS;
|
|
444
453
|
declare namespace index$8 {
|
|
445
|
-
export { index$8_EStatusBlog as EStatusBlog, index$8_EStatusCommon as EStatusCommon, index$8_EStatusExecuteCommon as EStatusExecuteCommon, index$8_EStatusLoginAccountEmail as EStatusLoginAccountEmail, index$8_EStatusLoginAccountSocial as EStatusLoginAccountSocial, index$8_EStatusSheetWork as EStatusSheetWork, index$8_EStatusTaskAI as EStatusTaskAI, index$8_EStatusTaskJob as EStatusTaskJob, index$8_EStatusTaskJobGroup as EStatusTaskJobGroup, index$8_EStatusTaskTool as EStatusTaskTool };
|
|
454
|
+
export { index$8_EStatusBlog as EStatusBlog, index$8_EStatusCommon as EStatusCommon, index$8_EStatusExecuteCommon as EStatusExecuteCommon, index$8_EStatusLoginAccountEmail as EStatusLoginAccountEmail, index$8_EStatusLoginAccountSocial as EStatusLoginAccountSocial, index$8_EStatusSheetWork as EStatusSheetWork, index$8_EStatusTaskAI as EStatusTaskAI, index$8_EStatusTaskJob as EStatusTaskJob, index$8_EStatusTaskJobGroup as EStatusTaskJobGroup, index$8_EStatusTaskTool as EStatusTaskTool, index$8_EStatusVPS as EStatusVPS };
|
|
446
455
|
}
|
|
447
456
|
|
|
448
457
|
declare namespace index$7 {
|
|
@@ -585,7 +594,6 @@ interface IPatternCanvaCoverBackground extends BoInterfaceModelsCommon.IBaseMode
|
|
|
585
594
|
interface IAccountAIGroup extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceModelsCommon$1.ITrackingModel<IUser> {
|
|
586
595
|
name: string;
|
|
587
596
|
slug: string;
|
|
588
|
-
accountsAI: string[] | IAccountAI[];
|
|
589
597
|
}
|
|
590
598
|
|
|
591
599
|
interface IIdea extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ISoftDeleteModel<IUser>, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
@@ -646,6 +654,7 @@ interface IAccountVPS extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceM
|
|
|
646
654
|
password: string;
|
|
647
655
|
displayName: string;
|
|
648
656
|
isActive: boolean;
|
|
657
|
+
status: EStatusVPS;
|
|
649
658
|
}
|
|
650
659
|
|
|
651
660
|
interface IAccountsGroup extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ISoftDeleteModel<IUser>, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
package/dist/index.js
CHANGED
|
@@ -427,9 +427,19 @@ __export(status_exports, {
|
|
|
427
427
|
EStatusTaskAI: () => EStatusTaskAI,
|
|
428
428
|
EStatusTaskJob: () => EStatusTaskJob,
|
|
429
429
|
EStatusTaskJobGroup: () => EStatusTaskJobGroup,
|
|
430
|
-
EStatusTaskTool: () => EStatusTaskTool
|
|
430
|
+
EStatusTaskTool: () => EStatusTaskTool,
|
|
431
|
+
EStatusVPS: () => EStatusVPS
|
|
431
432
|
});
|
|
432
433
|
|
|
434
|
+
// src/enums/status/common/EStatusVPS.enum.ts
|
|
435
|
+
var EStatusVPS = /* @__PURE__ */ ((EStatusVPS2) => {
|
|
436
|
+
EStatusVPS2["Nothing"] = "Nothing";
|
|
437
|
+
EStatusVPS2["Installing"] = "Installing";
|
|
438
|
+
EStatusVPS2["Success"] = "Done";
|
|
439
|
+
EStatusVPS2["Error"] = "Error";
|
|
440
|
+
return EStatusVPS2;
|
|
441
|
+
})(EStatusVPS || {});
|
|
442
|
+
|
|
433
443
|
// src/enums/status/common/EStatusCommon.enum.ts
|
|
434
444
|
var EStatusCommon = /* @__PURE__ */ ((EStatusCommon2) => {
|
|
435
445
|
EStatusCommon2["Available"] = "Available";
|
package/dist/index.mjs
CHANGED
|
@@ -404,9 +404,19 @@ __export(status_exports, {
|
|
|
404
404
|
EStatusTaskAI: () => EStatusTaskAI,
|
|
405
405
|
EStatusTaskJob: () => EStatusTaskJob,
|
|
406
406
|
EStatusTaskJobGroup: () => EStatusTaskJobGroup,
|
|
407
|
-
EStatusTaskTool: () => EStatusTaskTool
|
|
407
|
+
EStatusTaskTool: () => EStatusTaskTool,
|
|
408
|
+
EStatusVPS: () => EStatusVPS
|
|
408
409
|
});
|
|
409
410
|
|
|
411
|
+
// src/enums/status/common/EStatusVPS.enum.ts
|
|
412
|
+
var EStatusVPS = /* @__PURE__ */ ((EStatusVPS2) => {
|
|
413
|
+
EStatusVPS2["Nothing"] = "Nothing";
|
|
414
|
+
EStatusVPS2["Installing"] = "Installing";
|
|
415
|
+
EStatusVPS2["Success"] = "Done";
|
|
416
|
+
EStatusVPS2["Error"] = "Error";
|
|
417
|
+
return EStatusVPS2;
|
|
418
|
+
})(EStatusVPS || {});
|
|
419
|
+
|
|
410
420
|
// src/enums/status/common/EStatusCommon.enum.ts
|
|
411
421
|
var EStatusCommon = /* @__PURE__ */ ((EStatusCommon2) => {
|
|
412
422
|
EStatusCommon2["Available"] = "Available";
|