automation-lib 6.6.435 → 6.6.437
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 +6 -4
- package/dist/index.d.ts +6 -4
- package/dist/index.js +2 -0
- package/dist/index.mjs +2 -0
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -10303,7 +10303,9 @@ declare enum EFilterOptionInstagramSocial {
|
|
|
10303
10303
|
DeviceName = "DeviceName",
|
|
10304
10304
|
Account = "Account",
|
|
10305
10305
|
Idea = "Idea",
|
|
10306
|
-
Niche = "Niche"
|
|
10306
|
+
Niche = "Niche",
|
|
10307
|
+
PC = "PC",
|
|
10308
|
+
AccountGroup = "AccountGroup"
|
|
10307
10309
|
}
|
|
10308
10310
|
|
|
10309
10311
|
interface FindOverViewInstagramReportPostHighLightDto {
|
|
@@ -18206,7 +18208,7 @@ interface IManualContentSocialInstagramChildrenItemPost extends IBaseModel, ITra
|
|
|
18206
18208
|
listFiles: Array<{
|
|
18207
18209
|
id: string;
|
|
18208
18210
|
url: string;
|
|
18209
|
-
type:
|
|
18211
|
+
type: "Video" | "Image";
|
|
18210
18212
|
}>;
|
|
18211
18213
|
manualContentSocialChildrenId: string;
|
|
18212
18214
|
status: EManualContentSocialInstagramStatusPost;
|
|
@@ -18230,8 +18232,8 @@ interface ITaskManualContentSocialInstagram extends IBaseModel, ITrackingModel {
|
|
|
18230
18232
|
}
|
|
18231
18233
|
|
|
18232
18234
|
interface IManualContentSocialPermissionInstagram extends IBaseModel {
|
|
18233
|
-
|
|
18234
|
-
|
|
18235
|
+
manualContentSocial: string | IManualContentSocialInstagram;
|
|
18236
|
+
user: string | IUser;
|
|
18235
18237
|
}
|
|
18236
18238
|
|
|
18237
18239
|
declare enum EManualContentSocialThreadsStatusPost {
|
package/dist/index.d.ts
CHANGED
|
@@ -10303,7 +10303,9 @@ declare enum EFilterOptionInstagramSocial {
|
|
|
10303
10303
|
DeviceName = "DeviceName",
|
|
10304
10304
|
Account = "Account",
|
|
10305
10305
|
Idea = "Idea",
|
|
10306
|
-
Niche = "Niche"
|
|
10306
|
+
Niche = "Niche",
|
|
10307
|
+
PC = "PC",
|
|
10308
|
+
AccountGroup = "AccountGroup"
|
|
10307
10309
|
}
|
|
10308
10310
|
|
|
10309
10311
|
interface FindOverViewInstagramReportPostHighLightDto {
|
|
@@ -18206,7 +18208,7 @@ interface IManualContentSocialInstagramChildrenItemPost extends IBaseModel, ITra
|
|
|
18206
18208
|
listFiles: Array<{
|
|
18207
18209
|
id: string;
|
|
18208
18210
|
url: string;
|
|
18209
|
-
type:
|
|
18211
|
+
type: "Video" | "Image";
|
|
18210
18212
|
}>;
|
|
18211
18213
|
manualContentSocialChildrenId: string;
|
|
18212
18214
|
status: EManualContentSocialInstagramStatusPost;
|
|
@@ -18230,8 +18232,8 @@ interface ITaskManualContentSocialInstagram extends IBaseModel, ITrackingModel {
|
|
|
18230
18232
|
}
|
|
18231
18233
|
|
|
18232
18234
|
interface IManualContentSocialPermissionInstagram extends IBaseModel {
|
|
18233
|
-
|
|
18234
|
-
|
|
18235
|
+
manualContentSocial: string | IManualContentSocialInstagram;
|
|
18236
|
+
user: string | IUser;
|
|
18235
18237
|
}
|
|
18236
18238
|
|
|
18237
18239
|
declare enum EManualContentSocialThreadsStatusPost {
|
package/dist/index.js
CHANGED
|
@@ -2574,6 +2574,8 @@ var EFilterOptionInstagramSocial = /* @__PURE__ */ ((EFilterOptionInstagramSocia
|
|
|
2574
2574
|
EFilterOptionInstagramSocial2["Account"] = "Account";
|
|
2575
2575
|
EFilterOptionInstagramSocial2["Idea"] = "Idea";
|
|
2576
2576
|
EFilterOptionInstagramSocial2["Niche"] = "Niche";
|
|
2577
|
+
EFilterOptionInstagramSocial2["PC"] = "PC";
|
|
2578
|
+
EFilterOptionInstagramSocial2["AccountGroup"] = "AccountGroup";
|
|
2577
2579
|
return EFilterOptionInstagramSocial2;
|
|
2578
2580
|
})(EFilterOptionInstagramSocial || {});
|
|
2579
2581
|
|
package/dist/index.mjs
CHANGED
|
@@ -2272,6 +2272,8 @@ var EFilterOptionInstagramSocial = /* @__PURE__ */ ((EFilterOptionInstagramSocia
|
|
|
2272
2272
|
EFilterOptionInstagramSocial2["Account"] = "Account";
|
|
2273
2273
|
EFilterOptionInstagramSocial2["Idea"] = "Idea";
|
|
2274
2274
|
EFilterOptionInstagramSocial2["Niche"] = "Niche";
|
|
2275
|
+
EFilterOptionInstagramSocial2["PC"] = "PC";
|
|
2276
|
+
EFilterOptionInstagramSocial2["AccountGroup"] = "AccountGroup";
|
|
2275
2277
|
return EFilterOptionInstagramSocial2;
|
|
2276
2278
|
})(EFilterOptionInstagramSocial || {});
|
|
2277
2279
|
|