automation-lib 4.9.15 → 4.9.17
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 +54 -4
- package/dist/index.d.ts +54 -4
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -875,7 +875,7 @@ interface IAccountAIImageGroup extends BoInterfaceModelsCommon$1.IBaseModel, BoI
|
|
|
875
875
|
}
|
|
876
876
|
|
|
877
877
|
interface IAccountAIImage extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceModelsCommon$1.ITrackingModel<IUser> {
|
|
878
|
-
|
|
878
|
+
listGroupsAI: string[] | IAccountAIImageGroup[];
|
|
879
879
|
ideaManagerWork: string | IManagerWork;
|
|
880
880
|
nicheManagerWork: string[] | IManagerWork[];
|
|
881
881
|
subNicheManagerWork: string[] | IManagerWork[];
|
|
@@ -884,7 +884,7 @@ interface IAccountAIImage extends BoInterfaceModelsCommon$1.IBaseModel, BoInterf
|
|
|
884
884
|
}
|
|
885
885
|
|
|
886
886
|
interface IAccountAIImageInfo extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceModelsCommon$1.ITrackingModel<IUser> {
|
|
887
|
-
|
|
887
|
+
accountAI: string | IAccountAIImage;
|
|
888
888
|
model: EAIModelImage;
|
|
889
889
|
provider: string;
|
|
890
890
|
versionModel: EAIVersionImage;
|
|
@@ -896,7 +896,52 @@ interface IAccountAIImageInfo extends BoInterfaceModelsCommon$1.IBaseModel, BoIn
|
|
|
896
896
|
}
|
|
897
897
|
|
|
898
898
|
interface IAccountAIImageChannel extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceModelsCommon$1.ITrackingModel<IUser> {
|
|
899
|
-
|
|
899
|
+
accountAIInfo: string | IAccountAIImageInfo;
|
|
900
|
+
name: string;
|
|
901
|
+
url: string;
|
|
902
|
+
}
|
|
903
|
+
|
|
904
|
+
interface IAccountAIVoiceTag extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceModelsCommon$1.ITrackingModel<IUser> {
|
|
905
|
+
name: string;
|
|
906
|
+
color: string;
|
|
907
|
+
}
|
|
908
|
+
|
|
909
|
+
interface IAccountAIVoiceGroup extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceModelsCommon$1.ITrackingModel<IUser> {
|
|
910
|
+
name: string;
|
|
911
|
+
slug: string;
|
|
912
|
+
}
|
|
913
|
+
|
|
914
|
+
interface IAccountAIVoice extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceModelsCommon$1.ITrackingModel<IUser> {
|
|
915
|
+
listGroupsAI: string[] | IAccountAIVoiceGroup[];
|
|
916
|
+
ideaManagerWork: string | IManagerWork;
|
|
917
|
+
nicheManagerWork: string[] | IManagerWork[];
|
|
918
|
+
subNicheManagerWork: string[] | IManagerWork[];
|
|
919
|
+
tags: string[] | IAccountAIVoiceTag[];
|
|
920
|
+
membersAssigned: string[] | IUser[];
|
|
921
|
+
}
|
|
922
|
+
|
|
923
|
+
declare enum EAIModelVoice {
|
|
924
|
+
Google = "Google"
|
|
925
|
+
}
|
|
926
|
+
|
|
927
|
+
declare enum EAIVersionVoice {
|
|
928
|
+
Google = "Google"
|
|
929
|
+
}
|
|
930
|
+
|
|
931
|
+
interface IAccountAIVoiceInfo extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceModelsCommon$1.ITrackingModel<IUser> {
|
|
932
|
+
accountAI: string | IAccountAIVoice;
|
|
933
|
+
model: EAIModelVoice;
|
|
934
|
+
provider: string;
|
|
935
|
+
versionModel: EAIVersionVoice;
|
|
936
|
+
email: string;
|
|
937
|
+
password: string;
|
|
938
|
+
emailPassword: string;
|
|
939
|
+
email2FA: string;
|
|
940
|
+
isActive: boolean;
|
|
941
|
+
}
|
|
942
|
+
|
|
943
|
+
interface IAccountAIVoiceChannel extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceModelsCommon$1.ITrackingModel<IUser> {
|
|
944
|
+
accountAIInfo: string | IAccountAIVoiceInfo;
|
|
900
945
|
name: string;
|
|
901
946
|
url: string;
|
|
902
947
|
}
|
|
@@ -1292,6 +1337,11 @@ type index$4_IAccountAIImageInfo = IAccountAIImageInfo;
|
|
|
1292
1337
|
type index$4_IAccountAIImageTag = IAccountAIImageTag;
|
|
1293
1338
|
type index$4_IAccountAIInfo = IAccountAIInfo;
|
|
1294
1339
|
type index$4_IAccountAITag = IAccountAITag;
|
|
1340
|
+
type index$4_IAccountAIVoice = IAccountAIVoice;
|
|
1341
|
+
type index$4_IAccountAIVoiceChannel = IAccountAIVoiceChannel;
|
|
1342
|
+
type index$4_IAccountAIVoiceGroup = IAccountAIVoiceGroup;
|
|
1343
|
+
type index$4_IAccountAIVoiceInfo = IAccountAIVoiceInfo;
|
|
1344
|
+
type index$4_IAccountAIVoiceTag = IAccountAIVoiceTag;
|
|
1295
1345
|
type index$4_IAccountDetailEmail = IAccountDetailEmail;
|
|
1296
1346
|
type index$4_IAccountDetailSocial = IAccountDetailSocial;
|
|
1297
1347
|
type index$4_IAccountVPS = IAccountVPS;
|
|
@@ -1326,7 +1376,7 @@ type index$4_IVoiceLanguage = IVoiceLanguage;
|
|
|
1326
1376
|
type index$4_IVoiceSettingDelay = IVoiceSettingDelay;
|
|
1327
1377
|
type index$4_IVoiceStores = IVoiceStores;
|
|
1328
1378
|
declare namespace index$4 {
|
|
1329
|
-
export type { index$4_IAccount as IAccount, index$4_IAccountAI as IAccountAI, index$4_IAccountAIChannel as IAccountAIChannel, index$4_IAccountAIGroup as IAccountAIGroup, index$4_IAccountAIImage as IAccountAIImage, index$4_IAccountAIImageChannel as IAccountAIImageChannel, index$4_IAccountAIImageGroup as IAccountAIImageGroup, index$4_IAccountAIImageInfo as IAccountAIImageInfo, index$4_IAccountAIImageTag as IAccountAIImageTag, index$4_IAccountAIInfo as IAccountAIInfo, index$4_IAccountAITag as IAccountAITag, index$4_IAccountDetailEmail as IAccountDetailEmail, index$4_IAccountDetailSocial as IAccountDetailSocial, index$4_IAccountVPS as IAccountVPS, index$4_IAccountVPSGroup as IAccountVPSGroup, index$4_IAccountsGroup as IAccountsGroup, index$4_ICanva as ICanva, index$4_ICanvaPosition as ICanvaPosition, index$4_IDevice as IDevice, index$4_IDeviceAllowPermission as IDeviceAllowPermission, index$4_IDeviceInfoEmail as IDeviceInfoEmail, index$4_IDeviceSetting as IDeviceSetting, index$4_IHistoryCanva as IHistoryCanva, index$4_ILogging as ILogging, index$4_IManagerSheet as IManagerSheet, index$4_IManagerSheetChildren as IManagerSheetChildren, index$4_IManagerSheetChildrenGroup as IManagerSheetChildrenGroup, index$4_IManagerSheetChildrenGroupItem as IManagerSheetChildrenGroupItem, index$4_IManagerSheetGroup as IManagerSheetGroup, index$4_IPC as IPC, index$4_IPatternCanvaAvatar as IPatternCanvaAvatar, index$4_IPatternCanvaCoverBackground as IPatternCanvaCoverBackground, index$4_IProxy as IProxy, index$4_IProxySetting as IProxySetting, index$4_IProxyTracking as IProxyTracking, index$4_ISheetsTool as ISheetsTool, index$4_ITaskAI as ITaskAI, index$4_ITaskAIItemAction as ITaskAIItemAction, index$4_ITaskAIItemGroup as ITaskAIItemGroup, index$4_ITaskTool as ITaskTool, index$4_IVoiceGenerated as IVoiceGenerated, index$4_IVoiceLanguage as IVoiceLanguage, index$4_IVoiceSettingDelay as IVoiceSettingDelay, index$4_IVoiceStores as IVoiceStores };
|
|
1379
|
+
export type { index$4_IAccount as IAccount, index$4_IAccountAI as IAccountAI, index$4_IAccountAIChannel as IAccountAIChannel, index$4_IAccountAIGroup as IAccountAIGroup, index$4_IAccountAIImage as IAccountAIImage, index$4_IAccountAIImageChannel as IAccountAIImageChannel, index$4_IAccountAIImageGroup as IAccountAIImageGroup, index$4_IAccountAIImageInfo as IAccountAIImageInfo, index$4_IAccountAIImageTag as IAccountAIImageTag, index$4_IAccountAIInfo as IAccountAIInfo, index$4_IAccountAITag as IAccountAITag, index$4_IAccountAIVoice as IAccountAIVoice, index$4_IAccountAIVoiceChannel as IAccountAIVoiceChannel, index$4_IAccountAIVoiceGroup as IAccountAIVoiceGroup, index$4_IAccountAIVoiceInfo as IAccountAIVoiceInfo, index$4_IAccountAIVoiceTag as IAccountAIVoiceTag, index$4_IAccountDetailEmail as IAccountDetailEmail, index$4_IAccountDetailSocial as IAccountDetailSocial, index$4_IAccountVPS as IAccountVPS, index$4_IAccountVPSGroup as IAccountVPSGroup, index$4_IAccountsGroup as IAccountsGroup, index$4_ICanva as ICanva, index$4_ICanvaPosition as ICanvaPosition, index$4_IDevice as IDevice, index$4_IDeviceAllowPermission as IDeviceAllowPermission, index$4_IDeviceInfoEmail as IDeviceInfoEmail, index$4_IDeviceSetting as IDeviceSetting, index$4_IHistoryCanva as IHistoryCanva, index$4_ILogging as ILogging, index$4_IManagerSheet as IManagerSheet, index$4_IManagerSheetChildren as IManagerSheetChildren, index$4_IManagerSheetChildrenGroup as IManagerSheetChildrenGroup, index$4_IManagerSheetChildrenGroupItem as IManagerSheetChildrenGroupItem, index$4_IManagerSheetGroup as IManagerSheetGroup, index$4_IPC as IPC, index$4_IPatternCanvaAvatar as IPatternCanvaAvatar, index$4_IPatternCanvaCoverBackground as IPatternCanvaCoverBackground, index$4_IProxy as IProxy, index$4_IProxySetting as IProxySetting, index$4_IProxyTracking as IProxyTracking, index$4_ISheetsTool as ISheetsTool, index$4_ITaskAI as ITaskAI, index$4_ITaskAIItemAction as ITaskAIItemAction, index$4_ITaskAIItemGroup as ITaskAIItemGroup, index$4_ITaskTool as ITaskTool, index$4_IVoiceGenerated as IVoiceGenerated, index$4_IVoiceLanguage as IVoiceLanguage, index$4_IVoiceSettingDelay as IVoiceSettingDelay, index$4_IVoiceStores as IVoiceStores };
|
|
1330
1380
|
}
|
|
1331
1381
|
|
|
1332
1382
|
interface IDeviceEmail extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ISoftDeleteModel<IUser>, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
package/dist/index.d.ts
CHANGED
|
@@ -875,7 +875,7 @@ interface IAccountAIImageGroup extends BoInterfaceModelsCommon$1.IBaseModel, BoI
|
|
|
875
875
|
}
|
|
876
876
|
|
|
877
877
|
interface IAccountAIImage extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceModelsCommon$1.ITrackingModel<IUser> {
|
|
878
|
-
|
|
878
|
+
listGroupsAI: string[] | IAccountAIImageGroup[];
|
|
879
879
|
ideaManagerWork: string | IManagerWork;
|
|
880
880
|
nicheManagerWork: string[] | IManagerWork[];
|
|
881
881
|
subNicheManagerWork: string[] | IManagerWork[];
|
|
@@ -884,7 +884,7 @@ interface IAccountAIImage extends BoInterfaceModelsCommon$1.IBaseModel, BoInterf
|
|
|
884
884
|
}
|
|
885
885
|
|
|
886
886
|
interface IAccountAIImageInfo extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceModelsCommon$1.ITrackingModel<IUser> {
|
|
887
|
-
|
|
887
|
+
accountAI: string | IAccountAIImage;
|
|
888
888
|
model: EAIModelImage;
|
|
889
889
|
provider: string;
|
|
890
890
|
versionModel: EAIVersionImage;
|
|
@@ -896,7 +896,52 @@ interface IAccountAIImageInfo extends BoInterfaceModelsCommon$1.IBaseModel, BoIn
|
|
|
896
896
|
}
|
|
897
897
|
|
|
898
898
|
interface IAccountAIImageChannel extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceModelsCommon$1.ITrackingModel<IUser> {
|
|
899
|
-
|
|
899
|
+
accountAIInfo: string | IAccountAIImageInfo;
|
|
900
|
+
name: string;
|
|
901
|
+
url: string;
|
|
902
|
+
}
|
|
903
|
+
|
|
904
|
+
interface IAccountAIVoiceTag extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceModelsCommon$1.ITrackingModel<IUser> {
|
|
905
|
+
name: string;
|
|
906
|
+
color: string;
|
|
907
|
+
}
|
|
908
|
+
|
|
909
|
+
interface IAccountAIVoiceGroup extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceModelsCommon$1.ITrackingModel<IUser> {
|
|
910
|
+
name: string;
|
|
911
|
+
slug: string;
|
|
912
|
+
}
|
|
913
|
+
|
|
914
|
+
interface IAccountAIVoice extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceModelsCommon$1.ITrackingModel<IUser> {
|
|
915
|
+
listGroupsAI: string[] | IAccountAIVoiceGroup[];
|
|
916
|
+
ideaManagerWork: string | IManagerWork;
|
|
917
|
+
nicheManagerWork: string[] | IManagerWork[];
|
|
918
|
+
subNicheManagerWork: string[] | IManagerWork[];
|
|
919
|
+
tags: string[] | IAccountAIVoiceTag[];
|
|
920
|
+
membersAssigned: string[] | IUser[];
|
|
921
|
+
}
|
|
922
|
+
|
|
923
|
+
declare enum EAIModelVoice {
|
|
924
|
+
Google = "Google"
|
|
925
|
+
}
|
|
926
|
+
|
|
927
|
+
declare enum EAIVersionVoice {
|
|
928
|
+
Google = "Google"
|
|
929
|
+
}
|
|
930
|
+
|
|
931
|
+
interface IAccountAIVoiceInfo extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceModelsCommon$1.ITrackingModel<IUser> {
|
|
932
|
+
accountAI: string | IAccountAIVoice;
|
|
933
|
+
model: EAIModelVoice;
|
|
934
|
+
provider: string;
|
|
935
|
+
versionModel: EAIVersionVoice;
|
|
936
|
+
email: string;
|
|
937
|
+
password: string;
|
|
938
|
+
emailPassword: string;
|
|
939
|
+
email2FA: string;
|
|
940
|
+
isActive: boolean;
|
|
941
|
+
}
|
|
942
|
+
|
|
943
|
+
interface IAccountAIVoiceChannel extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceModelsCommon$1.ITrackingModel<IUser> {
|
|
944
|
+
accountAIInfo: string | IAccountAIVoiceInfo;
|
|
900
945
|
name: string;
|
|
901
946
|
url: string;
|
|
902
947
|
}
|
|
@@ -1292,6 +1337,11 @@ type index$4_IAccountAIImageInfo = IAccountAIImageInfo;
|
|
|
1292
1337
|
type index$4_IAccountAIImageTag = IAccountAIImageTag;
|
|
1293
1338
|
type index$4_IAccountAIInfo = IAccountAIInfo;
|
|
1294
1339
|
type index$4_IAccountAITag = IAccountAITag;
|
|
1340
|
+
type index$4_IAccountAIVoice = IAccountAIVoice;
|
|
1341
|
+
type index$4_IAccountAIVoiceChannel = IAccountAIVoiceChannel;
|
|
1342
|
+
type index$4_IAccountAIVoiceGroup = IAccountAIVoiceGroup;
|
|
1343
|
+
type index$4_IAccountAIVoiceInfo = IAccountAIVoiceInfo;
|
|
1344
|
+
type index$4_IAccountAIVoiceTag = IAccountAIVoiceTag;
|
|
1295
1345
|
type index$4_IAccountDetailEmail = IAccountDetailEmail;
|
|
1296
1346
|
type index$4_IAccountDetailSocial = IAccountDetailSocial;
|
|
1297
1347
|
type index$4_IAccountVPS = IAccountVPS;
|
|
@@ -1326,7 +1376,7 @@ type index$4_IVoiceLanguage = IVoiceLanguage;
|
|
|
1326
1376
|
type index$4_IVoiceSettingDelay = IVoiceSettingDelay;
|
|
1327
1377
|
type index$4_IVoiceStores = IVoiceStores;
|
|
1328
1378
|
declare namespace index$4 {
|
|
1329
|
-
export type { index$4_IAccount as IAccount, index$4_IAccountAI as IAccountAI, index$4_IAccountAIChannel as IAccountAIChannel, index$4_IAccountAIGroup as IAccountAIGroup, index$4_IAccountAIImage as IAccountAIImage, index$4_IAccountAIImageChannel as IAccountAIImageChannel, index$4_IAccountAIImageGroup as IAccountAIImageGroup, index$4_IAccountAIImageInfo as IAccountAIImageInfo, index$4_IAccountAIImageTag as IAccountAIImageTag, index$4_IAccountAIInfo as IAccountAIInfo, index$4_IAccountAITag as IAccountAITag, index$4_IAccountDetailEmail as IAccountDetailEmail, index$4_IAccountDetailSocial as IAccountDetailSocial, index$4_IAccountVPS as IAccountVPS, index$4_IAccountVPSGroup as IAccountVPSGroup, index$4_IAccountsGroup as IAccountsGroup, index$4_ICanva as ICanva, index$4_ICanvaPosition as ICanvaPosition, index$4_IDevice as IDevice, index$4_IDeviceAllowPermission as IDeviceAllowPermission, index$4_IDeviceInfoEmail as IDeviceInfoEmail, index$4_IDeviceSetting as IDeviceSetting, index$4_IHistoryCanva as IHistoryCanva, index$4_ILogging as ILogging, index$4_IManagerSheet as IManagerSheet, index$4_IManagerSheetChildren as IManagerSheetChildren, index$4_IManagerSheetChildrenGroup as IManagerSheetChildrenGroup, index$4_IManagerSheetChildrenGroupItem as IManagerSheetChildrenGroupItem, index$4_IManagerSheetGroup as IManagerSheetGroup, index$4_IPC as IPC, index$4_IPatternCanvaAvatar as IPatternCanvaAvatar, index$4_IPatternCanvaCoverBackground as IPatternCanvaCoverBackground, index$4_IProxy as IProxy, index$4_IProxySetting as IProxySetting, index$4_IProxyTracking as IProxyTracking, index$4_ISheetsTool as ISheetsTool, index$4_ITaskAI as ITaskAI, index$4_ITaskAIItemAction as ITaskAIItemAction, index$4_ITaskAIItemGroup as ITaskAIItemGroup, index$4_ITaskTool as ITaskTool, index$4_IVoiceGenerated as IVoiceGenerated, index$4_IVoiceLanguage as IVoiceLanguage, index$4_IVoiceSettingDelay as IVoiceSettingDelay, index$4_IVoiceStores as IVoiceStores };
|
|
1379
|
+
export type { index$4_IAccount as IAccount, index$4_IAccountAI as IAccountAI, index$4_IAccountAIChannel as IAccountAIChannel, index$4_IAccountAIGroup as IAccountAIGroup, index$4_IAccountAIImage as IAccountAIImage, index$4_IAccountAIImageChannel as IAccountAIImageChannel, index$4_IAccountAIImageGroup as IAccountAIImageGroup, index$4_IAccountAIImageInfo as IAccountAIImageInfo, index$4_IAccountAIImageTag as IAccountAIImageTag, index$4_IAccountAIInfo as IAccountAIInfo, index$4_IAccountAITag as IAccountAITag, index$4_IAccountAIVoice as IAccountAIVoice, index$4_IAccountAIVoiceChannel as IAccountAIVoiceChannel, index$4_IAccountAIVoiceGroup as IAccountAIVoiceGroup, index$4_IAccountAIVoiceInfo as IAccountAIVoiceInfo, index$4_IAccountAIVoiceTag as IAccountAIVoiceTag, index$4_IAccountDetailEmail as IAccountDetailEmail, index$4_IAccountDetailSocial as IAccountDetailSocial, index$4_IAccountVPS as IAccountVPS, index$4_IAccountVPSGroup as IAccountVPSGroup, index$4_IAccountsGroup as IAccountsGroup, index$4_ICanva as ICanva, index$4_ICanvaPosition as ICanvaPosition, index$4_IDevice as IDevice, index$4_IDeviceAllowPermission as IDeviceAllowPermission, index$4_IDeviceInfoEmail as IDeviceInfoEmail, index$4_IDeviceSetting as IDeviceSetting, index$4_IHistoryCanva as IHistoryCanva, index$4_ILogging as ILogging, index$4_IManagerSheet as IManagerSheet, index$4_IManagerSheetChildren as IManagerSheetChildren, index$4_IManagerSheetChildrenGroup as IManagerSheetChildrenGroup, index$4_IManagerSheetChildrenGroupItem as IManagerSheetChildrenGroupItem, index$4_IManagerSheetGroup as IManagerSheetGroup, index$4_IPC as IPC, index$4_IPatternCanvaAvatar as IPatternCanvaAvatar, index$4_IPatternCanvaCoverBackground as IPatternCanvaCoverBackground, index$4_IProxy as IProxy, index$4_IProxySetting as IProxySetting, index$4_IProxyTracking as IProxyTracking, index$4_ISheetsTool as ISheetsTool, index$4_ITaskAI as ITaskAI, index$4_ITaskAIItemAction as ITaskAIItemAction, index$4_ITaskAIItemGroup as ITaskAIItemGroup, index$4_ITaskTool as ITaskTool, index$4_IVoiceGenerated as IVoiceGenerated, index$4_IVoiceLanguage as IVoiceLanguage, index$4_IVoiceSettingDelay as IVoiceSettingDelay, index$4_IVoiceStores as IVoiceStores };
|
|
1330
1380
|
}
|
|
1331
1381
|
|
|
1332
1382
|
interface IDeviceEmail extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ISoftDeleteModel<IUser>, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|