@zernio/node 0.2.32 → 0.2.34
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/README.md +29 -0
- package/dist/index.d.mts +610 -16
- package/dist/index.d.ts +610 -16
- package/dist/index.js +134 -0
- package/dist/index.mjs +134 -0
- package/package.json +1 -1
- package/src/client.ts +52 -0
- package/src/generated/sdk.gen.ts +194 -1
- package/src/generated/types.gen.ts +635 -15
package/dist/index.d.ts
CHANGED
|
@@ -483,6 +483,38 @@ declare class Zernio {
|
|
|
483
483
|
deleteCommentAutomation: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<DeleteCommentAutomationData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<unknown, DeleteCommentAutomationError, ThrowOnError>;
|
|
484
484
|
listCommentAutomationLogs: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<ListCommentAutomationLogsData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<ListCommentAutomationLogsResponse, ListCommentAutomationLogsError, ThrowOnError>;
|
|
485
485
|
};
|
|
486
|
+
/**
|
|
487
|
+
* ads API
|
|
488
|
+
*/
|
|
489
|
+
ads: {
|
|
490
|
+
listAds: <ThrowOnError extends boolean = false>(options?: _hey_api_client_fetch.OptionsLegacyParser<ListAdsData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<ListAdsResponse, unknown, ThrowOnError>;
|
|
491
|
+
getAd: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<GetAdData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<GetAdResponse, GetAdError, ThrowOnError>;
|
|
492
|
+
updateAd: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<UpdateAdData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<UpdateAdResponse, unknown, ThrowOnError>;
|
|
493
|
+
deleteAd: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<DeleteAdData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<DeleteAdResponse, DeleteAdError, ThrowOnError>;
|
|
494
|
+
getAdAnalytics: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<GetAdAnalyticsData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<GetAdAnalyticsResponse, GetAdAnalyticsError, ThrowOnError>;
|
|
495
|
+
listAdAccounts: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<ListAdAccountsData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<ListAdAccountsResponse, ListAdAccountsError, ThrowOnError>;
|
|
496
|
+
boostPost: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<BoostPostData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<BoostPostResponse, unknown, ThrowOnError>;
|
|
497
|
+
createStandaloneAd: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<CreateStandaloneAdData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<CreateStandaloneAdResponse, unknown, ThrowOnError>;
|
|
498
|
+
syncExternalAds: <ThrowOnError extends boolean = false>(options?: _hey_api_client_fetch.OptionsLegacyParser<unknown, ThrowOnError>) => _hey_api_client_fetch.RequestResult<SyncExternalAdsResponse, unknown, ThrowOnError>;
|
|
499
|
+
searchAdInterests: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<SearchAdInterestsData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<SearchAdInterestsResponse, SearchAdInterestsError, ThrowOnError>;
|
|
500
|
+
};
|
|
501
|
+
/**
|
|
502
|
+
* adcampaigns API
|
|
503
|
+
*/
|
|
504
|
+
adcampaigns: {
|
|
505
|
+
listAdCampaigns: <ThrowOnError extends boolean = false>(options?: _hey_api_client_fetch.OptionsLegacyParser<ListAdCampaignsData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<ListAdCampaignsResponse, unknown, ThrowOnError>;
|
|
506
|
+
updateAdCampaignStatus: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<UpdateAdCampaignStatusData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<UpdateAdCampaignStatusResponse, unknown, ThrowOnError>;
|
|
507
|
+
};
|
|
508
|
+
/**
|
|
509
|
+
* adaudiences API
|
|
510
|
+
*/
|
|
511
|
+
adaudiences: {
|
|
512
|
+
listAdAudiences: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<ListAdAudiencesData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<ListAdAudiencesResponse, ListAdAudiencesError, ThrowOnError>;
|
|
513
|
+
createAdAudience: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<CreateAdAudienceData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<CreateAdAudienceResponse, unknown, ThrowOnError>;
|
|
514
|
+
getAdAudience: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<GetAdAudienceData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<GetAdAudienceResponse, GetAdAudienceError, ThrowOnError>;
|
|
515
|
+
deleteAdAudience: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<DeleteAdAudienceData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<DeleteAdAudienceResponse, DeleteAdAudienceError, ThrowOnError>;
|
|
516
|
+
addUsersToAdAudience: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<AddUsersToAdAudienceData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<AddUsersToAdAudienceResponse, unknown, ThrowOnError>;
|
|
517
|
+
};
|
|
486
518
|
/**
|
|
487
519
|
* Create a new Zernio API client.
|
|
488
520
|
*
|
|
@@ -639,6 +671,90 @@ type AccountWithFollowerStats = SocialAccount & {
|
|
|
639
671
|
boardCount?: number;
|
|
640
672
|
};
|
|
641
673
|
};
|
|
674
|
+
type Ad = {
|
|
675
|
+
_id?: string;
|
|
676
|
+
name?: string;
|
|
677
|
+
platform?: 'facebook' | 'instagram' | 'tiktok' | 'linkedin' | 'pinterest' | 'google' | 'twitter';
|
|
678
|
+
status?: 'active' | 'paused' | 'pending_review' | 'rejected' | 'completed' | 'cancelled' | 'error';
|
|
679
|
+
adType?: 'boost' | 'standalone';
|
|
680
|
+
goal?: 'engagement' | 'traffic' | 'awareness' | 'video_views';
|
|
681
|
+
/**
|
|
682
|
+
* True for ads synced from platform ad managers
|
|
683
|
+
*/
|
|
684
|
+
isExternal?: boolean;
|
|
685
|
+
budget?: {
|
|
686
|
+
amount?: number;
|
|
687
|
+
type?: 'daily' | 'lifetime';
|
|
688
|
+
} | null;
|
|
689
|
+
metrics?: ((AdMetrics) | null);
|
|
690
|
+
platformAdId?: string;
|
|
691
|
+
platformAdAccountId?: string;
|
|
692
|
+
platformCampaignId?: string;
|
|
693
|
+
platformAdSetId?: string;
|
|
694
|
+
campaignName?: string;
|
|
695
|
+
adSetName?: string;
|
|
696
|
+
/**
|
|
697
|
+
* Platform-specific creative data
|
|
698
|
+
*/
|
|
699
|
+
creative?: {
|
|
700
|
+
[key: string]: unknown;
|
|
701
|
+
};
|
|
702
|
+
targeting?: {
|
|
703
|
+
[key: string]: unknown;
|
|
704
|
+
};
|
|
705
|
+
schedule?: {
|
|
706
|
+
startDate?: string;
|
|
707
|
+
endDate?: string;
|
|
708
|
+
} | null;
|
|
709
|
+
rejectionReason?: string;
|
|
710
|
+
createdAt?: string;
|
|
711
|
+
updatedAt?: string;
|
|
712
|
+
};
|
|
713
|
+
type platform = 'facebook' | 'instagram' | 'tiktok' | 'linkedin' | 'pinterest' | 'google' | 'twitter';
|
|
714
|
+
type status = 'active' | 'paused' | 'pending_review' | 'rejected' | 'completed' | 'cancelled' | 'error';
|
|
715
|
+
type adType = 'boost' | 'standalone';
|
|
716
|
+
type goal = 'engagement' | 'traffic' | 'awareness' | 'video_views';
|
|
717
|
+
type type = 'daily' | 'lifetime';
|
|
718
|
+
type AdCampaign = {
|
|
719
|
+
platformCampaignId?: string;
|
|
720
|
+
platform?: 'facebook' | 'instagram' | 'tiktok' | 'linkedin' | 'pinterest' | 'google' | 'twitter';
|
|
721
|
+
campaignName?: string;
|
|
722
|
+
/**
|
|
723
|
+
* Derived from child ad statuses
|
|
724
|
+
*/
|
|
725
|
+
status?: 'active' | 'paused' | 'pending_review' | 'rejected' | 'completed' | 'cancelled' | 'error';
|
|
726
|
+
adCount?: number;
|
|
727
|
+
budget?: {
|
|
728
|
+
amount?: number;
|
|
729
|
+
type?: 'daily' | 'lifetime';
|
|
730
|
+
} | null;
|
|
731
|
+
metrics?: AdMetrics;
|
|
732
|
+
platformAdAccountId?: string;
|
|
733
|
+
accountId?: string;
|
|
734
|
+
profileId?: string;
|
|
735
|
+
earliestAd?: string;
|
|
736
|
+
latestAd?: string;
|
|
737
|
+
};
|
|
738
|
+
type AdMetrics = {
|
|
739
|
+
spend?: number;
|
|
740
|
+
impressions?: number;
|
|
741
|
+
reach?: number;
|
|
742
|
+
clicks?: number;
|
|
743
|
+
/**
|
|
744
|
+
* Click-through rate (%)
|
|
745
|
+
*/
|
|
746
|
+
ctr?: number;
|
|
747
|
+
/**
|
|
748
|
+
* Cost per click
|
|
749
|
+
*/
|
|
750
|
+
cpc?: number;
|
|
751
|
+
/**
|
|
752
|
+
* Cost per 1000 impressions
|
|
753
|
+
*/
|
|
754
|
+
cpm?: number;
|
|
755
|
+
engagement?: number;
|
|
756
|
+
lastSyncedAt?: string;
|
|
757
|
+
};
|
|
642
758
|
type AnalyticsListResponse = {
|
|
643
759
|
overview?: AnalyticsOverview;
|
|
644
760
|
posts?: Array<{
|
|
@@ -746,7 +862,7 @@ type AnalyticsSinglePostResponse = {
|
|
|
746
862
|
/**
|
|
747
863
|
* Overall post status. "partial" when some platforms published and others failed.
|
|
748
864
|
*/
|
|
749
|
-
type
|
|
865
|
+
type status2 = 'published' | 'failed' | 'partial';
|
|
750
866
|
/**
|
|
751
867
|
* Overall sync state across all platforms
|
|
752
868
|
*/
|
|
@@ -886,7 +1002,7 @@ type ConnectionLog = {
|
|
|
886
1002
|
};
|
|
887
1003
|
createdAt?: string;
|
|
888
1004
|
};
|
|
889
|
-
type
|
|
1005
|
+
type platform2 = 'tiktok' | 'instagram' | 'facebook' | 'youtube' | 'linkedin' | 'twitter' | 'threads' | 'pinterest' | 'reddit' | 'bluesky' | 'googlebusiness' | 'telegram' | 'snapchat';
|
|
890
1006
|
/**
|
|
891
1007
|
* Type of connection event: connect_success, connect_failed, disconnect, reconnect_success, reconnect_failed
|
|
892
1008
|
*/
|
|
@@ -1046,7 +1162,7 @@ type GoogleBusinessPlatformData = {
|
|
|
1046
1162
|
/**
|
|
1047
1163
|
* Button action type: LEARN_MORE, BOOK, ORDER, SHOP, SIGN_UP, CALL
|
|
1048
1164
|
*/
|
|
1049
|
-
type
|
|
1165
|
+
type type2 = 'LEARN_MORE' | 'BOOK' | 'ORDER' | 'SHOP' | 'SIGN_UP' | 'CALL';
|
|
1050
1166
|
type HashtagCheckResponse = {
|
|
1051
1167
|
hashtags?: Array<HashtagInfo>;
|
|
1052
1168
|
};
|
|
@@ -1055,7 +1171,7 @@ type HashtagInfo = {
|
|
|
1055
1171
|
status?: 'safe' | 'banned' | 'restricted' | 'unknown';
|
|
1056
1172
|
postCount?: number;
|
|
1057
1173
|
};
|
|
1058
|
-
type
|
|
1174
|
+
type status3 = 'safe' | 'banned' | 'restricted' | 'unknown';
|
|
1059
1175
|
type InstagramAccountInsightsResponse = {
|
|
1060
1176
|
success?: boolean;
|
|
1061
1177
|
/**
|
|
@@ -1349,7 +1465,7 @@ type MediaItem = {
|
|
|
1349
1465
|
*/
|
|
1350
1466
|
tiktokProcessed?: boolean;
|
|
1351
1467
|
};
|
|
1352
|
-
type
|
|
1468
|
+
type type3 = 'image' | 'video' | 'gif' | 'document';
|
|
1353
1469
|
type MediaUploadResponse = {
|
|
1354
1470
|
files?: Array<UploadedFile>;
|
|
1355
1471
|
};
|
|
@@ -1419,7 +1535,7 @@ type PlatformAnalytics = {
|
|
|
1419
1535
|
*/
|
|
1420
1536
|
errorMessage?: (string) | null;
|
|
1421
1537
|
};
|
|
1422
|
-
type
|
|
1538
|
+
type status4 = 'published' | 'failed';
|
|
1423
1539
|
/**
|
|
1424
1540
|
* Sync state of analytics for this platform
|
|
1425
1541
|
*/
|
|
@@ -1523,7 +1639,7 @@ type Post = {
|
|
|
1523
1639
|
createdAt?: string;
|
|
1524
1640
|
updatedAt?: string;
|
|
1525
1641
|
};
|
|
1526
|
-
type
|
|
1642
|
+
type status5 = 'draft' | 'scheduled' | 'publishing' | 'published' | 'failed' | 'partial';
|
|
1527
1643
|
type visibility = 'public' | 'private' | 'unlisted';
|
|
1528
1644
|
type PostAnalytics = {
|
|
1529
1645
|
impressions?: number;
|
|
@@ -1631,7 +1747,7 @@ type PostLog = {
|
|
|
1631
1747
|
* Type of action logged: publish (initial attempt), retry (after failure), media_upload, rate_limit_pause, token_refresh, cancelled
|
|
1632
1748
|
*/
|
|
1633
1749
|
type action = 'publish' | 'retry' | 'media_upload' | 'rate_limit_pause' | 'token_refresh' | 'cancelled';
|
|
1634
|
-
type
|
|
1750
|
+
type status6 = 'success' | 'failed' | 'pending' | 'skipped';
|
|
1635
1751
|
type PostRetryResponse = {
|
|
1636
1752
|
message?: string;
|
|
1637
1753
|
post?: Post;
|
|
@@ -2072,14 +2188,14 @@ type UploadedFile = {
|
|
|
2072
2188
|
size?: number;
|
|
2073
2189
|
mimeType?: string;
|
|
2074
2190
|
};
|
|
2075
|
-
type
|
|
2191
|
+
type type4 = 'image' | 'video' | 'document';
|
|
2076
2192
|
type UploadTokenResponse = {
|
|
2077
2193
|
token?: string;
|
|
2078
2194
|
uploadUrl?: string;
|
|
2079
2195
|
expiresAt?: string;
|
|
2080
2196
|
status?: 'pending' | 'completed' | 'expired';
|
|
2081
2197
|
};
|
|
2082
|
-
type
|
|
2198
|
+
type status7 = 'pending' | 'completed' | 'expired';
|
|
2083
2199
|
type UploadTokenStatusResponse = {
|
|
2084
2200
|
token?: string;
|
|
2085
2201
|
status?: 'pending' | 'completed' | 'expired';
|
|
@@ -2208,7 +2324,7 @@ type WebhookLog = {
|
|
|
2208
2324
|
createdAt?: string;
|
|
2209
2325
|
};
|
|
2210
2326
|
type event = 'post.scheduled' | 'post.published' | 'post.failed' | 'post.partial' | 'post.cancelled' | 'post.recycled' | 'account.connected' | 'account.disconnected' | 'message.received' | 'comment.received' | 'webhook.test';
|
|
2211
|
-
type
|
|
2327
|
+
type status8 = 'success' | 'failed';
|
|
2212
2328
|
/**
|
|
2213
2329
|
* Webhook payload for account connected events
|
|
2214
2330
|
*/
|
|
@@ -2338,7 +2454,7 @@ type WebhookPayloadComment = {
|
|
|
2338
2454
|
timestamp: string;
|
|
2339
2455
|
};
|
|
2340
2456
|
type event4 = 'comment.received';
|
|
2341
|
-
type
|
|
2457
|
+
type platform3 = 'instagram' | 'facebook' | 'twitter' | 'youtube' | 'linkedin' | 'bluesky' | 'reddit';
|
|
2342
2458
|
/**
|
|
2343
2459
|
* Webhook payload for message received events
|
|
2344
2460
|
*/
|
|
@@ -2455,9 +2571,9 @@ type WebhookPayloadMessage = {
|
|
|
2455
2571
|
timestamp: string;
|
|
2456
2572
|
};
|
|
2457
2573
|
type event5 = 'message.received';
|
|
2458
|
-
type
|
|
2574
|
+
type platform4 = 'instagram' | 'facebook' | 'telegram' | 'whatsapp';
|
|
2459
2575
|
type direction = 'incoming' | 'outgoing';
|
|
2460
|
-
type
|
|
2576
|
+
type status9 = 'active' | 'archived';
|
|
2461
2577
|
/**
|
|
2462
2578
|
* Webhook payload for post events
|
|
2463
2579
|
*/
|
|
@@ -2581,7 +2697,7 @@ type WhatsAppTemplateButton = {
|
|
|
2581
2697
|
flow_action?: string;
|
|
2582
2698
|
navigate_screen?: string;
|
|
2583
2699
|
};
|
|
2584
|
-
type
|
|
2700
|
+
type type5 = 'quick_reply' | 'url' | 'phone_number' | 'otp' | 'flow' | 'mpm' | 'catalog';
|
|
2585
2701
|
/**
|
|
2586
2702
|
* Required when type is otp
|
|
2587
2703
|
*/
|
|
@@ -3824,6 +3940,18 @@ type UpdatePostMetadataData = {
|
|
|
3824
3940
|
* Public URL of a custom thumbnail image (JPEG, PNG, or GIF, max 2 MB, recommended 1280x720). Works on any video you own, including existing videos not published through Zernio. The channel must be verified (phone verification) to set custom thumbnails.
|
|
3825
3941
|
*/
|
|
3826
3942
|
thumbnailUrl?: string;
|
|
3943
|
+
/**
|
|
3944
|
+
* COPPA compliance flag. Set true for child-directed content (restricts comments, notifications, ad targeting).
|
|
3945
|
+
*/
|
|
3946
|
+
madeForKids?: boolean;
|
|
3947
|
+
/**
|
|
3948
|
+
* AI-generated content disclosure. Set true if the video contains synthetic content that could be mistaken for real. YouTube may add a label.
|
|
3949
|
+
*/
|
|
3950
|
+
containsSyntheticMedia?: boolean;
|
|
3951
|
+
/**
|
|
3952
|
+
* YouTube playlist ID to add the video to (e.g. 'PLxxxxxxxxxxxxx'). Use GET /v1/accounts/{id}/youtube-playlists to list available playlists. Only playlists owned by the channel are supported.
|
|
3953
|
+
*/
|
|
3954
|
+
playlistId?: string;
|
|
3827
3955
|
};
|
|
3828
3956
|
path: {
|
|
3829
3957
|
/**
|
|
@@ -10665,5 +10793,471 @@ type ListCommentAutomationLogsResponse = ({
|
|
|
10665
10793
|
type ListCommentAutomationLogsError = ({
|
|
10666
10794
|
error?: string;
|
|
10667
10795
|
});
|
|
10796
|
+
type ListAdsData = {
|
|
10797
|
+
query?: {
|
|
10798
|
+
/**
|
|
10799
|
+
* Social account ID
|
|
10800
|
+
*/
|
|
10801
|
+
accountId?: string;
|
|
10802
|
+
/**
|
|
10803
|
+
* Platform campaign ID (filter ads within a campaign)
|
|
10804
|
+
*/
|
|
10805
|
+
campaignId?: string;
|
|
10806
|
+
limit?: number;
|
|
10807
|
+
/**
|
|
10808
|
+
* Page number (1-based)
|
|
10809
|
+
*/
|
|
10810
|
+
page?: number;
|
|
10811
|
+
platform?: 'facebook' | 'instagram' | 'tiktok' | 'linkedin' | 'pinterest' | 'google' | 'twitter';
|
|
10812
|
+
/**
|
|
10813
|
+
* Profile ID
|
|
10814
|
+
*/
|
|
10815
|
+
profileId?: string;
|
|
10816
|
+
/**
|
|
10817
|
+
* zernio = Zernio-created only, all = include external ads
|
|
10818
|
+
*/
|
|
10819
|
+
source?: 'zernio' | 'all';
|
|
10820
|
+
status?: 'active' | 'paused' | 'pending_review' | 'rejected' | 'completed' | 'cancelled' | 'error';
|
|
10821
|
+
};
|
|
10822
|
+
};
|
|
10823
|
+
type ListAdsResponse = ({
|
|
10824
|
+
ads?: Array<Ad>;
|
|
10825
|
+
pagination?: Pagination;
|
|
10826
|
+
});
|
|
10827
|
+
type ListAdsError = ({
|
|
10828
|
+
error?: string;
|
|
10829
|
+
} | unknown);
|
|
10830
|
+
type ListAdCampaignsData = {
|
|
10831
|
+
query?: {
|
|
10832
|
+
/**
|
|
10833
|
+
* Social account ID
|
|
10834
|
+
*/
|
|
10835
|
+
accountId?: string;
|
|
10836
|
+
/**
|
|
10837
|
+
* Platform ad account ID (e.g. act_123 for Meta)
|
|
10838
|
+
*/
|
|
10839
|
+
adAccountId?: string;
|
|
10840
|
+
limit?: number;
|
|
10841
|
+
/**
|
|
10842
|
+
* Page number (1-based)
|
|
10843
|
+
*/
|
|
10844
|
+
page?: number;
|
|
10845
|
+
platform?: 'facebook' | 'instagram' | 'tiktok' | 'linkedin' | 'pinterest' | 'google' | 'twitter';
|
|
10846
|
+
/**
|
|
10847
|
+
* Profile ID
|
|
10848
|
+
*/
|
|
10849
|
+
profileId?: string;
|
|
10850
|
+
source?: 'zernio' | 'all';
|
|
10851
|
+
/**
|
|
10852
|
+
* Filter by derived campaign status (post-aggregation)
|
|
10853
|
+
*/
|
|
10854
|
+
status?: 'active' | 'paused' | 'pending_review' | 'rejected' | 'completed' | 'cancelled' | 'error';
|
|
10855
|
+
};
|
|
10856
|
+
};
|
|
10857
|
+
type ListAdCampaignsResponse = ({
|
|
10858
|
+
campaigns?: Array<AdCampaign>;
|
|
10859
|
+
pagination?: Pagination;
|
|
10860
|
+
});
|
|
10861
|
+
type ListAdCampaignsError = ({
|
|
10862
|
+
error?: string;
|
|
10863
|
+
} | unknown);
|
|
10864
|
+
type UpdateAdCampaignStatusData = {
|
|
10865
|
+
body: {
|
|
10866
|
+
status: 'active' | 'paused';
|
|
10867
|
+
platform: 'facebook' | 'instagram' | 'tiktok' | 'linkedin' | 'pinterest' | 'google' | 'twitter';
|
|
10868
|
+
};
|
|
10869
|
+
path: {
|
|
10870
|
+
/**
|
|
10871
|
+
* Platform campaign ID
|
|
10872
|
+
*/
|
|
10873
|
+
campaignId: string;
|
|
10874
|
+
};
|
|
10875
|
+
};
|
|
10876
|
+
type UpdateAdCampaignStatusResponse = ({
|
|
10877
|
+
/**
|
|
10878
|
+
* Number of ads updated
|
|
10879
|
+
*/
|
|
10880
|
+
updated?: number;
|
|
10881
|
+
/**
|
|
10882
|
+
* Number of ads skipped
|
|
10883
|
+
*/
|
|
10884
|
+
skipped?: number;
|
|
10885
|
+
skippedReasons?: Array<(string)>;
|
|
10886
|
+
});
|
|
10887
|
+
type UpdateAdCampaignStatusError = (unknown | {
|
|
10888
|
+
error?: string;
|
|
10889
|
+
});
|
|
10890
|
+
type GetAdData = {
|
|
10891
|
+
path: {
|
|
10892
|
+
adId: string;
|
|
10893
|
+
};
|
|
10894
|
+
};
|
|
10895
|
+
type GetAdResponse = ({
|
|
10896
|
+
ad?: Ad;
|
|
10897
|
+
});
|
|
10898
|
+
type GetAdError = ({
|
|
10899
|
+
error?: string;
|
|
10900
|
+
});
|
|
10901
|
+
type UpdateAdData = {
|
|
10902
|
+
body: {
|
|
10903
|
+
status?: 'active' | 'paused';
|
|
10904
|
+
budget?: {
|
|
10905
|
+
/**
|
|
10906
|
+
* Minimum varies by platform: TikTok=$20, Pinterest=$5, others=$1
|
|
10907
|
+
*/
|
|
10908
|
+
amount?: number;
|
|
10909
|
+
type?: 'daily' | 'lifetime';
|
|
10910
|
+
};
|
|
10911
|
+
/**
|
|
10912
|
+
* Meta-only. Targeting updates for other platforms are not supported after creation.
|
|
10913
|
+
*/
|
|
10914
|
+
targeting?: {
|
|
10915
|
+
ageMin?: number;
|
|
10916
|
+
ageMax?: number;
|
|
10917
|
+
countries?: Array<(string)>;
|
|
10918
|
+
interests?: Array<(string)>;
|
|
10919
|
+
};
|
|
10920
|
+
name?: string;
|
|
10921
|
+
};
|
|
10922
|
+
path: {
|
|
10923
|
+
adId: string;
|
|
10924
|
+
};
|
|
10925
|
+
};
|
|
10926
|
+
type UpdateAdResponse = ({
|
|
10927
|
+
ad?: Ad;
|
|
10928
|
+
message?: string;
|
|
10929
|
+
});
|
|
10930
|
+
type UpdateAdError = (unknown | {
|
|
10931
|
+
error?: string;
|
|
10932
|
+
});
|
|
10933
|
+
type DeleteAdData = {
|
|
10934
|
+
path: {
|
|
10935
|
+
adId: string;
|
|
10936
|
+
};
|
|
10937
|
+
};
|
|
10938
|
+
type DeleteAdResponse = ({
|
|
10939
|
+
message?: string;
|
|
10940
|
+
});
|
|
10941
|
+
type DeleteAdError = ({
|
|
10942
|
+
error?: string;
|
|
10943
|
+
});
|
|
10944
|
+
type GetAdAnalyticsData = {
|
|
10945
|
+
path: {
|
|
10946
|
+
adId: string;
|
|
10947
|
+
};
|
|
10948
|
+
query?: {
|
|
10949
|
+
/**
|
|
10950
|
+
* Comma-separated breakdown dimensions. Meta: age, gender, country, publisher_platform, device_platform, region. TikTok: gender, age, country_code, platform, ac, language.
|
|
10951
|
+
*/
|
|
10952
|
+
breakdowns?: string;
|
|
10953
|
+
};
|
|
10954
|
+
};
|
|
10955
|
+
type GetAdAnalyticsResponse = ({
|
|
10956
|
+
ad?: {
|
|
10957
|
+
id?: string;
|
|
10958
|
+
name?: string;
|
|
10959
|
+
platform?: string;
|
|
10960
|
+
status?: string;
|
|
10961
|
+
};
|
|
10962
|
+
analytics?: {
|
|
10963
|
+
summary?: AdMetrics;
|
|
10964
|
+
daily?: Array<(AdMetrics & {
|
|
10965
|
+
date?: string;
|
|
10966
|
+
})>;
|
|
10967
|
+
breakdowns?: {
|
|
10968
|
+
[key: string]: Array<{
|
|
10969
|
+
[key: string]: unknown;
|
|
10970
|
+
}>;
|
|
10971
|
+
};
|
|
10972
|
+
};
|
|
10973
|
+
});
|
|
10974
|
+
type GetAdAnalyticsError = ({
|
|
10975
|
+
error?: string;
|
|
10976
|
+
});
|
|
10977
|
+
type ListAdAccountsData = {
|
|
10978
|
+
query: {
|
|
10979
|
+
/**
|
|
10980
|
+
* Social account ID
|
|
10981
|
+
*/
|
|
10982
|
+
accountId: string;
|
|
10983
|
+
};
|
|
10984
|
+
};
|
|
10985
|
+
type ListAdAccountsResponse = ({
|
|
10986
|
+
accounts?: Array<{
|
|
10987
|
+
/**
|
|
10988
|
+
* Platform ad account ID (e.g. act_123)
|
|
10989
|
+
*/
|
|
10990
|
+
id?: string;
|
|
10991
|
+
name?: string;
|
|
10992
|
+
currency?: string;
|
|
10993
|
+
status?: string;
|
|
10994
|
+
}>;
|
|
10995
|
+
});
|
|
10996
|
+
type ListAdAccountsError = ({
|
|
10997
|
+
error?: string;
|
|
10998
|
+
});
|
|
10999
|
+
type BoostPostData = {
|
|
11000
|
+
body: {
|
|
11001
|
+
/**
|
|
11002
|
+
* Zernio post ID (provide this or platformPostId)
|
|
11003
|
+
*/
|
|
11004
|
+
postId?: string;
|
|
11005
|
+
/**
|
|
11006
|
+
* Platform post ID (alternative to postId)
|
|
11007
|
+
*/
|
|
11008
|
+
platformPostId?: string;
|
|
11009
|
+
/**
|
|
11010
|
+
* Social account ID
|
|
11011
|
+
*/
|
|
11012
|
+
accountId: string;
|
|
11013
|
+
/**
|
|
11014
|
+
* Platform ad account ID
|
|
11015
|
+
*/
|
|
11016
|
+
adAccountId: string;
|
|
11017
|
+
name: string;
|
|
11018
|
+
goal: 'engagement' | 'traffic' | 'awareness' | 'video_views';
|
|
11019
|
+
budget: {
|
|
11020
|
+
/**
|
|
11021
|
+
* Minimum varies: TikTok=$20, Pinterest=$5, others=$1
|
|
11022
|
+
*/
|
|
11023
|
+
amount: number;
|
|
11024
|
+
type: 'daily' | 'lifetime';
|
|
11025
|
+
};
|
|
11026
|
+
currency?: string;
|
|
11027
|
+
schedule?: {
|
|
11028
|
+
startDate?: string;
|
|
11029
|
+
/**
|
|
11030
|
+
* Required for lifetime budgets
|
|
11031
|
+
*/
|
|
11032
|
+
endDate?: string;
|
|
11033
|
+
};
|
|
11034
|
+
targeting?: {
|
|
11035
|
+
ageMin?: number;
|
|
11036
|
+
ageMax?: number;
|
|
11037
|
+
countries?: Array<(string)>;
|
|
11038
|
+
interests?: Array<(string)>;
|
|
11039
|
+
};
|
|
11040
|
+
};
|
|
11041
|
+
};
|
|
11042
|
+
type BoostPostResponse = ({
|
|
11043
|
+
ad?: Ad;
|
|
11044
|
+
message?: string;
|
|
11045
|
+
});
|
|
11046
|
+
type BoostPostError = (unknown | {
|
|
11047
|
+
error?: string;
|
|
11048
|
+
});
|
|
11049
|
+
type CreateStandaloneAdData = {
|
|
11050
|
+
body: {
|
|
11051
|
+
accountId: string;
|
|
11052
|
+
adAccountId: string;
|
|
11053
|
+
name: string;
|
|
11054
|
+
goal: 'engagement' | 'traffic' | 'awareness' | 'video_views';
|
|
11055
|
+
budgetAmount: number;
|
|
11056
|
+
budgetType: 'daily' | 'lifetime';
|
|
11057
|
+
currency?: string;
|
|
11058
|
+
/**
|
|
11059
|
+
* Required for most platforms. Max: Meta=255, Google=30, Pinterest=100
|
|
11060
|
+
*/
|
|
11061
|
+
headline?: string;
|
|
11062
|
+
/**
|
|
11063
|
+
* Max: Google=90, Pinterest=500
|
|
11064
|
+
*/
|
|
11065
|
+
body: string;
|
|
11066
|
+
/**
|
|
11067
|
+
* Meta only
|
|
11068
|
+
*/
|
|
11069
|
+
callToAction?: 'LEARN_MORE' | 'SHOP_NOW' | 'SIGN_UP' | 'BOOK_TRAVEL' | 'CONTACT_US' | 'DOWNLOAD' | 'GET_OFFER' | 'GET_QUOTE' | 'SUBSCRIBE' | 'WATCH_MORE';
|
|
11070
|
+
linkUrl?: string;
|
|
11071
|
+
/**
|
|
11072
|
+
* Image URL (or video URL for TikTok)
|
|
11073
|
+
*/
|
|
11074
|
+
imageUrl: string;
|
|
11075
|
+
countries?: Array<(string)>;
|
|
11076
|
+
ageMin?: number;
|
|
11077
|
+
ageMax?: number;
|
|
11078
|
+
interests?: Array<(string)>;
|
|
11079
|
+
/**
|
|
11080
|
+
* Required for lifetime budgets
|
|
11081
|
+
*/
|
|
11082
|
+
endDate?: string;
|
|
11083
|
+
/**
|
|
11084
|
+
* Custom audience ID for targeting
|
|
11085
|
+
*/
|
|
11086
|
+
audienceId?: string;
|
|
11087
|
+
/**
|
|
11088
|
+
* Google only
|
|
11089
|
+
*/
|
|
11090
|
+
campaignType?: 'display' | 'search';
|
|
11091
|
+
/**
|
|
11092
|
+
* Google Search only
|
|
11093
|
+
*/
|
|
11094
|
+
keywords?: Array<(string)>;
|
|
11095
|
+
};
|
|
11096
|
+
};
|
|
11097
|
+
type CreateStandaloneAdResponse = ({
|
|
11098
|
+
ad?: Ad;
|
|
11099
|
+
message?: string;
|
|
11100
|
+
});
|
|
11101
|
+
type CreateStandaloneAdError = (unknown | {
|
|
11102
|
+
error?: string;
|
|
11103
|
+
});
|
|
11104
|
+
type SyncExternalAdsResponse = ({
|
|
11105
|
+
success?: boolean;
|
|
11106
|
+
/**
|
|
11107
|
+
* New ads imported
|
|
11108
|
+
*/
|
|
11109
|
+
synced?: number;
|
|
11110
|
+
/**
|
|
11111
|
+
* Already-synced ads updated
|
|
11112
|
+
*/
|
|
11113
|
+
skipped?: number;
|
|
11114
|
+
/**
|
|
11115
|
+
* Failed ad imports
|
|
11116
|
+
*/
|
|
11117
|
+
errors?: number;
|
|
11118
|
+
});
|
|
11119
|
+
type SyncExternalAdsError = ({
|
|
11120
|
+
error?: string;
|
|
11121
|
+
} | unknown);
|
|
11122
|
+
type SearchAdInterestsData = {
|
|
11123
|
+
query: {
|
|
11124
|
+
/**
|
|
11125
|
+
* Social account ID
|
|
11126
|
+
*/
|
|
11127
|
+
accountId: string;
|
|
11128
|
+
/**
|
|
11129
|
+
* Search query
|
|
11130
|
+
*/
|
|
11131
|
+
q: string;
|
|
11132
|
+
};
|
|
11133
|
+
};
|
|
11134
|
+
type SearchAdInterestsResponse = ({
|
|
11135
|
+
interests?: Array<{
|
|
11136
|
+
id?: string;
|
|
11137
|
+
name?: string;
|
|
11138
|
+
category?: string;
|
|
11139
|
+
}>;
|
|
11140
|
+
});
|
|
11141
|
+
type SearchAdInterestsError = ({
|
|
11142
|
+
error?: string;
|
|
11143
|
+
});
|
|
11144
|
+
type ListAdAudiencesData = {
|
|
11145
|
+
query: {
|
|
11146
|
+
/**
|
|
11147
|
+
* Social account ID
|
|
11148
|
+
*/
|
|
11149
|
+
accountId: string;
|
|
11150
|
+
/**
|
|
11151
|
+
* Platform ad account ID
|
|
11152
|
+
*/
|
|
11153
|
+
adAccountId: string;
|
|
11154
|
+
platform?: 'facebook' | 'instagram' | 'googleads' | 'tiktok' | 'pinterest';
|
|
11155
|
+
};
|
|
11156
|
+
};
|
|
11157
|
+
type ListAdAudiencesResponse = ({
|
|
11158
|
+
audiences?: Array<{
|
|
11159
|
+
id?: (string) | null;
|
|
11160
|
+
platformAudienceId?: string;
|
|
11161
|
+
name?: string;
|
|
11162
|
+
description?: string;
|
|
11163
|
+
type?: 'customer_list' | 'website' | 'lookalike';
|
|
11164
|
+
platform?: string;
|
|
11165
|
+
size?: number;
|
|
11166
|
+
status?: string;
|
|
11167
|
+
}>;
|
|
11168
|
+
});
|
|
11169
|
+
type ListAdAudiencesError = ({
|
|
11170
|
+
error?: string;
|
|
11171
|
+
});
|
|
11172
|
+
type CreateAdAudienceData = {
|
|
11173
|
+
body: {
|
|
11174
|
+
accountId: string;
|
|
11175
|
+
/**
|
|
11176
|
+
* Must start with act_
|
|
11177
|
+
*/
|
|
11178
|
+
adAccountId: string;
|
|
11179
|
+
name: string;
|
|
11180
|
+
description?: string;
|
|
11181
|
+
type: 'customer_list' | 'website' | 'lookalike';
|
|
11182
|
+
/**
|
|
11183
|
+
* Required for website audiences
|
|
11184
|
+
*/
|
|
11185
|
+
pixelId?: string;
|
|
11186
|
+
/**
|
|
11187
|
+
* Required for website audiences
|
|
11188
|
+
*/
|
|
11189
|
+
retentionDays?: number;
|
|
11190
|
+
/**
|
|
11191
|
+
* Required for lookalike audiences
|
|
11192
|
+
*/
|
|
11193
|
+
sourceAudienceId?: string;
|
|
11194
|
+
/**
|
|
11195
|
+
* 2-letter code, required for lookalike audiences
|
|
11196
|
+
*/
|
|
11197
|
+
country?: string;
|
|
11198
|
+
/**
|
|
11199
|
+
* Required for lookalike audiences
|
|
11200
|
+
*/
|
|
11201
|
+
ratio?: number;
|
|
11202
|
+
};
|
|
11203
|
+
};
|
|
11204
|
+
type CreateAdAudienceResponse = ({
|
|
11205
|
+
audience?: {
|
|
11206
|
+
[key: string]: unknown;
|
|
11207
|
+
};
|
|
11208
|
+
message?: string;
|
|
11209
|
+
});
|
|
11210
|
+
type CreateAdAudienceError = (unknown | {
|
|
11211
|
+
error?: string;
|
|
11212
|
+
});
|
|
11213
|
+
type GetAdAudienceData = {
|
|
11214
|
+
path: {
|
|
11215
|
+
audienceId: string;
|
|
11216
|
+
};
|
|
11217
|
+
};
|
|
11218
|
+
type GetAdAudienceResponse = ({
|
|
11219
|
+
audience?: {
|
|
11220
|
+
[key: string]: unknown;
|
|
11221
|
+
};
|
|
11222
|
+
/**
|
|
11223
|
+
* Fresh data from Meta API
|
|
11224
|
+
*/
|
|
11225
|
+
metaData?: {
|
|
11226
|
+
[key: string]: unknown;
|
|
11227
|
+
} | null;
|
|
11228
|
+
});
|
|
11229
|
+
type GetAdAudienceError = ({
|
|
11230
|
+
error?: string;
|
|
11231
|
+
});
|
|
11232
|
+
type DeleteAdAudienceData = {
|
|
11233
|
+
path: {
|
|
11234
|
+
audienceId: string;
|
|
11235
|
+
};
|
|
11236
|
+
};
|
|
11237
|
+
type DeleteAdAudienceResponse = ({
|
|
11238
|
+
message?: string;
|
|
11239
|
+
});
|
|
11240
|
+
type DeleteAdAudienceError = ({
|
|
11241
|
+
error?: string;
|
|
11242
|
+
});
|
|
11243
|
+
type AddUsersToAdAudienceData = {
|
|
11244
|
+
body: {
|
|
11245
|
+
users: Array<{
|
|
11246
|
+
email?: string;
|
|
11247
|
+
phone?: string;
|
|
11248
|
+
}>;
|
|
11249
|
+
};
|
|
11250
|
+
path: {
|
|
11251
|
+
audienceId: string;
|
|
11252
|
+
};
|
|
11253
|
+
};
|
|
11254
|
+
type AddUsersToAdAudienceResponse = ({
|
|
11255
|
+
message?: string;
|
|
11256
|
+
numReceived?: number;
|
|
11257
|
+
numInvalid?: number;
|
|
11258
|
+
});
|
|
11259
|
+
type AddUsersToAdAudienceError = (unknown | {
|
|
11260
|
+
error?: string;
|
|
11261
|
+
});
|
|
10668
11262
|
|
|
10669
|
-
export { type AccountGetResponse, type AccountWithFollowerStats, type AccountsListResponse, type ActivateSequenceData, type ActivateSequenceError, type ActivateSequenceResponse, type AddBroadcastRecipientsData, type AddBroadcastRecipientsError, type AddBroadcastRecipientsResponse, type AddMessageReactionData, type AddMessageReactionError, type AddMessageReactionResponse, type AddWhatsAppBroadcastRecipientsData, type AddWhatsAppBroadcastRecipientsError, type AddWhatsAppBroadcastRecipientsResponse, type AddWhatsAppGroupParticipantsData, type AddWhatsAppGroupParticipantsError, type AddWhatsAppGroupParticipantsResponse, type AnalyticsListResponse, type AnalyticsOverview, type AnalyticsSinglePostResponse, type ApiKey, type ApproveWhatsAppGroupJoinRequestsData, type ApproveWhatsAppGroupJoinRequestsError, type ApproveWhatsAppGroupJoinRequestsResponse, type BlueskyPlatformData, type BookmarkPostData, type BookmarkPostError, type BookmarkPostResponse, type BulkCreateContactsData, type BulkCreateContactsError, type BulkCreateContactsResponse, type BulkDeleteWhatsAppContactsData, type BulkDeleteWhatsAppContactsError, type BulkDeleteWhatsAppContactsResponse, type BulkUpdateWhatsAppContactsData, type BulkUpdateWhatsAppContactsError, type BulkUpdateWhatsAppContactsResponse, type BulkUploadPostsData, type BulkUploadPostsError, type BulkUploadPostsResponse, type CancelBroadcastData, type CancelBroadcastError, type CancelBroadcastResponse, type CancelWhatsAppBroadcastScheduleData, type CancelWhatsAppBroadcastScheduleError, type CancelWhatsAppBroadcastScheduleResponse, type CaptionResponse, type CheckInstagramHashtagsData, type CheckInstagramHashtagsError, type CheckInstagramHashtagsResponse, type ClearContactFieldValueData, type ClearContactFieldValueError, type ClearContactFieldValueResponse, 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 CreateBroadcastData, type CreateBroadcastError, type CreateBroadcastResponse, type CreateCommentAutomationData, type CreateCommentAutomationError, type CreateCommentAutomationResponse, type CreateContactData, type CreateContactError, type CreateContactResponse, type CreateCustomFieldData, type CreateCustomFieldError, type CreateCustomFieldResponse, 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 CreateSequenceData, type CreateSequenceError, type CreateSequenceResponse, type CreateWebhookSettingsData, type CreateWebhookSettingsError, type CreateWebhookSettingsResponse, type CreateWhatsAppBroadcastData, type CreateWhatsAppBroadcastError, type CreateWhatsAppBroadcastResponse, type CreateWhatsAppContactData, type CreateWhatsAppContactError, type CreateWhatsAppContactResponse, type CreateWhatsAppGroupChatData, type CreateWhatsAppGroupChatError, type CreateWhatsAppGroupChatResponse, type CreateWhatsAppGroupInviteLinkData, type CreateWhatsAppGroupInviteLinkError, type CreateWhatsAppGroupInviteLinkResponse, 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 DeleteBroadcastData, type DeleteBroadcastError, type DeleteBroadcastResponse, type DeleteCommentAutomationData, type DeleteCommentAutomationError, type DeleteCommentAutomationResponse, type DeleteContactData, type DeleteContactError, type DeleteContactResponse, type DeleteCustomFieldData, type DeleteCustomFieldError, type DeleteCustomFieldResponse, type DeleteGoogleBusinessMediaData, type DeleteGoogleBusinessMediaError, type DeleteGoogleBusinessMediaResponse, type DeleteGoogleBusinessPlaceActionData, type DeleteGoogleBusinessPlaceActionError, type DeleteGoogleBusinessPlaceActionResponse, type DeleteInboxCommentData, type DeleteInboxCommentError, type DeleteInboxCommentResponse, type DeleteInboxMessageData, type DeleteInboxMessageError, type DeleteInboxMessageResponse, 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 DeleteSequenceData, type DeleteSequenceError, type DeleteSequenceResponse, 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 DeleteWhatsAppGroupChatData, type DeleteWhatsAppGroupChatError, type DeleteWhatsAppGroupChatResponse, 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 EnrollContactsData, type EnrollContactsError, type EnrollContactsResponse, 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 GetBroadcastData, type GetBroadcastError, type GetBroadcastResponse, type GetCommentAutomationData, type GetCommentAutomationError, type GetCommentAutomationResponse, type GetConnectUrlData, type GetConnectUrlError, type GetConnectUrlResponse, type GetContactChannelsData, type GetContactChannelsError, type GetContactChannelsResponse, type GetContactData, type GetContactError, type GetContactResponse, 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 GetInstagramAccountInsightsData, type GetInstagramAccountInsightsError, type GetInstagramAccountInsightsResponse, type GetInstagramDemographicsData, type GetInstagramDemographicsError, type GetInstagramDemographicsResponse, 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 GetSequenceData, type GetSequenceError, type GetSequenceResponse, type GetTelegramCommandsData, type GetTelegramCommandsError, type GetTelegramCommandsResponse, type GetTelegramConnectStatusData, type GetTelegramConnectStatusError, type GetTelegramConnectStatusResponse, type GetTikTokCreatorInfoData, type GetTikTokCreatorInfoError, type GetTikTokCreatorInfoResponse, 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 GetWhatsAppGroupChatData, type GetWhatsAppGroupChatError, type GetWhatsAppGroupChatResponse, 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 GetYoutubePlaylistsData, type GetYoutubePlaylistsError, type GetYoutubePlaylistsResponse, 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 InstagramAccountInsightsResponse, type InstagramDemographicsResponse, 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 ListBroadcastRecipientsData, type ListBroadcastRecipientsError, type ListBroadcastRecipientsResponse, type ListBroadcastsData, type ListBroadcastsError, type ListBroadcastsResponse, type ListCommentAutomationLogsData, type ListCommentAutomationLogsError, type ListCommentAutomationLogsResponse, type ListCommentAutomationsData, type ListCommentAutomationsError, type ListCommentAutomationsResponse, type ListConnectionLogsData, type ListConnectionLogsError, type ListConnectionLogsResponse, type ListContactsData, type ListContactsError, type ListContactsResponse, type ListCustomFieldsData, type ListCustomFieldsError, type ListCustomFieldsResponse, 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 ListSequenceEnrollmentsData, type ListSequenceEnrollmentsError, type ListSequenceEnrollmentsResponse, type ListSequencesData, type ListSequencesError, type ListSequencesResponse, type ListSnapchatProfilesData, type ListSnapchatProfilesError, type ListSnapchatProfilesResponse, type ListUsersError, type ListUsersResponse, type ListWhatsAppGroupChatsData, type ListWhatsAppGroupChatsError, type ListWhatsAppGroupChatsResponse, type ListWhatsAppGroupJoinRequestsData, type ListWhatsAppGroupJoinRequestsError, type ListWhatsAppGroupJoinRequestsResponse, type MediaItem, type MediaUploadResponse, type Money, type Pagination, type ParameterLimitParam, type ParameterPageParam, type PauseSequenceData, type PauseSequenceError, type PauseSequenceResponse, 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 RejectWhatsAppGroupJoinRequestsData, type RejectWhatsAppGroupJoinRequestsError, type RejectWhatsAppGroupJoinRequestsResponse, type ReleaseWhatsAppPhoneNumberData, type ReleaseWhatsAppPhoneNumberError, type ReleaseWhatsAppPhoneNumberResponse, type RemoveBookmarkData, type RemoveBookmarkError, type RemoveBookmarkResponse, type RemoveMessageReactionData, type RemoveMessageReactionError, type RemoveMessageReactionResponse, type RemoveWhatsAppBroadcastRecipientsData, type RemoveWhatsAppBroadcastRecipientsError, type RemoveWhatsAppBroadcastRecipientsResponse, type RemoveWhatsAppGroupParticipantsData, type RemoveWhatsAppGroupParticipantsError, type RemoveWhatsAppGroupParticipantsResponse, 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 ScheduleBroadcastData, type ScheduleBroadcastError, type ScheduleBroadcastResponse, 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 SendBroadcastData, type SendBroadcastError, type SendBroadcastResponse, type SendInboxMessageData, type SendInboxMessageError, type SendInboxMessageResponse, type SendPrivateReplyToCommentData, type SendPrivateReplyToCommentError, type SendPrivateReplyToCommentResponse, type SendTypingIndicatorData, type SendTypingIndicatorError, type SendTypingIndicatorResponse, type SendWhatsAppBroadcastData, type SendWhatsAppBroadcastError, type SendWhatsAppBroadcastResponse, type SendWhatsAppBulkData, type SendWhatsAppBulkError, type SendWhatsAppBulkResponse, type SetContactFieldValueData, type SetContactFieldValueError, type SetContactFieldValueResponse, 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 UnenrollContactData, type UnenrollContactError, type UnenrollContactResponse, 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 UpdateBroadcastData, type UpdateBroadcastError, type UpdateBroadcastResponse, type UpdateCommentAutomationData, type UpdateCommentAutomationError, type UpdateCommentAutomationResponse, type UpdateContactData, type UpdateContactError, type UpdateContactResponse, type UpdateCustomFieldData, type UpdateCustomFieldError, type UpdateCustomFieldResponse, 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 UpdatePostMetadataData, type UpdatePostMetadataError, type UpdatePostMetadataResponse, type UpdatePostResponse, type UpdateProfileData, type UpdateProfileError, type UpdateProfileResponse, type UpdateQueueSlotData, type UpdateQueueSlotError, type UpdateQueueSlotResponse, type UpdateRedditSubredditsData, type UpdateRedditSubredditsError, type UpdateRedditSubredditsResponse, type UpdateSequenceData, type UpdateSequenceError, type UpdateSequenceResponse, 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 UpdateWhatsAppGroupChatData, type UpdateWhatsAppGroupChatError, type UpdateWhatsAppGroupChatResponse, type UpdateWhatsAppTemplateData, type UpdateWhatsAppTemplateError, type UpdateWhatsAppTemplateResponse, type UpdateYoutubeDefaultPlaylistData, type UpdateYoutubeDefaultPlaylistError, type UpdateYoutubeDefaultPlaylistResponse, type UploadMediaDirectData, type UploadMediaDirectError, type UploadMediaDirectResponse, 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 WebhookPayloadTest, type WhatsAppBodyComponent, type WhatsAppButtonsComponent, type WhatsAppFooterComponent, type WhatsAppHeaderComponent, type WhatsAppTemplateButton, type WhatsAppTemplateComponent, type YouTubeDailyViewsResponse, type YouTubePlatformData, type YouTubeScopeMissingResponse, Zernio, ZernioApiError, type action, type aggregation, type aggregation2, type aggregation3, type billingPeriod, type commercialContentType, type connectionMethod, type contentType, type contentType2, type contentType3, Zernio as default, type direction, type disconnectionType, type errorCategory, type errorSource, type event, type event2, type event3, type event4, type event5, type event6, type event7, type eventType, type format, type gapFreq, type graduationStrategy, type mediaType, type mediaType2, type metric, type metricType, type otp_type, 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 timeframe, type type, type type2, type type3, type type4, type visibility };
|
|
11263
|
+
export { type AccountGetResponse, type AccountWithFollowerStats, type AccountsListResponse, type ActivateSequenceData, type ActivateSequenceError, type ActivateSequenceResponse, type Ad, type AdCampaign, type AdMetrics, type AddBroadcastRecipientsData, type AddBroadcastRecipientsError, type AddBroadcastRecipientsResponse, type AddMessageReactionData, type AddMessageReactionError, type AddMessageReactionResponse, type AddUsersToAdAudienceData, type AddUsersToAdAudienceError, type AddUsersToAdAudienceResponse, type AddWhatsAppBroadcastRecipientsData, type AddWhatsAppBroadcastRecipientsError, type AddWhatsAppBroadcastRecipientsResponse, type AddWhatsAppGroupParticipantsData, type AddWhatsAppGroupParticipantsError, type AddWhatsAppGroupParticipantsResponse, type AnalyticsListResponse, type AnalyticsOverview, type AnalyticsSinglePostResponse, type ApiKey, type ApproveWhatsAppGroupJoinRequestsData, type ApproveWhatsAppGroupJoinRequestsError, type ApproveWhatsAppGroupJoinRequestsResponse, type BlueskyPlatformData, type BookmarkPostData, type BookmarkPostError, type BookmarkPostResponse, type BoostPostData, type BoostPostError, type BoostPostResponse, type BulkCreateContactsData, type BulkCreateContactsError, type BulkCreateContactsResponse, type BulkDeleteWhatsAppContactsData, type BulkDeleteWhatsAppContactsError, type BulkDeleteWhatsAppContactsResponse, type BulkUpdateWhatsAppContactsData, type BulkUpdateWhatsAppContactsError, type BulkUpdateWhatsAppContactsResponse, type BulkUploadPostsData, type BulkUploadPostsError, type BulkUploadPostsResponse, type CancelBroadcastData, type CancelBroadcastError, type CancelBroadcastResponse, type CancelWhatsAppBroadcastScheduleData, type CancelWhatsAppBroadcastScheduleError, type CancelWhatsAppBroadcastScheduleResponse, type CaptionResponse, type CheckInstagramHashtagsData, type CheckInstagramHashtagsError, type CheckInstagramHashtagsResponse, type ClearContactFieldValueData, type ClearContactFieldValueError, type ClearContactFieldValueResponse, 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 CreateAdAudienceData, type CreateAdAudienceError, type CreateAdAudienceResponse, type CreateApiKeyData, type CreateApiKeyError, type CreateApiKeyResponse, type CreateBroadcastData, type CreateBroadcastError, type CreateBroadcastResponse, type CreateCommentAutomationData, type CreateCommentAutomationError, type CreateCommentAutomationResponse, type CreateContactData, type CreateContactError, type CreateContactResponse, type CreateCustomFieldData, type CreateCustomFieldError, type CreateCustomFieldResponse, 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 CreateSequenceData, type CreateSequenceError, type CreateSequenceResponse, type CreateStandaloneAdData, type CreateStandaloneAdError, type CreateStandaloneAdResponse, type CreateWebhookSettingsData, type CreateWebhookSettingsError, type CreateWebhookSettingsResponse, type CreateWhatsAppBroadcastData, type CreateWhatsAppBroadcastError, type CreateWhatsAppBroadcastResponse, type CreateWhatsAppContactData, type CreateWhatsAppContactError, type CreateWhatsAppContactResponse, type CreateWhatsAppGroupChatData, type CreateWhatsAppGroupChatError, type CreateWhatsAppGroupChatResponse, type CreateWhatsAppGroupInviteLinkData, type CreateWhatsAppGroupInviteLinkError, type CreateWhatsAppGroupInviteLinkResponse, type CreateWhatsAppTemplateData, type CreateWhatsAppTemplateError, type CreateWhatsAppTemplateResponse, type DeleteAccountData, type DeleteAccountError, type DeleteAccountGroupData, type DeleteAccountGroupError, type DeleteAccountGroupResponse, type DeleteAccountResponse, type DeleteAdAudienceData, type DeleteAdAudienceError, type DeleteAdAudienceResponse, type DeleteAdData, type DeleteAdError, type DeleteAdResponse, type DeleteApiKeyData, type DeleteApiKeyError, type DeleteApiKeyResponse, type DeleteBroadcastData, type DeleteBroadcastError, type DeleteBroadcastResponse, type DeleteCommentAutomationData, type DeleteCommentAutomationError, type DeleteCommentAutomationResponse, type DeleteContactData, type DeleteContactError, type DeleteContactResponse, type DeleteCustomFieldData, type DeleteCustomFieldError, type DeleteCustomFieldResponse, type DeleteGoogleBusinessMediaData, type DeleteGoogleBusinessMediaError, type DeleteGoogleBusinessMediaResponse, type DeleteGoogleBusinessPlaceActionData, type DeleteGoogleBusinessPlaceActionError, type DeleteGoogleBusinessPlaceActionResponse, type DeleteInboxCommentData, type DeleteInboxCommentError, type DeleteInboxCommentResponse, type DeleteInboxMessageData, type DeleteInboxMessageError, type DeleteInboxMessageResponse, 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 DeleteSequenceData, type DeleteSequenceError, type DeleteSequenceResponse, 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 DeleteWhatsAppGroupChatData, type DeleteWhatsAppGroupChatError, type DeleteWhatsAppGroupChatResponse, 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 EnrollContactsData, type EnrollContactsError, type EnrollContactsResponse, 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 GetAdAnalyticsData, type GetAdAnalyticsError, type GetAdAnalyticsResponse, type GetAdAudienceData, type GetAdAudienceError, type GetAdAudienceResponse, type GetAdData, type GetAdError, type GetAdResponse, type GetAllAccountsHealthData, type GetAllAccountsHealthError, type GetAllAccountsHealthResponse, type GetAnalyticsData, type GetAnalyticsError, type GetAnalyticsResponse, type GetBestTimeToPostData, type GetBestTimeToPostError, type GetBestTimeToPostResponse, type GetBroadcastData, type GetBroadcastError, type GetBroadcastResponse, type GetCommentAutomationData, type GetCommentAutomationError, type GetCommentAutomationResponse, type GetConnectUrlData, type GetConnectUrlError, type GetConnectUrlResponse, type GetContactChannelsData, type GetContactChannelsError, type GetContactChannelsResponse, type GetContactData, type GetContactError, type GetContactResponse, 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 GetInstagramAccountInsightsData, type GetInstagramAccountInsightsError, type GetInstagramAccountInsightsResponse, type GetInstagramDemographicsData, type GetInstagramDemographicsError, type GetInstagramDemographicsResponse, 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 GetSequenceData, type GetSequenceError, type GetSequenceResponse, type GetTelegramCommandsData, type GetTelegramCommandsError, type GetTelegramCommandsResponse, type GetTelegramConnectStatusData, type GetTelegramConnectStatusError, type GetTelegramConnectStatusResponse, type GetTikTokCreatorInfoData, type GetTikTokCreatorInfoError, type GetTikTokCreatorInfoResponse, 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 GetWhatsAppGroupChatData, type GetWhatsAppGroupChatError, type GetWhatsAppGroupChatResponse, 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 GetYoutubePlaylistsData, type GetYoutubePlaylistsError, type GetYoutubePlaylistsResponse, 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 InstagramAccountInsightsResponse, type InstagramDemographicsResponse, 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 ListAdAccountsData, type ListAdAccountsError, type ListAdAccountsResponse, type ListAdAudiencesData, type ListAdAudiencesError, type ListAdAudiencesResponse, type ListAdCampaignsData, type ListAdCampaignsError, type ListAdCampaignsResponse, type ListAdsData, type ListAdsError, type ListAdsResponse, type ListApiKeysError, type ListApiKeysResponse, type ListBroadcastRecipientsData, type ListBroadcastRecipientsError, type ListBroadcastRecipientsResponse, type ListBroadcastsData, type ListBroadcastsError, type ListBroadcastsResponse, type ListCommentAutomationLogsData, type ListCommentAutomationLogsError, type ListCommentAutomationLogsResponse, type ListCommentAutomationsData, type ListCommentAutomationsError, type ListCommentAutomationsResponse, type ListConnectionLogsData, type ListConnectionLogsError, type ListConnectionLogsResponse, type ListContactsData, type ListContactsError, type ListContactsResponse, type ListCustomFieldsData, type ListCustomFieldsError, type ListCustomFieldsResponse, 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 ListSequenceEnrollmentsData, type ListSequenceEnrollmentsError, type ListSequenceEnrollmentsResponse, type ListSequencesData, type ListSequencesError, type ListSequencesResponse, type ListSnapchatProfilesData, type ListSnapchatProfilesError, type ListSnapchatProfilesResponse, type ListUsersError, type ListUsersResponse, type ListWhatsAppGroupChatsData, type ListWhatsAppGroupChatsError, type ListWhatsAppGroupChatsResponse, type ListWhatsAppGroupJoinRequestsData, type ListWhatsAppGroupJoinRequestsError, type ListWhatsAppGroupJoinRequestsResponse, type MediaItem, type MediaUploadResponse, type Money, type Pagination, type ParameterLimitParam, type ParameterPageParam, type PauseSequenceData, type PauseSequenceError, type PauseSequenceResponse, 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 RejectWhatsAppGroupJoinRequestsData, type RejectWhatsAppGroupJoinRequestsError, type RejectWhatsAppGroupJoinRequestsResponse, type ReleaseWhatsAppPhoneNumberData, type ReleaseWhatsAppPhoneNumberError, type ReleaseWhatsAppPhoneNumberResponse, type RemoveBookmarkData, type RemoveBookmarkError, type RemoveBookmarkResponse, type RemoveMessageReactionData, type RemoveMessageReactionError, type RemoveMessageReactionResponse, type RemoveWhatsAppBroadcastRecipientsData, type RemoveWhatsAppBroadcastRecipientsError, type RemoveWhatsAppBroadcastRecipientsResponse, type RemoveWhatsAppGroupParticipantsData, type RemoveWhatsAppGroupParticipantsError, type RemoveWhatsAppGroupParticipantsResponse, 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 ScheduleBroadcastData, type ScheduleBroadcastError, type ScheduleBroadcastResponse, type ScheduleWhatsAppBroadcastData, type ScheduleWhatsAppBroadcastError, type ScheduleWhatsAppBroadcastResponse, type SearchAdInterestsData, type SearchAdInterestsError, type SearchAdInterestsResponse, 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 SendBroadcastData, type SendBroadcastError, type SendBroadcastResponse, type SendInboxMessageData, type SendInboxMessageError, type SendInboxMessageResponse, type SendPrivateReplyToCommentData, type SendPrivateReplyToCommentError, type SendPrivateReplyToCommentResponse, type SendTypingIndicatorData, type SendTypingIndicatorError, type SendTypingIndicatorResponse, type SendWhatsAppBroadcastData, type SendWhatsAppBroadcastError, type SendWhatsAppBroadcastResponse, type SendWhatsAppBulkData, type SendWhatsAppBulkError, type SendWhatsAppBulkResponse, type SetContactFieldValueData, type SetContactFieldValueError, type SetContactFieldValueResponse, type SetInstagramIceBreakersData, type SetInstagramIceBreakersError, type SetInstagramIceBreakersResponse, type SetMessengerMenuData, type SetMessengerMenuError, type SetMessengerMenuResponse, type SetTelegramCommandsData, type SetTelegramCommandsError, type SetTelegramCommandsResponse, type SnapchatPlatformData, type SocialAccount, type SyncExternalAdsError, type SyncExternalAdsResponse, 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 UnenrollContactData, type UnenrollContactError, type UnenrollContactResponse, 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 UpdateAdCampaignStatusData, type UpdateAdCampaignStatusError, type UpdateAdCampaignStatusResponse, type UpdateAdData, type UpdateAdError, type UpdateAdResponse, type UpdateBroadcastData, type UpdateBroadcastError, type UpdateBroadcastResponse, type UpdateCommentAutomationData, type UpdateCommentAutomationError, type UpdateCommentAutomationResponse, type UpdateContactData, type UpdateContactError, type UpdateContactResponse, type UpdateCustomFieldData, type UpdateCustomFieldError, type UpdateCustomFieldResponse, 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 UpdatePostMetadataData, type UpdatePostMetadataError, type UpdatePostMetadataResponse, type UpdatePostResponse, type UpdateProfileData, type UpdateProfileError, type UpdateProfileResponse, type UpdateQueueSlotData, type UpdateQueueSlotError, type UpdateQueueSlotResponse, type UpdateRedditSubredditsData, type UpdateRedditSubredditsError, type UpdateRedditSubredditsResponse, type UpdateSequenceData, type UpdateSequenceError, type UpdateSequenceResponse, 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 UpdateWhatsAppGroupChatData, type UpdateWhatsAppGroupChatError, type UpdateWhatsAppGroupChatResponse, type UpdateWhatsAppTemplateData, type UpdateWhatsAppTemplateError, type UpdateWhatsAppTemplateResponse, type UpdateYoutubeDefaultPlaylistData, type UpdateYoutubeDefaultPlaylistError, type UpdateYoutubeDefaultPlaylistResponse, type UploadMediaDirectData, type UploadMediaDirectError, type UploadMediaDirectResponse, 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 WebhookPayloadTest, type WhatsAppBodyComponent, type WhatsAppButtonsComponent, type WhatsAppFooterComponent, type WhatsAppHeaderComponent, type WhatsAppTemplateButton, type WhatsAppTemplateComponent, type YouTubeDailyViewsResponse, type YouTubePlatformData, type YouTubeScopeMissingResponse, Zernio, ZernioApiError, type action, type adType, type aggregation, type aggregation2, type aggregation3, type billingPeriod, type commercialContentType, type connectionMethod, type contentType, type contentType2, type contentType3, Zernio as default, type direction, type disconnectionType, type errorCategory, type errorSource, type event, type event2, type event3, type event4, type event5, type event6, type event7, type eventType, type format, type gapFreq, type goal, type graduationStrategy, type mediaType, type mediaType2, type metric, type metricType, type otp_type, parseApiError, type parseMode, type permission, type platform, type platform2, type platform3, type platform4, type replySettings, type scope, type status, type status2, type status3, type status4, type status5, type status6, type status7, type status8, type status9, type syncStatus, type syncStatus2, type timeframe, type type, type type2, type type3, type type4, type type5, type visibility };
|