@lessly/sdk-app 47.1.0 → 48.0.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.
Files changed (37) hide show
  1. package/dist/analytics/index.d.cts +1 -1
  2. package/dist/analytics/index.d.ts +1 -1
  3. package/dist/brain/index.d.cts +1 -1
  4. package/dist/brain/index.d.ts +1 -1
  5. package/dist/{client.gen-BsvWS7J-.d.cts → client.gen-DqvpKriz.d.cts} +235 -231
  6. package/dist/{client.gen-BsvWS7J-.d.ts → client.gen-DqvpKriz.d.ts} +235 -231
  7. package/dist/consent/index.d.cts +1 -1
  8. package/dist/consent/index.d.ts +1 -1
  9. package/dist/content/index.d.cts +1 -1
  10. package/dist/content/index.d.ts +1 -1
  11. package/dist/deployment/index.d.cts +1 -1
  12. package/dist/deployment/index.d.ts +1 -1
  13. package/dist/index.d.cts +1 -1
  14. package/dist/index.d.ts +1 -1
  15. package/dist/mail/index.d.cts +2 -2
  16. package/dist/mail/index.d.ts +2 -2
  17. package/dist/observe/index.d.cts +1 -1
  18. package/dist/observe/index.d.ts +1 -1
  19. package/dist/organization/index.d.cts +1 -1
  20. package/dist/organization/index.d.ts +1 -1
  21. package/dist/playground/index.d.cts +1 -1
  22. package/dist/playground/index.d.ts +1 -1
  23. package/dist/realtime/index.d.cts +1 -1
  24. package/dist/realtime/index.d.ts +1 -1
  25. package/dist/support/index.d.cts +1 -1
  26. package/dist/support/index.d.ts +1 -1
  27. package/dist/tracking/index.d.cts +1 -1
  28. package/dist/tracking/index.d.ts +1 -1
  29. package/dist/users/index.d.cts +1 -1
  30. package/dist/users/index.d.ts +1 -1
  31. package/dist/waitlist/index.d.cts +1 -1
  32. package/dist/waitlist/index.d.ts +1 -1
  33. package/docs/README.md +1 -1
  34. package/docs/recipes/federation.md +1 -1
  35. package/docs/rules.md +4 -4
  36. package/package.json +2 -2
  37. package/src/gen/types.gen.ts +235 -231
