@planoly/planogram-config 1.0.0 → 1.0.2
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.cjs +2266 -0
- package/dist/index.d.cts +3570 -0
- package/dist/index.d.ts +4 -340
- package/dist/index.js +2 -259
- package/package.json +6 -4
- package/postExperienceConfig.json +2 -259
package/dist/index.cjs
ADDED
|
@@ -0,0 +1,2266 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __defProp = Object.defineProperty;
|
|
3
|
+
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
4
|
+
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
5
|
+
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
6
|
+
var __export = (target, all) => {
|
|
7
|
+
for (var name in all)
|
|
8
|
+
__defProp(target, name, { get: all[name], enumerable: true });
|
|
9
|
+
};
|
|
10
|
+
var __copyProps = (to, from, except, desc) => {
|
|
11
|
+
if (from && typeof from === "object" || typeof from === "function") {
|
|
12
|
+
for (let key of __getOwnPropNames(from))
|
|
13
|
+
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
14
|
+
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
15
|
+
}
|
|
16
|
+
return to;
|
|
17
|
+
};
|
|
18
|
+
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
19
|
+
|
|
20
|
+
// src/index.ts
|
|
21
|
+
var index_exports = {};
|
|
22
|
+
__export(index_exports, {
|
|
23
|
+
default: () => index_default,
|
|
24
|
+
postExperienceConfig: () => postExperienceConfig
|
|
25
|
+
});
|
|
26
|
+
module.exports = __toCommonJS(index_exports);
|
|
27
|
+
|
|
28
|
+
// postExperienceConfig.json
|
|
29
|
+
var postExperienceConfig_default = {
|
|
30
|
+
version: "1.0.2",
|
|
31
|
+
platforms: [
|
|
32
|
+
{
|
|
33
|
+
name: "tiktok",
|
|
34
|
+
id: 1,
|
|
35
|
+
enabled: true,
|
|
36
|
+
order: 3,
|
|
37
|
+
isBeta: false,
|
|
38
|
+
postTypes: [
|
|
39
|
+
{
|
|
40
|
+
name: "Video Post",
|
|
41
|
+
allowAutoPost: true,
|
|
42
|
+
allowFirstComment: false,
|
|
43
|
+
allowedMediaTypes: [
|
|
44
|
+
"video/mp4",
|
|
45
|
+
"video/quicktime"
|
|
46
|
+
],
|
|
47
|
+
allowMultipleAssets: true,
|
|
48
|
+
allowedMultipleAssetMediaTypes: [],
|
|
49
|
+
hasCaptions: true,
|
|
50
|
+
hasTitle: false,
|
|
51
|
+
allowNotifySubscribers: false,
|
|
52
|
+
allowVisibility: false,
|
|
53
|
+
visibilityOptions: [],
|
|
54
|
+
coverPhotoSource: [
|
|
55
|
+
"timestamp"
|
|
56
|
+
],
|
|
57
|
+
allowHashtags: true,
|
|
58
|
+
allowSoundUrl: true,
|
|
59
|
+
allowSnipfeed: true,
|
|
60
|
+
allowSoundUrlForAutopost: false,
|
|
61
|
+
allowAddLink: false,
|
|
62
|
+
allowUserTagging: false,
|
|
63
|
+
allowProductTagging: false,
|
|
64
|
+
allowLocationTagging: false,
|
|
65
|
+
allowTagInLinkit: false,
|
|
66
|
+
allowASINTagging: false,
|
|
67
|
+
allowShareToFeed: false,
|
|
68
|
+
allowOptions: true,
|
|
69
|
+
allowCanva: false,
|
|
70
|
+
allowCollaboratorTagging: false,
|
|
71
|
+
canvaDesignType: "TiktokVideoPost",
|
|
72
|
+
allowImageCompression: false,
|
|
73
|
+
allowCoverPhoto: false,
|
|
74
|
+
allowedCoverPhotoTypes: [],
|
|
75
|
+
allowCoverPhotoCanva: false,
|
|
76
|
+
allowCoverPhotoImageCompression: false,
|
|
77
|
+
validations: [
|
|
78
|
+
{
|
|
79
|
+
type: "numberOfAssets",
|
|
80
|
+
userErrorMessage: "Media ineligible for auto-post. Upload 1 video file to meet TikTok guidelines.",
|
|
81
|
+
errorHelpLink: "https://help.planoly.com/knowledge/auto-posting-to-tiktok-from-planoly",
|
|
82
|
+
parameters: {
|
|
83
|
+
min: 1,
|
|
84
|
+
max: 1
|
|
85
|
+
}
|
|
86
|
+
},
|
|
87
|
+
{
|
|
88
|
+
type: "futureDate",
|
|
89
|
+
userErrorMessage: "Media ineligible for auto-post. Please choose a date and time at least 5 minutes in the future.",
|
|
90
|
+
errorHelpLink: "https://help.planoly.com/knowledge/auto-posting-to-tiktok-from-planoly",
|
|
91
|
+
parameters: {
|
|
92
|
+
value: 5
|
|
93
|
+
}
|
|
94
|
+
},
|
|
95
|
+
{
|
|
96
|
+
type: "manualPostCaptionLength",
|
|
97
|
+
userErrorMessage: "Caption ineligible for posting. Your caption must be between 1 and 2200 characters. Adjust caption length to meet TikTok guidelines.",
|
|
98
|
+
errorHelpLink: "https://help.planoly.com/knowledge/auto-posting-to-tiktok-from-planoly",
|
|
99
|
+
parameters: {
|
|
100
|
+
min: 0,
|
|
101
|
+
max: 2200
|
|
102
|
+
}
|
|
103
|
+
},
|
|
104
|
+
{
|
|
105
|
+
type: "autoPostCaptionLength",
|
|
106
|
+
userErrorMessage: "Caption ineligible for auto-post. Your caption must be between 1 and 2200 characters. Adjust caption length to meet TikTok guidelines.",
|
|
107
|
+
errorHelpLink: "https://help.planoly.com/knowledge/auto-posting-to-tiktok-from-planoly",
|
|
108
|
+
parameters: {
|
|
109
|
+
min: 0,
|
|
110
|
+
max: 2200
|
|
111
|
+
}
|
|
112
|
+
},
|
|
113
|
+
{
|
|
114
|
+
type: "autoPostVideoLength",
|
|
115
|
+
userErrorMessage: "Media ineligible for auto-post. Your video duration must be between 3 seconds and 10 minutes. Adjust length & re-upload a new duration to meet TikTok guidelines.",
|
|
116
|
+
errorHelpLink: "https://help.planoly.com/knowledge/auto-posting-to-tiktok-from-planoly",
|
|
117
|
+
parameters: {
|
|
118
|
+
min: 3,
|
|
119
|
+
max: 600
|
|
120
|
+
}
|
|
121
|
+
},
|
|
122
|
+
{
|
|
123
|
+
type: "autoPostVideoDimensions",
|
|
124
|
+
userErrorMessage: "Media ineligible for auto-post. Crop your video to be a minimum 360 pixels in height & width and re-upload a new size to meet TikTok guidelines.",
|
|
125
|
+
errorHelpLink: "https://help.planoly.com/knowledge/auto-posting-to-tiktok-from-planoly",
|
|
126
|
+
parameters: {
|
|
127
|
+
width: 360,
|
|
128
|
+
height: 360
|
|
129
|
+
}
|
|
130
|
+
},
|
|
131
|
+
{
|
|
132
|
+
type: "allowedMediaTypes",
|
|
133
|
+
userErrorMessage: "Media ineligible for posting. Video content must be uploaded in .mp4, .mov, or .webm format. Adjust your file type and re-upload to meet TikTok guidelines.",
|
|
134
|
+
errorHelpLink: "https://help.planoly.com/knowledge"
|
|
135
|
+
},
|
|
136
|
+
{
|
|
137
|
+
type: "hashtagLimit",
|
|
138
|
+
userErrorMessage: "Hashtag limit exceeded. Please remove additional hashtags to continue.",
|
|
139
|
+
parameters: {
|
|
140
|
+
min: 0,
|
|
141
|
+
max: 5
|
|
142
|
+
}
|
|
143
|
+
}
|
|
144
|
+
]
|
|
145
|
+
}
|
|
146
|
+
]
|
|
147
|
+
},
|
|
148
|
+
{
|
|
149
|
+
name: "instagram",
|
|
150
|
+
id: 3,
|
|
151
|
+
enabled: true,
|
|
152
|
+
order: 1,
|
|
153
|
+
isBeta: false,
|
|
154
|
+
postTypes: [
|
|
155
|
+
{
|
|
156
|
+
name: "Grid Post",
|
|
157
|
+
allowAutoPost: true,
|
|
158
|
+
allowFirstComment: true,
|
|
159
|
+
allowedMediaTypes: [
|
|
160
|
+
"video/mp4",
|
|
161
|
+
"video/quicktime",
|
|
162
|
+
"image/jpeg",
|
|
163
|
+
"image/png"
|
|
164
|
+
],
|
|
165
|
+
allowMultipleAssets: true,
|
|
166
|
+
allowedMultipleAssetMediaTypes: [
|
|
167
|
+
"video/mp4",
|
|
168
|
+
"video/quicktime",
|
|
169
|
+
"image/jpeg",
|
|
170
|
+
"image/png"
|
|
171
|
+
],
|
|
172
|
+
hasCaptions: true,
|
|
173
|
+
hasTitle: false,
|
|
174
|
+
allowNotifySubscribers: false,
|
|
175
|
+
allowVisibility: false,
|
|
176
|
+
visibilityOptions: [],
|
|
177
|
+
coverPhotoSource: [],
|
|
178
|
+
allowHashtags: true,
|
|
179
|
+
allowSoundUrl: false,
|
|
180
|
+
allowSnipfeed: true,
|
|
181
|
+
allowSoundUrlForAutopost: false,
|
|
182
|
+
allowAddLink: false,
|
|
183
|
+
allowUserTagging: true,
|
|
184
|
+
allowProductTagging: true,
|
|
185
|
+
allowLocationTagging: true,
|
|
186
|
+
allowTagInLinkit: false,
|
|
187
|
+
allowASINTagging: false,
|
|
188
|
+
allowShareToFeed: false,
|
|
189
|
+
allowOptions: true,
|
|
190
|
+
allowCanva: true,
|
|
191
|
+
allowCollaboratorTagging: true,
|
|
192
|
+
canvaDesignType: "InstagramPost",
|
|
193
|
+
allowImageCompression: true,
|
|
194
|
+
allowCoverPhoto: true,
|
|
195
|
+
allowedCoverPhotoTypes: [
|
|
196
|
+
"image/jpeg",
|
|
197
|
+
"image/png"
|
|
198
|
+
],
|
|
199
|
+
allowCoverPhotoCanva: true,
|
|
200
|
+
allowCoverPhotoImageCompression: true,
|
|
201
|
+
validations: [
|
|
202
|
+
{
|
|
203
|
+
type: "futureDate",
|
|
204
|
+
userErrorMessage: "Media ineligible for posting. Please choose a date and time at least 5 minutes in the future.",
|
|
205
|
+
errorHelpLink: "https://help.planoly.com/knowledge/auto-post-guidelines-and-limitations",
|
|
206
|
+
parameters: {
|
|
207
|
+
value: 5
|
|
208
|
+
}
|
|
209
|
+
},
|
|
210
|
+
{
|
|
211
|
+
type: "manualPostCaptionLength",
|
|
212
|
+
userErrorMessage: "Description ineligible for auto-post. Your description must be between 0 and 2200 characters. Adjust caption length to meet Instagram guidelines.",
|
|
213
|
+
errorHelpLink: "https://help.planoly.com/knowledge/auto-post-guidelines-and-limitations",
|
|
214
|
+
parameters: {
|
|
215
|
+
min: 0,
|
|
216
|
+
max: 2200
|
|
217
|
+
}
|
|
218
|
+
},
|
|
219
|
+
{
|
|
220
|
+
type: "autoPostCaptionLength",
|
|
221
|
+
userErrorMessage: "Description ineligible for auto-post. Your description must be between 0 and 2200 characters. Adjust caption length to meet Instagram guidelines.",
|
|
222
|
+
errorHelpLink: "https://help.planoly.com/knowledge/auto-post-guidelines-and-limitations",
|
|
223
|
+
parameters: {
|
|
224
|
+
min: 0,
|
|
225
|
+
max: 2200
|
|
226
|
+
}
|
|
227
|
+
},
|
|
228
|
+
{
|
|
229
|
+
type: "firstCommentLength",
|
|
230
|
+
userErrorMessage: "First comment ineligible for auto-post. Your first comment must be between 0 and 2000 characters. Adjust first comment length to meet Instagram guidelines.",
|
|
231
|
+
errorHelpLink: "https://help.planoly.com/knowledge/auto-post-guidelines-and-limitations",
|
|
232
|
+
parameters: {
|
|
233
|
+
min: 0,
|
|
234
|
+
max: 2e3
|
|
235
|
+
}
|
|
236
|
+
},
|
|
237
|
+
{
|
|
238
|
+
type: "autoPostVideoLength",
|
|
239
|
+
userErrorMessage: "Media ineligible for auto-post. Your video duration must be between 3 seconds and 15 minutes. Adjust length & re-upload a new duration to meet Instagram guidelines.",
|
|
240
|
+
errorHelpLink: "https://help.planoly.com/knowledge/auto-post-guidelines-and-limitations",
|
|
241
|
+
parameters: {
|
|
242
|
+
min: 3,
|
|
243
|
+
max: 900
|
|
244
|
+
}
|
|
245
|
+
},
|
|
246
|
+
{
|
|
247
|
+
type: "autoPostVideoLengthCarousel",
|
|
248
|
+
userErrorMessage: "Media ineligible for auto-post. Your video duration must be between 3 seconds and 60 seconds. Adjust length & re-upload a new duration to meet Instagram guidelines.",
|
|
249
|
+
errorHelpLink: "https://help.planoly.com/knowledge/auto-post-guidelines-and-limitations",
|
|
250
|
+
parameters: {
|
|
251
|
+
min: 3,
|
|
252
|
+
max: 60
|
|
253
|
+
}
|
|
254
|
+
},
|
|
255
|
+
{
|
|
256
|
+
type: "autoPostVideoMaxDimensions",
|
|
257
|
+
userErrorMessage: "Media ineligible for auto-post. Crop your video to be a maximum of 1920 pixels in width and height to meet Instagram's guidelines.",
|
|
258
|
+
errorHelpLink: "https://help.planoly.com/knowledge/auto-post-guidelines-and-limitations",
|
|
259
|
+
parameters: {
|
|
260
|
+
width: 1920,
|
|
261
|
+
height: 1920
|
|
262
|
+
}
|
|
263
|
+
},
|
|
264
|
+
{
|
|
265
|
+
type: "autoPostVideoSize",
|
|
266
|
+
userErrorMessage: "In order to auto-post, the video must be less than 300 MB. Please edit the video to reduce file size.",
|
|
267
|
+
errorHelpLink: "https://help.planoly.com/knowledge",
|
|
268
|
+
parameters: {
|
|
269
|
+
value: 300
|
|
270
|
+
}
|
|
271
|
+
},
|
|
272
|
+
{
|
|
273
|
+
type: "autoPostImageSize",
|
|
274
|
+
userErrorMessage: "Media ineligible for posting. Image must be below 8MB. Adjust your file size and re-upload.",
|
|
275
|
+
errorHelpLink: "https://help.planoly.com/knowledge",
|
|
276
|
+
parameters: {
|
|
277
|
+
value: 8
|
|
278
|
+
}
|
|
279
|
+
},
|
|
280
|
+
{
|
|
281
|
+
type: "numberOfAssets",
|
|
282
|
+
userErrorMessage: "Media ineligible for posting. Your post must contain between 1 and 10 media files. Adjust the number of media files to meet Instagram guidelines.",
|
|
283
|
+
errorHelpLink: "https://help.planoly.com/knowledge/auto-post-guidelines-and-limitations",
|
|
284
|
+
parameters: {
|
|
285
|
+
min: 1,
|
|
286
|
+
max: 10
|
|
287
|
+
}
|
|
288
|
+
},
|
|
289
|
+
{
|
|
290
|
+
type: "allowedMediaTypes",
|
|
291
|
+
userErrorMessage: "Media ineligible for posting. Image posts must be uploaded in .jpeg or .png format. Adjust your file type and re-upload to meet Instagram guidelines.",
|
|
292
|
+
errorHelpLink: "https://help.planoly.com/knowledge/auto-post-guidelines-and-limitations"
|
|
293
|
+
},
|
|
294
|
+
{
|
|
295
|
+
type: "aspectRatioRange",
|
|
296
|
+
userErrorMessage: "Media does not meet aspect ratio requirements. Please edit the media to meet one of the following aspect ratios ranges in order to schedule auto-post: images: 4:5~1.91:1 videos: 4:5~16:9",
|
|
297
|
+
errorHelpLink: "https://help.planoly.com/knowledge/auto-post-guidelines-and-limitations",
|
|
298
|
+
parameters: {
|
|
299
|
+
imgMin: 0.7,
|
|
300
|
+
imgMax: 1.91,
|
|
301
|
+
videoMin: "4:5",
|
|
302
|
+
videoMax: "16:9"
|
|
303
|
+
}
|
|
304
|
+
},
|
|
305
|
+
{
|
|
306
|
+
type: "aspectRatioRangeSingle",
|
|
307
|
+
userErrorMessage: "Media does not meet aspect ratio requirements. Please edit the media to meet one of the following aspect ratios ranges in order to schedule auto-post: images: 4:5~1.91:1 videos: 0.01:1~10:1",
|
|
308
|
+
errorHelpLink: "https://help.planoly.com/knowledge/auto-post-guidelines-and-limitations",
|
|
309
|
+
parameters: {
|
|
310
|
+
imgMin: 0.7,
|
|
311
|
+
imgMax: 1.91,
|
|
312
|
+
videoMin: "0.01:1",
|
|
313
|
+
videoMax: "10:1"
|
|
314
|
+
}
|
|
315
|
+
},
|
|
316
|
+
{
|
|
317
|
+
type: "hashtagLimit",
|
|
318
|
+
userErrorMessage: "Media ineligible for posting. There can be no more than 30 hashtags. Reduce the number of hashtags to meet Instagram guidelines.",
|
|
319
|
+
parameters: {
|
|
320
|
+
min: 0,
|
|
321
|
+
max: 30
|
|
322
|
+
}
|
|
323
|
+
},
|
|
324
|
+
{
|
|
325
|
+
type: "firstCommentMentionLimit",
|
|
326
|
+
userErrorMessage: "Media ineligible for posting. There can be no more than 10 mentions in your first comment. Reduce the number of mentions to meet Instagram guidelines.",
|
|
327
|
+
parameters: {
|
|
328
|
+
min: 0,
|
|
329
|
+
max: 10
|
|
330
|
+
}
|
|
331
|
+
},
|
|
332
|
+
{
|
|
333
|
+
type: "coverPhotoSize",
|
|
334
|
+
userErrorMessage: "Cover photo must be less than 8 MB. Please edit the image to reduce file size.",
|
|
335
|
+
errorHelpLink: "https://help.planoly.com/knowledge",
|
|
336
|
+
parameters: {
|
|
337
|
+
value: 8
|
|
338
|
+
}
|
|
339
|
+
},
|
|
340
|
+
{
|
|
341
|
+
type: "allowedCoverPhotoMediaTypes",
|
|
342
|
+
userErrorMessage: "Cover Photo Media ineligible for posting. Image posts must be uploaded in .jpeg or .png format. Adjust your file type and re-upload to meet Instagram guidelines.",
|
|
343
|
+
errorHelpLink: "https://help.planoly.com/knowledge/auto-post-guidelines-and-limitations"
|
|
344
|
+
}
|
|
345
|
+
],
|
|
346
|
+
information: [
|
|
347
|
+
{
|
|
348
|
+
type: "postReelInfo",
|
|
349
|
+
userInformationMessage: "Per Instagram, single video grid posts will also post as a Reel."
|
|
350
|
+
},
|
|
351
|
+
{
|
|
352
|
+
type: "coverPhotoApectRatio",
|
|
353
|
+
userInformationMessage: "9:16 aspect ratio recommended for Cover photo by Instagram to avoid unexpected cropping."
|
|
354
|
+
}
|
|
355
|
+
]
|
|
356
|
+
},
|
|
357
|
+
{
|
|
358
|
+
name: "Reel",
|
|
359
|
+
allowAutoPost: true,
|
|
360
|
+
allowFirstComment: true,
|
|
361
|
+
allowedMediaTypes: [
|
|
362
|
+
"video/mp4",
|
|
363
|
+
"video/quicktime"
|
|
364
|
+
],
|
|
365
|
+
allowMultipleAssets: false,
|
|
366
|
+
allowedMultipleAssetMediaTypes: [],
|
|
367
|
+
hasCaptions: true,
|
|
368
|
+
hasTitle: false,
|
|
369
|
+
allowNotifySubscribers: false,
|
|
370
|
+
allowVisibility: false,
|
|
371
|
+
visibilityOptions: [],
|
|
372
|
+
coverPhotoSource: [
|
|
373
|
+
"image"
|
|
374
|
+
],
|
|
375
|
+
allowHashtags: true,
|
|
376
|
+
allowSoundUrl: true,
|
|
377
|
+
allowSnipfeed: false,
|
|
378
|
+
allowSoundUrlForAutopost: false,
|
|
379
|
+
allowAddLink: false,
|
|
380
|
+
allowUserTagging: true,
|
|
381
|
+
allowProductTagging: true,
|
|
382
|
+
allowLocationTagging: false,
|
|
383
|
+
allowTagInLinkit: true,
|
|
384
|
+
allowASINTagging: false,
|
|
385
|
+
allowShareToFeed: true,
|
|
386
|
+
allowOptions: true,
|
|
387
|
+
allowCanva: false,
|
|
388
|
+
allowCollaboratorTagging: true,
|
|
389
|
+
canvaDesignType: "InstagramReel",
|
|
390
|
+
allowImageCompression: false,
|
|
391
|
+
allowCoverPhoto: true,
|
|
392
|
+
allowedCoverPhotoTypes: [
|
|
393
|
+
"image/jpeg",
|
|
394
|
+
"image/png"
|
|
395
|
+
],
|
|
396
|
+
allowCoverPhotoCanva: true,
|
|
397
|
+
allowCoverPhotoImageCompression: true,
|
|
398
|
+
validations: [
|
|
399
|
+
{
|
|
400
|
+
type: "futureDate",
|
|
401
|
+
userErrorMessage: "Media ineligible for posting. Please choose a date and time at least 5 minutes in the future.",
|
|
402
|
+
errorHelpLink: "https://help.planoly.com/knowledge/reelsplannerautopost",
|
|
403
|
+
parameters: {
|
|
404
|
+
value: 5
|
|
405
|
+
}
|
|
406
|
+
},
|
|
407
|
+
{
|
|
408
|
+
type: "manualPostCaptionLength",
|
|
409
|
+
userErrorMessage: "Description ineligible for auto-post. Your description must be between 0 and 2200 characters. Adjust caption length to meet Instagram guidelines.",
|
|
410
|
+
errorHelpLink: "https://help.planoly.com/knowledge/reelsplannerautopost",
|
|
411
|
+
parameters: {
|
|
412
|
+
min: 0,
|
|
413
|
+
max: 2e3
|
|
414
|
+
}
|
|
415
|
+
},
|
|
416
|
+
{
|
|
417
|
+
type: "numberOfAssets",
|
|
418
|
+
userErrorMessage: "Media ineligible for auto-post. Upload 1 video file to meet Instagram Reels guidelines.",
|
|
419
|
+
errorHelpLink: "https://help.planoly.com/knowledge",
|
|
420
|
+
parameters: {
|
|
421
|
+
min: 1,
|
|
422
|
+
max: 1
|
|
423
|
+
}
|
|
424
|
+
},
|
|
425
|
+
{
|
|
426
|
+
type: "autoPostCaptionLength",
|
|
427
|
+
userErrorMessage: "Description ineligible for auto-post. Your description must be between 0 and 2200 characters. Adjust caption length to meet Instagram guidelines.",
|
|
428
|
+
errorHelpLink: "https://help.planoly.com/knowledge/reelsplannerautopost",
|
|
429
|
+
parameters: {
|
|
430
|
+
min: 0,
|
|
431
|
+
max: 2e3
|
|
432
|
+
}
|
|
433
|
+
},
|
|
434
|
+
{
|
|
435
|
+
type: "firstCommentLength",
|
|
436
|
+
userErrorMessage: "First comment ineligible for auto-post. Your first comment must be between 0 and 2000 characters. Adjust first comment length to meet Instagram guidelines.",
|
|
437
|
+
errorHelpLink: "https://help.planoly.com/knowledge/auto-post-guidelines-and-limitations",
|
|
438
|
+
parameters: {
|
|
439
|
+
min: 0,
|
|
440
|
+
max: 2e3
|
|
441
|
+
}
|
|
442
|
+
},
|
|
443
|
+
{
|
|
444
|
+
type: "autoPostVideoLength",
|
|
445
|
+
userErrorMessage: "Media ineligible for auto-post. Your video duration must be between 3 seconds and 15 minutes. Adjust length & re-upload a new duration to meet Instagram guidelines.",
|
|
446
|
+
errorHelpLink: "https://help.planoly.com/knowledge/reelsplannerautopost",
|
|
447
|
+
parameters: {
|
|
448
|
+
min: 3,
|
|
449
|
+
max: 900
|
|
450
|
+
}
|
|
451
|
+
},
|
|
452
|
+
{
|
|
453
|
+
type: "autoPostVideoSize",
|
|
454
|
+
userErrorMessage: "In order to auto-post, the video must be less than 300 MB. Please edit the video to reduce file size.",
|
|
455
|
+
errorHelpLink: "https://help.planoly.com/knowledge",
|
|
456
|
+
parameters: {
|
|
457
|
+
value: 300
|
|
458
|
+
}
|
|
459
|
+
},
|
|
460
|
+
{
|
|
461
|
+
type: "autoPostVideoMaxDimensions",
|
|
462
|
+
userErrorMessage: "Media ineligible for auto-post. Crop your video to be a maximum of 1920 pixels in width and height to meet Instagram's guidelines.",
|
|
463
|
+
errorHelpLink: "https://help.planoly.com/knowledge/auto-post-guidelines-and-limitations",
|
|
464
|
+
parameters: {
|
|
465
|
+
width: 1920,
|
|
466
|
+
height: 1920
|
|
467
|
+
}
|
|
468
|
+
},
|
|
469
|
+
{
|
|
470
|
+
type: "autoPostVideoDimensions",
|
|
471
|
+
userErrorMessage: "Media ineligible for auto-post. Crop your video to be a minimum width of 540 pixels and minimum height of 960 pixels and re-upload a new size to meet Instagram's guidelines.",
|
|
472
|
+
errorHelpLink: "https://help.planoly.com/knowledge",
|
|
473
|
+
parameters: {
|
|
474
|
+
width: 540,
|
|
475
|
+
height: 960
|
|
476
|
+
}
|
|
477
|
+
},
|
|
478
|
+
{
|
|
479
|
+
type: "allowedMediaTypes",
|
|
480
|
+
userErrorMessage: "Media ineligible for posting. Video posts must be uploaded in .mp4 or .MOV format. Adjust your file type and re-upload to meet Instagram guidelines.",
|
|
481
|
+
errorHelpLink: "https://help.planoly.com/knowledge/auto-post-guidelines-and-limitations"
|
|
482
|
+
},
|
|
483
|
+
{
|
|
484
|
+
type: "aspectRatioRange",
|
|
485
|
+
userErrorMessage: "Media does not meet aspect ratio requirements. Please edit the media to meet one of the following aspect ratios ranges in order to schedule reel auto-post: videos: 9:16~1.91:1.",
|
|
486
|
+
errorHelpLink: "https://help.planoly.com/knowledge",
|
|
487
|
+
parameters: {
|
|
488
|
+
videoMin: "9:16",
|
|
489
|
+
videoMax: "1.91:1"
|
|
490
|
+
}
|
|
491
|
+
},
|
|
492
|
+
{
|
|
493
|
+
type: "hashtagLimit",
|
|
494
|
+
userErrorMessage: "Media ineligible for posting. There can be no more than 30 hashtags. Reduce the number of hashtags to meet Instagram guidelines.",
|
|
495
|
+
parameters: {
|
|
496
|
+
min: 0,
|
|
497
|
+
max: 30
|
|
498
|
+
}
|
|
499
|
+
},
|
|
500
|
+
{
|
|
501
|
+
type: "firstCommentMentionLimit",
|
|
502
|
+
userErrorMessage: "Media ineligible for posting. There can be no more than 10 mentions in your first comment. Reduce the number of mentions to meet Instagram guidelines.",
|
|
503
|
+
parameters: {
|
|
504
|
+
min: 0,
|
|
505
|
+
max: 10
|
|
506
|
+
}
|
|
507
|
+
},
|
|
508
|
+
{
|
|
509
|
+
type: "coverPhotoSize",
|
|
510
|
+
userErrorMessage: "Cover photo must be less than 8 MB. Please edit the image to reduce file size.",
|
|
511
|
+
errorHelpLink: "https://help.planoly.com/knowledge",
|
|
512
|
+
parameters: {
|
|
513
|
+
value: 8
|
|
514
|
+
}
|
|
515
|
+
},
|
|
516
|
+
{
|
|
517
|
+
type: "allowedCoverPhotoMediaTypes",
|
|
518
|
+
userErrorMessage: "Cover Photo Media ineligible for posting. Image posts must be uploaded in .jpeg or .png format. Adjust your file type and re-upload to meet Instagram guidelines.",
|
|
519
|
+
errorHelpLink: "https://help.planoly.com/knowledge/auto-post-guidelines-and-limitations"
|
|
520
|
+
}
|
|
521
|
+
],
|
|
522
|
+
information: [
|
|
523
|
+
{
|
|
524
|
+
type: "coverPhotoApectRatio",
|
|
525
|
+
userInformationMessage: "9:16 aspect ratio recommended for Cover photo by Instagram to avoid unexpected cropping."
|
|
526
|
+
}
|
|
527
|
+
]
|
|
528
|
+
},
|
|
529
|
+
{
|
|
530
|
+
name: "Story",
|
|
531
|
+
allowAutoPost: true,
|
|
532
|
+
allowFirstComment: false,
|
|
533
|
+
allowedMediaTypes: [
|
|
534
|
+
"video/mp4",
|
|
535
|
+
"video/quicktime",
|
|
536
|
+
"image/jpeg",
|
|
537
|
+
"image/png",
|
|
538
|
+
"image/webp",
|
|
539
|
+
"image/svg+xml"
|
|
540
|
+
],
|
|
541
|
+
allowMultipleAssets: false,
|
|
542
|
+
allowedMultipleAssetMediaTypes: [
|
|
543
|
+
"video/mp4",
|
|
544
|
+
"video/quicktime",
|
|
545
|
+
"image/jpeg",
|
|
546
|
+
"image/png",
|
|
547
|
+
"image/webp",
|
|
548
|
+
"image/svg+xml"
|
|
549
|
+
],
|
|
550
|
+
hasCaptions: false,
|
|
551
|
+
hasTitle: false,
|
|
552
|
+
allowNotifySubscribers: false,
|
|
553
|
+
allowVisibility: false,
|
|
554
|
+
visibilityOptions: [],
|
|
555
|
+
coverPhotoSource: [],
|
|
556
|
+
allowHashtags: true,
|
|
557
|
+
allowSoundUrl: false,
|
|
558
|
+
allowSnipfeed: false,
|
|
559
|
+
allowSoundUrlForAutopost: false,
|
|
560
|
+
allowAddLink: false,
|
|
561
|
+
allowUserTagging: false,
|
|
562
|
+
allowProductTagging: false,
|
|
563
|
+
allowLocationTagging: false,
|
|
564
|
+
allowTagInLinkit: false,
|
|
565
|
+
allowASINTagging: false,
|
|
566
|
+
allowShareToFeed: false,
|
|
567
|
+
allowOptions: false,
|
|
568
|
+
allowCanva: true,
|
|
569
|
+
allowCollaboratorTagging: false,
|
|
570
|
+
canvaDesignType: "InstagramStory",
|
|
571
|
+
allowImageCompression: true,
|
|
572
|
+
allowCoverPhoto: false,
|
|
573
|
+
allowedCoverPhotoTypes: [],
|
|
574
|
+
allowCoverPhotoCanva: false,
|
|
575
|
+
allowCoverPhotoImageCompression: false,
|
|
576
|
+
validations: [
|
|
577
|
+
{
|
|
578
|
+
type: "autoPostImageSize",
|
|
579
|
+
userErrorMessage: "Media ineligible for posting. Image must be below 8MB. Adjust your file size and re-upload.",
|
|
580
|
+
errorHelpLink: "https://help.planoly.com/knowledge",
|
|
581
|
+
parameters: {
|
|
582
|
+
value: 8
|
|
583
|
+
}
|
|
584
|
+
},
|
|
585
|
+
{
|
|
586
|
+
type: "futureDate",
|
|
587
|
+
userErrorMessage: "Media ineligible for posting. Please choose a date and time at least 5 minutes in the future.",
|
|
588
|
+
errorHelpLink: "https://help.planoly.com/knowledge",
|
|
589
|
+
parameters: {
|
|
590
|
+
value: 5
|
|
591
|
+
}
|
|
592
|
+
},
|
|
593
|
+
{
|
|
594
|
+
type: "manualPostCaptionLength",
|
|
595
|
+
userErrorMessage: "Captions will not be included with Story posts.",
|
|
596
|
+
errorHelpLink: "https://help.planoly.com/knowledge",
|
|
597
|
+
parameters: {
|
|
598
|
+
min: 0,
|
|
599
|
+
max: 0
|
|
600
|
+
}
|
|
601
|
+
},
|
|
602
|
+
{
|
|
603
|
+
type: "autoPostCaptionLength",
|
|
604
|
+
userErrorMessage: "Captions will not be included with Story posts.",
|
|
605
|
+
errorHelpLink: "https://help.planoly.com/knowledge",
|
|
606
|
+
parameters: {
|
|
607
|
+
min: 0,
|
|
608
|
+
max: 0
|
|
609
|
+
}
|
|
610
|
+
},
|
|
611
|
+
{
|
|
612
|
+
type: "autoPostVideoLength",
|
|
613
|
+
userErrorMessage: "Media ineligible for auto-post. Your video duration must be between 3 and 60 seconds. Adjust length & re-upload a new duration to meet Instagram guidelines.",
|
|
614
|
+
errorHelpLink: "https://help.planoly.com/knowledge",
|
|
615
|
+
parameters: {
|
|
616
|
+
min: 3,
|
|
617
|
+
max: 60
|
|
618
|
+
}
|
|
619
|
+
},
|
|
620
|
+
{
|
|
621
|
+
type: "autoPostVideoSize",
|
|
622
|
+
userErrorMessage: "In order to auto-post, the video must be less than 300 MB. Please edit the video to reduce file size.",
|
|
623
|
+
errorHelpLink: "https://help.planoly.com/knowledge",
|
|
624
|
+
parameters: {
|
|
625
|
+
value: 300
|
|
626
|
+
}
|
|
627
|
+
},
|
|
628
|
+
{
|
|
629
|
+
type: "autoPostVideoMaxDimensions",
|
|
630
|
+
userErrorMessage: "Media ineligible for auto-post. Crop your video to be a maximum of 1920 pixels in width and height to meet Instagram's guidelines.",
|
|
631
|
+
errorHelpLink: "https://help.planoly.com/knowledge/auto-post-guidelines-and-limitations",
|
|
632
|
+
parameters: {
|
|
633
|
+
width: 1920,
|
|
634
|
+
height: 1920
|
|
635
|
+
}
|
|
636
|
+
},
|
|
637
|
+
{
|
|
638
|
+
type: "numberOfAssets",
|
|
639
|
+
userErrorMessage: "Media ineligible for posting. Your post must contain between 1 and 10 media files. Adjust the number of media files to meet Instagram guidelines.",
|
|
640
|
+
errorHelpLink: "https://help.planoly.com/knowledge",
|
|
641
|
+
parameters: {
|
|
642
|
+
min: 1,
|
|
643
|
+
max: 10
|
|
644
|
+
}
|
|
645
|
+
},
|
|
646
|
+
{
|
|
647
|
+
type: "allowedMediaTypes",
|
|
648
|
+
userErrorMessage: "Media ineligible for posting. Story must be uploaded in .jpg, .png, .mov, or .mp4 format. Adjust your file type and re-upload to meet Instagram guidelines.",
|
|
649
|
+
errorHelpLink: "https://help.planoly.com/knowledge"
|
|
650
|
+
},
|
|
651
|
+
{
|
|
652
|
+
type: "aspectRatio",
|
|
653
|
+
userErrorMessage: 'Media ineligible for posting. Media must be in the correct aspect ratio ("9:16"). Adjust your file type and re-upload to meet Intagram guidelines.',
|
|
654
|
+
errorHelpLink: "https://help.planoly.com/knowledge",
|
|
655
|
+
parameters: [
|
|
656
|
+
"9:16"
|
|
657
|
+
]
|
|
658
|
+
},
|
|
659
|
+
{
|
|
660
|
+
type: "hashtagLimit",
|
|
661
|
+
userErrorMessage: "Hashtag limit exceeded. Please remove additional hashtags to continue.",
|
|
662
|
+
parameters: {
|
|
663
|
+
min: 0,
|
|
664
|
+
max: 30
|
|
665
|
+
}
|
|
666
|
+
}
|
|
667
|
+
]
|
|
668
|
+
}
|
|
669
|
+
]
|
|
670
|
+
},
|
|
671
|
+
{
|
|
672
|
+
name: "facebook",
|
|
673
|
+
id: 5,
|
|
674
|
+
enabled: true,
|
|
675
|
+
order: 2,
|
|
676
|
+
isBeta: false,
|
|
677
|
+
postTypes: [
|
|
678
|
+
{
|
|
679
|
+
name: "Page Post",
|
|
680
|
+
allowAutoPost: true,
|
|
681
|
+
allowFirstComment: false,
|
|
682
|
+
allowedMediaTypes: [
|
|
683
|
+
"video/mp4",
|
|
684
|
+
"video/quicktime",
|
|
685
|
+
"image/jpeg",
|
|
686
|
+
"image/png"
|
|
687
|
+
],
|
|
688
|
+
allowMultipleAssets: true,
|
|
689
|
+
allowedMultipleAssetMediaTypes: [
|
|
690
|
+
"video/mp4",
|
|
691
|
+
"video/quicktime",
|
|
692
|
+
"image/jpeg",
|
|
693
|
+
"image/png"
|
|
694
|
+
],
|
|
695
|
+
hasCaptions: true,
|
|
696
|
+
hasTitle: false,
|
|
697
|
+
allowNotifySubscribers: false,
|
|
698
|
+
allowVisibility: false,
|
|
699
|
+
visibilityOptions: [],
|
|
700
|
+
coverPhotoSource: [],
|
|
701
|
+
allowHashtags: true,
|
|
702
|
+
allowSoundUrl: false,
|
|
703
|
+
allowSnipfeed: false,
|
|
704
|
+
allowSoundUrlForAutopost: false,
|
|
705
|
+
allowAddLink: false,
|
|
706
|
+
allowUserTagging: false,
|
|
707
|
+
allowProductTagging: false,
|
|
708
|
+
allowLocationTagging: false,
|
|
709
|
+
allowTagInLinkit: false,
|
|
710
|
+
allowASINTagging: false,
|
|
711
|
+
allowShareToFeed: false,
|
|
712
|
+
allowOptions: true,
|
|
713
|
+
allowCanva: true,
|
|
714
|
+
allowCollaboratorTagging: false,
|
|
715
|
+
canvaDesignType: "FacebookPost",
|
|
716
|
+
allowImageCompression: true,
|
|
717
|
+
allowCoverPhoto: true,
|
|
718
|
+
allowedCoverPhotoTypes: [
|
|
719
|
+
"image/jpeg",
|
|
720
|
+
"image/png"
|
|
721
|
+
],
|
|
722
|
+
allowCoverPhotoCanva: true,
|
|
723
|
+
allowCoverPhotoImageCompression: true,
|
|
724
|
+
validations: [
|
|
725
|
+
{
|
|
726
|
+
type: "futureDate",
|
|
727
|
+
userErrorMessage: "Media ineligible for posting. Please choose a date and time at least 5 minutes in the future.",
|
|
728
|
+
errorHelpLink: "https://help.planoly.com/knowledge",
|
|
729
|
+
parameters: {
|
|
730
|
+
value: 5
|
|
731
|
+
}
|
|
732
|
+
},
|
|
733
|
+
{
|
|
734
|
+
type: "manualPostCaptionLength",
|
|
735
|
+
userErrorMessage: "Caption ineligible for posting. Your caption must be below 10000 characters. Adjust caption length to meet Facebook guidelines.",
|
|
736
|
+
errorHelpLink: "https://help.planoly.com/knowledge",
|
|
737
|
+
parameters: {
|
|
738
|
+
min: 0,
|
|
739
|
+
max: 1e4
|
|
740
|
+
}
|
|
741
|
+
},
|
|
742
|
+
{
|
|
743
|
+
type: "autoPostCaptionLength",
|
|
744
|
+
userErrorMessage: "Caption ineligible for auto-post. Your caption must be below 10000 characters. Adjust caption length to meet Facebook guidelines.",
|
|
745
|
+
errorHelpLink: "https://help.planoly.com/knowledge",
|
|
746
|
+
parameters: {
|
|
747
|
+
min: 0,
|
|
748
|
+
max: 1e4
|
|
749
|
+
}
|
|
750
|
+
},
|
|
751
|
+
{
|
|
752
|
+
type: "autoPostVideoLength",
|
|
753
|
+
userErrorMessage: "Media ineligible for auto-post. Your video duration must be between 3 seconds and 10 minutes. Adjust length & re-upload a new duration to meet Facebook guidelines.",
|
|
754
|
+
errorHelpLink: "https://help.planoly.com/knowledge",
|
|
755
|
+
parameters: {
|
|
756
|
+
min: 3,
|
|
757
|
+
max: 600
|
|
758
|
+
}
|
|
759
|
+
},
|
|
760
|
+
{
|
|
761
|
+
type: "numberOfAssets",
|
|
762
|
+
userErrorMessage: "Media ineligible for posting. Your media may not exceed 10 items.",
|
|
763
|
+
errorHelpLink: "https://help.planoly.com/knowledge",
|
|
764
|
+
parameters: {
|
|
765
|
+
min: 0,
|
|
766
|
+
max: 10
|
|
767
|
+
}
|
|
768
|
+
},
|
|
769
|
+
{
|
|
770
|
+
type: "allowedMediaTypes",
|
|
771
|
+
userErrorMessage: "Media ineligible for posting. Page Post must be uploaded in .jpg, .png, .mov, or .mp4 format. Adjust your file type and re-upload to meet Facebook guidelines.",
|
|
772
|
+
errorHelpLink: "https://help.planoly.com/knowledge"
|
|
773
|
+
},
|
|
774
|
+
{
|
|
775
|
+
type: "hashtagLimit",
|
|
776
|
+
userErrorMessage: "Hashtag limit exceeded. Please remove additional hashtags to continue.",
|
|
777
|
+
parameters: {
|
|
778
|
+
min: 0,
|
|
779
|
+
max: 30
|
|
780
|
+
}
|
|
781
|
+
},
|
|
782
|
+
{
|
|
783
|
+
type: "nonEmptyPost",
|
|
784
|
+
userErrorMessage: "Please add media or text to autopost.",
|
|
785
|
+
errorHelpLink: "https://help.planoly.com/knowledge"
|
|
786
|
+
},
|
|
787
|
+
{
|
|
788
|
+
type: "autoPostImageSize",
|
|
789
|
+
userErrorMessage: "Media ineligible for posting. Image must be below 10MB. Adjust your file size and re-upload.",
|
|
790
|
+
errorHelpLink: "https://help.planoly.com/knowledge",
|
|
791
|
+
parameters: {
|
|
792
|
+
value: 10
|
|
793
|
+
}
|
|
794
|
+
},
|
|
795
|
+
{
|
|
796
|
+
type: "coverPhotoSize",
|
|
797
|
+
userErrorMessage: "Cover photo must be less than 10 MB. Please edit the image to reduce file size.",
|
|
798
|
+
errorHelpLink: "https://help.planoly.com/knowledge",
|
|
799
|
+
parameters: {
|
|
800
|
+
value: 10
|
|
801
|
+
}
|
|
802
|
+
},
|
|
803
|
+
{
|
|
804
|
+
type: "allowedCoverPhotoMediaTypes",
|
|
805
|
+
userErrorMessage: "Cover Photo Media ineligible for posting. Image posts must be uploaded in .jpeg or .png format. Adjust your file type and re-upload to meet Facebook guidelines.",
|
|
806
|
+
errorHelpLink: "https://help.planoly.com/knowledge/auto-post-guidelines-and-limitations"
|
|
807
|
+
}
|
|
808
|
+
],
|
|
809
|
+
information: [
|
|
810
|
+
{
|
|
811
|
+
type: "coverPhotoApectRatio",
|
|
812
|
+
userInformationMessage: "9:16 aspect ratio recommended for Cover photo by Facebook to avoid unexpected cropping."
|
|
813
|
+
}
|
|
814
|
+
]
|
|
815
|
+
},
|
|
816
|
+
{
|
|
817
|
+
name: "Reel",
|
|
818
|
+
allowAutoPost: true,
|
|
819
|
+
allowFirstComment: false,
|
|
820
|
+
allowedMediaTypes: [
|
|
821
|
+
"video/mp4",
|
|
822
|
+
"video/quicktime"
|
|
823
|
+
],
|
|
824
|
+
allowMultipleAssets: false,
|
|
825
|
+
allowedMultipleAssetMediaTypes: [],
|
|
826
|
+
hasCaptions: true,
|
|
827
|
+
hasTitle: false,
|
|
828
|
+
allowNotifySubscribers: false,
|
|
829
|
+
allowVisibility: false,
|
|
830
|
+
visibilityOptions: [],
|
|
831
|
+
coverPhotoSource: [
|
|
832
|
+
"image"
|
|
833
|
+
],
|
|
834
|
+
allowHashtags: true,
|
|
835
|
+
allowSoundUrl: false,
|
|
836
|
+
allowSnipfeed: false,
|
|
837
|
+
allowSoundUrlForAutopost: false,
|
|
838
|
+
allowAddLink: false,
|
|
839
|
+
allowUserTagging: false,
|
|
840
|
+
allowProductTagging: false,
|
|
841
|
+
allowLocationTagging: false,
|
|
842
|
+
allowTagInLinkit: false,
|
|
843
|
+
allowASINTagging: false,
|
|
844
|
+
allowShareToFeed: false,
|
|
845
|
+
allowOptions: true,
|
|
846
|
+
allowCanva: false,
|
|
847
|
+
allowCollaboratorTagging: false,
|
|
848
|
+
canvaDesignType: "FacebookReel",
|
|
849
|
+
allowImageCompression: false,
|
|
850
|
+
allowCoverPhoto: true,
|
|
851
|
+
allowedCoverPhotoTypes: [
|
|
852
|
+
"image/jpeg",
|
|
853
|
+
"image/png"
|
|
854
|
+
],
|
|
855
|
+
allowCoverPhotoCanva: true,
|
|
856
|
+
allowCoverPhotoImageCompression: true,
|
|
857
|
+
validations: [
|
|
858
|
+
{
|
|
859
|
+
type: "futureDate",
|
|
860
|
+
userErrorMessage: "Media ineligible for posting. Please choose a date and time at least 5 minutes in the future.",
|
|
861
|
+
errorHelpLink: "https://help.planoly.com/knowledge",
|
|
862
|
+
parameters: {
|
|
863
|
+
value: 5
|
|
864
|
+
}
|
|
865
|
+
},
|
|
866
|
+
{
|
|
867
|
+
type: "manualPostCaptionLength",
|
|
868
|
+
userErrorMessage: "Caption ineligible for posting. Your caption must be below 1500 characters. Adjust caption length to meet Facebook guidelines.",
|
|
869
|
+
errorHelpLink: "https://help.planoly.com/knowledge",
|
|
870
|
+
parameters: {
|
|
871
|
+
min: 0,
|
|
872
|
+
max: 1500
|
|
873
|
+
}
|
|
874
|
+
},
|
|
875
|
+
{
|
|
876
|
+
type: "numberOfAssets",
|
|
877
|
+
userErrorMessage: "Media ineligible for auto-post. Upload 1 video file to meet Facebook Reels guidelines.",
|
|
878
|
+
errorHelpLink: "https://help.planoly.com/knowledge",
|
|
879
|
+
parameters: {
|
|
880
|
+
min: 1,
|
|
881
|
+
max: 1
|
|
882
|
+
}
|
|
883
|
+
},
|
|
884
|
+
{
|
|
885
|
+
type: "autoPostCaptionLength",
|
|
886
|
+
userErrorMessage: "Caption ineligible for posting. Your caption must be below 150 characters. Adjust caption length to meet Facebook guidelines.",
|
|
887
|
+
errorHelpLink: "https://help.planoly.com/knowledge",
|
|
888
|
+
parameters: {
|
|
889
|
+
min: 0,
|
|
890
|
+
max: 150
|
|
891
|
+
}
|
|
892
|
+
},
|
|
893
|
+
{
|
|
894
|
+
type: "autoPostVideoLength",
|
|
895
|
+
userErrorMessage: "Media ineligible for auto-post. Your video duration must be between 3 and 90 seconds. Adjust length & re-upload a new duration to meet Facebook guidelines.",
|
|
896
|
+
errorHelpLink: "https://help.planoly.com/knowledge",
|
|
897
|
+
parameters: {
|
|
898
|
+
min: 3,
|
|
899
|
+
max: 90
|
|
900
|
+
}
|
|
901
|
+
},
|
|
902
|
+
{
|
|
903
|
+
type: "autoPostVideoSize",
|
|
904
|
+
userErrorMessage: "Media ineligible for posting. Reel must be below 300MB. Adjust your file type and re-upload to meet Facebook guidelines.",
|
|
905
|
+
errorHelpLink: "https://help.planoly.com/knowledge",
|
|
906
|
+
parameters: {
|
|
907
|
+
value: 300
|
|
908
|
+
}
|
|
909
|
+
},
|
|
910
|
+
{
|
|
911
|
+
type: "allowedMediaTypes",
|
|
912
|
+
userErrorMessage: "Media ineligible for posting. Reel must be uploaded in .mov, or .mp4 format. Adjust your file type and re-upload to meet Facebook guidelines.",
|
|
913
|
+
errorHelpLink: "https://help.planoly.com/knowledge"
|
|
914
|
+
},
|
|
915
|
+
{
|
|
916
|
+
type: "aspectRatio",
|
|
917
|
+
userErrorMessage: 'Media ineligible for posting. Media must be in the correct aspect ratio ("9:16"). Adjust your file type and re-upload to meet Facebook guidelines.',
|
|
918
|
+
errorHelpLink: "https://help.planoly.com/knowledge",
|
|
919
|
+
parameters: [
|
|
920
|
+
"9:16"
|
|
921
|
+
]
|
|
922
|
+
},
|
|
923
|
+
{
|
|
924
|
+
type: "hashtagLimit",
|
|
925
|
+
userErrorMessage: "Hashtag limit exceeded. Please remove additional hashtags to continue.",
|
|
926
|
+
parameters: {
|
|
927
|
+
min: 0,
|
|
928
|
+
max: 30
|
|
929
|
+
}
|
|
930
|
+
},
|
|
931
|
+
{
|
|
932
|
+
type: "autoPostVideoSize",
|
|
933
|
+
userErrorMessage: "Media ineligible for posting. Reel must be below 300MB. Adjust your file type and re-upload to meet Facebook guidelines.",
|
|
934
|
+
parameters: {
|
|
935
|
+
value: 300
|
|
936
|
+
}
|
|
937
|
+
},
|
|
938
|
+
{
|
|
939
|
+
type: "autoPostVideoDimensions",
|
|
940
|
+
userErrorMessage: "Media ineligible for auto-post. Crop your video to be a minimum width of 540 pixels and minimum height of 960 pixels and re-upload a new size to meet Facebook guidelines.",
|
|
941
|
+
errorHelpLink: "https://help.planoly.com/knowledge",
|
|
942
|
+
parameters: {
|
|
943
|
+
width: 540,
|
|
944
|
+
height: 960
|
|
945
|
+
}
|
|
946
|
+
},
|
|
947
|
+
{
|
|
948
|
+
type: "coverPhotoSize",
|
|
949
|
+
userErrorMessage: "Cover photo must be less than 10 MB. Please edit the image to reduce file size.",
|
|
950
|
+
errorHelpLink: "https://help.planoly.com/knowledge",
|
|
951
|
+
parameters: {
|
|
952
|
+
value: 10
|
|
953
|
+
}
|
|
954
|
+
},
|
|
955
|
+
{
|
|
956
|
+
type: "allowedCoverPhotoMediaTypes",
|
|
957
|
+
userErrorMessage: "Cover Photo Media ineligible for posting. Image posts must be uploaded in .jpeg or .png format. Adjust your file type and re-upload to meet Facebook guidelines.",
|
|
958
|
+
errorHelpLink: "https://help.planoly.com/knowledge/auto-post-guidelines-and-limitations"
|
|
959
|
+
}
|
|
960
|
+
],
|
|
961
|
+
information: [
|
|
962
|
+
{
|
|
963
|
+
type: "coverPhotoApectRatio",
|
|
964
|
+
userInformationMessage: "9:16 aspect ratio recommended for Cover photo by Facebook to avoid unexpected cropping."
|
|
965
|
+
}
|
|
966
|
+
]
|
|
967
|
+
},
|
|
968
|
+
{
|
|
969
|
+
name: "Story",
|
|
970
|
+
allowAutoPost: true,
|
|
971
|
+
allowFirstComment: false,
|
|
972
|
+
allowedMediaTypes: [
|
|
973
|
+
"video/mp4",
|
|
974
|
+
"video/quicktime",
|
|
975
|
+
"image/jpeg",
|
|
976
|
+
"image/png",
|
|
977
|
+
"image/webp",
|
|
978
|
+
"image/svg+xml",
|
|
979
|
+
"image/gif",
|
|
980
|
+
"image/tiff"
|
|
981
|
+
],
|
|
982
|
+
allowMultipleAssets: false,
|
|
983
|
+
allowedMultipleAssetMediaTypes: [
|
|
984
|
+
"video/mp4",
|
|
985
|
+
"video/quicktime",
|
|
986
|
+
"image/jpeg",
|
|
987
|
+
"image/png",
|
|
988
|
+
"image/webp",
|
|
989
|
+
"image/svg+xml",
|
|
990
|
+
"image/gif",
|
|
991
|
+
"image/tiff"
|
|
992
|
+
],
|
|
993
|
+
hasCaptions: false,
|
|
994
|
+
hasTitle: false,
|
|
995
|
+
allowNotifySubscribers: false,
|
|
996
|
+
allowVisibility: false,
|
|
997
|
+
visibilityOptions: [],
|
|
998
|
+
coverPhotoSource: [],
|
|
999
|
+
allowHashtags: true,
|
|
1000
|
+
allowSoundUrl: false,
|
|
1001
|
+
allowSnipfeed: false,
|
|
1002
|
+
allowSoundUrlForAutopost: false,
|
|
1003
|
+
allowAddLink: false,
|
|
1004
|
+
allowUserTagging: false,
|
|
1005
|
+
allowProductTagging: false,
|
|
1006
|
+
allowLocationTagging: false,
|
|
1007
|
+
allowTagInLinkit: false,
|
|
1008
|
+
allowASINTagging: false,
|
|
1009
|
+
allowShareToFeed: false,
|
|
1010
|
+
allowOptions: false,
|
|
1011
|
+
allowCanva: true,
|
|
1012
|
+
allowCollaboratorTagging: false,
|
|
1013
|
+
canvaDesignType: "FacebookStory",
|
|
1014
|
+
allowImageCompression: true,
|
|
1015
|
+
allowCoverPhoto: false,
|
|
1016
|
+
allowedCoverPhotoTypes: [],
|
|
1017
|
+
allowCoverPhotoCanva: false,
|
|
1018
|
+
allowCoverPhotoImageCompression: false,
|
|
1019
|
+
validations: [
|
|
1020
|
+
{
|
|
1021
|
+
type: "futureDate",
|
|
1022
|
+
userErrorMessage: "Media ineligible for posting. Please choose a date and time at least 5 minutes in the future.",
|
|
1023
|
+
errorHelpLink: "https://help.planoly.com/knowledge",
|
|
1024
|
+
parameters: {
|
|
1025
|
+
value: 5
|
|
1026
|
+
}
|
|
1027
|
+
},
|
|
1028
|
+
{
|
|
1029
|
+
type: "autoPostVideoLength",
|
|
1030
|
+
userErrorMessage: "Media ineligible for auto-post. Your video duration must be between 3 and 60 seconds. Adjust length & re-upload a new duration to meet Facebook guidelines.",
|
|
1031
|
+
errorHelpLink: "https://help.planoly.com/knowledge",
|
|
1032
|
+
parameters: {
|
|
1033
|
+
min: 3,
|
|
1034
|
+
max: 60
|
|
1035
|
+
}
|
|
1036
|
+
},
|
|
1037
|
+
{
|
|
1038
|
+
type: "numberOfAssets",
|
|
1039
|
+
userErrorMessage: "Media ineligible for posting. Your media may not exceed 10 items.",
|
|
1040
|
+
errorHelpLink: "https://help.planoly.com/knowledge",
|
|
1041
|
+
parameters: {
|
|
1042
|
+
min: 1,
|
|
1043
|
+
max: 10
|
|
1044
|
+
}
|
|
1045
|
+
},
|
|
1046
|
+
{
|
|
1047
|
+
type: "allowedMediaTypes",
|
|
1048
|
+
userErrorMessage: "Media ineligible for posting. Story must be uploaded in .jpeg, .png, .gif, .tiff, .mp4, or .mov format. Adjust your file type and re-upload to meet Facebook guidelines.",
|
|
1049
|
+
errorHelpLink: "https://help.planoly.com/knowledge"
|
|
1050
|
+
},
|
|
1051
|
+
{
|
|
1052
|
+
type: "aspectRatioRange",
|
|
1053
|
+
userErrorMessage: "Media ineligible for posting. Media must be in 9:16 aspect ratio. Adjust your file and re-upload to meet Facebook guidelines.",
|
|
1054
|
+
errorHelpLink: "https://help.planoly.com/knowledge",
|
|
1055
|
+
parameters: {
|
|
1056
|
+
videoMin: "9:16",
|
|
1057
|
+
videoMax: "9:16"
|
|
1058
|
+
}
|
|
1059
|
+
},
|
|
1060
|
+
{
|
|
1061
|
+
type: "manualPostCaptionLength",
|
|
1062
|
+
userErrorMessage: "Captions will not be included with Story posts.",
|
|
1063
|
+
errorHelpLink: "https://help.planoly.com/knowledge",
|
|
1064
|
+
parameters: {
|
|
1065
|
+
min: 0,
|
|
1066
|
+
max: 0
|
|
1067
|
+
}
|
|
1068
|
+
},
|
|
1069
|
+
{
|
|
1070
|
+
type: "hashtagLimit",
|
|
1071
|
+
userErrorMessage: "Hashtag limit exceeded. Please remove additional hashtags to continue.",
|
|
1072
|
+
parameters: {
|
|
1073
|
+
min: 0,
|
|
1074
|
+
max: 0
|
|
1075
|
+
}
|
|
1076
|
+
},
|
|
1077
|
+
{
|
|
1078
|
+
type: "autoPostVideoSize",
|
|
1079
|
+
userErrorMessage: "Media ineligible for posting. Video must be below 300MB. Adjust your file type and re-upload.",
|
|
1080
|
+
errorHelpLink: "https://help.planoly.com/knowledge",
|
|
1081
|
+
parameters: {
|
|
1082
|
+
value: 300
|
|
1083
|
+
}
|
|
1084
|
+
},
|
|
1085
|
+
{
|
|
1086
|
+
type: "autoPostImageSize",
|
|
1087
|
+
userErrorMessage: "Media ineligible for posting. Image must be below 4MB. Adjust your file type and re-upload.",
|
|
1088
|
+
errorHelpLink: "https://help.planoly.com/knowledge",
|
|
1089
|
+
parameters: {
|
|
1090
|
+
value: 4
|
|
1091
|
+
}
|
|
1092
|
+
},
|
|
1093
|
+
{
|
|
1094
|
+
type: "autoPostVideoDimensions",
|
|
1095
|
+
userErrorMessage: "Media ineligible for auto-post. Crop your video to be a minimum width of 540 pixels and minimum height of 960 pixels and re-upload a new size to meet Facebook guidelines.",
|
|
1096
|
+
errorHelpLink: "https://help.planoly.com/knowledge",
|
|
1097
|
+
parameters: {
|
|
1098
|
+
width: 540,
|
|
1099
|
+
height: 960
|
|
1100
|
+
}
|
|
1101
|
+
}
|
|
1102
|
+
]
|
|
1103
|
+
}
|
|
1104
|
+
]
|
|
1105
|
+
},
|
|
1106
|
+
{
|
|
1107
|
+
name: "youtube",
|
|
1108
|
+
id: 2,
|
|
1109
|
+
enabled: true,
|
|
1110
|
+
order: 6,
|
|
1111
|
+
isBeta: false,
|
|
1112
|
+
postTypes: [
|
|
1113
|
+
{
|
|
1114
|
+
name: "Shorts",
|
|
1115
|
+
allowAutoPost: true,
|
|
1116
|
+
allowFirstComment: false,
|
|
1117
|
+
allowedMediaTypes: [
|
|
1118
|
+
"video/mp4",
|
|
1119
|
+
"video/quicktime",
|
|
1120
|
+
"video/mpeg",
|
|
1121
|
+
"video/x-msvideo",
|
|
1122
|
+
"video/x-ms-wmv",
|
|
1123
|
+
"video/MP2T",
|
|
1124
|
+
"video/x-flv",
|
|
1125
|
+
"video/3gpp",
|
|
1126
|
+
"video/webm"
|
|
1127
|
+
],
|
|
1128
|
+
allowMultipleAssets: false,
|
|
1129
|
+
allowedMultipleAssetMediaTypes: [],
|
|
1130
|
+
hasCaptions: true,
|
|
1131
|
+
hasTitle: true,
|
|
1132
|
+
allowNotifySubscribers: true,
|
|
1133
|
+
allowVisibility: true,
|
|
1134
|
+
visibilityOptions: [
|
|
1135
|
+
{
|
|
1136
|
+
name: "Public",
|
|
1137
|
+
value: "public",
|
|
1138
|
+
icon: "vp-icon-eye-green"
|
|
1139
|
+
},
|
|
1140
|
+
{
|
|
1141
|
+
name: "Unlisted",
|
|
1142
|
+
value: "unlisted",
|
|
1143
|
+
icon: "vp-icon-eye"
|
|
1144
|
+
},
|
|
1145
|
+
{
|
|
1146
|
+
name: "Private",
|
|
1147
|
+
value: "private",
|
|
1148
|
+
icon: "vp-icon-eye-off"
|
|
1149
|
+
}
|
|
1150
|
+
],
|
|
1151
|
+
coverPhotoSource: [
|
|
1152
|
+
"timestamp",
|
|
1153
|
+
"image"
|
|
1154
|
+
],
|
|
1155
|
+
allowHashtags: true,
|
|
1156
|
+
allowSoundUrl: true,
|
|
1157
|
+
allowSnipfeed: false,
|
|
1158
|
+
allowSoundUrlForAutopost: true,
|
|
1159
|
+
allowAddLink: false,
|
|
1160
|
+
allowUserTagging: false,
|
|
1161
|
+
allowProductTagging: false,
|
|
1162
|
+
allowLocationTagging: false,
|
|
1163
|
+
allowTagInLinkit: false,
|
|
1164
|
+
allowASINTagging: false,
|
|
1165
|
+
allowShareToFeed: false,
|
|
1166
|
+
allowOptions: true,
|
|
1167
|
+
allowCanva: false,
|
|
1168
|
+
allowCollaboratorTagging: false,
|
|
1169
|
+
canvaDesignType: "YoutubeShorts",
|
|
1170
|
+
allowImageCompression: false,
|
|
1171
|
+
allowCoverPhoto: false,
|
|
1172
|
+
allowedCoverPhotoTypes: [],
|
|
1173
|
+
allowCoverPhotoCanva: false,
|
|
1174
|
+
allowCoverPhotoImageCompression: false,
|
|
1175
|
+
validations: [
|
|
1176
|
+
{
|
|
1177
|
+
type: "futureDate",
|
|
1178
|
+
userErrorMessage: "Media ineligible for posting. Please choose a date and time at least 5 minutes in the future.",
|
|
1179
|
+
errorHelpLink: "https://help.planoly.com/knowledge",
|
|
1180
|
+
parameters: {
|
|
1181
|
+
value: 5
|
|
1182
|
+
}
|
|
1183
|
+
},
|
|
1184
|
+
{
|
|
1185
|
+
type: "numberOfAssets",
|
|
1186
|
+
userErrorMessage: "Media ineligible for auto-post. Upload 1 video file to meet YouTube guidelines.",
|
|
1187
|
+
errorHelpLink: "https://help.planoly.com/knowledge",
|
|
1188
|
+
parameters: {
|
|
1189
|
+
min: 1,
|
|
1190
|
+
max: 1
|
|
1191
|
+
}
|
|
1192
|
+
},
|
|
1193
|
+
{
|
|
1194
|
+
type: "manualPostCaptionLength",
|
|
1195
|
+
userErrorMessage: "Description ineligible for posting. Your description must be less than 5000 characters. Adjust description length to meet YouTube guidelines.",
|
|
1196
|
+
errorHelpLink: "https://help.planoly.com/knowledge",
|
|
1197
|
+
parameters: {
|
|
1198
|
+
min: 0,
|
|
1199
|
+
max: 5e3
|
|
1200
|
+
}
|
|
1201
|
+
},
|
|
1202
|
+
{
|
|
1203
|
+
type: "autoPostCaptionLength",
|
|
1204
|
+
userErrorMessage: "Description ineligible for auto-post. Your description must be between 1 and 5000 characters. Adjust description length to meet YouTube guidelines.",
|
|
1205
|
+
errorHelpLink: "https://help.planoly.com/knowledge",
|
|
1206
|
+
parameters: {
|
|
1207
|
+
min: 1,
|
|
1208
|
+
max: 5e3
|
|
1209
|
+
}
|
|
1210
|
+
},
|
|
1211
|
+
{
|
|
1212
|
+
type: "titleLength",
|
|
1213
|
+
userErrorMessage: "Title ineligible for auto-post. Your title must be between 1 and 100 characters. Adjust title length to meet YouTube guidelines.",
|
|
1214
|
+
errorHelpLink: "https://help.planoly.com/knowledge",
|
|
1215
|
+
parameters: {
|
|
1216
|
+
min: 1,
|
|
1217
|
+
max: 100
|
|
1218
|
+
}
|
|
1219
|
+
},
|
|
1220
|
+
{
|
|
1221
|
+
type: "autoPostVideoLength",
|
|
1222
|
+
userErrorMessage: "Media ineligible for auto-post. Your video duration must be between 3 seconds and 3 minutes. Adjust length & re-upload a new duration to meet YouTube guidelines.",
|
|
1223
|
+
errorHelpLink: "https://help.planoly.com/knowledge",
|
|
1224
|
+
parameters: {
|
|
1225
|
+
min: 3,
|
|
1226
|
+
max: 180
|
|
1227
|
+
}
|
|
1228
|
+
},
|
|
1229
|
+
{
|
|
1230
|
+
type: "allowedMediaTypes",
|
|
1231
|
+
userErrorMessage: "Media ineligible for posting. Video must be uploaded in .MOV, .MPEG-1 ,.MPEG-2, .MPEG4, .MP4, .MPG, .AVI, .WMV, .MPEGPS, .FLV, 3GPP, WebM. Adjust your file type and re-upload to meet YouTube guidelines.",
|
|
1232
|
+
errorHelpLink: "https://help.planoly.com/knowledge"
|
|
1233
|
+
},
|
|
1234
|
+
{
|
|
1235
|
+
type: "aspectRatio",
|
|
1236
|
+
userErrorMessage: 'Media ineligible for posting. Media must be in the correct portrait aspect ratio ("9:16"). Adjust your file type and re-upload to meet YouTube shorts guidelines.',
|
|
1237
|
+
errorHelpLink: "https://help.planoly.com/knowledge",
|
|
1238
|
+
parameters: [
|
|
1239
|
+
"9:16"
|
|
1240
|
+
]
|
|
1241
|
+
},
|
|
1242
|
+
{
|
|
1243
|
+
type: "hashtagLimit",
|
|
1244
|
+
userErrorMessage: "Hashtag limit exceeded. Please remove additional hashtags to continue.",
|
|
1245
|
+
parameters: {
|
|
1246
|
+
min: 0,
|
|
1247
|
+
max: 30
|
|
1248
|
+
}
|
|
1249
|
+
},
|
|
1250
|
+
{
|
|
1251
|
+
type: "autoPostVideoSize",
|
|
1252
|
+
userErrorMessage: "Media ineligible for auto-post. Your video size must be less than 300MB. Please fix media to proceed.",
|
|
1253
|
+
errorHelpLink: "https://help.planoly.com/knowledge",
|
|
1254
|
+
parameters: {
|
|
1255
|
+
value: 300
|
|
1256
|
+
}
|
|
1257
|
+
},
|
|
1258
|
+
{
|
|
1259
|
+
type: "invalidCharacters",
|
|
1260
|
+
userErrorMessage: 'Title ineligible for auto-post. Your title cannot contain "<" or ">" characters. Please remove them to meet YouTube guidelines.',
|
|
1261
|
+
errorHelpLink: "https://help.planoly.com/knowledge",
|
|
1262
|
+
parameters: {
|
|
1263
|
+
target: "title",
|
|
1264
|
+
chars: [
|
|
1265
|
+
"<",
|
|
1266
|
+
">"
|
|
1267
|
+
]
|
|
1268
|
+
}
|
|
1269
|
+
},
|
|
1270
|
+
{
|
|
1271
|
+
type: "invalidCharacters",
|
|
1272
|
+
userErrorMessage: 'Description ineligible for auto-post. Your description cannot contain "<" or ">" characters. Please remove them to meet YouTube guidelines.',
|
|
1273
|
+
errorHelpLink: "https://help.planoly.com/knowledge",
|
|
1274
|
+
parameters: {
|
|
1275
|
+
target: "caption",
|
|
1276
|
+
chars: [
|
|
1277
|
+
"<",
|
|
1278
|
+
">"
|
|
1279
|
+
]
|
|
1280
|
+
}
|
|
1281
|
+
}
|
|
1282
|
+
]
|
|
1283
|
+
},
|
|
1284
|
+
{
|
|
1285
|
+
name: "Video",
|
|
1286
|
+
allowAutoPost: true,
|
|
1287
|
+
allowFirstComment: false,
|
|
1288
|
+
allowedMediaTypes: [
|
|
1289
|
+
"video/mp4",
|
|
1290
|
+
"video/quicktime",
|
|
1291
|
+
"video/mpeg",
|
|
1292
|
+
"video/x-msvideo",
|
|
1293
|
+
"video/x-ms-wmv",
|
|
1294
|
+
"video/MP2T",
|
|
1295
|
+
"video/x-flv",
|
|
1296
|
+
"video/3gpp",
|
|
1297
|
+
"video/webm"
|
|
1298
|
+
],
|
|
1299
|
+
allowMultipleAssets: false,
|
|
1300
|
+
allowedMultipleAssetMediaTypes: [],
|
|
1301
|
+
hasCaptions: true,
|
|
1302
|
+
hasTitle: true,
|
|
1303
|
+
allowNotifySubscribers: true,
|
|
1304
|
+
allowVisibility: true,
|
|
1305
|
+
visibilityOptions: [
|
|
1306
|
+
{
|
|
1307
|
+
name: "Public",
|
|
1308
|
+
value: "public",
|
|
1309
|
+
icon: "vp-icon-eye-green"
|
|
1310
|
+
},
|
|
1311
|
+
{
|
|
1312
|
+
name: "Unlisted",
|
|
1313
|
+
value: "unlisted",
|
|
1314
|
+
icon: "vp-icon-eye"
|
|
1315
|
+
},
|
|
1316
|
+
{
|
|
1317
|
+
name: "Private",
|
|
1318
|
+
value: "private",
|
|
1319
|
+
icon: "vp-icon-eye-off"
|
|
1320
|
+
}
|
|
1321
|
+
],
|
|
1322
|
+
coverPhotoSource: [
|
|
1323
|
+
"timestamp",
|
|
1324
|
+
"image"
|
|
1325
|
+
],
|
|
1326
|
+
allowHashtags: true,
|
|
1327
|
+
allowSoundUrl: false,
|
|
1328
|
+
allowSnipfeed: false,
|
|
1329
|
+
allowSoundUrlForAutopost: false,
|
|
1330
|
+
allowAddLink: false,
|
|
1331
|
+
allowUserTagging: false,
|
|
1332
|
+
allowProductTagging: false,
|
|
1333
|
+
allowLocationTagging: false,
|
|
1334
|
+
allowTagInLinkit: false,
|
|
1335
|
+
allowASINTagging: false,
|
|
1336
|
+
allowShareToFeed: false,
|
|
1337
|
+
allowOptions: true,
|
|
1338
|
+
allowCanva: false,
|
|
1339
|
+
allowCollaboratorTagging: false,
|
|
1340
|
+
canvaDesignType: "YoutubeVideo",
|
|
1341
|
+
allowImageCompression: false,
|
|
1342
|
+
allowCoverPhoto: false,
|
|
1343
|
+
allowedCoverPhotoTypes: [],
|
|
1344
|
+
allowCoverPhotoCanva: false,
|
|
1345
|
+
allowCoverPhotoImageCompression: false,
|
|
1346
|
+
validations: [
|
|
1347
|
+
{
|
|
1348
|
+
type: "futureDate",
|
|
1349
|
+
userErrorMessage: "Media ineligible for posting. Please choose a date and time at least 5 minutes in the future.",
|
|
1350
|
+
errorHelpLink: "https://help.planoly.com/knowledge",
|
|
1351
|
+
parameters: {
|
|
1352
|
+
value: 5
|
|
1353
|
+
}
|
|
1354
|
+
},
|
|
1355
|
+
{
|
|
1356
|
+
type: "numberOfAssets",
|
|
1357
|
+
userErrorMessage: "Media ineligible for auto-post. Upload 1 video file to meet YouTube guidelines.",
|
|
1358
|
+
errorHelpLink: "https://help.planoly.com/knowledge",
|
|
1359
|
+
parameters: {
|
|
1360
|
+
min: 1,
|
|
1361
|
+
max: 1
|
|
1362
|
+
}
|
|
1363
|
+
},
|
|
1364
|
+
{
|
|
1365
|
+
type: "manualPostCaptionLength",
|
|
1366
|
+
userErrorMessage: "Description ineligible for posting. Your description must be less than 5000 characters. Adjust description length to meet YouTube guidelines.",
|
|
1367
|
+
errorHelpLink: "https://help.planoly.com/knowledge",
|
|
1368
|
+
parameters: {
|
|
1369
|
+
min: 0,
|
|
1370
|
+
max: 5e3
|
|
1371
|
+
}
|
|
1372
|
+
},
|
|
1373
|
+
{
|
|
1374
|
+
type: "autoPostCaptionLength",
|
|
1375
|
+
userErrorMessage: "Description ineligible for auto-post. Your description must be between 1 and 5000 characters. Adjust description length to meet YouTube guidelines.",
|
|
1376
|
+
errorHelpLink: "https://help.planoly.com/knowledge",
|
|
1377
|
+
parameters: {
|
|
1378
|
+
min: 1,
|
|
1379
|
+
max: 5e3
|
|
1380
|
+
}
|
|
1381
|
+
},
|
|
1382
|
+
{
|
|
1383
|
+
type: "titleLength",
|
|
1384
|
+
userErrorMessage: "Title ineligible for auto-post. Your title must be between 1 and 100 characters. Adjust title length to meet YouTube guidelines.",
|
|
1385
|
+
errorHelpLink: "https://help.planoly.com/knowledge",
|
|
1386
|
+
parameters: {
|
|
1387
|
+
min: 1,
|
|
1388
|
+
max: 100
|
|
1389
|
+
}
|
|
1390
|
+
},
|
|
1391
|
+
{
|
|
1392
|
+
type: "autoPostVideoLength",
|
|
1393
|
+
userErrorMessage: "Media ineligible for auto-post. Your video duration must be between 3 seconds and 2 hours. Adjust length & re-upload a new duration to meet YouTube guidelines.",
|
|
1394
|
+
errorHelpLink: "https://help.planoly.com/knowledge",
|
|
1395
|
+
parameters: {
|
|
1396
|
+
min: 3,
|
|
1397
|
+
max: 7200
|
|
1398
|
+
}
|
|
1399
|
+
},
|
|
1400
|
+
{
|
|
1401
|
+
type: "autoPostVideoSize",
|
|
1402
|
+
userErrorMessage: "Media ineligible for auto-post. Your video size must be less than 300MB. Please fix media to proceed.",
|
|
1403
|
+
errorHelpLink: "https://help.planoly.com/knowledge",
|
|
1404
|
+
parameters: {
|
|
1405
|
+
value: 300
|
|
1406
|
+
}
|
|
1407
|
+
},
|
|
1408
|
+
{
|
|
1409
|
+
type: "allowedMediaTypes",
|
|
1410
|
+
userErrorMessage: "Media ineligible for posting. Video must be uploaded in .MOV, .MPEG-1 ,.MPEG-2, .MPEG4, .MP4, .MPG, .AVI, .WMV, .MPEGPS, .FLV, 3GPP, WebM. Adjust your file type and re-upload to meet YouTube guidelines.",
|
|
1411
|
+
errorHelpLink: "https://help.planoly.com/knowledge"
|
|
1412
|
+
},
|
|
1413
|
+
{
|
|
1414
|
+
type: "hashtagLimit",
|
|
1415
|
+
userErrorMessage: "Hashtag limit exceeded. Please remove additional hashtags to continue.",
|
|
1416
|
+
parameters: {
|
|
1417
|
+
min: 0,
|
|
1418
|
+
max: 30
|
|
1419
|
+
}
|
|
1420
|
+
},
|
|
1421
|
+
{
|
|
1422
|
+
type: "invalidCharacters",
|
|
1423
|
+
userErrorMessage: 'Title ineligible for auto-post. Your title cannot contain "<" or ">" characters. Please remove them to meet YouTube guidelines.',
|
|
1424
|
+
errorHelpLink: "https://help.planoly.com/knowledge",
|
|
1425
|
+
parameters: {
|
|
1426
|
+
target: "title",
|
|
1427
|
+
chars: [
|
|
1428
|
+
"<",
|
|
1429
|
+
">"
|
|
1430
|
+
]
|
|
1431
|
+
}
|
|
1432
|
+
},
|
|
1433
|
+
{
|
|
1434
|
+
type: "invalidCharacters",
|
|
1435
|
+
userErrorMessage: 'Description ineligible for auto-post. Your description cannot contain "<" or ">" characters. Please remove them to meet YouTube guidelines.',
|
|
1436
|
+
errorHelpLink: "https://help.planoly.com/knowledge",
|
|
1437
|
+
parameters: {
|
|
1438
|
+
target: "caption",
|
|
1439
|
+
chars: [
|
|
1440
|
+
"<",
|
|
1441
|
+
">"
|
|
1442
|
+
]
|
|
1443
|
+
}
|
|
1444
|
+
}
|
|
1445
|
+
]
|
|
1446
|
+
}
|
|
1447
|
+
]
|
|
1448
|
+
},
|
|
1449
|
+
{
|
|
1450
|
+
name: "threads",
|
|
1451
|
+
id: 10,
|
|
1452
|
+
enabled: true,
|
|
1453
|
+
order: 7,
|
|
1454
|
+
isBeta: false,
|
|
1455
|
+
postTypes: [
|
|
1456
|
+
{
|
|
1457
|
+
name: "Thread",
|
|
1458
|
+
allowAutoPost: true,
|
|
1459
|
+
allowFirstComment: false,
|
|
1460
|
+
allowedMediaTypes: [
|
|
1461
|
+
"image/jpeg",
|
|
1462
|
+
"image/png",
|
|
1463
|
+
"video/mp4",
|
|
1464
|
+
"video/quicktime"
|
|
1465
|
+
],
|
|
1466
|
+
allowMultipleAssets: true,
|
|
1467
|
+
allowedMultipleAssetMediaTypes: [
|
|
1468
|
+
"image/jpeg",
|
|
1469
|
+
"image/png",
|
|
1470
|
+
"video/mp4",
|
|
1471
|
+
"video/quicktime",
|
|
1472
|
+
"image/gif"
|
|
1473
|
+
],
|
|
1474
|
+
hasCaptions: true,
|
|
1475
|
+
hasTitle: false,
|
|
1476
|
+
allowNotifySubscribers: false,
|
|
1477
|
+
allowVisibility: false,
|
|
1478
|
+
visibilityOptions: [],
|
|
1479
|
+
coverPhotoSource: [],
|
|
1480
|
+
allowHashtags: true,
|
|
1481
|
+
allowSoundUrl: false,
|
|
1482
|
+
allowSnipfeed: false,
|
|
1483
|
+
allowSoundUrlForAutopost: false,
|
|
1484
|
+
allowUserTagging: false,
|
|
1485
|
+
allowProductTagging: false,
|
|
1486
|
+
allowLocationTagging: false,
|
|
1487
|
+
allowTagInLinkit: false,
|
|
1488
|
+
allowASINTagging: false,
|
|
1489
|
+
allowShareToFeed: false,
|
|
1490
|
+
allowOptions: false,
|
|
1491
|
+
allowCanva: true,
|
|
1492
|
+
allowCollaboratorTagging: false,
|
|
1493
|
+
canvaDesignType: "ThreadsThread",
|
|
1494
|
+
allowImageCompression: true,
|
|
1495
|
+
allowCoverPhoto: false,
|
|
1496
|
+
allowedCoverPhotoTypes: [],
|
|
1497
|
+
allowCoverPhotoCanva: false,
|
|
1498
|
+
allowCoverPhotoImageCompression: false,
|
|
1499
|
+
validations: [
|
|
1500
|
+
{
|
|
1501
|
+
type: "numberOfAssets",
|
|
1502
|
+
userErrorMessage: "Media ineligible for posting. Your post must can have no more than 20 media files (no more than 10 if one or more is a video). Adjust the number of media files to meet Threads guidelines.",
|
|
1503
|
+
errorHelpLink: "https://help.planoly.com/knowledge/how-to-link-and-auto-post-to-threads",
|
|
1504
|
+
parameters: {
|
|
1505
|
+
min: 0,
|
|
1506
|
+
max: 20
|
|
1507
|
+
}
|
|
1508
|
+
},
|
|
1509
|
+
{
|
|
1510
|
+
type: "futureDate",
|
|
1511
|
+
userErrorMessage: "Media ineligible for posting. Please choose a date and time at least 5 minutes in the future.",
|
|
1512
|
+
errorHelpLink: "https://help.planoly.com/knowledge/how-to-link-and-auto-post-to-threads",
|
|
1513
|
+
parameters: {
|
|
1514
|
+
value: 5
|
|
1515
|
+
}
|
|
1516
|
+
},
|
|
1517
|
+
{
|
|
1518
|
+
type: "manualPostCaptionLength",
|
|
1519
|
+
userErrorMessage: "Thread ineligible for posting. Your text must be below 500 characters. Adjust caption length to meet Threads guidelines.",
|
|
1520
|
+
errorHelpLink: "https://help.planoly.com/knowledge/how-to-link-and-auto-post-to-threads",
|
|
1521
|
+
parameters: {
|
|
1522
|
+
min: 0,
|
|
1523
|
+
max: 500
|
|
1524
|
+
}
|
|
1525
|
+
},
|
|
1526
|
+
{
|
|
1527
|
+
type: "autoPostCaptionLength",
|
|
1528
|
+
userErrorMessage: "Thread ineligible for auto-post. Your text must be below 500 characters. Adjust caption length to meet Threads guidelines.",
|
|
1529
|
+
errorHelpLink: "https://help.planoly.com/knowledge/how-to-link-and-auto-post-to-threads",
|
|
1530
|
+
parameters: {
|
|
1531
|
+
min: 0,
|
|
1532
|
+
max: 500
|
|
1533
|
+
}
|
|
1534
|
+
},
|
|
1535
|
+
{
|
|
1536
|
+
type: "autoPostImageSize",
|
|
1537
|
+
userErrorMessage: "Media ineligible for auto-post. Your image size must be less than 8MB. Adjust size & re-upload to meet Threads guidelines.",
|
|
1538
|
+
errorHelpLink: "https://help.planoly.com/knowledge/how-to-link-and-auto-post-to-threads",
|
|
1539
|
+
parameters: {
|
|
1540
|
+
value: 8
|
|
1541
|
+
}
|
|
1542
|
+
},
|
|
1543
|
+
{
|
|
1544
|
+
type: "autoPostVideoSize",
|
|
1545
|
+
userErrorMessage: "Media ineligible for auto-post. Your video size must be less than or equal to 1GB. Adjust size & re-upload.",
|
|
1546
|
+
errorHelpLink: "https://help.planoly.com/knowledge/how-to-link-and-auto-post-to-threads",
|
|
1547
|
+
parameters: {
|
|
1548
|
+
value: 1e3
|
|
1549
|
+
}
|
|
1550
|
+
},
|
|
1551
|
+
{
|
|
1552
|
+
type: "allowedMediaTypes",
|
|
1553
|
+
userErrorMessage: "Media ineligible for posting. Images must be uploaded in .jpg, .png, .mov, or .mp4 format. Adjust your file type and re-upload to meet Threads guidelines.",
|
|
1554
|
+
errorHelpLink: "https://help.planoly.com/knowledge/how-to-link-and-auto-post-to-threads"
|
|
1555
|
+
},
|
|
1556
|
+
{
|
|
1557
|
+
type: "aspectRatioRange",
|
|
1558
|
+
userErrorMessage: "Media does not meet aspect ratio requirements. Please edit the media to meet one of the following aspect ratios ranges in order to schedule auto-post: images: 0.1:1-10:1, video: 10:1.",
|
|
1559
|
+
errorHelpLink: "https://help.planoly.com/knowledge/how-to-link-and-auto-post-to-threads",
|
|
1560
|
+
parameters: {
|
|
1561
|
+
imgMin: "0.1:1",
|
|
1562
|
+
imgMax: "10:1",
|
|
1563
|
+
videoMin: "0.1:1",
|
|
1564
|
+
videoMax: "10:1"
|
|
1565
|
+
}
|
|
1566
|
+
},
|
|
1567
|
+
{
|
|
1568
|
+
type: "hashtagLimit",
|
|
1569
|
+
userErrorMessage: "Hashtag limit exceeded. Please remove additional hashtags to continue.",
|
|
1570
|
+
parameters: {
|
|
1571
|
+
min: 0,
|
|
1572
|
+
max: 30
|
|
1573
|
+
}
|
|
1574
|
+
},
|
|
1575
|
+
{
|
|
1576
|
+
type: "autoPostVideoLength",
|
|
1577
|
+
userErrorMessage: "Media ineligible for auto-post. Your video duration must be between 0 seconds and 300 seconds. Adjust length & re-upload a new duration to meet Threads guidelines.",
|
|
1578
|
+
errorHelpLink: "https://help.planoly.com/knowledge/how-to-link-and-auto-post-to-threads",
|
|
1579
|
+
parameters: {
|
|
1580
|
+
min: 0,
|
|
1581
|
+
max: 300
|
|
1582
|
+
}
|
|
1583
|
+
},
|
|
1584
|
+
{
|
|
1585
|
+
type: "autoPostVideoMaxDimensions",
|
|
1586
|
+
userErrorMessage: "Media ineligible for auto-post. Crop your video to be a maximum of 1920 pixels in width and re-upload a new size to meet Threads guidelines.",
|
|
1587
|
+
errorHelpLink: "https://help.planoly.com/knowledge/how-to-link-and-auto-post-to-threads",
|
|
1588
|
+
parameters: {
|
|
1589
|
+
width: 1920
|
|
1590
|
+
}
|
|
1591
|
+
},
|
|
1592
|
+
{
|
|
1593
|
+
type: "nonEmptyPost",
|
|
1594
|
+
userErrorMessage: "Please add media or caption to autopost.",
|
|
1595
|
+
errorHelpLink: "https://help.planoly.com/knowledge/how-to-link-and-auto-post-to-threads"
|
|
1596
|
+
}
|
|
1597
|
+
]
|
|
1598
|
+
}
|
|
1599
|
+
]
|
|
1600
|
+
},
|
|
1601
|
+
{
|
|
1602
|
+
name: "twitter",
|
|
1603
|
+
id: 6,
|
|
1604
|
+
enabled: true,
|
|
1605
|
+
order: 8,
|
|
1606
|
+
isBeta: false,
|
|
1607
|
+
postTypes: [
|
|
1608
|
+
{
|
|
1609
|
+
name: "Feed Post",
|
|
1610
|
+
allowAutoPost: false,
|
|
1611
|
+
allowFirstComment: false,
|
|
1612
|
+
allowedMediaTypes: [
|
|
1613
|
+
"video/mp4",
|
|
1614
|
+
"video/quicktime",
|
|
1615
|
+
"image/jpeg",
|
|
1616
|
+
"image/png",
|
|
1617
|
+
"image/gif",
|
|
1618
|
+
"image/webp"
|
|
1619
|
+
],
|
|
1620
|
+
allowMultipleAssets: true,
|
|
1621
|
+
allowedMultipleAssetMediaTypes: [
|
|
1622
|
+
"image/jpeg",
|
|
1623
|
+
"image/png",
|
|
1624
|
+
"image/webp"
|
|
1625
|
+
],
|
|
1626
|
+
hasCaptions: true,
|
|
1627
|
+
hasTitle: false,
|
|
1628
|
+
allowNotifySubscribers: false,
|
|
1629
|
+
allowVisibility: false,
|
|
1630
|
+
visibilityOptions: [],
|
|
1631
|
+
coverPhotoSource: [
|
|
1632
|
+
"timestamp"
|
|
1633
|
+
],
|
|
1634
|
+
allowHashtags: true,
|
|
1635
|
+
allowSoundUrl: false,
|
|
1636
|
+
allowSnipfeed: false,
|
|
1637
|
+
allowSoundUrlForAutopost: false,
|
|
1638
|
+
allowAddLink: false,
|
|
1639
|
+
allowUserTagging: false,
|
|
1640
|
+
allowProductTagging: false,
|
|
1641
|
+
allowLocationTagging: false,
|
|
1642
|
+
allowTagInLinkit: false,
|
|
1643
|
+
allowASINTagging: false,
|
|
1644
|
+
allowShareToFeed: false,
|
|
1645
|
+
allowOptions: false,
|
|
1646
|
+
allowCanva: true,
|
|
1647
|
+
allowCollaboratorTagging: false,
|
|
1648
|
+
canvaDesignType: "TwitterPost",
|
|
1649
|
+
allowImageCompression: false,
|
|
1650
|
+
allowCoverPhoto: false,
|
|
1651
|
+
allowedCoverPhotoTypes: [],
|
|
1652
|
+
allowCoverPhotoCanva: false,
|
|
1653
|
+
allowCoverPhotoImageCompression: false,
|
|
1654
|
+
validations: [
|
|
1655
|
+
{
|
|
1656
|
+
type: "numberOfAssets",
|
|
1657
|
+
userErrorMessage: "Media ineligible for posting. Your media may not exceed 4 items.",
|
|
1658
|
+
errorHelpLink: "https://help.planoly.com/knowledge/auto-posting-to-tiktok-from-planoly",
|
|
1659
|
+
parameters: {
|
|
1660
|
+
min: 0,
|
|
1661
|
+
max: 4
|
|
1662
|
+
}
|
|
1663
|
+
},
|
|
1664
|
+
{
|
|
1665
|
+
type: "futureDate",
|
|
1666
|
+
userErrorMessage: "Media ineligible for posting. Please choose a date and time at least 5 minutes in the future.",
|
|
1667
|
+
errorHelpLink: "https://help.planoly.com/knowledge/enable-auto-post-for-twitter",
|
|
1668
|
+
parameters: {
|
|
1669
|
+
value: 5
|
|
1670
|
+
}
|
|
1671
|
+
},
|
|
1672
|
+
{
|
|
1673
|
+
type: "manualPostCaptionLength",
|
|
1674
|
+
userErrorMessage: "Caption ineligible for posting. Your caption must not exceed 280 characters. Adjust caption length to meet Twitter guidelines.",
|
|
1675
|
+
errorHelpLink: "https://help.planoly.com/knowledge/enable-auto-post-for-twitter",
|
|
1676
|
+
parameters: {
|
|
1677
|
+
min: 0,
|
|
1678
|
+
max: 280
|
|
1679
|
+
}
|
|
1680
|
+
},
|
|
1681
|
+
{
|
|
1682
|
+
type: "autoPostCaptionLength",
|
|
1683
|
+
userErrorMessage: "Caption ineligible for auto-post. Your caption must not exceed 280 characters. Adjust caption length to meet Twitter guidelines.",
|
|
1684
|
+
errorHelpLink: "https://help.planoly.com/knowledge/enable-auto-post-for-twitter",
|
|
1685
|
+
parameters: {
|
|
1686
|
+
min: 0,
|
|
1687
|
+
max: 280
|
|
1688
|
+
}
|
|
1689
|
+
},
|
|
1690
|
+
{
|
|
1691
|
+
type: "autoPostVideoLength",
|
|
1692
|
+
userErrorMessage: "Media ineligible for auto-post. Your video duration must be between 0.5 and 140 seconds. Adjust length & re-upload a new duration to meet Twitter guidelines.",
|
|
1693
|
+
errorHelpLink: "https://help.planoly.com/knowledge/enable-auto-post-for-twitter",
|
|
1694
|
+
parameters: {
|
|
1695
|
+
min: 0.5,
|
|
1696
|
+
max: 140
|
|
1697
|
+
}
|
|
1698
|
+
},
|
|
1699
|
+
{
|
|
1700
|
+
type: "autoPostImageSize",
|
|
1701
|
+
userErrorMessage: "Media ineligible for auto-post. Your image size must be less than 5MB. Adjust size & re-upload to meet Twitter guidelines.",
|
|
1702
|
+
errorHelpLink: "https://help.planoly.com/knowledge/enable-auto-post-for-twitter",
|
|
1703
|
+
parameters: {
|
|
1704
|
+
value: 5
|
|
1705
|
+
}
|
|
1706
|
+
},
|
|
1707
|
+
{
|
|
1708
|
+
type: "autoPostVideoSize",
|
|
1709
|
+
userErrorMessage: "Media ineligible for auto-post. Your video size must be less than or equal to 300MB. Adjust size & re-upload to meet Twitter guidelines.",
|
|
1710
|
+
errorHelpLink: "https://help.planoly.com/knowledge/enable-auto-post-for-twitter",
|
|
1711
|
+
parameters: {
|
|
1712
|
+
value: 300
|
|
1713
|
+
}
|
|
1714
|
+
},
|
|
1715
|
+
{
|
|
1716
|
+
type: "autoPostGIFSize",
|
|
1717
|
+
userErrorMessage: "Media ineligible for auto-post. Your image size must be less than 15MB. Adjust size & re-upload to meet Twitter guidelines.",
|
|
1718
|
+
errorHelpLink: "https://help.planoly.com/knowledge/enable-auto-post-for-twitter",
|
|
1719
|
+
parameters: {
|
|
1720
|
+
value: 15
|
|
1721
|
+
}
|
|
1722
|
+
},
|
|
1723
|
+
{
|
|
1724
|
+
type: "allowedMediaTypes",
|
|
1725
|
+
userErrorMessage: "Media ineligible for posting. Media must be uploaded in .jpg, .png, .mov, or .mp4 format. Adjust your file type and re-upload to meet Twitter guidelines.",
|
|
1726
|
+
errorHelpLink: "https://help.planoly.com/knowledge/enable-auto-post-for-twitter"
|
|
1727
|
+
},
|
|
1728
|
+
{
|
|
1729
|
+
type: "hashtagLimit",
|
|
1730
|
+
userErrorMessage: "Hashtag limit exceeded. Please remove additional hashtags to continue.",
|
|
1731
|
+
parameters: {
|
|
1732
|
+
min: 0,
|
|
1733
|
+
max: 30
|
|
1734
|
+
}
|
|
1735
|
+
},
|
|
1736
|
+
{
|
|
1737
|
+
type: "nonEmptyPost",
|
|
1738
|
+
userErrorMessage: "Please add media or text to autopost.",
|
|
1739
|
+
errorHelpLink: "https://help.planoly.com/knowledge"
|
|
1740
|
+
}
|
|
1741
|
+
]
|
|
1742
|
+
}
|
|
1743
|
+
]
|
|
1744
|
+
},
|
|
1745
|
+
{
|
|
1746
|
+
name: "linkedin",
|
|
1747
|
+
id: 7,
|
|
1748
|
+
enabled: true,
|
|
1749
|
+
order: 5,
|
|
1750
|
+
isBeta: false,
|
|
1751
|
+
postTypes: [
|
|
1752
|
+
{
|
|
1753
|
+
name: "Page Post",
|
|
1754
|
+
allowAutoPost: true,
|
|
1755
|
+
allowFirstComment: false,
|
|
1756
|
+
allowedMediaTypes: [
|
|
1757
|
+
"video/mp4",
|
|
1758
|
+
"image/jpeg",
|
|
1759
|
+
"image/png",
|
|
1760
|
+
"image/gif"
|
|
1761
|
+
],
|
|
1762
|
+
allowMultipleAssets: true,
|
|
1763
|
+
allowedMultipleAssetMediaTypes: [
|
|
1764
|
+
"image/jpeg",
|
|
1765
|
+
"image/png",
|
|
1766
|
+
"image/gif"
|
|
1767
|
+
],
|
|
1768
|
+
hasCaptions: true,
|
|
1769
|
+
hasTitle: false,
|
|
1770
|
+
allowNotifySubscribers: false,
|
|
1771
|
+
allowVisibility: false,
|
|
1772
|
+
visibilityOptions: [],
|
|
1773
|
+
coverPhotoSource: [],
|
|
1774
|
+
allowHashtags: true,
|
|
1775
|
+
allowSoundUrl: false,
|
|
1776
|
+
allowSnipfeed: false,
|
|
1777
|
+
allowSoundUrlForAutopost: false,
|
|
1778
|
+
allowAddLink: false,
|
|
1779
|
+
allowUserTagging: false,
|
|
1780
|
+
allowProductTagging: false,
|
|
1781
|
+
allowLocationTagging: false,
|
|
1782
|
+
allowTagInLinkit: false,
|
|
1783
|
+
allowASINTagging: false,
|
|
1784
|
+
allowShareToFeed: false,
|
|
1785
|
+
allowOptions: false,
|
|
1786
|
+
allowCanva: true,
|
|
1787
|
+
allowCollaboratorTagging: false,
|
|
1788
|
+
canvaDesignType: "LinkedinPagePost",
|
|
1789
|
+
allowImageCompression: false,
|
|
1790
|
+
allowCoverPhoto: false,
|
|
1791
|
+
allowedCoverPhotoTypes: [],
|
|
1792
|
+
allowCoverPhotoCanva: false,
|
|
1793
|
+
allowCoverPhotoImageCompression: false,
|
|
1794
|
+
validations: [
|
|
1795
|
+
{
|
|
1796
|
+
type: "numberOfAssets",
|
|
1797
|
+
userErrorMessage: "Media ineligible for posting. Please add no more than 9 assets.",
|
|
1798
|
+
errorHelpLink: "https://help.planoly.com/knowledge",
|
|
1799
|
+
parameters: {
|
|
1800
|
+
min: 0,
|
|
1801
|
+
max: 9
|
|
1802
|
+
}
|
|
1803
|
+
},
|
|
1804
|
+
{
|
|
1805
|
+
type: "futureDate",
|
|
1806
|
+
userErrorMessage: "Media ineligible for posting. Please choose a date and time at least 5 minutes in the future.",
|
|
1807
|
+
errorHelpLink: "https://help.planoly.com/knowledge",
|
|
1808
|
+
parameters: {
|
|
1809
|
+
value: 5
|
|
1810
|
+
}
|
|
1811
|
+
},
|
|
1812
|
+
{
|
|
1813
|
+
type: "manualPostCaptionLength",
|
|
1814
|
+
userErrorMessage: "Caption ineligible for posting. Your caption must be below 3000 characters. Adjust caption length to meet LinkedIn guidelines.",
|
|
1815
|
+
errorHelpLink: "https://help.planoly.com/knowledge",
|
|
1816
|
+
parameters: {
|
|
1817
|
+
min: 0,
|
|
1818
|
+
max: 3e3
|
|
1819
|
+
}
|
|
1820
|
+
},
|
|
1821
|
+
{
|
|
1822
|
+
type: "autoPostCaptionLength",
|
|
1823
|
+
userErrorMessage: "Caption ineligible for auto-post. Your caption must be below 3000 characters. Adjust caption length to meet LinkedIn guidelines.",
|
|
1824
|
+
errorHelpLink: "https://help.planoly.com/knowledge",
|
|
1825
|
+
parameters: {
|
|
1826
|
+
min: 0,
|
|
1827
|
+
max: 3e3
|
|
1828
|
+
}
|
|
1829
|
+
},
|
|
1830
|
+
{
|
|
1831
|
+
type: "autoPostVideoLength",
|
|
1832
|
+
userErrorMessage: "The video file needs to be between 3 seconds and 60 seconds in length in order to auto-post. Please adjust the video file.",
|
|
1833
|
+
errorHelpLink: "https://help.planoly.com/knowledge",
|
|
1834
|
+
parameters: {
|
|
1835
|
+
min: 3,
|
|
1836
|
+
max: 60
|
|
1837
|
+
}
|
|
1838
|
+
},
|
|
1839
|
+
{
|
|
1840
|
+
type: "autoPostVideoSize",
|
|
1841
|
+
userErrorMessage: "Media ineligible for auto-post. Your video size must be less than 200MB. Adjust size & re-upload to meet LinkedIn guidelines.",
|
|
1842
|
+
errorHelpLink: "https://help.planoly.com/knowledge/enable-auto-post-for-twitter",
|
|
1843
|
+
parameters: {
|
|
1844
|
+
value: 200
|
|
1845
|
+
}
|
|
1846
|
+
},
|
|
1847
|
+
{
|
|
1848
|
+
type: "allowedMediaTypes",
|
|
1849
|
+
userErrorMessage: "Media ineligible for posting. Images must be uploaded in .jpg, .png, .gif format and videos in .mp4 format. Adjust your file type and re-upload to meet LinkedIn guidelines.",
|
|
1850
|
+
errorHelpLink: "https://help.planoly.com/knowledge"
|
|
1851
|
+
},
|
|
1852
|
+
{
|
|
1853
|
+
type: "hashtagLimit",
|
|
1854
|
+
userErrorMessage: "Hashtag limit exceeded. Please remove additional hashtags to continue.",
|
|
1855
|
+
parameters: {
|
|
1856
|
+
min: 0,
|
|
1857
|
+
max: 30
|
|
1858
|
+
}
|
|
1859
|
+
},
|
|
1860
|
+
{
|
|
1861
|
+
type: "nonEmptyPost",
|
|
1862
|
+
userErrorMessage: "Please add media or text to autopost.",
|
|
1863
|
+
errorHelpLink: "https://help.planoly.com/knowledge"
|
|
1864
|
+
}
|
|
1865
|
+
]
|
|
1866
|
+
}
|
|
1867
|
+
]
|
|
1868
|
+
},
|
|
1869
|
+
{
|
|
1870
|
+
name: "pinterest",
|
|
1871
|
+
id: 4,
|
|
1872
|
+
enabled: true,
|
|
1873
|
+
order: 4,
|
|
1874
|
+
isBeta: false,
|
|
1875
|
+
postTypes: [
|
|
1876
|
+
{
|
|
1877
|
+
name: "Pin",
|
|
1878
|
+
allowAutoPost: true,
|
|
1879
|
+
allowFirstComment: false,
|
|
1880
|
+
allowedMediaTypes: [
|
|
1881
|
+
"image/jpeg",
|
|
1882
|
+
"image/png",
|
|
1883
|
+
"image/tiff",
|
|
1884
|
+
"image/webp",
|
|
1885
|
+
"video/mp4",
|
|
1886
|
+
"video/mp4v",
|
|
1887
|
+
"video/quicktime"
|
|
1888
|
+
],
|
|
1889
|
+
allowMultipleAssets: false,
|
|
1890
|
+
allowedMultipleAssetMediaTypes: [],
|
|
1891
|
+
hasCaptions: true,
|
|
1892
|
+
hasTitle: true,
|
|
1893
|
+
allowNotifySubscribers: false,
|
|
1894
|
+
allowVisibility: false,
|
|
1895
|
+
visibilityOptions: [],
|
|
1896
|
+
coverPhotoSource: [
|
|
1897
|
+
"image"
|
|
1898
|
+
],
|
|
1899
|
+
allowHashtags: true,
|
|
1900
|
+
allowSoundUrl: false,
|
|
1901
|
+
allowSnipfeed: false,
|
|
1902
|
+
allowSoundUrlForAutopost: false,
|
|
1903
|
+
allowAddLink: true,
|
|
1904
|
+
allowBoards: true,
|
|
1905
|
+
allowUserTagging: false,
|
|
1906
|
+
allowProductTagging: false,
|
|
1907
|
+
allowLocationTagging: false,
|
|
1908
|
+
allowTagInLinkit: false,
|
|
1909
|
+
allowShareToFeed: false,
|
|
1910
|
+
allowOptions: true,
|
|
1911
|
+
allowCanva: true,
|
|
1912
|
+
allowCollaboratorTagging: false,
|
|
1913
|
+
canvaDesignType: "PinterestGraphic",
|
|
1914
|
+
allowImageCompression: true,
|
|
1915
|
+
allowCoverPhoto: false,
|
|
1916
|
+
allowedCoverPhotoTypes: [],
|
|
1917
|
+
allowCoverPhotoCanva: false,
|
|
1918
|
+
allowCoverPhotoImageCompression: false,
|
|
1919
|
+
validations: [
|
|
1920
|
+
{
|
|
1921
|
+
type: "autoPostImageSize",
|
|
1922
|
+
userErrorMessage: "Media ineligible for auto-post. Your media size must be less than 20MB. Adjust size & re-upload to meet Pinterest guidelines.",
|
|
1923
|
+
errorHelpLink: "https://help.planoly.com/knowledge",
|
|
1924
|
+
parameters: {
|
|
1925
|
+
value: 20
|
|
1926
|
+
}
|
|
1927
|
+
},
|
|
1928
|
+
{
|
|
1929
|
+
type: "allowedMediaTypes",
|
|
1930
|
+
userErrorMessage: "Media ineligible for posting. Pin must be uploaded in .jpg, .png, .tiff, .webp, .mov, or .mp4 format. Adjust your file type and re-upload to meet Pinterest guidelines.",
|
|
1931
|
+
errorHelpLink: "https://help.planoly.com/knowledge"
|
|
1932
|
+
},
|
|
1933
|
+
{
|
|
1934
|
+
type: "futureDate",
|
|
1935
|
+
userErrorMessage: "Media ineligible for posting. Please choose a date and time at least 5 minutes in the future.",
|
|
1936
|
+
errorHelpLink: "https://help.planoly.com/knowledge",
|
|
1937
|
+
parameters: {
|
|
1938
|
+
value: 5
|
|
1939
|
+
}
|
|
1940
|
+
},
|
|
1941
|
+
{
|
|
1942
|
+
type: "manualPostCaptionLength",
|
|
1943
|
+
userErrorMessage: "Caption ineligible for posting. Your caption must be between 0 and 500 characters. Adjust caption length to meet Pinterest guidelines.",
|
|
1944
|
+
errorHelpLink: "https://help.planoly.com/knowledge",
|
|
1945
|
+
parameters: {
|
|
1946
|
+
min: 0,
|
|
1947
|
+
max: 500
|
|
1948
|
+
}
|
|
1949
|
+
},
|
|
1950
|
+
{
|
|
1951
|
+
type: "autoPostCaptionLength",
|
|
1952
|
+
userErrorMessage: "Caption ineligible for auto-post. Your caption must be between 0 and 500 characters. Adjust caption length to meet Pinterest guidelines.",
|
|
1953
|
+
errorHelpLink: "https://help.planoly.com/knowledge",
|
|
1954
|
+
parameters: {
|
|
1955
|
+
min: 0,
|
|
1956
|
+
max: 500
|
|
1957
|
+
}
|
|
1958
|
+
},
|
|
1959
|
+
{
|
|
1960
|
+
type: "titleLength",
|
|
1961
|
+
userErrorMessage: "Title ineligible for auto-post. Your title must be between 0 and 100 characters. Adjust title length to meet Pinterest guidelines.",
|
|
1962
|
+
errorHelpLink: "https://help.planoly.com/knowledge",
|
|
1963
|
+
parameters: {
|
|
1964
|
+
min: 0,
|
|
1965
|
+
max: 100
|
|
1966
|
+
}
|
|
1967
|
+
},
|
|
1968
|
+
{
|
|
1969
|
+
type: "numberOfAssets",
|
|
1970
|
+
userErrorMessage: "Media ineligible for auto-post. Upload 1 image or video file to meet Pinterest guidelines.",
|
|
1971
|
+
errorHelpLink: "https://help.planoly.com/knowledge",
|
|
1972
|
+
parameters: {
|
|
1973
|
+
min: 1,
|
|
1974
|
+
max: 1
|
|
1975
|
+
}
|
|
1976
|
+
},
|
|
1977
|
+
{
|
|
1978
|
+
type: "autoPostVideoLength",
|
|
1979
|
+
userErrorMessage: "Media ineligible for auto-post. Your video duration must be between 4 seconds and 5 minutes. Adjust length & re-upload a new duration to meet Pinterest guidelines.",
|
|
1980
|
+
errorHelpLink: "https://help.planoly.com/knowledge",
|
|
1981
|
+
parameters: {
|
|
1982
|
+
min: 3,
|
|
1983
|
+
max: 300
|
|
1984
|
+
}
|
|
1985
|
+
},
|
|
1986
|
+
{
|
|
1987
|
+
type: "autoPostVideoSize",
|
|
1988
|
+
userErrorMessage: "Media ineligible for auto-post. Your video size must be less than 300MB. Adjust size & re-upload to meet Pinterest guidelines.",
|
|
1989
|
+
errorHelpLink: "https://help.planoly.com/knowledge",
|
|
1990
|
+
parameters: {
|
|
1991
|
+
value: 300
|
|
1992
|
+
}
|
|
1993
|
+
},
|
|
1994
|
+
{
|
|
1995
|
+
type: "videoAspectRatio",
|
|
1996
|
+
userErrorMessage: "Media ineligible for posting. Media must be in the correct aspect ratio (1:2, 2:3, 3:4, 4:5, 9:16 or 1:1). Adjust your file type and re-upload to meet Pinterest guidelines.",
|
|
1997
|
+
errorHelpLink: "https://help.planoly.com/knowledge",
|
|
1998
|
+
parameters: [
|
|
1999
|
+
"1:1",
|
|
2000
|
+
"1:2",
|
|
2001
|
+
"2:3",
|
|
2002
|
+
"3:4",
|
|
2003
|
+
"4:5",
|
|
2004
|
+
"9:16"
|
|
2005
|
+
]
|
|
2006
|
+
},
|
|
2007
|
+
{
|
|
2008
|
+
type: "hashtagLimit",
|
|
2009
|
+
userErrorMessage: "Hashtag limit exceeded. Please remove additional hashtags to continue.",
|
|
2010
|
+
parameters: {
|
|
2011
|
+
min: 0,
|
|
2012
|
+
max: 30
|
|
2013
|
+
}
|
|
2014
|
+
}
|
|
2015
|
+
]
|
|
2016
|
+
}
|
|
2017
|
+
]
|
|
2018
|
+
},
|
|
2019
|
+
{
|
|
2020
|
+
name: "push-notification-only",
|
|
2021
|
+
id: 0,
|
|
2022
|
+
enabled: false,
|
|
2023
|
+
order: 10,
|
|
2024
|
+
isBeta: false,
|
|
2025
|
+
postTypes: [
|
|
2026
|
+
{
|
|
2027
|
+
name: "Push Notification",
|
|
2028
|
+
allowAutoPost: false,
|
|
2029
|
+
allowFirstComment: false,
|
|
2030
|
+
allowedMediaTypes: [
|
|
2031
|
+
"video/mp4",
|
|
2032
|
+
"video/quicktime",
|
|
2033
|
+
"image/jpeg",
|
|
2034
|
+
"image/png",
|
|
2035
|
+
"image/webp",
|
|
2036
|
+
"image/svg+xml"
|
|
2037
|
+
],
|
|
2038
|
+
allowMultipleAssets: true,
|
|
2039
|
+
allowedMultipleAssetMediaTypes: [
|
|
2040
|
+
"video/mp4",
|
|
2041
|
+
"video/quicktime",
|
|
2042
|
+
"image/jpeg",
|
|
2043
|
+
"image/png",
|
|
2044
|
+
"image/webp",
|
|
2045
|
+
"image/svg+xml"
|
|
2046
|
+
],
|
|
2047
|
+
hasCaptions: true,
|
|
2048
|
+
hasTitle: false,
|
|
2049
|
+
allowNotifySubscribers: false,
|
|
2050
|
+
allowVisibility: false,
|
|
2051
|
+
visibilityOptions: [],
|
|
2052
|
+
coverPhotoSource: [
|
|
2053
|
+
"timestamp",
|
|
2054
|
+
"image"
|
|
2055
|
+
],
|
|
2056
|
+
allowHashtags: true,
|
|
2057
|
+
allowSoundUrl: false,
|
|
2058
|
+
allowSnipfeed: false,
|
|
2059
|
+
allowSoundUrlForAutopost: false,
|
|
2060
|
+
allowAddLink: false,
|
|
2061
|
+
allowUserTagging: false,
|
|
2062
|
+
allowProductTagging: false,
|
|
2063
|
+
allowLocationTagging: false,
|
|
2064
|
+
allowTagInLinkit: false,
|
|
2065
|
+
allowASINTagging: false,
|
|
2066
|
+
allowShareToFeed: false,
|
|
2067
|
+
allowOptions: false,
|
|
2068
|
+
allowCanva: false,
|
|
2069
|
+
allowCollaboratorTagging: false,
|
|
2070
|
+
canvaDesignType: "PushNotificationOnlyPushNotification",
|
|
2071
|
+
allowImageCompression: false,
|
|
2072
|
+
allowCoverPhoto: false,
|
|
2073
|
+
allowedCoverPhotoTypes: [],
|
|
2074
|
+
allowCoverPhotoCanva: false,
|
|
2075
|
+
allowCoverPhotoImageCompression: false,
|
|
2076
|
+
validations: [
|
|
2077
|
+
{
|
|
2078
|
+
type: "futureDate",
|
|
2079
|
+
userErrorMessage: "Please choose a date & time in the future",
|
|
2080
|
+
errorHelpLink: "https://help.planoly.com/knowledge",
|
|
2081
|
+
parameters: {
|
|
2082
|
+
value: "now"
|
|
2083
|
+
}
|
|
2084
|
+
},
|
|
2085
|
+
{
|
|
2086
|
+
type: "allowedMediaTypes",
|
|
2087
|
+
userErrorMessage: "Please only upload allowed media types",
|
|
2088
|
+
errorHelpLink: "https://help.planoly.com/knowledge"
|
|
2089
|
+
},
|
|
2090
|
+
{
|
|
2091
|
+
type: "hashtagLimit",
|
|
2092
|
+
userErrorMessage: "Hashtag limit exceeded. Please remove additional hashtags to continue.",
|
|
2093
|
+
parameters: {
|
|
2094
|
+
min: 0,
|
|
2095
|
+
max: 30
|
|
2096
|
+
}
|
|
2097
|
+
}
|
|
2098
|
+
]
|
|
2099
|
+
}
|
|
2100
|
+
]
|
|
2101
|
+
},
|
|
2102
|
+
{
|
|
2103
|
+
name: "amazon",
|
|
2104
|
+
id: 9,
|
|
2105
|
+
enabled: true,
|
|
2106
|
+
order: 9,
|
|
2107
|
+
isBeta: true,
|
|
2108
|
+
postTypes: [
|
|
2109
|
+
{
|
|
2110
|
+
name: "Amazon Post",
|
|
2111
|
+
allowAutoPost: false,
|
|
2112
|
+
allowFirstComment: false,
|
|
2113
|
+
allowedMediaTypes: [
|
|
2114
|
+
"image/jpeg",
|
|
2115
|
+
"image/png",
|
|
2116
|
+
"video/mp4",
|
|
2117
|
+
"video/quicktime"
|
|
2118
|
+
],
|
|
2119
|
+
allowMultipleAssets: true,
|
|
2120
|
+
allowedMultipleAssetMediaTypes: [
|
|
2121
|
+
"image/jpeg",
|
|
2122
|
+
"image/png",
|
|
2123
|
+
"video/mp4",
|
|
2124
|
+
"video/quicktime"
|
|
2125
|
+
],
|
|
2126
|
+
hasCaptions: true,
|
|
2127
|
+
hasTitle: false,
|
|
2128
|
+
allowNotifySubscribers: false,
|
|
2129
|
+
allowVisibility: false,
|
|
2130
|
+
visibilityOptions: [],
|
|
2131
|
+
coverPhotoSource: [],
|
|
2132
|
+
allowHashtags: true,
|
|
2133
|
+
allowSoundUrl: false,
|
|
2134
|
+
allowSnipfeed: false,
|
|
2135
|
+
allowSoundUrlForAutopost: false,
|
|
2136
|
+
allowUserTagging: false,
|
|
2137
|
+
allowProductTagging: false,
|
|
2138
|
+
allowLocationTagging: false,
|
|
2139
|
+
allowTagInLinkit: false,
|
|
2140
|
+
allowASINTagging: true,
|
|
2141
|
+
allowShareToFeed: false,
|
|
2142
|
+
allowOptions: true,
|
|
2143
|
+
allowCanva: false,
|
|
2144
|
+
allowCollaboratorTagging: false,
|
|
2145
|
+
allowImageCompression: false,
|
|
2146
|
+
allowCoverPhoto: false,
|
|
2147
|
+
allowedCoverPhotoTypes: [],
|
|
2148
|
+
allowCoverPhotoCanva: false,
|
|
2149
|
+
allowCoverPhotoImageCompression: false,
|
|
2150
|
+
validations: [
|
|
2151
|
+
{
|
|
2152
|
+
type: "numberOfAssets",
|
|
2153
|
+
userErrorMessage: "Media ineligible for posting. Your post must contain between 1 and 10 media files. Adjust the number of media files to meet Amazon guidelines.",
|
|
2154
|
+
errorHelpLink: "https://help.planoly.com/knowledge",
|
|
2155
|
+
parameters: {
|
|
2156
|
+
min: 1,
|
|
2157
|
+
max: 10
|
|
2158
|
+
}
|
|
2159
|
+
},
|
|
2160
|
+
{
|
|
2161
|
+
type: "numberOfProducts",
|
|
2162
|
+
userErrorMessage: "You need to tag at least 1 Amazon product before scheduling",
|
|
2163
|
+
errorHelpLink: "https://help.planoly.com/knowledge/how-to-link-and-auto-post-to-amazon-1?hs_preview=PEQGSwMa-164209108006",
|
|
2164
|
+
parameters: {
|
|
2165
|
+
min: 1,
|
|
2166
|
+
max: 5
|
|
2167
|
+
}
|
|
2168
|
+
},
|
|
2169
|
+
{
|
|
2170
|
+
type: "futureDate",
|
|
2171
|
+
userErrorMessage: "Media ineligible for posting. Please choose a date and time at least 5 minutes in the future.",
|
|
2172
|
+
errorHelpLink: "https://help.planoly.com/knowledge",
|
|
2173
|
+
parameters: {
|
|
2174
|
+
value: 5
|
|
2175
|
+
}
|
|
2176
|
+
},
|
|
2177
|
+
{
|
|
2178
|
+
type: "manualPostCaptionLength",
|
|
2179
|
+
userErrorMessage: "Caption ineligible for posting. Your caption must be below 300 characters. Adjust caption length to meet Amazon guidelines.",
|
|
2180
|
+
errorHelpLink: "https://help.planoly.com/knowledge",
|
|
2181
|
+
parameters: {
|
|
2182
|
+
min: 0,
|
|
2183
|
+
max: 300
|
|
2184
|
+
}
|
|
2185
|
+
},
|
|
2186
|
+
{
|
|
2187
|
+
type: "autoPostCaptionLength",
|
|
2188
|
+
userErrorMessage: "Caption ineligible for auto-post. Your caption must be below 300 characters. Adjust caption length to meet Amazon guidelines.",
|
|
2189
|
+
errorHelpLink: "https://help.planoly.com/knowledge",
|
|
2190
|
+
parameters: {
|
|
2191
|
+
min: 0,
|
|
2192
|
+
max: 300
|
|
2193
|
+
}
|
|
2194
|
+
},
|
|
2195
|
+
{
|
|
2196
|
+
type: "autoPostImageSize",
|
|
2197
|
+
userErrorMessage: "Media ineligible for auto-post. Your image size must be less than 100MB. Adjust size & re-upload to meet Amazon guidelines.",
|
|
2198
|
+
errorHelpLink: "https://help.planoly.com/knowledge",
|
|
2199
|
+
parameters: {
|
|
2200
|
+
value: 100
|
|
2201
|
+
}
|
|
2202
|
+
},
|
|
2203
|
+
{
|
|
2204
|
+
type: "autoPostVideoSize",
|
|
2205
|
+
userErrorMessage: "Media ineligible for auto-post. Your video size must be less than or equal to 300MB. Adjust size & re-upload.",
|
|
2206
|
+
errorHelpLink: "https://help.planoly.com/knowledge",
|
|
2207
|
+
parameters: {
|
|
2208
|
+
value: 300
|
|
2209
|
+
}
|
|
2210
|
+
},
|
|
2211
|
+
{
|
|
2212
|
+
type: "allowedMediaTypes",
|
|
2213
|
+
userErrorMessage: "Media ineligible for posting. Images must be uploaded in .jpg, .png format. Adjust your file type and re-upload to meet Amazon guidelines.",
|
|
2214
|
+
errorHelpLink: "https://help.planoly.com/knowledge"
|
|
2215
|
+
},
|
|
2216
|
+
{
|
|
2217
|
+
type: "aspectRatioRange",
|
|
2218
|
+
userErrorMessage: "Media does not meet aspect ratio requirements. Please edit the media to meet one of the following aspect ratios ranges in order to schedule auto-post: images: 1:2~2:1, video: 9:16.",
|
|
2219
|
+
errorHelpLink: "https://help.planoly.com/knowledge",
|
|
2220
|
+
parameters: {
|
|
2221
|
+
imgMin: "1:2",
|
|
2222
|
+
imgMax: "2:1",
|
|
2223
|
+
videoMin: "9:16",
|
|
2224
|
+
videoMax: "9:16"
|
|
2225
|
+
}
|
|
2226
|
+
},
|
|
2227
|
+
{
|
|
2228
|
+
type: "hashtagLimit",
|
|
2229
|
+
userErrorMessage: "Hashtag limit exceeded. Please remove additional hashtags to continue.",
|
|
2230
|
+
parameters: {
|
|
2231
|
+
min: 0,
|
|
2232
|
+
max: 30
|
|
2233
|
+
}
|
|
2234
|
+
},
|
|
2235
|
+
{
|
|
2236
|
+
type: "autoPostVideoLength",
|
|
2237
|
+
userErrorMessage: "Media ineligible for auto-post. Your video duration must be between 6 seconds and 45 seconds. Adjust length & re-upload a new duration to meet Amazon guidelines.",
|
|
2238
|
+
errorHelpLink: "https://help.planoly.com/knowledge",
|
|
2239
|
+
parameters: {
|
|
2240
|
+
min: 6,
|
|
2241
|
+
max: 45
|
|
2242
|
+
}
|
|
2243
|
+
},
|
|
2244
|
+
{
|
|
2245
|
+
type: "autoPostVideoDimensions",
|
|
2246
|
+
userErrorMessage: "Media ineligible for auto-post. Crop your video to be a minimum 960 pixels in height & 540 pixels in width and re-upload a new size to meet Amazon guidelines.",
|
|
2247
|
+
errorHelpLink: "https://help.planoly.com/knowledge",
|
|
2248
|
+
parameters: {
|
|
2249
|
+
width: 540,
|
|
2250
|
+
height: 960
|
|
2251
|
+
}
|
|
2252
|
+
}
|
|
2253
|
+
]
|
|
2254
|
+
}
|
|
2255
|
+
]
|
|
2256
|
+
}
|
|
2257
|
+
]
|
|
2258
|
+
};
|
|
2259
|
+
|
|
2260
|
+
// src/index.ts
|
|
2261
|
+
var postExperienceConfig = postExperienceConfig_default;
|
|
2262
|
+
var index_default = postExperienceConfig;
|
|
2263
|
+
// Annotate the CommonJS export names for ESM import in node:
|
|
2264
|
+
0 && (module.exports = {
|
|
2265
|
+
postExperienceConfig
|
|
2266
|
+
});
|