automation-lib 4.8.72 → 4.8.73
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 +9 -1
- package/dist/index.d.ts +9 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -569,7 +569,7 @@ interface IPatternCanvaCoverBackground extends BoInterfaceModelsCommon.IBaseMode
|
|
|
569
569
|
}
|
|
570
570
|
|
|
571
571
|
interface IAccountAIGroup extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceModelsCommon$1.ITrackingModel<IUser> {
|
|
572
|
-
name:
|
|
572
|
+
name: string;
|
|
573
573
|
slug: string;
|
|
574
574
|
}
|
|
575
575
|
|
|
@@ -589,7 +589,13 @@ interface IAccountAIChannel extends BoInterfaceModelsCommon$1.IBaseModel, BoInte
|
|
|
589
589
|
url: string;
|
|
590
590
|
}
|
|
591
591
|
|
|
592
|
+
interface IAccountVPSGroup extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceModelsCommon$1.ITrackingModel<IUser> {
|
|
593
|
+
name: string;
|
|
594
|
+
slug: string;
|
|
595
|
+
}
|
|
596
|
+
|
|
592
597
|
interface IAccountVPS extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceModelsCommon$1.ITrackingModel<IUser> {
|
|
598
|
+
group: string | IAccountVPSGroup;
|
|
593
599
|
ip: string;
|
|
594
600
|
port: string;
|
|
595
601
|
username: string;
|
|
@@ -1061,6 +1067,8 @@ interface IManagerSheetChildren extends BoInterfaceModelsCommon$1.IBaseModel, Bo
|
|
|
1061
1067
|
interface IManagerSheetChildrenGroup extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceModelsCommon$1.ITrackingModel<IUser> {
|
|
1062
1068
|
sheetChildren: string | IManagerSheetChildren;
|
|
1063
1069
|
name: string;
|
|
1070
|
+
slug: string;
|
|
1071
|
+
order: number;
|
|
1064
1072
|
}
|
|
1065
1073
|
|
|
1066
1074
|
interface IManagerSheetChildrenGroupItem extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceModelsCommon$1.ITrackingModel<IUser> {
|
package/dist/index.d.ts
CHANGED
|
@@ -569,7 +569,7 @@ interface IPatternCanvaCoverBackground extends BoInterfaceModelsCommon.IBaseMode
|
|
|
569
569
|
}
|
|
570
570
|
|
|
571
571
|
interface IAccountAIGroup extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceModelsCommon$1.ITrackingModel<IUser> {
|
|
572
|
-
name:
|
|
572
|
+
name: string;
|
|
573
573
|
slug: string;
|
|
574
574
|
}
|
|
575
575
|
|
|
@@ -589,7 +589,13 @@ interface IAccountAIChannel extends BoInterfaceModelsCommon$1.IBaseModel, BoInte
|
|
|
589
589
|
url: string;
|
|
590
590
|
}
|
|
591
591
|
|
|
592
|
+
interface IAccountVPSGroup extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceModelsCommon$1.ITrackingModel<IUser> {
|
|
593
|
+
name: string;
|
|
594
|
+
slug: string;
|
|
595
|
+
}
|
|
596
|
+
|
|
592
597
|
interface IAccountVPS extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceModelsCommon$1.ITrackingModel<IUser> {
|
|
598
|
+
group: string | IAccountVPSGroup;
|
|
593
599
|
ip: string;
|
|
594
600
|
port: string;
|
|
595
601
|
username: string;
|
|
@@ -1061,6 +1067,8 @@ interface IManagerSheetChildren extends BoInterfaceModelsCommon$1.IBaseModel, Bo
|
|
|
1061
1067
|
interface IManagerSheetChildrenGroup extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceModelsCommon$1.ITrackingModel<IUser> {
|
|
1062
1068
|
sheetChildren: string | IManagerSheetChildren;
|
|
1063
1069
|
name: string;
|
|
1070
|
+
slug: string;
|
|
1071
|
+
order: number;
|
|
1064
1072
|
}
|
|
1065
1073
|
|
|
1066
1074
|
interface IManagerSheetChildrenGroupItem extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceModelsCommon$1.ITrackingModel<IUser> {
|