@@ -2056,7 +2056,7 @@ interface ContentPostsApproveOutput {
2056
2056
  */
2057
2057
  id: string;
2058
2058
  /**
2059
- * The current text of the post.
2059
+ * The current text of the post, in markdown.
2060
2060
  */
2061
2061
  text: string;
2062
2062
  /**
@@ -2107,7 +2107,7 @@ interface ContentPostsAttachMediaOutput {
2107
2107
  */
2108
2108
  id: string;
2109
2109
  /**
2110
- * The current text of the post.
2110
+ * The current text of the post, in markdown.
2111
2111
  */
2112
2112
  text: string;
2113
2113
  /**
@@ -2141,7 +2141,7 @@ interface ContentPostsAttachMediaOutput {
2141
2141
  }
2142
2142
  interface ContentPostsCreateInput {
2143
2143
  /**
2144
- * The post text, channel-independent. Per-channel variants come later, at publish time.
2144
+ * The post text, channel-independent, written in markdown — bold, italic, lists, links. Each network gets it flattened to the plain text that network accepts; content_publications_validate shows exactly what that looks like per channel. Per-channel variants come later, at publish time.
2145
2145
  */
2146
2146
  text: string;
2147
2147
  /**
@@ -2157,7 +2157,7 @@ interface ContentPostsCreateOutput {
2157
2157
  */
2158
2158
  id: string;
2159
2159
  /**
2160
- * The current text of the post.
2160
+ * The current text of the post, in markdown.
2161
2161
  */
2162
2162
  text: string;
2163
2163
  /**
@@ -2208,7 +2208,7 @@ interface ContentPostsDetachMediaOutput {
2208
2208
  */
2209
2209
  id: string;
2210
2210
  /**
2211
- * The current text of the post.
2211
+ * The current text of the post, in markdown.
2212
2212
  */
2213
2213
  text: string;
2214
2214
  /**
@@ -2252,7 +2252,7 @@ interface ContentPostsGetOutput {
2252
2252
  */
2253
2253
  id: string;
2254
2254
  /**
2255
- * The current text of the post.
2255
+ * The current text of the post, in markdown.
2256
2256
  */
2257
2257
  text: string;
2258
2258
  /**
@@ -2308,7 +2308,7 @@ interface ContentPostsListOutput {
2308
2308
  */
2309
2309
  id: string;
2310
2310
  /**
2311
- * The current text of the post.
2311
+ * The current text of the post, in markdown.
2312
2312
  */
2313
2313
  text: string;
2314
2314
  /**
@@ -2357,7 +2357,7 @@ interface ContentPostsSubmitOutput {
2357
2357
  */
2358
2358
  id: string;
2359
2359
  /**
2360
- * The current text of the post.
2360
+ * The current text of the post, in markdown.
2361
2361
  */
2362
2362
  text: string;
2363
2363
  /**
@@ -2395,7 +2395,7 @@ interface ContentPostsUpdateInput {
2395
2395
  */
2396
2396
  id: string;
2397
2397
  /**
2398
- * Replacement text. Omit to keep the current text.
2398
+ * Replacement text, in markdown. Omit to keep the current text.
2399
2399
  */
2400
2400
  text?: string;
2401
2401
  /**
@@ -2411,7 +2411,7 @@ interface ContentPostsUpdateOutput {
2411
2411
  */
2412
2412
  id: string;
2413
2413
  /**
2414
- * The current text of the post.
2414
+ * The current text of the post, in markdown.
2415
2415
  */
2416
2416
  text: string;
2417
2417
  /**
@@ -2496,7 +2496,7 @@ interface ContentPublicationsCancelOutput {
2496
2496
  */
2497
2497
  id: string;
2498
2498
  /**
2499
- * The per-channel variant of the text that will be published.
2499
+ * The exact text that will be published to this channel markdown already flattened to plain network text at schedule time. Not the markdown source; that stays on the post.
2500
2500
  */
2501
2501
  text: string;
2502
2502
  /**
@@ -2584,7 +2584,7 @@ interface ContentPublicationsConfirmOutput {
2584
2584
  */
2585
2585
  id: string;
2586
2586
  /**
2587
- * The per-channel variant of the text that will be published.
2587
+ * The exact text that will be published to this channel markdown already flattened to plain network text at schedule time. Not the markdown source; that stays on the post.
2588
2588
  */
2589
2589
  text: string;
2590
2590
  /**
@@ -2664,7 +2664,7 @@ interface ContentPublicationsGetOutput {
2664
2664
  */
2665
2665
  id: string;
2666
2666
  /**
2667
- * The per-channel variant of the text that will be published.
2667
+ * The exact text that will be published to this channel markdown already flattened to plain network text at schedule time. Not the markdown source; that stays on the post.
2668
2668
  */
2669
2669
  text: string;
2670
2670
  /**
@@ -2776,7 +2776,7 @@ interface ContentPublicationsListOutput {
2776
2776
  */
2777
2777
  id: string;
2778
2778
  /**
2779
- * The per-channel variant of the text that will be published.
2779
+ * The exact text that will be published to this channel markdown already flattened to plain network text at schedule time. Not the markdown source; that stays on the post.
2780
2780
  */
2781
2781
  text: string;
2782
2782
  /**
@@ -2847,7 +2847,7 @@ interface ContentPublicationsListOutput {
2847
2847
  }
2848
2848
  interface ContentPublicationsPublishInput {
2849
2849
  /**
2850
- * Per-channel variant of the text. Omit to publish the post text as written.
2850
+ * Per-channel variant of the text, in markdown. Omit to use the post text. It is rendered to plain network text before it is stored — call content_publications_validate first if you want to see the result.
2851
2851
  */
2852
2852
  text?: string;
2853
2853
  /**
@@ -2869,7 +2869,7 @@ interface ContentPublicationsPublishOutput {
2869
2869
  */
2870
2870
  id: string;
2871
2871
  /**
2872
- * The per-channel variant of the text that will be published.
2872
+ * The exact text that will be published to this channel markdown already flattened to plain network text at schedule time. Not the markdown source; that stays on the post.
2873
2873
  */
2874
2874
  text: string;
2875
2875
  /**
@@ -2949,7 +2949,7 @@ interface ContentPublicationsRemindOutput {
2949
2949
  */
2950
2950
  id: string;
2951
2951
  /**
2952
- * The per-channel variant of the text that will be published.
2952
+ * The exact text that will be published to this channel markdown already flattened to plain network text at schedule time. Not the markdown source; that stays on the post.
2953
2953
  */
2954
2954
  text: string;
2955
2955
  /**
@@ -3033,7 +3033,7 @@ interface ContentPublicationsRescheduleOutput {
3033
3033
  */
3034
3034
  id: string;
3035
3035
  /**
3036
- * The per-channel variant of the text that will be published.
3036
+ * The exact text that will be published to this channel markdown already flattened to plain network text at schedule time. Not the markdown source; that stays on the post.
3037
3037
  */
3038
3038
  text: string;
3039
3039
  /**
@@ -3103,7 +3103,7 @@ interface ContentPublicationsRescheduleOutput {
3103
3103
  }
3104
3104
  interface ContentPublicationsScheduleInput {
3105
3105
  /**
3106
- * Per-channel variant of the text. Omit to publish the post text as written.
3106
+ * Per-channel variant of the text, in markdown. Omit to use the post text. It is rendered to plain network text before it is stored — call content_publications_validate first if you want to see the result.
3107
3107
  */
3108
3108
  text?: string;
3109
3109
  /**
@@ -3129,7 +3129,7 @@ interface ContentPublicationsScheduleOutput {
3129
3129
  */
3130
3130
  id: string;
3131
3131
  /**
3132
- * The per-channel variant of the text that will be published.
3132
+ * The exact text that will be published to this channel markdown already flattened to plain network text at schedule time. Not the markdown source; that stays on the post.
3133
3133
  */
3134
3134
  text: string;
3135
3135
  /**
@@ -3211,7 +3211,7 @@ interface ContentPublicationsValidateInput {
3211
3211
  channels: [
3212
3212
  {
3213
3213
  /**
3214
- * The per-channel variant you intend to schedule. Omit to check the post text as written.
3214
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
3215
3215
  */
3216
3216
  text?: string;
3217
3217
  /**
@@ -3222,7 +3222,7 @@ interface ContentPublicationsValidateInput {
3222
3222
  ] | [
3223
3223
  {
3224
3224
  /**
3225
- * The per-channel variant you intend to schedule. Omit to check the post text as written.
3225
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
3226
3226
  */
3227
3227
  text?: string;
3228
3228
  /**
@@ -3232,7 +3232,7 @@ interface ContentPublicationsValidateInput {
3232
3232
  },
3233
3233
  {
3234
3234
  /**
3235
- * The per-channel variant you intend to schedule. Omit to check the post text as written.
3235
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
3236
3236
  */
3237
3237
  text?: string;
3238
3238
  /**
@@ -3243,7 +3243,7 @@ interface ContentPublicationsValidateInput {
3243
3243
  ] | [
3244
3244
  {
3245
3245
  /**
3246
- * The per-channel variant you intend to schedule. Omit to check the post text as written.
3246
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
3247
3247
  */
3248
3248
  text?: string;
3249
3249
  /**
@@ -3253,7 +3253,7 @@ interface ContentPublicationsValidateInput {
3253
3253
  },
3254
3254
  {
3255
3255
  /**
3256
- * The per-channel variant you intend to schedule. Omit to check the post text as written.
3256
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
3257
3257
  */
3258
3258
  text?: string;
3259
3259
  /**
@@ -3263,7 +3263,7 @@ interface ContentPublicationsValidateInput {
3263
3263
  },
3264
3264
  {
3265
3265
  /**
3266
- * The per-channel variant you intend to schedule. Omit to check the post text as written.
3266
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
3267
3267
  */
3268
3268
  text?: string;
3269
3269
  /**
@@ -3274,7 +3274,7 @@ interface ContentPublicationsValidateInput {
3274
3274
  ] | [
3275
3275
  {
3276
3276
  /**
3277
- * The per-channel variant you intend to schedule. Omit to check the post text as written.
3277
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
3278
3278
  */
3279
3279
  text?: string;
3280
3280
  /**
@@ -3284,7 +3284,7 @@ interface ContentPublicationsValidateInput {
3284
3284
  },
3285
3285
  {
3286
3286
  /**
3287
- * The per-channel variant you intend to schedule. Omit to check the post text as written.
3287
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
3288
3288
  */
3289
3289
  text?: string;
3290
3290
  /**
@@ -3294,7 +3294,7 @@ interface ContentPublicationsValidateInput {
3294
3294
  },
3295
3295
  {
3296
3296
  /**
3297
- * The per-channel variant you intend to schedule. Omit to check the post text as written.
3297
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
3298
3298
  */
3299
3299
  text?: string;
3300
3300
  /**
@@ -3304,7 +3304,7 @@ interface ContentPublicationsValidateInput {
3304
3304
  },
3305
3305
  {
3306
3306
  /**
3307
- * The per-channel variant you intend to schedule. Omit to check the post text as written.
3307
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
3308
3308
  */
3309
3309
  text?: string;
3310
3310
  /**
@@ -3315,7 +3315,7 @@ interface ContentPublicationsValidateInput {
3315
3315
  ] | [
3316
3316
  {
3317
3317
  /**
3318
- * The per-channel variant you intend to schedule. Omit to check the post text as written.
3318
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
3319
3319
  */
3320
3320
  text?: string;
3321
3321
  /**
@@ -3325,7 +3325,7 @@ interface ContentPublicationsValidateInput {
3325
3325
  },
3326
3326
  {
3327
3327
  /**
3328
- * The per-channel variant you intend to schedule. Omit to check the post text as written.
3328
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
3329
3329
  */
3330
3330
  text?: string;
3331
3331
  /**
@@ -3335,7 +3335,7 @@ interface ContentPublicationsValidateInput {
3335
3335
  },
3336
3336
  {
3337
3337
  /**
3338
- * The per-channel variant you intend to schedule. Omit to check the post text as written.
3338
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
3339
3339
  */
3340
3340
  text?: string;
3341
3341
  /**
@@ -3345,7 +3345,7 @@ interface ContentPublicationsValidateInput {
3345
3345
  },
3346
3346
  {
3347
3347
  /**
3348
- * The per-channel variant you intend to schedule. Omit to check the post text as written.
3348
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
3349
3349
  */
3350
3350
  text?: string;
3351
3351
  /**
@@ -3355,7 +3355,7 @@ interface ContentPublicationsValidateInput {
3355
3355
  },
3356
3356
  {
3357
3357
  /**
3358
- * The per-channel variant you intend to schedule. Omit to check the post text as written.
3358
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
3359
3359
  */
3360
3360
  text?: string;
3361
3361
  /**
@@ -3366,7 +3366,7 @@ interface ContentPublicationsValidateInput {
3366
3366
  ] | [
3367
3367
  {
3368
3368
  /**
3369
- * The per-channel variant you intend to schedule. Omit to check the post text as written.
3369
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
3370
3370
  */
3371
3371
  text?: string;
3372
3372
  /**
@@ -3376,7 +3376,7 @@ interface ContentPublicationsValidateInput {
3376
3376
  },
3377
3377
  {
3378
3378
  /**
3379
- * The per-channel variant you intend to schedule. Omit to check the post text as written.
3379
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
3380
3380
  */
3381
3381
  text?: string;
3382
3382
  /**
@@ -3386,7 +3386,7 @@ interface ContentPublicationsValidateInput {
3386
3386
  },
3387
3387
  {
3388
3388
  /**
3389
- * The per-channel variant you intend to schedule. Omit to check the post text as written.
3389
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
3390
3390
  */
3391
3391
  text?: string;
3392
3392
  /**
@@ -3396,7 +3396,7 @@ interface ContentPublicationsValidateInput {
3396
3396
  },
3397
3397
  {
3398
3398
  /**
3399
- * The per-channel variant you intend to schedule. Omit to check the post text as written.
3399
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
3400
3400
  */
3401
3401
  text?: string;
3402
3402
  /**
@@ -3406,7 +3406,7 @@ interface ContentPublicationsValidateInput {
3406
3406
  },
3407
3407
  {
3408
3408
  /**
3409
- * The per-channel variant you intend to schedule. Omit to check the post text as written.
3409
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
3410
3410
  */
3411
3411
  text?: string;
3412
3412
  /**
@@ -3416,7 +3416,7 @@ interface ContentPublicationsValidateInput {
3416
3416
  },
3417
3417
  {
3418
3418
  /**
3419
- * The per-channel variant you intend to schedule. Omit to check the post text as written.
3419
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
3420
3420
  */
3421
3421
  text?: string;
3422
3422
  /**
@@ -3427,7 +3427,7 @@ interface ContentPublicationsValidateInput {
3427
3427
  ] | [
3428
3428
  {
3429
3429
  /**
3430
- * The per-channel variant you intend to schedule. Omit to check the post text as written.
3430
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
3431
3431
  */
3432
3432
  text?: string;
3433
3433
  /**
@@ -3437,7 +3437,7 @@ interface ContentPublicationsValidateInput {
3437
3437
  },
3438
3438
  {
3439
3439
  /**
3440
- * The per-channel variant you intend to schedule. Omit to check the post text as written.
3440
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
3441
3441
  */
3442
3442
  text?: string;
3443
3443
  /**
@@ -3447,7 +3447,7 @@ interface ContentPublicationsValidateInput {
3447
3447
  },
3448
3448
  {
3449
3449
  /**
3450
- * The per-channel variant you intend to schedule. Omit to check the post text as written.
3450
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
3451
3451
  */
3452
3452
  text?: string;
3453
3453
  /**
@@ -3457,7 +3457,7 @@ interface ContentPublicationsValidateInput {
3457
3457
  },
3458
3458
  {
3459
3459
  /**
3460
- * The per-channel variant you intend to schedule. Omit to check the post text as written.
3460
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
3461
3461
  */
3462
3462
  text?: string;
3463
3463
  /**
@@ -3467,7 +3467,7 @@ interface ContentPublicationsValidateInput {
3467
3467
  },
3468
3468
  {
3469
3469
  /**
3470
- * The per-channel variant you intend to schedule. Omit to check the post text as written.
3470
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
3471
3471
  */
3472
3472
  text?: string;
3473
3473
  /**
@@ -3477,7 +3477,7 @@ interface ContentPublicationsValidateInput {
3477
3477
  },
3478
3478
  {
3479
3479
  /**
3480
- * The per-channel variant you intend to schedule. Omit to check the post text as written.
3480
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
3481
3481
  */
3482
3482
  text?: string;
3483
3483
  /**
@@ -3487,7 +3487,7 @@ interface ContentPublicationsValidateInput {
3487
3487
  },
3488
3488
  {
3489
3489
  /**
3490
- * The per-channel variant you intend to schedule. Omit to check the post text as written.
3490
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
3491
3491
  */
3492
3492
  text?: string;
3493
3493
  /**
@@ -3498,7 +3498,7 @@ interface ContentPublicationsValidateInput {
3498
3498
  ] | [
3499
3499
  {
3500
3500
  /**
3501
- * The per-channel variant you intend to schedule. Omit to check the post text as written.
3501
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
3502
3502
  */
3503
3503
  text?: string;
3504
3504
  /**
@@ -3508,7 +3508,7 @@ interface ContentPublicationsValidateInput {
3508
3508
  },
3509
3509
  {
3510
3510
  /**
3511
- * The per-channel variant you intend to schedule. Omit to check the post text as written.
3511
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
3512
3512
  */
3513
3513
  text?: string;
3514
3514
  /**
@@ -3518,7 +3518,7 @@ interface ContentPublicationsValidateInput {
3518
3518
  },
3519
3519
  {
3520
3520
  /**
3521
- * The per-channel variant you intend to schedule. Omit to check the post text as written.
3521
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
3522
3522
  */
3523
3523
  text?: string;
3524
3524
  /**
@@ -3528,7 +3528,7 @@ interface ContentPublicationsValidateInput {
3528
3528
  },
3529
3529
  {
3530
3530
  /**
3531
- * The per-channel variant you intend to schedule. Omit to check the post text as written.
3531
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
3532
3532
  */
3533
3533
  text?: string;
3534
3534
  /**
@@ -3538,7 +3538,7 @@ interface ContentPublicationsValidateInput {
3538
3538
  },
3539
3539
  {
3540
3540
  /**
3541
- * The per-channel variant you intend to schedule. Omit to check the post text as written.
3541
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
3542
3542
  */
3543
3543
  text?: string;
3544
3544
  /**
@@ -3548,7 +3548,7 @@ interface ContentPublicationsValidateInput {
3548
3548
  },
3549
3549
  {
3550
3550
  /**
3551
- * The per-channel variant you intend to schedule. Omit to check the post text as written.
3551
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
3552
3552
  */
3553
3553
  text?: string;
3554
3554
  /**
@@ -3558,7 +3558,7 @@ interface ContentPublicationsValidateInput {
3558
3558
  },
3559
3559
  {
3560
3560
  /**
3561
- * The per-channel variant you intend to schedule. Omit to check the post text as written.
3561
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
3562
3562
  */
3563
3563
  text?: string;
3564
3564
  /**
@@ -3568,7 +3568,7 @@ interface ContentPublicationsValidateInput {
3568
3568
  },
3569
3569
  {
3570
3570
  /**
3571
- * The per-channel variant you intend to schedule. Omit to check the post text as written.
3571
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
3572
3572
  */
3573
3573
  text?: string;
3574
3574
  /**
@@ -3579,7 +3579,7 @@ interface ContentPublicationsValidateInput {
3579
3579
  ] | [
3580
3580
  {
3581
3581
  /**
3582
- * The per-channel variant you intend to schedule. Omit to check the post text as written.
3582
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
3583
3583
  */
3584
3584
  text?: string;
3585
3585
  /**
@@ -3589,7 +3589,7 @@ interface ContentPublicationsValidateInput {
3589
3589
  },
3590
3590
  {
3591
3591
  /**
3592
- * The per-channel variant you intend to schedule. Omit to check the post text as written.
3592
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
3593
3593
  */
3594
3594
  text?: string;
3595
3595
  /**
@@ -3599,7 +3599,7 @@ interface ContentPublicationsValidateInput {
3599
3599
  },
3600
3600
  {
3601
3601
  /**
3602
- * The per-channel variant you intend to schedule. Omit to check the post text as written.
3602
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
3603
3603
  */
3604
3604
  text?: string;
3605
3605
  /**
@@ -3609,7 +3609,7 @@ interface ContentPublicationsValidateInput {
3609
3609
  },
3610
3610
  {
3611
3611
  /**
3612
- * The per-channel variant you intend to schedule. Omit to check the post text as written.
3612
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
3613
3613
  */
3614
3614
  text?: string;
3615
3615
  /**
@@ -3619,7 +3619,7 @@ interface ContentPublicationsValidateInput {
3619
3619
  },
3620
3620
  {
3621
3621
  /**
3622
- * The per-channel variant you intend to schedule. Omit to check the post text as written.
3622
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
3623
3623
  */
3624
3624
  text?: string;
3625
3625
  /**
@@ -3629,7 +3629,7 @@ interface ContentPublicationsValidateInput {
3629
3629
  },
3630
3630
  {
3631
3631
  /**
3632
- * The per-channel variant you intend to schedule. Omit to check the post text as written.
3632
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
3633
3633
  */
3634
3634
  text?: string;
3635
3635
  /**
@@ -3639,7 +3639,7 @@ interface ContentPublicationsValidateInput {
3639
3639
  },
3640
3640
  {
3641
3641
  /**
3642
- * The per-channel variant you intend to schedule. Omit to check the post text as written.
3642
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
3643
3643
  */
3644
3644
  text?: string;
3645
3645
  /**
@@ -3649,7 +3649,7 @@ interface ContentPublicationsValidateInput {
3649
3649
  },
3650
3650
  {
3651
3651
  /**
3652
- * The per-channel variant you intend to schedule. Omit to check the post text as written.
3652
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
3653
3653
  */
3654
3654
  text?: string;
3655
3655
  /**
@@ -3659,7 +3659,7 @@ interface ContentPublicationsValidateInput {
3659
3659
  },
3660
3660
  {
3661
3661
  /**
3662
- * The per-channel variant you intend to schedule. Omit to check the post text as written.
3662
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
3663
3663
  */
3664
3664
  text?: string;
3665
3665
  /**
@@ -3670,7 +3670,7 @@ interface ContentPublicationsValidateInput {
3670
3670
  ] | [
3671
3671
  {
3672
3672
  /**
3673
- * The per-channel variant you intend to schedule. Omit to check the post text as written.
3673
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
3674
3674
  */
3675
3675
  text?: string;
3676
3676
  /**
@@ -3680,7 +3680,7 @@ interface ContentPublicationsValidateInput {
3680
3680
  },
3681
3681
  {
3682
3682
  /**
3683
- * The per-channel variant you intend to schedule. Omit to check the post text as written.
3683
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
3684
3684
  */
3685
3685
  text?: string;
3686
3686
  /**
@@ -3690,7 +3690,7 @@ interface ContentPublicationsValidateInput {
3690
3690
  },
3691
3691
  {
3692
3692
  /**
3693
- * The per-channel variant you intend to schedule. Omit to check the post text as written.
3693
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
3694
3694
  */
3695
3695
  text?: string;
3696
3696
  /**
@@ -3700,7 +3700,7 @@ interface ContentPublicationsValidateInput {
3700
3700
  },
3701
3701
  {
3702
3702
  /**
3703
- * The per-channel variant you intend to schedule. Omit to check the post text as written.
3703
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
3704
3704
  */
3705
3705
  text?: string;
3706
3706
  /**
@@ -3710,7 +3710,7 @@ interface ContentPublicationsValidateInput {
3710
3710
  },
3711
3711
  {
3712
3712
  /**
3713
- * The per-channel variant you intend to schedule. Omit to check the post text as written.
3713
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
3714
3714
  */
3715
3715
  text?: string;
3716
3716
  /**
@@ -3720,7 +3720,7 @@ interface ContentPublicationsValidateInput {
3720
3720
  },
3721
3721
  {
3722
3722
  /**
3723
- * The per-channel variant you intend to schedule. Omit to check the post text as written.
3723
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
3724
3724
  */
3725
3725
  text?: string;
3726
3726
  /**
@@ -3730,7 +3730,7 @@ interface ContentPublicationsValidateInput {
3730
3730
  },
3731
3731
  {
3732
3732
  /**
3733
- * The per-channel variant you intend to schedule. Omit to check the post text as written.
3733
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
3734
3734
  */
3735
3735
  text?: string;
3736
3736
  /**
@@ -3740,7 +3740,7 @@ interface ContentPublicationsValidateInput {
3740
3740
  },
3741
3741
  {
3742
3742
  /**
3743
- * The per-channel variant you intend to schedule. Omit to check the post text as written.
3743
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
3744
3744
  */
3745
3745
  text?: string;
3746
3746
  /**
@@ -3750,7 +3750,7 @@ interface ContentPublicationsValidateInput {
3750
3750
  },
3751
3751
  {
3752
3752
  /**
3753
- * The per-channel variant you intend to schedule. Omit to check the post text as written.
3753
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
3754
3754
  */
3755
3755
  text?: string;
3756
3756
  /**
@@ -3760,7 +3760,7 @@ interface ContentPublicationsValidateInput {
3760
3760
  },
3761
3761
  {
3762
3762
  /**
3763
- * The per-channel variant you intend to schedule. Omit to check the post text as written.
3763
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
3764
3764
  */
3765
3765
  text?: string;
3766
3766
  /**
@@ -3771,7 +3771,7 @@ interface ContentPublicationsValidateInput {
3771
3771
  ] | [
3772
3772
  {
3773
3773
  /**
3774
- * The per-channel variant you intend to schedule. Omit to check the post text as written.
3774
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
3775
3775
  */
3776
3776
  text?: string;
3777
3777
  /**
@@ -3781,7 +3781,7 @@ interface ContentPublicationsValidateInput {
3781
3781
  },
3782
3782
  {
3783
3783
  /**
3784
- * The per-channel variant you intend to schedule. Omit to check the post text as written.
3784
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
3785
3785
  */
3786
3786
  text?: string;
3787
3787
  /**
@@ -3791,7 +3791,7 @@ interface ContentPublicationsValidateInput {
3791
3791
  },
3792
3792
  {
3793
3793
  /**
3794
- * The per-channel variant you intend to schedule. Omit to check the post text as written.
3794
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
3795
3795
  */
3796
3796
  text?: string;
3797
3797
  /**
@@ -3801,7 +3801,7 @@ interface ContentPublicationsValidateInput {
3801
3801
  },
3802
3802
  {
3803
3803
  /**
3804
- * The per-channel variant you intend to schedule. Omit to check the post text as written.
3804
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
3805
3805
  */
3806
3806
  text?: string;
3807
3807
  /**
@@ -3811,7 +3811,7 @@ interface ContentPublicationsValidateInput {
3811
3811
  },
3812
3812
  {
3813
3813
  /**
3814
- * The per-channel variant you intend to schedule. Omit to check the post text as written.
3814
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
3815
3815
  */
3816
3816
  text?: string;
3817
3817
  /**
@@ -3821,7 +3821,7 @@ interface ContentPublicationsValidateInput {
3821
3821
  },
3822
3822
  {
3823
3823
  /**
3824
- * The per-channel variant you intend to schedule. Omit to check the post text as written.
3824
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
3825
3825
  */
3826
3826
  text?: string;
3827
3827
  /**
@@ -3831,7 +3831,7 @@ interface ContentPublicationsValidateInput {
3831
3831
  },
3832
3832
  {
3833
3833
  /**
3834
- * The per-channel variant you intend to schedule. Omit to check the post text as written.
3834
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
3835
3835
  */
3836
3836
  text?: string;
3837
3837
  /**
@@ -3841,7 +3841,7 @@ interface ContentPublicationsValidateInput {
3841
3841
  },
3842
3842
  {
3843
3843
  /**
3844
- * The per-channel variant you intend to schedule. Omit to check the post text as written.
3844
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
3845
3845
  */
3846
3846
  text?: string;
3847
3847
  /**
@@ -3851,7 +3851,7 @@ interface ContentPublicationsValidateInput {
3851
3851
  },
3852
3852
  {
3853
3853
  /**
3854
- * The per-channel variant you intend to schedule. Omit to check the post text as written.
3854
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
3855
3855
  */
3856
3856
  text?: string;
3857
3857
  /**
@@ -3861,7 +3861,7 @@ interface ContentPublicationsValidateInput {
3861
3861
  },
3862
3862
  {
3863
3863
  /**
3864
- * The per-channel variant you intend to schedule. Omit to check the post text as written.
3864
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
3865
3865
  */
3866
3866
  text?: string;
3867
3867
  /**
@@ -3871,7 +3871,7 @@ interface ContentPublicationsValidateInput {
3871
3871
  },
3872
3872
  {
3873
3873
  /**
3874
- * The per-channel variant you intend to schedule. Omit to check the post text as written.
3874
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
3875
3875
  */
3876
3876
  text?: string;
3877
3877
  /**
@@ -3882,7 +3882,7 @@ interface ContentPublicationsValidateInput {
3882
3882
  ] | [
3883
3883
  {
3884
3884
  /**
3885
- * The per-channel variant you intend to schedule. Omit to check the post text as written.
3885
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
3886
3886
  */
3887
3887
  text?: string;
3888
3888
  /**
@@ -3892,7 +3892,7 @@ interface ContentPublicationsValidateInput {
3892
3892
  },
3893
3893
  {
3894
3894
  /**
3895
- * The per-channel variant you intend to schedule. Omit to check the post text as written.
3895
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
3896
3896
  */
3897
3897
  text?: string;
3898
3898
  /**
@@ -3902,7 +3902,7 @@ interface ContentPublicationsValidateInput {
3902
3902
  },
3903
3903
  {
3904
3904
  /**
3905
- * The per-channel variant you intend to schedule. Omit to check the post text as written.
3905
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
3906
3906
  */
3907
3907
  text?: string;
3908
3908
  /**
@@ -3912,7 +3912,7 @@ interface ContentPublicationsValidateInput {
3912
3912
  },
3913
3913
  {
3914
3914
  /**
3915
- * The per-channel variant you intend to schedule. Omit to check the post text as written.
3915
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
3916
3916
  */
3917
3917
  text?: string;
3918
3918
  /**
@@ -3922,7 +3922,7 @@ interface ContentPublicationsValidateInput {
3922
3922
  },
3923
3923
  {
3924
3924
  /**
3925
- * The per-channel variant you intend to schedule. Omit to check the post text as written.
3925
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
3926
3926
  */
3927
3927
  text?: string;
3928
3928
  /**
@@ -3932,7 +3932,7 @@ interface ContentPublicationsValidateInput {
3932
3932
  },
3933
3933
  {
3934
3934
  /**
3935
- * The per-channel variant you intend to schedule. Omit to check the post text as written.
3935
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
3936
3936
  */
3937
3937
  text?: string;
3938
3938
  /**
@@ -3942,7 +3942,7 @@ interface ContentPublicationsValidateInput {
3942
3942
  },
3943
3943
  {
3944
3944
  /**
3945
- * The per-channel variant you intend to schedule. Omit to check the post text as written.
3945
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
3946
3946
  */
3947
3947
  text?: string;
3948
3948
  /**
@@ -3952,7 +3952,7 @@ interface ContentPublicationsValidateInput {
3952
3952
  },
3953
3953
  {
3954
3954
  /**
3955
- * The per-channel variant you intend to schedule. Omit to check the post text as written.
3955
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
3956
3956
  */
3957
3957
  text?: string;
3958
3958
  /**
@@ -3962,7 +3962,7 @@ interface ContentPublicationsValidateInput {
3962
3962
  },
3963
3963
  {
3964
3964
  /**
3965
- * The per-channel variant you intend to schedule. Omit to check the post text as written.
3965
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
3966
3966
  */
3967
3967
  text?: string;
3968
3968
  /**
@@ -3972,7 +3972,7 @@ interface ContentPublicationsValidateInput {
3972
3972
  },
3973
3973
  {
3974
3974
  /**
3975
- * The per-channel variant you intend to schedule. Omit to check the post text as written.
3975
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
3976
3976
  */
3977
3977
  text?: string;
3978
3978
  /**
@@ -3982,7 +3982,7 @@ interface ContentPublicationsValidateInput {
3982
3982
  },
3983
3983
  {
3984
3984
  /**
3985
- * The per-channel variant you intend to schedule. Omit to check the post text as written.
3985
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
3986
3986
  */
3987
3987
  text?: string;
3988
3988
  /**
@@ -3992,7 +3992,7 @@ interface ContentPublicationsValidateInput {
3992
3992
  },
3993
3993
  {
3994
3994
  /**
3995
- * The per-channel variant you intend to schedule. Omit to check the post text as written.
3995
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
3996
3996
  */
3997
3997
  text?: string;
3998
3998
  /**
@@ -4003,7 +4003,7 @@ interface ContentPublicationsValidateInput {
4003
4003
  ] | [
4004
4004
  {
4005
4005
  /**
4006
- * The per-channel variant you intend to schedule. Omit to check the post text as written.
4006
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
4007
4007
  */
4008
4008
  text?: string;
4009
4009
  /**
@@ -4013,7 +4013,7 @@ interface ContentPublicationsValidateInput {
4013
4013
  },
4014
4014
  {
4015
4015
  /**
4016
- * The per-channel variant you intend to schedule. Omit to check the post text as written.
4016
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
4017
4017
  */
4018
4018
  text?: string;
4019
4019
  /**
@@ -4023,7 +4023,7 @@ interface ContentPublicationsValidateInput {
4023
4023
  },
4024
4024
  {
4025
4025
  /**
4026
- * The per-channel variant you intend to schedule. Omit to check the post text as written.
4026
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
4027
4027
  */
4028
4028
  text?: string;
4029
4029
  /**
@@ -4033,7 +4033,7 @@ interface ContentPublicationsValidateInput {
4033
4033
  },
4034
4034
  {
4035
4035
  /**
4036
- * The per-channel variant you intend to schedule. Omit to check the post text as written.
4036
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
4037
4037
  */
4038
4038
  text?: string;
4039
4039
  /**
@@ -4043,7 +4043,7 @@ interface ContentPublicationsValidateInput {
4043
4043
  },
4044
4044
  {
4045
4045
  /**
4046
- * The per-channel variant you intend to schedule. Omit to check the post text as written.
4046
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
4047
4047
  */
4048
4048
  text?: string;
4049
4049
  /**
@@ -4053,7 +4053,7 @@ interface ContentPublicationsValidateInput {
4053
4053
  },
4054
4054
  {
4055
4055
  /**
4056
- * The per-channel variant you intend to schedule. Omit to check the post text as written.
4056
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
4057
4057
  */
4058
4058
  text?: string;
4059
4059
  /**
@@ -4063,7 +4063,7 @@ interface ContentPublicationsValidateInput {
4063
4063
  },
4064
4064
  {
4065
4065
  /**
4066
- * The per-channel variant you intend to schedule. Omit to check the post text as written.
4066
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
4067
4067
  */
4068
4068
  text?: string;
4069
4069
  /**
@@ -4073,7 +4073,7 @@ interface ContentPublicationsValidateInput {
4073
4073
  },
4074
4074
  {
4075
4075
  /**
4076
- * The per-channel variant you intend to schedule. Omit to check the post text as written.
4076
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
4077
4077
  */
4078
4078
  text?: string;
4079
4079
  /**
@@ -4083,7 +4083,7 @@ interface ContentPublicationsValidateInput {
4083
4083
  },
4084
4084
  {
4085
4085
  /**
4086
- * The per-channel variant you intend to schedule. Omit to check the post text as written.
4086
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
4087
4087
  */
4088
4088
  text?: string;
4089
4089
  /**
@@ -4093,7 +4093,7 @@ interface ContentPublicationsValidateInput {
4093
4093
  },
4094
4094
  {
4095
4095
  /**
4096
- * The per-channel variant you intend to schedule. Omit to check the post text as written.
4096
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
4097
4097
  */
4098
4098
  text?: string;
4099
4099
  /**
@@ -4103,7 +4103,7 @@ interface ContentPublicationsValidateInput {
4103
4103
  },
4104
4104
  {
4105
4105
  /**
4106
- * The per-channel variant you intend to schedule. Omit to check the post text as written.
4106
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
4107
4107
  */
4108
4108
  text?: string;
4109
4109
  /**
@@ -4113,7 +4113,7 @@ interface ContentPublicationsValidateInput {
4113
4113
  },
4114
4114
  {
4115
4115
  /**
4116
- * The per-channel variant you intend to schedule. Omit to check the post text as written.
4116
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
4117
4117
  */
4118
4118
  text?: string;
4119
4119
  /**
@@ -4123,7 +4123,7 @@ interface ContentPublicationsValidateInput {
4123
4123
  },
4124
4124
  {
4125
4125
  /**
4126
- * The per-channel variant you intend to schedule. Omit to check the post text as written.
4126
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
4127
4127
  */
4128
4128
  text?: string;
4129
4129
  /**
@@ -4134,7 +4134,7 @@ interface ContentPublicationsValidateInput {
4134
4134
  ] | [
4135
4135
  {
4136
4136
  /**
4137
- * The per-channel variant you intend to schedule. Omit to check the post text as written.
4137
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
4138
4138
  */
4139
4139
  text?: string;
4140
4140
  /**
@@ -4144,7 +4144,7 @@ interface ContentPublicationsValidateInput {
4144
4144
  },
4145
4145
  {
4146
4146
  /**
4147
- * The per-channel variant you intend to schedule. Omit to check the post text as written.
4147
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
4148
4148
  */
4149
4149
  text?: string;
4150
4150
  /**
@@ -4154,7 +4154,7 @@ interface ContentPublicationsValidateInput {
4154
4154
  },
4155
4155
  {
4156
4156
  /**
4157
- * The per-channel variant you intend to schedule. Omit to check the post text as written.
4157
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
4158
4158
  */
4159
4159
  text?: string;
4160
4160
  /**
@@ -4164,7 +4164,7 @@ interface ContentPublicationsValidateInput {
4164
4164
  },
4165
4165
  {
4166
4166
  /**
4167
- * The per-channel variant you intend to schedule. Omit to check the post text as written.
4167
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
4168
4168
  */
4169
4169
  text?: string;
4170
4170
  /**
@@ -4174,7 +4174,7 @@ interface ContentPublicationsValidateInput {
4174
4174
  },
4175
4175
  {
4176
4176
  /**
4177
- * The per-channel variant you intend to schedule. Omit to check the post text as written.
4177
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
4178
4178
  */
4179
4179
  text?: string;
4180
4180
  /**
@@ -4184,7 +4184,7 @@ interface ContentPublicationsValidateInput {
4184
4184
  },
4185
4185
  {
4186
4186
  /**
4187
- * The per-channel variant you intend to schedule. Omit to check the post text as written.
4187
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
4188
4188
  */
4189
4189
  text?: string;
4190
4190
  /**
@@ -4194,7 +4194,7 @@ interface ContentPublicationsValidateInput {
4194
4194
  },
4195
4195
  {
4196
4196
  /**
4197
- * The per-channel variant you intend to schedule. Omit to check the post text as written.
4197
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
4198
4198
  */
4199
4199
  text?: string;
4200
4200
  /**
@@ -4204,7 +4204,7 @@ interface ContentPublicationsValidateInput {
4204
4204
  },
4205
4205
  {
4206
4206
  /**
4207
- * The per-channel variant you intend to schedule. Omit to check the post text as written.
4207
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
4208
4208
  */
4209
4209
  text?: string;
4210
4210
  /**
@@ -4214,7 +4214,7 @@ interface ContentPublicationsValidateInput {
4214
4214
  },
4215
4215
  {
4216
4216
  /**
4217
- * The per-channel variant you intend to schedule. Omit to check the post text as written.
4217
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
4218
4218
  */
4219
4219
  text?: string;
4220
4220
  /**
@@ -4224,7 +4224,7 @@ interface ContentPublicationsValidateInput {
4224
4224
  },
4225
4225
  {
4226
4226
  /**
4227
- * The per-channel variant you intend to schedule. Omit to check the post text as written.
4227
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
4228
4228
  */
4229
4229
  text?: string;
4230
4230
  /**
@@ -4234,7 +4234,7 @@ interface ContentPublicationsValidateInput {
4234
4234
  },
4235
4235
  {
4236
4236
  /**
4237
- * The per-channel variant you intend to schedule. Omit to check the post text as written.
4237
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
4238
4238
  */
4239
4239
  text?: string;
4240
4240
  /**
@@ -4244,7 +4244,7 @@ interface ContentPublicationsValidateInput {
4244
4244
  },
4245
4245
  {
4246
4246
  /**
4247
- * The per-channel variant you intend to schedule. Omit to check the post text as written.
4247
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
4248
4248
  */
4249
4249
  text?: string;
4250
4250
  /**
@@ -4254,7 +4254,7 @@ interface ContentPublicationsValidateInput {
4254
4254
  },
4255
4255
  {
4256
4256
  /**
4257
- * The per-channel variant you intend to schedule. Omit to check the post text as written.
4257
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
4258
4258
  */
4259
4259
  text?: string;
4260
4260
  /**
@@ -4264,7 +4264,7 @@ interface ContentPublicationsValidateInput {
4264
4264
  },
4265
4265
  {
4266
4266
  /**
4267
- * The per-channel variant you intend to schedule. Omit to check the post text as written.
4267
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
4268
4268
  */
4269
4269
  text?: string;
4270
4270
  /**
@@ -4275,7 +4275,7 @@ interface ContentPublicationsValidateInput {
4275
4275
  ] | [
4276
4276
  {
4277
4277
  /**
4278
- * The per-channel variant you intend to schedule. Omit to check the post text as written.
4278
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
4279
4279
  */
4280
4280
  text?: string;
4281
4281
  /**
@@ -4285,7 +4285,7 @@ interface ContentPublicationsValidateInput {
4285
4285
  },
4286
4286
  {
4287
4287
  /**
4288
- * The per-channel variant you intend to schedule. Omit to check the post text as written.
4288
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
4289
4289
  */
4290
4290
  text?: string;
4291
4291
  /**
@@ -4295,7 +4295,7 @@ interface ContentPublicationsValidateInput {
4295
4295
  },
4296
4296
  {
4297
4297
  /**
4298
- * The per-channel variant you intend to schedule. Omit to check the post text as written.
4298
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
4299
4299
  */
4300
4300
  text?: string;
4301
4301
  /**
@@ -4305,7 +4305,7 @@ interface ContentPublicationsValidateInput {
4305
4305
  },
4306
4306
  {
4307
4307
  /**
4308
- * The per-channel variant you intend to schedule. Omit to check the post text as written.
4308
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
4309
4309
  */
4310
4310
  text?: string;
4311
4311
  /**
@@ -4315,7 +4315,7 @@ interface ContentPublicationsValidateInput {
4315
4315
  },
4316
4316
  {
4317
4317
  /**
4318
- * The per-channel variant you intend to schedule. Omit to check the post text as written.
4318
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
4319
4319
  */
4320
4320
  text?: string;
4321
4321
  /**
@@ -4325,7 +4325,7 @@ interface ContentPublicationsValidateInput {
4325
4325
  },
4326
4326
  {
4327
4327
  /**
4328
- * The per-channel variant you intend to schedule. Omit to check the post text as written.
4328
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
4329
4329
  */
4330
4330
  text?: string;
4331
4331
  /**
@@ -4335,7 +4335,7 @@ interface ContentPublicationsValidateInput {
4335
4335
  },
4336
4336
  {
4337
4337
  /**
4338
- * The per-channel variant you intend to schedule. Omit to check the post text as written.
4338
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
4339
4339
  */
4340
4340
  text?: string;
4341
4341
  /**
@@ -4345,7 +4345,7 @@ interface ContentPublicationsValidateInput {
4345
4345
  },
4346
4346
  {
4347
4347
  /**
4348
- * The per-channel variant you intend to schedule. Omit to check the post text as written.
4348
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
4349
4349
  */
4350
4350
  text?: string;
4351
4351
  /**
@@ -4355,7 +4355,7 @@ interface ContentPublicationsValidateInput {
4355
4355
  },
4356
4356
  {
4357
4357
  /**
4358
- * The per-channel variant you intend to schedule. Omit to check the post text as written.
4358
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
4359
4359
  */
4360
4360
  text?: string;
4361
4361
  /**
@@ -4365,7 +4365,7 @@ interface ContentPublicationsValidateInput {
4365
4365
  },
4366
4366
  {
4367
4367
  /**
4368
- * The per-channel variant you intend to schedule. Omit to check the post text as written.
4368
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
4369
4369
  */
4370
4370
  text?: string;
4371
4371
  /**
@@ -4375,7 +4375,7 @@ interface ContentPublicationsValidateInput {
4375
4375
  },
4376
4376
  {
4377
4377
  /**
4378
- * The per-channel variant you intend to schedule. Omit to check the post text as written.
4378
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
4379
4379
  */
4380
4380
  text?: string;
4381
4381
  /**
@@ -4385,7 +4385,7 @@ interface ContentPublicationsValidateInput {
4385
4385
  },
4386
4386
  {
4387
4387
  /**
4388
- * The per-channel variant you intend to schedule. Omit to check the post text as written.
4388
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
4389
4389
  */
4390
4390
  text?: string;
4391
4391
  /**
@@ -4395,7 +4395,7 @@ interface ContentPublicationsValidateInput {
4395
4395
  },
4396
4396
  {
4397
4397
  /**
4398
- * The per-channel variant you intend to schedule. Omit to check the post text as written.
4398
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
4399
4399
  */
4400
4400
  text?: string;
4401
4401
  /**
@@ -4405,7 +4405,7 @@ interface ContentPublicationsValidateInput {
4405
4405
  },
4406
4406
  {
4407
4407
  /**
4408
- * The per-channel variant you intend to schedule. Omit to check the post text as written.
4408
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
4409
4409
  */
4410
4410
  text?: string;
4411
4411
  /**
@@ -4415,7 +4415,7 @@ interface ContentPublicationsValidateInput {
4415
4415
  },
4416
4416
  {
4417
4417
  /**
4418
- * The per-channel variant you intend to schedule. Omit to check the post text as written.
4418
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
4419
4419
  */
4420
4420
  text?: string;
4421
4421
  /**
@@ -4426,7 +4426,7 @@ interface ContentPublicationsValidateInput {
4426
4426
  ] | [
4427
4427
  {
4428
4428
  /**
4429
- * The per-channel variant you intend to schedule. Omit to check the post text as written.
4429
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
4430
4430
  */
4431
4431
  text?: string;
4432
4432
  /**
@@ -4436,7 +4436,7 @@ interface ContentPublicationsValidateInput {
4436
4436
  },
4437
4437
  {
4438
4438
  /**
4439
- * The per-channel variant you intend to schedule. Omit to check the post text as written.
4439
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
4440
4440
  */
4441
4441
  text?: string;
4442
4442
  /**
@@ -4446,7 +4446,7 @@ interface ContentPublicationsValidateInput {
4446
4446
  },
4447
4447
  {
4448
4448
  /**
4449
- * The per-channel variant you intend to schedule. Omit to check the post text as written.
4449
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
4450
4450
  */
4451
4451
  text?: string;
4452
4452
  /**
@@ -4456,7 +4456,7 @@ interface ContentPublicationsValidateInput {
4456
4456
  },
4457
4457
  {
4458
4458
  /**
4459
- * The per-channel variant you intend to schedule. Omit to check the post text as written.
4459
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
4460
4460
  */
4461
4461
  text?: string;
4462
4462
  /**
@@ -4466,7 +4466,7 @@ interface ContentPublicationsValidateInput {
4466
4466
  },
4467
4467
  {
4468
4468
  /**
4469
- * The per-channel variant you intend to schedule. Omit to check the post text as written.
4469
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
4470
4470
  */
4471
4471
  text?: string;
4472
4472
  /**
@@ -4476,7 +4476,7 @@ interface ContentPublicationsValidateInput {
4476
4476
  },
4477
4477
  {
4478
4478
  /**
4479
- * The per-channel variant you intend to schedule. Omit to check the post text as written.
4479
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
4480
4480
  */
4481
4481
  text?: string;
4482
4482
  /**
@@ -4486,7 +4486,7 @@ interface ContentPublicationsValidateInput {
4486
4486
  },
4487
4487
  {
4488
4488
  /**
4489
- * The per-channel variant you intend to schedule. Omit to check the post text as written.
4489
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
4490
4490
  */
4491
4491
  text?: string;
4492
4492
  /**
@@ -4496,7 +4496,7 @@ interface ContentPublicationsValidateInput {
4496
4496
  },
4497
4497
  {
4498
4498
  /**
4499
- * The per-channel variant you intend to schedule. Omit to check the post text as written.
4499
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
4500
4500
  */
4501
4501
  text?: string;
4502
4502
  /**
@@ -4506,7 +4506,7 @@ interface ContentPublicationsValidateInput {
4506
4506
  },
4507
4507
  {
4508
4508
  /**
4509
- * The per-channel variant you intend to schedule. Omit to check the post text as written.
4509
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
4510
4510
  */
4511
4511
  text?: string;
4512
4512
  /**
@@ -4516,7 +4516,7 @@ interface ContentPublicationsValidateInput {
4516
4516
  },
4517
4517
  {
4518
4518
  /**
4519
- * The per-channel variant you intend to schedule. Omit to check the post text as written.
4519
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
4520
4520
  */
4521
4521
  text?: string;
4522
4522
  /**
@@ -4526,7 +4526,7 @@ interface ContentPublicationsValidateInput {
4526
4526
  },
4527
4527
  {
4528
4528
  /**
4529
- * The per-channel variant you intend to schedule. Omit to check the post text as written.
4529
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
4530
4530
  */
4531
4531
  text?: string;
4532
4532
  /**
@@ -4536,7 +4536,7 @@ interface ContentPublicationsValidateInput {
4536
4536
  },
4537
4537
  {
4538
4538
  /**
4539
- * The per-channel variant you intend to schedule. Omit to check the post text as written.
4539
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
4540
4540
  */
4541
4541
  text?: string;
4542
4542
  /**
@@ -4546,7 +4546,7 @@ interface ContentPublicationsValidateInput {
4546
4546
  },
4547
4547
  {
4548
4548
  /**
4549
- * The per-channel variant you intend to schedule. Omit to check the post text as written.
4549
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
4550
4550
  */
4551
4551
  text?: string;
4552
4552
  /**
@@ -4556,7 +4556,7 @@ interface ContentPublicationsValidateInput {
4556
4556
  },
4557
4557
  {
4558
4558
  /**
4559
- * The per-channel variant you intend to schedule. Omit to check the post text as written.
4559
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
4560
4560
  */
4561
4561
  text?: string;
4562
4562
  /**
@@ -4566,7 +4566,7 @@ interface ContentPublicationsValidateInput {
4566
4566
  },
4567
4567
  {
4568
4568
  /**
4569
- * The per-channel variant you intend to schedule. Omit to check the post text as written.
4569
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
4570
4570
  */
4571
4571
  text?: string;
4572
4572
  /**
@@ -4576,7 +4576,7 @@ interface ContentPublicationsValidateInput {
4576
4576
  },
4577
4577
  {
4578
4578
  /**
4579
- * The per-channel variant you intend to schedule. Omit to check the post text as written.
4579
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
4580
4580
  */
4581
4581
  text?: string;
4582
4582
  /**
@@ -4587,7 +4587,7 @@ interface ContentPublicationsValidateInput {
4587
4587
  ] | [
4588
4588
  {
4589
4589
  /**
4590
- * The per-channel variant you intend to schedule. Omit to check the post text as written.
4590
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
4591
4591
  */
4592
4592
  text?: string;
4593
4593
  /**
@@ -4597,7 +4597,7 @@ interface ContentPublicationsValidateInput {
4597
4597
  },
4598
4598
  {
4599
4599
  /**
4600
- * The per-channel variant you intend to schedule. Omit to check the post text as written.
4600
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
4601
4601
  */
4602
4602
  text?: string;
4603
4603
  /**
@@ -4607,7 +4607,7 @@ interface ContentPublicationsValidateInput {
4607
4607
  },
4608
4608
  {
4609
4609
  /**
4610
- * The per-channel variant you intend to schedule. Omit to check the post text as written.
4610
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
4611
4611
  */
4612
4612
  text?: string;
4613
4613
  /**
@@ -4617,7 +4617,7 @@ interface ContentPublicationsValidateInput {
4617
4617
  },
4618
4618
  {
4619
4619
  /**
4620
- * The per-channel variant you intend to schedule. Omit to check the post text as written.
4620
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
4621
4621
  */
4622
4622
  text?: string;
4623
4623
  /**
@@ -4627,7 +4627,7 @@ interface ContentPublicationsValidateInput {
4627
4627
  },
4628
4628
  {
4629
4629
  /**
4630
- * The per-channel variant you intend to schedule. Omit to check the post text as written.
4630
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
4631
4631
  */
4632
4632
  text?: string;
4633
4633
  /**
@@ -4637,7 +4637,7 @@ interface ContentPublicationsValidateInput {
4637
4637
  },
4638
4638
  {
4639
4639
  /**
4640
- * The per-channel variant you intend to schedule. Omit to check the post text as written.
4640
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
4641
4641
  */
4642
4642
  text?: string;
4643
4643
  /**
@@ -4647,7 +4647,7 @@ interface ContentPublicationsValidateInput {
4647
4647
  },
4648
4648
  {
4649
4649
  /**
4650
- * The per-channel variant you intend to schedule. Omit to check the post text as written.
4650
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
4651
4651
  */
4652
4652
  text?: string;
4653
4653
  /**
@@ -4657,7 +4657,7 @@ interface ContentPublicationsValidateInput {
4657
4657
  },
4658
4658
  {
4659
4659
  /**
4660
- * The per-channel variant you intend to schedule. Omit to check the post text as written.
4660
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
4661
4661
  */
4662
4662
  text?: string;
4663
4663
  /**
@@ -4667,7 +4667,7 @@ interface ContentPublicationsValidateInput {
4667
4667
  },
4668
4668
  {
4669
4669
  /**
4670
- * The per-channel variant you intend to schedule. Omit to check the post text as written.
4670
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
4671
4671
  */
4672
4672
  text?: string;
4673
4673
  /**
@@ -4677,7 +4677,7 @@ interface ContentPublicationsValidateInput {
4677
4677
  },
4678
4678
  {
4679
4679
  /**
4680
- * The per-channel variant you intend to schedule. Omit to check the post text as written.
4680
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
4681
4681
  */
4682
4682
  text?: string;
4683
4683
  /**
@@ -4687,7 +4687,7 @@ interface ContentPublicationsValidateInput {
4687
4687
  },
4688
4688
  {
4689
4689
  /**
4690
- * The per-channel variant you intend to schedule. Omit to check the post text as written.
4690
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
4691
4691
  */
4692
4692
  text?: string;
4693
4693
  /**
@@ -4697,7 +4697,7 @@ interface ContentPublicationsValidateInput {
4697
4697
  },
4698
4698
  {
4699
4699
  /**
4700
- * The per-channel variant you intend to schedule. Omit to check the post text as written.
4700
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
4701
4701
  */
4702
4702
  text?: string;
4703
4703
  /**
@@ -4707,7 +4707,7 @@ interface ContentPublicationsValidateInput {
4707
4707
  },
4708
4708
  {
4709
4709
  /**
4710
- * The per-channel variant you intend to schedule. Omit to check the post text as written.
4710
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
4711
4711
  */
4712
4712
  text?: string;
4713
4713
  /**
@@ -4717,7 +4717,7 @@ interface ContentPublicationsValidateInput {
4717
4717
  },
4718
4718
  {
4719
4719
  /**
4720
- * The per-channel variant you intend to schedule. Omit to check the post text as written.
4720
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
4721
4721
  */
4722
4722
  text?: string;
4723
4723
  /**
@@ -4727,7 +4727,7 @@ interface ContentPublicationsValidateInput {
4727
4727
  },
4728
4728
  {
4729
4729
  /**
4730
- * The per-channel variant you intend to schedule. Omit to check the post text as written.
4730
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
4731
4731
  */
4732
4732
  text?: string;
4733
4733
  /**
@@ -4737,7 +4737,7 @@ interface ContentPublicationsValidateInput {
4737
4737
  },
4738
4738
  {
4739
4739
  /**
4740
- * The per-channel variant you intend to schedule. Omit to check the post text as written.
4740
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
4741
4741
  */
4742
4742
  text?: string;
4743
4743
  /**
@@ -4747,7 +4747,7 @@ interface ContentPublicationsValidateInput {
4747
4747
  },
4748
4748
  {
4749
4749
  /**
4750
- * The per-channel variant you intend to schedule. Omit to check the post text as written.
4750
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
4751
4751
  */
4752
4752
  text?: string;
4753
4753
  /**
@@ -4758,7 +4758,7 @@ interface ContentPublicationsValidateInput {
4758
4758
  ] | [
4759
4759
  {
4760
4760
  /**
4761
- * The per-channel variant you intend to schedule. Omit to check the post text as written.
4761
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
4762
4762
  */
4763
4763
  text?: string;
4764
4764
  /**
@@ -4768,7 +4768,7 @@ interface ContentPublicationsValidateInput {
4768
4768
  },
4769
4769
  {
4770
4770
  /**
4771
- * The per-channel variant you intend to schedule. Omit to check the post text as written.
4771
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
4772
4772
  */
4773
4773
  text?: string;
4774
4774
  /**
@@ -4778,7 +4778,7 @@ interface ContentPublicationsValidateInput {
4778
4778
  },
4779
4779
  {
4780
4780
  /**
4781
- * The per-channel variant you intend to schedule. Omit to check the post text as written.
4781
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
4782
4782
  */
4783
4783
  text?: string;
4784
4784
  /**
@@ -4788,7 +4788,7 @@ interface ContentPublicationsValidateInput {
4788
4788
  },
4789
4789
  {
4790
4790
  /**
4791
- * The per-channel variant you intend to schedule. Omit to check the post text as written.
4791
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
4792
4792
  */
4793
4793
  text?: string;
4794
4794
  /**
@@ -4798,7 +4798,7 @@ interface ContentPublicationsValidateInput {
4798
4798
  },
4799
4799
  {
4800
4800
  /**
4801
- * The per-channel variant you intend to schedule. Omit to check the post text as written.
4801
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
4802
4802
  */
4803
4803
  text?: string;
4804
4804
  /**
@@ -4808,7 +4808,7 @@ interface ContentPublicationsValidateInput {
4808
4808
  },
4809
4809
  {
4810
4810
  /**
4811
- * The per-channel variant you intend to schedule. Omit to check the post text as written.
4811
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
4812
4812
  */
4813
4813
  text?: string;
4814
4814
  /**
@@ -4818,7 +4818,7 @@ interface ContentPublicationsValidateInput {
4818
4818
  },
4819
4819
  {
4820
4820
  /**
4821
- * The per-channel variant you intend to schedule. Omit to check the post text as written.
4821
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
4822
4822
  */
4823
4823
  text?: string;
4824
4824
  /**
@@ -4828,7 +4828,7 @@ interface ContentPublicationsValidateInput {
4828
4828
  },
4829
4829
  {
4830
4830
  /**
4831
- * The per-channel variant you intend to schedule. Omit to check the post text as written.
4831
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
4832
4832
  */
4833
4833
  text?: string;
4834
4834
  /**
@@ -4838,7 +4838,7 @@ interface ContentPublicationsValidateInput {
4838
4838
  },
4839
4839
  {
4840
4840
  /**
4841
- * The per-channel variant you intend to schedule. Omit to check the post text as written.
4841
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
4842
4842
  */
4843
4843
  text?: string;
4844
4844
  /**
@@ -4848,7 +4848,7 @@ interface ContentPublicationsValidateInput {
4848
4848
  },
4849
4849
  {
4850
4850
  /**
4851
- * The per-channel variant you intend to schedule. Omit to check the post text as written.
4851
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
4852
4852
  */
4853
4853
  text?: string;
4854
4854
  /**
@@ -4858,7 +4858,7 @@ interface ContentPublicationsValidateInput {
4858
4858
  },
4859
4859
  {
4860
4860
  /**
4861
- * The per-channel variant you intend to schedule. Omit to check the post text as written.
4861
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
4862
4862
  */
4863
4863
  text?: string;
4864
4864
  /**
@@ -4868,7 +4868,7 @@ interface ContentPublicationsValidateInput {
4868
4868
  },
4869
4869
  {
4870
4870
  /**
4871
- * The per-channel variant you intend to schedule. Omit to check the post text as written.
4871
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
4872
4872
  */
4873
4873
  text?: string;
4874
4874
  /**
@@ -4878,7 +4878,7 @@ interface ContentPublicationsValidateInput {
4878
4878
  },
4879
4879
  {
4880
4880
  /**
4881
- * The per-channel variant you intend to schedule. Omit to check the post text as written.
4881
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
4882
4882
  */
4883
4883
  text?: string;
4884
4884
  /**
@@ -4888,7 +4888,7 @@ interface ContentPublicationsValidateInput {
4888
4888
  },
4889
4889
  {
4890
4890
  /**
4891
- * The per-channel variant you intend to schedule. Omit to check the post text as written.
4891
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
4892
4892
  */
4893
4893
  text?: string;
4894
4894
  /**
@@ -4898,7 +4898,7 @@ interface ContentPublicationsValidateInput {
4898
4898
  },
4899
4899
  {
4900
4900
  /**
4901
- * The per-channel variant you intend to schedule. Omit to check the post text as written.
4901
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
4902
4902
  */
4903
4903
  text?: string;
4904
4904
  /**
@@ -4908,7 +4908,7 @@ interface ContentPublicationsValidateInput {
4908
4908
  },
4909
4909
  {
4910
4910
  /**
4911
- * The per-channel variant you intend to schedule. Omit to check the post text as written.
4911
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
4912
4912
  */
4913
4913
  text?: string;
4914
4914
  /**
@@ -4918,7 +4918,7 @@ interface ContentPublicationsValidateInput {
4918
4918
  },
4919
4919
  {
4920
4920
  /**
4921
- * The per-channel variant you intend to schedule. Omit to check the post text as written.
4921
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
4922
4922
  */
4923
4923
  text?: string;
4924
4924
  /**
@@ -4928,7 +4928,7 @@ interface ContentPublicationsValidateInput {
4928
4928
  },
4929
4929
  {
4930
4930
  /**
4931
- * The per-channel variant you intend to schedule. Omit to check the post text as written.
4931
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
4932
4932
  */
4933
4933
  text?: string;
4934
4934
  /**
@@ -4939,7 +4939,7 @@ interface ContentPublicationsValidateInput {
4939
4939
  ] | [
4940
4940
  {
4941
4941
  /**
4942
- * The per-channel variant you intend to schedule. Omit to check the post text as written.
4942
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
4943
4943
  */
4944
4944
  text?: string;
4945
4945
  /**
@@ -4949,7 +4949,7 @@ interface ContentPublicationsValidateInput {
4949
4949
  },
4950
4950
  {
4951
4951
  /**
4952
- * The per-channel variant you intend to schedule. Omit to check the post text as written.
4952
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
4953
4953
  */
4954
4954
  text?: string;
4955
4955
  /**
@@ -4959,7 +4959,7 @@ interface ContentPublicationsValidateInput {
4959
4959
  },
4960
4960
  {
4961
4961
  /**
4962
- * The per-channel variant you intend to schedule. Omit to check the post text as written.
4962
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
4963
4963
  */
4964
4964
  text?: string;
4965
4965
  /**
@@ -4969,7 +4969,7 @@ interface ContentPublicationsValidateInput {
4969
4969
  },
4970
4970
  {
4971
4971
  /**
4972
- * The per-channel variant you intend to schedule. Omit to check the post text as written.
4972
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
4973
4973
  */
4974
4974
  text?: string;
4975
4975
  /**
@@ -4979,7 +4979,7 @@ interface ContentPublicationsValidateInput {
4979
4979
  },
4980
4980
  {
4981
4981
  /**
4982
- * The per-channel variant you intend to schedule. Omit to check the post text as written.
4982
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
4983
4983
  */
4984
4984
  text?: string;
4985
4985
  /**
@@ -4989,7 +4989,7 @@ interface ContentPublicationsValidateInput {
4989
4989
  },
4990
4990
  {
4991
4991
  /**
4992
- * The per-channel variant you intend to schedule. Omit to check the post text as written.
4992
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
4993
4993
  */
4994
4994
  text?: string;
4995
4995
  /**
@@ -4999,7 +4999,7 @@ interface ContentPublicationsValidateInput {
4999
4999
  },
5000
5000
  {
5001
5001
  /**
5002
- * The per-channel variant you intend to schedule. Omit to check the post text as written.
5002
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
5003
5003
  */
5004
5004
  text?: string;
5005
5005
  /**
@@ -5009,7 +5009,7 @@ interface ContentPublicationsValidateInput {
5009
5009
  },
5010
5010
  {
5011
5011
  /**
5012
- * The per-channel variant you intend to schedule. Omit to check the post text as written.
5012
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
5013
5013
  */
5014
5014
  text?: string;
5015
5015
  /**
@@ -5019,7 +5019,7 @@ interface ContentPublicationsValidateInput {
5019
5019
  },
5020
5020
  {
5021
5021
  /**
5022
- * The per-channel variant you intend to schedule. Omit to check the post text as written.
5022
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
5023
5023
  */
5024
5024
  text?: string;
5025
5025
  /**
@@ -5029,7 +5029,7 @@ interface ContentPublicationsValidateInput {
5029
5029
  },
5030
5030
  {
5031
5031
  /**
5032
- * The per-channel variant you intend to schedule. Omit to check the post text as written.
5032
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
5033
5033
  */
5034
5034
  text?: string;
5035
5035
  /**
@@ -5039,7 +5039,7 @@ interface ContentPublicationsValidateInput {
5039
5039
  },
5040
5040
  {
5041
5041
  /**
5042
- * The per-channel variant you intend to schedule. Omit to check the post text as written.
5042
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
5043
5043
  */
5044
5044
  text?: string;
5045
5045
  /**
@@ -5049,7 +5049,7 @@ interface ContentPublicationsValidateInput {
5049
5049
  },
5050
5050
  {
5051
5051
  /**
5052
- * The per-channel variant you intend to schedule. Omit to check the post text as written.
5052
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
5053
5053
  */
5054
5054
  text?: string;
5055
5055
  /**
@@ -5059,7 +5059,7 @@ interface ContentPublicationsValidateInput {
5059
5059
  },
5060
5060
  {
5061
5061
  /**
5062
- * The per-channel variant you intend to schedule. Omit to check the post text as written.
5062
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
5063
5063
  */
5064
5064
  text?: string;
5065
5065
  /**
@@ -5069,7 +5069,7 @@ interface ContentPublicationsValidateInput {
5069
5069
  },
5070
5070
  {
5071
5071
  /**
5072
- * The per-channel variant you intend to schedule. Omit to check the post text as written.
5072
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
5073
5073
  */
5074
5074
  text?: string;
5075
5075
  /**
@@ -5079,7 +5079,7 @@ interface ContentPublicationsValidateInput {
5079
5079
  },
5080
5080
  {
5081
5081
  /**
5082
- * The per-channel variant you intend to schedule. Omit to check the post text as written.
5082
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
5083
5083
  */
5084
5084
  text?: string;
5085
5085
  /**
@@ -5089,7 +5089,7 @@ interface ContentPublicationsValidateInput {
5089
5089
  },
5090
5090
  {
5091
5091
  /**
5092
- * The per-channel variant you intend to schedule. Omit to check the post text as written.
5092
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
5093
5093
  */
5094
5094
  text?: string;
5095
5095
  /**
@@ -5099,7 +5099,7 @@ interface ContentPublicationsValidateInput {
5099
5099
  },
5100
5100
  {
5101
5101
  /**
5102
- * The per-channel variant you intend to schedule. Omit to check the post text as written.
5102
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
5103
5103
  */
5104
5104
  text?: string;
5105
5105
  /**
@@ -5109,7 +5109,7 @@ interface ContentPublicationsValidateInput {
5109
5109
  },
5110
5110
  {
5111
5111
  /**
5112
- * The per-channel variant you intend to schedule. Omit to check the post text as written.
5112
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
5113
5113
  */
5114
5114
  text?: string;
5115
5115
  /**
@@ -5119,7 +5119,7 @@ interface ContentPublicationsValidateInput {
5119
5119
  },
5120
5120
  {
5121
5121
  /**
5122
- * The per-channel variant you intend to schedule. Omit to check the post text as written.
5122
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
5123
5123
  */
5124
5124
  text?: string;
5125
5125
  /**
@@ -5130,7 +5130,7 @@ interface ContentPublicationsValidateInput {
5130
5130
  ] | [
5131
5131
  {
5132
5132
  /**
5133
- * The per-channel variant you intend to schedule. Omit to check the post text as written.
5133
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
5134
5134
  */
5135
5135
  text?: string;
5136
5136
  /**
@@ -5140,7 +5140,7 @@ interface ContentPublicationsValidateInput {
5140
5140
  },
5141
5141
  {
5142
5142
  /**
5143
- * The per-channel variant you intend to schedule. Omit to check the post text as written.
5143
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
5144
5144
  */
5145
5145
  text?: string;
5146
5146
  /**
@@ -5150,7 +5150,7 @@ interface ContentPublicationsValidateInput {
5150
5150
  },
5151
5151
  {
5152
5152
  /**
5153
- * The per-channel variant you intend to schedule. Omit to check the post text as written.
5153
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
5154
5154
  */
5155
5155
  text?: string;
5156
5156
  /**
@@ -5160,7 +5160,7 @@ interface ContentPublicationsValidateInput {
5160
5160
  },
5161
5161
  {
5162
5162
  /**
5163
- * The per-channel variant you intend to schedule. Omit to check the post text as written.
5163
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
5164
5164
  */
5165
5165
  text?: string;
5166
5166
  /**
@@ -5170,7 +5170,7 @@ interface ContentPublicationsValidateInput {
5170
5170
  },
5171
5171
  {
5172
5172
  /**
5173
- * The per-channel variant you intend to schedule. Omit to check the post text as written.
5173
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
5174
5174
  */
5175
5175
  text?: string;
5176
5176
  /**
@@ -5180,7 +5180,7 @@ interface ContentPublicationsValidateInput {
5180
5180
  },
5181
5181
  {
5182
5182
  /**
5183
- * The per-channel variant you intend to schedule. Omit to check the post text as written.
5183
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
5184
5184
  */
5185
5185
  text?: string;
5186
5186
  /**
@@ -5190,7 +5190,7 @@ interface ContentPublicationsValidateInput {
5190
5190
  },
5191
5191
  {
5192
5192
  /**
5193
- * The per-channel variant you intend to schedule. Omit to check the post text as written.
5193
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
5194
5194
  */
5195
5195
  text?: string;
5196
5196
  /**
@@ -5200,7 +5200,7 @@ interface ContentPublicationsValidateInput {
5200
5200
  },
5201
5201
  {
5202
5202
  /**
5203
- * The per-channel variant you intend to schedule. Omit to check the post text as written.
5203
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
5204
5204
  */
5205
5205
  text?: string;
5206
5206
  /**
@@ -5210,7 +5210,7 @@ interface ContentPublicationsValidateInput {
5210
5210
  },
5211
5211
  {
5212
5212
  /**
5213
- * The per-channel variant you intend to schedule. Omit to check the post text as written.
5213
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
5214
5214
  */
5215
5215
  text?: string;
5216
5216
  /**
@@ -5220,7 +5220,7 @@ interface ContentPublicationsValidateInput {
5220
5220
  },
5221
5221
  {
5222
5222
  /**
5223
- * The per-channel variant you intend to schedule. Omit to check the post text as written.
5223
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
5224
5224
  */
5225
5225
  text?: string;
5226
5226
  /**
@@ -5230,7 +5230,7 @@ interface ContentPublicationsValidateInput {
5230
5230
  },
5231
5231
  {
5232
5232
  /**
5233
- * The per-channel variant you intend to schedule. Omit to check the post text as written.
5233
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
5234
5234
  */
5235
5235
  text?: string;
5236
5236
  /**
@@ -5240,7 +5240,7 @@ interface ContentPublicationsValidateInput {
5240
5240
  },
5241
5241
  {
5242
5242
  /**
5243
- * The per-channel variant you intend to schedule. Omit to check the post text as written.
5243
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
5244
5244
  */
5245
5245
  text?: string;
5246
5246
  /**
@@ -5250,7 +5250,7 @@ interface ContentPublicationsValidateInput {
5250
5250
  },
5251
5251
  {
5252
5252
  /**
5253
- * The per-channel variant you intend to schedule. Omit to check the post text as written.
5253
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
5254
5254
  */
5255
5255
  text?: string;
5256
5256
  /**
@@ -5260,7 +5260,7 @@ interface ContentPublicationsValidateInput {
5260
5260
  },
5261
5261
  {
5262
5262
  /**
5263
- * The per-channel variant you intend to schedule. Omit to check the post text as written.
5263
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
5264
5264
  */
5265
5265
  text?: string;
5266
5266
  /**
@@ -5270,7 +5270,7 @@ interface ContentPublicationsValidateInput {
5270
5270
  },
5271
5271
  {
5272
5272
  /**
5273
- * The per-channel variant you intend to schedule. Omit to check the post text as written.
5273
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
5274
5274
  */
5275
5275
  text?: string;
5276
5276
  /**
@@ -5280,7 +5280,7 @@ interface ContentPublicationsValidateInput {
5280
5280
  },
5281
5281
  {
5282
5282
  /**
5283
- * The per-channel variant you intend to schedule. Omit to check the post text as written.
5283
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
5284
5284
  */
5285
5285
  text?: string;
5286
5286
  /**
@@ -5290,7 +5290,7 @@ interface ContentPublicationsValidateInput {
5290
5290
  },
5291
5291
  {
5292
5292
  /**
5293
- * The per-channel variant you intend to schedule. Omit to check the post text as written.
5293
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
5294
5294
  */
5295
5295
  text?: string;
5296
5296
  /**
@@ -5300,7 +5300,7 @@ interface ContentPublicationsValidateInput {
5300
5300
  },
5301
5301
  {
5302
5302
  /**
5303
- * The per-channel variant you intend to schedule. Omit to check the post text as written.
5303
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
5304
5304
  */
5305
5305
  text?: string;
5306
5306
  /**
@@ -5310,7 +5310,7 @@ interface ContentPublicationsValidateInput {
5310
5310
  },
5311
5311
  {
5312
5312
  /**
5313
- * The per-channel variant you intend to schedule. Omit to check the post text as written.
5313
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
5314
5314
  */
5315
5315
  text?: string;
5316
5316
  /**
@@ -5320,7 +5320,7 @@ interface ContentPublicationsValidateInput {
5320
5320
  },
5321
5321
  {
5322
5322
  /**
5323
- * The per-channel variant you intend to schedule. Omit to check the post text as written.
5323
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
5324
5324
  */
5325
5325
  text?: string;
5326
5326
  /**
@@ -5344,7 +5344,7 @@ interface ContentPublicationsValidateOutput {
5344
5344
  */
5345
5345
  channels: {
5346
5346
  /**
5347
- * The exact text that would be published to this channel.
5347
+ * The markdown that was checked, exactly as it was given or stored.
5348
5348
  */
5349
5349
  text: string;
5350
5350
  /**
@@ -5405,6 +5405,10 @@ interface ContentPublicationsValidateOutput {
5405
5405
  * The channel as a person sees it.
5406
5406
  */
5407
5407
  displayName: string;
5408
+ /**
5409
+ * The text that would actually be published to this channel: the markdown flattened to plain network text — emphasis as styled characters, lists as bullets, links as "text (url)". Scheduling stores this string, so what you read here is what goes out, character for character. Length and cost are judged on it, not on the markdown.
5410
+ */
5411
+ renderedText: string;
5408
5412
  }[];
5409
5413
  }
5410
5414
  interface DeploymentAlertCreateInput {