bundlesocial 2.54.0 → 2.56.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.
- package/dist/index.d.mts +1805 -133
- package/dist/index.d.ts +1805 -133
- package/dist/index.js +1 -1
- package/dist/index.mjs +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -1516,14 +1516,15 @@ type PostReconnectSocialAccountResponse = {
|
|
|
1516
1516
|
message?: string;
|
|
1517
1517
|
}>;
|
|
1518
1518
|
};
|
|
1519
|
-
type
|
|
1520
|
-
|
|
1519
|
+
type PostGetByReferenceKeyData = {
|
|
1520
|
+
referenceKey: string;
|
|
1521
1521
|
};
|
|
1522
|
-
type
|
|
1522
|
+
type PostGetByReferenceKeyResponse = {
|
|
1523
1523
|
id: string;
|
|
1524
1524
|
teamId: string;
|
|
1525
1525
|
organizationId?: string | null;
|
|
1526
1526
|
title: string;
|
|
1527
|
+
referenceKey?: string | null;
|
|
1527
1528
|
postDate: string | null;
|
|
1528
1529
|
postedDate?: string | null;
|
|
1529
1530
|
status: 'DRAFT' | 'SCHEDULED' | 'POSTED' | 'ERROR' | 'DELETED' | 'PROCESSING' | 'REVIEW' | 'RETRYING';
|
|
@@ -1867,6 +1868,10 @@ type PostGetResponse = {
|
|
|
1867
1868
|
* Card description for the external link card
|
|
1868
1869
|
*/
|
|
1869
1870
|
externalDescription?: string | null;
|
|
1871
|
+
/**
|
|
1872
|
+
* This should be URL to publicly available image uploaded to bundle.social account.
|
|
1873
|
+
*/
|
|
1874
|
+
thumbnail?: string | null;
|
|
1870
1875
|
/**
|
|
1871
1876
|
* Alt text for the video embed.
|
|
1872
1877
|
*/
|
|
@@ -2214,86 +2219,790 @@ type PostGetResponse = {
|
|
|
2214
2219
|
};
|
|
2215
2220
|
}>;
|
|
2216
2221
|
};
|
|
2217
|
-
type
|
|
2222
|
+
type PostGetData = {
|
|
2218
2223
|
id: string;
|
|
2219
|
-
|
|
2220
|
-
|
|
2221
|
-
|
|
2222
|
-
|
|
2223
|
-
|
|
2224
|
-
|
|
2225
|
-
|
|
2226
|
-
|
|
2227
|
-
|
|
2228
|
-
|
|
2229
|
-
|
|
2230
|
-
|
|
2231
|
-
|
|
2224
|
+
};
|
|
2225
|
+
type PostGetResponse = {
|
|
2226
|
+
id: string;
|
|
2227
|
+
teamId: string;
|
|
2228
|
+
organizationId?: string | null;
|
|
2229
|
+
title: string;
|
|
2230
|
+
referenceKey?: string | null;
|
|
2231
|
+
postDate: string | null;
|
|
2232
|
+
postedDate?: string | null;
|
|
2233
|
+
status: 'DRAFT' | 'SCHEDULED' | 'POSTED' | 'ERROR' | 'DELETED' | 'PROCESSING' | 'REVIEW' | 'RETRYING';
|
|
2234
|
+
data: {
|
|
2235
|
+
TWITTER?: {
|
|
2236
|
+
text?: string | null;
|
|
2237
|
+
uploadIds?: Array<(string)> | null;
|
|
2238
|
+
replySettings?: 'EVERYONE' | 'FOLLOWING' | 'MENTIONED_USERS' | 'SUBSCRIBERS' | 'VERIFIED' | null;
|
|
2239
|
+
} | null;
|
|
2240
|
+
PINTEREST?: {
|
|
2241
|
+
text?: string | null;
|
|
2242
|
+
description?: string | null;
|
|
2243
|
+
boardName: string;
|
|
2244
|
+
uploadIds?: Array<(string)> | null;
|
|
2245
|
+
/**
|
|
2246
|
+
* The URL to image uploaded on bundle.social.
|
|
2247
|
+
*/
|
|
2248
|
+
thumbnail?: string | null;
|
|
2249
|
+
/**
|
|
2250
|
+
* The URL to which the Pin will link to.
|
|
2251
|
+
*/
|
|
2252
|
+
link?: string | null;
|
|
2253
|
+
/**
|
|
2254
|
+
* The alt text for the image. This is used by screen readers and when the image can't be loaded.
|
|
2255
|
+
*/
|
|
2256
|
+
altText?: string | null;
|
|
2257
|
+
/**
|
|
2258
|
+
* A note about the Pin. This is not visible to the public.
|
|
2259
|
+
*/
|
|
2260
|
+
note?: string | null;
|
|
2261
|
+
/**
|
|
2262
|
+
* The dominant color of the image. This is used to display the image before it's loaded.
|
|
2263
|
+
*/
|
|
2264
|
+
dominantColor?: string | null;
|
|
2265
|
+
} | null;
|
|
2266
|
+
FACEBOOK?: {
|
|
2267
|
+
type?: 'POST' | 'REEL' | 'STORY';
|
|
2268
|
+
text?: string | null;
|
|
2269
|
+
uploadIds?: Array<(string)> | null;
|
|
2270
|
+
mediaItems?: Array<{
|
|
2271
|
+
uploadId: string;
|
|
2272
|
+
altText?: string | null;
|
|
2273
|
+
}> | null;
|
|
2274
|
+
/**
|
|
2275
|
+
* The URL to which the post will link to. Only available for type POST.
|
|
2276
|
+
*/
|
|
2277
|
+
link?: string | null;
|
|
2278
|
+
/**
|
|
2279
|
+
* The URL to image uploaded on bundle.social.
|
|
2280
|
+
*/
|
|
2281
|
+
thumbnail?: string | null;
|
|
2282
|
+
/**
|
|
2283
|
+
* Title for video posts (type POST with video only, not REEL or STORY). This is displayed as the video title on Facebook.
|
|
2284
|
+
*/
|
|
2285
|
+
mediaTitle?: string | null;
|
|
2286
|
+
/**
|
|
2287
|
+
* If passed, instead of publishing immediately, the post will be scheduled for the given date/time directly in Meta scheduler. Local date/time as ISO 8601 string max 30 days in the future.
|
|
2288
|
+
*/
|
|
2289
|
+
nativeScheduleTime?: string | null;
|
|
2290
|
+
} | null;
|
|
2291
|
+
INSTAGRAM?: {
|
|
2292
|
+
type?: 'POST' | 'REEL' | 'STORY';
|
|
2293
|
+
text?: string | null;
|
|
2294
|
+
uploadIds?: Array<(string)> | null;
|
|
2295
|
+
/**
|
|
2296
|
+
* Alternative text for a single image post.
|
|
2297
|
+
*/
|
|
2298
|
+
altText?: string | null;
|
|
2299
|
+
/**
|
|
2300
|
+
* Choose a frame of the published video as the cover photo in ms
|
|
2301
|
+
*/
|
|
2302
|
+
thumbnailOffset?: number | null;
|
|
2303
|
+
/**
|
|
2304
|
+
* The URL to image uploaded on bundle.social.
|
|
2305
|
+
*/
|
|
2306
|
+
thumbnail?: string | null;
|
|
2307
|
+
/**
|
|
2308
|
+
* For Reels only.When true, indicates that the reel can appear in both the Feed and Reels tabs.When false, indicates the reel can only appear in the Reels tab.
|
|
2309
|
+
*/
|
|
2310
|
+
shareToFeed?: boolean | null;
|
|
2311
|
+
collaborators?: Array<(string)> | null;
|
|
2312
|
+
autoFitImage?: boolean | null;
|
|
2313
|
+
autoCropImage?: boolean | null;
|
|
2314
|
+
tagged?: Array<{
|
|
2315
|
+
username: string;
|
|
2316
|
+
x?: number;
|
|
2317
|
+
y?: number;
|
|
2318
|
+
}> | null;
|
|
2319
|
+
carouselItems?: Array<{
|
|
2320
|
+
uploadId: string;
|
|
2321
|
+
altText?: string | null;
|
|
2322
|
+
tagged?: Array<{
|
|
2323
|
+
username: string;
|
|
2324
|
+
x: number;
|
|
2325
|
+
y: number;
|
|
2326
|
+
}> | null;
|
|
2327
|
+
}> | null;
|
|
2328
|
+
locationId?: string | null;
|
|
2329
|
+
/**
|
|
2330
|
+
* For Reels only. Trial reels are only shared to non-followers.
|
|
2331
|
+
*/
|
|
2332
|
+
trialParams?: {
|
|
2333
|
+
graduationStrategy: 'MANUAL' | 'SS_PERFORMANCE';
|
|
2232
2334
|
} | null;
|
|
2233
|
-
|
|
2234
|
-
|
|
2235
|
-
|
|
2236
|
-
|
|
2237
|
-
uploadIds?: Array<(string)> | null;
|
|
2335
|
+
/**
|
|
2336
|
+
* Information about the Instagram audio asset used for Reels publishing.
|
|
2337
|
+
*/
|
|
2338
|
+
musicSoundInfo?: {
|
|
2238
2339
|
/**
|
|
2239
|
-
*
|
|
2340
|
+
* Use audio_id from Instagram Audio API search endpoint.
|
|
2240
2341
|
*/
|
|
2241
|
-
|
|
2342
|
+
musicSoundId: string;
|
|
2242
2343
|
/**
|
|
2243
|
-
*
|
|
2344
|
+
* Audio volume (0-100).
|
|
2244
2345
|
*/
|
|
2245
|
-
|
|
2346
|
+
musicSoundVolume?: number | null;
|
|
2246
2347
|
/**
|
|
2247
|
-
*
|
|
2348
|
+
* Background volume of the original video sound (0-100).
|
|
2248
2349
|
*/
|
|
2350
|
+
videoOriginalSoundVolume?: number | null;
|
|
2351
|
+
} | null;
|
|
2352
|
+
} | null;
|
|
2353
|
+
THREADS?: {
|
|
2354
|
+
text?: string | null;
|
|
2355
|
+
uploadIds?: Array<(string)> | null;
|
|
2356
|
+
mediaItems?: Array<{
|
|
2357
|
+
uploadId: string;
|
|
2249
2358
|
altText?: string | null;
|
|
2359
|
+
}> | null;
|
|
2360
|
+
} | null;
|
|
2361
|
+
TIKTOK?: {
|
|
2362
|
+
type?: 'VIDEO' | 'IMAGE';
|
|
2363
|
+
text?: string | null;
|
|
2364
|
+
uploadIds?: Array<(string)> | null;
|
|
2365
|
+
/**
|
|
2366
|
+
* The URL to image uploaded on bundle.social.
|
|
2367
|
+
*/
|
|
2368
|
+
thumbnail?: string | null;
|
|
2369
|
+
privacy?: 'SELF_ONLY' | 'PUBLIC_TO_EVERYONE' | 'MUTUAL_FOLLOW_FRIENDS' | 'FOLLOWER_OF_CREATOR' | null;
|
|
2370
|
+
photoCoverIndex?: number | null;
|
|
2371
|
+
/**
|
|
2372
|
+
* Set to true if the video is a paid partnership to promote a third-party business.
|
|
2373
|
+
*/
|
|
2374
|
+
isBrandContent?: boolean | null;
|
|
2375
|
+
/**
|
|
2376
|
+
* Set to true if this video is promoting the creator's own business.
|
|
2377
|
+
*/
|
|
2378
|
+
isOrganicBrandContent?: boolean | null;
|
|
2379
|
+
/**
|
|
2380
|
+
* If set to true, other TikTok users will not be allowed to make comments on this post.
|
|
2381
|
+
*/
|
|
2382
|
+
disableComments?: boolean | null;
|
|
2383
|
+
/**
|
|
2384
|
+
* If set to true, other TikTok users will not be allowed to make Stitches using this post.
|
|
2385
|
+
*/
|
|
2386
|
+
disableDuet?: boolean | null;
|
|
2387
|
+
/**
|
|
2388
|
+
* If set to true, other TikTok users will not be allowed to make Duets using this post.
|
|
2389
|
+
*/
|
|
2390
|
+
disableStitch?: boolean | null;
|
|
2391
|
+
/**
|
|
2392
|
+
* Choose a frame of the published video as the cover photo in ms
|
|
2393
|
+
*/
|
|
2394
|
+
thumbnailOffset?: number | null;
|
|
2395
|
+
/**
|
|
2396
|
+
* Set to true if this video is AI generated.
|
|
2397
|
+
*/
|
|
2398
|
+
isAiGenerated?: boolean | null;
|
|
2399
|
+
/**
|
|
2400
|
+
* If set to true, TikTok will automatically add music to the photos.
|
|
2401
|
+
*/
|
|
2402
|
+
autoAddMusic?: boolean | null;
|
|
2403
|
+
autoScale?: boolean | null;
|
|
2404
|
+
/**
|
|
2405
|
+
* If set to true, upload post as draft.
|
|
2406
|
+
*/
|
|
2407
|
+
uploadToDraft?: boolean | null;
|
|
2408
|
+
/**
|
|
2409
|
+
* Information about the commercial sound (track) used for TikTok publishing.
|
|
2410
|
+
*/
|
|
2411
|
+
musicSoundInfo?: {
|
|
2250
2412
|
/**
|
|
2251
|
-
*
|
|
2252
|
-
*/
|
|
2253
|
-
note?: string | null;
|
|
2254
|
-
/**
|
|
2255
|
-
* The dominant color of the image. This is used to display the image before it's loaded.
|
|
2413
|
+
* Use song_clip_id from CML trending list (full_duration_song_clip or trending_song_clip).
|
|
2256
2414
|
*/
|
|
2257
|
-
|
|
2258
|
-
} | null;
|
|
2259
|
-
FACEBOOK?: {
|
|
2260
|
-
type?: 'POST' | 'REEL' | 'STORY';
|
|
2261
|
-
text?: string | null;
|
|
2262
|
-
uploadIds?: Array<(string)> | null;
|
|
2263
|
-
mediaItems?: Array<{
|
|
2264
|
-
uploadId: string;
|
|
2265
|
-
altText?: string | null;
|
|
2266
|
-
}> | null;
|
|
2415
|
+
musicSoundId: string;
|
|
2267
2416
|
/**
|
|
2268
|
-
*
|
|
2417
|
+
* Commercial sound volume (0-100).
|
|
2269
2418
|
*/
|
|
2270
|
-
|
|
2419
|
+
musicSoundVolume?: number | null;
|
|
2271
2420
|
/**
|
|
2272
|
-
*
|
|
2421
|
+
* Starting point of the commercial sound in milliseconds.
|
|
2273
2422
|
*/
|
|
2274
|
-
|
|
2423
|
+
musicSoundStart?: number | null;
|
|
2275
2424
|
/**
|
|
2276
|
-
*
|
|
2425
|
+
* Ending point of the commercial sound in milliseconds.
|
|
2277
2426
|
*/
|
|
2278
|
-
|
|
2427
|
+
musicSoundEnd?: number | null;
|
|
2279
2428
|
/**
|
|
2280
|
-
*
|
|
2429
|
+
* Background volume of the original video sound (0-100).
|
|
2281
2430
|
*/
|
|
2282
|
-
|
|
2431
|
+
videoOriginalSoundVolume?: number | null;
|
|
2283
2432
|
} | null;
|
|
2284
|
-
|
|
2285
|
-
|
|
2286
|
-
|
|
2287
|
-
|
|
2288
|
-
|
|
2289
|
-
|
|
2290
|
-
|
|
2291
|
-
|
|
2292
|
-
|
|
2293
|
-
|
|
2294
|
-
|
|
2295
|
-
|
|
2296
|
-
|
|
2433
|
+
} | null;
|
|
2434
|
+
LINKEDIN?: {
|
|
2435
|
+
text: string;
|
|
2436
|
+
uploadIds?: Array<(string)> | null;
|
|
2437
|
+
/**
|
|
2438
|
+
* Optional URL for LinkedIn article preview post.
|
|
2439
|
+
*/
|
|
2440
|
+
link?: string | null;
|
|
2441
|
+
/**
|
|
2442
|
+
* The URL to image uploaded on bundle.social.
|
|
2443
|
+
*/
|
|
2444
|
+
thumbnail?: string | null;
|
|
2445
|
+
/**
|
|
2446
|
+
* Title for video or document posts. If not provided for videos, LinkedIn displays the posting date under the video.
|
|
2447
|
+
*/
|
|
2448
|
+
mediaTitle?: string | null;
|
|
2449
|
+
privacy?: 'CONNECTIONS' | 'PUBLIC' | 'LOGGED_IN' | 'CONTAINER' | null;
|
|
2450
|
+
/**
|
|
2451
|
+
* Set to true if the post shouldn't be displayed in the main feed.
|
|
2452
|
+
*/
|
|
2453
|
+
hideFromFeed?: boolean | null;
|
|
2454
|
+
/**
|
|
2455
|
+
* Set to true if the post is not allowed to be reshared.
|
|
2456
|
+
*/
|
|
2457
|
+
disableReshare?: boolean | null;
|
|
2458
|
+
} | null;
|
|
2459
|
+
YOUTUBE?: {
|
|
2460
|
+
type?: 'VIDEO' | 'SHORT';
|
|
2461
|
+
uploadIds?: Array<(string)> | null;
|
|
2462
|
+
text?: string | null;
|
|
2463
|
+
description?: string | null;
|
|
2464
|
+
/**
|
|
2465
|
+
* The URL to image uploaded on bundle.social.
|
|
2466
|
+
*/
|
|
2467
|
+
thumbnail?: string | null;
|
|
2468
|
+
privacy?: 'PRIVATE' | 'PUBLIC' | 'UNLISTED' | null;
|
|
2469
|
+
/**
|
|
2470
|
+
* BCP-47 language code for the video's title and description, e.g. "en" or "pl".
|
|
2471
|
+
*/
|
|
2472
|
+
defaultLanguage?: string | null;
|
|
2473
|
+
/**
|
|
2474
|
+
* BCP-47 language code for the video's default audio track, e.g. "en" or "pl".
|
|
2475
|
+
*/
|
|
2476
|
+
defaultAudioLanguage?: string | null;
|
|
2477
|
+
/**
|
|
2478
|
+
* Set to true if the video is made for kids.
|
|
2479
|
+
*/
|
|
2480
|
+
madeForKids?: boolean | null;
|
|
2481
|
+
/**
|
|
2482
|
+
* Set to true if video contains AI generated content
|
|
2483
|
+
*/
|
|
2484
|
+
containsSyntheticMedia?: boolean | null;
|
|
2485
|
+
/**
|
|
2486
|
+
* Set to true if video has paid product placement
|
|
2487
|
+
*/
|
|
2488
|
+
hasPaidProductPlacement?: boolean | null;
|
|
2489
|
+
} | null;
|
|
2490
|
+
REDDIT?: {
|
|
2491
|
+
/**
|
|
2492
|
+
* Subreddit name. Example: r/subredditName or u/username
|
|
2493
|
+
*/
|
|
2494
|
+
sr: string;
|
|
2495
|
+
text: string;
|
|
2496
|
+
description?: string | null;
|
|
2497
|
+
uploadIds?: Array<(string)> | null;
|
|
2498
|
+
/**
|
|
2499
|
+
* The URL to which the post will link to.
|
|
2500
|
+
*/
|
|
2501
|
+
link?: string | null;
|
|
2502
|
+
/**
|
|
2503
|
+
* Set to true if the post is NSFW.
|
|
2504
|
+
*/
|
|
2505
|
+
nsfw?: boolean | null;
|
|
2506
|
+
/**
|
|
2507
|
+
* Flair ID for the post. Required if the subreddit requires flair selection.
|
|
2508
|
+
*/
|
|
2509
|
+
flairId?: string | null;
|
|
2510
|
+
} | null;
|
|
2511
|
+
DISCORD?: {
|
|
2512
|
+
channelId: string;
|
|
2513
|
+
text?: string | null;
|
|
2514
|
+
uploadIds?: Array<(string)> | null;
|
|
2515
|
+
/**
|
|
2516
|
+
* The username to display as the author of the message.
|
|
2517
|
+
*/
|
|
2518
|
+
username?: string | null;
|
|
2519
|
+
/**
|
|
2520
|
+
* Avatar url to display as the author of the message.
|
|
2521
|
+
*/
|
|
2522
|
+
avatarUrl?: string | null;
|
|
2523
|
+
} | null;
|
|
2524
|
+
SLACK?: {
|
|
2525
|
+
channelId: string;
|
|
2526
|
+
text?: string | null;
|
|
2527
|
+
uploadIds?: Array<(string)> | null;
|
|
2528
|
+
/**
|
|
2529
|
+
* The username to display as the author of the message.
|
|
2530
|
+
*/
|
|
2531
|
+
username?: string | null;
|
|
2532
|
+
/**
|
|
2533
|
+
* Avatar url to display as the author of the message.
|
|
2534
|
+
*/
|
|
2535
|
+
avatarUrl?: string | null;
|
|
2536
|
+
} | null;
|
|
2537
|
+
MASTODON?: {
|
|
2538
|
+
text?: string | null;
|
|
2539
|
+
uploadIds?: Array<(string)> | null;
|
|
2540
|
+
/**
|
|
2541
|
+
* The URL to image uploaded on bundle.social.
|
|
2542
|
+
*/
|
|
2543
|
+
thumbnail?: string | null;
|
|
2544
|
+
privacy?: 'PUBLIC' | 'UNLISTED' | 'PRIVATE' | 'DIRECT' | null;
|
|
2545
|
+
spoiler?: string | null;
|
|
2546
|
+
} | null;
|
|
2547
|
+
BLUESKY?: {
|
|
2548
|
+
text?: string | null;
|
|
2549
|
+
uploadIds?: Array<(string)> | null;
|
|
2550
|
+
/**
|
|
2551
|
+
* Extra hashtags (without #), up to 8.
|
|
2552
|
+
*/
|
|
2553
|
+
tags?: Array<(string)> | null;
|
|
2554
|
+
/**
|
|
2555
|
+
* Self-labels (content warnings) applied to the post.
|
|
2556
|
+
*/
|
|
2557
|
+
labels?: Array<('!no-unauthenticated' | 'porn' | 'sexual' | 'nudity' | 'graphic-media')> | null;
|
|
2558
|
+
/**
|
|
2559
|
+
* AT-URI of the post to quote (e.g. at://did.../app.bsky.feed.post/<rkey>).
|
|
2560
|
+
*/
|
|
2561
|
+
quoteUri?: string;
|
|
2562
|
+
/**
|
|
2563
|
+
* Target URL for the external link card
|
|
2564
|
+
*/
|
|
2565
|
+
externalUrl?: string | null;
|
|
2566
|
+
/**
|
|
2567
|
+
* Card title for the external link card
|
|
2568
|
+
*/
|
|
2569
|
+
externalTitle?: string | null;
|
|
2570
|
+
/**
|
|
2571
|
+
* Card description for the external link card
|
|
2572
|
+
*/
|
|
2573
|
+
externalDescription?: string | null;
|
|
2574
|
+
/**
|
|
2575
|
+
* This should be URL to publicly available image uploaded to bundle.social account.
|
|
2576
|
+
*/
|
|
2577
|
+
thumbnail?: string | null;
|
|
2578
|
+
/**
|
|
2579
|
+
* Alt text for the video embed.
|
|
2580
|
+
*/
|
|
2581
|
+
videoAlt?: string | null;
|
|
2582
|
+
} | null;
|
|
2583
|
+
GOOGLE_BUSINESS?: {
|
|
2584
|
+
text?: string | null;
|
|
2585
|
+
/**
|
|
2586
|
+
* IDs of images/videos uploaded to bundle.social.
|
|
2587
|
+
*/
|
|
2588
|
+
uploadIds?: Array<(string)> | null;
|
|
2589
|
+
topicType?: 'STANDARD' | 'EVENT' | 'OFFER' | 'ALERT' | null;
|
|
2590
|
+
/**
|
|
2591
|
+
* Language tag like 'en' or 'en-US'.
|
|
2592
|
+
*/
|
|
2593
|
+
languageCode?: string | null;
|
|
2594
|
+
callToActionType?: 'BOOK' | 'ORDER' | 'SHOP' | 'LEARN_MORE' | 'SIGN_UP' | 'CALL' | null;
|
|
2595
|
+
callToActionUrl?: string | null;
|
|
2596
|
+
eventTitle?: string | null;
|
|
2597
|
+
eventStartDate?: string | null;
|
|
2598
|
+
eventEndDate?: string | null;
|
|
2599
|
+
offerCouponCode?: string | null;
|
|
2600
|
+
offerRedeemOnlineUrl?: string | null;
|
|
2601
|
+
offerTermsConditions?: string | null;
|
|
2602
|
+
/**
|
|
2603
|
+
* Alert type for ALERT posts.
|
|
2604
|
+
*/
|
|
2605
|
+
alertType?: 'COVID_19' | null;
|
|
2606
|
+
} | null;
|
|
2607
|
+
};
|
|
2608
|
+
error?: string | null;
|
|
2609
|
+
errors?: {
|
|
2610
|
+
TWITTER?: string | null;
|
|
2611
|
+
PINTEREST?: string | null;
|
|
2612
|
+
FACEBOOK?: string | null;
|
|
2613
|
+
INSTAGRAM?: string | null;
|
|
2614
|
+
TIKTOK?: string | null;
|
|
2615
|
+
LINKEDIN?: string | null;
|
|
2616
|
+
REDDIT?: string | null;
|
|
2617
|
+
DISCORD?: string | null;
|
|
2618
|
+
SLACK?: string | null;
|
|
2619
|
+
YOUTUBE?: string | null;
|
|
2620
|
+
MASTODON?: string | null;
|
|
2621
|
+
THREADS?: string | null;
|
|
2622
|
+
BLUESKY?: string | null;
|
|
2623
|
+
GOOGLE_BUSINESS?: string | null;
|
|
2624
|
+
} | null;
|
|
2625
|
+
errorsVerbose?: {
|
|
2626
|
+
TWITTER?: {
|
|
2627
|
+
code?: string | null;
|
|
2628
|
+
errorMessage?: string | null;
|
|
2629
|
+
isTransient?: boolean | null;
|
|
2630
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
2631
|
+
httpStatus?: number | null;
|
|
2632
|
+
meta?: unknown;
|
|
2633
|
+
userFacingMessage?: string | null;
|
|
2634
|
+
} | null;
|
|
2635
|
+
PINTEREST?: {
|
|
2636
|
+
code?: string | null;
|
|
2637
|
+
errorMessage?: string | null;
|
|
2638
|
+
isTransient?: boolean | null;
|
|
2639
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
2640
|
+
httpStatus?: number | null;
|
|
2641
|
+
meta?: unknown;
|
|
2642
|
+
userFacingMessage?: string | null;
|
|
2643
|
+
} | null;
|
|
2644
|
+
FACEBOOK?: {
|
|
2645
|
+
code?: string | null;
|
|
2646
|
+
errorMessage?: string | null;
|
|
2647
|
+
isTransient?: boolean | null;
|
|
2648
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
2649
|
+
httpStatus?: number | null;
|
|
2650
|
+
meta?: unknown;
|
|
2651
|
+
userFacingMessage?: string | null;
|
|
2652
|
+
} | null;
|
|
2653
|
+
INSTAGRAM?: {
|
|
2654
|
+
code?: string | null;
|
|
2655
|
+
errorMessage?: string | null;
|
|
2656
|
+
isTransient?: boolean | null;
|
|
2657
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
2658
|
+
httpStatus?: number | null;
|
|
2659
|
+
meta?: unknown;
|
|
2660
|
+
userFacingMessage?: string | null;
|
|
2661
|
+
} | null;
|
|
2662
|
+
TIKTOK?: {
|
|
2663
|
+
code?: string | null;
|
|
2664
|
+
errorMessage?: string | null;
|
|
2665
|
+
isTransient?: boolean | null;
|
|
2666
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
2667
|
+
httpStatus?: number | null;
|
|
2668
|
+
meta?: unknown;
|
|
2669
|
+
userFacingMessage?: string | null;
|
|
2670
|
+
} | null;
|
|
2671
|
+
LINKEDIN?: {
|
|
2672
|
+
code?: string | null;
|
|
2673
|
+
errorMessage?: string | null;
|
|
2674
|
+
isTransient?: boolean | null;
|
|
2675
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
2676
|
+
httpStatus?: number | null;
|
|
2677
|
+
meta?: unknown;
|
|
2678
|
+
userFacingMessage?: string | null;
|
|
2679
|
+
} | null;
|
|
2680
|
+
REDDIT?: {
|
|
2681
|
+
code?: string | null;
|
|
2682
|
+
errorMessage?: string | null;
|
|
2683
|
+
isTransient?: boolean | null;
|
|
2684
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
2685
|
+
httpStatus?: number | null;
|
|
2686
|
+
meta?: unknown;
|
|
2687
|
+
userFacingMessage?: string | null;
|
|
2688
|
+
} | null;
|
|
2689
|
+
DISCORD?: {
|
|
2690
|
+
code?: string | null;
|
|
2691
|
+
errorMessage?: string | null;
|
|
2692
|
+
isTransient?: boolean | null;
|
|
2693
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
2694
|
+
httpStatus?: number | null;
|
|
2695
|
+
meta?: unknown;
|
|
2696
|
+
userFacingMessage?: string | null;
|
|
2697
|
+
} | null;
|
|
2698
|
+
SLACK?: {
|
|
2699
|
+
code?: string | null;
|
|
2700
|
+
errorMessage?: string | null;
|
|
2701
|
+
isTransient?: boolean | null;
|
|
2702
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
2703
|
+
httpStatus?: number | null;
|
|
2704
|
+
meta?: unknown;
|
|
2705
|
+
userFacingMessage?: string | null;
|
|
2706
|
+
} | null;
|
|
2707
|
+
YOUTUBE?: {
|
|
2708
|
+
code?: string | null;
|
|
2709
|
+
errorMessage?: string | null;
|
|
2710
|
+
isTransient?: boolean | null;
|
|
2711
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
2712
|
+
httpStatus?: number | null;
|
|
2713
|
+
meta?: unknown;
|
|
2714
|
+
userFacingMessage?: string | null;
|
|
2715
|
+
} | null;
|
|
2716
|
+
MASTODON?: {
|
|
2717
|
+
code?: string | null;
|
|
2718
|
+
errorMessage?: string | null;
|
|
2719
|
+
isTransient?: boolean | null;
|
|
2720
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
2721
|
+
httpStatus?: number | null;
|
|
2722
|
+
meta?: unknown;
|
|
2723
|
+
userFacingMessage?: string | null;
|
|
2724
|
+
} | null;
|
|
2725
|
+
THREADS?: {
|
|
2726
|
+
code?: string | null;
|
|
2727
|
+
errorMessage?: string | null;
|
|
2728
|
+
isTransient?: boolean | null;
|
|
2729
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
2730
|
+
httpStatus?: number | null;
|
|
2731
|
+
meta?: unknown;
|
|
2732
|
+
userFacingMessage?: string | null;
|
|
2733
|
+
} | null;
|
|
2734
|
+
BLUESKY?: {
|
|
2735
|
+
code?: string | null;
|
|
2736
|
+
errorMessage?: string | null;
|
|
2737
|
+
isTransient?: boolean | null;
|
|
2738
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
2739
|
+
httpStatus?: number | null;
|
|
2740
|
+
meta?: unknown;
|
|
2741
|
+
userFacingMessage?: string | null;
|
|
2742
|
+
} | null;
|
|
2743
|
+
GOOGLE_BUSINESS?: {
|
|
2744
|
+
code?: string | null;
|
|
2745
|
+
errorMessage?: string | null;
|
|
2746
|
+
isTransient?: boolean | null;
|
|
2747
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
2748
|
+
httpStatus?: number | null;
|
|
2749
|
+
meta?: unknown;
|
|
2750
|
+
userFacingMessage?: string | null;
|
|
2751
|
+
} | null;
|
|
2752
|
+
} | null;
|
|
2753
|
+
externalData?: {
|
|
2754
|
+
TWITTER?: {
|
|
2755
|
+
id?: string | null;
|
|
2756
|
+
permalink?: string | null;
|
|
2757
|
+
} | null;
|
|
2758
|
+
PINTEREST?: {
|
|
2759
|
+
id?: string | null;
|
|
2760
|
+
permalink?: string | null;
|
|
2761
|
+
thumbnail?: string | null;
|
|
2762
|
+
} | null;
|
|
2763
|
+
FACEBOOK?: {
|
|
2764
|
+
id?: string | null;
|
|
2765
|
+
postId?: string | null;
|
|
2766
|
+
videoId?: string | null;
|
|
2767
|
+
permalink?: string | null;
|
|
2768
|
+
thumbnail?: string | null;
|
|
2769
|
+
} | null;
|
|
2770
|
+
INSTAGRAM?: {
|
|
2771
|
+
id?: string | null;
|
|
2772
|
+
permalink?: string | null;
|
|
2773
|
+
thumbnail?: string | null;
|
|
2774
|
+
} | null;
|
|
2775
|
+
TIKTOK?: {
|
|
2776
|
+
id?: string | null;
|
|
2777
|
+
shareId?: string | null;
|
|
2778
|
+
requestId?: string | null;
|
|
2779
|
+
permalink?: string | null;
|
|
2780
|
+
status?: string | null;
|
|
2781
|
+
} | null;
|
|
2782
|
+
LINKEDIN?: {
|
|
2783
|
+
id?: string | null;
|
|
2784
|
+
activity?: string | null;
|
|
2785
|
+
permalink?: string | null;
|
|
2786
|
+
thumbnail?: string | null;
|
|
2787
|
+
} | null;
|
|
2788
|
+
REDDIT?: {
|
|
2789
|
+
id?: string | null;
|
|
2790
|
+
permalink?: string | null;
|
|
2791
|
+
subreddit_name?: string | null;
|
|
2792
|
+
} | null;
|
|
2793
|
+
DISCORD?: {
|
|
2794
|
+
id?: string | null;
|
|
2795
|
+
permalink?: string | null;
|
|
2796
|
+
channelId?: string | null;
|
|
2797
|
+
} | null;
|
|
2798
|
+
SLACK?: {
|
|
2799
|
+
id?: string | null;
|
|
2800
|
+
permalink?: string | null;
|
|
2801
|
+
channelId?: string | null;
|
|
2802
|
+
} | null;
|
|
2803
|
+
YOUTUBE?: {
|
|
2804
|
+
id?: string | null;
|
|
2805
|
+
permalink?: string | null;
|
|
2806
|
+
thumbnail?: string | null;
|
|
2807
|
+
/**
|
|
2808
|
+
* YouTube resumable upload session URI for retry handling
|
|
2809
|
+
*/
|
|
2810
|
+
sessionUri?: string | null;
|
|
2811
|
+
} | null;
|
|
2812
|
+
MASTODON?: {
|
|
2813
|
+
id?: string | null;
|
|
2814
|
+
permalink?: string | null;
|
|
2815
|
+
thumbnail?: string | null;
|
|
2816
|
+
} | null;
|
|
2817
|
+
THREADS?: {
|
|
2818
|
+
id?: string | null;
|
|
2819
|
+
permalink?: string | null;
|
|
2820
|
+
} | null;
|
|
2821
|
+
BLUESKY?: {
|
|
2822
|
+
id?: string | null;
|
|
2823
|
+
uri?: string | null;
|
|
2824
|
+
/**
|
|
2825
|
+
* Content ID of the created record
|
|
2826
|
+
*/
|
|
2827
|
+
cid?: string | null;
|
|
2828
|
+
permalink?: string | null;
|
|
2829
|
+
/**
|
|
2830
|
+
* Author DID (owner of the record)
|
|
2831
|
+
*/
|
|
2832
|
+
did?: string | null;
|
|
2833
|
+
} | null;
|
|
2834
|
+
GOOGLE_BUSINESS?: {
|
|
2835
|
+
/**
|
|
2836
|
+
* Resource name of the Local Post, e.g. 'accounts/{accountId}/locations/{locationId}/localPosts/{postId}'.
|
|
2837
|
+
*/
|
|
2838
|
+
id?: string | null;
|
|
2839
|
+
/**
|
|
2840
|
+
* Public link to the post (searchUrl) when available.
|
|
2841
|
+
*/
|
|
2842
|
+
permalink?: string | null;
|
|
2843
|
+
} | null;
|
|
2844
|
+
} | null;
|
|
2845
|
+
retryCount: number;
|
|
2846
|
+
createdAt: string | null;
|
|
2847
|
+
updatedAt: string | null;
|
|
2848
|
+
deletedAt?: string | null;
|
|
2849
|
+
uploads: Array<{
|
|
2850
|
+
postId: string;
|
|
2851
|
+
uploadId: string;
|
|
2852
|
+
createdAt: string | null;
|
|
2853
|
+
updatedAt: string | null;
|
|
2854
|
+
deletedAt?: string | null;
|
|
2855
|
+
upload: {
|
|
2856
|
+
id: string;
|
|
2857
|
+
teamId?: string | null;
|
|
2858
|
+
organizationId?: string | null;
|
|
2859
|
+
iconUrl?: string | null;
|
|
2860
|
+
thumbnailUrl?: string | null;
|
|
2861
|
+
url?: string | null;
|
|
2862
|
+
externalLink?: string | null;
|
|
2863
|
+
iconPath?: string | null;
|
|
2864
|
+
thumbnailPath?: string | null;
|
|
2865
|
+
path?: string | null;
|
|
2866
|
+
type: 'image' | 'video' | 'document';
|
|
2867
|
+
width?: number | null;
|
|
2868
|
+
height?: number | null;
|
|
2869
|
+
fileSize?: number | null;
|
|
2870
|
+
videoLength?: number | null;
|
|
2871
|
+
mime?: string | null;
|
|
2872
|
+
ext?: string | null;
|
|
2873
|
+
createdAt: string | null;
|
|
2874
|
+
updatedAt: string | null;
|
|
2875
|
+
};
|
|
2876
|
+
}>;
|
|
2877
|
+
socialAccounts: Array<{
|
|
2878
|
+
postId: string;
|
|
2879
|
+
socialAccountId: string;
|
|
2880
|
+
createdAt: string | null;
|
|
2881
|
+
updatedAt: string | null;
|
|
2882
|
+
deletedAt?: string | null;
|
|
2883
|
+
socialAccount: {
|
|
2884
|
+
id: string;
|
|
2885
|
+
type: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK' | 'BLUESKY' | 'GOOGLE_BUSINESS';
|
|
2886
|
+
teamId: string;
|
|
2887
|
+
username?: string | null;
|
|
2888
|
+
displayName?: string | null;
|
|
2889
|
+
avatarUrl?: string | null;
|
|
2890
|
+
externalId?: string | null;
|
|
2891
|
+
userUsername?: string | null;
|
|
2892
|
+
userDisplayName?: string | null;
|
|
2893
|
+
userId?: string | null;
|
|
2894
|
+
channels?: Array<{
|
|
2895
|
+
id: string;
|
|
2896
|
+
name?: string | null;
|
|
2897
|
+
username?: string | null;
|
|
2898
|
+
address?: string | null;
|
|
2899
|
+
avatarUrl?: string | null;
|
|
2900
|
+
webhook?: {
|
|
2901
|
+
id?: string | null;
|
|
2902
|
+
name?: string | null;
|
|
2903
|
+
avatar?: string | null;
|
|
2904
|
+
url?: string | null;
|
|
2905
|
+
} | null;
|
|
2906
|
+
metadata?: {
|
|
2907
|
+
allowImages?: boolean | null;
|
|
2908
|
+
allowVideos?: boolean | null;
|
|
2909
|
+
allowGalleries?: boolean | null;
|
|
2910
|
+
linkFlairEnabled?: boolean | null;
|
|
2911
|
+
} | null;
|
|
2912
|
+
}> | null;
|
|
2913
|
+
mastodonServerId?: string | null;
|
|
2914
|
+
instagramConnectionMethod?: 'FACEBOOK' | 'INSTAGRAM' | null;
|
|
2915
|
+
twitterSubType?: 'none' | 'basic' | 'premium' | 'premium_plus' | null;
|
|
2916
|
+
isTiktokBusinessAccount?: boolean | null;
|
|
2917
|
+
disconnectedCheckTryAt?: string | null;
|
|
2918
|
+
deleteOn?: string | null;
|
|
2919
|
+
createdAt: string | null;
|
|
2920
|
+
updatedAt: string | null;
|
|
2921
|
+
deletedAt?: string | null;
|
|
2922
|
+
};
|
|
2923
|
+
}>;
|
|
2924
|
+
};
|
|
2925
|
+
type PostUpdateData = {
|
|
2926
|
+
id: string;
|
|
2927
|
+
/**
|
|
2928
|
+
* Body
|
|
2929
|
+
*/
|
|
2930
|
+
requestBody?: {
|
|
2931
|
+
title?: string;
|
|
2932
|
+
referenceKey?: string | null;
|
|
2933
|
+
postDate?: string;
|
|
2934
|
+
status?: 'DRAFT' | 'SCHEDULED';
|
|
2935
|
+
socialAccountTypes?: Array<('TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK' | 'BLUESKY' | 'GOOGLE_BUSINESS')>;
|
|
2936
|
+
data?: {
|
|
2937
|
+
TWITTER?: {
|
|
2938
|
+
text?: string | null;
|
|
2939
|
+
uploadIds?: Array<(string)> | null;
|
|
2940
|
+
replySettings?: 'EVERYONE' | 'FOLLOWING' | 'MENTIONED_USERS' | 'SUBSCRIBERS' | 'VERIFIED' | null;
|
|
2941
|
+
} | null;
|
|
2942
|
+
PINTEREST?: {
|
|
2943
|
+
text?: string | null;
|
|
2944
|
+
description?: string | null;
|
|
2945
|
+
boardName: string;
|
|
2946
|
+
uploadIds?: Array<(string)> | null;
|
|
2947
|
+
/**
|
|
2948
|
+
* The URL to image uploaded on bundle.social.
|
|
2949
|
+
*/
|
|
2950
|
+
thumbnail?: string | null;
|
|
2951
|
+
/**
|
|
2952
|
+
* The URL to which the Pin will link to.
|
|
2953
|
+
*/
|
|
2954
|
+
link?: string | null;
|
|
2955
|
+
/**
|
|
2956
|
+
* The alt text for the image. This is used by screen readers and when the image can't be loaded.
|
|
2957
|
+
*/
|
|
2958
|
+
altText?: string | null;
|
|
2959
|
+
/**
|
|
2960
|
+
* A note about the Pin. This is not visible to the public.
|
|
2961
|
+
*/
|
|
2962
|
+
note?: string | null;
|
|
2963
|
+
/**
|
|
2964
|
+
* The dominant color of the image. This is used to display the image before it's loaded.
|
|
2965
|
+
*/
|
|
2966
|
+
dominantColor?: string | null;
|
|
2967
|
+
} | null;
|
|
2968
|
+
FACEBOOK?: {
|
|
2969
|
+
type?: 'POST' | 'REEL' | 'STORY';
|
|
2970
|
+
text?: string | null;
|
|
2971
|
+
uploadIds?: Array<(string)> | null;
|
|
2972
|
+
mediaItems?: Array<{
|
|
2973
|
+
uploadId: string;
|
|
2974
|
+
altText?: string | null;
|
|
2975
|
+
}> | null;
|
|
2976
|
+
/**
|
|
2977
|
+
* The URL to which the post will link to. Only available for type POST.
|
|
2978
|
+
*/
|
|
2979
|
+
link?: string | null;
|
|
2980
|
+
/**
|
|
2981
|
+
* The URL to image uploaded on bundle.social.
|
|
2982
|
+
*/
|
|
2983
|
+
thumbnail?: string | null;
|
|
2984
|
+
/**
|
|
2985
|
+
* Title for video posts (type POST with video only, not REEL or STORY). This is displayed as the video title on Facebook.
|
|
2986
|
+
*/
|
|
2987
|
+
mediaTitle?: string | null;
|
|
2988
|
+
/**
|
|
2989
|
+
* If passed, instead of publishing immediately, the post will be scheduled for the given date/time directly in Meta scheduler. Local date/time as ISO 8601 string max 30 days in the future.
|
|
2990
|
+
*/
|
|
2991
|
+
nativeScheduleTime?: string | null;
|
|
2992
|
+
} | null;
|
|
2993
|
+
INSTAGRAM?: {
|
|
2994
|
+
type?: 'POST' | 'REEL' | 'STORY';
|
|
2995
|
+
text?: string | null;
|
|
2996
|
+
uploadIds?: Array<(string)> | null;
|
|
2997
|
+
/**
|
|
2998
|
+
* Alternative text for a single image post.
|
|
2999
|
+
*/
|
|
3000
|
+
altText?: string | null;
|
|
3001
|
+
/**
|
|
3002
|
+
* Choose a frame of the published video as the cover photo in ms
|
|
3003
|
+
*/
|
|
3004
|
+
thumbnailOffset?: number | null;
|
|
3005
|
+
/**
|
|
2297
3006
|
* The URL to image uploaded on bundle.social.
|
|
2298
3007
|
*/
|
|
2299
3008
|
thumbnail?: string | null;
|
|
@@ -2564,6 +3273,10 @@ type PostUpdateData = {
|
|
|
2564
3273
|
* Card description for the external link card
|
|
2565
3274
|
*/
|
|
2566
3275
|
externalDescription?: string | null;
|
|
3276
|
+
/**
|
|
3277
|
+
* This should be URL to publicly available image uploaded to bundle.social account.
|
|
3278
|
+
*/
|
|
3279
|
+
thumbnail?: string | null;
|
|
2567
3280
|
/**
|
|
2568
3281
|
* Alt text for the video embed.
|
|
2569
3282
|
*/
|
|
@@ -2601,6 +3314,7 @@ type PostUpdateResponse = {
|
|
|
2601
3314
|
teamId: string;
|
|
2602
3315
|
organizationId?: string | null;
|
|
2603
3316
|
title: string;
|
|
3317
|
+
referenceKey?: string | null;
|
|
2604
3318
|
postDate: string | null;
|
|
2605
3319
|
postedDate?: string | null;
|
|
2606
3320
|
status: 'DRAFT' | 'SCHEDULED' | 'POSTED' | 'ERROR' | 'DELETED' | 'PROCESSING' | 'REVIEW' | 'RETRYING';
|
|
@@ -2944,6 +3658,10 @@ type PostUpdateResponse = {
|
|
|
2944
3658
|
* Card description for the external link card
|
|
2945
3659
|
*/
|
|
2946
3660
|
externalDescription?: string | null;
|
|
3661
|
+
/**
|
|
3662
|
+
* This should be URL to publicly available image uploaded to bundle.social account.
|
|
3663
|
+
*/
|
|
3664
|
+
thumbnail?: string | null;
|
|
2947
3665
|
/**
|
|
2948
3666
|
* Alt text for the video embed.
|
|
2949
3667
|
*/
|
|
@@ -3224,6 +3942,7 @@ type PostDeleteResponse = {
|
|
|
3224
3942
|
teamId: string;
|
|
3225
3943
|
organizationId?: string | null;
|
|
3226
3944
|
title: string;
|
|
3945
|
+
referenceKey?: string | null;
|
|
3227
3946
|
postDate: string | null;
|
|
3228
3947
|
postedDate?: string | null;
|
|
3229
3948
|
status: 'DRAFT' | 'SCHEDULED' | 'POSTED' | 'ERROR' | 'DELETED' | 'PROCESSING' | 'REVIEW' | 'RETRYING';
|
|
@@ -3567,6 +4286,10 @@ type PostDeleteResponse = {
|
|
|
3567
4286
|
* Card description for the external link card
|
|
3568
4287
|
*/
|
|
3569
4288
|
externalDescription?: string | null;
|
|
4289
|
+
/**
|
|
4290
|
+
* This should be URL to publicly available image uploaded to bundle.social account.
|
|
4291
|
+
*/
|
|
4292
|
+
thumbnail?: string | null;
|
|
3570
4293
|
/**
|
|
3571
4294
|
* Alt text for the video embed.
|
|
3572
4295
|
*/
|
|
@@ -3857,6 +4580,7 @@ type PostGetListResponse = {
|
|
|
3857
4580
|
teamId: string;
|
|
3858
4581
|
organizationId?: string | null;
|
|
3859
4582
|
title: string;
|
|
4583
|
+
referenceKey?: string | null;
|
|
3860
4584
|
postDate: string | null;
|
|
3861
4585
|
postedDate?: string | null;
|
|
3862
4586
|
status: 'DRAFT' | 'SCHEDULED' | 'POSTED' | 'ERROR' | 'DELETED' | 'PROCESSING' | 'REVIEW' | 'RETRYING';
|
|
@@ -4200,6 +4924,10 @@ type PostGetListResponse = {
|
|
|
4200
4924
|
* Card description for the external link card
|
|
4201
4925
|
*/
|
|
4202
4926
|
externalDescription?: string | null;
|
|
4927
|
+
/**
|
|
4928
|
+
* This should be URL to publicly available image uploaded to bundle.social account.
|
|
4929
|
+
*/
|
|
4930
|
+
thumbnail?: string | null;
|
|
4203
4931
|
/**
|
|
4204
4932
|
* Alt text for the video embed.
|
|
4205
4933
|
*/
|
|
@@ -4556,6 +5284,7 @@ type PostCreateData = {
|
|
|
4556
5284
|
requestBody?: {
|
|
4557
5285
|
teamId: string;
|
|
4558
5286
|
title: string;
|
|
5287
|
+
referenceKey?: string | null;
|
|
4559
5288
|
postDate: string;
|
|
4560
5289
|
status: 'DRAFT' | 'SCHEDULED';
|
|
4561
5290
|
socialAccountTypes: Array<('TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK' | 'BLUESKY' | 'GOOGLE_BUSINESS')>;
|
|
@@ -4899,6 +5628,10 @@ type PostCreateData = {
|
|
|
4899
5628
|
* Card description for the external link card
|
|
4900
5629
|
*/
|
|
4901
5630
|
externalDescription?: string | null;
|
|
5631
|
+
/**
|
|
5632
|
+
* This should be URL to publicly available image uploaded to bundle.social account.
|
|
5633
|
+
*/
|
|
5634
|
+
thumbnail?: string | null;
|
|
4902
5635
|
/**
|
|
4903
5636
|
* Alt text for the video embed.
|
|
4904
5637
|
*/
|
|
@@ -4936,6 +5669,7 @@ type PostCreateResponse = {
|
|
|
4936
5669
|
teamId: string;
|
|
4937
5670
|
organizationId?: string | null;
|
|
4938
5671
|
title: string;
|
|
5672
|
+
referenceKey?: string | null;
|
|
4939
5673
|
postDate: string | null;
|
|
4940
5674
|
postedDate?: string | null;
|
|
4941
5675
|
status: 'DRAFT' | 'SCHEDULED' | 'POSTED' | 'ERROR' | 'DELETED' | 'PROCESSING' | 'REVIEW' | 'RETRYING';
|
|
@@ -5279,6 +6013,10 @@ type PostCreateResponse = {
|
|
|
5279
6013
|
* Card description for the external link card
|
|
5280
6014
|
*/
|
|
5281
6015
|
externalDescription?: string | null;
|
|
6016
|
+
/**
|
|
6017
|
+
* This should be URL to publicly available image uploaded to bundle.social account.
|
|
6018
|
+
*/
|
|
6019
|
+
thumbnail?: string | null;
|
|
5282
6020
|
/**
|
|
5283
6021
|
* Alt text for the video embed.
|
|
5284
6022
|
*/
|
|
@@ -5559,6 +6297,7 @@ type PostRetryResponse = {
|
|
|
5559
6297
|
teamId: string;
|
|
5560
6298
|
organizationId?: string | null;
|
|
5561
6299
|
title: string;
|
|
6300
|
+
referenceKey?: string | null;
|
|
5562
6301
|
postDate: string | null;
|
|
5563
6302
|
postedDate?: string | null;
|
|
5564
6303
|
status: 'DRAFT' | 'SCHEDULED' | 'POSTED' | 'ERROR' | 'DELETED' | 'PROCESSING' | 'REVIEW' | 'RETRYING';
|
|
@@ -5902,6 +6641,10 @@ type PostRetryResponse = {
|
|
|
5902
6641
|
* Card description for the external link card
|
|
5903
6642
|
*/
|
|
5904
6643
|
externalDescription?: string | null;
|
|
6644
|
+
/**
|
|
6645
|
+
* This should be URL to publicly available image uploaded to bundle.social account.
|
|
6646
|
+
*/
|
|
6647
|
+
thumbnail?: string | null;
|
|
5905
6648
|
/**
|
|
5906
6649
|
* Alt text for the video embed.
|
|
5907
6650
|
*/
|
|
@@ -6248,6 +6991,7 @@ type AnalyticsGetPostAnalyticsResponse = {
|
|
|
6248
6991
|
teamId: string;
|
|
6249
6992
|
organizationId?: string | null;
|
|
6250
6993
|
title: string;
|
|
6994
|
+
referenceKey?: string | null;
|
|
6251
6995
|
postDate: string | null;
|
|
6252
6996
|
postedDate?: string | null;
|
|
6253
6997
|
status: 'DRAFT' | 'SCHEDULED' | 'POSTED' | 'ERROR' | 'DELETED' | 'PROCESSING' | 'REVIEW' | 'RETRYING';
|
|
@@ -6591,6 +7335,10 @@ type AnalyticsGetPostAnalyticsResponse = {
|
|
|
6591
7335
|
* Card description for the external link card
|
|
6592
7336
|
*/
|
|
6593
7337
|
externalDescription?: string | null;
|
|
7338
|
+
/**
|
|
7339
|
+
* This should be URL to publicly available image uploaded to bundle.social account.
|
|
7340
|
+
*/
|
|
7341
|
+
thumbnail?: string | null;
|
|
6594
7342
|
/**
|
|
6595
7343
|
* Alt text for the video embed.
|
|
6596
7344
|
*/
|
|
@@ -6970,6 +7718,7 @@ type AnalyticsGetPostAnalyticsRawResponse = {
|
|
|
6970
7718
|
teamId: string;
|
|
6971
7719
|
organizationId?: string | null;
|
|
6972
7720
|
title: string;
|
|
7721
|
+
referenceKey?: string | null;
|
|
6973
7722
|
postDate: string | null;
|
|
6974
7723
|
postedDate?: string | null;
|
|
6975
7724
|
status: 'DRAFT' | 'SCHEDULED' | 'POSTED' | 'ERROR' | 'DELETED' | 'PROCESSING' | 'REVIEW' | 'RETRYING';
|
|
@@ -7313,6 +8062,10 @@ type AnalyticsGetPostAnalyticsRawResponse = {
|
|
|
7313
8062
|
* Card description for the external link card
|
|
7314
8063
|
*/
|
|
7315
8064
|
externalDescription?: string | null;
|
|
8065
|
+
/**
|
|
8066
|
+
* This should be URL to publicly available image uploaded to bundle.social account.
|
|
8067
|
+
*/
|
|
8068
|
+
thumbnail?: string | null;
|
|
7316
8069
|
/**
|
|
7317
8070
|
* Alt text for the video embed.
|
|
7318
8071
|
*/
|
|
@@ -9908,6 +10661,27 @@ type MiscLinkedinBuildCommentaryData = {
|
|
|
9908
10661
|
type MiscLinkedinBuildCommentaryResponse = {
|
|
9909
10662
|
commentary: string;
|
|
9910
10663
|
};
|
|
10664
|
+
type MiscLinkedinResharePostData = {
|
|
10665
|
+
/**
|
|
10666
|
+
* Body
|
|
10667
|
+
*/
|
|
10668
|
+
requestBody?: {
|
|
10669
|
+
teamId: string;
|
|
10670
|
+
/**
|
|
10671
|
+
* LinkedIn post URN to reshare
|
|
10672
|
+
*/
|
|
10673
|
+
parentPostUrn: string;
|
|
10674
|
+
commentary: string;
|
|
10675
|
+
visibility?: 'CONNECTIONS' | 'PUBLIC' | 'LOGGED_IN' | 'CONTAINER' | null;
|
|
10676
|
+
disableReshare?: boolean | null;
|
|
10677
|
+
};
|
|
10678
|
+
};
|
|
10679
|
+
type MiscLinkedinResharePostResponse = {
|
|
10680
|
+
success: boolean;
|
|
10681
|
+
id: string;
|
|
10682
|
+
activity?: string | null;
|
|
10683
|
+
permalink?: string | null;
|
|
10684
|
+
};
|
|
9911
10685
|
type MiscLinkedinEditPostData = {
|
|
9912
10686
|
/**
|
|
9913
10687
|
* Body
|
|
@@ -14644,76 +15418,833 @@ type $OpenApiTs = {
|
|
|
14644
15418
|
createdAt: string | null;
|
|
14645
15419
|
updatedAt: string | null;
|
|
14646
15420
|
}>;
|
|
14647
|
-
total: number;
|
|
14648
|
-
};
|
|
14649
|
-
/**
|
|
14650
|
-
* 400
|
|
14651
|
-
*/
|
|
14652
|
-
400: {
|
|
14653
|
-
statusCode?: number | null;
|
|
14654
|
-
message: string;
|
|
14655
|
-
issues?: Array<{
|
|
14656
|
-
code?: 'invalid_type' | 'invalid_literal' | 'custom' | 'invalid_union' | 'invalid_union_discriminator' | 'invalid_enum_value' | 'unrecognized_keys' | 'invalid_arguments' | 'invalid_return_type' | 'invalid_date' | 'invalid_string' | 'too_small' | 'too_big' | 'invalid_intersection_types' | 'not_multiple_of' | 'not_finite' | null;
|
|
14657
|
-
message: string;
|
|
14658
|
-
path?: Array<(string | number)> | null;
|
|
14659
|
-
}> | null;
|
|
14660
|
-
};
|
|
14661
|
-
/**
|
|
14662
|
-
* 401
|
|
14663
|
-
*/
|
|
14664
|
-
401: {
|
|
14665
|
-
statusCode?: number | null;
|
|
14666
|
-
message: string;
|
|
14667
|
-
};
|
|
14668
|
-
/**
|
|
14669
|
-
* 403
|
|
14670
|
-
*/
|
|
14671
|
-
403: {
|
|
14672
|
-
statusCode?: number | null;
|
|
14673
|
-
message: string;
|
|
14674
|
-
};
|
|
14675
|
-
/**
|
|
14676
|
-
* 404
|
|
14677
|
-
*/
|
|
14678
|
-
404: {
|
|
14679
|
-
statusCode?: number | null;
|
|
14680
|
-
message: string;
|
|
14681
|
-
};
|
|
14682
|
-
/**
|
|
14683
|
-
* 429
|
|
14684
|
-
*/
|
|
14685
|
-
429: {
|
|
14686
|
-
statusCode?: number | null;
|
|
14687
|
-
message: string;
|
|
14688
|
-
};
|
|
14689
|
-
/**
|
|
14690
|
-
* 500
|
|
14691
|
-
*/
|
|
14692
|
-
500: {
|
|
14693
|
-
statusCode?: number | null;
|
|
14694
|
-
message: string;
|
|
14695
|
-
};
|
|
14696
|
-
};
|
|
14697
|
-
};
|
|
14698
|
-
};
|
|
14699
|
-
'/api/v1/post/reconnect-social-account': {
|
|
14700
|
-
post: {
|
|
14701
|
-
req: PostReconnectSocialAccountData;
|
|
14702
|
-
res: {
|
|
14703
|
-
/**
|
|
14704
|
-
* 200
|
|
14705
|
-
*/
|
|
14706
|
-
200: {
|
|
14707
|
-
total: number;
|
|
14708
|
-
succeeded: number;
|
|
14709
|
-
failed: number;
|
|
14710
|
-
results: Array<{
|
|
15421
|
+
total: number;
|
|
15422
|
+
};
|
|
15423
|
+
/**
|
|
15424
|
+
* 400
|
|
15425
|
+
*/
|
|
15426
|
+
400: {
|
|
15427
|
+
statusCode?: number | null;
|
|
15428
|
+
message: string;
|
|
15429
|
+
issues?: Array<{
|
|
15430
|
+
code?: 'invalid_type' | 'invalid_literal' | 'custom' | 'invalid_union' | 'invalid_union_discriminator' | 'invalid_enum_value' | 'unrecognized_keys' | 'invalid_arguments' | 'invalid_return_type' | 'invalid_date' | 'invalid_string' | 'too_small' | 'too_big' | 'invalid_intersection_types' | 'not_multiple_of' | 'not_finite' | null;
|
|
15431
|
+
message: string;
|
|
15432
|
+
path?: Array<(string | number)> | null;
|
|
15433
|
+
}> | null;
|
|
15434
|
+
};
|
|
15435
|
+
/**
|
|
15436
|
+
* 401
|
|
15437
|
+
*/
|
|
15438
|
+
401: {
|
|
15439
|
+
statusCode?: number | null;
|
|
15440
|
+
message: string;
|
|
15441
|
+
};
|
|
15442
|
+
/**
|
|
15443
|
+
* 403
|
|
15444
|
+
*/
|
|
15445
|
+
403: {
|
|
15446
|
+
statusCode?: number | null;
|
|
15447
|
+
message: string;
|
|
15448
|
+
};
|
|
15449
|
+
/**
|
|
15450
|
+
* 404
|
|
15451
|
+
*/
|
|
15452
|
+
404: {
|
|
15453
|
+
statusCode?: number | null;
|
|
15454
|
+
message: string;
|
|
15455
|
+
};
|
|
15456
|
+
/**
|
|
15457
|
+
* 429
|
|
15458
|
+
*/
|
|
15459
|
+
429: {
|
|
15460
|
+
statusCode?: number | null;
|
|
15461
|
+
message: string;
|
|
15462
|
+
};
|
|
15463
|
+
/**
|
|
15464
|
+
* 500
|
|
15465
|
+
*/
|
|
15466
|
+
500: {
|
|
15467
|
+
statusCode?: number | null;
|
|
15468
|
+
message: string;
|
|
15469
|
+
};
|
|
15470
|
+
};
|
|
15471
|
+
};
|
|
15472
|
+
};
|
|
15473
|
+
'/api/v1/post/reconnect-social-account': {
|
|
15474
|
+
post: {
|
|
15475
|
+
req: PostReconnectSocialAccountData;
|
|
15476
|
+
res: {
|
|
15477
|
+
/**
|
|
15478
|
+
* 200
|
|
15479
|
+
*/
|
|
15480
|
+
200: {
|
|
15481
|
+
total: number;
|
|
15482
|
+
succeeded: number;
|
|
15483
|
+
failed: number;
|
|
15484
|
+
results: Array<{
|
|
15485
|
+
postId: string;
|
|
15486
|
+
title?: string | null;
|
|
15487
|
+
success: boolean;
|
|
15488
|
+
statusBefore?: 'DRAFT' | 'SCHEDULED' | 'POSTED' | 'ERROR' | 'DELETED' | 'PROCESSING' | 'REVIEW' | 'RETRYING';
|
|
15489
|
+
statusAfter?: 'DRAFT' | 'SCHEDULED' | 'POSTED' | 'ERROR' | 'DELETED' | 'PROCESSING' | 'REVIEW' | 'RETRYING';
|
|
15490
|
+
message?: string;
|
|
15491
|
+
}>;
|
|
15492
|
+
};
|
|
15493
|
+
/**
|
|
15494
|
+
* 400
|
|
15495
|
+
*/
|
|
15496
|
+
400: {
|
|
15497
|
+
statusCode?: number | null;
|
|
15498
|
+
message: string;
|
|
15499
|
+
issues?: Array<{
|
|
15500
|
+
code?: 'invalid_type' | 'invalid_literal' | 'custom' | 'invalid_union' | 'invalid_union_discriminator' | 'invalid_enum_value' | 'unrecognized_keys' | 'invalid_arguments' | 'invalid_return_type' | 'invalid_date' | 'invalid_string' | 'too_small' | 'too_big' | 'invalid_intersection_types' | 'not_multiple_of' | 'not_finite' | null;
|
|
15501
|
+
message: string;
|
|
15502
|
+
path?: Array<(string | number)> | null;
|
|
15503
|
+
}> | null;
|
|
15504
|
+
};
|
|
15505
|
+
/**
|
|
15506
|
+
* 401
|
|
15507
|
+
*/
|
|
15508
|
+
401: {
|
|
15509
|
+
statusCode?: number | null;
|
|
15510
|
+
message: string;
|
|
15511
|
+
};
|
|
15512
|
+
/**
|
|
15513
|
+
* 403
|
|
15514
|
+
*/
|
|
15515
|
+
403: {
|
|
15516
|
+
statusCode?: number | null;
|
|
15517
|
+
message: string;
|
|
15518
|
+
};
|
|
15519
|
+
/**
|
|
15520
|
+
* 404
|
|
15521
|
+
*/
|
|
15522
|
+
404: {
|
|
15523
|
+
statusCode?: number | null;
|
|
15524
|
+
message: string;
|
|
15525
|
+
};
|
|
15526
|
+
/**
|
|
15527
|
+
* 429
|
|
15528
|
+
*/
|
|
15529
|
+
429: {
|
|
15530
|
+
statusCode?: number | null;
|
|
15531
|
+
message: string;
|
|
15532
|
+
};
|
|
15533
|
+
/**
|
|
15534
|
+
* 500
|
|
15535
|
+
*/
|
|
15536
|
+
500: {
|
|
15537
|
+
statusCode?: number | null;
|
|
15538
|
+
message: string;
|
|
15539
|
+
};
|
|
15540
|
+
};
|
|
15541
|
+
};
|
|
15542
|
+
};
|
|
15543
|
+
'/api/v1/post/reference-key/{referenceKey}': {
|
|
15544
|
+
get: {
|
|
15545
|
+
req: PostGetByReferenceKeyData;
|
|
15546
|
+
res: {
|
|
15547
|
+
/**
|
|
15548
|
+
* 200
|
|
15549
|
+
*/
|
|
15550
|
+
200: {
|
|
15551
|
+
id: string;
|
|
15552
|
+
teamId: string;
|
|
15553
|
+
organizationId?: string | null;
|
|
15554
|
+
title: string;
|
|
15555
|
+
referenceKey?: string | null;
|
|
15556
|
+
postDate: string | null;
|
|
15557
|
+
postedDate?: string | null;
|
|
15558
|
+
status: 'DRAFT' | 'SCHEDULED' | 'POSTED' | 'ERROR' | 'DELETED' | 'PROCESSING' | 'REVIEW' | 'RETRYING';
|
|
15559
|
+
data: {
|
|
15560
|
+
TWITTER?: {
|
|
15561
|
+
text?: string | null;
|
|
15562
|
+
uploadIds?: Array<(string)> | null;
|
|
15563
|
+
replySettings?: 'EVERYONE' | 'FOLLOWING' | 'MENTIONED_USERS' | 'SUBSCRIBERS' | 'VERIFIED' | null;
|
|
15564
|
+
} | null;
|
|
15565
|
+
PINTEREST?: {
|
|
15566
|
+
text?: string | null;
|
|
15567
|
+
description?: string | null;
|
|
15568
|
+
boardName: string;
|
|
15569
|
+
uploadIds?: Array<(string)> | null;
|
|
15570
|
+
/**
|
|
15571
|
+
* The URL to image uploaded on bundle.social.
|
|
15572
|
+
*/
|
|
15573
|
+
thumbnail?: string | null;
|
|
15574
|
+
/**
|
|
15575
|
+
* The URL to which the Pin will link to.
|
|
15576
|
+
*/
|
|
15577
|
+
link?: string | null;
|
|
15578
|
+
/**
|
|
15579
|
+
* The alt text for the image. This is used by screen readers and when the image can't be loaded.
|
|
15580
|
+
*/
|
|
15581
|
+
altText?: string | null;
|
|
15582
|
+
/**
|
|
15583
|
+
* A note about the Pin. This is not visible to the public.
|
|
15584
|
+
*/
|
|
15585
|
+
note?: string | null;
|
|
15586
|
+
/**
|
|
15587
|
+
* The dominant color of the image. This is used to display the image before it's loaded.
|
|
15588
|
+
*/
|
|
15589
|
+
dominantColor?: string | null;
|
|
15590
|
+
} | null;
|
|
15591
|
+
FACEBOOK?: {
|
|
15592
|
+
type?: 'POST' | 'REEL' | 'STORY';
|
|
15593
|
+
text?: string | null;
|
|
15594
|
+
uploadIds?: Array<(string)> | null;
|
|
15595
|
+
mediaItems?: Array<{
|
|
15596
|
+
uploadId: string;
|
|
15597
|
+
altText?: string | null;
|
|
15598
|
+
}> | null;
|
|
15599
|
+
/**
|
|
15600
|
+
* The URL to which the post will link to. Only available for type POST.
|
|
15601
|
+
*/
|
|
15602
|
+
link?: string | null;
|
|
15603
|
+
/**
|
|
15604
|
+
* The URL to image uploaded on bundle.social.
|
|
15605
|
+
*/
|
|
15606
|
+
thumbnail?: string | null;
|
|
15607
|
+
/**
|
|
15608
|
+
* Title for video posts (type POST with video only, not REEL or STORY). This is displayed as the video title on Facebook.
|
|
15609
|
+
*/
|
|
15610
|
+
mediaTitle?: string | null;
|
|
15611
|
+
/**
|
|
15612
|
+
* If passed, instead of publishing immediately, the post will be scheduled for the given date/time directly in Meta scheduler. Local date/time as ISO 8601 string max 30 days in the future.
|
|
15613
|
+
*/
|
|
15614
|
+
nativeScheduleTime?: string | null;
|
|
15615
|
+
} | null;
|
|
15616
|
+
INSTAGRAM?: {
|
|
15617
|
+
type?: 'POST' | 'REEL' | 'STORY';
|
|
15618
|
+
text?: string | null;
|
|
15619
|
+
uploadIds?: Array<(string)> | null;
|
|
15620
|
+
/**
|
|
15621
|
+
* Alternative text for a single image post.
|
|
15622
|
+
*/
|
|
15623
|
+
altText?: string | null;
|
|
15624
|
+
/**
|
|
15625
|
+
* Choose a frame of the published video as the cover photo in ms
|
|
15626
|
+
*/
|
|
15627
|
+
thumbnailOffset?: number | null;
|
|
15628
|
+
/**
|
|
15629
|
+
* The URL to image uploaded on bundle.social.
|
|
15630
|
+
*/
|
|
15631
|
+
thumbnail?: string | null;
|
|
15632
|
+
/**
|
|
15633
|
+
* For Reels only.When true, indicates that the reel can appear in both the Feed and Reels tabs.When false, indicates the reel can only appear in the Reels tab.
|
|
15634
|
+
*/
|
|
15635
|
+
shareToFeed?: boolean | null;
|
|
15636
|
+
collaborators?: Array<(string)> | null;
|
|
15637
|
+
autoFitImage?: boolean | null;
|
|
15638
|
+
autoCropImage?: boolean | null;
|
|
15639
|
+
tagged?: Array<{
|
|
15640
|
+
username: string;
|
|
15641
|
+
x?: number;
|
|
15642
|
+
y?: number;
|
|
15643
|
+
}> | null;
|
|
15644
|
+
carouselItems?: Array<{
|
|
15645
|
+
uploadId: string;
|
|
15646
|
+
altText?: string | null;
|
|
15647
|
+
tagged?: Array<{
|
|
15648
|
+
username: string;
|
|
15649
|
+
x: number;
|
|
15650
|
+
y: number;
|
|
15651
|
+
}> | null;
|
|
15652
|
+
}> | null;
|
|
15653
|
+
locationId?: string | null;
|
|
15654
|
+
/**
|
|
15655
|
+
* For Reels only. Trial reels are only shared to non-followers.
|
|
15656
|
+
*/
|
|
15657
|
+
trialParams?: {
|
|
15658
|
+
graduationStrategy: 'MANUAL' | 'SS_PERFORMANCE';
|
|
15659
|
+
} | null;
|
|
15660
|
+
/**
|
|
15661
|
+
* Information about the Instagram audio asset used for Reels publishing.
|
|
15662
|
+
*/
|
|
15663
|
+
musicSoundInfo?: {
|
|
15664
|
+
/**
|
|
15665
|
+
* Use audio_id from Instagram Audio API search endpoint.
|
|
15666
|
+
*/
|
|
15667
|
+
musicSoundId: string;
|
|
15668
|
+
/**
|
|
15669
|
+
* Audio volume (0-100).
|
|
15670
|
+
*/
|
|
15671
|
+
musicSoundVolume?: number | null;
|
|
15672
|
+
/**
|
|
15673
|
+
* Background volume of the original video sound (0-100).
|
|
15674
|
+
*/
|
|
15675
|
+
videoOriginalSoundVolume?: number | null;
|
|
15676
|
+
} | null;
|
|
15677
|
+
} | null;
|
|
15678
|
+
THREADS?: {
|
|
15679
|
+
text?: string | null;
|
|
15680
|
+
uploadIds?: Array<(string)> | null;
|
|
15681
|
+
mediaItems?: Array<{
|
|
15682
|
+
uploadId: string;
|
|
15683
|
+
altText?: string | null;
|
|
15684
|
+
}> | null;
|
|
15685
|
+
} | null;
|
|
15686
|
+
TIKTOK?: {
|
|
15687
|
+
type?: 'VIDEO' | 'IMAGE';
|
|
15688
|
+
text?: string | null;
|
|
15689
|
+
uploadIds?: Array<(string)> | null;
|
|
15690
|
+
/**
|
|
15691
|
+
* The URL to image uploaded on bundle.social.
|
|
15692
|
+
*/
|
|
15693
|
+
thumbnail?: string | null;
|
|
15694
|
+
privacy?: 'SELF_ONLY' | 'PUBLIC_TO_EVERYONE' | 'MUTUAL_FOLLOW_FRIENDS' | 'FOLLOWER_OF_CREATOR' | null;
|
|
15695
|
+
photoCoverIndex?: number | null;
|
|
15696
|
+
/**
|
|
15697
|
+
* Set to true if the video is a paid partnership to promote a third-party business.
|
|
15698
|
+
*/
|
|
15699
|
+
isBrandContent?: boolean | null;
|
|
15700
|
+
/**
|
|
15701
|
+
* Set to true if this video is promoting the creator's own business.
|
|
15702
|
+
*/
|
|
15703
|
+
isOrganicBrandContent?: boolean | null;
|
|
15704
|
+
/**
|
|
15705
|
+
* If set to true, other TikTok users will not be allowed to make comments on this post.
|
|
15706
|
+
*/
|
|
15707
|
+
disableComments?: boolean | null;
|
|
15708
|
+
/**
|
|
15709
|
+
* If set to true, other TikTok users will not be allowed to make Stitches using this post.
|
|
15710
|
+
*/
|
|
15711
|
+
disableDuet?: boolean | null;
|
|
15712
|
+
/**
|
|
15713
|
+
* If set to true, other TikTok users will not be allowed to make Duets using this post.
|
|
15714
|
+
*/
|
|
15715
|
+
disableStitch?: boolean | null;
|
|
15716
|
+
/**
|
|
15717
|
+
* Choose a frame of the published video as the cover photo in ms
|
|
15718
|
+
*/
|
|
15719
|
+
thumbnailOffset?: number | null;
|
|
15720
|
+
/**
|
|
15721
|
+
* Set to true if this video is AI generated.
|
|
15722
|
+
*/
|
|
15723
|
+
isAiGenerated?: boolean | null;
|
|
15724
|
+
/**
|
|
15725
|
+
* If set to true, TikTok will automatically add music to the photos.
|
|
15726
|
+
*/
|
|
15727
|
+
autoAddMusic?: boolean | null;
|
|
15728
|
+
autoScale?: boolean | null;
|
|
15729
|
+
/**
|
|
15730
|
+
* If set to true, upload post as draft.
|
|
15731
|
+
*/
|
|
15732
|
+
uploadToDraft?: boolean | null;
|
|
15733
|
+
/**
|
|
15734
|
+
* Information about the commercial sound (track) used for TikTok publishing.
|
|
15735
|
+
*/
|
|
15736
|
+
musicSoundInfo?: {
|
|
15737
|
+
/**
|
|
15738
|
+
* Use song_clip_id from CML trending list (full_duration_song_clip or trending_song_clip).
|
|
15739
|
+
*/
|
|
15740
|
+
musicSoundId: string;
|
|
15741
|
+
/**
|
|
15742
|
+
* Commercial sound volume (0-100).
|
|
15743
|
+
*/
|
|
15744
|
+
musicSoundVolume?: number | null;
|
|
15745
|
+
/**
|
|
15746
|
+
* Starting point of the commercial sound in milliseconds.
|
|
15747
|
+
*/
|
|
15748
|
+
musicSoundStart?: number | null;
|
|
15749
|
+
/**
|
|
15750
|
+
* Ending point of the commercial sound in milliseconds.
|
|
15751
|
+
*/
|
|
15752
|
+
musicSoundEnd?: number | null;
|
|
15753
|
+
/**
|
|
15754
|
+
* Background volume of the original video sound (0-100).
|
|
15755
|
+
*/
|
|
15756
|
+
videoOriginalSoundVolume?: number | null;
|
|
15757
|
+
} | null;
|
|
15758
|
+
} | null;
|
|
15759
|
+
LINKEDIN?: {
|
|
15760
|
+
text: string;
|
|
15761
|
+
uploadIds?: Array<(string)> | null;
|
|
15762
|
+
/**
|
|
15763
|
+
* Optional URL for LinkedIn article preview post.
|
|
15764
|
+
*/
|
|
15765
|
+
link?: string | null;
|
|
15766
|
+
/**
|
|
15767
|
+
* The URL to image uploaded on bundle.social.
|
|
15768
|
+
*/
|
|
15769
|
+
thumbnail?: string | null;
|
|
15770
|
+
/**
|
|
15771
|
+
* Title for video or document posts. If not provided for videos, LinkedIn displays the posting date under the video.
|
|
15772
|
+
*/
|
|
15773
|
+
mediaTitle?: string | null;
|
|
15774
|
+
privacy?: 'CONNECTIONS' | 'PUBLIC' | 'LOGGED_IN' | 'CONTAINER' | null;
|
|
15775
|
+
/**
|
|
15776
|
+
* Set to true if the post shouldn't be displayed in the main feed.
|
|
15777
|
+
*/
|
|
15778
|
+
hideFromFeed?: boolean | null;
|
|
15779
|
+
/**
|
|
15780
|
+
* Set to true if the post is not allowed to be reshared.
|
|
15781
|
+
*/
|
|
15782
|
+
disableReshare?: boolean | null;
|
|
15783
|
+
} | null;
|
|
15784
|
+
YOUTUBE?: {
|
|
15785
|
+
type?: 'VIDEO' | 'SHORT';
|
|
15786
|
+
uploadIds?: Array<(string)> | null;
|
|
15787
|
+
text?: string | null;
|
|
15788
|
+
description?: string | null;
|
|
15789
|
+
/**
|
|
15790
|
+
* The URL to image uploaded on bundle.social.
|
|
15791
|
+
*/
|
|
15792
|
+
thumbnail?: string | null;
|
|
15793
|
+
privacy?: 'PRIVATE' | 'PUBLIC' | 'UNLISTED' | null;
|
|
15794
|
+
/**
|
|
15795
|
+
* BCP-47 language code for the video's title and description, e.g. "en" or "pl".
|
|
15796
|
+
*/
|
|
15797
|
+
defaultLanguage?: string | null;
|
|
15798
|
+
/**
|
|
15799
|
+
* BCP-47 language code for the video's default audio track, e.g. "en" or "pl".
|
|
15800
|
+
*/
|
|
15801
|
+
defaultAudioLanguage?: string | null;
|
|
15802
|
+
/**
|
|
15803
|
+
* Set to true if the video is made for kids.
|
|
15804
|
+
*/
|
|
15805
|
+
madeForKids?: boolean | null;
|
|
15806
|
+
/**
|
|
15807
|
+
* Set to true if video contains AI generated content
|
|
15808
|
+
*/
|
|
15809
|
+
containsSyntheticMedia?: boolean | null;
|
|
15810
|
+
/**
|
|
15811
|
+
* Set to true if video has paid product placement
|
|
15812
|
+
*/
|
|
15813
|
+
hasPaidProductPlacement?: boolean | null;
|
|
15814
|
+
} | null;
|
|
15815
|
+
REDDIT?: {
|
|
15816
|
+
/**
|
|
15817
|
+
* Subreddit name. Example: r/subredditName or u/username
|
|
15818
|
+
*/
|
|
15819
|
+
sr: string;
|
|
15820
|
+
text: string;
|
|
15821
|
+
description?: string | null;
|
|
15822
|
+
uploadIds?: Array<(string)> | null;
|
|
15823
|
+
/**
|
|
15824
|
+
* The URL to which the post will link to.
|
|
15825
|
+
*/
|
|
15826
|
+
link?: string | null;
|
|
15827
|
+
/**
|
|
15828
|
+
* Set to true if the post is NSFW.
|
|
15829
|
+
*/
|
|
15830
|
+
nsfw?: boolean | null;
|
|
15831
|
+
/**
|
|
15832
|
+
* Flair ID for the post. Required if the subreddit requires flair selection.
|
|
15833
|
+
*/
|
|
15834
|
+
flairId?: string | null;
|
|
15835
|
+
} | null;
|
|
15836
|
+
DISCORD?: {
|
|
15837
|
+
channelId: string;
|
|
15838
|
+
text?: string | null;
|
|
15839
|
+
uploadIds?: Array<(string)> | null;
|
|
15840
|
+
/**
|
|
15841
|
+
* The username to display as the author of the message.
|
|
15842
|
+
*/
|
|
15843
|
+
username?: string | null;
|
|
15844
|
+
/**
|
|
15845
|
+
* Avatar url to display as the author of the message.
|
|
15846
|
+
*/
|
|
15847
|
+
avatarUrl?: string | null;
|
|
15848
|
+
} | null;
|
|
15849
|
+
SLACK?: {
|
|
15850
|
+
channelId: string;
|
|
15851
|
+
text?: string | null;
|
|
15852
|
+
uploadIds?: Array<(string)> | null;
|
|
15853
|
+
/**
|
|
15854
|
+
* The username to display as the author of the message.
|
|
15855
|
+
*/
|
|
15856
|
+
username?: string | null;
|
|
15857
|
+
/**
|
|
15858
|
+
* Avatar url to display as the author of the message.
|
|
15859
|
+
*/
|
|
15860
|
+
avatarUrl?: string | null;
|
|
15861
|
+
} | null;
|
|
15862
|
+
MASTODON?: {
|
|
15863
|
+
text?: string | null;
|
|
15864
|
+
uploadIds?: Array<(string)> | null;
|
|
15865
|
+
/**
|
|
15866
|
+
* The URL to image uploaded on bundle.social.
|
|
15867
|
+
*/
|
|
15868
|
+
thumbnail?: string | null;
|
|
15869
|
+
privacy?: 'PUBLIC' | 'UNLISTED' | 'PRIVATE' | 'DIRECT' | null;
|
|
15870
|
+
spoiler?: string | null;
|
|
15871
|
+
} | null;
|
|
15872
|
+
BLUESKY?: {
|
|
15873
|
+
text?: string | null;
|
|
15874
|
+
uploadIds?: Array<(string)> | null;
|
|
15875
|
+
/**
|
|
15876
|
+
* Extra hashtags (without #), up to 8.
|
|
15877
|
+
*/
|
|
15878
|
+
tags?: Array<(string)> | null;
|
|
15879
|
+
/**
|
|
15880
|
+
* Self-labels (content warnings) applied to the post.
|
|
15881
|
+
*/
|
|
15882
|
+
labels?: Array<('!no-unauthenticated' | 'porn' | 'sexual' | 'nudity' | 'graphic-media')> | null;
|
|
15883
|
+
/**
|
|
15884
|
+
* AT-URI of the post to quote (e.g. at://did.../app.bsky.feed.post/<rkey>).
|
|
15885
|
+
*/
|
|
15886
|
+
quoteUri?: string;
|
|
15887
|
+
/**
|
|
15888
|
+
* Target URL for the external link card
|
|
15889
|
+
*/
|
|
15890
|
+
externalUrl?: string | null;
|
|
15891
|
+
/**
|
|
15892
|
+
* Card title for the external link card
|
|
15893
|
+
*/
|
|
15894
|
+
externalTitle?: string | null;
|
|
15895
|
+
/**
|
|
15896
|
+
* Card description for the external link card
|
|
15897
|
+
*/
|
|
15898
|
+
externalDescription?: string | null;
|
|
15899
|
+
/**
|
|
15900
|
+
* This should be URL to publicly available image uploaded to bundle.social account.
|
|
15901
|
+
*/
|
|
15902
|
+
thumbnail?: string | null;
|
|
15903
|
+
/**
|
|
15904
|
+
* Alt text for the video embed.
|
|
15905
|
+
*/
|
|
15906
|
+
videoAlt?: string | null;
|
|
15907
|
+
} | null;
|
|
15908
|
+
GOOGLE_BUSINESS?: {
|
|
15909
|
+
text?: string | null;
|
|
15910
|
+
/**
|
|
15911
|
+
* IDs of images/videos uploaded to bundle.social.
|
|
15912
|
+
*/
|
|
15913
|
+
uploadIds?: Array<(string)> | null;
|
|
15914
|
+
topicType?: 'STANDARD' | 'EVENT' | 'OFFER' | 'ALERT' | null;
|
|
15915
|
+
/**
|
|
15916
|
+
* Language tag like 'en' or 'en-US'.
|
|
15917
|
+
*/
|
|
15918
|
+
languageCode?: string | null;
|
|
15919
|
+
callToActionType?: 'BOOK' | 'ORDER' | 'SHOP' | 'LEARN_MORE' | 'SIGN_UP' | 'CALL' | null;
|
|
15920
|
+
callToActionUrl?: string | null;
|
|
15921
|
+
eventTitle?: string | null;
|
|
15922
|
+
eventStartDate?: string | null;
|
|
15923
|
+
eventEndDate?: string | null;
|
|
15924
|
+
offerCouponCode?: string | null;
|
|
15925
|
+
offerRedeemOnlineUrl?: string | null;
|
|
15926
|
+
offerTermsConditions?: string | null;
|
|
15927
|
+
/**
|
|
15928
|
+
* Alert type for ALERT posts.
|
|
15929
|
+
*/
|
|
15930
|
+
alertType?: 'COVID_19' | null;
|
|
15931
|
+
} | null;
|
|
15932
|
+
};
|
|
15933
|
+
error?: string | null;
|
|
15934
|
+
errors?: {
|
|
15935
|
+
TWITTER?: string | null;
|
|
15936
|
+
PINTEREST?: string | null;
|
|
15937
|
+
FACEBOOK?: string | null;
|
|
15938
|
+
INSTAGRAM?: string | null;
|
|
15939
|
+
TIKTOK?: string | null;
|
|
15940
|
+
LINKEDIN?: string | null;
|
|
15941
|
+
REDDIT?: string | null;
|
|
15942
|
+
DISCORD?: string | null;
|
|
15943
|
+
SLACK?: string | null;
|
|
15944
|
+
YOUTUBE?: string | null;
|
|
15945
|
+
MASTODON?: string | null;
|
|
15946
|
+
THREADS?: string | null;
|
|
15947
|
+
BLUESKY?: string | null;
|
|
15948
|
+
GOOGLE_BUSINESS?: string | null;
|
|
15949
|
+
} | null;
|
|
15950
|
+
errorsVerbose?: {
|
|
15951
|
+
TWITTER?: {
|
|
15952
|
+
code?: string | null;
|
|
15953
|
+
errorMessage?: string | null;
|
|
15954
|
+
isTransient?: boolean | null;
|
|
15955
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
15956
|
+
httpStatus?: number | null;
|
|
15957
|
+
meta?: unknown;
|
|
15958
|
+
userFacingMessage?: string | null;
|
|
15959
|
+
} | null;
|
|
15960
|
+
PINTEREST?: {
|
|
15961
|
+
code?: string | null;
|
|
15962
|
+
errorMessage?: string | null;
|
|
15963
|
+
isTransient?: boolean | null;
|
|
15964
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
15965
|
+
httpStatus?: number | null;
|
|
15966
|
+
meta?: unknown;
|
|
15967
|
+
userFacingMessage?: string | null;
|
|
15968
|
+
} | null;
|
|
15969
|
+
FACEBOOK?: {
|
|
15970
|
+
code?: string | null;
|
|
15971
|
+
errorMessage?: string | null;
|
|
15972
|
+
isTransient?: boolean | null;
|
|
15973
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
15974
|
+
httpStatus?: number | null;
|
|
15975
|
+
meta?: unknown;
|
|
15976
|
+
userFacingMessage?: string | null;
|
|
15977
|
+
} | null;
|
|
15978
|
+
INSTAGRAM?: {
|
|
15979
|
+
code?: string | null;
|
|
15980
|
+
errorMessage?: string | null;
|
|
15981
|
+
isTransient?: boolean | null;
|
|
15982
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
15983
|
+
httpStatus?: number | null;
|
|
15984
|
+
meta?: unknown;
|
|
15985
|
+
userFacingMessage?: string | null;
|
|
15986
|
+
} | null;
|
|
15987
|
+
TIKTOK?: {
|
|
15988
|
+
code?: string | null;
|
|
15989
|
+
errorMessage?: string | null;
|
|
15990
|
+
isTransient?: boolean | null;
|
|
15991
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
15992
|
+
httpStatus?: number | null;
|
|
15993
|
+
meta?: unknown;
|
|
15994
|
+
userFacingMessage?: string | null;
|
|
15995
|
+
} | null;
|
|
15996
|
+
LINKEDIN?: {
|
|
15997
|
+
code?: string | null;
|
|
15998
|
+
errorMessage?: string | null;
|
|
15999
|
+
isTransient?: boolean | null;
|
|
16000
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
16001
|
+
httpStatus?: number | null;
|
|
16002
|
+
meta?: unknown;
|
|
16003
|
+
userFacingMessage?: string | null;
|
|
16004
|
+
} | null;
|
|
16005
|
+
REDDIT?: {
|
|
16006
|
+
code?: string | null;
|
|
16007
|
+
errorMessage?: string | null;
|
|
16008
|
+
isTransient?: boolean | null;
|
|
16009
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
16010
|
+
httpStatus?: number | null;
|
|
16011
|
+
meta?: unknown;
|
|
16012
|
+
userFacingMessage?: string | null;
|
|
16013
|
+
} | null;
|
|
16014
|
+
DISCORD?: {
|
|
16015
|
+
code?: string | null;
|
|
16016
|
+
errorMessage?: string | null;
|
|
16017
|
+
isTransient?: boolean | null;
|
|
16018
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
16019
|
+
httpStatus?: number | null;
|
|
16020
|
+
meta?: unknown;
|
|
16021
|
+
userFacingMessage?: string | null;
|
|
16022
|
+
} | null;
|
|
16023
|
+
SLACK?: {
|
|
16024
|
+
code?: string | null;
|
|
16025
|
+
errorMessage?: string | null;
|
|
16026
|
+
isTransient?: boolean | null;
|
|
16027
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
16028
|
+
httpStatus?: number | null;
|
|
16029
|
+
meta?: unknown;
|
|
16030
|
+
userFacingMessage?: string | null;
|
|
16031
|
+
} | null;
|
|
16032
|
+
YOUTUBE?: {
|
|
16033
|
+
code?: string | null;
|
|
16034
|
+
errorMessage?: string | null;
|
|
16035
|
+
isTransient?: boolean | null;
|
|
16036
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
16037
|
+
httpStatus?: number | null;
|
|
16038
|
+
meta?: unknown;
|
|
16039
|
+
userFacingMessage?: string | null;
|
|
16040
|
+
} | null;
|
|
16041
|
+
MASTODON?: {
|
|
16042
|
+
code?: string | null;
|
|
16043
|
+
errorMessage?: string | null;
|
|
16044
|
+
isTransient?: boolean | null;
|
|
16045
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
16046
|
+
httpStatus?: number | null;
|
|
16047
|
+
meta?: unknown;
|
|
16048
|
+
userFacingMessage?: string | null;
|
|
16049
|
+
} | null;
|
|
16050
|
+
THREADS?: {
|
|
16051
|
+
code?: string | null;
|
|
16052
|
+
errorMessage?: string | null;
|
|
16053
|
+
isTransient?: boolean | null;
|
|
16054
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
16055
|
+
httpStatus?: number | null;
|
|
16056
|
+
meta?: unknown;
|
|
16057
|
+
userFacingMessage?: string | null;
|
|
16058
|
+
} | null;
|
|
16059
|
+
BLUESKY?: {
|
|
16060
|
+
code?: string | null;
|
|
16061
|
+
errorMessage?: string | null;
|
|
16062
|
+
isTransient?: boolean | null;
|
|
16063
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
16064
|
+
httpStatus?: number | null;
|
|
16065
|
+
meta?: unknown;
|
|
16066
|
+
userFacingMessage?: string | null;
|
|
16067
|
+
} | null;
|
|
16068
|
+
GOOGLE_BUSINESS?: {
|
|
16069
|
+
code?: string | null;
|
|
16070
|
+
errorMessage?: string | null;
|
|
16071
|
+
isTransient?: boolean | null;
|
|
16072
|
+
retryability?: 'retryable' | 'non_retryable' | 'unknown' | null;
|
|
16073
|
+
httpStatus?: number | null;
|
|
16074
|
+
meta?: unknown;
|
|
16075
|
+
userFacingMessage?: string | null;
|
|
16076
|
+
} | null;
|
|
16077
|
+
} | null;
|
|
16078
|
+
externalData?: {
|
|
16079
|
+
TWITTER?: {
|
|
16080
|
+
id?: string | null;
|
|
16081
|
+
permalink?: string | null;
|
|
16082
|
+
} | null;
|
|
16083
|
+
PINTEREST?: {
|
|
16084
|
+
id?: string | null;
|
|
16085
|
+
permalink?: string | null;
|
|
16086
|
+
thumbnail?: string | null;
|
|
16087
|
+
} | null;
|
|
16088
|
+
FACEBOOK?: {
|
|
16089
|
+
id?: string | null;
|
|
16090
|
+
postId?: string | null;
|
|
16091
|
+
videoId?: string | null;
|
|
16092
|
+
permalink?: string | null;
|
|
16093
|
+
thumbnail?: string | null;
|
|
16094
|
+
} | null;
|
|
16095
|
+
INSTAGRAM?: {
|
|
16096
|
+
id?: string | null;
|
|
16097
|
+
permalink?: string | null;
|
|
16098
|
+
thumbnail?: string | null;
|
|
16099
|
+
} | null;
|
|
16100
|
+
TIKTOK?: {
|
|
16101
|
+
id?: string | null;
|
|
16102
|
+
shareId?: string | null;
|
|
16103
|
+
requestId?: string | null;
|
|
16104
|
+
permalink?: string | null;
|
|
16105
|
+
status?: string | null;
|
|
16106
|
+
} | null;
|
|
16107
|
+
LINKEDIN?: {
|
|
16108
|
+
id?: string | null;
|
|
16109
|
+
activity?: string | null;
|
|
16110
|
+
permalink?: string | null;
|
|
16111
|
+
thumbnail?: string | null;
|
|
16112
|
+
} | null;
|
|
16113
|
+
REDDIT?: {
|
|
16114
|
+
id?: string | null;
|
|
16115
|
+
permalink?: string | null;
|
|
16116
|
+
subreddit_name?: string | null;
|
|
16117
|
+
} | null;
|
|
16118
|
+
DISCORD?: {
|
|
16119
|
+
id?: string | null;
|
|
16120
|
+
permalink?: string | null;
|
|
16121
|
+
channelId?: string | null;
|
|
16122
|
+
} | null;
|
|
16123
|
+
SLACK?: {
|
|
16124
|
+
id?: string | null;
|
|
16125
|
+
permalink?: string | null;
|
|
16126
|
+
channelId?: string | null;
|
|
16127
|
+
} | null;
|
|
16128
|
+
YOUTUBE?: {
|
|
16129
|
+
id?: string | null;
|
|
16130
|
+
permalink?: string | null;
|
|
16131
|
+
thumbnail?: string | null;
|
|
16132
|
+
/**
|
|
16133
|
+
* YouTube resumable upload session URI for retry handling
|
|
16134
|
+
*/
|
|
16135
|
+
sessionUri?: string | null;
|
|
16136
|
+
} | null;
|
|
16137
|
+
MASTODON?: {
|
|
16138
|
+
id?: string | null;
|
|
16139
|
+
permalink?: string | null;
|
|
16140
|
+
thumbnail?: string | null;
|
|
16141
|
+
} | null;
|
|
16142
|
+
THREADS?: {
|
|
16143
|
+
id?: string | null;
|
|
16144
|
+
permalink?: string | null;
|
|
16145
|
+
} | null;
|
|
16146
|
+
BLUESKY?: {
|
|
16147
|
+
id?: string | null;
|
|
16148
|
+
uri?: string | null;
|
|
16149
|
+
/**
|
|
16150
|
+
* Content ID of the created record
|
|
16151
|
+
*/
|
|
16152
|
+
cid?: string | null;
|
|
16153
|
+
permalink?: string | null;
|
|
16154
|
+
/**
|
|
16155
|
+
* Author DID (owner of the record)
|
|
16156
|
+
*/
|
|
16157
|
+
did?: string | null;
|
|
16158
|
+
} | null;
|
|
16159
|
+
GOOGLE_BUSINESS?: {
|
|
16160
|
+
/**
|
|
16161
|
+
* Resource name of the Local Post, e.g. 'accounts/{accountId}/locations/{locationId}/localPosts/{postId}'.
|
|
16162
|
+
*/
|
|
16163
|
+
id?: string | null;
|
|
16164
|
+
/**
|
|
16165
|
+
* Public link to the post (searchUrl) when available.
|
|
16166
|
+
*/
|
|
16167
|
+
permalink?: string | null;
|
|
16168
|
+
} | null;
|
|
16169
|
+
} | null;
|
|
16170
|
+
retryCount: number;
|
|
16171
|
+
createdAt: string | null;
|
|
16172
|
+
updatedAt: string | null;
|
|
16173
|
+
deletedAt?: string | null;
|
|
16174
|
+
uploads: Array<{
|
|
16175
|
+
postId: string;
|
|
16176
|
+
uploadId: string;
|
|
16177
|
+
createdAt: string | null;
|
|
16178
|
+
updatedAt: string | null;
|
|
16179
|
+
deletedAt?: string | null;
|
|
16180
|
+
upload: {
|
|
16181
|
+
id: string;
|
|
16182
|
+
teamId?: string | null;
|
|
16183
|
+
organizationId?: string | null;
|
|
16184
|
+
iconUrl?: string | null;
|
|
16185
|
+
thumbnailUrl?: string | null;
|
|
16186
|
+
url?: string | null;
|
|
16187
|
+
externalLink?: string | null;
|
|
16188
|
+
iconPath?: string | null;
|
|
16189
|
+
thumbnailPath?: string | null;
|
|
16190
|
+
path?: string | null;
|
|
16191
|
+
type: 'image' | 'video' | 'document';
|
|
16192
|
+
width?: number | null;
|
|
16193
|
+
height?: number | null;
|
|
16194
|
+
fileSize?: number | null;
|
|
16195
|
+
videoLength?: number | null;
|
|
16196
|
+
mime?: string | null;
|
|
16197
|
+
ext?: string | null;
|
|
16198
|
+
createdAt: string | null;
|
|
16199
|
+
updatedAt: string | null;
|
|
16200
|
+
};
|
|
16201
|
+
}>;
|
|
16202
|
+
socialAccounts: Array<{
|
|
14711
16203
|
postId: string;
|
|
14712
|
-
|
|
14713
|
-
|
|
14714
|
-
|
|
14715
|
-
|
|
14716
|
-
|
|
16204
|
+
socialAccountId: string;
|
|
16205
|
+
createdAt: string | null;
|
|
16206
|
+
updatedAt: string | null;
|
|
16207
|
+
deletedAt?: string | null;
|
|
16208
|
+
socialAccount: {
|
|
16209
|
+
id: string;
|
|
16210
|
+
type: 'TIKTOK' | 'YOUTUBE' | 'INSTAGRAM' | 'FACEBOOK' | 'TWITTER' | 'THREADS' | 'LINKEDIN' | 'PINTEREST' | 'REDDIT' | 'MASTODON' | 'DISCORD' | 'SLACK' | 'BLUESKY' | 'GOOGLE_BUSINESS';
|
|
16211
|
+
teamId: string;
|
|
16212
|
+
username?: string | null;
|
|
16213
|
+
displayName?: string | null;
|
|
16214
|
+
avatarUrl?: string | null;
|
|
16215
|
+
externalId?: string | null;
|
|
16216
|
+
userUsername?: string | null;
|
|
16217
|
+
userDisplayName?: string | null;
|
|
16218
|
+
userId?: string | null;
|
|
16219
|
+
channels?: Array<{
|
|
16220
|
+
id: string;
|
|
16221
|
+
name?: string | null;
|
|
16222
|
+
username?: string | null;
|
|
16223
|
+
address?: string | null;
|
|
16224
|
+
avatarUrl?: string | null;
|
|
16225
|
+
webhook?: {
|
|
16226
|
+
id?: string | null;
|
|
16227
|
+
name?: string | null;
|
|
16228
|
+
avatar?: string | null;
|
|
16229
|
+
url?: string | null;
|
|
16230
|
+
} | null;
|
|
16231
|
+
metadata?: {
|
|
16232
|
+
allowImages?: boolean | null;
|
|
16233
|
+
allowVideos?: boolean | null;
|
|
16234
|
+
allowGalleries?: boolean | null;
|
|
16235
|
+
linkFlairEnabled?: boolean | null;
|
|
16236
|
+
} | null;
|
|
16237
|
+
}> | null;
|
|
16238
|
+
mastodonServerId?: string | null;
|
|
16239
|
+
instagramConnectionMethod?: 'FACEBOOK' | 'INSTAGRAM' | null;
|
|
16240
|
+
twitterSubType?: 'none' | 'basic' | 'premium' | 'premium_plus' | null;
|
|
16241
|
+
isTiktokBusinessAccount?: boolean | null;
|
|
16242
|
+
disconnectedCheckTryAt?: string | null;
|
|
16243
|
+
deleteOn?: string | null;
|
|
16244
|
+
createdAt: string | null;
|
|
16245
|
+
updatedAt: string | null;
|
|
16246
|
+
deletedAt?: string | null;
|
|
16247
|
+
};
|
|
14717
16248
|
}>;
|
|
14718
16249
|
};
|
|
14719
16250
|
/**
|
|
@@ -14778,6 +16309,7 @@ type $OpenApiTs = {
|
|
|
14778
16309
|
teamId: string;
|
|
14779
16310
|
organizationId?: string | null;
|
|
14780
16311
|
title: string;
|
|
16312
|
+
referenceKey?: string | null;
|
|
14781
16313
|
postDate: string | null;
|
|
14782
16314
|
postedDate?: string | null;
|
|
14783
16315
|
status: 'DRAFT' | 'SCHEDULED' | 'POSTED' | 'ERROR' | 'DELETED' | 'PROCESSING' | 'REVIEW' | 'RETRYING';
|
|
@@ -15121,6 +16653,10 @@ type $OpenApiTs = {
|
|
|
15121
16653
|
* Card description for the external link card
|
|
15122
16654
|
*/
|
|
15123
16655
|
externalDescription?: string | null;
|
|
16656
|
+
/**
|
|
16657
|
+
* This should be URL to publicly available image uploaded to bundle.social account.
|
|
16658
|
+
*/
|
|
16659
|
+
thumbnail?: string | null;
|
|
15124
16660
|
/**
|
|
15125
16661
|
* Alt text for the video embed.
|
|
15126
16662
|
*/
|
|
@@ -15528,6 +17064,7 @@ type $OpenApiTs = {
|
|
|
15528
17064
|
teamId: string;
|
|
15529
17065
|
organizationId?: string | null;
|
|
15530
17066
|
title: string;
|
|
17067
|
+
referenceKey?: string | null;
|
|
15531
17068
|
postDate: string | null;
|
|
15532
17069
|
postedDate?: string | null;
|
|
15533
17070
|
status: 'DRAFT' | 'SCHEDULED' | 'POSTED' | 'ERROR' | 'DELETED' | 'PROCESSING' | 'REVIEW' | 'RETRYING';
|
|
@@ -15871,6 +17408,10 @@ type $OpenApiTs = {
|
|
|
15871
17408
|
* Card description for the external link card
|
|
15872
17409
|
*/
|
|
15873
17410
|
externalDescription?: string | null;
|
|
17411
|
+
/**
|
|
17412
|
+
* This should be URL to publicly available image uploaded to bundle.social account.
|
|
17413
|
+
*/
|
|
17414
|
+
thumbnail?: string | null;
|
|
15874
17415
|
/**
|
|
15875
17416
|
* Alt text for the video embed.
|
|
15876
17417
|
*/
|
|
@@ -16176,6 +17717,13 @@ type $OpenApiTs = {
|
|
|
16176
17717
|
statusCode?: number | null;
|
|
16177
17718
|
message: string;
|
|
16178
17719
|
};
|
|
17720
|
+
/**
|
|
17721
|
+
* 409
|
|
17722
|
+
*/
|
|
17723
|
+
409: {
|
|
17724
|
+
statusCode?: number | null;
|
|
17725
|
+
message: string;
|
|
17726
|
+
};
|
|
16179
17727
|
/**
|
|
16180
17728
|
* 429
|
|
16181
17729
|
*/
|
|
@@ -16203,6 +17751,7 @@ type $OpenApiTs = {
|
|
|
16203
17751
|
teamId: string;
|
|
16204
17752
|
organizationId?: string | null;
|
|
16205
17753
|
title: string;
|
|
17754
|
+
referenceKey?: string | null;
|
|
16206
17755
|
postDate: string | null;
|
|
16207
17756
|
postedDate?: string | null;
|
|
16208
17757
|
status: 'DRAFT' | 'SCHEDULED' | 'POSTED' | 'ERROR' | 'DELETED' | 'PROCESSING' | 'REVIEW' | 'RETRYING';
|
|
@@ -16546,6 +18095,10 @@ type $OpenApiTs = {
|
|
|
16546
18095
|
* Card description for the external link card
|
|
16547
18096
|
*/
|
|
16548
18097
|
externalDescription?: string | null;
|
|
18098
|
+
/**
|
|
18099
|
+
* This should be URL to publicly available image uploaded to bundle.social account.
|
|
18100
|
+
*/
|
|
18101
|
+
thumbnail?: string | null;
|
|
16549
18102
|
/**
|
|
16550
18103
|
* Alt text for the video embed.
|
|
16551
18104
|
*/
|
|
@@ -16881,6 +18434,7 @@ type $OpenApiTs = {
|
|
|
16881
18434
|
teamId: string;
|
|
16882
18435
|
organizationId?: string | null;
|
|
16883
18436
|
title: string;
|
|
18437
|
+
referenceKey?: string | null;
|
|
16884
18438
|
postDate: string | null;
|
|
16885
18439
|
postedDate?: string | null;
|
|
16886
18440
|
status: 'DRAFT' | 'SCHEDULED' | 'POSTED' | 'ERROR' | 'DELETED' | 'PROCESSING' | 'REVIEW' | 'RETRYING';
|
|
@@ -17224,6 +18778,10 @@ type $OpenApiTs = {
|
|
|
17224
18778
|
* Card description for the external link card
|
|
17225
18779
|
*/
|
|
17226
18780
|
externalDescription?: string | null;
|
|
18781
|
+
/**
|
|
18782
|
+
* This should be URL to publicly available image uploaded to bundle.social account.
|
|
18783
|
+
*/
|
|
18784
|
+
thumbnail?: string | null;
|
|
17227
18785
|
/**
|
|
17228
18786
|
* Alt text for the video embed.
|
|
17229
18787
|
*/
|
|
@@ -17633,6 +19191,7 @@ type $OpenApiTs = {
|
|
|
17633
19191
|
teamId: string;
|
|
17634
19192
|
organizationId?: string | null;
|
|
17635
19193
|
title: string;
|
|
19194
|
+
referenceKey?: string | null;
|
|
17636
19195
|
postDate: string | null;
|
|
17637
19196
|
postedDate?: string | null;
|
|
17638
19197
|
status: 'DRAFT' | 'SCHEDULED' | 'POSTED' | 'ERROR' | 'DELETED' | 'PROCESSING' | 'REVIEW' | 'RETRYING';
|
|
@@ -17976,6 +19535,10 @@ type $OpenApiTs = {
|
|
|
17976
19535
|
* Card description for the external link card
|
|
17977
19536
|
*/
|
|
17978
19537
|
externalDescription?: string | null;
|
|
19538
|
+
/**
|
|
19539
|
+
* This should be URL to publicly available image uploaded to bundle.social account.
|
|
19540
|
+
*/
|
|
19541
|
+
thumbnail?: string | null;
|
|
17979
19542
|
/**
|
|
17980
19543
|
* Alt text for the video embed.
|
|
17981
19544
|
*/
|
|
@@ -18281,6 +19844,13 @@ type $OpenApiTs = {
|
|
|
18281
19844
|
statusCode?: number | null;
|
|
18282
19845
|
message: string;
|
|
18283
19846
|
};
|
|
19847
|
+
/**
|
|
19848
|
+
* 409
|
|
19849
|
+
*/
|
|
19850
|
+
409: {
|
|
19851
|
+
statusCode?: number | null;
|
|
19852
|
+
message: string;
|
|
19853
|
+
};
|
|
18284
19854
|
/**
|
|
18285
19855
|
* 429
|
|
18286
19856
|
*/
|
|
@@ -18310,6 +19880,7 @@ type $OpenApiTs = {
|
|
|
18310
19880
|
teamId: string;
|
|
18311
19881
|
organizationId?: string | null;
|
|
18312
19882
|
title: string;
|
|
19883
|
+
referenceKey?: string | null;
|
|
18313
19884
|
postDate: string | null;
|
|
18314
19885
|
postedDate?: string | null;
|
|
18315
19886
|
status: 'DRAFT' | 'SCHEDULED' | 'POSTED' | 'ERROR' | 'DELETED' | 'PROCESSING' | 'REVIEW' | 'RETRYING';
|
|
@@ -18653,6 +20224,10 @@ type $OpenApiTs = {
|
|
|
18653
20224
|
* Card description for the external link card
|
|
18654
20225
|
*/
|
|
18655
20226
|
externalDescription?: string | null;
|
|
20227
|
+
/**
|
|
20228
|
+
* This should be URL to publicly available image uploaded to bundle.social account.
|
|
20229
|
+
*/
|
|
20230
|
+
thumbnail?: string | null;
|
|
18656
20231
|
/**
|
|
18657
20232
|
* Alt text for the video embed.
|
|
18658
20233
|
*/
|
|
@@ -19104,6 +20679,7 @@ type $OpenApiTs = {
|
|
|
19104
20679
|
teamId: string;
|
|
19105
20680
|
organizationId?: string | null;
|
|
19106
20681
|
title: string;
|
|
20682
|
+
referenceKey?: string | null;
|
|
19107
20683
|
postDate: string | null;
|
|
19108
20684
|
postedDate?: string | null;
|
|
19109
20685
|
status: 'DRAFT' | 'SCHEDULED' | 'POSTED' | 'ERROR' | 'DELETED' | 'PROCESSING' | 'REVIEW' | 'RETRYING';
|
|
@@ -19447,6 +21023,10 @@ type $OpenApiTs = {
|
|
|
19447
21023
|
* Card description for the external link card
|
|
19448
21024
|
*/
|
|
19449
21025
|
externalDescription?: string | null;
|
|
21026
|
+
/**
|
|
21027
|
+
* This should be URL to publicly available image uploaded to bundle.social account.
|
|
21028
|
+
*/
|
|
21029
|
+
thumbnail?: string | null;
|
|
19450
21030
|
/**
|
|
19451
21031
|
* Alt text for the video embed.
|
|
19452
21032
|
*/
|
|
@@ -19931,6 +21511,7 @@ type $OpenApiTs = {
|
|
|
19931
21511
|
teamId: string;
|
|
19932
21512
|
organizationId?: string | null;
|
|
19933
21513
|
title: string;
|
|
21514
|
+
referenceKey?: string | null;
|
|
19934
21515
|
postDate: string | null;
|
|
19935
21516
|
postedDate?: string | null;
|
|
19936
21517
|
status: 'DRAFT' | 'SCHEDULED' | 'POSTED' | 'ERROR' | 'DELETED' | 'PROCESSING' | 'REVIEW' | 'RETRYING';
|
|
@@ -20274,6 +21855,10 @@ type $OpenApiTs = {
|
|
|
20274
21855
|
* Card description for the external link card
|
|
20275
21856
|
*/
|
|
20276
21857
|
externalDescription?: string | null;
|
|
21858
|
+
/**
|
|
21859
|
+
* This should be URL to publicly available image uploaded to bundle.social account.
|
|
21860
|
+
*/
|
|
21861
|
+
thumbnail?: string | null;
|
|
20277
21862
|
/**
|
|
20278
21863
|
* Alt text for the video embed.
|
|
20279
21864
|
*/
|
|
@@ -24240,6 +25825,76 @@ type $OpenApiTs = {
|
|
|
24240
25825
|
};
|
|
24241
25826
|
};
|
|
24242
25827
|
};
|
|
25828
|
+
'/api/v1/misc/linkedin/post/reshare': {
|
|
25829
|
+
post: {
|
|
25830
|
+
req: MiscLinkedinResharePostData;
|
|
25831
|
+
res: {
|
|
25832
|
+
/**
|
|
25833
|
+
* 200
|
|
25834
|
+
*/
|
|
25835
|
+
200: {
|
|
25836
|
+
success: boolean;
|
|
25837
|
+
id: string;
|
|
25838
|
+
activity?: string | null;
|
|
25839
|
+
permalink?: string | null;
|
|
25840
|
+
};
|
|
25841
|
+
/**
|
|
25842
|
+
* 400
|
|
25843
|
+
*/
|
|
25844
|
+
400: {
|
|
25845
|
+
statusCode?: number | null;
|
|
25846
|
+
message: string;
|
|
25847
|
+
issues?: Array<{
|
|
25848
|
+
code?: 'invalid_type' | 'invalid_literal' | 'custom' | 'invalid_union' | 'invalid_union_discriminator' | 'invalid_enum_value' | 'unrecognized_keys' | 'invalid_arguments' | 'invalid_return_type' | 'invalid_date' | 'invalid_string' | 'too_small' | 'too_big' | 'invalid_intersection_types' | 'not_multiple_of' | 'not_finite' | null;
|
|
25849
|
+
message: string;
|
|
25850
|
+
path?: Array<(string | number)> | null;
|
|
25851
|
+
}> | null;
|
|
25852
|
+
};
|
|
25853
|
+
/**
|
|
25854
|
+
* 401
|
|
25855
|
+
*/
|
|
25856
|
+
401: {
|
|
25857
|
+
statusCode?: number | null;
|
|
25858
|
+
message: string;
|
|
25859
|
+
};
|
|
25860
|
+
/**
|
|
25861
|
+
* 403
|
|
25862
|
+
*/
|
|
25863
|
+
403: {
|
|
25864
|
+
statusCode?: number | null;
|
|
25865
|
+
message: string;
|
|
25866
|
+
};
|
|
25867
|
+
/**
|
|
25868
|
+
* 404
|
|
25869
|
+
*/
|
|
25870
|
+
404: {
|
|
25871
|
+
statusCode?: number | null;
|
|
25872
|
+
message: string;
|
|
25873
|
+
};
|
|
25874
|
+
/**
|
|
25875
|
+
* 422
|
|
25876
|
+
*/
|
|
25877
|
+
422: {
|
|
25878
|
+
statusCode?: number | null;
|
|
25879
|
+
message: string;
|
|
25880
|
+
};
|
|
25881
|
+
/**
|
|
25882
|
+
* 429
|
|
25883
|
+
*/
|
|
25884
|
+
429: {
|
|
25885
|
+
statusCode?: number | null;
|
|
25886
|
+
message: string;
|
|
25887
|
+
};
|
|
25888
|
+
/**
|
|
25889
|
+
* 500
|
|
25890
|
+
*/
|
|
25891
|
+
500: {
|
|
25892
|
+
statusCode?: number | null;
|
|
25893
|
+
message: string;
|
|
25894
|
+
};
|
|
25895
|
+
};
|
|
25896
|
+
};
|
|
25897
|
+
};
|
|
24243
25898
|
'/api/v1/misc/linkedin/post': {
|
|
24244
25899
|
patch: {
|
|
24245
25900
|
req: MiscLinkedinEditPostData;
|
|
@@ -29857,6 +31512,14 @@ declare class PostService {
|
|
|
29857
31512
|
* @throws ApiError
|
|
29858
31513
|
*/
|
|
29859
31514
|
postReconnectSocialAccount(data?: PostReconnectSocialAccountData): CancelablePromise<PostReconnectSocialAccountResponse>;
|
|
31515
|
+
/**
|
|
31516
|
+
* Get post by reference key
|
|
31517
|
+
* @param data The data for the request.
|
|
31518
|
+
* @param data.referenceKey
|
|
31519
|
+
* @returns unknown 200
|
|
31520
|
+
* @throws ApiError
|
|
31521
|
+
*/
|
|
31522
|
+
postGetByReferenceKey(data: PostGetByReferenceKeyData): CancelablePromise<PostGetByReferenceKeyResponse>;
|
|
29860
31523
|
/**
|
|
29861
31524
|
* Get post
|
|
29862
31525
|
* @param data The data for the request.
|
|
@@ -30248,6 +31911,15 @@ declare class MiscService {
|
|
|
30248
31911
|
* @throws ApiError
|
|
30249
31912
|
*/
|
|
30250
31913
|
miscLinkedinBuildCommentary(data?: MiscLinkedinBuildCommentaryData): CancelablePromise<MiscLinkedinBuildCommentaryResponse>;
|
|
31914
|
+
/**
|
|
31915
|
+
* Reshare an existing LinkedIn post
|
|
31916
|
+
* Create a LinkedIn reshare as the currently selected LinkedIn channel.
|
|
31917
|
+
* @param data The data for the request.
|
|
31918
|
+
* @param data.requestBody Body
|
|
31919
|
+
* @returns unknown 200
|
|
31920
|
+
* @throws ApiError
|
|
31921
|
+
*/
|
|
31922
|
+
miscLinkedinResharePost(data?: MiscLinkedinResharePostData): CancelablePromise<MiscLinkedinResharePostResponse>;
|
|
30251
31923
|
/**
|
|
30252
31924
|
* Edit an existing LinkedIn post
|
|
30253
31925
|
* Update the text content of a published LinkedIn post.
|
|
@@ -31045,4 +32717,4 @@ declare class Bundlesocial extends Client {
|
|
|
31045
32717
|
constructor(apiKey: string, options?: OpenAPIConfig);
|
|
31046
32718
|
}
|
|
31047
32719
|
|
|
31048
|
-
export { $OpenApiTs, AnalyticsForcePostAnalyticsData, AnalyticsForcePostAnalyticsResponse, AnalyticsForceSocialAccountAnalyticsData, AnalyticsForceSocialAccountAnalyticsResponse, AnalyticsGetBulkPostAnalyticsData, AnalyticsGetBulkPostAnalyticsResponse, AnalyticsGetPostAnalyticsData, AnalyticsGetPostAnalyticsRawData, AnalyticsGetPostAnalyticsRawResponse, AnalyticsGetPostAnalyticsResponse, AnalyticsGetSocialAccountAnalyticsData, AnalyticsGetSocialAccountAnalyticsRawData, AnalyticsGetSocialAccountAnalyticsRawResponse, AnalyticsGetSocialAccountAnalyticsResponse, ApiError, AppGetHealthResponse, BaseHttpRequest, Bundlesocial, CancelError, CancelablePromise, CommentCreateData, CommentCreateResponse, CommentDeleteData, CommentDeleteResponse, CommentGetData, CommentGetListData, CommentGetListResponse, CommentGetResponse, CommentImportActionFetchedCommentData, CommentImportActionFetchedCommentResponse, CommentImportCreateData, CommentImportCreateResponse, CommentImportGetByIdData, CommentImportGetByIdResponse, CommentImportGetFetchedCommentsData, CommentImportGetFetchedCommentsResponse, CommentImportGetListData, CommentImportGetListResponse, CommentRetryData, CommentRetryResponse, CommentUpdateData, CommentUpdateResponse, MiscBlueskyDeleteCommentData, MiscBlueskyDeleteCommentResponse, MiscBlueskyDeletePostData, MiscBlueskyDeletePostResponse, MiscDiscordDeleteMessageData, MiscDiscordDeleteMessageResponse, MiscFacebookDeleteCommentData, MiscFacebookDeleteCommentResponse, MiscFacebookDeletePostData, MiscFacebookDeletePostResponse, MiscFacebookEditCommentData, MiscFacebookEditCommentResponse, MiscFacebookEditPostData, MiscFacebookEditPostResponse, MiscFacebookGetRecommendationByIdData, MiscFacebookGetRecommendationByIdResponse, MiscFacebookGetRecommendationCommentsData, MiscFacebookGetRecommendationCommentsResponse, MiscFacebookGetRecommendationImportByIdData, MiscFacebookGetRecommendationImportByIdResponse, MiscFacebookGetRecommendationImportStatusData, MiscFacebookGetRecommendationImportStatusResponse, MiscFacebookGetRecommendationsData, MiscFacebookGetRecommendationsResponse, MiscFacebookGetTokenDebugData, MiscFacebookGetTokenDebugResponse, MiscFacebookImportRecommendationsData, MiscFacebookImportRecommendationsResponse, MiscFacebookReplyToRecommendationCommentData, MiscFacebookReplyToRecommendationCommentResponse, MiscFacebookReplyToRecommendationData, MiscFacebookReplyToRecommendationResponse, MiscGoogleBusinessAddMediaData, MiscGoogleBusinessAddMediaResponse, MiscGoogleBusinessCreatePlaceActionLinkData, MiscGoogleBusinessCreatePlaceActionLinkResponse, MiscGoogleBusinessDeleteMediaData, MiscGoogleBusinessDeleteMediaResponse, MiscGoogleBusinessDeletePlaceActionLinkData, MiscGoogleBusinessDeletePlaceActionLinkResponse, MiscGoogleBusinessDeletePostData, MiscGoogleBusinessDeletePostResponse, MiscGoogleBusinessDeleteReviewReplyData, MiscGoogleBusinessDeleteReviewReplyResponse, MiscGoogleBusinessGetAttributesData, MiscGoogleBusinessGetAttributesResponse, MiscGoogleBusinessGetFoodMenusData, MiscGoogleBusinessGetFoodMenusResponse, MiscGoogleBusinessGetLocationData, MiscGoogleBusinessGetLocationResponse, MiscGoogleBusinessGetReviewByIdData, MiscGoogleBusinessGetReviewByIdResponse, MiscGoogleBusinessGetReviewImportByIdData, MiscGoogleBusinessGetReviewImportByIdResponse, MiscGoogleBusinessGetReviewImportStatusData, MiscGoogleBusinessGetReviewImportStatusResponse, MiscGoogleBusinessGetReviewsData, MiscGoogleBusinessGetReviewsResponse, MiscGoogleBusinessGetServiceListData, MiscGoogleBusinessGetServiceListResponse, MiscGoogleBusinessImportReviewsData, MiscGoogleBusinessImportReviewsResponse, MiscGoogleBusinessListAvailableAttributesData, MiscGoogleBusinessListAvailableAttributesResponse, MiscGoogleBusinessListCategoriesData, MiscGoogleBusinessListCategoriesResponse, MiscGoogleBusinessListMediaData, MiscGoogleBusinessListMediaResponse, MiscGoogleBusinessListPlaceActionLinksData, MiscGoogleBusinessListPlaceActionLinksResponse, MiscGoogleBusinessReplyToReviewData, MiscGoogleBusinessReplyToReviewResponse, MiscGoogleBusinessUpdateAttributesData, MiscGoogleBusinessUpdateAttributesResponse, MiscGoogleBusinessUpdateFoodMenusData, MiscGoogleBusinessUpdateFoodMenusResponse, MiscGoogleBusinessUpdateHoursData, MiscGoogleBusinessUpdateHoursResponse, MiscGoogleBusinessUpdateLocationData, MiscGoogleBusinessUpdateLocationResponse, MiscGoogleBusinessUpdatePlaceActionLinkData, MiscGoogleBusinessUpdatePlaceActionLinkResponse, MiscGoogleBusinessUpdateServiceListData, MiscGoogleBusinessUpdateServiceListResponse, MiscInstagramBusinessDiscoveryData, MiscInstagramBusinessDiscoveryResponse, MiscInstagramDeleteCommentData, MiscInstagramDeleteCommentResponse, MiscInstagramSearchAudioData, MiscInstagramSearchAudioResponse, MiscInstagramSearchLocationsData, MiscInstagramSearchLocationsResponse, MiscLinkedinBuildCommentaryData, MiscLinkedinBuildCommentaryResponse, MiscLinkedinDeleteCommentData, MiscLinkedinDeleteCommentResponse, MiscLinkedinDeletePostData, MiscLinkedinDeletePostResponse, MiscLinkedinEditCommentData, MiscLinkedinEditCommentResponse, MiscLinkedinEditPostData, MiscLinkedinEditPostResponse, MiscLinkedinGetTagsData, MiscLinkedinGetTagsResponse, MiscMastodonDeleteCommentData, MiscMastodonDeleteCommentResponse, MiscMastodonDeleteStatusData, MiscMastodonDeleteStatusResponse, MiscMastodonEditCommentData, MiscMastodonEditCommentResponse, MiscMastodonEditStatusData, MiscMastodonEditStatusResponse, MiscPinterestDeletePinData, MiscPinterestDeletePinResponse, MiscPinterestEditPinData, MiscPinterestEditPinResponse, MiscRedditDeleteCommentData, MiscRedditDeleteCommentResponse, MiscRedditDeletePostData, MiscRedditDeletePostResponse, MiscRedditEditCommentData, MiscRedditEditCommentResponse, MiscRedditEditPostData, MiscRedditEditPostResponse, MiscRedditGetPostRequirementsData, MiscRedditGetPostRequirementsResponse, MiscRedditGetSubredditFlairsData, MiscRedditGetSubredditFlairsResponse, MiscSlackDeleteMessageData, MiscSlackDeleteMessageResponse, MiscSlackEditMessageData, MiscSlackEditMessageResponse, MiscTiktokDeleteCommentData, MiscTiktokDeleteCommentResponse, MiscTiktokGetCommercialMusicTrendingListData, MiscTiktokGetCommercialMusicTrendingListResponse, MiscTwitterDeleteTweetData, MiscTwitterDeleteTweetResponse, MiscYoutubeAddVideoToPlaylistData, MiscYoutubeAddVideoToPlaylistResponse, MiscYoutubeCreateNewChannelPlaylistData, MiscYoutubeCreateNewChannelPlaylistResponse, MiscYoutubeDeleteChannelPlaylistData, MiscYoutubeDeleteChannelPlaylistResponse, MiscYoutubeDeleteCommentData, MiscYoutubeDeleteCommentResponse, MiscYoutubeDeleteVideoData, MiscYoutubeDeleteVideoFromPlaylistData, MiscYoutubeDeleteVideoFromPlaylistResponse, MiscYoutubeDeleteVideoResponse, MiscYoutubeEditCommentData, MiscYoutubeEditCommentResponse, MiscYoutubeEditVideoData, MiscYoutubeEditVideoResponse, MiscYoutubeGetChannelPlaylistData, MiscYoutubeGetChannelPlaylistResponse, MiscYoutubeGetRegionsData, MiscYoutubeGetRegionsResponse, MiscYoutubeGetVideoCategoriesData, MiscYoutubeGetVideoCategoriesResponse, MiscYoutubeGetVideosFromPlaylistData, MiscYoutubeGetVideosFromPlaylistResponse, MiscYoutubeSetThumbnailData, MiscYoutubeSetThumbnailResponse, MiscYoutubeUpdateChannelPlaylistData, MiscYoutubeUpdateChannelPlaylistResponse, OpenAPI, OpenAPIConfig, OrganizationGetCommentsUsageResponse, OrganizationGetDailyLimitsUsageData, OrganizationGetDailyLimitsUsageResponse, OrganizationGetImportsUsageData, OrganizationGetImportsUsageResponse, OrganizationGetOrganizationResponse, OrganizationGetPostsUsageResponse, OrganizationGetUploadsUsageResponse, PostCreateData, PostCreateResponse, PostCsvCreateData, PostCsvCreateResponse, PostCsvGetByIdData, PostCsvGetByIdResponse, PostCsvGetListData, PostCsvGetListResponse, PostCsvGetRowsData, PostCsvGetRowsResponse, PostCsvGetStatusData, PostCsvGetStatusResponse, PostDeleteData, PostDeleteResponse, PostGetData, PostGetListData, PostGetListResponse, PostGetReconnectSocialAccountCandidatesData, PostGetReconnectSocialAccountCandidatesResponse, PostGetResponse, PostImportCreateData, PostImportCreateResponse, PostImportDeleteImportedPostsData, PostImportDeleteImportedPostsResponse, PostImportGetByIdData, PostImportGetByIdResponse, PostImportGetImportedPostsData, PostImportGetImportedPostsResponse, PostImportGetStatusData, PostImportGetStatusResponse, PostImportRetryImportData, PostImportRetryImportResponse, PostReconnectSocialAccountData, PostReconnectSocialAccountResponse, PostRetryData, PostRetryResponse, PostUpdateData, PostUpdateResponse, SocialAccountConnectData, SocialAccountConnectResponse, SocialAccountConnectionCheckData, SocialAccountConnectionCheckResponse, SocialAccountCopyData, SocialAccountCopyResponse, SocialAccountCreatePortalLinkData, SocialAccountCreatePortalLinkResponse, SocialAccountDisconnectData, SocialAccountDisconnectResponse, SocialAccountGetAccountsToDeleteData, SocialAccountGetAccountsToDeleteResponse, SocialAccountGetByTypeData, SocialAccountGetByTypeResponse, SocialAccountProfileRefreshData, SocialAccountProfileRefreshResponse, SocialAccountRefreshChannelsData, SocialAccountRefreshChannelsResponse, SocialAccountSetChannelData, SocialAccountSetChannelResponse, SocialAccountUnsetChannelData, SocialAccountUnsetChannelResponse, TeamCreateTeamData, TeamCreateTeamResponse, TeamDeleteTeamData, TeamDeleteTeamResponse, TeamGetListData, TeamGetListResponse, TeamGetTeamData, TeamGetTeamResponse, TeamUpdateTeamData, TeamUpdateTeamResponse, UploadCreateData, UploadCreateFromUrlData, UploadCreateFromUrlResponse, UploadCreateResponse, UploadDeleteData, UploadDeleteManyData, UploadDeleteManyResponse, UploadDeleteResponse, UploadFinalizeLargeUploadData, UploadFinalizeLargeUploadResponse, UploadGetData, UploadGetListData, UploadGetListResponse, UploadGetResponse, UploadInitLargeUploadData, UploadInitLargeUploadResponse, WebhookEvent, WebhookEventType, webhookEventTypes };
|
|
32720
|
+
export { $OpenApiTs, AnalyticsForcePostAnalyticsData, AnalyticsForcePostAnalyticsResponse, AnalyticsForceSocialAccountAnalyticsData, AnalyticsForceSocialAccountAnalyticsResponse, AnalyticsGetBulkPostAnalyticsData, AnalyticsGetBulkPostAnalyticsResponse, AnalyticsGetPostAnalyticsData, AnalyticsGetPostAnalyticsRawData, AnalyticsGetPostAnalyticsRawResponse, AnalyticsGetPostAnalyticsResponse, AnalyticsGetSocialAccountAnalyticsData, AnalyticsGetSocialAccountAnalyticsRawData, AnalyticsGetSocialAccountAnalyticsRawResponse, AnalyticsGetSocialAccountAnalyticsResponse, ApiError, AppGetHealthResponse, BaseHttpRequest, Bundlesocial, CancelError, CancelablePromise, CommentCreateData, CommentCreateResponse, CommentDeleteData, CommentDeleteResponse, CommentGetData, CommentGetListData, CommentGetListResponse, CommentGetResponse, CommentImportActionFetchedCommentData, CommentImportActionFetchedCommentResponse, CommentImportCreateData, CommentImportCreateResponse, CommentImportGetByIdData, CommentImportGetByIdResponse, CommentImportGetFetchedCommentsData, CommentImportGetFetchedCommentsResponse, CommentImportGetListData, CommentImportGetListResponse, CommentRetryData, CommentRetryResponse, CommentUpdateData, CommentUpdateResponse, MiscBlueskyDeleteCommentData, MiscBlueskyDeleteCommentResponse, MiscBlueskyDeletePostData, MiscBlueskyDeletePostResponse, MiscDiscordDeleteMessageData, MiscDiscordDeleteMessageResponse, MiscFacebookDeleteCommentData, MiscFacebookDeleteCommentResponse, MiscFacebookDeletePostData, MiscFacebookDeletePostResponse, MiscFacebookEditCommentData, MiscFacebookEditCommentResponse, MiscFacebookEditPostData, MiscFacebookEditPostResponse, MiscFacebookGetRecommendationByIdData, MiscFacebookGetRecommendationByIdResponse, MiscFacebookGetRecommendationCommentsData, MiscFacebookGetRecommendationCommentsResponse, MiscFacebookGetRecommendationImportByIdData, MiscFacebookGetRecommendationImportByIdResponse, MiscFacebookGetRecommendationImportStatusData, MiscFacebookGetRecommendationImportStatusResponse, MiscFacebookGetRecommendationsData, MiscFacebookGetRecommendationsResponse, MiscFacebookGetTokenDebugData, MiscFacebookGetTokenDebugResponse, MiscFacebookImportRecommendationsData, MiscFacebookImportRecommendationsResponse, MiscFacebookReplyToRecommendationCommentData, MiscFacebookReplyToRecommendationCommentResponse, MiscFacebookReplyToRecommendationData, MiscFacebookReplyToRecommendationResponse, MiscGoogleBusinessAddMediaData, MiscGoogleBusinessAddMediaResponse, MiscGoogleBusinessCreatePlaceActionLinkData, MiscGoogleBusinessCreatePlaceActionLinkResponse, MiscGoogleBusinessDeleteMediaData, MiscGoogleBusinessDeleteMediaResponse, MiscGoogleBusinessDeletePlaceActionLinkData, MiscGoogleBusinessDeletePlaceActionLinkResponse, MiscGoogleBusinessDeletePostData, MiscGoogleBusinessDeletePostResponse, MiscGoogleBusinessDeleteReviewReplyData, MiscGoogleBusinessDeleteReviewReplyResponse, MiscGoogleBusinessGetAttributesData, MiscGoogleBusinessGetAttributesResponse, MiscGoogleBusinessGetFoodMenusData, MiscGoogleBusinessGetFoodMenusResponse, MiscGoogleBusinessGetLocationData, MiscGoogleBusinessGetLocationResponse, MiscGoogleBusinessGetReviewByIdData, MiscGoogleBusinessGetReviewByIdResponse, MiscGoogleBusinessGetReviewImportByIdData, MiscGoogleBusinessGetReviewImportByIdResponse, MiscGoogleBusinessGetReviewImportStatusData, MiscGoogleBusinessGetReviewImportStatusResponse, MiscGoogleBusinessGetReviewsData, MiscGoogleBusinessGetReviewsResponse, MiscGoogleBusinessGetServiceListData, MiscGoogleBusinessGetServiceListResponse, MiscGoogleBusinessImportReviewsData, MiscGoogleBusinessImportReviewsResponse, MiscGoogleBusinessListAvailableAttributesData, MiscGoogleBusinessListAvailableAttributesResponse, MiscGoogleBusinessListCategoriesData, MiscGoogleBusinessListCategoriesResponse, MiscGoogleBusinessListMediaData, MiscGoogleBusinessListMediaResponse, MiscGoogleBusinessListPlaceActionLinksData, MiscGoogleBusinessListPlaceActionLinksResponse, MiscGoogleBusinessReplyToReviewData, MiscGoogleBusinessReplyToReviewResponse, MiscGoogleBusinessUpdateAttributesData, MiscGoogleBusinessUpdateAttributesResponse, MiscGoogleBusinessUpdateFoodMenusData, MiscGoogleBusinessUpdateFoodMenusResponse, MiscGoogleBusinessUpdateHoursData, MiscGoogleBusinessUpdateHoursResponse, MiscGoogleBusinessUpdateLocationData, MiscGoogleBusinessUpdateLocationResponse, MiscGoogleBusinessUpdatePlaceActionLinkData, MiscGoogleBusinessUpdatePlaceActionLinkResponse, MiscGoogleBusinessUpdateServiceListData, MiscGoogleBusinessUpdateServiceListResponse, MiscInstagramBusinessDiscoveryData, MiscInstagramBusinessDiscoveryResponse, MiscInstagramDeleteCommentData, MiscInstagramDeleteCommentResponse, MiscInstagramSearchAudioData, MiscInstagramSearchAudioResponse, MiscInstagramSearchLocationsData, MiscInstagramSearchLocationsResponse, MiscLinkedinBuildCommentaryData, MiscLinkedinBuildCommentaryResponse, MiscLinkedinDeleteCommentData, MiscLinkedinDeleteCommentResponse, MiscLinkedinDeletePostData, MiscLinkedinDeletePostResponse, MiscLinkedinEditCommentData, MiscLinkedinEditCommentResponse, MiscLinkedinEditPostData, MiscLinkedinEditPostResponse, MiscLinkedinGetTagsData, MiscLinkedinGetTagsResponse, MiscLinkedinResharePostData, MiscLinkedinResharePostResponse, MiscMastodonDeleteCommentData, MiscMastodonDeleteCommentResponse, MiscMastodonDeleteStatusData, MiscMastodonDeleteStatusResponse, MiscMastodonEditCommentData, MiscMastodonEditCommentResponse, MiscMastodonEditStatusData, MiscMastodonEditStatusResponse, MiscPinterestDeletePinData, MiscPinterestDeletePinResponse, MiscPinterestEditPinData, MiscPinterestEditPinResponse, MiscRedditDeleteCommentData, MiscRedditDeleteCommentResponse, MiscRedditDeletePostData, MiscRedditDeletePostResponse, MiscRedditEditCommentData, MiscRedditEditCommentResponse, MiscRedditEditPostData, MiscRedditEditPostResponse, MiscRedditGetPostRequirementsData, MiscRedditGetPostRequirementsResponse, MiscRedditGetSubredditFlairsData, MiscRedditGetSubredditFlairsResponse, MiscSlackDeleteMessageData, MiscSlackDeleteMessageResponse, MiscSlackEditMessageData, MiscSlackEditMessageResponse, MiscTiktokDeleteCommentData, MiscTiktokDeleteCommentResponse, MiscTiktokGetCommercialMusicTrendingListData, MiscTiktokGetCommercialMusicTrendingListResponse, MiscTwitterDeleteTweetData, MiscTwitterDeleteTweetResponse, MiscYoutubeAddVideoToPlaylistData, MiscYoutubeAddVideoToPlaylistResponse, MiscYoutubeCreateNewChannelPlaylistData, MiscYoutubeCreateNewChannelPlaylistResponse, MiscYoutubeDeleteChannelPlaylistData, MiscYoutubeDeleteChannelPlaylistResponse, MiscYoutubeDeleteCommentData, MiscYoutubeDeleteCommentResponse, MiscYoutubeDeleteVideoData, MiscYoutubeDeleteVideoFromPlaylistData, MiscYoutubeDeleteVideoFromPlaylistResponse, MiscYoutubeDeleteVideoResponse, MiscYoutubeEditCommentData, MiscYoutubeEditCommentResponse, MiscYoutubeEditVideoData, MiscYoutubeEditVideoResponse, MiscYoutubeGetChannelPlaylistData, MiscYoutubeGetChannelPlaylistResponse, MiscYoutubeGetRegionsData, MiscYoutubeGetRegionsResponse, MiscYoutubeGetVideoCategoriesData, MiscYoutubeGetVideoCategoriesResponse, MiscYoutubeGetVideosFromPlaylistData, MiscYoutubeGetVideosFromPlaylistResponse, MiscYoutubeSetThumbnailData, MiscYoutubeSetThumbnailResponse, MiscYoutubeUpdateChannelPlaylistData, MiscYoutubeUpdateChannelPlaylistResponse, OpenAPI, OpenAPIConfig, OrganizationGetCommentsUsageResponse, OrganizationGetDailyLimitsUsageData, OrganizationGetDailyLimitsUsageResponse, OrganizationGetImportsUsageData, OrganizationGetImportsUsageResponse, OrganizationGetOrganizationResponse, OrganizationGetPostsUsageResponse, OrganizationGetUploadsUsageResponse, PostCreateData, PostCreateResponse, PostCsvCreateData, PostCsvCreateResponse, PostCsvGetByIdData, PostCsvGetByIdResponse, PostCsvGetListData, PostCsvGetListResponse, PostCsvGetRowsData, PostCsvGetRowsResponse, PostCsvGetStatusData, PostCsvGetStatusResponse, PostDeleteData, PostDeleteResponse, PostGetByReferenceKeyData, PostGetByReferenceKeyResponse, PostGetData, PostGetListData, PostGetListResponse, PostGetReconnectSocialAccountCandidatesData, PostGetReconnectSocialAccountCandidatesResponse, PostGetResponse, PostImportCreateData, PostImportCreateResponse, PostImportDeleteImportedPostsData, PostImportDeleteImportedPostsResponse, PostImportGetByIdData, PostImportGetByIdResponse, PostImportGetImportedPostsData, PostImportGetImportedPostsResponse, PostImportGetStatusData, PostImportGetStatusResponse, PostImportRetryImportData, PostImportRetryImportResponse, PostReconnectSocialAccountData, PostReconnectSocialAccountResponse, PostRetryData, PostRetryResponse, PostUpdateData, PostUpdateResponse, SocialAccountConnectData, SocialAccountConnectResponse, SocialAccountConnectionCheckData, SocialAccountConnectionCheckResponse, SocialAccountCopyData, SocialAccountCopyResponse, SocialAccountCreatePortalLinkData, SocialAccountCreatePortalLinkResponse, SocialAccountDisconnectData, SocialAccountDisconnectResponse, SocialAccountGetAccountsToDeleteData, SocialAccountGetAccountsToDeleteResponse, SocialAccountGetByTypeData, SocialAccountGetByTypeResponse, SocialAccountProfileRefreshData, SocialAccountProfileRefreshResponse, SocialAccountRefreshChannelsData, SocialAccountRefreshChannelsResponse, SocialAccountSetChannelData, SocialAccountSetChannelResponse, SocialAccountUnsetChannelData, SocialAccountUnsetChannelResponse, TeamCreateTeamData, TeamCreateTeamResponse, TeamDeleteTeamData, TeamDeleteTeamResponse, TeamGetListData, TeamGetListResponse, TeamGetTeamData, TeamGetTeamResponse, TeamUpdateTeamData, TeamUpdateTeamResponse, UploadCreateData, UploadCreateFromUrlData, UploadCreateFromUrlResponse, UploadCreateResponse, UploadDeleteData, UploadDeleteManyData, UploadDeleteManyResponse, UploadDeleteResponse, UploadFinalizeLargeUploadData, UploadFinalizeLargeUploadResponse, UploadGetData, UploadGetListData, UploadGetListResponse, UploadGetResponse, UploadInitLargeUploadData, UploadInitLargeUploadResponse, WebhookEvent, WebhookEventType, webhookEventTypes };
|