@getlatedev/node 0.1.55 → 0.1.57
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 +108 -59
- package/dist/index.d.ts +108 -59
- package/package.json +2 -2
- package/src/generated/sdk.gen.ts +6 -5
- package/src/generated/types.gen.ts +111 -58
package/dist/index.d.mts
CHANGED
|
@@ -553,6 +553,10 @@ type AnalyticsListResponse = {
|
|
|
553
553
|
overview?: AnalyticsOverview;
|
|
554
554
|
posts?: Array<{
|
|
555
555
|
_id?: string;
|
|
556
|
+
/**
|
|
557
|
+
* Original Late post ID if scheduled via Late
|
|
558
|
+
*/
|
|
559
|
+
latePostId?: (string) | null;
|
|
556
560
|
content?: string;
|
|
557
561
|
scheduledFor?: string;
|
|
558
562
|
publishedAt?: string;
|
|
@@ -562,6 +566,7 @@ type AnalyticsListResponse = {
|
|
|
562
566
|
platform?: string;
|
|
563
567
|
platformPostUrl?: string;
|
|
564
568
|
isExternal?: boolean;
|
|
569
|
+
profileId?: (string) | null;
|
|
565
570
|
thumbnailUrl?: string;
|
|
566
571
|
mediaType?: 'image' | 'video' | 'gif' | 'document' | 'carousel' | 'text';
|
|
567
572
|
/**
|
|
@@ -593,19 +598,44 @@ type AnalyticsOverview = {
|
|
|
593
598
|
totalPosts?: number;
|
|
594
599
|
publishedPosts?: number;
|
|
595
600
|
scheduledPosts?: number;
|
|
596
|
-
lastSync?: string;
|
|
601
|
+
lastSync?: (string) | null;
|
|
602
|
+
dataStaleness?: {
|
|
603
|
+
/**
|
|
604
|
+
* Number of accounts with stale analytics data
|
|
605
|
+
*/
|
|
606
|
+
staleAccountCount?: number;
|
|
607
|
+
/**
|
|
608
|
+
* Whether a background sync was triggered for stale accounts
|
|
609
|
+
*/
|
|
610
|
+
syncTriggered?: boolean;
|
|
611
|
+
};
|
|
597
612
|
};
|
|
598
613
|
type AnalyticsSinglePostResponse = {
|
|
599
614
|
postId?: string;
|
|
600
|
-
|
|
615
|
+
/**
|
|
616
|
+
* Original Late post ID if scheduled via Late
|
|
617
|
+
*/
|
|
618
|
+
latePostId?: (string) | null;
|
|
619
|
+
/**
|
|
620
|
+
* Overall post status. "partial" when some platforms published and others failed.
|
|
621
|
+
*/
|
|
622
|
+
status?: 'published' | 'failed' | 'partial';
|
|
601
623
|
content?: string;
|
|
602
624
|
scheduledFor?: string;
|
|
603
|
-
publishedAt?: string;
|
|
625
|
+
publishedAt?: (string) | null;
|
|
604
626
|
analytics?: PostAnalytics;
|
|
605
627
|
platformAnalytics?: Array<PlatformAnalytics>;
|
|
606
628
|
platform?: string;
|
|
607
|
-
platformPostUrl?: string;
|
|
629
|
+
platformPostUrl?: (string) | null;
|
|
608
630
|
isExternal?: boolean;
|
|
631
|
+
/**
|
|
632
|
+
* Overall sync state across all platforms
|
|
633
|
+
*/
|
|
634
|
+
syncStatus?: 'synced' | 'pending' | 'partial' | 'unavailable';
|
|
635
|
+
/**
|
|
636
|
+
* Human-readable status message for pending, partial, or failed states
|
|
637
|
+
*/
|
|
638
|
+
message?: (string) | null;
|
|
609
639
|
thumbnailUrl?: (string) | null;
|
|
610
640
|
mediaType?: ('image' | 'video' | 'carousel' | 'text') | null;
|
|
611
641
|
/**
|
|
@@ -623,6 +653,14 @@ type AnalyticsSinglePostResponse = {
|
|
|
623
653
|
thumbnail?: string;
|
|
624
654
|
}>;
|
|
625
655
|
};
|
|
656
|
+
/**
|
|
657
|
+
* Overall post status. "partial" when some platforms published and others failed.
|
|
658
|
+
*/
|
|
659
|
+
type status = 'published' | 'failed' | 'partial';
|
|
660
|
+
/**
|
|
661
|
+
* Overall sync state across all platforms
|
|
662
|
+
*/
|
|
663
|
+
type syncStatus = 'synced' | 'pending' | 'partial' | 'unavailable';
|
|
626
664
|
type mediaType = 'image' | 'video' | 'carousel' | 'text';
|
|
627
665
|
type ApiKey = {
|
|
628
666
|
id?: string;
|
|
@@ -927,7 +965,7 @@ type HashtagInfo = {
|
|
|
927
965
|
status?: 'safe' | 'banned' | 'restricted' | 'unknown';
|
|
928
966
|
postCount?: number;
|
|
929
967
|
};
|
|
930
|
-
type
|
|
968
|
+
type status2 = 'safe' | 'banned' | 'restricted' | 'unknown';
|
|
931
969
|
/**
|
|
932
970
|
* 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.
|
|
933
971
|
*/
|
|
@@ -1102,7 +1140,7 @@ type LinkedInPlatformData = {
|
|
|
1102
1140
|
disableLinkPreview?: boolean;
|
|
1103
1141
|
};
|
|
1104
1142
|
/**
|
|
1105
|
-
* Media referenced in posts. URLs must be publicly reachable over HTTPS. Use POST /v1/media/presign for uploads up to 5GB.
|
|
1143
|
+
* Media referenced in posts. URLs must be publicly reachable over HTTPS. Use POST /v1/media/presign for uploads up to 5GB. Zernio auto-compresses images and videos that exceed platform limits (videos over 200 MB may not be compressed).
|
|
1106
1144
|
*/
|
|
1107
1145
|
type MediaItem = {
|
|
1108
1146
|
type?: 'image' | 'video' | 'gif' | 'document';
|
|
@@ -1189,22 +1227,25 @@ type PinterestPlatformData = {
|
|
|
1189
1227
|
};
|
|
1190
1228
|
type PlatformAnalytics = {
|
|
1191
1229
|
platform?: string;
|
|
1192
|
-
status?:
|
|
1230
|
+
status?: 'published' | 'failed';
|
|
1193
1231
|
accountId?: string;
|
|
1194
|
-
accountUsername?: string;
|
|
1195
|
-
analytics?: PostAnalytics;
|
|
1196
|
-
|
|
1197
|
-
|
|
1198
|
-
|
|
1199
|
-
|
|
1200
|
-
|
|
1201
|
-
|
|
1202
|
-
|
|
1203
|
-
|
|
1204
|
-
|
|
1205
|
-
lastUpdated?: (string) | null;
|
|
1206
|
-
} | null;
|
|
1232
|
+
accountUsername?: (string) | null;
|
|
1233
|
+
analytics?: (PostAnalytics) | null;
|
|
1234
|
+
/**
|
|
1235
|
+
* Sync state of analytics for this platform
|
|
1236
|
+
*/
|
|
1237
|
+
syncStatus?: 'synced' | 'pending' | 'unavailable';
|
|
1238
|
+
platformPostUrl?: (string) | null;
|
|
1239
|
+
/**
|
|
1240
|
+
* Error details when status is failed
|
|
1241
|
+
*/
|
|
1242
|
+
errorMessage?: (string) | null;
|
|
1207
1243
|
};
|
|
1244
|
+
type status3 = 'published' | 'failed';
|
|
1245
|
+
/**
|
|
1246
|
+
* Sync state of analytics for this platform
|
|
1247
|
+
*/
|
|
1248
|
+
type syncStatus2 = 'synced' | 'pending' | 'unavailable';
|
|
1208
1249
|
type PlatformTarget = {
|
|
1209
1250
|
/**
|
|
1210
1251
|
* Supported values: twitter, threads, instagram, youtube, facebook, linkedin, pinterest, reddit, tiktok, bluesky, googlebusiness, telegram
|
|
@@ -1245,20 +1286,20 @@ type PlatformTarget = {
|
|
|
1245
1286
|
*/
|
|
1246
1287
|
errorMessage?: string;
|
|
1247
1288
|
/**
|
|
1248
|
-
* Error category for programmatic handling: auth_expired (token expired/revoked), user_content (wrong format/too long), user_abuse (rate limits/spam), account_issue (config problems), platform_rejected (policy violation), platform_error (5xx/maintenance), system_error (
|
|
1289
|
+
* Error category for programmatic handling: auth_expired (token expired/revoked), user_content (wrong format/too long), user_abuse (rate limits/spam), account_issue (config problems), platform_rejected (policy violation), platform_error (5xx/maintenance), system_error (Zernio infra), unknown
|
|
1249
1290
|
*/
|
|
1250
1291
|
errorCategory?: 'auth_expired' | 'user_content' | 'user_abuse' | 'account_issue' | 'platform_rejected' | 'platform_error' | 'system_error' | 'unknown';
|
|
1251
1292
|
/**
|
|
1252
|
-
* Who caused the error: user (fix content/reconnect), platform (outage/API change), system (
|
|
1293
|
+
* Who caused the error: user (fix content/reconnect), platform (outage/API change), system (Zernio issue, rare)
|
|
1253
1294
|
*/
|
|
1254
1295
|
errorSource?: 'user' | 'platform' | 'system';
|
|
1255
1296
|
};
|
|
1256
1297
|
/**
|
|
1257
|
-
* Error category for programmatic handling: auth_expired (token expired/revoked), user_content (wrong format/too long), user_abuse (rate limits/spam), account_issue (config problems), platform_rejected (policy violation), platform_error (5xx/maintenance), system_error (
|
|
1298
|
+
* Error category for programmatic handling: auth_expired (token expired/revoked), user_content (wrong format/too long), user_abuse (rate limits/spam), account_issue (config problems), platform_rejected (policy violation), platform_error (5xx/maintenance), system_error (Zernio infra), unknown
|
|
1258
1299
|
*/
|
|
1259
1300
|
type errorCategory = 'auth_expired' | 'user_content' | 'user_abuse' | 'account_issue' | 'platform_rejected' | 'platform_error' | 'system_error' | 'unknown';
|
|
1260
1301
|
/**
|
|
1261
|
-
* Who caused the error: user (fix content/reconnect), platform (outage/API change), system (
|
|
1302
|
+
* Who caused the error: user (fix content/reconnect), platform (outage/API change), system (Zernio issue, rare)
|
|
1262
1303
|
*/
|
|
1263
1304
|
type errorSource = 'user' | 'platform' | 'system';
|
|
1264
1305
|
type Post = {
|
|
@@ -1301,7 +1342,7 @@ type Post = {
|
|
|
1301
1342
|
createdAt?: string;
|
|
1302
1343
|
updatedAt?: string;
|
|
1303
1344
|
};
|
|
1304
|
-
type
|
|
1345
|
+
type status4 = 'draft' | 'scheduled' | 'publishing' | 'published' | 'failed' | 'partial';
|
|
1305
1346
|
type visibility = 'public' | 'private' | 'unlisted';
|
|
1306
1347
|
type PostAnalytics = {
|
|
1307
1348
|
impressions?: number;
|
|
@@ -1409,7 +1450,7 @@ type PostLog = {
|
|
|
1409
1450
|
* Type of action logged: publish (initial attempt), retry (after failure), media_upload, rate_limit_pause, token_refresh, cancelled
|
|
1410
1451
|
*/
|
|
1411
1452
|
type action = 'publish' | 'retry' | 'media_upload' | 'rate_limit_pause' | 'token_refresh' | 'cancelled';
|
|
1412
|
-
type
|
|
1453
|
+
type status5 = 'success' | 'failed' | 'pending' | 'skipped';
|
|
1413
1454
|
type PostRetryResponse = {
|
|
1414
1455
|
message?: string;
|
|
1415
1456
|
post?: Post;
|
|
@@ -1822,7 +1863,7 @@ type UploadTokenResponse = {
|
|
|
1822
1863
|
expiresAt?: string;
|
|
1823
1864
|
status?: 'pending' | 'completed' | 'expired';
|
|
1824
1865
|
};
|
|
1825
|
-
type
|
|
1866
|
+
type status6 = 'pending' | 'completed' | 'expired';
|
|
1826
1867
|
type UploadTokenStatusResponse = {
|
|
1827
1868
|
token?: string;
|
|
1828
1869
|
status?: 'pending' | 'completed' | 'expired';
|
|
@@ -1951,7 +1992,7 @@ type WebhookLog = {
|
|
|
1951
1992
|
createdAt?: string;
|
|
1952
1993
|
};
|
|
1953
1994
|
type event = 'post.scheduled' | 'post.published' | 'post.failed' | 'post.partial' | 'post.recycled' | 'account.connected' | 'account.disconnected' | 'message.received' | 'comment.received' | 'webhook.test';
|
|
1954
|
-
type
|
|
1995
|
+
type status7 = 'success' | 'failed';
|
|
1955
1996
|
/**
|
|
1956
1997
|
* Webhook payload for account connected events
|
|
1957
1998
|
*/
|
|
@@ -2184,7 +2225,7 @@ type WebhookPayloadMessage = {
|
|
|
2184
2225
|
type event5 = 'message.received';
|
|
2185
2226
|
type platform3 = 'instagram' | 'facebook' | 'telegram' | 'bluesky' | 'reddit';
|
|
2186
2227
|
type direction = 'incoming';
|
|
2187
|
-
type
|
|
2228
|
+
type status8 = 'active' | 'archived';
|
|
2188
2229
|
/**
|
|
2189
2230
|
* Webhook payload for post events
|
|
2190
2231
|
*/
|
|
@@ -2611,7 +2652,7 @@ type ValidateSubredditError = unknown;
|
|
|
2611
2652
|
type GetAnalyticsData = {
|
|
2612
2653
|
query?: {
|
|
2613
2654
|
/**
|
|
2614
|
-
* Inclusive lower bound
|
|
2655
|
+
* Inclusive lower bound (YYYY-MM-DD). Defaults to 90 days ago if omitted. Max range is 366 days.
|
|
2615
2656
|
*/
|
|
2616
2657
|
fromDate?: string;
|
|
2617
2658
|
/**
|
|
@@ -2631,7 +2672,7 @@ type GetAnalyticsData = {
|
|
|
2631
2672
|
*/
|
|
2632
2673
|
platform?: string;
|
|
2633
2674
|
/**
|
|
2634
|
-
* Returns analytics for a single post. Accepts both
|
|
2675
|
+
* Returns analytics for a single post. Accepts both Zernio Post IDs and External Post IDs. Zernio IDs are auto-resolved to External Post analytics.
|
|
2635
2676
|
*/
|
|
2636
2677
|
postId?: string;
|
|
2637
2678
|
/**
|
|
@@ -2639,30 +2680,38 @@ type GetAnalyticsData = {
|
|
|
2639
2680
|
*/
|
|
2640
2681
|
profileId?: string;
|
|
2641
2682
|
/**
|
|
2642
|
-
* Sort by date or
|
|
2683
|
+
* Sort by date, engagement, or a specific metric
|
|
2643
2684
|
*/
|
|
2644
|
-
sortBy?: 'date' | 'engagement';
|
|
2685
|
+
sortBy?: 'date' | 'engagement' | 'impressions' | 'reach' | 'likes' | 'comments' | 'shares' | 'saves' | 'clicks' | 'views';
|
|
2645
2686
|
/**
|
|
2646
|
-
* Filter by post source: late (posted via
|
|
2687
|
+
* Filter by post source: late (posted via Zernio API), external (synced from platform), all (default)
|
|
2647
2688
|
*/
|
|
2648
2689
|
source?: 'all' | 'late' | 'external';
|
|
2649
2690
|
/**
|
|
2650
|
-
* Inclusive upper bound
|
|
2691
|
+
* Inclusive upper bound (YYYY-MM-DD). Defaults to today if omitted.
|
|
2651
2692
|
*/
|
|
2652
2693
|
toDate?: string;
|
|
2653
2694
|
};
|
|
2654
2695
|
};
|
|
2655
|
-
type GetAnalyticsResponse = ((AnalyticsSinglePostResponse | AnalyticsListResponse));
|
|
2696
|
+
type GetAnalyticsResponse = ((AnalyticsSinglePostResponse | AnalyticsListResponse) | AnalyticsSinglePostResponse);
|
|
2656
2697
|
type GetAnalyticsError = ({
|
|
2657
2698
|
error?: string;
|
|
2699
|
+
/**
|
|
2700
|
+
* Detailed validation errors
|
|
2701
|
+
*/
|
|
2702
|
+
details?: {
|
|
2703
|
+
[key: string]: unknown;
|
|
2704
|
+
};
|
|
2705
|
+
} | {
|
|
2706
|
+
error?: string;
|
|
2658
2707
|
} | {
|
|
2659
2708
|
error?: string;
|
|
2660
2709
|
code?: string;
|
|
2661
|
-
} | ErrorResponse);
|
|
2710
|
+
} | AnalyticsSinglePostResponse | ErrorResponse);
|
|
2662
2711
|
type GetYouTubeDailyViewsData = {
|
|
2663
2712
|
query: {
|
|
2664
2713
|
/**
|
|
2665
|
-
* The
|
|
2714
|
+
* The Zernio account ID for the YouTube account
|
|
2666
2715
|
*/
|
|
2667
2716
|
accountId: string;
|
|
2668
2717
|
/**
|
|
@@ -2704,7 +2753,7 @@ type GetDailyMetricsData = {
|
|
|
2704
2753
|
*/
|
|
2705
2754
|
profileId?: string;
|
|
2706
2755
|
/**
|
|
2707
|
-
* Filter by post origin. "late" for posts published via
|
|
2756
|
+
* Filter by post origin. "late" for posts published via Zernio, "external" for posts imported from platforms.
|
|
2708
2757
|
*/
|
|
2709
2758
|
source?: 'all' | 'late' | 'external';
|
|
2710
2759
|
/**
|
|
@@ -2761,7 +2810,7 @@ type GetBestTimeToPostData = {
|
|
|
2761
2810
|
*/
|
|
2762
2811
|
profileId?: string;
|
|
2763
2812
|
/**
|
|
2764
|
-
* Filter by post origin. "late" for posts published via
|
|
2813
|
+
* Filter by post origin. "late" for posts published via Zernio, "external" for posts imported from platforms.
|
|
2765
2814
|
*/
|
|
2766
2815
|
source?: 'all' | 'late' | 'external';
|
|
2767
2816
|
};
|
|
@@ -2803,7 +2852,7 @@ type GetContentDecayData = {
|
|
|
2803
2852
|
*/
|
|
2804
2853
|
profileId?: string;
|
|
2805
2854
|
/**
|
|
2806
|
-
* Filter by post origin. "late" for posts published via
|
|
2855
|
+
* Filter by post origin. "late" for posts published via Zernio, "external" for posts imported from platforms.
|
|
2807
2856
|
*/
|
|
2808
2857
|
source?: 'all' | 'late' | 'external';
|
|
2809
2858
|
};
|
|
@@ -2845,7 +2894,7 @@ type GetPostingFrequencyData = {
|
|
|
2845
2894
|
*/
|
|
2846
2895
|
profileId?: string;
|
|
2847
2896
|
/**
|
|
2848
|
-
* Filter by post origin. "late" for posts published via
|
|
2897
|
+
* Filter by post origin. "late" for posts published via Zernio, "external" for posts imported from platforms.
|
|
2849
2898
|
*/
|
|
2850
2899
|
source?: 'all' | 'late' | 'external';
|
|
2851
2900
|
};
|
|
@@ -2884,7 +2933,7 @@ type GetPostTimelineData = {
|
|
|
2884
2933
|
*/
|
|
2885
2934
|
fromDate?: string;
|
|
2886
2935
|
/**
|
|
2887
|
-
* The post to fetch timeline for. Accepts an ExternalPost ID, a platformPostId, or a
|
|
2936
|
+
* The post to fetch timeline for. Accepts an ExternalPost ID, a platformPostId, or a Zernio Post ID.
|
|
2888
2937
|
*
|
|
2889
2938
|
*/
|
|
2890
2939
|
postId: string;
|
|
@@ -3697,11 +3746,11 @@ type GetConnectUrlData = {
|
|
|
3697
3746
|
};
|
|
3698
3747
|
query: {
|
|
3699
3748
|
/**
|
|
3700
|
-
* When true, the user is redirected to your redirect_url with raw OAuth data (code, state) instead of
|
|
3749
|
+
* When true, the user is redirected to your redirect_url with raw OAuth data (code, state) instead of Zernio's default account selection UI. Use this to build a custom connect experience.
|
|
3701
3750
|
*/
|
|
3702
3751
|
headless?: boolean;
|
|
3703
3752
|
/**
|
|
3704
|
-
* Your
|
|
3753
|
+
* Your Zernio profile ID (get from /v1/profiles)
|
|
3705
3754
|
*/
|
|
3706
3755
|
profileId: string;
|
|
3707
3756
|
/**
|
|
@@ -3937,7 +3986,7 @@ type SelectGoogleBusinessLocationError = (unknown | {
|
|
|
3937
3986
|
type GetGoogleBusinessReviewsData = {
|
|
3938
3987
|
path: {
|
|
3939
3988
|
/**
|
|
3940
|
-
* The
|
|
3989
|
+
* The Zernio account ID (from /v1/accounts)
|
|
3941
3990
|
*/
|
|
3942
3991
|
accountId: string;
|
|
3943
3992
|
};
|
|
@@ -4015,7 +4064,7 @@ type GetGoogleBusinessReviewsError = (ErrorResponse | {
|
|
|
4015
4064
|
type GetGoogleBusinessFoodMenusData = {
|
|
4016
4065
|
path: {
|
|
4017
4066
|
/**
|
|
4018
|
-
* The
|
|
4067
|
+
* The Zernio account ID (from /v1/accounts)
|
|
4019
4068
|
*/
|
|
4020
4069
|
accountId: string;
|
|
4021
4070
|
};
|
|
@@ -4052,7 +4101,7 @@ type UpdateGoogleBusinessFoodMenusData = {
|
|
|
4052
4101
|
};
|
|
4053
4102
|
path: {
|
|
4054
4103
|
/**
|
|
4055
|
-
* The
|
|
4104
|
+
* The Zernio account ID (from /v1/accounts)
|
|
4056
4105
|
*/
|
|
4057
4106
|
accountId: string;
|
|
4058
4107
|
};
|
|
@@ -4076,7 +4125,7 @@ type UpdateGoogleBusinessFoodMenusError = (ErrorResponse | {
|
|
|
4076
4125
|
type GetGoogleBusinessLocationDetailsData = {
|
|
4077
4126
|
path: {
|
|
4078
4127
|
/**
|
|
4079
|
-
* The
|
|
4128
|
+
* The Zernio account ID (from /v1/accounts)
|
|
4080
4129
|
*/
|
|
4081
4130
|
accountId: string;
|
|
4082
4131
|
};
|
|
@@ -4295,7 +4344,7 @@ type UpdateGoogleBusinessLocationDetailsData = {
|
|
|
4295
4344
|
};
|
|
4296
4345
|
path: {
|
|
4297
4346
|
/**
|
|
4298
|
-
* The
|
|
4347
|
+
* The Zernio account ID (from /v1/accounts)
|
|
4299
4348
|
*/
|
|
4300
4349
|
accountId: string;
|
|
4301
4350
|
};
|
|
@@ -4578,7 +4627,7 @@ type GetPendingOAuthDataResponse = ({
|
|
|
4578
4627
|
*/
|
|
4579
4628
|
platform?: string;
|
|
4580
4629
|
/**
|
|
4581
|
-
* The
|
|
4630
|
+
* The Zernio profile ID
|
|
4582
4631
|
*/
|
|
4583
4632
|
profileId?: string;
|
|
4584
4633
|
/**
|
|
@@ -4706,7 +4755,7 @@ type ListPinterestBoardsForSelectionData = {
|
|
|
4706
4755
|
};
|
|
4707
4756
|
query: {
|
|
4708
4757
|
/**
|
|
4709
|
-
* Your
|
|
4758
|
+
* Your Zernio profile ID
|
|
4710
4759
|
*/
|
|
4711
4760
|
profileId: string;
|
|
4712
4761
|
/**
|
|
@@ -4741,7 +4790,7 @@ type ListPinterestBoardsForSelectionError = (unknown | {
|
|
|
4741
4790
|
type SelectPinterestBoardData = {
|
|
4742
4791
|
body: {
|
|
4743
4792
|
/**
|
|
4744
|
-
* Your
|
|
4793
|
+
* Your Zernio profile ID
|
|
4745
4794
|
*/
|
|
4746
4795
|
profileId: string;
|
|
4747
4796
|
/**
|
|
@@ -4807,7 +4856,7 @@ type ListSnapchatProfilesData = {
|
|
|
4807
4856
|
};
|
|
4808
4857
|
query: {
|
|
4809
4858
|
/**
|
|
4810
|
-
* Your
|
|
4859
|
+
* Your Zernio profile ID
|
|
4811
4860
|
*/
|
|
4812
4861
|
profileId: string;
|
|
4813
4862
|
/**
|
|
@@ -4846,7 +4895,7 @@ type ListSnapchatProfilesError = (unknown | {
|
|
|
4846
4895
|
type SelectSnapchatProfileData = {
|
|
4847
4896
|
body: {
|
|
4848
4897
|
/**
|
|
4849
|
-
* Your
|
|
4898
|
+
* Your Zernio profile ID
|
|
4850
4899
|
*/
|
|
4851
4900
|
profileId: string;
|
|
4852
4901
|
/**
|
|
@@ -6616,7 +6665,7 @@ type ListInboxCommentsError = ({
|
|
|
6616
6665
|
type GetInboxPostCommentsData = {
|
|
6617
6666
|
path: {
|
|
6618
6667
|
/**
|
|
6619
|
-
*
|
|
6668
|
+
* Zernio post ID or platform-specific post ID. Zernio IDs are auto-resolved. LinkedIn third-party posts accept full activity URN or numeric ID.
|
|
6620
6669
|
*/
|
|
6621
6670
|
postId: string;
|
|
6622
6671
|
};
|
|
@@ -6746,7 +6795,7 @@ type ReplyToInboxPostData = {
|
|
|
6746
6795
|
};
|
|
6747
6796
|
path: {
|
|
6748
6797
|
/**
|
|
6749
|
-
*
|
|
6798
|
+
* Zernio post ID or platform-specific post ID. LinkedIn third-party posts accept full activity URN or numeric ID.
|
|
6750
6799
|
*/
|
|
6751
6800
|
postId: string;
|
|
6752
6801
|
};
|
|
@@ -6768,7 +6817,7 @@ type ReplyToInboxPostError = ({
|
|
|
6768
6817
|
type DeleteInboxCommentData = {
|
|
6769
6818
|
path: {
|
|
6770
6819
|
/**
|
|
6771
|
-
*
|
|
6820
|
+
* Zernio post ID or platform-specific post ID. LinkedIn third-party posts accept full activity URN or numeric ID.
|
|
6772
6821
|
*/
|
|
6773
6822
|
postId: string;
|
|
6774
6823
|
};
|
|
@@ -8451,4 +8500,4 @@ type ReleaseWhatsAppPhoneNumberError = (unknown | {
|
|
|
8451
8500
|
error?: string;
|
|
8452
8501
|
});
|
|
8453
8502
|
|
|
8454
|
-
export { type AccountGetResponse, type AccountWithFollowerStats, type AccountsListResponse, type AddWhatsAppBroadcastRecipientsData, type AddWhatsAppBroadcastRecipientsError, type AddWhatsAppBroadcastRecipientsResponse, type AnalyticsListResponse, type AnalyticsOverview, type AnalyticsSinglePostResponse, type ApiKey, type BlueskyPlatformData, type BookmarkPostData, type BookmarkPostError, type BookmarkPostResponse, type BulkDeleteWhatsAppContactsData, type BulkDeleteWhatsAppContactsError, type BulkDeleteWhatsAppContactsResponse, type BulkUpdateWhatsAppContactsData, type BulkUpdateWhatsAppContactsError, type BulkUpdateWhatsAppContactsResponse, type BulkUploadPostsData, type BulkUploadPostsError, type BulkUploadPostsResponse, type CancelWhatsAppBroadcastScheduleData, type CancelWhatsAppBroadcastScheduleError, type CancelWhatsAppBroadcastScheduleResponse, type CaptionResponse, type CheckInstagramHashtagsData, type CheckInstagramHashtagsError, type CheckInstagramHashtagsResponse, type ClientOptions, type CompleteTelegramConnectData, type CompleteTelegramConnectError, type CompleteTelegramConnectResponse, type ConnectBlueskyCredentialsData, type ConnectBlueskyCredentialsError, type ConnectBlueskyCredentialsResponse, type ConnectWhatsAppCredentialsData, type ConnectWhatsAppCredentialsError, type ConnectWhatsAppCredentialsResponse, 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 CreateWhatsAppBroadcastData, type CreateWhatsAppBroadcastError, type CreateWhatsAppBroadcastResponse, type CreateWhatsAppContactData, type CreateWhatsAppContactError, type CreateWhatsAppContactResponse, type CreateWhatsAppTemplateData, type CreateWhatsAppTemplateError, type CreateWhatsAppTemplateResponse, 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 DeleteWhatsAppBroadcastData, type DeleteWhatsAppBroadcastError, type DeleteWhatsAppBroadcastResponse, type DeleteWhatsAppContactData, type DeleteWhatsAppContactError, type DeleteWhatsAppContactResponse, type DeleteWhatsAppGroupData, type DeleteWhatsAppGroupError, type DeleteWhatsAppGroupResponse, type DeleteWhatsAppTemplateData, type DeleteWhatsAppTemplateError, type DeleteWhatsAppTemplateResponse, 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 FollowUserData, type FollowUserError, type FollowUserResponse, 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 GetBestTimeToPostData, type GetBestTimeToPostError, type GetBestTimeToPostResponse, type GetConnectUrlData, type GetConnectUrlError, type GetConnectUrlResponse, type GetContentDecayData, type GetContentDecayError, type GetContentDecayResponse, type GetDailyMetricsData, type GetDailyMetricsError, type GetDailyMetricsResponse, 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 GetLinkedInPostReactionsData, type GetLinkedInPostReactionsError, type GetLinkedInPostReactionsResponse, 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 GetPostTimelineData, type GetPostTimelineError, type GetPostTimelineResponse, type GetPostingFrequencyData, type GetPostingFrequencyError, type GetPostingFrequencyResponse, 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 GetWhatsAppBroadcastData, type GetWhatsAppBroadcastError, type GetWhatsAppBroadcastRecipientsData, type GetWhatsAppBroadcastRecipientsError, type GetWhatsAppBroadcastRecipientsResponse, type GetWhatsAppBroadcastResponse, type GetWhatsAppBroadcastsData, type GetWhatsAppBroadcastsError, type GetWhatsAppBroadcastsResponse, type GetWhatsAppBusinessProfileData, type GetWhatsAppBusinessProfileError, type GetWhatsAppBusinessProfileResponse, type GetWhatsAppContactData, type GetWhatsAppContactError, type GetWhatsAppContactResponse, type GetWhatsAppContactsData, type GetWhatsAppContactsError, type GetWhatsAppContactsResponse, type GetWhatsAppDisplayNameData, type GetWhatsAppDisplayNameError, type GetWhatsAppDisplayNameResponse, type GetWhatsAppGroupsData, type GetWhatsAppGroupsError, type GetWhatsAppGroupsResponse, type GetWhatsAppPhoneNumberData, type GetWhatsAppPhoneNumberError, type GetWhatsAppPhoneNumberResponse, type GetWhatsAppPhoneNumbersData, type GetWhatsAppPhoneNumbersError, type GetWhatsAppPhoneNumbersResponse, type GetWhatsAppTemplateData, type GetWhatsAppTemplateError, type GetWhatsAppTemplateResponse, type GetWhatsAppTemplatesData, type GetWhatsAppTemplatesError, type GetWhatsAppTemplatesResponse, 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 ImportWhatsAppContactsData, type ImportWhatsAppContactsError, type ImportWhatsAppContactsResponse, 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 PurchaseWhatsAppPhoneNumberData, type PurchaseWhatsAppPhoneNumberError, type PurchaseWhatsAppPhoneNumberResponse, type QueueDeleteResponse, type QueueNextSlotResponse, type QueuePreviewResponse, type QueueSchedule, type QueueSlot, type QueueSlotsResponse, type QueueUpdateResponse, RateLimitError, type RecyclingConfig, type RecyclingState, type RedditPlatformData, type ReleaseWhatsAppPhoneNumberData, type ReleaseWhatsAppPhoneNumberError, type ReleaseWhatsAppPhoneNumberResponse, type RemoveBookmarkData, type RemoveBookmarkError, type RemoveBookmarkResponse, type RemoveWhatsAppBroadcastRecipientsData, type RemoveWhatsAppBroadcastRecipientsError, type RemoveWhatsAppBroadcastRecipientsResponse, type RenameWhatsAppGroupData, type RenameWhatsAppGroupError, type RenameWhatsAppGroupResponse, type ReplyToInboxPostData, type ReplyToInboxPostError, type ReplyToInboxPostResponse, type ReplyToInboxReviewData, type ReplyToInboxReviewError, type ReplyToInboxReviewResponse, type RetryPostData, type RetryPostError, type RetryPostResponse, type RetweetPostData, type RetweetPostError, type RetweetPostResponse, type ScheduleWhatsAppBroadcastData, type ScheduleWhatsAppBroadcastError, type ScheduleWhatsAppBroadcastResponse, 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 SendWhatsAppBroadcastData, type SendWhatsAppBroadcastError, type SendWhatsAppBroadcastResponse, type SendWhatsAppBulkData, type SendWhatsAppBulkError, type SendWhatsAppBulkResponse, 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 UndoRetweetData, type UndoRetweetError, type UndoRetweetResponse, type UnfollowUserData, type UnfollowUserError, type UnfollowUserResponse, 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 UpdateWhatsAppBusinessProfileData, type UpdateWhatsAppBusinessProfileError, type UpdateWhatsAppBusinessProfileResponse, type UpdateWhatsAppContactData, type UpdateWhatsAppContactError, type UpdateWhatsAppContactResponse, type UpdateWhatsAppDisplayNameData, type UpdateWhatsAppDisplayNameError, type UpdateWhatsAppDisplayNameResponse, type UpdateWhatsAppTemplateData, type UpdateWhatsAppTemplateError, type UpdateWhatsAppTemplateResponse, type UploadTokenResponse, type UploadTokenStatusResponse, type UploadWhatsAppProfilePhotoData, type UploadWhatsAppProfilePhotoError, type UploadWhatsAppProfilePhotoResponse, type UploadedFile, type UsageStats, type User, type UserGetResponse, type UsersListResponse, type ValidateMediaData, type ValidateMediaError, type ValidateMediaResponse, type ValidatePostData, type ValidatePostError, type ValidatePostLengthData, type ValidatePostLengthError, type ValidatePostLengthResponse, type ValidatePostResponse, type ValidateSubredditData, type ValidateSubredditError, type ValidateSubredditResponse, ValidationError, type Webhook, type WebhookLog, type WebhookPayloadAccountConnected, type WebhookPayloadAccountDisconnected, type WebhookPayloadComment, 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 event6, type eventType, type gapFreq, type graduationStrategy, type mediaType, type mediaType2, parseApiError, type parseMode, type permission, type platform, type platform2, type platform3, type replySettings, type scope, type status, type status2, type status3, type status4, type status5, type status6, type type, type type2, type type3, type visibility };
|
|
8503
|
+
export { type AccountGetResponse, type AccountWithFollowerStats, type AccountsListResponse, type AddWhatsAppBroadcastRecipientsData, type AddWhatsAppBroadcastRecipientsError, type AddWhatsAppBroadcastRecipientsResponse, type AnalyticsListResponse, type AnalyticsOverview, type AnalyticsSinglePostResponse, type ApiKey, type BlueskyPlatformData, type BookmarkPostData, type BookmarkPostError, type BookmarkPostResponse, type BulkDeleteWhatsAppContactsData, type BulkDeleteWhatsAppContactsError, type BulkDeleteWhatsAppContactsResponse, type BulkUpdateWhatsAppContactsData, type BulkUpdateWhatsAppContactsError, type BulkUpdateWhatsAppContactsResponse, type BulkUploadPostsData, type BulkUploadPostsError, type BulkUploadPostsResponse, type CancelWhatsAppBroadcastScheduleData, type CancelWhatsAppBroadcastScheduleError, type CancelWhatsAppBroadcastScheduleResponse, type CaptionResponse, type CheckInstagramHashtagsData, type CheckInstagramHashtagsError, type CheckInstagramHashtagsResponse, type ClientOptions, type CompleteTelegramConnectData, type CompleteTelegramConnectError, type CompleteTelegramConnectResponse, type ConnectBlueskyCredentialsData, type ConnectBlueskyCredentialsError, type ConnectBlueskyCredentialsResponse, type ConnectWhatsAppCredentialsData, type ConnectWhatsAppCredentialsError, type ConnectWhatsAppCredentialsResponse, 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 CreateWhatsAppBroadcastData, type CreateWhatsAppBroadcastError, type CreateWhatsAppBroadcastResponse, type CreateWhatsAppContactData, type CreateWhatsAppContactError, type CreateWhatsAppContactResponse, type CreateWhatsAppTemplateData, type CreateWhatsAppTemplateError, type CreateWhatsAppTemplateResponse, 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 DeleteWhatsAppBroadcastData, type DeleteWhatsAppBroadcastError, type DeleteWhatsAppBroadcastResponse, type DeleteWhatsAppContactData, type DeleteWhatsAppContactError, type DeleteWhatsAppContactResponse, type DeleteWhatsAppGroupData, type DeleteWhatsAppGroupError, type DeleteWhatsAppGroupResponse, type DeleteWhatsAppTemplateData, type DeleteWhatsAppTemplateError, type DeleteWhatsAppTemplateResponse, 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 FollowUserData, type FollowUserError, type FollowUserResponse, 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 GetBestTimeToPostData, type GetBestTimeToPostError, type GetBestTimeToPostResponse, type GetConnectUrlData, type GetConnectUrlError, type GetConnectUrlResponse, type GetContentDecayData, type GetContentDecayError, type GetContentDecayResponse, type GetDailyMetricsData, type GetDailyMetricsError, type GetDailyMetricsResponse, 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 GetLinkedInPostReactionsData, type GetLinkedInPostReactionsError, type GetLinkedInPostReactionsResponse, 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 GetPostTimelineData, type GetPostTimelineError, type GetPostTimelineResponse, type GetPostingFrequencyData, type GetPostingFrequencyError, type GetPostingFrequencyResponse, 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 GetWhatsAppBroadcastData, type GetWhatsAppBroadcastError, type GetWhatsAppBroadcastRecipientsData, type GetWhatsAppBroadcastRecipientsError, type GetWhatsAppBroadcastRecipientsResponse, type GetWhatsAppBroadcastResponse, type GetWhatsAppBroadcastsData, type GetWhatsAppBroadcastsError, type GetWhatsAppBroadcastsResponse, type GetWhatsAppBusinessProfileData, type GetWhatsAppBusinessProfileError, type GetWhatsAppBusinessProfileResponse, type GetWhatsAppContactData, type GetWhatsAppContactError, type GetWhatsAppContactResponse, type GetWhatsAppContactsData, type GetWhatsAppContactsError, type GetWhatsAppContactsResponse, type GetWhatsAppDisplayNameData, type GetWhatsAppDisplayNameError, type GetWhatsAppDisplayNameResponse, type GetWhatsAppGroupsData, type GetWhatsAppGroupsError, type GetWhatsAppGroupsResponse, type GetWhatsAppPhoneNumberData, type GetWhatsAppPhoneNumberError, type GetWhatsAppPhoneNumberResponse, type GetWhatsAppPhoneNumbersData, type GetWhatsAppPhoneNumbersError, type GetWhatsAppPhoneNumbersResponse, type GetWhatsAppTemplateData, type GetWhatsAppTemplateError, type GetWhatsAppTemplateResponse, type GetWhatsAppTemplatesData, type GetWhatsAppTemplatesError, type GetWhatsAppTemplatesResponse, 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 ImportWhatsAppContactsData, type ImportWhatsAppContactsError, type ImportWhatsAppContactsResponse, 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 PurchaseWhatsAppPhoneNumberData, type PurchaseWhatsAppPhoneNumberError, type PurchaseWhatsAppPhoneNumberResponse, type QueueDeleteResponse, type QueueNextSlotResponse, type QueuePreviewResponse, type QueueSchedule, type QueueSlot, type QueueSlotsResponse, type QueueUpdateResponse, RateLimitError, type RecyclingConfig, type RecyclingState, type RedditPlatformData, type ReleaseWhatsAppPhoneNumberData, type ReleaseWhatsAppPhoneNumberError, type ReleaseWhatsAppPhoneNumberResponse, type RemoveBookmarkData, type RemoveBookmarkError, type RemoveBookmarkResponse, type RemoveWhatsAppBroadcastRecipientsData, type RemoveWhatsAppBroadcastRecipientsError, type RemoveWhatsAppBroadcastRecipientsResponse, type RenameWhatsAppGroupData, type RenameWhatsAppGroupError, type RenameWhatsAppGroupResponse, type ReplyToInboxPostData, type ReplyToInboxPostError, type ReplyToInboxPostResponse, type ReplyToInboxReviewData, type ReplyToInboxReviewError, type ReplyToInboxReviewResponse, type RetryPostData, type RetryPostError, type RetryPostResponse, type RetweetPostData, type RetweetPostError, type RetweetPostResponse, type ScheduleWhatsAppBroadcastData, type ScheduleWhatsAppBroadcastError, type ScheduleWhatsAppBroadcastResponse, 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 SendWhatsAppBroadcastData, type SendWhatsAppBroadcastError, type SendWhatsAppBroadcastResponse, type SendWhatsAppBulkData, type SendWhatsAppBulkError, type SendWhatsAppBulkResponse, 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 UndoRetweetData, type UndoRetweetError, type UndoRetweetResponse, type UnfollowUserData, type UnfollowUserError, type UnfollowUserResponse, 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 UpdateWhatsAppBusinessProfileData, type UpdateWhatsAppBusinessProfileError, type UpdateWhatsAppBusinessProfileResponse, type UpdateWhatsAppContactData, type UpdateWhatsAppContactError, type UpdateWhatsAppContactResponse, type UpdateWhatsAppDisplayNameData, type UpdateWhatsAppDisplayNameError, type UpdateWhatsAppDisplayNameResponse, type UpdateWhatsAppTemplateData, type UpdateWhatsAppTemplateError, type UpdateWhatsAppTemplateResponse, type UploadTokenResponse, type UploadTokenStatusResponse, type UploadWhatsAppProfilePhotoData, type UploadWhatsAppProfilePhotoError, type UploadWhatsAppProfilePhotoResponse, type UploadedFile, type UsageStats, type User, type UserGetResponse, type UsersListResponse, type ValidateMediaData, type ValidateMediaError, type ValidateMediaResponse, type ValidatePostData, type ValidatePostError, type ValidatePostLengthData, type ValidatePostLengthError, type ValidatePostLengthResponse, type ValidatePostResponse, type ValidateSubredditData, type ValidateSubredditError, type ValidateSubredditResponse, ValidationError, type Webhook, type WebhookLog, type WebhookPayloadAccountConnected, type WebhookPayloadAccountDisconnected, type WebhookPayloadComment, 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 event6, type eventType, type gapFreq, type graduationStrategy, type mediaType, type mediaType2, parseApiError, type parseMode, type permission, type platform, type platform2, type platform3, type replySettings, type scope, type status, type status2, type status3, type status4, type status5, type status6, type status7, type status8, type syncStatus, type syncStatus2, type type, type type2, type type3, type visibility };
|