automation-lib 4.9.39 → 4.9.40
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 +39 -27
- package/dist/index.d.ts +39 -27
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -901,15 +901,6 @@ interface IAccountAIImageGroup extends BoInterfaceModelsCommon$1.IBaseModel, BoI
|
|
|
901
901
|
slug: string;
|
|
902
902
|
}
|
|
903
903
|
|
|
904
|
-
interface IAccountAIImage extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceModelsCommon$1.ITrackingModel<IUser> {
|
|
905
|
-
listGroupsAI: string[] | IAccountAIImageGroup[];
|
|
906
|
-
ideaManagerWork: string | IManagerWork;
|
|
907
|
-
nicheManagerWork: string[] | IManagerWork[];
|
|
908
|
-
subNicheManagerWork: string[] | IManagerWork[];
|
|
909
|
-
tags: string[] | IAccountAIImageTag[];
|
|
910
|
-
membersAssigned: string[] | IUser[];
|
|
911
|
-
}
|
|
912
|
-
|
|
913
904
|
interface IAccountEmail extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
914
905
|
email: string;
|
|
915
906
|
password: string;
|
|
@@ -937,6 +928,19 @@ interface IAccountAIImageInfo extends BoInterfaceModelsCommon$1.IBaseModel, BoIn
|
|
|
937
928
|
status: EStatusAccountAI;
|
|
938
929
|
}
|
|
939
930
|
|
|
931
|
+
interface IAccountAIImage extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceModelsCommon$1.ITrackingModel<IUser> {
|
|
932
|
+
listGroupsAI: string[] | IAccountAIImageGroup[];
|
|
933
|
+
ideaManagerWork: string | IManagerWork;
|
|
934
|
+
nicheManagerWork: string[] | IManagerWork[];
|
|
935
|
+
subNicheManagerWork: string[] | IManagerWork[];
|
|
936
|
+
tags: string[] | IAccountAIImageTag[];
|
|
937
|
+
membersAssigned: string[] | IUser[];
|
|
938
|
+
listAccountInfoChannels: Array<{
|
|
939
|
+
accountInfo: IAccountAIImageInfo | string;
|
|
940
|
+
listChannels: IAccountAIImageChannel[] | string[];
|
|
941
|
+
}>;
|
|
942
|
+
}
|
|
943
|
+
|
|
940
944
|
interface IAccountAIVoiceTag extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceModelsCommon$1.ITrackingModel<IUser> {
|
|
941
945
|
name: string;
|
|
942
946
|
color: string;
|
|
@@ -947,15 +951,6 @@ interface IAccountAIVoiceGroup extends BoInterfaceModelsCommon$1.IBaseModel, BoI
|
|
|
947
951
|
slug: string;
|
|
948
952
|
}
|
|
949
953
|
|
|
950
|
-
interface IAccountAIVoice extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceModelsCommon$1.ITrackingModel<IUser> {
|
|
951
|
-
listGroupsAI: string[] | IAccountAIVoiceGroup[];
|
|
952
|
-
ideaManagerWork: string | IManagerWork;
|
|
953
|
-
nicheManagerWork: string[] | IManagerWork[];
|
|
954
|
-
subNicheManagerWork: string[] | IManagerWork[];
|
|
955
|
-
tags: string[] | IAccountAIVoiceTag[];
|
|
956
|
-
membersAssigned: string[] | IUser[];
|
|
957
|
-
}
|
|
958
|
-
|
|
959
954
|
interface IAccountAIVoiceChannel extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceModelsCommon$1.ITrackingModel<IUser> {
|
|
960
955
|
model: EAIModelVoice;
|
|
961
956
|
name: string;
|
|
@@ -975,6 +970,19 @@ interface IAccountAIVoiceInfo extends BoInterfaceModelsCommon$1.IBaseModel, BoIn
|
|
|
975
970
|
isActive: boolean;
|
|
976
971
|
}
|
|
977
972
|
|
|
973
|
+
interface IAccountAIVoice extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceModelsCommon$1.ITrackingModel<IUser> {
|
|
974
|
+
listGroupsAI: string[] | IAccountAIVoiceGroup[];
|
|
975
|
+
ideaManagerWork: string | IManagerWork;
|
|
976
|
+
nicheManagerWork: string[] | IManagerWork[];
|
|
977
|
+
subNicheManagerWork: string[] | IManagerWork[];
|
|
978
|
+
tags: string[] | IAccountAIVoiceTag[];
|
|
979
|
+
membersAssigned: string[] | IUser[];
|
|
980
|
+
listAccountInfoChannels: Array<{
|
|
981
|
+
accountInfo: IAccountAIVoiceInfo | string;
|
|
982
|
+
listChannels: IAccountAIVoiceChannel[] | string[];
|
|
983
|
+
}>;
|
|
984
|
+
}
|
|
985
|
+
|
|
978
986
|
interface IAccountAITag extends BoInterfaceModelsCommon$1.IBaseModel {
|
|
979
987
|
name: string;
|
|
980
988
|
color: string;
|
|
@@ -985,15 +993,6 @@ interface IAccountAIGroup extends BoInterfaceModelsCommon$1.IBaseModel, BoInterf
|
|
|
985
993
|
slug: string;
|
|
986
994
|
}
|
|
987
995
|
|
|
988
|
-
interface IAccountAI extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceModelsCommon$1.ITrackingModel<IUser> {
|
|
989
|
-
listGroupsAI: string[] | IAccountAIGroup[];
|
|
990
|
-
ideaManagerWork: string | IManagerWork;
|
|
991
|
-
nicheManagerWork: string[] | IManagerWork[];
|
|
992
|
-
subNicheManagerWork: string[] | IManagerWork[];
|
|
993
|
-
tags: string[] | IAccountAITag[];
|
|
994
|
-
membersAssigned: string[] | IUser[];
|
|
995
|
-
}
|
|
996
|
-
|
|
997
996
|
interface IAccountAIChannel extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceModelsCommon$1.ITrackingModel<IUser> {
|
|
998
997
|
model: EAIModelContent;
|
|
999
998
|
name: string;
|
|
@@ -1014,6 +1013,19 @@ interface IAccountAIInfo extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfa
|
|
|
1014
1013
|
status: EStatusAccountAI;
|
|
1015
1014
|
}
|
|
1016
1015
|
|
|
1016
|
+
interface IAccountAI extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceModelsCommon$1.ITrackingModel<IUser> {
|
|
1017
|
+
listGroupsAI: string[] | IAccountAIGroup[];
|
|
1018
|
+
ideaManagerWork: string | IManagerWork;
|
|
1019
|
+
nicheManagerWork: string[] | IManagerWork[];
|
|
1020
|
+
subNicheManagerWork: string[] | IManagerWork[];
|
|
1021
|
+
tags: string[] | IAccountAITag[];
|
|
1022
|
+
membersAssigned: string[] | IUser[];
|
|
1023
|
+
listAccountInfoChannels: Array<{
|
|
1024
|
+
accountInfo: IAccountAIInfo | string;
|
|
1025
|
+
listChannels: IAccountAIChannel[] | string[];
|
|
1026
|
+
}>;
|
|
1027
|
+
}
|
|
1028
|
+
|
|
1017
1029
|
interface IAccountVPSGroup extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceModelsCommon$1.ITrackingModel<IUser> {
|
|
1018
1030
|
name: string;
|
|
1019
1031
|
slug: string;
|
package/dist/index.d.ts
CHANGED
|
@@ -901,15 +901,6 @@ interface IAccountAIImageGroup extends BoInterfaceModelsCommon$1.IBaseModel, BoI
|
|
|
901
901
|
slug: string;
|
|
902
902
|
}
|
|
903
903
|
|
|
904
|
-
interface IAccountAIImage extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceModelsCommon$1.ITrackingModel<IUser> {
|
|
905
|
-
listGroupsAI: string[] | IAccountAIImageGroup[];
|
|
906
|
-
ideaManagerWork: string | IManagerWork;
|
|
907
|
-
nicheManagerWork: string[] | IManagerWork[];
|
|
908
|
-
subNicheManagerWork: string[] | IManagerWork[];
|
|
909
|
-
tags: string[] | IAccountAIImageTag[];
|
|
910
|
-
membersAssigned: string[] | IUser[];
|
|
911
|
-
}
|
|
912
|
-
|
|
913
904
|
interface IAccountEmail extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
914
905
|
email: string;
|
|
915
906
|
password: string;
|
|
@@ -937,6 +928,19 @@ interface IAccountAIImageInfo extends BoInterfaceModelsCommon$1.IBaseModel, BoIn
|
|
|
937
928
|
status: EStatusAccountAI;
|
|
938
929
|
}
|
|
939
930
|
|
|
931
|
+
interface IAccountAIImage extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceModelsCommon$1.ITrackingModel<IUser> {
|
|
932
|
+
listGroupsAI: string[] | IAccountAIImageGroup[];
|
|
933
|
+
ideaManagerWork: string | IManagerWork;
|
|
934
|
+
nicheManagerWork: string[] | IManagerWork[];
|
|
935
|
+
subNicheManagerWork: string[] | IManagerWork[];
|
|
936
|
+
tags: string[] | IAccountAIImageTag[];
|
|
937
|
+
membersAssigned: string[] | IUser[];
|
|
938
|
+
listAccountInfoChannels: Array<{
|
|
939
|
+
accountInfo: IAccountAIImageInfo | string;
|
|
940
|
+
listChannels: IAccountAIImageChannel[] | string[];
|
|
941
|
+
}>;
|
|
942
|
+
}
|
|
943
|
+
|
|
940
944
|
interface IAccountAIVoiceTag extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceModelsCommon$1.ITrackingModel<IUser> {
|
|
941
945
|
name: string;
|
|
942
946
|
color: string;
|
|
@@ -947,15 +951,6 @@ interface IAccountAIVoiceGroup extends BoInterfaceModelsCommon$1.IBaseModel, BoI
|
|
|
947
951
|
slug: string;
|
|
948
952
|
}
|
|
949
953
|
|
|
950
|
-
interface IAccountAIVoice extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceModelsCommon$1.ITrackingModel<IUser> {
|
|
951
|
-
listGroupsAI: string[] | IAccountAIVoiceGroup[];
|
|
952
|
-
ideaManagerWork: string | IManagerWork;
|
|
953
|
-
nicheManagerWork: string[] | IManagerWork[];
|
|
954
|
-
subNicheManagerWork: string[] | IManagerWork[];
|
|
955
|
-
tags: string[] | IAccountAIVoiceTag[];
|
|
956
|
-
membersAssigned: string[] | IUser[];
|
|
957
|
-
}
|
|
958
|
-
|
|
959
954
|
interface IAccountAIVoiceChannel extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceModelsCommon$1.ITrackingModel<IUser> {
|
|
960
955
|
model: EAIModelVoice;
|
|
961
956
|
name: string;
|
|
@@ -975,6 +970,19 @@ interface IAccountAIVoiceInfo extends BoInterfaceModelsCommon$1.IBaseModel, BoIn
|
|
|
975
970
|
isActive: boolean;
|
|
976
971
|
}
|
|
977
972
|
|
|
973
|
+
interface IAccountAIVoice extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceModelsCommon$1.ITrackingModel<IUser> {
|
|
974
|
+
listGroupsAI: string[] | IAccountAIVoiceGroup[];
|
|
975
|
+
ideaManagerWork: string | IManagerWork;
|
|
976
|
+
nicheManagerWork: string[] | IManagerWork[];
|
|
977
|
+
subNicheManagerWork: string[] | IManagerWork[];
|
|
978
|
+
tags: string[] | IAccountAIVoiceTag[];
|
|
979
|
+
membersAssigned: string[] | IUser[];
|
|
980
|
+
listAccountInfoChannels: Array<{
|
|
981
|
+
accountInfo: IAccountAIVoiceInfo | string;
|
|
982
|
+
listChannels: IAccountAIVoiceChannel[] | string[];
|
|
983
|
+
}>;
|
|
984
|
+
}
|
|
985
|
+
|
|
978
986
|
interface IAccountAITag extends BoInterfaceModelsCommon$1.IBaseModel {
|
|
979
987
|
name: string;
|
|
980
988
|
color: string;
|
|
@@ -985,15 +993,6 @@ interface IAccountAIGroup extends BoInterfaceModelsCommon$1.IBaseModel, BoInterf
|
|
|
985
993
|
slug: string;
|
|
986
994
|
}
|
|
987
995
|
|
|
988
|
-
interface IAccountAI extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceModelsCommon$1.ITrackingModel<IUser> {
|
|
989
|
-
listGroupsAI: string[] | IAccountAIGroup[];
|
|
990
|
-
ideaManagerWork: string | IManagerWork;
|
|
991
|
-
nicheManagerWork: string[] | IManagerWork[];
|
|
992
|
-
subNicheManagerWork: string[] | IManagerWork[];
|
|
993
|
-
tags: string[] | IAccountAITag[];
|
|
994
|
-
membersAssigned: string[] | IUser[];
|
|
995
|
-
}
|
|
996
|
-
|
|
997
996
|
interface IAccountAIChannel extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceModelsCommon$1.ITrackingModel<IUser> {
|
|
998
997
|
model: EAIModelContent;
|
|
999
998
|
name: string;
|
|
@@ -1014,6 +1013,19 @@ interface IAccountAIInfo extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfa
|
|
|
1014
1013
|
status: EStatusAccountAI;
|
|
1015
1014
|
}
|
|
1016
1015
|
|
|
1016
|
+
interface IAccountAI extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceModelsCommon$1.ITrackingModel<IUser> {
|
|
1017
|
+
listGroupsAI: string[] | IAccountAIGroup[];
|
|
1018
|
+
ideaManagerWork: string | IManagerWork;
|
|
1019
|
+
nicheManagerWork: string[] | IManagerWork[];
|
|
1020
|
+
subNicheManagerWork: string[] | IManagerWork[];
|
|
1021
|
+
tags: string[] | IAccountAITag[];
|
|
1022
|
+
membersAssigned: string[] | IUser[];
|
|
1023
|
+
listAccountInfoChannels: Array<{
|
|
1024
|
+
accountInfo: IAccountAIInfo | string;
|
|
1025
|
+
listChannels: IAccountAIChannel[] | string[];
|
|
1026
|
+
}>;
|
|
1027
|
+
}
|
|
1028
|
+
|
|
1017
1029
|
interface IAccountVPSGroup extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceModelsCommon$1.ITrackingModel<IUser> {
|
|
1018
1030
|
name: string;
|
|
1019
1031
|
slug: string;
|