@onlypult/mcp 0.1.0

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.
@@ -0,0 +1,1145 @@
1
+ import { z } from 'zod';
2
+ /**
3
+ * Per-platform settings passed as platform_options.{key} in POST/PUT /v1/posts.
4
+ * Keys: instagram, facebook, youtube, tiktok, telegram, linkedin, pinterest,
5
+ * twitter, threads, bluesky, wordpress, google_my_business, vkontakte.
6
+ */
7
+ export declare const platformSettingsSchema: z.ZodObject<{
8
+ is_story: z.ZodOptional<z.ZodBoolean>;
9
+ is_reels: z.ZodOptional<z.ZodBoolean>;
10
+ is_shorts: z.ZodOptional<z.ZodBoolean>;
11
+ title: z.ZodOptional<z.ZodString>;
12
+ privacy: z.ZodOptional<z.ZodString>;
13
+ category: z.ZodOptional<z.ZodString>;
14
+ disable_comment: z.ZodOptional<z.ZodBoolean>;
15
+ disable_duet: z.ZodOptional<z.ZodBoolean>;
16
+ disable_stitch: z.ZodOptional<z.ZodBoolean>;
17
+ disable_notification: z.ZodOptional<z.ZodBoolean>;
18
+ pin_message: z.ZodOptional<z.ZodBoolean>;
19
+ visibility: z.ZodOptional<z.ZodEnum<["PUBLIC", "CONNECTIONS"]>>;
20
+ board_id: z.ZodOptional<z.ZodString>;
21
+ link: z.ZodOptional<z.ZodString>;
22
+ alt_text: z.ZodOptional<z.ZodString>;
23
+ }, "strict", z.ZodTypeAny, {
24
+ link?: string | undefined;
25
+ title?: string | undefined;
26
+ is_story?: boolean | undefined;
27
+ is_reels?: boolean | undefined;
28
+ is_shorts?: boolean | undefined;
29
+ privacy?: string | undefined;
30
+ category?: string | undefined;
31
+ disable_comment?: boolean | undefined;
32
+ disable_duet?: boolean | undefined;
33
+ disable_stitch?: boolean | undefined;
34
+ disable_notification?: boolean | undefined;
35
+ pin_message?: boolean | undefined;
36
+ visibility?: "PUBLIC" | "CONNECTIONS" | undefined;
37
+ board_id?: string | undefined;
38
+ alt_text?: string | undefined;
39
+ }, {
40
+ link?: string | undefined;
41
+ title?: string | undefined;
42
+ is_story?: boolean | undefined;
43
+ is_reels?: boolean | undefined;
44
+ is_shorts?: boolean | undefined;
45
+ privacy?: string | undefined;
46
+ category?: string | undefined;
47
+ disable_comment?: boolean | undefined;
48
+ disable_duet?: boolean | undefined;
49
+ disable_stitch?: boolean | undefined;
50
+ disable_notification?: boolean | undefined;
51
+ pin_message?: boolean | undefined;
52
+ visibility?: "PUBLIC" | "CONNECTIONS" | undefined;
53
+ board_id?: string | undefined;
54
+ alt_text?: string | undefined;
55
+ }>;
56
+ export declare const platformOptionsSchema: z.ZodOptional<z.ZodObject<{
57
+ instagram: z.ZodOptional<z.ZodObject<{
58
+ is_story: z.ZodOptional<z.ZodBoolean>;
59
+ is_reels: z.ZodOptional<z.ZodBoolean>;
60
+ is_shorts: z.ZodOptional<z.ZodBoolean>;
61
+ title: z.ZodOptional<z.ZodString>;
62
+ privacy: z.ZodOptional<z.ZodString>;
63
+ category: z.ZodOptional<z.ZodString>;
64
+ disable_comment: z.ZodOptional<z.ZodBoolean>;
65
+ disable_duet: z.ZodOptional<z.ZodBoolean>;
66
+ disable_stitch: z.ZodOptional<z.ZodBoolean>;
67
+ disable_notification: z.ZodOptional<z.ZodBoolean>;
68
+ pin_message: z.ZodOptional<z.ZodBoolean>;
69
+ visibility: z.ZodOptional<z.ZodEnum<["PUBLIC", "CONNECTIONS"]>>;
70
+ board_id: z.ZodOptional<z.ZodString>;
71
+ link: z.ZodOptional<z.ZodString>;
72
+ alt_text: z.ZodOptional<z.ZodString>;
73
+ }, "strict", z.ZodTypeAny, {
74
+ link?: string | undefined;
75
+ title?: string | undefined;
76
+ is_story?: boolean | undefined;
77
+ is_reels?: boolean | undefined;
78
+ is_shorts?: boolean | undefined;
79
+ privacy?: string | undefined;
80
+ category?: string | undefined;
81
+ disable_comment?: boolean | undefined;
82
+ disable_duet?: boolean | undefined;
83
+ disable_stitch?: boolean | undefined;
84
+ disable_notification?: boolean | undefined;
85
+ pin_message?: boolean | undefined;
86
+ visibility?: "PUBLIC" | "CONNECTIONS" | undefined;
87
+ board_id?: string | undefined;
88
+ alt_text?: string | undefined;
89
+ }, {
90
+ link?: string | undefined;
91
+ title?: string | undefined;
92
+ is_story?: boolean | undefined;
93
+ is_reels?: boolean | undefined;
94
+ is_shorts?: boolean | undefined;
95
+ privacy?: string | undefined;
96
+ category?: string | undefined;
97
+ disable_comment?: boolean | undefined;
98
+ disable_duet?: boolean | undefined;
99
+ disable_stitch?: boolean | undefined;
100
+ disable_notification?: boolean | undefined;
101
+ pin_message?: boolean | undefined;
102
+ visibility?: "PUBLIC" | "CONNECTIONS" | undefined;
103
+ board_id?: string | undefined;
104
+ alt_text?: string | undefined;
105
+ }>>;
106
+ facebook: z.ZodOptional<z.ZodObject<{
107
+ is_story: z.ZodOptional<z.ZodBoolean>;
108
+ is_reels: z.ZodOptional<z.ZodBoolean>;
109
+ is_shorts: z.ZodOptional<z.ZodBoolean>;
110
+ title: z.ZodOptional<z.ZodString>;
111
+ privacy: z.ZodOptional<z.ZodString>;
112
+ category: z.ZodOptional<z.ZodString>;
113
+ disable_comment: z.ZodOptional<z.ZodBoolean>;
114
+ disable_duet: z.ZodOptional<z.ZodBoolean>;
115
+ disable_stitch: z.ZodOptional<z.ZodBoolean>;
116
+ disable_notification: z.ZodOptional<z.ZodBoolean>;
117
+ pin_message: z.ZodOptional<z.ZodBoolean>;
118
+ visibility: z.ZodOptional<z.ZodEnum<["PUBLIC", "CONNECTIONS"]>>;
119
+ board_id: z.ZodOptional<z.ZodString>;
120
+ link: z.ZodOptional<z.ZodString>;
121
+ alt_text: z.ZodOptional<z.ZodString>;
122
+ }, "strict", z.ZodTypeAny, {
123
+ link?: string | undefined;
124
+ title?: string | undefined;
125
+ is_story?: boolean | undefined;
126
+ is_reels?: boolean | undefined;
127
+ is_shorts?: boolean | undefined;
128
+ privacy?: string | undefined;
129
+ category?: string | undefined;
130
+ disable_comment?: boolean | undefined;
131
+ disable_duet?: boolean | undefined;
132
+ disable_stitch?: boolean | undefined;
133
+ disable_notification?: boolean | undefined;
134
+ pin_message?: boolean | undefined;
135
+ visibility?: "PUBLIC" | "CONNECTIONS" | undefined;
136
+ board_id?: string | undefined;
137
+ alt_text?: string | undefined;
138
+ }, {
139
+ link?: string | undefined;
140
+ title?: string | undefined;
141
+ is_story?: boolean | undefined;
142
+ is_reels?: boolean | undefined;
143
+ is_shorts?: boolean | undefined;
144
+ privacy?: string | undefined;
145
+ category?: string | undefined;
146
+ disable_comment?: boolean | undefined;
147
+ disable_duet?: boolean | undefined;
148
+ disable_stitch?: boolean | undefined;
149
+ disable_notification?: boolean | undefined;
150
+ pin_message?: boolean | undefined;
151
+ visibility?: "PUBLIC" | "CONNECTIONS" | undefined;
152
+ board_id?: string | undefined;
153
+ alt_text?: string | undefined;
154
+ }>>;
155
+ youtube: z.ZodOptional<z.ZodObject<{
156
+ is_story: z.ZodOptional<z.ZodBoolean>;
157
+ is_reels: z.ZodOptional<z.ZodBoolean>;
158
+ is_shorts: z.ZodOptional<z.ZodBoolean>;
159
+ title: z.ZodOptional<z.ZodString>;
160
+ privacy: z.ZodOptional<z.ZodString>;
161
+ category: z.ZodOptional<z.ZodString>;
162
+ disable_comment: z.ZodOptional<z.ZodBoolean>;
163
+ disable_duet: z.ZodOptional<z.ZodBoolean>;
164
+ disable_stitch: z.ZodOptional<z.ZodBoolean>;
165
+ disable_notification: z.ZodOptional<z.ZodBoolean>;
166
+ pin_message: z.ZodOptional<z.ZodBoolean>;
167
+ visibility: z.ZodOptional<z.ZodEnum<["PUBLIC", "CONNECTIONS"]>>;
168
+ board_id: z.ZodOptional<z.ZodString>;
169
+ link: z.ZodOptional<z.ZodString>;
170
+ alt_text: z.ZodOptional<z.ZodString>;
171
+ }, "strict", z.ZodTypeAny, {
172
+ link?: string | undefined;
173
+ title?: string | undefined;
174
+ is_story?: boolean | undefined;
175
+ is_reels?: boolean | undefined;
176
+ is_shorts?: boolean | undefined;
177
+ privacy?: string | undefined;
178
+ category?: string | undefined;
179
+ disable_comment?: boolean | undefined;
180
+ disable_duet?: boolean | undefined;
181
+ disable_stitch?: boolean | undefined;
182
+ disable_notification?: boolean | undefined;
183
+ pin_message?: boolean | undefined;
184
+ visibility?: "PUBLIC" | "CONNECTIONS" | undefined;
185
+ board_id?: string | undefined;
186
+ alt_text?: string | undefined;
187
+ }, {
188
+ link?: string | undefined;
189
+ title?: string | undefined;
190
+ is_story?: boolean | undefined;
191
+ is_reels?: boolean | undefined;
192
+ is_shorts?: boolean | undefined;
193
+ privacy?: string | undefined;
194
+ category?: string | undefined;
195
+ disable_comment?: boolean | undefined;
196
+ disable_duet?: boolean | undefined;
197
+ disable_stitch?: boolean | undefined;
198
+ disable_notification?: boolean | undefined;
199
+ pin_message?: boolean | undefined;
200
+ visibility?: "PUBLIC" | "CONNECTIONS" | undefined;
201
+ board_id?: string | undefined;
202
+ alt_text?: string | undefined;
203
+ }>>;
204
+ tiktok: z.ZodOptional<z.ZodObject<{
205
+ is_story: z.ZodOptional<z.ZodBoolean>;
206
+ is_reels: z.ZodOptional<z.ZodBoolean>;
207
+ is_shorts: z.ZodOptional<z.ZodBoolean>;
208
+ title: z.ZodOptional<z.ZodString>;
209
+ privacy: z.ZodOptional<z.ZodString>;
210
+ category: z.ZodOptional<z.ZodString>;
211
+ disable_comment: z.ZodOptional<z.ZodBoolean>;
212
+ disable_duet: z.ZodOptional<z.ZodBoolean>;
213
+ disable_stitch: z.ZodOptional<z.ZodBoolean>;
214
+ disable_notification: z.ZodOptional<z.ZodBoolean>;
215
+ pin_message: z.ZodOptional<z.ZodBoolean>;
216
+ visibility: z.ZodOptional<z.ZodEnum<["PUBLIC", "CONNECTIONS"]>>;
217
+ board_id: z.ZodOptional<z.ZodString>;
218
+ link: z.ZodOptional<z.ZodString>;
219
+ alt_text: z.ZodOptional<z.ZodString>;
220
+ }, "strict", z.ZodTypeAny, {
221
+ link?: string | undefined;
222
+ title?: string | undefined;
223
+ is_story?: boolean | undefined;
224
+ is_reels?: boolean | undefined;
225
+ is_shorts?: boolean | undefined;
226
+ privacy?: string | undefined;
227
+ category?: string | undefined;
228
+ disable_comment?: boolean | undefined;
229
+ disable_duet?: boolean | undefined;
230
+ disable_stitch?: boolean | undefined;
231
+ disable_notification?: boolean | undefined;
232
+ pin_message?: boolean | undefined;
233
+ visibility?: "PUBLIC" | "CONNECTIONS" | undefined;
234
+ board_id?: string | undefined;
235
+ alt_text?: string | undefined;
236
+ }, {
237
+ link?: string | undefined;
238
+ title?: string | undefined;
239
+ is_story?: boolean | undefined;
240
+ is_reels?: boolean | undefined;
241
+ is_shorts?: boolean | undefined;
242
+ privacy?: string | undefined;
243
+ category?: string | undefined;
244
+ disable_comment?: boolean | undefined;
245
+ disable_duet?: boolean | undefined;
246
+ disable_stitch?: boolean | undefined;
247
+ disable_notification?: boolean | undefined;
248
+ pin_message?: boolean | undefined;
249
+ visibility?: "PUBLIC" | "CONNECTIONS" | undefined;
250
+ board_id?: string | undefined;
251
+ alt_text?: string | undefined;
252
+ }>>;
253
+ telegram: z.ZodOptional<z.ZodObject<{
254
+ is_story: z.ZodOptional<z.ZodBoolean>;
255
+ is_reels: z.ZodOptional<z.ZodBoolean>;
256
+ is_shorts: z.ZodOptional<z.ZodBoolean>;
257
+ title: z.ZodOptional<z.ZodString>;
258
+ privacy: z.ZodOptional<z.ZodString>;
259
+ category: z.ZodOptional<z.ZodString>;
260
+ disable_comment: z.ZodOptional<z.ZodBoolean>;
261
+ disable_duet: z.ZodOptional<z.ZodBoolean>;
262
+ disable_stitch: z.ZodOptional<z.ZodBoolean>;
263
+ disable_notification: z.ZodOptional<z.ZodBoolean>;
264
+ pin_message: z.ZodOptional<z.ZodBoolean>;
265
+ visibility: z.ZodOptional<z.ZodEnum<["PUBLIC", "CONNECTIONS"]>>;
266
+ board_id: z.ZodOptional<z.ZodString>;
267
+ link: z.ZodOptional<z.ZodString>;
268
+ alt_text: z.ZodOptional<z.ZodString>;
269
+ }, "strict", z.ZodTypeAny, {
270
+ link?: string | undefined;
271
+ title?: string | undefined;
272
+ is_story?: boolean | undefined;
273
+ is_reels?: boolean | undefined;
274
+ is_shorts?: boolean | undefined;
275
+ privacy?: string | undefined;
276
+ category?: string | undefined;
277
+ disable_comment?: boolean | undefined;
278
+ disable_duet?: boolean | undefined;
279
+ disable_stitch?: boolean | undefined;
280
+ disable_notification?: boolean | undefined;
281
+ pin_message?: boolean | undefined;
282
+ visibility?: "PUBLIC" | "CONNECTIONS" | undefined;
283
+ board_id?: string | undefined;
284
+ alt_text?: string | undefined;
285
+ }, {
286
+ link?: string | undefined;
287
+ title?: string | undefined;
288
+ is_story?: boolean | undefined;
289
+ is_reels?: boolean | undefined;
290
+ is_shorts?: boolean | undefined;
291
+ privacy?: string | undefined;
292
+ category?: string | undefined;
293
+ disable_comment?: boolean | undefined;
294
+ disable_duet?: boolean | undefined;
295
+ disable_stitch?: boolean | undefined;
296
+ disable_notification?: boolean | undefined;
297
+ pin_message?: boolean | undefined;
298
+ visibility?: "PUBLIC" | "CONNECTIONS" | undefined;
299
+ board_id?: string | undefined;
300
+ alt_text?: string | undefined;
301
+ }>>;
302
+ linkedin: z.ZodOptional<z.ZodObject<{
303
+ is_story: z.ZodOptional<z.ZodBoolean>;
304
+ is_reels: z.ZodOptional<z.ZodBoolean>;
305
+ is_shorts: z.ZodOptional<z.ZodBoolean>;
306
+ title: z.ZodOptional<z.ZodString>;
307
+ privacy: z.ZodOptional<z.ZodString>;
308
+ category: z.ZodOptional<z.ZodString>;
309
+ disable_comment: z.ZodOptional<z.ZodBoolean>;
310
+ disable_duet: z.ZodOptional<z.ZodBoolean>;
311
+ disable_stitch: z.ZodOptional<z.ZodBoolean>;
312
+ disable_notification: z.ZodOptional<z.ZodBoolean>;
313
+ pin_message: z.ZodOptional<z.ZodBoolean>;
314
+ visibility: z.ZodOptional<z.ZodEnum<["PUBLIC", "CONNECTIONS"]>>;
315
+ board_id: z.ZodOptional<z.ZodString>;
316
+ link: z.ZodOptional<z.ZodString>;
317
+ alt_text: z.ZodOptional<z.ZodString>;
318
+ }, "strict", z.ZodTypeAny, {
319
+ link?: string | undefined;
320
+ title?: string | undefined;
321
+ is_story?: boolean | undefined;
322
+ is_reels?: boolean | undefined;
323
+ is_shorts?: boolean | undefined;
324
+ privacy?: string | undefined;
325
+ category?: string | undefined;
326
+ disable_comment?: boolean | undefined;
327
+ disable_duet?: boolean | undefined;
328
+ disable_stitch?: boolean | undefined;
329
+ disable_notification?: boolean | undefined;
330
+ pin_message?: boolean | undefined;
331
+ visibility?: "PUBLIC" | "CONNECTIONS" | undefined;
332
+ board_id?: string | undefined;
333
+ alt_text?: string | undefined;
334
+ }, {
335
+ link?: string | undefined;
336
+ title?: string | undefined;
337
+ is_story?: boolean | undefined;
338
+ is_reels?: boolean | undefined;
339
+ is_shorts?: boolean | undefined;
340
+ privacy?: string | undefined;
341
+ category?: string | undefined;
342
+ disable_comment?: boolean | undefined;
343
+ disable_duet?: boolean | undefined;
344
+ disable_stitch?: boolean | undefined;
345
+ disable_notification?: boolean | undefined;
346
+ pin_message?: boolean | undefined;
347
+ visibility?: "PUBLIC" | "CONNECTIONS" | undefined;
348
+ board_id?: string | undefined;
349
+ alt_text?: string | undefined;
350
+ }>>;
351
+ pinterest: z.ZodOptional<z.ZodObject<{
352
+ is_story: z.ZodOptional<z.ZodBoolean>;
353
+ is_reels: z.ZodOptional<z.ZodBoolean>;
354
+ is_shorts: z.ZodOptional<z.ZodBoolean>;
355
+ title: z.ZodOptional<z.ZodString>;
356
+ privacy: z.ZodOptional<z.ZodString>;
357
+ category: z.ZodOptional<z.ZodString>;
358
+ disable_comment: z.ZodOptional<z.ZodBoolean>;
359
+ disable_duet: z.ZodOptional<z.ZodBoolean>;
360
+ disable_stitch: z.ZodOptional<z.ZodBoolean>;
361
+ disable_notification: z.ZodOptional<z.ZodBoolean>;
362
+ pin_message: z.ZodOptional<z.ZodBoolean>;
363
+ visibility: z.ZodOptional<z.ZodEnum<["PUBLIC", "CONNECTIONS"]>>;
364
+ board_id: z.ZodOptional<z.ZodString>;
365
+ link: z.ZodOptional<z.ZodString>;
366
+ alt_text: z.ZodOptional<z.ZodString>;
367
+ }, "strict", z.ZodTypeAny, {
368
+ link?: string | undefined;
369
+ title?: string | undefined;
370
+ is_story?: boolean | undefined;
371
+ is_reels?: boolean | undefined;
372
+ is_shorts?: boolean | undefined;
373
+ privacy?: string | undefined;
374
+ category?: string | undefined;
375
+ disable_comment?: boolean | undefined;
376
+ disable_duet?: boolean | undefined;
377
+ disable_stitch?: boolean | undefined;
378
+ disable_notification?: boolean | undefined;
379
+ pin_message?: boolean | undefined;
380
+ visibility?: "PUBLIC" | "CONNECTIONS" | undefined;
381
+ board_id?: string | undefined;
382
+ alt_text?: string | undefined;
383
+ }, {
384
+ link?: string | undefined;
385
+ title?: string | undefined;
386
+ is_story?: boolean | undefined;
387
+ is_reels?: boolean | undefined;
388
+ is_shorts?: boolean | undefined;
389
+ privacy?: string | undefined;
390
+ category?: string | undefined;
391
+ disable_comment?: boolean | undefined;
392
+ disable_duet?: boolean | undefined;
393
+ disable_stitch?: boolean | undefined;
394
+ disable_notification?: boolean | undefined;
395
+ pin_message?: boolean | undefined;
396
+ visibility?: "PUBLIC" | "CONNECTIONS" | undefined;
397
+ board_id?: string | undefined;
398
+ alt_text?: string | undefined;
399
+ }>>;
400
+ twitter: z.ZodOptional<z.ZodObject<{
401
+ is_story: z.ZodOptional<z.ZodBoolean>;
402
+ is_reels: z.ZodOptional<z.ZodBoolean>;
403
+ is_shorts: z.ZodOptional<z.ZodBoolean>;
404
+ title: z.ZodOptional<z.ZodString>;
405
+ privacy: z.ZodOptional<z.ZodString>;
406
+ category: z.ZodOptional<z.ZodString>;
407
+ disable_comment: z.ZodOptional<z.ZodBoolean>;
408
+ disable_duet: z.ZodOptional<z.ZodBoolean>;
409
+ disable_stitch: z.ZodOptional<z.ZodBoolean>;
410
+ disable_notification: z.ZodOptional<z.ZodBoolean>;
411
+ pin_message: z.ZodOptional<z.ZodBoolean>;
412
+ visibility: z.ZodOptional<z.ZodEnum<["PUBLIC", "CONNECTIONS"]>>;
413
+ board_id: z.ZodOptional<z.ZodString>;
414
+ link: z.ZodOptional<z.ZodString>;
415
+ alt_text: z.ZodOptional<z.ZodString>;
416
+ }, "strict", z.ZodTypeAny, {
417
+ link?: string | undefined;
418
+ title?: string | undefined;
419
+ is_story?: boolean | undefined;
420
+ is_reels?: boolean | undefined;
421
+ is_shorts?: boolean | undefined;
422
+ privacy?: string | undefined;
423
+ category?: string | undefined;
424
+ disable_comment?: boolean | undefined;
425
+ disable_duet?: boolean | undefined;
426
+ disable_stitch?: boolean | undefined;
427
+ disable_notification?: boolean | undefined;
428
+ pin_message?: boolean | undefined;
429
+ visibility?: "PUBLIC" | "CONNECTIONS" | undefined;
430
+ board_id?: string | undefined;
431
+ alt_text?: string | undefined;
432
+ }, {
433
+ link?: string | undefined;
434
+ title?: string | undefined;
435
+ is_story?: boolean | undefined;
436
+ is_reels?: boolean | undefined;
437
+ is_shorts?: boolean | undefined;
438
+ privacy?: string | undefined;
439
+ category?: string | undefined;
440
+ disable_comment?: boolean | undefined;
441
+ disable_duet?: boolean | undefined;
442
+ disable_stitch?: boolean | undefined;
443
+ disable_notification?: boolean | undefined;
444
+ pin_message?: boolean | undefined;
445
+ visibility?: "PUBLIC" | "CONNECTIONS" | undefined;
446
+ board_id?: string | undefined;
447
+ alt_text?: string | undefined;
448
+ }>>;
449
+ threads: z.ZodOptional<z.ZodObject<{
450
+ is_story: z.ZodOptional<z.ZodBoolean>;
451
+ is_reels: z.ZodOptional<z.ZodBoolean>;
452
+ is_shorts: z.ZodOptional<z.ZodBoolean>;
453
+ title: z.ZodOptional<z.ZodString>;
454
+ privacy: z.ZodOptional<z.ZodString>;
455
+ category: z.ZodOptional<z.ZodString>;
456
+ disable_comment: z.ZodOptional<z.ZodBoolean>;
457
+ disable_duet: z.ZodOptional<z.ZodBoolean>;
458
+ disable_stitch: z.ZodOptional<z.ZodBoolean>;
459
+ disable_notification: z.ZodOptional<z.ZodBoolean>;
460
+ pin_message: z.ZodOptional<z.ZodBoolean>;
461
+ visibility: z.ZodOptional<z.ZodEnum<["PUBLIC", "CONNECTIONS"]>>;
462
+ board_id: z.ZodOptional<z.ZodString>;
463
+ link: z.ZodOptional<z.ZodString>;
464
+ alt_text: z.ZodOptional<z.ZodString>;
465
+ }, "strict", z.ZodTypeAny, {
466
+ link?: string | undefined;
467
+ title?: string | undefined;
468
+ is_story?: boolean | undefined;
469
+ is_reels?: boolean | undefined;
470
+ is_shorts?: boolean | undefined;
471
+ privacy?: string | undefined;
472
+ category?: string | undefined;
473
+ disable_comment?: boolean | undefined;
474
+ disable_duet?: boolean | undefined;
475
+ disable_stitch?: boolean | undefined;
476
+ disable_notification?: boolean | undefined;
477
+ pin_message?: boolean | undefined;
478
+ visibility?: "PUBLIC" | "CONNECTIONS" | undefined;
479
+ board_id?: string | undefined;
480
+ alt_text?: string | undefined;
481
+ }, {
482
+ link?: string | undefined;
483
+ title?: string | undefined;
484
+ is_story?: boolean | undefined;
485
+ is_reels?: boolean | undefined;
486
+ is_shorts?: boolean | undefined;
487
+ privacy?: string | undefined;
488
+ category?: string | undefined;
489
+ disable_comment?: boolean | undefined;
490
+ disable_duet?: boolean | undefined;
491
+ disable_stitch?: boolean | undefined;
492
+ disable_notification?: boolean | undefined;
493
+ pin_message?: boolean | undefined;
494
+ visibility?: "PUBLIC" | "CONNECTIONS" | undefined;
495
+ board_id?: string | undefined;
496
+ alt_text?: string | undefined;
497
+ }>>;
498
+ bluesky: z.ZodOptional<z.ZodObject<{
499
+ is_story: z.ZodOptional<z.ZodBoolean>;
500
+ is_reels: z.ZodOptional<z.ZodBoolean>;
501
+ is_shorts: z.ZodOptional<z.ZodBoolean>;
502
+ title: z.ZodOptional<z.ZodString>;
503
+ privacy: z.ZodOptional<z.ZodString>;
504
+ category: z.ZodOptional<z.ZodString>;
505
+ disable_comment: z.ZodOptional<z.ZodBoolean>;
506
+ disable_duet: z.ZodOptional<z.ZodBoolean>;
507
+ disable_stitch: z.ZodOptional<z.ZodBoolean>;
508
+ disable_notification: z.ZodOptional<z.ZodBoolean>;
509
+ pin_message: z.ZodOptional<z.ZodBoolean>;
510
+ visibility: z.ZodOptional<z.ZodEnum<["PUBLIC", "CONNECTIONS"]>>;
511
+ board_id: z.ZodOptional<z.ZodString>;
512
+ link: z.ZodOptional<z.ZodString>;
513
+ alt_text: z.ZodOptional<z.ZodString>;
514
+ }, "strict", z.ZodTypeAny, {
515
+ link?: string | undefined;
516
+ title?: string | undefined;
517
+ is_story?: boolean | undefined;
518
+ is_reels?: boolean | undefined;
519
+ is_shorts?: boolean | undefined;
520
+ privacy?: string | undefined;
521
+ category?: string | undefined;
522
+ disable_comment?: boolean | undefined;
523
+ disable_duet?: boolean | undefined;
524
+ disable_stitch?: boolean | undefined;
525
+ disable_notification?: boolean | undefined;
526
+ pin_message?: boolean | undefined;
527
+ visibility?: "PUBLIC" | "CONNECTIONS" | undefined;
528
+ board_id?: string | undefined;
529
+ alt_text?: string | undefined;
530
+ }, {
531
+ link?: string | undefined;
532
+ title?: string | undefined;
533
+ is_story?: boolean | undefined;
534
+ is_reels?: boolean | undefined;
535
+ is_shorts?: boolean | undefined;
536
+ privacy?: string | undefined;
537
+ category?: string | undefined;
538
+ disable_comment?: boolean | undefined;
539
+ disable_duet?: boolean | undefined;
540
+ disable_stitch?: boolean | undefined;
541
+ disable_notification?: boolean | undefined;
542
+ pin_message?: boolean | undefined;
543
+ visibility?: "PUBLIC" | "CONNECTIONS" | undefined;
544
+ board_id?: string | undefined;
545
+ alt_text?: string | undefined;
546
+ }>>;
547
+ wordpress: z.ZodOptional<z.ZodObject<{
548
+ is_story: z.ZodOptional<z.ZodBoolean>;
549
+ is_reels: z.ZodOptional<z.ZodBoolean>;
550
+ is_shorts: z.ZodOptional<z.ZodBoolean>;
551
+ title: z.ZodOptional<z.ZodString>;
552
+ privacy: z.ZodOptional<z.ZodString>;
553
+ category: z.ZodOptional<z.ZodString>;
554
+ disable_comment: z.ZodOptional<z.ZodBoolean>;
555
+ disable_duet: z.ZodOptional<z.ZodBoolean>;
556
+ disable_stitch: z.ZodOptional<z.ZodBoolean>;
557
+ disable_notification: z.ZodOptional<z.ZodBoolean>;
558
+ pin_message: z.ZodOptional<z.ZodBoolean>;
559
+ visibility: z.ZodOptional<z.ZodEnum<["PUBLIC", "CONNECTIONS"]>>;
560
+ board_id: z.ZodOptional<z.ZodString>;
561
+ link: z.ZodOptional<z.ZodString>;
562
+ alt_text: z.ZodOptional<z.ZodString>;
563
+ }, "strict", z.ZodTypeAny, {
564
+ link?: string | undefined;
565
+ title?: string | undefined;
566
+ is_story?: boolean | undefined;
567
+ is_reels?: boolean | undefined;
568
+ is_shorts?: boolean | undefined;
569
+ privacy?: string | undefined;
570
+ category?: string | undefined;
571
+ disable_comment?: boolean | undefined;
572
+ disable_duet?: boolean | undefined;
573
+ disable_stitch?: boolean | undefined;
574
+ disable_notification?: boolean | undefined;
575
+ pin_message?: boolean | undefined;
576
+ visibility?: "PUBLIC" | "CONNECTIONS" | undefined;
577
+ board_id?: string | undefined;
578
+ alt_text?: string | undefined;
579
+ }, {
580
+ link?: string | undefined;
581
+ title?: string | undefined;
582
+ is_story?: boolean | undefined;
583
+ is_reels?: boolean | undefined;
584
+ is_shorts?: boolean | undefined;
585
+ privacy?: string | undefined;
586
+ category?: string | undefined;
587
+ disable_comment?: boolean | undefined;
588
+ disable_duet?: boolean | undefined;
589
+ disable_stitch?: boolean | undefined;
590
+ disable_notification?: boolean | undefined;
591
+ pin_message?: boolean | undefined;
592
+ visibility?: "PUBLIC" | "CONNECTIONS" | undefined;
593
+ board_id?: string | undefined;
594
+ alt_text?: string | undefined;
595
+ }>>;
596
+ google_my_business: z.ZodOptional<z.ZodObject<{
597
+ is_story: z.ZodOptional<z.ZodBoolean>;
598
+ is_reels: z.ZodOptional<z.ZodBoolean>;
599
+ is_shorts: z.ZodOptional<z.ZodBoolean>;
600
+ title: z.ZodOptional<z.ZodString>;
601
+ privacy: z.ZodOptional<z.ZodString>;
602
+ category: z.ZodOptional<z.ZodString>;
603
+ disable_comment: z.ZodOptional<z.ZodBoolean>;
604
+ disable_duet: z.ZodOptional<z.ZodBoolean>;
605
+ disable_stitch: z.ZodOptional<z.ZodBoolean>;
606
+ disable_notification: z.ZodOptional<z.ZodBoolean>;
607
+ pin_message: z.ZodOptional<z.ZodBoolean>;
608
+ visibility: z.ZodOptional<z.ZodEnum<["PUBLIC", "CONNECTIONS"]>>;
609
+ board_id: z.ZodOptional<z.ZodString>;
610
+ link: z.ZodOptional<z.ZodString>;
611
+ alt_text: z.ZodOptional<z.ZodString>;
612
+ }, "strict", z.ZodTypeAny, {
613
+ link?: string | undefined;
614
+ title?: string | undefined;
615
+ is_story?: boolean | undefined;
616
+ is_reels?: boolean | undefined;
617
+ is_shorts?: boolean | undefined;
618
+ privacy?: string | undefined;
619
+ category?: string | undefined;
620
+ disable_comment?: boolean | undefined;
621
+ disable_duet?: boolean | undefined;
622
+ disable_stitch?: boolean | undefined;
623
+ disable_notification?: boolean | undefined;
624
+ pin_message?: boolean | undefined;
625
+ visibility?: "PUBLIC" | "CONNECTIONS" | undefined;
626
+ board_id?: string | undefined;
627
+ alt_text?: string | undefined;
628
+ }, {
629
+ link?: string | undefined;
630
+ title?: string | undefined;
631
+ is_story?: boolean | undefined;
632
+ is_reels?: boolean | undefined;
633
+ is_shorts?: boolean | undefined;
634
+ privacy?: string | undefined;
635
+ category?: string | undefined;
636
+ disable_comment?: boolean | undefined;
637
+ disable_duet?: boolean | undefined;
638
+ disable_stitch?: boolean | undefined;
639
+ disable_notification?: boolean | undefined;
640
+ pin_message?: boolean | undefined;
641
+ visibility?: "PUBLIC" | "CONNECTIONS" | undefined;
642
+ board_id?: string | undefined;
643
+ alt_text?: string | undefined;
644
+ }>>;
645
+ vkontakte: z.ZodOptional<z.ZodObject<{
646
+ is_story: z.ZodOptional<z.ZodBoolean>;
647
+ is_reels: z.ZodOptional<z.ZodBoolean>;
648
+ is_shorts: z.ZodOptional<z.ZodBoolean>;
649
+ title: z.ZodOptional<z.ZodString>;
650
+ privacy: z.ZodOptional<z.ZodString>;
651
+ category: z.ZodOptional<z.ZodString>;
652
+ disable_comment: z.ZodOptional<z.ZodBoolean>;
653
+ disable_duet: z.ZodOptional<z.ZodBoolean>;
654
+ disable_stitch: z.ZodOptional<z.ZodBoolean>;
655
+ disable_notification: z.ZodOptional<z.ZodBoolean>;
656
+ pin_message: z.ZodOptional<z.ZodBoolean>;
657
+ visibility: z.ZodOptional<z.ZodEnum<["PUBLIC", "CONNECTIONS"]>>;
658
+ board_id: z.ZodOptional<z.ZodString>;
659
+ link: z.ZodOptional<z.ZodString>;
660
+ alt_text: z.ZodOptional<z.ZodString>;
661
+ }, "strict", z.ZodTypeAny, {
662
+ link?: string | undefined;
663
+ title?: string | undefined;
664
+ is_story?: boolean | undefined;
665
+ is_reels?: boolean | undefined;
666
+ is_shorts?: boolean | undefined;
667
+ privacy?: string | undefined;
668
+ category?: string | undefined;
669
+ disable_comment?: boolean | undefined;
670
+ disable_duet?: boolean | undefined;
671
+ disable_stitch?: boolean | undefined;
672
+ disable_notification?: boolean | undefined;
673
+ pin_message?: boolean | undefined;
674
+ visibility?: "PUBLIC" | "CONNECTIONS" | undefined;
675
+ board_id?: string | undefined;
676
+ alt_text?: string | undefined;
677
+ }, {
678
+ link?: string | undefined;
679
+ title?: string | undefined;
680
+ is_story?: boolean | undefined;
681
+ is_reels?: boolean | undefined;
682
+ is_shorts?: boolean | undefined;
683
+ privacy?: string | undefined;
684
+ category?: string | undefined;
685
+ disable_comment?: boolean | undefined;
686
+ disable_duet?: boolean | undefined;
687
+ disable_stitch?: boolean | undefined;
688
+ disable_notification?: boolean | undefined;
689
+ pin_message?: boolean | undefined;
690
+ visibility?: "PUBLIC" | "CONNECTIONS" | undefined;
691
+ board_id?: string | undefined;
692
+ alt_text?: string | undefined;
693
+ }>>;
694
+ }, "strict", z.ZodTypeAny, {
695
+ instagram?: {
696
+ link?: string | undefined;
697
+ title?: string | undefined;
698
+ is_story?: boolean | undefined;
699
+ is_reels?: boolean | undefined;
700
+ is_shorts?: boolean | undefined;
701
+ privacy?: string | undefined;
702
+ category?: string | undefined;
703
+ disable_comment?: boolean | undefined;
704
+ disable_duet?: boolean | undefined;
705
+ disable_stitch?: boolean | undefined;
706
+ disable_notification?: boolean | undefined;
707
+ pin_message?: boolean | undefined;
708
+ visibility?: "PUBLIC" | "CONNECTIONS" | undefined;
709
+ board_id?: string | undefined;
710
+ alt_text?: string | undefined;
711
+ } | undefined;
712
+ facebook?: {
713
+ link?: string | undefined;
714
+ title?: string | undefined;
715
+ is_story?: boolean | undefined;
716
+ is_reels?: boolean | undefined;
717
+ is_shorts?: boolean | undefined;
718
+ privacy?: string | undefined;
719
+ category?: string | undefined;
720
+ disable_comment?: boolean | undefined;
721
+ disable_duet?: boolean | undefined;
722
+ disable_stitch?: boolean | undefined;
723
+ disable_notification?: boolean | undefined;
724
+ pin_message?: boolean | undefined;
725
+ visibility?: "PUBLIC" | "CONNECTIONS" | undefined;
726
+ board_id?: string | undefined;
727
+ alt_text?: string | undefined;
728
+ } | undefined;
729
+ youtube?: {
730
+ link?: string | undefined;
731
+ title?: string | undefined;
732
+ is_story?: boolean | undefined;
733
+ is_reels?: boolean | undefined;
734
+ is_shorts?: boolean | undefined;
735
+ privacy?: string | undefined;
736
+ category?: string | undefined;
737
+ disable_comment?: boolean | undefined;
738
+ disable_duet?: boolean | undefined;
739
+ disable_stitch?: boolean | undefined;
740
+ disable_notification?: boolean | undefined;
741
+ pin_message?: boolean | undefined;
742
+ visibility?: "PUBLIC" | "CONNECTIONS" | undefined;
743
+ board_id?: string | undefined;
744
+ alt_text?: string | undefined;
745
+ } | undefined;
746
+ tiktok?: {
747
+ link?: string | undefined;
748
+ title?: string | undefined;
749
+ is_story?: boolean | undefined;
750
+ is_reels?: boolean | undefined;
751
+ is_shorts?: boolean | undefined;
752
+ privacy?: string | undefined;
753
+ category?: string | undefined;
754
+ disable_comment?: boolean | undefined;
755
+ disable_duet?: boolean | undefined;
756
+ disable_stitch?: boolean | undefined;
757
+ disable_notification?: boolean | undefined;
758
+ pin_message?: boolean | undefined;
759
+ visibility?: "PUBLIC" | "CONNECTIONS" | undefined;
760
+ board_id?: string | undefined;
761
+ alt_text?: string | undefined;
762
+ } | undefined;
763
+ telegram?: {
764
+ link?: string | undefined;
765
+ title?: string | undefined;
766
+ is_story?: boolean | undefined;
767
+ is_reels?: boolean | undefined;
768
+ is_shorts?: boolean | undefined;
769
+ privacy?: string | undefined;
770
+ category?: string | undefined;
771
+ disable_comment?: boolean | undefined;
772
+ disable_duet?: boolean | undefined;
773
+ disable_stitch?: boolean | undefined;
774
+ disable_notification?: boolean | undefined;
775
+ pin_message?: boolean | undefined;
776
+ visibility?: "PUBLIC" | "CONNECTIONS" | undefined;
777
+ board_id?: string | undefined;
778
+ alt_text?: string | undefined;
779
+ } | undefined;
780
+ linkedin?: {
781
+ link?: string | undefined;
782
+ title?: string | undefined;
783
+ is_story?: boolean | undefined;
784
+ is_reels?: boolean | undefined;
785
+ is_shorts?: boolean | undefined;
786
+ privacy?: string | undefined;
787
+ category?: string | undefined;
788
+ disable_comment?: boolean | undefined;
789
+ disable_duet?: boolean | undefined;
790
+ disable_stitch?: boolean | undefined;
791
+ disable_notification?: boolean | undefined;
792
+ pin_message?: boolean | undefined;
793
+ visibility?: "PUBLIC" | "CONNECTIONS" | undefined;
794
+ board_id?: string | undefined;
795
+ alt_text?: string | undefined;
796
+ } | undefined;
797
+ pinterest?: {
798
+ link?: string | undefined;
799
+ title?: string | undefined;
800
+ is_story?: boolean | undefined;
801
+ is_reels?: boolean | undefined;
802
+ is_shorts?: boolean | undefined;
803
+ privacy?: string | undefined;
804
+ category?: string | undefined;
805
+ disable_comment?: boolean | undefined;
806
+ disable_duet?: boolean | undefined;
807
+ disable_stitch?: boolean | undefined;
808
+ disable_notification?: boolean | undefined;
809
+ pin_message?: boolean | undefined;
810
+ visibility?: "PUBLIC" | "CONNECTIONS" | undefined;
811
+ board_id?: string | undefined;
812
+ alt_text?: string | undefined;
813
+ } | undefined;
814
+ twitter?: {
815
+ link?: string | undefined;
816
+ title?: string | undefined;
817
+ is_story?: boolean | undefined;
818
+ is_reels?: boolean | undefined;
819
+ is_shorts?: boolean | undefined;
820
+ privacy?: string | undefined;
821
+ category?: string | undefined;
822
+ disable_comment?: boolean | undefined;
823
+ disable_duet?: boolean | undefined;
824
+ disable_stitch?: boolean | undefined;
825
+ disable_notification?: boolean | undefined;
826
+ pin_message?: boolean | undefined;
827
+ visibility?: "PUBLIC" | "CONNECTIONS" | undefined;
828
+ board_id?: string | undefined;
829
+ alt_text?: string | undefined;
830
+ } | undefined;
831
+ threads?: {
832
+ link?: string | undefined;
833
+ title?: string | undefined;
834
+ is_story?: boolean | undefined;
835
+ is_reels?: boolean | undefined;
836
+ is_shorts?: boolean | undefined;
837
+ privacy?: string | undefined;
838
+ category?: string | undefined;
839
+ disable_comment?: boolean | undefined;
840
+ disable_duet?: boolean | undefined;
841
+ disable_stitch?: boolean | undefined;
842
+ disable_notification?: boolean | undefined;
843
+ pin_message?: boolean | undefined;
844
+ visibility?: "PUBLIC" | "CONNECTIONS" | undefined;
845
+ board_id?: string | undefined;
846
+ alt_text?: string | undefined;
847
+ } | undefined;
848
+ bluesky?: {
849
+ link?: string | undefined;
850
+ title?: string | undefined;
851
+ is_story?: boolean | undefined;
852
+ is_reels?: boolean | undefined;
853
+ is_shorts?: boolean | undefined;
854
+ privacy?: string | undefined;
855
+ category?: string | undefined;
856
+ disable_comment?: boolean | undefined;
857
+ disable_duet?: boolean | undefined;
858
+ disable_stitch?: boolean | undefined;
859
+ disable_notification?: boolean | undefined;
860
+ pin_message?: boolean | undefined;
861
+ visibility?: "PUBLIC" | "CONNECTIONS" | undefined;
862
+ board_id?: string | undefined;
863
+ alt_text?: string | undefined;
864
+ } | undefined;
865
+ wordpress?: {
866
+ link?: string | undefined;
867
+ title?: string | undefined;
868
+ is_story?: boolean | undefined;
869
+ is_reels?: boolean | undefined;
870
+ is_shorts?: boolean | undefined;
871
+ privacy?: string | undefined;
872
+ category?: string | undefined;
873
+ disable_comment?: boolean | undefined;
874
+ disable_duet?: boolean | undefined;
875
+ disable_stitch?: boolean | undefined;
876
+ disable_notification?: boolean | undefined;
877
+ pin_message?: boolean | undefined;
878
+ visibility?: "PUBLIC" | "CONNECTIONS" | undefined;
879
+ board_id?: string | undefined;
880
+ alt_text?: string | undefined;
881
+ } | undefined;
882
+ google_my_business?: {
883
+ link?: string | undefined;
884
+ title?: string | undefined;
885
+ is_story?: boolean | undefined;
886
+ is_reels?: boolean | undefined;
887
+ is_shorts?: boolean | undefined;
888
+ privacy?: string | undefined;
889
+ category?: string | undefined;
890
+ disable_comment?: boolean | undefined;
891
+ disable_duet?: boolean | undefined;
892
+ disable_stitch?: boolean | undefined;
893
+ disable_notification?: boolean | undefined;
894
+ pin_message?: boolean | undefined;
895
+ visibility?: "PUBLIC" | "CONNECTIONS" | undefined;
896
+ board_id?: string | undefined;
897
+ alt_text?: string | undefined;
898
+ } | undefined;
899
+ vkontakte?: {
900
+ link?: string | undefined;
901
+ title?: string | undefined;
902
+ is_story?: boolean | undefined;
903
+ is_reels?: boolean | undefined;
904
+ is_shorts?: boolean | undefined;
905
+ privacy?: string | undefined;
906
+ category?: string | undefined;
907
+ disable_comment?: boolean | undefined;
908
+ disable_duet?: boolean | undefined;
909
+ disable_stitch?: boolean | undefined;
910
+ disable_notification?: boolean | undefined;
911
+ pin_message?: boolean | undefined;
912
+ visibility?: "PUBLIC" | "CONNECTIONS" | undefined;
913
+ board_id?: string | undefined;
914
+ alt_text?: string | undefined;
915
+ } | undefined;
916
+ }, {
917
+ instagram?: {
918
+ link?: string | undefined;
919
+ title?: string | undefined;
920
+ is_story?: boolean | undefined;
921
+ is_reels?: boolean | undefined;
922
+ is_shorts?: boolean | undefined;
923
+ privacy?: string | undefined;
924
+ category?: string | undefined;
925
+ disable_comment?: boolean | undefined;
926
+ disable_duet?: boolean | undefined;
927
+ disable_stitch?: boolean | undefined;
928
+ disable_notification?: boolean | undefined;
929
+ pin_message?: boolean | undefined;
930
+ visibility?: "PUBLIC" | "CONNECTIONS" | undefined;
931
+ board_id?: string | undefined;
932
+ alt_text?: string | undefined;
933
+ } | undefined;
934
+ facebook?: {
935
+ link?: string | undefined;
936
+ title?: string | undefined;
937
+ is_story?: boolean | undefined;
938
+ is_reels?: boolean | undefined;
939
+ is_shorts?: boolean | undefined;
940
+ privacy?: string | undefined;
941
+ category?: string | undefined;
942
+ disable_comment?: boolean | undefined;
943
+ disable_duet?: boolean | undefined;
944
+ disable_stitch?: boolean | undefined;
945
+ disable_notification?: boolean | undefined;
946
+ pin_message?: boolean | undefined;
947
+ visibility?: "PUBLIC" | "CONNECTIONS" | undefined;
948
+ board_id?: string | undefined;
949
+ alt_text?: string | undefined;
950
+ } | undefined;
951
+ youtube?: {
952
+ link?: string | undefined;
953
+ title?: string | undefined;
954
+ is_story?: boolean | undefined;
955
+ is_reels?: boolean | undefined;
956
+ is_shorts?: boolean | undefined;
957
+ privacy?: string | undefined;
958
+ category?: string | undefined;
959
+ disable_comment?: boolean | undefined;
960
+ disable_duet?: boolean | undefined;
961
+ disable_stitch?: boolean | undefined;
962
+ disable_notification?: boolean | undefined;
963
+ pin_message?: boolean | undefined;
964
+ visibility?: "PUBLIC" | "CONNECTIONS" | undefined;
965
+ board_id?: string | undefined;
966
+ alt_text?: string | undefined;
967
+ } | undefined;
968
+ tiktok?: {
969
+ link?: string | undefined;
970
+ title?: string | undefined;
971
+ is_story?: boolean | undefined;
972
+ is_reels?: boolean | undefined;
973
+ is_shorts?: boolean | undefined;
974
+ privacy?: string | undefined;
975
+ category?: string | undefined;
976
+ disable_comment?: boolean | undefined;
977
+ disable_duet?: boolean | undefined;
978
+ disable_stitch?: boolean | undefined;
979
+ disable_notification?: boolean | undefined;
980
+ pin_message?: boolean | undefined;
981
+ visibility?: "PUBLIC" | "CONNECTIONS" | undefined;
982
+ board_id?: string | undefined;
983
+ alt_text?: string | undefined;
984
+ } | undefined;
985
+ telegram?: {
986
+ link?: string | undefined;
987
+ title?: string | undefined;
988
+ is_story?: boolean | undefined;
989
+ is_reels?: boolean | undefined;
990
+ is_shorts?: boolean | undefined;
991
+ privacy?: string | undefined;
992
+ category?: string | undefined;
993
+ disable_comment?: boolean | undefined;
994
+ disable_duet?: boolean | undefined;
995
+ disable_stitch?: boolean | undefined;
996
+ disable_notification?: boolean | undefined;
997
+ pin_message?: boolean | undefined;
998
+ visibility?: "PUBLIC" | "CONNECTIONS" | undefined;
999
+ board_id?: string | undefined;
1000
+ alt_text?: string | undefined;
1001
+ } | undefined;
1002
+ linkedin?: {
1003
+ link?: string | undefined;
1004
+ title?: string | undefined;
1005
+ is_story?: boolean | undefined;
1006
+ is_reels?: boolean | undefined;
1007
+ is_shorts?: boolean | undefined;
1008
+ privacy?: string | undefined;
1009
+ category?: string | undefined;
1010
+ disable_comment?: boolean | undefined;
1011
+ disable_duet?: boolean | undefined;
1012
+ disable_stitch?: boolean | undefined;
1013
+ disable_notification?: boolean | undefined;
1014
+ pin_message?: boolean | undefined;
1015
+ visibility?: "PUBLIC" | "CONNECTIONS" | undefined;
1016
+ board_id?: string | undefined;
1017
+ alt_text?: string | undefined;
1018
+ } | undefined;
1019
+ pinterest?: {
1020
+ link?: string | undefined;
1021
+ title?: string | undefined;
1022
+ is_story?: boolean | undefined;
1023
+ is_reels?: boolean | undefined;
1024
+ is_shorts?: boolean | undefined;
1025
+ privacy?: string | undefined;
1026
+ category?: string | undefined;
1027
+ disable_comment?: boolean | undefined;
1028
+ disable_duet?: boolean | undefined;
1029
+ disable_stitch?: boolean | undefined;
1030
+ disable_notification?: boolean | undefined;
1031
+ pin_message?: boolean | undefined;
1032
+ visibility?: "PUBLIC" | "CONNECTIONS" | undefined;
1033
+ board_id?: string | undefined;
1034
+ alt_text?: string | undefined;
1035
+ } | undefined;
1036
+ twitter?: {
1037
+ link?: string | undefined;
1038
+ title?: string | undefined;
1039
+ is_story?: boolean | undefined;
1040
+ is_reels?: boolean | undefined;
1041
+ is_shorts?: boolean | undefined;
1042
+ privacy?: string | undefined;
1043
+ category?: string | undefined;
1044
+ disable_comment?: boolean | undefined;
1045
+ disable_duet?: boolean | undefined;
1046
+ disable_stitch?: boolean | undefined;
1047
+ disable_notification?: boolean | undefined;
1048
+ pin_message?: boolean | undefined;
1049
+ visibility?: "PUBLIC" | "CONNECTIONS" | undefined;
1050
+ board_id?: string | undefined;
1051
+ alt_text?: string | undefined;
1052
+ } | undefined;
1053
+ threads?: {
1054
+ link?: string | undefined;
1055
+ title?: string | undefined;
1056
+ is_story?: boolean | undefined;
1057
+ is_reels?: boolean | undefined;
1058
+ is_shorts?: boolean | undefined;
1059
+ privacy?: string | undefined;
1060
+ category?: string | undefined;
1061
+ disable_comment?: boolean | undefined;
1062
+ disable_duet?: boolean | undefined;
1063
+ disable_stitch?: boolean | undefined;
1064
+ disable_notification?: boolean | undefined;
1065
+ pin_message?: boolean | undefined;
1066
+ visibility?: "PUBLIC" | "CONNECTIONS" | undefined;
1067
+ board_id?: string | undefined;
1068
+ alt_text?: string | undefined;
1069
+ } | undefined;
1070
+ bluesky?: {
1071
+ link?: string | undefined;
1072
+ title?: string | undefined;
1073
+ is_story?: boolean | undefined;
1074
+ is_reels?: boolean | undefined;
1075
+ is_shorts?: boolean | undefined;
1076
+ privacy?: string | undefined;
1077
+ category?: string | undefined;
1078
+ disable_comment?: boolean | undefined;
1079
+ disable_duet?: boolean | undefined;
1080
+ disable_stitch?: boolean | undefined;
1081
+ disable_notification?: boolean | undefined;
1082
+ pin_message?: boolean | undefined;
1083
+ visibility?: "PUBLIC" | "CONNECTIONS" | undefined;
1084
+ board_id?: string | undefined;
1085
+ alt_text?: string | undefined;
1086
+ } | undefined;
1087
+ wordpress?: {
1088
+ link?: string | undefined;
1089
+ title?: string | undefined;
1090
+ is_story?: boolean | undefined;
1091
+ is_reels?: boolean | undefined;
1092
+ is_shorts?: boolean | undefined;
1093
+ privacy?: string | undefined;
1094
+ category?: string | undefined;
1095
+ disable_comment?: boolean | undefined;
1096
+ disable_duet?: boolean | undefined;
1097
+ disable_stitch?: boolean | undefined;
1098
+ disable_notification?: boolean | undefined;
1099
+ pin_message?: boolean | undefined;
1100
+ visibility?: "PUBLIC" | "CONNECTIONS" | undefined;
1101
+ board_id?: string | undefined;
1102
+ alt_text?: string | undefined;
1103
+ } | undefined;
1104
+ google_my_business?: {
1105
+ link?: string | undefined;
1106
+ title?: string | undefined;
1107
+ is_story?: boolean | undefined;
1108
+ is_reels?: boolean | undefined;
1109
+ is_shorts?: boolean | undefined;
1110
+ privacy?: string | undefined;
1111
+ category?: string | undefined;
1112
+ disable_comment?: boolean | undefined;
1113
+ disable_duet?: boolean | undefined;
1114
+ disable_stitch?: boolean | undefined;
1115
+ disable_notification?: boolean | undefined;
1116
+ pin_message?: boolean | undefined;
1117
+ visibility?: "PUBLIC" | "CONNECTIONS" | undefined;
1118
+ board_id?: string | undefined;
1119
+ alt_text?: string | undefined;
1120
+ } | undefined;
1121
+ vkontakte?: {
1122
+ link?: string | undefined;
1123
+ title?: string | undefined;
1124
+ is_story?: boolean | undefined;
1125
+ is_reels?: boolean | undefined;
1126
+ is_shorts?: boolean | undefined;
1127
+ privacy?: string | undefined;
1128
+ category?: string | undefined;
1129
+ disable_comment?: boolean | undefined;
1130
+ disable_duet?: boolean | undefined;
1131
+ disable_stitch?: boolean | undefined;
1132
+ disable_notification?: boolean | undefined;
1133
+ pin_message?: boolean | undefined;
1134
+ visibility?: "PUBLIC" | "CONNECTIONS" | undefined;
1135
+ board_id?: string | undefined;
1136
+ alt_text?: string | undefined;
1137
+ } | undefined;
1138
+ }>>;
1139
+ export type PlatformOptions = z.infer<typeof platformOptionsSchema>;
1140
+ export type PlatformSettings = z.infer<typeof platformSettingsSchema>;
1141
+ export declare const PLATFORM_OPTIONS_HINT = "platform_options: per-platform settings object. Example:\n{ \"instagram\": { \"is_reels\": true }, \"youtube\": { \"is_shorts\": true, \"privacy\": \"public\" } }\nPost type flags (at most one per platform): is_story, is_reels, is_shorts.\nOther fields: privacy, category (YouTube \u2014 use profiles_get_youtube_categories); disable_comment, disable_duet, disable_stitch (TikTok);\ndisable_notification, pin_message (Telegram); visibility (LinkedIn); board_id (Pinterest \u2014 use profiles_get_pinterest_boards), link, alt_text (Pinterest).";
1142
+ export declare function mergePlatformOptions(base?: PlatformOptions, overrides?: PlatformOptions): PlatformOptions | undefined;
1143
+ export declare const STORY_PLATFORM_OPTIONS: PlatformOptions;
1144
+ export declare const REELS_PLATFORM_OPTIONS: PlatformOptions;
1145
+ export declare const SHORTS_PLATFORM_OPTIONS: PlatformOptions;