@getlatedev/node 0.1.25 → 0.1.27
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 +52 -121
- package/dist/index.d.ts +52 -121
- package/package.json +1 -1
- package/src/generated/sdk.gen.ts +77 -129
- package/src/generated/types.gen.ts +52 -120
package/dist/index.d.mts
CHANGED
|
@@ -610,29 +610,30 @@ type ErrorResponse = {
|
|
|
610
610
|
};
|
|
611
611
|
};
|
|
612
612
|
/**
|
|
613
|
-
*
|
|
613
|
+
* Feed posts support up to 10 images (no mixed video+image). Stories require single media (24h, no captions). Reels require single vertical video (9:16, 3-60s).
|
|
614
614
|
*/
|
|
615
615
|
type FacebookPlatformData = {
|
|
616
616
|
/**
|
|
617
|
-
* Set to 'story'
|
|
617
|
+
* Set to 'story' for Page Stories (24h ephemeral) or 'reel' for Reels (short vertical video). Defaults to feed post if omitted.
|
|
618
618
|
*/
|
|
619
|
-
contentType?: 'story';
|
|
619
|
+
contentType?: 'story' | 'reel';
|
|
620
620
|
/**
|
|
621
|
-
*
|
|
621
|
+
* Reel title (only for contentType=reel). Separate from the caption/content field.
|
|
622
|
+
*/
|
|
623
|
+
title?: string;
|
|
624
|
+
/**
|
|
625
|
+
* Optional first comment to post immediately after publishing (feed posts only, not stories or reels)
|
|
622
626
|
*/
|
|
623
627
|
firstComment?: string;
|
|
624
628
|
/**
|
|
625
|
-
* Target Facebook Page ID for multi-page posting.
|
|
626
|
-
* If omitted, uses the selected/default page on the connection.
|
|
627
|
-
* Use GET /api/v1/accounts/{id}/facebook-page to list available pages.
|
|
628
|
-
*
|
|
629
|
+
* Target Facebook Page ID for multi-page posting. If omitted, uses the default page. Use GET /v1/accounts/{id}/facebook-page to list pages.
|
|
629
630
|
*/
|
|
630
631
|
pageId?: string;
|
|
631
632
|
};
|
|
632
633
|
/**
|
|
633
|
-
* Set to 'story'
|
|
634
|
+
* Set to 'story' for Page Stories (24h ephemeral) or 'reel' for Reels (short vertical video). Defaults to feed post if omitted.
|
|
634
635
|
*/
|
|
635
|
-
type contentType = 'story';
|
|
636
|
+
type contentType = 'story' | 'reel';
|
|
636
637
|
type FollowerStatsResponse = {
|
|
637
638
|
accounts?: Array<AccountWithFollowerStats>;
|
|
638
639
|
dateRange?: {
|
|
@@ -711,23 +712,15 @@ type FoodMenuSection = {
|
|
|
711
712
|
items?: Array<FoodMenuItem>;
|
|
712
713
|
};
|
|
713
714
|
/**
|
|
714
|
-
*
|
|
715
|
+
* Text and single image only (no videos). Optional call-to-action button. Posts appear on GBP, Google Search, and Maps. Use locationId for multi-location posting.
|
|
715
716
|
*/
|
|
716
717
|
type GoogleBusinessPlatformData = {
|
|
717
718
|
/**
|
|
718
|
-
* Target
|
|
719
|
-
* Format: "locations/123456789"
|
|
720
|
-
* If omitted, uses the selected/default location on the connection.
|
|
721
|
-
* Use GET /api/v1/accounts/{id}/gmb-locations to list available locations.
|
|
722
|
-
*
|
|
719
|
+
* Target GBP location ID (e.g. "locations/123456789"). If omitted, uses the default location. Use GET /v1/accounts/{id}/gmb-locations to list locations.
|
|
723
720
|
*/
|
|
724
721
|
locationId?: string;
|
|
725
722
|
/**
|
|
726
|
-
* BCP 47 language code
|
|
727
|
-
* If omitted, the language is automatically detected from the post text.
|
|
728
|
-
* Setting this explicitly is recommended when auto-detection may not be accurate
|
|
729
|
-
* (e.g., very short posts, mixed-language content, or transliterated text).
|
|
730
|
-
*
|
|
723
|
+
* BCP 47 language code (e.g. "en", "de", "es"). Auto-detected if omitted. Set explicitly for short or mixed-language posts.
|
|
731
724
|
*/
|
|
732
725
|
languageCode?: string;
|
|
733
726
|
/**
|
|
@@ -758,7 +751,7 @@ type HashtagInfo = {
|
|
|
758
751
|
};
|
|
759
752
|
type status = 'safe' | 'banned' | 'restricted' | 'unknown';
|
|
760
753
|
/**
|
|
761
|
-
* Feed
|
|
754
|
+
* Feed aspect ratio 0.8-1.91, carousels up to 10 items, stories require media (no captions). User tag coordinates 0.0-1.0 from top-left. Images over 8 MB and videos over platform limits are auto-compressed.
|
|
762
755
|
*/
|
|
763
756
|
type InstagramPlatformData = {
|
|
764
757
|
/**
|
|
@@ -816,6 +809,10 @@ type InstagramPlatformData = {
|
|
|
816
809
|
*/
|
|
817
810
|
thumbOffset?: number;
|
|
818
811
|
};
|
|
812
|
+
/**
|
|
813
|
+
* Set to 'story' to publish as a Story. Default posts become Reels or feed depending on media.
|
|
814
|
+
*/
|
|
815
|
+
type contentType2 = 'story';
|
|
819
816
|
/**
|
|
820
817
|
* MANUAL (graduate from Instagram app) or SS_PERFORMANCE (auto-graduate if performs well with non-followers)
|
|
821
818
|
*/
|
|
@@ -834,9 +831,7 @@ type LinkedInAggregateAnalyticsDailyResponse = {
|
|
|
834
831
|
endDate?: string;
|
|
835
832
|
} | null;
|
|
836
833
|
/**
|
|
837
|
-
* Daily breakdown of each metric
|
|
838
|
-
* Note: 'reach' (MEMBERS_REACHED) is not available with DAILY aggregation per LinkedIn API limitations.
|
|
839
|
-
*
|
|
834
|
+
* Daily breakdown of each metric as date/count pairs. Reach not available with DAILY aggregation.
|
|
840
835
|
*/
|
|
841
836
|
analytics?: {
|
|
842
837
|
impressions?: Array<{
|
|
@@ -908,15 +903,11 @@ type LinkedInAggregateAnalyticsTotalResponse = {
|
|
|
908
903
|
};
|
|
909
904
|
type aggregation3 = 'TOTAL';
|
|
910
905
|
/**
|
|
911
|
-
* Up to 20 images, no multi-video. Single PDF supported (max 100MB
|
|
906
|
+
* Up to 20 images, no multi-video. Single PDF supported (max 100MB). Link previews auto-generated when no media attached. Use organizationUrn for multi-org posting.
|
|
912
907
|
*/
|
|
913
908
|
type LinkedInPlatformData = {
|
|
914
909
|
/**
|
|
915
|
-
* Target LinkedIn Organization URN
|
|
916
|
-
* Format: "urn:li:organization:123456789"
|
|
917
|
-
* If omitted, uses the selected/default organization on the connection.
|
|
918
|
-
* Use GET /api/v1/accounts/{id}/linkedin-organizations to list available organizations.
|
|
919
|
-
*
|
|
910
|
+
* Target LinkedIn Organization URN (e.g. "urn:li:organization:123456789"). If omitted, uses the default org. Use GET /v1/accounts/{id}/linkedin-organizations to list orgs.
|
|
920
911
|
*/
|
|
921
912
|
organizationUrn?: string;
|
|
922
913
|
/**
|
|
@@ -929,9 +920,7 @@ type LinkedInPlatformData = {
|
|
|
929
920
|
disableLinkPreview?: boolean;
|
|
930
921
|
};
|
|
931
922
|
/**
|
|
932
|
-
* Media referenced in posts. URLs must be publicly reachable over HTTPS.
|
|
933
|
-
* Use POST /v1/media/presign to get a presigned URL for direct cloud storage upload (up to 5GB). Late automatically compresses images and videos that exceed platform limits server-side during publishing. Videos larger than 200 MB may not be compressed due to timeout constraints.
|
|
934
|
-
*
|
|
923
|
+
* Media referenced in posts. URLs must be publicly reachable over HTTPS. Use POST /v1/media/presign for uploads up to 5GB. Late auto-compresses images and videos that exceed platform limits (videos over 200 MB may not be compressed).
|
|
935
924
|
*/
|
|
936
925
|
type MediaItem = {
|
|
937
926
|
type?: 'image' | 'video' | 'gif' | 'document';
|
|
@@ -1058,11 +1047,7 @@ type PlatformTarget = {
|
|
|
1058
1047
|
*/
|
|
1059
1048
|
platformPostId?: string;
|
|
1060
1049
|
/**
|
|
1061
|
-
* Public URL of the published post
|
|
1062
|
-
* Populated after successful publish. For immediate posts (publishNow=true),
|
|
1063
|
-
* this is included in the response. For scheduled posts, fetch the post
|
|
1064
|
-
* via GET /v1/posts/{postId} after the scheduled time.
|
|
1065
|
-
*
|
|
1050
|
+
* Public URL of the published post. Included in the response for immediate posts; for scheduled posts, fetch via GET /v1/posts/{postId} after publish time.
|
|
1066
1051
|
*/
|
|
1067
1052
|
platformPostUrl?: string;
|
|
1068
1053
|
/**
|
|
@@ -1254,8 +1239,7 @@ type Profile = {
|
|
|
1254
1239
|
color?: string;
|
|
1255
1240
|
isDefault?: boolean;
|
|
1256
1241
|
/**
|
|
1257
|
-
* Only present when includeOverLimit=true
|
|
1258
|
-
*
|
|
1242
|
+
* Only present when includeOverLimit=true. Indicates if this profile exceeds the plan limit.
|
|
1259
1243
|
*/
|
|
1260
1244
|
isOverLimit?: boolean;
|
|
1261
1245
|
createdAt?: string;
|
|
@@ -1342,14 +1326,11 @@ type QueueUpdateResponse = {
|
|
|
1342
1326
|
reshuffledCount?: number;
|
|
1343
1327
|
};
|
|
1344
1328
|
/**
|
|
1345
|
-
* Posts are either link (with URL/media) or self (text-only).
|
|
1329
|
+
* Posts are either link (with URL/media) or self (text-only). Use forceSelf to override. Subreddit defaults to the account's configured one. Some subreddits require a flair.
|
|
1346
1330
|
*/
|
|
1347
1331
|
type RedditPlatformData = {
|
|
1348
1332
|
/**
|
|
1349
|
-
* Target subreddit name (without "r/" prefix).
|
|
1350
|
-
* Overrides the default subreddit configured on the account connection.
|
|
1351
|
-
* Use GET /api/v1/accounts/{id}/reddit-subreddits to list available subreddits.
|
|
1352
|
-
*
|
|
1333
|
+
* Target subreddit name (without "r/" prefix). Overrides the default. Use GET /v1/accounts/{id}/reddit-subreddits to list options.
|
|
1353
1334
|
*/
|
|
1354
1335
|
subreddit?: string;
|
|
1355
1336
|
/**
|
|
@@ -1365,17 +1346,12 @@ type RedditPlatformData = {
|
|
|
1365
1346
|
*/
|
|
1366
1347
|
forceSelf?: boolean;
|
|
1367
1348
|
/**
|
|
1368
|
-
* Flair ID for the post. Required by some subreddits.
|
|
1369
|
-
* Use GET /api/v1/accounts/{id}/reddit-flairs?subreddit=name to list available flairs.
|
|
1370
|
-
*
|
|
1349
|
+
* Flair ID for the post. Required by some subreddits. Use GET /v1/accounts/{id}/reddit-flairs?subreddit=name to list flairs.
|
|
1371
1350
|
*/
|
|
1372
1351
|
flairId?: string;
|
|
1373
1352
|
};
|
|
1374
1353
|
/**
|
|
1375
|
-
* Requires a Public Profile.
|
|
1376
|
-
* Content types: story (ephemeral 24h, no caption), saved_story (permanent, title max 45 chars), spotlight (video, description max 160 chars).
|
|
1377
|
-
* Images max 20 MB (JPEG/PNG), videos max 500 MB (MP4, 5-60s, min 540x960px).
|
|
1378
|
-
*
|
|
1354
|
+
* Requires a Public Profile. Single media item only. Content types: story (ephemeral 24h), saved_story (permanent, title max 45 chars), spotlight (video, max 160 chars).
|
|
1379
1355
|
*/
|
|
1380
1356
|
type SnapchatPlatformData = {
|
|
1381
1357
|
/**
|
|
@@ -1386,7 +1362,7 @@ type SnapchatPlatformData = {
|
|
|
1386
1362
|
/**
|
|
1387
1363
|
* Content type: story (ephemeral 24h, default), saved_story (permanent on Public Profile), spotlight (video feed)
|
|
1388
1364
|
*/
|
|
1389
|
-
type
|
|
1365
|
+
type contentType3 = 'story' | 'saved_story' | 'spotlight';
|
|
1390
1366
|
type SocialAccount = {
|
|
1391
1367
|
_id?: string;
|
|
1392
1368
|
platform?: string;
|
|
@@ -1394,20 +1370,7 @@ type SocialAccount = {
|
|
|
1394
1370
|
username?: string;
|
|
1395
1371
|
displayName?: string;
|
|
1396
1372
|
/**
|
|
1397
|
-
* Full profile URL for the connected account
|
|
1398
|
-
* - Twitter/X: https://x.com/{username}
|
|
1399
|
-
* - Instagram: https://instagram.com/{username}
|
|
1400
|
-
* - TikTok: https://tiktok.com/@{username}
|
|
1401
|
-
* - YouTube: https://youtube.com/@{handle} or https://youtube.com/channel/{id}
|
|
1402
|
-
* - LinkedIn Personal: https://www.linkedin.com/in/{vanityName}/
|
|
1403
|
-
* - LinkedIn Organization: https://www.linkedin.com/company/{vanityName}/
|
|
1404
|
-
* - Threads: https://threads.net/@{username}
|
|
1405
|
-
* - Pinterest: https://pinterest.com/{username}
|
|
1406
|
-
* - Reddit: https://reddit.com/user/{username}
|
|
1407
|
-
* - Bluesky: https://bsky.app/profile/{handle}
|
|
1408
|
-
* - Facebook: https://facebook.com/{username} or https://facebook.com/{pageId}
|
|
1409
|
-
* - Google Business: Google Maps URL for the business location
|
|
1410
|
-
*
|
|
1373
|
+
* Full profile URL for the connected account on its platform.
|
|
1411
1374
|
*/
|
|
1412
1375
|
profileUrl?: string;
|
|
1413
1376
|
isActive?: boolean;
|
|
@@ -1421,7 +1384,7 @@ type SocialAccount = {
|
|
|
1421
1384
|
followersLastUpdated?: string;
|
|
1422
1385
|
};
|
|
1423
1386
|
/**
|
|
1424
|
-
*
|
|
1387
|
+
* Text, images (up to 10), videos (up to 10), and mixed media albums. Captions up to 1024 chars for media, 4096 for text-only.
|
|
1425
1388
|
*/
|
|
1426
1389
|
type TelegramPlatformData = {
|
|
1427
1390
|
/**
|
|
@@ -1446,7 +1409,7 @@ type TelegramPlatformData = {
|
|
|
1446
1409
|
*/
|
|
1447
1410
|
type parseMode = 'HTML' | 'Markdown' | 'MarkdownV2';
|
|
1448
1411
|
/**
|
|
1449
|
-
*
|
|
1412
|
+
* Up to 10 images per carousel (no videos). Videos must be H.264/AAC MP4, max 5 min. Images JPEG/PNG, max 8 MB. Use threadItems for reply chains.
|
|
1450
1413
|
*/
|
|
1451
1414
|
type ThreadsPlatformData = {
|
|
1452
1415
|
/**
|
|
@@ -1458,7 +1421,7 @@ type ThreadsPlatformData = {
|
|
|
1458
1421
|
}>;
|
|
1459
1422
|
};
|
|
1460
1423
|
/**
|
|
1461
|
-
* Photo carousels up to 35 images. Video titles up to 2200 chars
|
|
1424
|
+
* Photo carousels up to 35 images. Video titles up to 2200 chars, photo titles truncated to 90 chars. privacyLevel must match creator_info options. Both camelCase and snake_case accepted.
|
|
1462
1425
|
*/
|
|
1463
1426
|
type TikTokPlatformData = {
|
|
1464
1427
|
/**
|
|
@@ -1920,7 +1883,7 @@ type YouTubeDailyViewsResponse = {
|
|
|
1920
1883
|
};
|
|
1921
1884
|
};
|
|
1922
1885
|
/**
|
|
1923
|
-
* Videos
|
|
1886
|
+
* Videos under 3 min auto-detected as Shorts. Custom thumbnails for regular videos only. Scheduled videos are uploaded immediately with the specified visibility.
|
|
1924
1887
|
*/
|
|
1925
1888
|
type YouTubePlatformData = {
|
|
1926
1889
|
/**
|
|
@@ -2604,8 +2567,7 @@ type GetUserError = ({
|
|
|
2604
2567
|
type ListProfilesData = {
|
|
2605
2568
|
query?: {
|
|
2606
2569
|
/**
|
|
2607
|
-
* When true, includes
|
|
2608
|
-
*
|
|
2570
|
+
* When true, includes over-limit profiles (marked with isOverLimit: true).
|
|
2609
2571
|
*/
|
|
2610
2572
|
includeOverLimit?: boolean;
|
|
2611
2573
|
};
|
|
@@ -2668,9 +2630,7 @@ type DeleteProfileError = (unknown | {
|
|
|
2668
2630
|
type ListAccountsData = {
|
|
2669
2631
|
query?: {
|
|
2670
2632
|
/**
|
|
2671
|
-
* When true, includes accounts from profiles
|
|
2672
|
-
* Useful for disconnecting accounts from over-limit profiles so they can be deleted.
|
|
2673
|
-
*
|
|
2633
|
+
* When true, includes accounts from over-limit profiles.
|
|
2674
2634
|
*/
|
|
2675
2635
|
includeOverLimit?: boolean;
|
|
2676
2636
|
/**
|
|
@@ -2951,10 +2911,7 @@ type GetConnectUrlData = {
|
|
|
2951
2911
|
*/
|
|
2952
2912
|
profileId: string;
|
|
2953
2913
|
/**
|
|
2954
|
-
* Your custom redirect URL after connection completes.
|
|
2955
|
-
* Standard mode: Late redirects here with ?connected={platform}&profileId=X&username=Y.
|
|
2956
|
-
* Headless mode: pass headless=true on this endpoint. User is redirected to your URL with OAuth data (profileId, tempToken, userProfile, connect_token, platform, step). See endpoint description for details.
|
|
2957
|
-
*
|
|
2914
|
+
* Your custom redirect URL after connection completes. Standard mode appends ?connected={platform}&profileId=X&username=Y. Headless mode appends OAuth data params.
|
|
2958
2915
|
*/
|
|
2959
2916
|
redirect_url?: string;
|
|
2960
2917
|
};
|
|
@@ -3137,8 +3094,7 @@ type SelectGoogleBusinessLocationData = {
|
|
|
3137
3094
|
*/
|
|
3138
3095
|
tempToken: string;
|
|
3139
3096
|
/**
|
|
3140
|
-
* Decoded user profile
|
|
3141
|
-
*
|
|
3097
|
+
* Decoded user profile from the OAuth callback. Contains the refresh token. Always include this field.
|
|
3142
3098
|
*/
|
|
3143
3099
|
userProfile?: {
|
|
3144
3100
|
id?: string;
|
|
@@ -3316,10 +3272,7 @@ type GetGoogleBusinessLocationDetailsData = {
|
|
|
3316
3272
|
};
|
|
3317
3273
|
query?: {
|
|
3318
3274
|
/**
|
|
3319
|
-
* Comma-separated fields to return.
|
|
3320
|
-
* Available: name, title, phoneNumbers, categories, storefrontAddress, websiteUri,
|
|
3321
|
-
* regularHours, specialHours, serviceArea, profile, openInfo, metadata, moreHours
|
|
3322
|
-
*
|
|
3275
|
+
* Comma-separated fields to return. Available: name, title, phoneNumbers, categories, storefrontAddress, websiteUri, regularHours, specialHours, serviceArea, profile, openInfo, metadata, moreHours.
|
|
3323
3276
|
*/
|
|
3324
3277
|
readMask?: string;
|
|
3325
3278
|
};
|
|
@@ -4013,8 +3966,7 @@ type ConnectBlueskyCredentialsData = {
|
|
|
4013
3966
|
*/
|
|
4014
3967
|
appPassword: string;
|
|
4015
3968
|
/**
|
|
4016
|
-
* Required state
|
|
4017
|
-
*
|
|
3969
|
+
* Required state formatted as {userId}-{profileId}. Get userId from GET /v1/users and profileId from GET /v1/profiles.
|
|
4018
3970
|
*/
|
|
4019
3971
|
state: string;
|
|
4020
3972
|
/**
|
|
@@ -4066,10 +4018,7 @@ type GetTelegramConnectStatusError = (unknown | {
|
|
|
4066
4018
|
type InitiateTelegramConnectData = {
|
|
4067
4019
|
body: {
|
|
4068
4020
|
/**
|
|
4069
|
-
* The Telegram chat ID.
|
|
4070
|
-
* - Numeric ID (e.g., "-1001234567890")
|
|
4071
|
-
* - Username with @ prefix (e.g., "@mychannel")
|
|
4072
|
-
*
|
|
4021
|
+
* The Telegram chat ID. Numeric ID (e.g. "-1001234567890") or username with @ prefix (e.g. "@mychannel").
|
|
4073
4022
|
*/
|
|
4074
4023
|
chatId: string;
|
|
4075
4024
|
/**
|
|
@@ -4187,27 +4136,19 @@ type GetLinkedInAggregateAnalyticsData = {
|
|
|
4187
4136
|
};
|
|
4188
4137
|
query?: {
|
|
4189
4138
|
/**
|
|
4190
|
-
*
|
|
4191
|
-
*
|
|
4139
|
+
* TOTAL (default, lifetime totals) or DAILY (time series). MEMBERS_REACHED not available with DAILY.
|
|
4192
4140
|
*/
|
|
4193
4141
|
aggregation?: 'TOTAL' | 'DAILY';
|
|
4194
4142
|
/**
|
|
4195
|
-
* End date
|
|
4196
|
-
* If provided without startDate, startDate defaults to 30 days before endDate.
|
|
4197
|
-
*
|
|
4143
|
+
* End date (YYYY-MM-DD, exclusive). Defaults to today if omitted.
|
|
4198
4144
|
*/
|
|
4199
4145
|
endDate?: string;
|
|
4200
4146
|
/**
|
|
4201
|
-
* Comma-separated
|
|
4202
|
-
* Valid values: IMPRESSION, MEMBERS_REACHED, REACTION, COMMENT, RESHARE
|
|
4203
|
-
*
|
|
4147
|
+
* Comma-separated metrics: IMPRESSION, MEMBERS_REACHED, REACTION, COMMENT, RESHARE. Omit for all.
|
|
4204
4148
|
*/
|
|
4205
4149
|
metrics?: string;
|
|
4206
4150
|
/**
|
|
4207
|
-
* Start date
|
|
4208
|
-
* If provided without endDate, endDate defaults to today.
|
|
4209
|
-
* If omitted entirely, returns lifetime analytics.
|
|
4210
|
-
*
|
|
4151
|
+
* Start date (YYYY-MM-DD). If omitted, returns lifetime analytics.
|
|
4211
4152
|
*/
|
|
4212
4153
|
startDate?: string;
|
|
4213
4154
|
};
|
|
@@ -4325,13 +4266,11 @@ type GetLinkedInMentionsData = {
|
|
|
4325
4266
|
};
|
|
4326
4267
|
query: {
|
|
4327
4268
|
/**
|
|
4328
|
-
*
|
|
4329
|
-
*
|
|
4269
|
+
* Exact display name as shown on LinkedIn. Required for person mentions to be clickable. Optional for org mentions.
|
|
4330
4270
|
*/
|
|
4331
4271
|
displayName?: string;
|
|
4332
4272
|
/**
|
|
4333
|
-
* LinkedIn profile URL, company URL, or vanity name.
|
|
4334
|
-
*
|
|
4273
|
+
* LinkedIn profile URL, company URL, or vanity name.
|
|
4335
4274
|
*/
|
|
4336
4275
|
url: string;
|
|
4337
4276
|
};
|
|
@@ -5571,9 +5510,7 @@ type ListInboxCommentsError = ({
|
|
|
5571
5510
|
type GetInboxPostCommentsData = {
|
|
5572
5511
|
path: {
|
|
5573
5512
|
/**
|
|
5574
|
-
*
|
|
5575
|
-
* LinkedIn: for your own posts, the full URN stored in Late is used automatically. For third-party posts, pass the full activity URN or the raw numeric activity ID from the LinkedIn URL (automatically wrapped as urn:li:activity:).
|
|
5576
|
-
*
|
|
5513
|
+
* Late post ID or platform-specific post ID. Late IDs are auto-resolved. LinkedIn third-party posts accept full activity URN or numeric ID.
|
|
5577
5514
|
*/
|
|
5578
5515
|
postId: string;
|
|
5579
5516
|
};
|
|
@@ -5707,10 +5644,7 @@ type ReplyToInboxPostData = {
|
|
|
5707
5644
|
};
|
|
5708
5645
|
path: {
|
|
5709
5646
|
/**
|
|
5710
|
-
*
|
|
5711
|
-
*
|
|
5712
|
-
* LinkedIn: for third-party posts, pass the full activity URN (e.g. urn:li:activity:7422459067685855232) or the raw numeric activity ID from the URL.
|
|
5713
|
-
*
|
|
5647
|
+
* Late post ID or platform-specific post ID. LinkedIn third-party posts accept full activity URN or numeric ID.
|
|
5714
5648
|
*/
|
|
5715
5649
|
postId: string;
|
|
5716
5650
|
};
|
|
@@ -5732,10 +5666,7 @@ type ReplyToInboxPostError = ({
|
|
|
5732
5666
|
type DeleteInboxCommentData = {
|
|
5733
5667
|
path: {
|
|
5734
5668
|
/**
|
|
5735
|
-
*
|
|
5736
|
-
*
|
|
5737
|
-
* LinkedIn: for third-party posts, pass the full activity URN (e.g. urn:li:activity:7422459067685855232) or the raw numeric activity ID from the URL.
|
|
5738
|
-
*
|
|
5669
|
+
* Late post ID or platform-specific post ID. LinkedIn third-party posts accept full activity URN or numeric ID.
|
|
5739
5670
|
*/
|
|
5740
5671
|
postId: string;
|
|
5741
5672
|
};
|
|
@@ -5998,4 +5929,4 @@ type DeleteInboxReviewReplyError = ({
|
|
|
5998
5929
|
error?: string;
|
|
5999
5930
|
} | unknown);
|
|
6000
5931
|
|
|
6001
|
-
export { type AccountGetResponse, type AccountWithFollowerStats, type AccountsListResponse, type AnalyticsListResponse, type AnalyticsOverview, type AnalyticsSinglePostResponse, type ApiKey, type BlueskyPlatformData, type BulkUploadPostsData, type BulkUploadPostsError, type BulkUploadPostsResponse, type CaptionResponse, type CheckInstagramHashtagsData, type CheckInstagramHashtagsError, type CheckInstagramHashtagsResponse, type ClientOptions, type CompleteTelegramConnectData, type CompleteTelegramConnectError, type CompleteTelegramConnectResponse, type ConnectBlueskyCredentialsData, type ConnectBlueskyCredentialsError, type ConnectBlueskyCredentialsResponse, type ConnectionLog, type CreateAccountGroupData, type CreateAccountGroupError, type CreateAccountGroupResponse, type CreateApiKeyData, type CreateApiKeyError, type CreateApiKeyResponse, type CreateGoogleBusinessMediaData, type CreateGoogleBusinessMediaError, type CreateGoogleBusinessMediaResponse, type CreateGoogleBusinessPlaceActionData, type CreateGoogleBusinessPlaceActionError, type CreateGoogleBusinessPlaceActionResponse, type CreateInviteTokenData, type CreateInviteTokenError, type CreateInviteTokenResponse, type CreatePostData, type CreatePostError, type CreatePostResponse, type CreateProfileData, type CreateProfileError, type CreateProfileResponse, type CreateQueueSlotData, type CreateQueueSlotError, type CreateQueueSlotResponse, type CreateWebhookSettingsData, type CreateWebhookSettingsError, type CreateWebhookSettingsResponse, type DeleteAccountData, type DeleteAccountError, type DeleteAccountGroupData, type DeleteAccountGroupError, type DeleteAccountGroupResponse, type DeleteAccountResponse, type DeleteApiKeyData, type DeleteApiKeyError, type DeleteApiKeyResponse, type DeleteGoogleBusinessMediaData, type DeleteGoogleBusinessMediaError, type DeleteGoogleBusinessMediaResponse, type DeleteGoogleBusinessPlaceActionData, type DeleteGoogleBusinessPlaceActionError, type DeleteGoogleBusinessPlaceActionResponse, type DeleteInboxCommentData, type DeleteInboxCommentError, type DeleteInboxCommentResponse, type DeleteInboxReviewReplyData, type DeleteInboxReviewReplyError, type DeleteInboxReviewReplyResponse, type DeleteInstagramIceBreakersData, type DeleteInstagramIceBreakersError, type DeleteInstagramIceBreakersResponse, type DeleteMessengerMenuData, type DeleteMessengerMenuError, type DeleteMessengerMenuResponse, type DeletePostData, type DeletePostError, type DeletePostResponse, type DeleteProfileData, type DeleteProfileError, type DeleteProfileResponse, type DeleteQueueSlotData, type DeleteQueueSlotError, type DeleteQueueSlotResponse, type DeleteTelegramCommandsData, type DeleteTelegramCommandsError, type DeleteTelegramCommandsResponse, type DeleteWebhookSettingsData, type DeleteWebhookSettingsError, type DeleteWebhookSettingsResponse, type DownloadBlueskyMediaData, type DownloadBlueskyMediaError, type DownloadBlueskyMediaResponse, type DownloadFacebookVideoData, type DownloadFacebookVideoError, type DownloadFacebookVideoResponse, type DownloadFormat, type DownloadInstagramMediaData, type DownloadInstagramMediaError, type DownloadInstagramMediaResponse, type DownloadLinkedInVideoData, type DownloadLinkedInVideoError, type DownloadLinkedInVideoResponse, type DownloadResponse, type DownloadTikTokVideoData, type DownloadTikTokVideoError, type DownloadTikTokVideoResponse, type DownloadTwitterMediaData, type DownloadTwitterMediaError, type DownloadTwitterMediaResponse, type DownloadYouTubeVideoData, type DownloadYouTubeVideoError, type DownloadYouTubeVideoResponse, type EditInboxMessageData, type EditInboxMessageError, type EditInboxMessageResponse, type ErrorResponse, type FacebookPlatformData, type FollowerStatsResponse, type FoodMenu, type FoodMenuItem, type FoodMenuItemAttributes, type FoodMenuLabel, type FoodMenuSection, type GetAccountHealthData, type GetAccountHealthError, type GetAccountHealthResponse, type GetAllAccountsHealthData, type GetAllAccountsHealthError, type GetAllAccountsHealthResponse, type GetAnalyticsData, type GetAnalyticsError, type GetAnalyticsResponse, type GetConnectUrlData, type GetConnectUrlError, type GetConnectUrlResponse, type GetFacebookPagesData, type GetFacebookPagesError, type GetFacebookPagesResponse, type GetFollowerStatsData, type GetFollowerStatsError, type GetFollowerStatsResponse, type GetGmbLocationsData, type GetGmbLocationsError, type GetGmbLocationsResponse, type GetGoogleBusinessAttributesData, type GetGoogleBusinessAttributesError, type GetGoogleBusinessAttributesResponse, type GetGoogleBusinessFoodMenusData, type GetGoogleBusinessFoodMenusError, type GetGoogleBusinessFoodMenusResponse, type GetGoogleBusinessLocationDetailsData, type GetGoogleBusinessLocationDetailsError, type GetGoogleBusinessLocationDetailsResponse, type GetGoogleBusinessReviewsData, type GetGoogleBusinessReviewsError, type GetGoogleBusinessReviewsResponse, type GetInboxConversationData, type GetInboxConversationError, type GetInboxConversationMessagesData, type GetInboxConversationMessagesError, type GetInboxConversationMessagesResponse, type GetInboxConversationResponse, type GetInboxPostCommentsData, type GetInboxPostCommentsError, type GetInboxPostCommentsResponse, type GetInstagramIceBreakersData, type GetInstagramIceBreakersError, type GetInstagramIceBreakersResponse, type GetLinkedInAggregateAnalyticsData, type GetLinkedInAggregateAnalyticsError, type GetLinkedInAggregateAnalyticsResponse, type GetLinkedInMentionsData, type GetLinkedInMentionsError, type GetLinkedInMentionsResponse, type GetLinkedInOrganizationsData, type GetLinkedInOrganizationsError, type GetLinkedInOrganizationsResponse, type GetLinkedInPostAnalyticsData, type GetLinkedInPostAnalyticsError, type GetLinkedInPostAnalyticsResponse, type GetMediaPresignedUrlData, type GetMediaPresignedUrlError, type GetMediaPresignedUrlResponse, type GetMessengerMenuData, type GetMessengerMenuError, type GetMessengerMenuResponse, type GetNextQueueSlotData, type GetNextQueueSlotError, type GetNextQueueSlotResponse, type GetPendingOAuthDataData, type GetPendingOAuthDataError, type GetPendingOAuthDataResponse, type GetPinterestBoardsData, type GetPinterestBoardsError, type GetPinterestBoardsResponse, type GetPostData, type GetPostError, type GetPostLogsData, type GetPostLogsError, type GetPostLogsResponse, type GetPostResponse, type GetProfileData, type GetProfileError, type GetProfileResponse, type GetRedditFeedData, type GetRedditFeedError, type GetRedditFeedResponse, type GetRedditFlairsData, type GetRedditFlairsError, type GetRedditFlairsResponse, type GetRedditSubredditsData, type GetRedditSubredditsError, type GetRedditSubredditsResponse, type GetTelegramCommandsData, type GetTelegramCommandsError, type GetTelegramCommandsResponse, type GetTelegramConnectStatusData, type GetTelegramConnectStatusError, type GetTelegramConnectStatusResponse, type GetUsageStatsError, type GetUsageStatsResponse, type GetUserData, type GetUserError, type GetUserResponse, type GetWebhookLogsData, type GetWebhookLogsError, type GetWebhookLogsResponse, type GetWebhookSettingsError, type GetWebhookSettingsResponse, type GetYouTubeDailyViewsData, type GetYouTubeDailyViewsError, type GetYouTubeDailyViewsResponse, type GetYouTubeTranscriptData, type GetYouTubeTranscriptError, type GetYouTubeTranscriptResponse, type GoogleBusinessPlatformData, type HandleOAuthCallbackData, type HandleOAuthCallbackError, type HandleOAuthCallbackResponse, type HashtagCheckResponse, type HashtagInfo, type HideInboxCommentData, type HideInboxCommentError, type HideInboxCommentResponse, type InitiateTelegramConnectData, type InitiateTelegramConnectError, type InitiateTelegramConnectResponse, type InstagramPlatformData, Late, LateApiError, type LikeInboxCommentData, type LikeInboxCommentError, type LikeInboxCommentResponse, type LinkedInAggregateAnalyticsDailyResponse, type LinkedInAggregateAnalyticsTotalResponse, type LinkedInPlatformData, type ListAccountGroupsError, type ListAccountGroupsResponse, type ListAccountsData, type ListAccountsError, type ListAccountsResponse, type ListApiKeysError, type ListApiKeysResponse, type ListConnectionLogsData, type ListConnectionLogsError, type ListConnectionLogsResponse, type ListFacebookPagesData, type ListFacebookPagesError, type ListFacebookPagesResponse, type ListGoogleBusinessLocationsData, type ListGoogleBusinessLocationsError, type ListGoogleBusinessLocationsResponse, type ListGoogleBusinessMediaData, type ListGoogleBusinessMediaError, type ListGoogleBusinessMediaResponse, type ListGoogleBusinessPlaceActionsData, type ListGoogleBusinessPlaceActionsError, type ListGoogleBusinessPlaceActionsResponse, type ListInboxCommentsData, type ListInboxCommentsError, type ListInboxCommentsResponse, type ListInboxConversationsData, type ListInboxConversationsError, type ListInboxConversationsResponse, type ListInboxReviewsData, type ListInboxReviewsError, type ListInboxReviewsResponse, type ListLinkedInOrganizationsData, type ListLinkedInOrganizationsError, type ListLinkedInOrganizationsResponse, type ListPinterestBoardsForSelectionData, type ListPinterestBoardsForSelectionError, type ListPinterestBoardsForSelectionResponse, type ListPostsData, type ListPostsError, type ListPostsLogsData, type ListPostsLogsError, type ListPostsLogsResponse, type ListPostsResponse, type ListProfilesData, type ListProfilesError, type ListProfilesResponse, type ListQueueSlotsData, type ListQueueSlotsError, type ListQueueSlotsResponse, type ListSnapchatProfilesData, type ListSnapchatProfilesError, type ListSnapchatProfilesResponse, type ListUsersError, type ListUsersResponse, type MediaItem, type MediaUploadResponse, type Money, type Pagination, type ParameterLimitParam, type ParameterPageParam, type PinterestPlatformData, type PlatformAnalytics, type PlatformTarget, type Post, type PostAnalytics, type PostCreateResponse, type PostDeleteResponse, type PostGetResponse, type PostLog, type PostRetryResponse, type PostUpdateResponse, type PostsListResponse, type PreviewQueueData, type PreviewQueueError, type PreviewQueueResponse, type Profile, type ProfileCreateResponse, type ProfileDeleteResponse, type ProfileGetResponse, type ProfileUpdateResponse, type ProfilesListResponse, type QueueDeleteResponse, type QueueNextSlotResponse, type QueuePreviewResponse, type QueueSchedule, type QueueSlot, type QueueSlotsResponse, type QueueUpdateResponse, RateLimitError, type RedditPlatformData, type ReplyToInboxPostData, type ReplyToInboxPostError, type ReplyToInboxPostResponse, type ReplyToInboxReviewData, type ReplyToInboxReviewError, type ReplyToInboxReviewResponse, type RetryPostData, type RetryPostError, type RetryPostResponse, type SearchRedditData, type SearchRedditError, type SearchRedditResponse, type SelectFacebookPageData, type SelectFacebookPageError, type SelectFacebookPageResponse, type SelectGoogleBusinessLocationData, type SelectGoogleBusinessLocationError, type SelectGoogleBusinessLocationResponse, type SelectLinkedInOrganizationData, type SelectLinkedInOrganizationError, type SelectLinkedInOrganizationResponse, type SelectPinterestBoardData, type SelectPinterestBoardError, type SelectPinterestBoardResponse, type SelectSnapchatProfileData, type SelectSnapchatProfileError, type SelectSnapchatProfileResponse, type SendInboxMessageData, type SendInboxMessageError, type SendInboxMessageResponse, type SendPrivateReplyToCommentData, type SendPrivateReplyToCommentError, type SendPrivateReplyToCommentResponse, type SetInstagramIceBreakersData, type SetInstagramIceBreakersError, type SetInstagramIceBreakersResponse, type SetMessengerMenuData, type SetMessengerMenuError, type SetMessengerMenuResponse, type SetTelegramCommandsData, type SetTelegramCommandsError, type SetTelegramCommandsResponse, type SnapchatPlatformData, type SocialAccount, type TelegramPlatformData, type TestWebhookData, type TestWebhookError, type TestWebhookResponse, type ThreadsPlatformData, type TikTokPlatformData, type TranscriptResponse, type TranscriptSegment, type TwitterPlatformData, type UnhideInboxCommentData, type UnhideInboxCommentError, type UnhideInboxCommentResponse, type UnlikeInboxCommentData, type UnlikeInboxCommentError, type UnlikeInboxCommentResponse, type UnpublishPostData, type UnpublishPostError, type UnpublishPostResponse, type UpdateAccountData, type UpdateAccountError, type UpdateAccountGroupData, type UpdateAccountGroupError, type UpdateAccountGroupResponse, type UpdateAccountResponse, type UpdateFacebookPageData, type UpdateFacebookPageError, type UpdateFacebookPageResponse, type UpdateGmbLocationData, type UpdateGmbLocationError, type UpdateGmbLocationResponse, type UpdateGoogleBusinessAttributesData, type UpdateGoogleBusinessAttributesError, type UpdateGoogleBusinessAttributesResponse, type UpdateGoogleBusinessFoodMenusData, type UpdateGoogleBusinessFoodMenusError, type UpdateGoogleBusinessFoodMenusResponse, type UpdateGoogleBusinessLocationDetailsData, type UpdateGoogleBusinessLocationDetailsError, type UpdateGoogleBusinessLocationDetailsResponse, type UpdateInboxConversationData, type UpdateInboxConversationError, type UpdateInboxConversationResponse, type UpdateLinkedInOrganizationData, type UpdateLinkedInOrganizationError, type UpdateLinkedInOrganizationResponse, type UpdatePinterestBoardsData, type UpdatePinterestBoardsError, type UpdatePinterestBoardsResponse, type UpdatePostData, type UpdatePostError, type UpdatePostResponse, type UpdateProfileData, type UpdateProfileError, type UpdateProfileResponse, type UpdateQueueSlotData, type UpdateQueueSlotError, type UpdateQueueSlotResponse, type UpdateRedditSubredditsData, type UpdateRedditSubredditsError, type UpdateRedditSubredditsResponse, type UpdateWebhookSettingsData, type UpdateWebhookSettingsError, type UpdateWebhookSettingsResponse, type UploadTokenResponse, type UploadTokenStatusResponse, type UploadedFile, type UsageStats, type User, type UserGetResponse, type UsersListResponse, ValidationError, type Webhook, type WebhookLog, type WebhookPayloadAccountConnected, type WebhookPayloadAccountDisconnected, type WebhookPayloadMessage, type WebhookPayloadPost, type YouTubeDailyViewsResponse, type YouTubePlatformData, type YouTubeScopeMissingResponse, type action, type aggregation, type aggregation2, type aggregation3, type billingPeriod, type commercialContentType, type connectionMethod, type contentType, type contentType2, Late as default, type direction, type disconnectionType, type errorCategory, type errorSource, type event, type event2, type event3, type event4, type event5, type eventType, type graduationStrategy, type mediaType, parseApiError, type parseMode, type platform, type platform2, type status, type status2, type status3, type status4, type status5, type status6, type type, type type2, type type3, type visibility };
|
|
5932
|
+
export { type AccountGetResponse, type AccountWithFollowerStats, type AccountsListResponse, type AnalyticsListResponse, type AnalyticsOverview, type AnalyticsSinglePostResponse, type ApiKey, type BlueskyPlatformData, type BulkUploadPostsData, type BulkUploadPostsError, type BulkUploadPostsResponse, type CaptionResponse, type CheckInstagramHashtagsData, type CheckInstagramHashtagsError, type CheckInstagramHashtagsResponse, type ClientOptions, type CompleteTelegramConnectData, type CompleteTelegramConnectError, type CompleteTelegramConnectResponse, type ConnectBlueskyCredentialsData, type ConnectBlueskyCredentialsError, type ConnectBlueskyCredentialsResponse, type ConnectionLog, type CreateAccountGroupData, type CreateAccountGroupError, type CreateAccountGroupResponse, type CreateApiKeyData, type CreateApiKeyError, type CreateApiKeyResponse, type CreateGoogleBusinessMediaData, type CreateGoogleBusinessMediaError, type CreateGoogleBusinessMediaResponse, type CreateGoogleBusinessPlaceActionData, type CreateGoogleBusinessPlaceActionError, type CreateGoogleBusinessPlaceActionResponse, type CreateInviteTokenData, type CreateInviteTokenError, type CreateInviteTokenResponse, type CreatePostData, type CreatePostError, type CreatePostResponse, type CreateProfileData, type CreateProfileError, type CreateProfileResponse, type CreateQueueSlotData, type CreateQueueSlotError, type CreateQueueSlotResponse, type CreateWebhookSettingsData, type CreateWebhookSettingsError, type CreateWebhookSettingsResponse, type DeleteAccountData, type DeleteAccountError, type DeleteAccountGroupData, type DeleteAccountGroupError, type DeleteAccountGroupResponse, type DeleteAccountResponse, type DeleteApiKeyData, type DeleteApiKeyError, type DeleteApiKeyResponse, type DeleteGoogleBusinessMediaData, type DeleteGoogleBusinessMediaError, type DeleteGoogleBusinessMediaResponse, type DeleteGoogleBusinessPlaceActionData, type DeleteGoogleBusinessPlaceActionError, type DeleteGoogleBusinessPlaceActionResponse, type DeleteInboxCommentData, type DeleteInboxCommentError, type DeleteInboxCommentResponse, type DeleteInboxReviewReplyData, type DeleteInboxReviewReplyError, type DeleteInboxReviewReplyResponse, type DeleteInstagramIceBreakersData, type DeleteInstagramIceBreakersError, type DeleteInstagramIceBreakersResponse, type DeleteMessengerMenuData, type DeleteMessengerMenuError, type DeleteMessengerMenuResponse, type DeletePostData, type DeletePostError, type DeletePostResponse, type DeleteProfileData, type DeleteProfileError, type DeleteProfileResponse, type DeleteQueueSlotData, type DeleteQueueSlotError, type DeleteQueueSlotResponse, type DeleteTelegramCommandsData, type DeleteTelegramCommandsError, type DeleteTelegramCommandsResponse, type DeleteWebhookSettingsData, type DeleteWebhookSettingsError, type DeleteWebhookSettingsResponse, type DownloadBlueskyMediaData, type DownloadBlueskyMediaError, type DownloadBlueskyMediaResponse, type DownloadFacebookVideoData, type DownloadFacebookVideoError, type DownloadFacebookVideoResponse, type DownloadFormat, type DownloadInstagramMediaData, type DownloadInstagramMediaError, type DownloadInstagramMediaResponse, type DownloadLinkedInVideoData, type DownloadLinkedInVideoError, type DownloadLinkedInVideoResponse, type DownloadResponse, type DownloadTikTokVideoData, type DownloadTikTokVideoError, type DownloadTikTokVideoResponse, type DownloadTwitterMediaData, type DownloadTwitterMediaError, type DownloadTwitterMediaResponse, type DownloadYouTubeVideoData, type DownloadYouTubeVideoError, type DownloadYouTubeVideoResponse, type EditInboxMessageData, type EditInboxMessageError, type EditInboxMessageResponse, type ErrorResponse, type FacebookPlatformData, type FollowerStatsResponse, type FoodMenu, type FoodMenuItem, type FoodMenuItemAttributes, type FoodMenuLabel, type FoodMenuSection, type GetAccountHealthData, type GetAccountHealthError, type GetAccountHealthResponse, type GetAllAccountsHealthData, type GetAllAccountsHealthError, type GetAllAccountsHealthResponse, type GetAnalyticsData, type GetAnalyticsError, type GetAnalyticsResponse, type GetConnectUrlData, type GetConnectUrlError, type GetConnectUrlResponse, type GetFacebookPagesData, type GetFacebookPagesError, type GetFacebookPagesResponse, type GetFollowerStatsData, type GetFollowerStatsError, type GetFollowerStatsResponse, type GetGmbLocationsData, type GetGmbLocationsError, type GetGmbLocationsResponse, type GetGoogleBusinessAttributesData, type GetGoogleBusinessAttributesError, type GetGoogleBusinessAttributesResponse, type GetGoogleBusinessFoodMenusData, type GetGoogleBusinessFoodMenusError, type GetGoogleBusinessFoodMenusResponse, type GetGoogleBusinessLocationDetailsData, type GetGoogleBusinessLocationDetailsError, type GetGoogleBusinessLocationDetailsResponse, type GetGoogleBusinessReviewsData, type GetGoogleBusinessReviewsError, type GetGoogleBusinessReviewsResponse, type GetInboxConversationData, type GetInboxConversationError, type GetInboxConversationMessagesData, type GetInboxConversationMessagesError, type GetInboxConversationMessagesResponse, type GetInboxConversationResponse, type GetInboxPostCommentsData, type GetInboxPostCommentsError, type GetInboxPostCommentsResponse, type GetInstagramIceBreakersData, type GetInstagramIceBreakersError, type GetInstagramIceBreakersResponse, type GetLinkedInAggregateAnalyticsData, type GetLinkedInAggregateAnalyticsError, type GetLinkedInAggregateAnalyticsResponse, type GetLinkedInMentionsData, type GetLinkedInMentionsError, type GetLinkedInMentionsResponse, type GetLinkedInOrganizationsData, type GetLinkedInOrganizationsError, type GetLinkedInOrganizationsResponse, type GetLinkedInPostAnalyticsData, type GetLinkedInPostAnalyticsError, type GetLinkedInPostAnalyticsResponse, type GetMediaPresignedUrlData, type GetMediaPresignedUrlError, type GetMediaPresignedUrlResponse, type GetMessengerMenuData, type GetMessengerMenuError, type GetMessengerMenuResponse, type GetNextQueueSlotData, type GetNextQueueSlotError, type GetNextQueueSlotResponse, type GetPendingOAuthDataData, type GetPendingOAuthDataError, type GetPendingOAuthDataResponse, type GetPinterestBoardsData, type GetPinterestBoardsError, type GetPinterestBoardsResponse, type GetPostData, type GetPostError, type GetPostLogsData, type GetPostLogsError, type GetPostLogsResponse, type GetPostResponse, type GetProfileData, type GetProfileError, type GetProfileResponse, type GetRedditFeedData, type GetRedditFeedError, type GetRedditFeedResponse, type GetRedditFlairsData, type GetRedditFlairsError, type GetRedditFlairsResponse, type GetRedditSubredditsData, type GetRedditSubredditsError, type GetRedditSubredditsResponse, type GetTelegramCommandsData, type GetTelegramCommandsError, type GetTelegramCommandsResponse, type GetTelegramConnectStatusData, type GetTelegramConnectStatusError, type GetTelegramConnectStatusResponse, type GetUsageStatsError, type GetUsageStatsResponse, type GetUserData, type GetUserError, type GetUserResponse, type GetWebhookLogsData, type GetWebhookLogsError, type GetWebhookLogsResponse, type GetWebhookSettingsError, type GetWebhookSettingsResponse, type GetYouTubeDailyViewsData, type GetYouTubeDailyViewsError, type GetYouTubeDailyViewsResponse, type GetYouTubeTranscriptData, type GetYouTubeTranscriptError, type GetYouTubeTranscriptResponse, type GoogleBusinessPlatformData, type HandleOAuthCallbackData, type HandleOAuthCallbackError, type HandleOAuthCallbackResponse, type HashtagCheckResponse, type HashtagInfo, type HideInboxCommentData, type HideInboxCommentError, type HideInboxCommentResponse, type InitiateTelegramConnectData, type InitiateTelegramConnectError, type InitiateTelegramConnectResponse, type InstagramPlatformData, Late, LateApiError, type LikeInboxCommentData, type LikeInboxCommentError, type LikeInboxCommentResponse, type LinkedInAggregateAnalyticsDailyResponse, type LinkedInAggregateAnalyticsTotalResponse, type LinkedInPlatformData, type ListAccountGroupsError, type ListAccountGroupsResponse, type ListAccountsData, type ListAccountsError, type ListAccountsResponse, type ListApiKeysError, type ListApiKeysResponse, type ListConnectionLogsData, type ListConnectionLogsError, type ListConnectionLogsResponse, type ListFacebookPagesData, type ListFacebookPagesError, type ListFacebookPagesResponse, type ListGoogleBusinessLocationsData, type ListGoogleBusinessLocationsError, type ListGoogleBusinessLocationsResponse, type ListGoogleBusinessMediaData, type ListGoogleBusinessMediaError, type ListGoogleBusinessMediaResponse, type ListGoogleBusinessPlaceActionsData, type ListGoogleBusinessPlaceActionsError, type ListGoogleBusinessPlaceActionsResponse, type ListInboxCommentsData, type ListInboxCommentsError, type ListInboxCommentsResponse, type ListInboxConversationsData, type ListInboxConversationsError, type ListInboxConversationsResponse, type ListInboxReviewsData, type ListInboxReviewsError, type ListInboxReviewsResponse, type ListLinkedInOrganizationsData, type ListLinkedInOrganizationsError, type ListLinkedInOrganizationsResponse, type ListPinterestBoardsForSelectionData, type ListPinterestBoardsForSelectionError, type ListPinterestBoardsForSelectionResponse, type ListPostsData, type ListPostsError, type ListPostsLogsData, type ListPostsLogsError, type ListPostsLogsResponse, type ListPostsResponse, type ListProfilesData, type ListProfilesError, type ListProfilesResponse, type ListQueueSlotsData, type ListQueueSlotsError, type ListQueueSlotsResponse, type ListSnapchatProfilesData, type ListSnapchatProfilesError, type ListSnapchatProfilesResponse, type ListUsersError, type ListUsersResponse, type MediaItem, type MediaUploadResponse, type Money, type Pagination, type ParameterLimitParam, type ParameterPageParam, type PinterestPlatformData, type PlatformAnalytics, type PlatformTarget, type Post, type PostAnalytics, type PostCreateResponse, type PostDeleteResponse, type PostGetResponse, type PostLog, type PostRetryResponse, type PostUpdateResponse, type PostsListResponse, type PreviewQueueData, type PreviewQueueError, type PreviewQueueResponse, type Profile, type ProfileCreateResponse, type ProfileDeleteResponse, type ProfileGetResponse, type ProfileUpdateResponse, type ProfilesListResponse, type QueueDeleteResponse, type QueueNextSlotResponse, type QueuePreviewResponse, type QueueSchedule, type QueueSlot, type QueueSlotsResponse, type QueueUpdateResponse, RateLimitError, type RedditPlatformData, type ReplyToInboxPostData, type ReplyToInboxPostError, type ReplyToInboxPostResponse, type ReplyToInboxReviewData, type ReplyToInboxReviewError, type ReplyToInboxReviewResponse, type RetryPostData, type RetryPostError, type RetryPostResponse, type SearchRedditData, type SearchRedditError, type SearchRedditResponse, type SelectFacebookPageData, type SelectFacebookPageError, type SelectFacebookPageResponse, type SelectGoogleBusinessLocationData, type SelectGoogleBusinessLocationError, type SelectGoogleBusinessLocationResponse, type SelectLinkedInOrganizationData, type SelectLinkedInOrganizationError, type SelectLinkedInOrganizationResponse, type SelectPinterestBoardData, type SelectPinterestBoardError, type SelectPinterestBoardResponse, type SelectSnapchatProfileData, type SelectSnapchatProfileError, type SelectSnapchatProfileResponse, type SendInboxMessageData, type SendInboxMessageError, type SendInboxMessageResponse, type SendPrivateReplyToCommentData, type SendPrivateReplyToCommentError, type SendPrivateReplyToCommentResponse, type SetInstagramIceBreakersData, type SetInstagramIceBreakersError, type SetInstagramIceBreakersResponse, type SetMessengerMenuData, type SetMessengerMenuError, type SetMessengerMenuResponse, type SetTelegramCommandsData, type SetTelegramCommandsError, type SetTelegramCommandsResponse, type SnapchatPlatformData, type SocialAccount, type TelegramPlatformData, type TestWebhookData, type TestWebhookError, type TestWebhookResponse, type ThreadsPlatformData, type TikTokPlatformData, type TranscriptResponse, type TranscriptSegment, type TwitterPlatformData, type UnhideInboxCommentData, type UnhideInboxCommentError, type UnhideInboxCommentResponse, type UnlikeInboxCommentData, type UnlikeInboxCommentError, type UnlikeInboxCommentResponse, type UnpublishPostData, type UnpublishPostError, type UnpublishPostResponse, type UpdateAccountData, type UpdateAccountError, type UpdateAccountGroupData, type UpdateAccountGroupError, type UpdateAccountGroupResponse, type UpdateAccountResponse, type UpdateFacebookPageData, type UpdateFacebookPageError, type UpdateFacebookPageResponse, type UpdateGmbLocationData, type UpdateGmbLocationError, type UpdateGmbLocationResponse, type UpdateGoogleBusinessAttributesData, type UpdateGoogleBusinessAttributesError, type UpdateGoogleBusinessAttributesResponse, type UpdateGoogleBusinessFoodMenusData, type UpdateGoogleBusinessFoodMenusError, type UpdateGoogleBusinessFoodMenusResponse, type UpdateGoogleBusinessLocationDetailsData, type UpdateGoogleBusinessLocationDetailsError, type UpdateGoogleBusinessLocationDetailsResponse, type UpdateInboxConversationData, type UpdateInboxConversationError, type UpdateInboxConversationResponse, type UpdateLinkedInOrganizationData, type UpdateLinkedInOrganizationError, type UpdateLinkedInOrganizationResponse, type UpdatePinterestBoardsData, type UpdatePinterestBoardsError, type UpdatePinterestBoardsResponse, type UpdatePostData, type UpdatePostError, type UpdatePostResponse, type UpdateProfileData, type UpdateProfileError, type UpdateProfileResponse, type UpdateQueueSlotData, type UpdateQueueSlotError, type UpdateQueueSlotResponse, type UpdateRedditSubredditsData, type UpdateRedditSubredditsError, type UpdateRedditSubredditsResponse, type UpdateWebhookSettingsData, type UpdateWebhookSettingsError, type UpdateWebhookSettingsResponse, type UploadTokenResponse, type UploadTokenStatusResponse, type UploadedFile, type UsageStats, type User, type UserGetResponse, type UsersListResponse, ValidationError, type Webhook, type WebhookLog, type WebhookPayloadAccountConnected, type WebhookPayloadAccountDisconnected, type WebhookPayloadMessage, type WebhookPayloadPost, type YouTubeDailyViewsResponse, type YouTubePlatformData, type YouTubeScopeMissingResponse, type action, type aggregation, type aggregation2, type aggregation3, type billingPeriod, type commercialContentType, type connectionMethod, type contentType, type contentType2, type contentType3, Late as default, type direction, type disconnectionType, type errorCategory, type errorSource, type event, type event2, type event3, type event4, type event5, type eventType, type graduationStrategy, type mediaType, parseApiError, type parseMode, type platform, type platform2, type status, type status2, type status3, type status4, type status5, type status6, type type, type type2, type type3, type visibility };
|