automation-lib 4.8.83 → 4.8.84
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 +34 -20
- package/dist/index.d.ts +34 -20
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -581,18 +581,48 @@ interface IPatternCanvaCoverBackground extends BoInterfaceModelsCommon.IBaseMode
|
|
|
581
581
|
interface IAccountAIGroup extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceModelsCommon$1.ITrackingModel<IUser> {
|
|
582
582
|
name: string;
|
|
583
583
|
slug: string;
|
|
584
|
+
accountsAI: string[] | IAccountAI[];
|
|
585
|
+
}
|
|
586
|
+
|
|
587
|
+
interface IIdea extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ISoftDeleteModel<IUser>, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
588
|
+
idea_name: string;
|
|
589
|
+
idea_slug: string;
|
|
590
|
+
}
|
|
591
|
+
|
|
592
|
+
interface INiche extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ISoftDeleteModel<IUser>, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
593
|
+
niche_name: string;
|
|
594
|
+
niche_slug: string;
|
|
595
|
+
niche_idea: string | IIdea;
|
|
596
|
+
}
|
|
597
|
+
|
|
598
|
+
interface ITrackingScriptExecuted extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
599
|
+
tse_accountId: string;
|
|
600
|
+
tse_serviceName: string;
|
|
601
|
+
tse_actionsExecuted: string[];
|
|
584
602
|
}
|
|
585
603
|
|
|
586
604
|
interface IAccountAI extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceModelsCommon$1.ITrackingModel<IUser> {
|
|
587
|
-
|
|
605
|
+
tags: string[] | IAccountAITag[];
|
|
606
|
+
idea: string | IIdea;
|
|
607
|
+
niche: string[] | INiche[];
|
|
608
|
+
membersAssigned: string[] | IUser[];
|
|
609
|
+
groups: string[] | IAccountAIGroup[];
|
|
588
610
|
type: ETypeAccountAI;
|
|
589
611
|
provider: string;
|
|
590
612
|
versionAI: string;
|
|
591
|
-
|
|
613
|
+
email: string;
|
|
592
614
|
password: string;
|
|
615
|
+
emailPassword: string;
|
|
616
|
+
email2FA: string;
|
|
593
617
|
isActive: boolean;
|
|
594
618
|
}
|
|
595
619
|
|
|
620
|
+
interface IAccountAITag extends BoInterfaceModelsCommon$1.IBaseModel {
|
|
621
|
+
accountAI: string | IAccountAI;
|
|
622
|
+
name: string;
|
|
623
|
+
color: string;
|
|
624
|
+
}
|
|
625
|
+
|
|
596
626
|
interface IAccountAIChannel extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceModelsCommon$1.ITrackingModel<IUser> {
|
|
597
627
|
account: string | IAccountAI;
|
|
598
628
|
name: string;
|
|
@@ -886,23 +916,6 @@ interface IProxy extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCo
|
|
|
886
916
|
proxy_tracker: IProxyTracking | string;
|
|
887
917
|
}
|
|
888
918
|
|
|
889
|
-
interface IIdea extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ISoftDeleteModel<IUser>, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
890
|
-
idea_name: string;
|
|
891
|
-
idea_slug: string;
|
|
892
|
-
}
|
|
893
|
-
|
|
894
|
-
interface INiche extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ISoftDeleteModel<IUser>, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
895
|
-
niche_name: string;
|
|
896
|
-
niche_slug: string;
|
|
897
|
-
niche_idea: string | IIdea;
|
|
898
|
-
}
|
|
899
|
-
|
|
900
|
-
interface ITrackingScriptExecuted extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
901
|
-
tse_accountId: string;
|
|
902
|
-
tse_serviceName: string;
|
|
903
|
-
tse_actionsExecuted: string[];
|
|
904
|
-
}
|
|
905
|
-
|
|
906
919
|
interface IAccountDetailEmail {
|
|
907
920
|
email: string;
|
|
908
921
|
emailPassword: string;
|
|
@@ -1115,6 +1128,7 @@ type index$4_IAccount = IAccount;
|
|
|
1115
1128
|
type index$4_IAccountAI = IAccountAI;
|
|
1116
1129
|
type index$4_IAccountAIChannel = IAccountAIChannel;
|
|
1117
1130
|
type index$4_IAccountAIGroup = IAccountAIGroup;
|
|
1131
|
+
type index$4_IAccountAITag = IAccountAITag;
|
|
1118
1132
|
type index$4_IAccountDetailEmail = IAccountDetailEmail;
|
|
1119
1133
|
type index$4_IAccountDetailSocial = IAccountDetailSocial;
|
|
1120
1134
|
type index$4_IAccountVPS = IAccountVPS;
|
|
@@ -1149,7 +1163,7 @@ type index$4_IVoiceLanguage = IVoiceLanguage;
|
|
|
1149
1163
|
type index$4_IVoiceSettingDelay = IVoiceSettingDelay;
|
|
1150
1164
|
type index$4_IVoiceStores = IVoiceStores;
|
|
1151
1165
|
declare namespace index$4 {
|
|
1152
|
-
export type { index$4_IAccount as IAccount, index$4_IAccountAI as IAccountAI, index$4_IAccountAIChannel as IAccountAIChannel, index$4_IAccountAIGroup as IAccountAIGroup, 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 };
|
|
1166
|
+
export type { index$4_IAccount as IAccount, index$4_IAccountAI as IAccountAI, index$4_IAccountAIChannel as IAccountAIChannel, index$4_IAccountAIGroup as IAccountAIGroup, 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 };
|
|
1153
1167
|
}
|
|
1154
1168
|
|
|
1155
1169
|
interface IDeviceEmail extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ISoftDeleteModel<IUser>, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
package/dist/index.d.ts
CHANGED
|
@@ -581,18 +581,48 @@ interface IPatternCanvaCoverBackground extends BoInterfaceModelsCommon.IBaseMode
|
|
|
581
581
|
interface IAccountAIGroup extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceModelsCommon$1.ITrackingModel<IUser> {
|
|
582
582
|
name: string;
|
|
583
583
|
slug: string;
|
|
584
|
+
accountsAI: string[] | IAccountAI[];
|
|
585
|
+
}
|
|
586
|
+
|
|
587
|
+
interface IIdea extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ISoftDeleteModel<IUser>, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
588
|
+
idea_name: string;
|
|
589
|
+
idea_slug: string;
|
|
590
|
+
}
|
|
591
|
+
|
|
592
|
+
interface INiche extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ISoftDeleteModel<IUser>, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
593
|
+
niche_name: string;
|
|
594
|
+
niche_slug: string;
|
|
595
|
+
niche_idea: string | IIdea;
|
|
596
|
+
}
|
|
597
|
+
|
|
598
|
+
interface ITrackingScriptExecuted extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
599
|
+
tse_accountId: string;
|
|
600
|
+
tse_serviceName: string;
|
|
601
|
+
tse_actionsExecuted: string[];
|
|
584
602
|
}
|
|
585
603
|
|
|
586
604
|
interface IAccountAI extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceModelsCommon$1.ITrackingModel<IUser> {
|
|
587
|
-
|
|
605
|
+
tags: string[] | IAccountAITag[];
|
|
606
|
+
idea: string | IIdea;
|
|
607
|
+
niche: string[] | INiche[];
|
|
608
|
+
membersAssigned: string[] | IUser[];
|
|
609
|
+
groups: string[] | IAccountAIGroup[];
|
|
588
610
|
type: ETypeAccountAI;
|
|
589
611
|
provider: string;
|
|
590
612
|
versionAI: string;
|
|
591
|
-
|
|
613
|
+
email: string;
|
|
592
614
|
password: string;
|
|
615
|
+
emailPassword: string;
|
|
616
|
+
email2FA: string;
|
|
593
617
|
isActive: boolean;
|
|
594
618
|
}
|
|
595
619
|
|
|
620
|
+
interface IAccountAITag extends BoInterfaceModelsCommon$1.IBaseModel {
|
|
621
|
+
accountAI: string | IAccountAI;
|
|
622
|
+
name: string;
|
|
623
|
+
color: string;
|
|
624
|
+
}
|
|
625
|
+
|
|
596
626
|
interface IAccountAIChannel extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceModelsCommon$1.ITrackingModel<IUser> {
|
|
597
627
|
account: string | IAccountAI;
|
|
598
628
|
name: string;
|
|
@@ -886,23 +916,6 @@ interface IProxy extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCo
|
|
|
886
916
|
proxy_tracker: IProxyTracking | string;
|
|
887
917
|
}
|
|
888
918
|
|
|
889
|
-
interface IIdea extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ISoftDeleteModel<IUser>, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
890
|
-
idea_name: string;
|
|
891
|
-
idea_slug: string;
|
|
892
|
-
}
|
|
893
|
-
|
|
894
|
-
interface INiche extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ISoftDeleteModel<IUser>, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
895
|
-
niche_name: string;
|
|
896
|
-
niche_slug: string;
|
|
897
|
-
niche_idea: string | IIdea;
|
|
898
|
-
}
|
|
899
|
-
|
|
900
|
-
interface ITrackingScriptExecuted extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
901
|
-
tse_accountId: string;
|
|
902
|
-
tse_serviceName: string;
|
|
903
|
-
tse_actionsExecuted: string[];
|
|
904
|
-
}
|
|
905
|
-
|
|
906
919
|
interface IAccountDetailEmail {
|
|
907
920
|
email: string;
|
|
908
921
|
emailPassword: string;
|
|
@@ -1115,6 +1128,7 @@ type index$4_IAccount = IAccount;
|
|
|
1115
1128
|
type index$4_IAccountAI = IAccountAI;
|
|
1116
1129
|
type index$4_IAccountAIChannel = IAccountAIChannel;
|
|
1117
1130
|
type index$4_IAccountAIGroup = IAccountAIGroup;
|
|
1131
|
+
type index$4_IAccountAITag = IAccountAITag;
|
|
1118
1132
|
type index$4_IAccountDetailEmail = IAccountDetailEmail;
|
|
1119
1133
|
type index$4_IAccountDetailSocial = IAccountDetailSocial;
|
|
1120
1134
|
type index$4_IAccountVPS = IAccountVPS;
|
|
@@ -1149,7 +1163,7 @@ type index$4_IVoiceLanguage = IVoiceLanguage;
|
|
|
1149
1163
|
type index$4_IVoiceSettingDelay = IVoiceSettingDelay;
|
|
1150
1164
|
type index$4_IVoiceStores = IVoiceStores;
|
|
1151
1165
|
declare namespace index$4 {
|
|
1152
|
-
export type { index$4_IAccount as IAccount, index$4_IAccountAI as IAccountAI, index$4_IAccountAIChannel as IAccountAIChannel, index$4_IAccountAIGroup as IAccountAIGroup, 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 };
|
|
1166
|
+
export type { index$4_IAccount as IAccount, index$4_IAccountAI as IAccountAI, index$4_IAccountAIChannel as IAccountAIChannel, index$4_IAccountAIGroup as IAccountAIGroup, 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 };
|
|
1153
1167
|
}
|
|
1154
1168
|
|
|
1155
1169
|
interface IDeviceEmail extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ISoftDeleteModel<IUser>, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|