@zernio/node 0.2.199 → 0.2.201
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 +13 -0
- package/dist/index.d.mts +491 -9
- package/dist/index.d.ts +491 -9
- package/dist/index.js +93 -2
- package/dist/index.mjs +93 -2
- package/package.json +1 -1
- package/src/client.ts +26 -0
- package/src/generated/sdk.gen.ts +254 -7
- package/src/generated/types.gen.ts +520 -8
package/dist/index.d.ts
CHANGED
|
@@ -304,6 +304,19 @@ declare class Zernio {
|
|
|
304
304
|
getDiscordSettings: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<GetDiscordSettingsData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<GetDiscordSettingsResponse, unknown, ThrowOnError>;
|
|
305
305
|
updateDiscordSettings: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<UpdateDiscordSettingsData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<UpdateDiscordSettingsResponse, unknown, ThrowOnError>;
|
|
306
306
|
getDiscordChannels: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<GetDiscordChannelsData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<GetDiscordChannelsResponse, unknown, ThrowOnError>;
|
|
307
|
+
sendDiscordDirectMessage: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<SendDiscordDirectMessageData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<SendDiscordDirectMessageResponse, unknown, ThrowOnError>;
|
|
308
|
+
listDiscordGuildRoles: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<ListDiscordGuildRolesData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<ListDiscordGuildRolesResponse, unknown, ThrowOnError>;
|
|
309
|
+
listDiscordGuildMembers: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<ListDiscordGuildMembersData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<ListDiscordGuildMembersResponse, unknown, ThrowOnError>;
|
|
310
|
+
addDiscordMemberRole: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<AddDiscordMemberRoleData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<AddDiscordMemberRoleResponse, unknown, ThrowOnError>;
|
|
311
|
+
removeDiscordMemberRole: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<RemoveDiscordMemberRoleData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<RemoveDiscordMemberRoleResponse, unknown, ThrowOnError>;
|
|
312
|
+
listDiscordPinnedMessages: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<ListDiscordPinnedMessagesData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<ListDiscordPinnedMessagesResponse, unknown, ThrowOnError>;
|
|
313
|
+
pinDiscordMessage: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<PinDiscordMessageData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<PinDiscordMessageResponse, unknown, ThrowOnError>;
|
|
314
|
+
unpinDiscordMessage: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<UnpinDiscordMessageData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<UnpinDiscordMessageResponse, unknown, ThrowOnError>;
|
|
315
|
+
listDiscordScheduledEvents: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<ListDiscordScheduledEventsData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<ListDiscordScheduledEventsResponse, unknown, ThrowOnError>;
|
|
316
|
+
createDiscordScheduledEvent: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<CreateDiscordScheduledEventData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<CreateDiscordScheduledEventResponse, unknown, ThrowOnError>;
|
|
317
|
+
getDiscordScheduledEvent: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<GetDiscordScheduledEventData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<GetDiscordScheduledEventResponse, unknown, ThrowOnError>;
|
|
318
|
+
updateDiscordScheduledEvent: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<UpdateDiscordScheduledEventData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<UpdateDiscordScheduledEventResponse, unknown, ThrowOnError>;
|
|
319
|
+
deleteDiscordScheduledEvent: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<DeleteDiscordScheduledEventData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<DeleteDiscordScheduledEventResponse, unknown, ThrowOnError>;
|
|
307
320
|
};
|
|
308
321
|
/**
|
|
309
322
|
* Queue API - Manage posting queue
|
|
@@ -1931,6 +1944,70 @@ type DiscordPlatformData = {
|
|
|
1931
1944
|
* Auto-archive after inactivity (minutes)
|
|
1932
1945
|
*/
|
|
1933
1946
|
type autoArchiveDuration = 60 | 1440 | 4320 | 10080;
|
|
1947
|
+
/**
|
|
1948
|
+
* Discord guild scheduled event. Returned by /v1/discord/guilds/{guildId}/events endpoints.
|
|
1949
|
+
* Fields below are the subset Zernio consumes — Discord may return more (e.g. creator,
|
|
1950
|
+
* image hash) which we pass through verbatim.
|
|
1951
|
+
*
|
|
1952
|
+
*/
|
|
1953
|
+
type DiscordScheduledEvent = {
|
|
1954
|
+
/**
|
|
1955
|
+
* Event snowflake ID
|
|
1956
|
+
*/
|
|
1957
|
+
id?: string;
|
|
1958
|
+
guild_id?: string;
|
|
1959
|
+
/**
|
|
1960
|
+
* Voice/stage channel ID; null for external events.
|
|
1961
|
+
*/
|
|
1962
|
+
channel_id?: (string) | null;
|
|
1963
|
+
creator_id?: (string) | null;
|
|
1964
|
+
name?: string;
|
|
1965
|
+
description?: (string) | null;
|
|
1966
|
+
scheduled_start_time?: string;
|
|
1967
|
+
/**
|
|
1968
|
+
* Required for external events; optional for voice/stage.
|
|
1969
|
+
*/
|
|
1970
|
+
scheduled_end_time?: (string) | null;
|
|
1971
|
+
/**
|
|
1972
|
+
* Always 2 (GUILD_ONLY) — Discord deprecated PUBLIC events.
|
|
1973
|
+
*/
|
|
1974
|
+
privacy_level?: 2;
|
|
1975
|
+
/**
|
|
1976
|
+
* 1=SCHEDULED, 2=ACTIVE, 3=COMPLETED, 4=CANCELED
|
|
1977
|
+
*/
|
|
1978
|
+
status?: 1 | 2 | 3 | 4;
|
|
1979
|
+
/**
|
|
1980
|
+
* 1=STAGE_INSTANCE, 2=VOICE, 3=EXTERNAL
|
|
1981
|
+
*/
|
|
1982
|
+
entity_type?: 1 | 2 | 3;
|
|
1983
|
+
entity_id?: (string) | null;
|
|
1984
|
+
entity_metadata?: {
|
|
1985
|
+
/**
|
|
1986
|
+
* External event location string.
|
|
1987
|
+
*/
|
|
1988
|
+
location?: string;
|
|
1989
|
+
} | null;
|
|
1990
|
+
/**
|
|
1991
|
+
* Number of members who RSVP'd. Only present when withUserCount=true on list.
|
|
1992
|
+
*/
|
|
1993
|
+
user_count?: number;
|
|
1994
|
+
/**
|
|
1995
|
+
* Cover image hash; build URL via cdn.discordapp.com.
|
|
1996
|
+
*/
|
|
1997
|
+
image?: (string) | null;
|
|
1998
|
+
};
|
|
1999
|
+
/**
|
|
2000
|
+
* Always 2 (GUILD_ONLY) — Discord deprecated PUBLIC events.
|
|
2001
|
+
*/
|
|
2002
|
+
type privacy_level = 2;
|
|
2003
|
+
/**
|
|
2004
|
+
* 1=SCHEDULED, 2=ACTIVE, 3=COMPLETED, 4=CANCELED
|
|
2005
|
+
*/
|
|
2006
|
+
type status3 = 1 | 2 | 3 | 4;
|
|
2007
|
+
/**
|
|
2008
|
+
* 1=STAGE_INSTANCE, 2=VOICE, 3=EXTERNAL
|
|
2009
|
+
*/
|
|
2010
|
+
type entity_type = 1 | 2 | 3;
|
|
1934
2011
|
/**
|
|
1935
2012
|
* A single inline button rendered inside an auto-DM via Meta's button_template.
|
|
1936
2013
|
* Up to 3 buttons per automation. `url` and `postback` work on Instagram and
|
|
@@ -2247,7 +2324,7 @@ type InboxWebhookConversation = {
|
|
|
2247
2324
|
*/
|
|
2248
2325
|
contactId?: string;
|
|
2249
2326
|
};
|
|
2250
|
-
type
|
|
2327
|
+
type status4 = 'active' | 'archived';
|
|
2251
2328
|
/**
|
|
2252
2329
|
* The message object included in inbox webhook payloads.
|
|
2253
2330
|
*/
|
|
@@ -2764,7 +2841,7 @@ type PlatformAnalytics = {
|
|
|
2764
2841
|
*/
|
|
2765
2842
|
errorMessage?: (string) | null;
|
|
2766
2843
|
};
|
|
2767
|
-
type
|
|
2844
|
+
type status5 = 'published' | 'failed';
|
|
2768
2845
|
/**
|
|
2769
2846
|
* Sync state of analytics for this platform
|
|
2770
2847
|
*/
|
|
@@ -2868,7 +2945,7 @@ type Post = {
|
|
|
2868
2945
|
createdAt?: string;
|
|
2869
2946
|
updatedAt?: string;
|
|
2870
2947
|
};
|
|
2871
|
-
type
|
|
2948
|
+
type status6 = 'draft' | 'scheduled' | 'publishing' | 'published' | 'failed' | 'partial';
|
|
2872
2949
|
type visibility = 'public' | 'private' | 'unlisted';
|
|
2873
2950
|
type PostAnalytics = {
|
|
2874
2951
|
impressions?: number;
|
|
@@ -3743,7 +3820,7 @@ type UploadTokenResponse = {
|
|
|
3743
3820
|
expiresAt?: string;
|
|
3744
3821
|
status?: 'pending' | 'completed' | 'expired';
|
|
3745
3822
|
};
|
|
3746
|
-
type
|
|
3823
|
+
type status7 = 'pending' | 'completed' | 'expired';
|
|
3747
3824
|
type UploadTokenStatusResponse = {
|
|
3748
3825
|
token?: string;
|
|
3749
3826
|
status?: 'pending' | 'completed' | 'expired';
|
|
@@ -4051,7 +4128,7 @@ type event = 'account.ads.initial_sync_completed';
|
|
|
4051
4128
|
/**
|
|
4052
4129
|
* Overall outcome of the initial sync.
|
|
4053
4130
|
*/
|
|
4054
|
-
type
|
|
4131
|
+
type status8 = 'success' | 'failure';
|
|
4055
4132
|
/**
|
|
4056
4133
|
* Stable category for UX branching. New values may be added; existing ones are
|
|
4057
4134
|
* stable. Mapping:
|
|
@@ -5299,7 +5376,7 @@ type platform10 = 'whatsapp';
|
|
|
5299
5376
|
* request before the template is actually removed.
|
|
5300
5377
|
*
|
|
5301
5378
|
*/
|
|
5302
|
-
type
|
|
5379
|
+
type status9 = 'APPROVED' | 'REJECTED' | 'PENDING' | 'PAUSED' | 'DISABLED' | 'IN_APPEAL' | 'PENDING_DELETION';
|
|
5303
5380
|
type WhatsAppBodyComponent = {
|
|
5304
5381
|
type: 'body';
|
|
5305
5382
|
/**
|
|
@@ -5393,7 +5470,7 @@ type WhatsAppSandboxSession = {
|
|
|
5393
5470
|
* list responses.
|
|
5394
5471
|
*
|
|
5395
5472
|
*/
|
|
5396
|
-
type
|
|
5473
|
+
type status10 = 'pending' | 'active';
|
|
5397
5474
|
type WhatsAppTemplateButton = {
|
|
5398
5475
|
type: 'quick_reply' | 'url' | 'phone_number' | 'otp' | 'flow' | 'mpm' | 'catalog';
|
|
5399
5476
|
text: string;
|
|
@@ -5501,7 +5578,7 @@ type WorkflowExecutionEvent = {
|
|
|
5501
5578
|
at?: string;
|
|
5502
5579
|
};
|
|
5503
5580
|
type action2 = 'execution_started' | 'execution_completed' | 'execution_exited' | 'execution_paused' | 'execution_resumed' | 'node_started' | 'node_completed' | 'node_failed' | 'node_skipped';
|
|
5504
|
-
type
|
|
5581
|
+
type status11 = 'success' | 'failed' | 'pending';
|
|
5505
5582
|
/**
|
|
5506
5583
|
* A node in a workflow graph. `config` shape depends on `type`.
|
|
5507
5584
|
*/
|
|
@@ -10553,6 +10630,411 @@ type GetDiscordChannelsResponse = ({
|
|
|
10553
10630
|
type GetDiscordChannelsError = (unknown | {
|
|
10554
10631
|
error?: string;
|
|
10555
10632
|
});
|
|
10633
|
+
type SendDiscordDirectMessageData = {
|
|
10634
|
+
body: {
|
|
10635
|
+
/**
|
|
10636
|
+
* SocialAccount _id of the connected Discord account the bot speaks as. Caller must own the account (directly or via team membership).
|
|
10637
|
+
*/
|
|
10638
|
+
accountId: string;
|
|
10639
|
+
/**
|
|
10640
|
+
* Discord snowflake ID of the recipient (15-21 digits).
|
|
10641
|
+
*/
|
|
10642
|
+
userId: string;
|
|
10643
|
+
/**
|
|
10644
|
+
* Message text, up to 2,000 characters.
|
|
10645
|
+
*/
|
|
10646
|
+
content?: string;
|
|
10647
|
+
/**
|
|
10648
|
+
* Up to 10 Discord embeds. Same shape as channel-post embeds (title, description, color, fields, etc.). See DiscordPlatformData.embeds for the embed object schema.
|
|
10649
|
+
*/
|
|
10650
|
+
embeds?: Array<{
|
|
10651
|
+
[key: string]: unknown;
|
|
10652
|
+
}>;
|
|
10653
|
+
/**
|
|
10654
|
+
* Up to 10 media attachments. Each is `{ type: image|video|gif|document, url, filename?, mimeType?, size? }`.
|
|
10655
|
+
*/
|
|
10656
|
+
attachments?: Array<{
|
|
10657
|
+
type: 'image' | 'video' | 'gif' | 'document';
|
|
10658
|
+
url: string;
|
|
10659
|
+
filename?: string;
|
|
10660
|
+
mimeType?: string;
|
|
10661
|
+
size?: number;
|
|
10662
|
+
}>;
|
|
10663
|
+
/**
|
|
10664
|
+
* Send as text-to-speech message.
|
|
10665
|
+
*/
|
|
10666
|
+
tts?: boolean;
|
|
10667
|
+
};
|
|
10668
|
+
};
|
|
10669
|
+
type SendDiscordDirectMessageResponse = ({
|
|
10670
|
+
/**
|
|
10671
|
+
* Discord message snowflake ID
|
|
10672
|
+
*/
|
|
10673
|
+
messageId?: string;
|
|
10674
|
+
/**
|
|
10675
|
+
* DM channel snowflake (Discord auto-creates one per recipient pair)
|
|
10676
|
+
*/
|
|
10677
|
+
channelId?: string;
|
|
10678
|
+
/**
|
|
10679
|
+
* Direct link to the message — uses Discord's @me path for DMs
|
|
10680
|
+
*/
|
|
10681
|
+
url?: string;
|
|
10682
|
+
timestamp?: string;
|
|
10683
|
+
recipient?: {
|
|
10684
|
+
userId?: string;
|
|
10685
|
+
platform?: string;
|
|
10686
|
+
};
|
|
10687
|
+
account?: {
|
|
10688
|
+
id?: string;
|
|
10689
|
+
username?: string;
|
|
10690
|
+
displayName?: string;
|
|
10691
|
+
};
|
|
10692
|
+
});
|
|
10693
|
+
type SendDiscordDirectMessageError = (unknown | {
|
|
10694
|
+
error?: string;
|
|
10695
|
+
});
|
|
10696
|
+
type ListDiscordGuildRolesData = {
|
|
10697
|
+
path: {
|
|
10698
|
+
/**
|
|
10699
|
+
* Discord guild snowflake ID
|
|
10700
|
+
*/
|
|
10701
|
+
guildId: string;
|
|
10702
|
+
};
|
|
10703
|
+
query: {
|
|
10704
|
+
/**
|
|
10705
|
+
* SocialAccount _id of the Discord account bound to this guild
|
|
10706
|
+
*/
|
|
10707
|
+
accountId: string;
|
|
10708
|
+
};
|
|
10709
|
+
};
|
|
10710
|
+
type ListDiscordGuildRolesResponse = ({
|
|
10711
|
+
data?: Array<{
|
|
10712
|
+
/**
|
|
10713
|
+
* Role snowflake ID
|
|
10714
|
+
*/
|
|
10715
|
+
id?: string;
|
|
10716
|
+
name?: string;
|
|
10717
|
+
/**
|
|
10718
|
+
* Decimal color (0 = no color). Convert to hex via .toString(16).
|
|
10719
|
+
*/
|
|
10720
|
+
color?: number;
|
|
10721
|
+
/**
|
|
10722
|
+
* Position in role hierarchy (higher = more authority)
|
|
10723
|
+
*/
|
|
10724
|
+
position?: number;
|
|
10725
|
+
/**
|
|
10726
|
+
* Permissions bitfield as a stringified integer
|
|
10727
|
+
*/
|
|
10728
|
+
permissions?: string;
|
|
10729
|
+
/**
|
|
10730
|
+
* True for integration-managed roles (bot roles)
|
|
10731
|
+
*/
|
|
10732
|
+
managed?: boolean;
|
|
10733
|
+
mentionable?: boolean;
|
|
10734
|
+
/**
|
|
10735
|
+
* True if role is displayed separately in member list
|
|
10736
|
+
*/
|
|
10737
|
+
hoist?: boolean;
|
|
10738
|
+
}>;
|
|
10739
|
+
});
|
|
10740
|
+
type ListDiscordGuildRolesError = (unknown | {
|
|
10741
|
+
error?: string;
|
|
10742
|
+
});
|
|
10743
|
+
type ListDiscordGuildMembersData = {
|
|
10744
|
+
path: {
|
|
10745
|
+
guildId: string;
|
|
10746
|
+
};
|
|
10747
|
+
query: {
|
|
10748
|
+
accountId: string;
|
|
10749
|
+
/**
|
|
10750
|
+
* Snowflake of the last member from the previous page.
|
|
10751
|
+
*/
|
|
10752
|
+
after?: string;
|
|
10753
|
+
/**
|
|
10754
|
+
* Page size (1-1000).
|
|
10755
|
+
*/
|
|
10756
|
+
limit?: number;
|
|
10757
|
+
};
|
|
10758
|
+
};
|
|
10759
|
+
type ListDiscordGuildMembersResponse = ({
|
|
10760
|
+
data?: Array<{
|
|
10761
|
+
user?: {
|
|
10762
|
+
/**
|
|
10763
|
+
* User snowflake
|
|
10764
|
+
*/
|
|
10765
|
+
id?: string;
|
|
10766
|
+
username?: string;
|
|
10767
|
+
discriminator?: string;
|
|
10768
|
+
avatar?: (string) | null;
|
|
10769
|
+
/**
|
|
10770
|
+
* User's display name (post-2023 Discord rebrand)
|
|
10771
|
+
*/
|
|
10772
|
+
global_name?: (string) | null;
|
|
10773
|
+
};
|
|
10774
|
+
/**
|
|
10775
|
+
* Guild-specific nickname
|
|
10776
|
+
*/
|
|
10777
|
+
nick?: (string) | null;
|
|
10778
|
+
/**
|
|
10779
|
+
* Snowflake IDs of roles assigned to this member
|
|
10780
|
+
*/
|
|
10781
|
+
roles?: Array<(string)>;
|
|
10782
|
+
joined_at?: string;
|
|
10783
|
+
/**
|
|
10784
|
+
* When the user started boosting the server
|
|
10785
|
+
*/
|
|
10786
|
+
premium_since?: (string) | null;
|
|
10787
|
+
}>;
|
|
10788
|
+
pagination?: {
|
|
10789
|
+
/**
|
|
10790
|
+
* Pass as `after` on the next call. Null when there are no more pages.
|
|
10791
|
+
*/
|
|
10792
|
+
nextCursor?: (string) | null;
|
|
10793
|
+
hasMore?: boolean;
|
|
10794
|
+
};
|
|
10795
|
+
});
|
|
10796
|
+
type ListDiscordGuildMembersError = (unknown | {
|
|
10797
|
+
error?: string;
|
|
10798
|
+
});
|
|
10799
|
+
type AddDiscordMemberRoleData = {
|
|
10800
|
+
path: {
|
|
10801
|
+
guildId: string;
|
|
10802
|
+
roleId: string;
|
|
10803
|
+
/**
|
|
10804
|
+
* Discord user snowflake to assign the role to.
|
|
10805
|
+
*/
|
|
10806
|
+
userId: string;
|
|
10807
|
+
};
|
|
10808
|
+
query: {
|
|
10809
|
+
accountId: string;
|
|
10810
|
+
};
|
|
10811
|
+
};
|
|
10812
|
+
type AddDiscordMemberRoleResponse = ({
|
|
10813
|
+
success?: boolean;
|
|
10814
|
+
operation?: 'role_assigned';
|
|
10815
|
+
guildId?: string;
|
|
10816
|
+
userId?: string;
|
|
10817
|
+
roleId?: string;
|
|
10818
|
+
});
|
|
10819
|
+
type AddDiscordMemberRoleError = (unknown | {
|
|
10820
|
+
error?: string;
|
|
10821
|
+
});
|
|
10822
|
+
type RemoveDiscordMemberRoleData = {
|
|
10823
|
+
path: {
|
|
10824
|
+
guildId: string;
|
|
10825
|
+
roleId: string;
|
|
10826
|
+
userId: string;
|
|
10827
|
+
};
|
|
10828
|
+
query: {
|
|
10829
|
+
accountId: string;
|
|
10830
|
+
};
|
|
10831
|
+
};
|
|
10832
|
+
type RemoveDiscordMemberRoleResponse = ({
|
|
10833
|
+
success?: boolean;
|
|
10834
|
+
operation?: 'role_removed';
|
|
10835
|
+
guildId?: string;
|
|
10836
|
+
userId?: string;
|
|
10837
|
+
roleId?: string;
|
|
10838
|
+
});
|
|
10839
|
+
type RemoveDiscordMemberRoleError = (unknown | {
|
|
10840
|
+
error?: string;
|
|
10841
|
+
});
|
|
10842
|
+
type ListDiscordPinnedMessagesData = {
|
|
10843
|
+
path: {
|
|
10844
|
+
/**
|
|
10845
|
+
* Discord channel snowflake.
|
|
10846
|
+
*/
|
|
10847
|
+
channelId: string;
|
|
10848
|
+
};
|
|
10849
|
+
query: {
|
|
10850
|
+
/**
|
|
10851
|
+
* SocialAccount _id of any Discord account in the same guild.
|
|
10852
|
+
*/
|
|
10853
|
+
accountId: string;
|
|
10854
|
+
};
|
|
10855
|
+
};
|
|
10856
|
+
type ListDiscordPinnedMessagesResponse = ({
|
|
10857
|
+
data?: Array<{
|
|
10858
|
+
id?: string;
|
|
10859
|
+
channel_id?: string;
|
|
10860
|
+
content?: string;
|
|
10861
|
+
timestamp?: string;
|
|
10862
|
+
author?: {
|
|
10863
|
+
[key: string]: unknown;
|
|
10864
|
+
};
|
|
10865
|
+
attachments?: Array<{
|
|
10866
|
+
[key: string]: unknown;
|
|
10867
|
+
}>;
|
|
10868
|
+
embeds?: Array<{
|
|
10869
|
+
[key: string]: unknown;
|
|
10870
|
+
}>;
|
|
10871
|
+
}>;
|
|
10872
|
+
});
|
|
10873
|
+
type ListDiscordPinnedMessagesError = (unknown | {
|
|
10874
|
+
error?: string;
|
|
10875
|
+
});
|
|
10876
|
+
type PinDiscordMessageData = {
|
|
10877
|
+
path: {
|
|
10878
|
+
channelId: string;
|
|
10879
|
+
messageId: string;
|
|
10880
|
+
};
|
|
10881
|
+
query: {
|
|
10882
|
+
accountId: string;
|
|
10883
|
+
};
|
|
10884
|
+
};
|
|
10885
|
+
type PinDiscordMessageResponse = ({
|
|
10886
|
+
success?: boolean;
|
|
10887
|
+
operation?: 'message_pinned';
|
|
10888
|
+
channelId?: string;
|
|
10889
|
+
messageId?: string;
|
|
10890
|
+
});
|
|
10891
|
+
type PinDiscordMessageError = (unknown | {
|
|
10892
|
+
error?: string;
|
|
10893
|
+
});
|
|
10894
|
+
type UnpinDiscordMessageData = {
|
|
10895
|
+
path: {
|
|
10896
|
+
channelId: string;
|
|
10897
|
+
messageId: string;
|
|
10898
|
+
};
|
|
10899
|
+
query: {
|
|
10900
|
+
accountId: string;
|
|
10901
|
+
};
|
|
10902
|
+
};
|
|
10903
|
+
type UnpinDiscordMessageResponse = ({
|
|
10904
|
+
success?: boolean;
|
|
10905
|
+
operation?: 'message_unpinned';
|
|
10906
|
+
channelId?: string;
|
|
10907
|
+
messageId?: string;
|
|
10908
|
+
});
|
|
10909
|
+
type UnpinDiscordMessageError = (unknown | {
|
|
10910
|
+
error?: string;
|
|
10911
|
+
});
|
|
10912
|
+
type ListDiscordScheduledEventsData = {
|
|
10913
|
+
path: {
|
|
10914
|
+
guildId: string;
|
|
10915
|
+
};
|
|
10916
|
+
query: {
|
|
10917
|
+
accountId: string;
|
|
10918
|
+
/**
|
|
10919
|
+
* Include user_count on each event.
|
|
10920
|
+
*/
|
|
10921
|
+
withUserCount?: boolean;
|
|
10922
|
+
};
|
|
10923
|
+
};
|
|
10924
|
+
type ListDiscordScheduledEventsResponse = ({
|
|
10925
|
+
data?: Array<DiscordScheduledEvent>;
|
|
10926
|
+
});
|
|
10927
|
+
type ListDiscordScheduledEventsError = (unknown | {
|
|
10928
|
+
error?: string;
|
|
10929
|
+
});
|
|
10930
|
+
type CreateDiscordScheduledEventData = {
|
|
10931
|
+
body: {
|
|
10932
|
+
accountId: string;
|
|
10933
|
+
name: string;
|
|
10934
|
+
description?: string;
|
|
10935
|
+
/**
|
|
10936
|
+
* ISO 8601 start time. Must be in the future.
|
|
10937
|
+
*/
|
|
10938
|
+
startsAt: string;
|
|
10939
|
+
entity: ({
|
|
10940
|
+
type: 'external';
|
|
10941
|
+
/**
|
|
10942
|
+
* Where the event takes place (e.g. "Zoom link", "123 Main St")
|
|
10943
|
+
*/
|
|
10944
|
+
location: string;
|
|
10945
|
+
endsAt: string;
|
|
10946
|
+
} | {
|
|
10947
|
+
type: 'voice';
|
|
10948
|
+
/**
|
|
10949
|
+
* Voice channel snowflake.
|
|
10950
|
+
*/
|
|
10951
|
+
channelId: string;
|
|
10952
|
+
endsAt?: string;
|
|
10953
|
+
} | {
|
|
10954
|
+
type: 'stage';
|
|
10955
|
+
/**
|
|
10956
|
+
* Stage channel snowflake.
|
|
10957
|
+
*/
|
|
10958
|
+
channelId: string;
|
|
10959
|
+
endsAt?: string;
|
|
10960
|
+
});
|
|
10961
|
+
/**
|
|
10962
|
+
* Optional cover image as a base64 data URI.
|
|
10963
|
+
*/
|
|
10964
|
+
imageDataUri?: string;
|
|
10965
|
+
};
|
|
10966
|
+
path: {
|
|
10967
|
+
guildId: string;
|
|
10968
|
+
};
|
|
10969
|
+
};
|
|
10970
|
+
type CreateDiscordScheduledEventResponse = ({
|
|
10971
|
+
data?: DiscordScheduledEvent;
|
|
10972
|
+
});
|
|
10973
|
+
type CreateDiscordScheduledEventError = (unknown | {
|
|
10974
|
+
error?: string;
|
|
10975
|
+
});
|
|
10976
|
+
type GetDiscordScheduledEventData = {
|
|
10977
|
+
path: {
|
|
10978
|
+
eventId: string;
|
|
10979
|
+
guildId: string;
|
|
10980
|
+
};
|
|
10981
|
+
query: {
|
|
10982
|
+
accountId: string;
|
|
10983
|
+
};
|
|
10984
|
+
};
|
|
10985
|
+
type GetDiscordScheduledEventResponse = ({
|
|
10986
|
+
data?: DiscordScheduledEvent;
|
|
10987
|
+
});
|
|
10988
|
+
type GetDiscordScheduledEventError = ({
|
|
10989
|
+
error?: string;
|
|
10990
|
+
} | unknown);
|
|
10991
|
+
type UpdateDiscordScheduledEventData = {
|
|
10992
|
+
body: {
|
|
10993
|
+
accountId: string;
|
|
10994
|
+
name?: string;
|
|
10995
|
+
description?: string;
|
|
10996
|
+
startsAt?: string;
|
|
10997
|
+
endsAt?: string;
|
|
10998
|
+
/**
|
|
10999
|
+
* For external events.
|
|
11000
|
+
*/
|
|
11001
|
+
location?: string;
|
|
11002
|
+
/**
|
|
11003
|
+
* Status transition. Most common: 'cancelled' to cancel an event.
|
|
11004
|
+
*/
|
|
11005
|
+
status?: 'scheduled' | 'active' | 'completed' | 'cancelled';
|
|
11006
|
+
imageDataUri?: string;
|
|
11007
|
+
};
|
|
11008
|
+
path: {
|
|
11009
|
+
eventId: string;
|
|
11010
|
+
guildId: string;
|
|
11011
|
+
};
|
|
11012
|
+
};
|
|
11013
|
+
type UpdateDiscordScheduledEventResponse = ({
|
|
11014
|
+
data?: DiscordScheduledEvent;
|
|
11015
|
+
});
|
|
11016
|
+
type UpdateDiscordScheduledEventError = (unknown | {
|
|
11017
|
+
error?: string;
|
|
11018
|
+
});
|
|
11019
|
+
type DeleteDiscordScheduledEventData = {
|
|
11020
|
+
path: {
|
|
11021
|
+
eventId: string;
|
|
11022
|
+
guildId: string;
|
|
11023
|
+
};
|
|
11024
|
+
query: {
|
|
11025
|
+
accountId: string;
|
|
11026
|
+
};
|
|
11027
|
+
};
|
|
11028
|
+
type DeleteDiscordScheduledEventResponse = ({
|
|
11029
|
+
success?: boolean;
|
|
11030
|
+
/**
|
|
11031
|
+
* The deleted event's snowflake.
|
|
11032
|
+
*/
|
|
11033
|
+
deleted?: string;
|
|
11034
|
+
});
|
|
11035
|
+
type DeleteDiscordScheduledEventError = ({
|
|
11036
|
+
error?: string;
|
|
11037
|
+
} | unknown);
|
|
10556
11038
|
type ListQueueSlotsData = {
|
|
10557
11039
|
query: {
|
|
10558
11040
|
/**
|
|
@@ -18969,4 +19451,4 @@ type GetTrackingTagStatsError = (unknown | {
|
|
|
18969
19451
|
error?: string;
|
|
18970
19452
|
});
|
|
18971
19453
|
|
|
18972
|
-
export { type AccountGetResponse, type AccountWithFollowerStats, type AccountsListResponse, type ActivateSequenceData, type ActivateSequenceError, type ActivateSequenceResponse, type ActivateWorkflowData, type ActivateWorkflowError, type ActivateWorkflowResponse, type Ad, type AdBudget, type AdCampaign, type AdMetrics, type AdStatus, type AdTreeAdSet, type AdTreeCampaign, type AddBroadcastRecipientsData, type AddBroadcastRecipientsError, type AddBroadcastRecipientsResponse, type AddConversionAssociationsData, type AddConversionAssociationsError, type AddConversionAssociationsResponse, type AddMessageReactionData, type AddMessageReactionError, type AddMessageReactionResponse, type AddTrackingTagSharedAccountData, type AddTrackingTagSharedAccountError, type AddTrackingTagSharedAccountResponse, type AddUsersToAdAudienceData, type AddUsersToAdAudienceError, type AddUsersToAdAudienceResponse, type AddWhatsAppGroupParticipantsData, type AddWhatsAppGroupParticipantsError, type AddWhatsAppGroupParticipantsResponse, type AnalyticsListResponse, type AnalyticsOverview, type AnalyticsSinglePostResponse, type ApiKey, type ApproveWhatsAppGroupJoinRequestsData, type ApproveWhatsAppGroupJoinRequestsError, type ApproveWhatsAppGroupJoinRequestsResponse, type ArchiveLeadFormData, type ArchiveLeadFormError, type ArchiveLeadFormResponse, type BatchGetGoogleBusinessReviewsData, type BatchGetGoogleBusinessReviewsError, type BatchGetGoogleBusinessReviewsResponse, type BidStrategy, type BlueskyPlatformData, type BookmarkPostData, type BookmarkPostError, type BookmarkPostResponse, type BoostPostData, type BoostPostError, type BoostPostResponse, type BulkCreateContactsData, type BulkCreateContactsError, type BulkCreateContactsResponse, type BulkUpdateAdCampaignStatusData, type BulkUpdateAdCampaignStatusError, type BulkUpdateAdCampaignStatusResponse, type BulkUploadPostsData, type BulkUploadPostsError, type BulkUploadPostsResponse, type BulkUploadResult, type BusinessCenter, type CancelBroadcastData, type CancelBroadcastError, type CancelBroadcastResponse, type ClearContactFieldValueData, type ClearContactFieldValueError, type ClearContactFieldValueResponse, type ClientOptions, type CompleteGoogleBusinessVerificationData, type CompleteGoogleBusinessVerificationError, type CompleteGoogleBusinessVerificationResponse, type CompleteTelegramConnectData, type CompleteTelegramConnectError, type CompleteTelegramConnectResponse, type CompleteWhatsAppPhoneSelectionData, type CompleteWhatsAppPhoneSelectionError, type CompleteWhatsAppPhoneSelectionResponse, type ConfigureTikTokAdsBrandIdentityData, type ConfigureTikTokAdsBrandIdentityError, type ConfigureTikTokAdsBrandIdentityResponse, type ConnectAdsData, type ConnectAdsError, type ConnectAdsResponse, type ConnectBlueskyCredentialsData, type ConnectBlueskyCredentialsError, type ConnectBlueskyCredentialsResponse, type ConnectWhatsAppCredentialsData, type ConnectWhatsAppCredentialsError, type ConnectWhatsAppCredentialsResponse, type ConversionDestination, type ConversionEvent, 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 CreateConversionDestinationData, type CreateConversionDestinationError, type CreateConversionDestinationResponse, type CreateCtwaAdData, type CreateCtwaAdError, type CreateCtwaAdResponse, type CreateCustomFieldData, type CreateCustomFieldError, type CreateCustomFieldResponse, type CreateGoogleBusinessMediaData, type CreateGoogleBusinessMediaError, type CreateGoogleBusinessMediaResponse, type CreateGoogleBusinessPlaceActionData, type CreateGoogleBusinessPlaceActionError, type CreateGoogleBusinessPlaceActionResponse, type CreateInboxConversationData, type CreateInboxConversationError, type CreateInboxConversationResponse, type CreateInviteTokenData, type CreateInviteTokenError, type CreateInviteTokenResponse, type CreateLeadFormData, type CreateLeadFormError, type CreateLeadFormResponse, 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 CreateTestLeadData, type CreateTestLeadError, type CreateTestLeadResponse, type CreateTrackingTagData, type CreateTrackingTagError, type CreateTrackingTagResponse, type CreateWebhookSettingsData, type CreateWebhookSettingsError, type CreateWebhookSettingsResponse, type CreateWhatsAppDatasetData, type CreateWhatsAppDatasetError, type CreateWhatsAppDatasetResponse, type CreateWhatsAppFlowData, type CreateWhatsAppFlowError, type CreateWhatsAppFlowResponse, type CreateWhatsAppGroupChatData, type CreateWhatsAppGroupChatError, type CreateWhatsAppGroupChatResponse, type CreateWhatsAppGroupInviteLinkData, type CreateWhatsAppGroupInviteLinkError, type CreateWhatsAppGroupInviteLinkResponse, type CreateWhatsAppSandboxSessionData, type CreateWhatsAppSandboxSessionError, type CreateWhatsAppSandboxSessionResponse, type CreateWhatsAppTemplateData, type CreateWhatsAppTemplateError, type CreateWhatsAppTemplateResponse, type CreateWorkflowData, type CreateWorkflowError, type CreateWorkflowResponse, type CtwaMultiResponse, type CtwaSingleResponse, type DeleteAccountData, type DeleteAccountError, type DeleteAccountGroupData, type DeleteAccountGroupError, type DeleteAccountGroupResponse, type DeleteAccountResponse, type DeleteAdAudienceData, type DeleteAdAudienceError, type DeleteAdAudienceResponse, type DeleteAdCampaignData, type DeleteAdCampaignError, type DeleteAdCampaignResponse, 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 DeleteConversionDestinationData, type DeleteConversionDestinationError, type DeleteConversionDestinationResponse, type DeleteCustomFieldData, type DeleteCustomFieldError, type DeleteCustomFieldResponse, type DeleteGoogleBusinessMediaData, type DeleteGoogleBusinessMediaError, type DeleteGoogleBusinessMediaResponse, type DeleteGoogleBusinessPlaceActionData, type DeleteGoogleBusinessPlaceActionError, type DeleteGoogleBusinessPlaceActionResponse, type DeleteGoogleBusinessReviewReplyData, type DeleteGoogleBusinessReviewReplyError, type DeleteGoogleBusinessReviewReplyResponse, 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 DeleteWhatsAppFlowData, type DeleteWhatsAppFlowError, type DeleteWhatsAppFlowResponse, type DeleteWhatsAppGroupChatData, type DeleteWhatsAppGroupChatError, type DeleteWhatsAppGroupChatResponse, type DeleteWhatsAppSandboxSessionData, type DeleteWhatsAppSandboxSessionError, type DeleteWhatsAppSandboxSessionResponse, type DeleteWhatsAppTemplateData, type DeleteWhatsAppTemplateError, type DeleteWhatsAppTemplateResponse, type DeleteWorkflowData, type DeleteWorkflowError, type DeleteWorkflowResponse, type DeprecateWhatsAppFlowData, type DeprecateWhatsAppFlowError, type DeprecateWhatsAppFlowResponse, type DisableWhatsAppCallingData, type DisableWhatsAppCallingError, type DisableWhatsAppCallingResponse, type DiscordPlatformData, type DmButton, type DuplicateAdCampaignData, type DuplicateAdCampaignError, type DuplicateAdCampaignResponse, type DuplicateWorkflowData, type DuplicateWorkflowError, type DuplicateWorkflowResponse, type EditInboxMessageData, type EditInboxMessageError, type EditInboxMessageResponse, type EditPostData, type EditPostError, type EditPostResponse, type EnableWhatsAppCallingData, type EnableWhatsAppCallingError, type EnableWhatsAppCallingResponse, type EnrollContactsData, type EnrollContactsError, type EnrollContactsResponse, type ErrorResponse, type EstimateAdReachData, type EstimateAdReachError, type EstimateAdReachResponse, type FacebookPlatformData, type FetchGoogleBusinessVerificationOptionsData, type FetchGoogleBusinessVerificationOptionsError, type FetchGoogleBusinessVerificationOptionsResponse, type FollowUserData, type FollowUserError, type FollowUserResponse, type FollowerStatsResponse, type FoodMenu, type FoodMenuItem, type FoodMenuItemAttributes, type FoodMenuLabel, type FoodMenuSection, type GeoRestriction, type GetAccountHealthData, type GetAccountHealthError, type GetAccountHealthResponse, type GetAdAnalyticsData, type GetAdAnalyticsError, type GetAdAnalyticsResponse, type GetAdAudienceData, type GetAdAudienceError, type GetAdAudienceResponse, type GetAdCommentsData, type GetAdCommentsError, type GetAdCommentsResponse, type GetAdData, type GetAdError, type GetAdResponse, type GetAdTreeData, type GetAdTreeError, type GetAdTreeResponse, type GetAdsTimelineData, type GetAdsTimelineError, type GetAdsTimelineResponse, 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 GetConversionDestinationData, type GetConversionDestinationError, type GetConversionDestinationResponse, type GetConversionMetricsData, type GetConversionMetricsError, type GetConversionMetricsResponse, type GetDailyMetricsData, type GetDailyMetricsError, type GetDailyMetricsResponse, type GetDiscordChannelsData, type GetDiscordChannelsError, type GetDiscordChannelsResponse, type GetDiscordSettingsData, type GetDiscordSettingsError, type GetDiscordSettingsResponse, type GetFacebookPageInsightsData, type GetFacebookPageInsightsError, type GetFacebookPageInsightsResponse, 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 GetGoogleBusinessPerformanceData, type GetGoogleBusinessPerformanceError, type GetGoogleBusinessPerformanceResponse, type GetGoogleBusinessReviewsData, type GetGoogleBusinessReviewsError, type GetGoogleBusinessReviewsResponse, type GetGoogleBusinessSearchKeywordsData, type GetGoogleBusinessSearchKeywordsError, type GetGoogleBusinessSearchKeywordsResponse, type GetGoogleBusinessServicesData, type GetGoogleBusinessServicesError, type GetGoogleBusinessServicesResponse, type GetGoogleBusinessVerificationsData, type GetGoogleBusinessVerificationsError, type GetGoogleBusinessVerificationsResponse, 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 GetInstagramFollowerHistoryData, type GetInstagramFollowerHistoryError, type GetInstagramFollowerHistoryResponse, type GetInstagramIceBreakersData, type GetInstagramIceBreakersError, type GetInstagramIceBreakersResponse, type GetInstagramStoryInsightsData, type GetInstagramStoryInsightsError, type GetInstagramStoryInsightsResponse, type GetLeadFormData, type GetLeadFormError, type GetLeadFormResponse, type GetLinkedInAggregateAnalyticsData, type GetLinkedInAggregateAnalyticsError, type GetLinkedInAggregateAnalyticsResponse, type GetLinkedInMentionsData, type GetLinkedInMentionsError, type GetLinkedInMentionsResponse, type GetLinkedInOrgAggregateAnalyticsData, type GetLinkedInOrgAggregateAnalyticsError, type GetLinkedInOrgAggregateAnalyticsResponse, 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 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 GetTikTokAccountInsightsData, type GetTikTokAccountInsightsError, type GetTikTokAccountInsightsResponse, type GetTikTokCreatorInfoData, type GetTikTokCreatorInfoError, type GetTikTokCreatorInfoResponse, type GetTrackingTagData, type GetTrackingTagError, type GetTrackingTagResponse, type GetTrackingTagStatsData, type GetTrackingTagStatsError, type GetTrackingTagStatsResponse, type GetUsageStatsData, type GetUsageStatsError, type GetUsageStatsResponse, type GetUserData, type GetUserError, type GetUserResponse, type GetWebhookSettingsError, type GetWebhookSettingsResponse, type GetWhatsAppBusinessProfileData, type GetWhatsAppBusinessProfileError, type GetWhatsAppBusinessProfileResponse, type GetWhatsAppCallData, type GetWhatsAppCallError, type GetWhatsAppCallEstimateData, type GetWhatsAppCallEstimateError, type GetWhatsAppCallEstimateResponse, type GetWhatsAppCallPermissionsData, type GetWhatsAppCallPermissionsError, type GetWhatsAppCallPermissionsResponse, type GetWhatsAppCallResponse, type GetWhatsAppCallingConfigData, type GetWhatsAppCallingConfigError, type GetWhatsAppCallingConfigResponse, type GetWhatsAppDatasetData, type GetWhatsAppDatasetError, type GetWhatsAppDatasetResponse, type GetWhatsAppDisplayNameData, type GetWhatsAppDisplayNameError, type GetWhatsAppDisplayNameResponse, type GetWhatsAppFlowData, type GetWhatsAppFlowError, type GetWhatsAppFlowJsonData, type GetWhatsAppFlowJsonError, type GetWhatsAppFlowJsonResponse, type GetWhatsAppFlowPreviewData, type GetWhatsAppFlowPreviewError, type GetWhatsAppFlowPreviewResponse, type GetWhatsAppFlowResponse, type GetWhatsAppGroupChatData, type GetWhatsAppGroupChatError, type GetWhatsAppGroupChatResponse, type GetWhatsAppLibraryTemplateData, type GetWhatsAppLibraryTemplateError, type GetWhatsAppLibraryTemplateResponse, type GetWhatsAppNumberInfoData, type GetWhatsAppNumberInfoError, type GetWhatsAppNumberInfoResponse, type GetWhatsAppNumberKycFormData, type GetWhatsAppNumberKycFormError, type GetWhatsAppNumberKycFormResponse, 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 GetWorkflowData, type GetWorkflowError, type GetWorkflowResponse, type GetWorkflowVersionData, type GetWorkflowVersionError, type GetWorkflowVersionResponse, type GetXApiPricingError, type GetXApiPricingResponse, type GetYouTubeChannelInsightsData, type GetYouTubeChannelInsightsError, type GetYouTubeChannelInsightsResponse, type GetYouTubeDailyViewsData, type GetYouTubeDailyViewsError, type GetYouTubeDailyViewsResponse, type GetYouTubeDemographicsData, type GetYouTubeDemographicsError, type GetYouTubeDemographicsResponse, type GetYoutubePlaylistsData, type GetYoutubePlaylistsError, type GetYoutubePlaylistsResponse, type GoogleBusinessPlatformData, type HandleOAuthCallbackData, type HandleOAuthCallbackError, type HandleOAuthCallbackResponse, type HideInboxCommentData, type HideInboxCommentError, type HideInboxCommentResponse, type InboxWebhookAccount, type InboxWebhookConversation, type InboxWebhookMessage, type InitiateTelegramConnectData, type InitiateTelegramConnectError, type InitiateTelegramConnectResponse, type InitiateWhatsAppCallData, type InitiateWhatsAppCallError, type InitiateWhatsAppCallResponse, 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 ListAdsBusinessCentersData, type ListAdsBusinessCentersError, type ListAdsBusinessCentersResponse, 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 ListContactsData, type ListContactsError, type ListContactsResponse, type ListConversionAssociationsData, type ListConversionAssociationsError, type ListConversionAssociationsResponse, type ListConversionDestinationsData, type ListConversionDestinationsError, type ListConversionDestinationsResponse, type ListCustomFieldsData, type ListCustomFieldsError, type ListCustomFieldsResponse, type ListFacebookPagesData, type ListFacebookPagesError, type ListFacebookPagesResponse, type ListFormLeadsData, type ListFormLeadsError, type ListFormLeadsResponse, 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 ListInstagramStoriesData, type ListInstagramStoriesError, type ListInstagramStoriesResponse, type ListLeadFormsData, type ListLeadFormsError, type ListLeadFormsResponse, type ListLeadsData, type ListLeadsError, type ListLeadsResponse, type ListLinkedInOrganizationsData, type ListLinkedInOrganizationsError, type ListLinkedInOrganizationsResponse, type ListLogsData, type ListLogsError, type ListLogsResponse, type ListPinterestBoardsForSelectionData, type ListPinterestBoardsForSelectionError, type ListPinterestBoardsForSelectionResponse, type ListPostsData, type ListPostsError, 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 ListTrackingTagSharedAccountsData, type ListTrackingTagSharedAccountsError, type ListTrackingTagSharedAccountsResponse, type ListTrackingTagsData, type ListTrackingTagsError, type ListTrackingTagsResponse, type ListUsersError, type ListUsersResponse, type ListWhatsAppCallsData, type ListWhatsAppCallsError, type ListWhatsAppCallsResponse, type ListWhatsAppConversionsData, type ListWhatsAppConversionsError, type ListWhatsAppConversionsResponse, type ListWhatsAppFlowResponsesData, type ListWhatsAppFlowResponsesError, type ListWhatsAppFlowResponsesResponse, type ListWhatsAppFlowVersionsData, type ListWhatsAppFlowVersionsError, type ListWhatsAppFlowVersionsResponse, type ListWhatsAppFlowsData, type ListWhatsAppFlowsError, type ListWhatsAppFlowsResponse, type ListWhatsAppGroupChatsData, type ListWhatsAppGroupChatsError, type ListWhatsAppGroupChatsResponse, type ListWhatsAppGroupJoinRequestsData, type ListWhatsAppGroupJoinRequestsError, type ListWhatsAppGroupJoinRequestsResponse, type ListWhatsAppNumberCountriesError, type ListWhatsAppNumberCountriesResponse, type ListWhatsAppPhoneNumbersData, type ListWhatsAppPhoneNumbersError, type ListWhatsAppPhoneNumbersResponse, type ListWhatsAppSandboxSessionsError, type ListWhatsAppSandboxSessionsResponse, type ListWorkflowExecutionEventsData, type ListWorkflowExecutionEventsError, type ListWorkflowExecutionEventsResponse, type ListWorkflowExecutionsData, type ListWorkflowExecutionsError, type ListWorkflowExecutionsResponse, type ListWorkflowVersionsData, type ListWorkflowVersionsError, type ListWorkflowVersionsResponse, type ListWorkflowsData, type ListWorkflowsError, type ListWorkflowsResponse, type MarkConversationReadData, type MarkConversationReadError, type MarkConversationReadResponse, type MediaItem, type MediaUploadResponse, type Money, type MoveAccountToProfileData, type MoveAccountToProfileError, type MoveAccountToProfileResponse, type Pagination, type ParameterLimitParam, type ParameterPageParam, type PauseSequenceData, type PauseSequenceError, type PauseSequenceResponse, type PauseWorkflowData, type PauseWorkflowError, type PauseWorkflowResponse, type PinterestPlatformData, type PlatformAnalytics, type PlatformTarget, type Post, type PostAnalytics, type PostCreateResponse, type PostDeleteResponse, type PostGetResponse, 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 PublishWhatsAppFlowData, type PublishWhatsAppFlowError, type PublishWhatsAppFlowResponse, 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 RedditPost, type RejectWhatsAppGroupJoinRequestsData, type RejectWhatsAppGroupJoinRequestsError, type RejectWhatsAppGroupJoinRequestsResponse, type ReleaseWhatsAppPhoneNumberData, type ReleaseWhatsAppPhoneNumberError, type ReleaseWhatsAppPhoneNumberResponse, type RemoveBookmarkData, type RemoveBookmarkError, type RemoveBookmarkResponse, type RemoveConversionAssociationsData, type RemoveConversionAssociationsError, type RemoveConversionAssociationsResponse, type RemoveMessageReactionData, type RemoveMessageReactionError, type RemoveMessageReactionResponse, type RemoveTrackingTagSharedAccountData, type RemoveTrackingTagSharedAccountError, type RemoveTrackingTagSharedAccountResponse, type RemoveWhatsAppGroupParticipantsData, type RemoveWhatsAppGroupParticipantsError, type RemoveWhatsAppGroupParticipantsResponse, type ReplyToGoogleBusinessReviewData, type ReplyToGoogleBusinessReviewError, type ReplyToGoogleBusinessReviewResponse, type ReplyToInboxPostData, type ReplyToInboxPostError, type ReplyToInboxPostResponse, type ReplyToInboxReviewData, type ReplyToInboxReviewError, type ReplyToInboxReviewResponse, type RestoreWorkflowVersionData, type RestoreWorkflowVersionError, type RestoreWorkflowVersionResponse, type RetryPostData, type RetryPostError, type RetryPostResponse, type RetweetPostData, type RetweetPostError, type RetweetPostResponse, type ReviewWebhookReview, type ScheduleBroadcastData, type ScheduleBroadcastError, type ScheduleBroadcastResponse, type SearchAdInterestsData, type SearchAdInterestsError, type SearchAdInterestsResponse, type SearchAdTargetingData, type SearchAdTargetingError, type SearchAdTargetingResponse, type SearchAvailableWhatsAppNumbersData, type SearchAvailableWhatsAppNumbersError, type SearchAvailableWhatsAppNumbersResponse, 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 SendConversionsData, type SendConversionsError, type SendConversionsResponse, type SendInboxMessageData, type SendInboxMessageError, type SendInboxMessageResponse, type SendPrivateReplyToCommentData, type SendPrivateReplyToCommentError, type SendPrivateReplyToCommentResponse, type SendTypingIndicatorData, type SendTypingIndicatorError, type SendTypingIndicatorResponse, type SendWhatsAppConversionData, type SendWhatsAppConversionError, type SendWhatsAppConversionResponse, type SendWhatsAppFlowMessageData, type SendWhatsAppFlowMessageError, type SendWhatsAppFlowMessageResponse, 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 SharedAdAccount, type SnapchatPlatformData, type SocialAccount, type StartGoogleBusinessVerificationData, type StartGoogleBusinessVerificationError, type StartGoogleBusinessVerificationResponse, type SubmitWhatsAppNumberKycData, type SubmitWhatsAppNumberKycError, type SubmitWhatsAppNumberKycResponse, type TargetingSpec, type TelegramPlatformData, type TestWebhookData, type TestWebhookError, type TestWebhookResponse, type ThreadsPlatformData, type TikTokPlatformData, type TrackingTag, type TriggerWorkflowData, type TriggerWorkflowError, type TriggerWorkflowResponse, 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 UpdateAdCampaignData, type UpdateAdCampaignError, type UpdateAdCampaignResponse, type UpdateAdCampaignStatusData, type UpdateAdCampaignStatusError, type UpdateAdCampaignStatusResponse, type UpdateAdData, type UpdateAdError, type UpdateAdResponse, type UpdateAdSetData, type UpdateAdSetError, type UpdateAdSetResponse, type UpdateAdSetStatusData, type UpdateAdSetStatusError, type UpdateAdSetStatusResponse, type UpdateBroadcastData, type UpdateBroadcastError, type UpdateBroadcastResponse, type UpdateCommentAutomationData, type UpdateCommentAutomationError, type UpdateCommentAutomationResponse, type UpdateContactData, type UpdateContactError, type UpdateContactResponse, type UpdateConversionDestinationData, type UpdateConversionDestinationError, type UpdateConversionDestinationResponse, type UpdateCustomFieldData, type UpdateCustomFieldError, type UpdateCustomFieldResponse, type UpdateDiscordSettingsData, type UpdateDiscordSettingsError, type UpdateDiscordSettingsResponse, 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 UpdateGoogleBusinessPlaceActionData, type UpdateGoogleBusinessPlaceActionError, type UpdateGoogleBusinessPlaceActionResponse, type UpdateGoogleBusinessServicesData, type UpdateGoogleBusinessServicesError, type UpdateGoogleBusinessServicesResponse, 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 UpdateTrackingTagData, type UpdateTrackingTagError, type UpdateTrackingTagResponse, type UpdateWebhookSettingsData, type UpdateWebhookSettingsError, type UpdateWebhookSettingsResponse, type UpdateWhatsAppBusinessProfileData, type UpdateWhatsAppBusinessProfileError, type UpdateWhatsAppBusinessProfileResponse, type UpdateWhatsAppCallingData, type UpdateWhatsAppCallingError, type UpdateWhatsAppCallingResponse, type UpdateWhatsAppDisplayNameData, type UpdateWhatsAppDisplayNameError, type UpdateWhatsAppDisplayNameResponse, type UpdateWhatsAppFlowData, type UpdateWhatsAppFlowError, type UpdateWhatsAppFlowResponse, type UpdateWhatsAppGroupChatData, type UpdateWhatsAppGroupChatError, type UpdateWhatsAppGroupChatResponse, type UpdateWhatsAppTemplateData, type UpdateWhatsAppTemplateError, type UpdateWhatsAppTemplateResponse, type UpdateWorkflowData, type UpdateWorkflowError, type UpdateWorkflowResponse, type UpdateYoutubeDefaultPlaylistData, type UpdateYoutubeDefaultPlaylistError, type UpdateYoutubeDefaultPlaylistResponse, type UploadMediaDirectData, type UploadMediaDirectError, type UploadMediaDirectResponse, type UploadTokenResponse, type UploadTokenStatusResponse, type UploadWhatsAppFlowJsonData, type UploadWhatsAppFlowJsonError, type UploadWhatsAppFlowJsonResponse, 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 WebhookPayloadAccountAdsInitialSyncCompleted, type WebhookPayloadAccountConnected, type WebhookPayloadAccountDisconnected, type WebhookPayloadAdStatusChanged, type WebhookPayloadCallEnded, type WebhookPayloadCallFailed, type WebhookPayloadCallPermissionRequest, type WebhookPayloadCallReceived, type WebhookPayloadComment, type WebhookPayloadConversationStarted, type WebhookPayloadLead, type WebhookPayloadMessage, type WebhookPayloadMessageDeleted, type WebhookPayloadMessageDeliveryStatus, type WebhookPayloadMessageEdited, type WebhookPayloadMessageSent, type WebhookPayloadPost, type WebhookPayloadPostPlatform, type WebhookPayloadReaction, type WebhookPayloadReviewNew, type WebhookPayloadReviewUpdated, type WebhookPayloadTest, type WebhookPayloadWhatsAppTemplateStatusUpdated, type WhatsAppBodyComponent, type WhatsAppButtonsComponent, type WhatsAppFooterComponent, type WhatsAppHeaderComponent, type WhatsAppSandboxSession, type WhatsAppTemplateButton, type WhatsAppTemplateComponent, type WorkflowEdge, type WorkflowExecutionEvent, type WorkflowNode, type XApiOperation, type XApiPricing, type YouTubeDailyViewsResponse, type YouTubeDemographicsResponse, type YouTubePlatformData, type YouTubeScopeMissingResponse, Zernio, ZernioApiError, type action, type action2, type actionSource, type adType, type adType2, type adType3, type aggregation, type aggregation2, type aggregation3, type autoArchiveDuration, type billingPeriod, type billingSystem, type budgetLevel, type commercialContentType, type contentType, type contentType2, type contentType3, Zernio as default, type direction, type direction2, type disconnectionType, type endReason, type errorCategory, type errorCategory2, type errorSource, type event, type event10, type event11, type event12, type event13, type event14, type event15, type event16, type event17, type event18, type event19, type event2, type event20, type event21, type event22, type event23, type event3, type event4, type event5, type event6, type event7, type event8, type event9, type format, type gapFreq, type gender, type goal, type graduationStrategy, type incomeTier, type interactiveType, type kind, type level, type mediaType, type mediaType2, type metric, type metricType, type offerType, type otp_type, parseApiError, type parseMode, type permission, type platform, type platform10, type platform2, type platform3, type platform4, type platform5, type platform6, type platform7, type platform8, type platform9, type replySettings, type response, type reviewStatus, type scope, type status, type status10, type status2, type status3, type status4, type status5, type status6, type status7, type status8, type status9, type syncStatus, type syncStatus2, type timeframe, type topicType, type type, type type2, type type3, type type4, type type5, type type6, type type7, type visibility };
|
|
19454
|
+
export { type AccountGetResponse, type AccountWithFollowerStats, type AccountsListResponse, type ActivateSequenceData, type ActivateSequenceError, type ActivateSequenceResponse, type ActivateWorkflowData, type ActivateWorkflowError, type ActivateWorkflowResponse, type Ad, type AdBudget, type AdCampaign, type AdMetrics, type AdStatus, type AdTreeAdSet, type AdTreeCampaign, type AddBroadcastRecipientsData, type AddBroadcastRecipientsError, type AddBroadcastRecipientsResponse, type AddConversionAssociationsData, type AddConversionAssociationsError, type AddConversionAssociationsResponse, type AddDiscordMemberRoleData, type AddDiscordMemberRoleError, type AddDiscordMemberRoleResponse, type AddMessageReactionData, type AddMessageReactionError, type AddMessageReactionResponse, type AddTrackingTagSharedAccountData, type AddTrackingTagSharedAccountError, type AddTrackingTagSharedAccountResponse, type AddUsersToAdAudienceData, type AddUsersToAdAudienceError, type AddUsersToAdAudienceResponse, type AddWhatsAppGroupParticipantsData, type AddWhatsAppGroupParticipantsError, type AddWhatsAppGroupParticipantsResponse, type AnalyticsListResponse, type AnalyticsOverview, type AnalyticsSinglePostResponse, type ApiKey, type ApproveWhatsAppGroupJoinRequestsData, type ApproveWhatsAppGroupJoinRequestsError, type ApproveWhatsAppGroupJoinRequestsResponse, type ArchiveLeadFormData, type ArchiveLeadFormError, type ArchiveLeadFormResponse, type BatchGetGoogleBusinessReviewsData, type BatchGetGoogleBusinessReviewsError, type BatchGetGoogleBusinessReviewsResponse, type BidStrategy, type BlueskyPlatformData, type BookmarkPostData, type BookmarkPostError, type BookmarkPostResponse, type BoostPostData, type BoostPostError, type BoostPostResponse, type BulkCreateContactsData, type BulkCreateContactsError, type BulkCreateContactsResponse, type BulkUpdateAdCampaignStatusData, type BulkUpdateAdCampaignStatusError, type BulkUpdateAdCampaignStatusResponse, type BulkUploadPostsData, type BulkUploadPostsError, type BulkUploadPostsResponse, type BulkUploadResult, type BusinessCenter, type CancelBroadcastData, type CancelBroadcastError, type CancelBroadcastResponse, type ClearContactFieldValueData, type ClearContactFieldValueError, type ClearContactFieldValueResponse, type ClientOptions, type CompleteGoogleBusinessVerificationData, type CompleteGoogleBusinessVerificationError, type CompleteGoogleBusinessVerificationResponse, type CompleteTelegramConnectData, type CompleteTelegramConnectError, type CompleteTelegramConnectResponse, type CompleteWhatsAppPhoneSelectionData, type CompleteWhatsAppPhoneSelectionError, type CompleteWhatsAppPhoneSelectionResponse, type ConfigureTikTokAdsBrandIdentityData, type ConfigureTikTokAdsBrandIdentityError, type ConfigureTikTokAdsBrandIdentityResponse, type ConnectAdsData, type ConnectAdsError, type ConnectAdsResponse, type ConnectBlueskyCredentialsData, type ConnectBlueskyCredentialsError, type ConnectBlueskyCredentialsResponse, type ConnectWhatsAppCredentialsData, type ConnectWhatsAppCredentialsError, type ConnectWhatsAppCredentialsResponse, type ConversionDestination, type ConversionEvent, 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 CreateConversionDestinationData, type CreateConversionDestinationError, type CreateConversionDestinationResponse, type CreateCtwaAdData, type CreateCtwaAdError, type CreateCtwaAdResponse, type CreateCustomFieldData, type CreateCustomFieldError, type CreateCustomFieldResponse, type CreateDiscordScheduledEventData, type CreateDiscordScheduledEventError, type CreateDiscordScheduledEventResponse, type CreateGoogleBusinessMediaData, type CreateGoogleBusinessMediaError, type CreateGoogleBusinessMediaResponse, type CreateGoogleBusinessPlaceActionData, type CreateGoogleBusinessPlaceActionError, type CreateGoogleBusinessPlaceActionResponse, type CreateInboxConversationData, type CreateInboxConversationError, type CreateInboxConversationResponse, type CreateInviteTokenData, type CreateInviteTokenError, type CreateInviteTokenResponse, type CreateLeadFormData, type CreateLeadFormError, type CreateLeadFormResponse, 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 CreateTestLeadData, type CreateTestLeadError, type CreateTestLeadResponse, type CreateTrackingTagData, type CreateTrackingTagError, type CreateTrackingTagResponse, type CreateWebhookSettingsData, type CreateWebhookSettingsError, type CreateWebhookSettingsResponse, type CreateWhatsAppDatasetData, type CreateWhatsAppDatasetError, type CreateWhatsAppDatasetResponse, type CreateWhatsAppFlowData, type CreateWhatsAppFlowError, type CreateWhatsAppFlowResponse, type CreateWhatsAppGroupChatData, type CreateWhatsAppGroupChatError, type CreateWhatsAppGroupChatResponse, type CreateWhatsAppGroupInviteLinkData, type CreateWhatsAppGroupInviteLinkError, type CreateWhatsAppGroupInviteLinkResponse, type CreateWhatsAppSandboxSessionData, type CreateWhatsAppSandboxSessionError, type CreateWhatsAppSandboxSessionResponse, type CreateWhatsAppTemplateData, type CreateWhatsAppTemplateError, type CreateWhatsAppTemplateResponse, type CreateWorkflowData, type CreateWorkflowError, type CreateWorkflowResponse, type CtwaMultiResponse, type CtwaSingleResponse, type DeleteAccountData, type DeleteAccountError, type DeleteAccountGroupData, type DeleteAccountGroupError, type DeleteAccountGroupResponse, type DeleteAccountResponse, type DeleteAdAudienceData, type DeleteAdAudienceError, type DeleteAdAudienceResponse, type DeleteAdCampaignData, type DeleteAdCampaignError, type DeleteAdCampaignResponse, 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 DeleteConversionDestinationData, type DeleteConversionDestinationError, type DeleteConversionDestinationResponse, type DeleteCustomFieldData, type DeleteCustomFieldError, type DeleteCustomFieldResponse, type DeleteDiscordScheduledEventData, type DeleteDiscordScheduledEventError, type DeleteDiscordScheduledEventResponse, type DeleteGoogleBusinessMediaData, type DeleteGoogleBusinessMediaError, type DeleteGoogleBusinessMediaResponse, type DeleteGoogleBusinessPlaceActionData, type DeleteGoogleBusinessPlaceActionError, type DeleteGoogleBusinessPlaceActionResponse, type DeleteGoogleBusinessReviewReplyData, type DeleteGoogleBusinessReviewReplyError, type DeleteGoogleBusinessReviewReplyResponse, 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 DeleteWhatsAppFlowData, type DeleteWhatsAppFlowError, type DeleteWhatsAppFlowResponse, type DeleteWhatsAppGroupChatData, type DeleteWhatsAppGroupChatError, type DeleteWhatsAppGroupChatResponse, type DeleteWhatsAppSandboxSessionData, type DeleteWhatsAppSandboxSessionError, type DeleteWhatsAppSandboxSessionResponse, type DeleteWhatsAppTemplateData, type DeleteWhatsAppTemplateError, type DeleteWhatsAppTemplateResponse, type DeleteWorkflowData, type DeleteWorkflowError, type DeleteWorkflowResponse, type DeprecateWhatsAppFlowData, type DeprecateWhatsAppFlowError, type DeprecateWhatsAppFlowResponse, type DisableWhatsAppCallingData, type DisableWhatsAppCallingError, type DisableWhatsAppCallingResponse, type DiscordPlatformData, type DiscordScheduledEvent, type DmButton, type DuplicateAdCampaignData, type DuplicateAdCampaignError, type DuplicateAdCampaignResponse, type DuplicateWorkflowData, type DuplicateWorkflowError, type DuplicateWorkflowResponse, type EditInboxMessageData, type EditInboxMessageError, type EditInboxMessageResponse, type EditPostData, type EditPostError, type EditPostResponse, type EnableWhatsAppCallingData, type EnableWhatsAppCallingError, type EnableWhatsAppCallingResponse, type EnrollContactsData, type EnrollContactsError, type EnrollContactsResponse, type ErrorResponse, type EstimateAdReachData, type EstimateAdReachError, type EstimateAdReachResponse, type FacebookPlatformData, type FetchGoogleBusinessVerificationOptionsData, type FetchGoogleBusinessVerificationOptionsError, type FetchGoogleBusinessVerificationOptionsResponse, type FollowUserData, type FollowUserError, type FollowUserResponse, type FollowerStatsResponse, type FoodMenu, type FoodMenuItem, type FoodMenuItemAttributes, type FoodMenuLabel, type FoodMenuSection, type GeoRestriction, type GetAccountHealthData, type GetAccountHealthError, type GetAccountHealthResponse, type GetAdAnalyticsData, type GetAdAnalyticsError, type GetAdAnalyticsResponse, type GetAdAudienceData, type GetAdAudienceError, type GetAdAudienceResponse, type GetAdCommentsData, type GetAdCommentsError, type GetAdCommentsResponse, type GetAdData, type GetAdError, type GetAdResponse, type GetAdTreeData, type GetAdTreeError, type GetAdTreeResponse, type GetAdsTimelineData, type GetAdsTimelineError, type GetAdsTimelineResponse, 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 GetConversionDestinationData, type GetConversionDestinationError, type GetConversionDestinationResponse, type GetConversionMetricsData, type GetConversionMetricsError, type GetConversionMetricsResponse, type GetDailyMetricsData, type GetDailyMetricsError, type GetDailyMetricsResponse, type GetDiscordChannelsData, type GetDiscordChannelsError, type GetDiscordChannelsResponse, type GetDiscordScheduledEventData, type GetDiscordScheduledEventError, type GetDiscordScheduledEventResponse, type GetDiscordSettingsData, type GetDiscordSettingsError, type GetDiscordSettingsResponse, type GetFacebookPageInsightsData, type GetFacebookPageInsightsError, type GetFacebookPageInsightsResponse, 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 GetGoogleBusinessPerformanceData, type GetGoogleBusinessPerformanceError, type GetGoogleBusinessPerformanceResponse, type GetGoogleBusinessReviewsData, type GetGoogleBusinessReviewsError, type GetGoogleBusinessReviewsResponse, type GetGoogleBusinessSearchKeywordsData, type GetGoogleBusinessSearchKeywordsError, type GetGoogleBusinessSearchKeywordsResponse, type GetGoogleBusinessServicesData, type GetGoogleBusinessServicesError, type GetGoogleBusinessServicesResponse, type GetGoogleBusinessVerificationsData, type GetGoogleBusinessVerificationsError, type GetGoogleBusinessVerificationsResponse, 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 GetInstagramFollowerHistoryData, type GetInstagramFollowerHistoryError, type GetInstagramFollowerHistoryResponse, type GetInstagramIceBreakersData, type GetInstagramIceBreakersError, type GetInstagramIceBreakersResponse, type GetInstagramStoryInsightsData, type GetInstagramStoryInsightsError, type GetInstagramStoryInsightsResponse, type GetLeadFormData, type GetLeadFormError, type GetLeadFormResponse, type GetLinkedInAggregateAnalyticsData, type GetLinkedInAggregateAnalyticsError, type GetLinkedInAggregateAnalyticsResponse, type GetLinkedInMentionsData, type GetLinkedInMentionsError, type GetLinkedInMentionsResponse, type GetLinkedInOrgAggregateAnalyticsData, type GetLinkedInOrgAggregateAnalyticsError, type GetLinkedInOrgAggregateAnalyticsResponse, 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 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 GetTikTokAccountInsightsData, type GetTikTokAccountInsightsError, type GetTikTokAccountInsightsResponse, type GetTikTokCreatorInfoData, type GetTikTokCreatorInfoError, type GetTikTokCreatorInfoResponse, type GetTrackingTagData, type GetTrackingTagError, type GetTrackingTagResponse, type GetTrackingTagStatsData, type GetTrackingTagStatsError, type GetTrackingTagStatsResponse, type GetUsageStatsData, type GetUsageStatsError, type GetUsageStatsResponse, type GetUserData, type GetUserError, type GetUserResponse, type GetWebhookSettingsError, type GetWebhookSettingsResponse, type GetWhatsAppBusinessProfileData, type GetWhatsAppBusinessProfileError, type GetWhatsAppBusinessProfileResponse, type GetWhatsAppCallData, type GetWhatsAppCallError, type GetWhatsAppCallEstimateData, type GetWhatsAppCallEstimateError, type GetWhatsAppCallEstimateResponse, type GetWhatsAppCallPermissionsData, type GetWhatsAppCallPermissionsError, type GetWhatsAppCallPermissionsResponse, type GetWhatsAppCallResponse, type GetWhatsAppCallingConfigData, type GetWhatsAppCallingConfigError, type GetWhatsAppCallingConfigResponse, type GetWhatsAppDatasetData, type GetWhatsAppDatasetError, type GetWhatsAppDatasetResponse, type GetWhatsAppDisplayNameData, type GetWhatsAppDisplayNameError, type GetWhatsAppDisplayNameResponse, type GetWhatsAppFlowData, type GetWhatsAppFlowError, type GetWhatsAppFlowJsonData, type GetWhatsAppFlowJsonError, type GetWhatsAppFlowJsonResponse, type GetWhatsAppFlowPreviewData, type GetWhatsAppFlowPreviewError, type GetWhatsAppFlowPreviewResponse, type GetWhatsAppFlowResponse, type GetWhatsAppGroupChatData, type GetWhatsAppGroupChatError, type GetWhatsAppGroupChatResponse, type GetWhatsAppLibraryTemplateData, type GetWhatsAppLibraryTemplateError, type GetWhatsAppLibraryTemplateResponse, type GetWhatsAppNumberInfoData, type GetWhatsAppNumberInfoError, type GetWhatsAppNumberInfoResponse, type GetWhatsAppNumberKycFormData, type GetWhatsAppNumberKycFormError, type GetWhatsAppNumberKycFormResponse, 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 GetWorkflowData, type GetWorkflowError, type GetWorkflowResponse, type GetWorkflowVersionData, type GetWorkflowVersionError, type GetWorkflowVersionResponse, type GetXApiPricingError, type GetXApiPricingResponse, type GetYouTubeChannelInsightsData, type GetYouTubeChannelInsightsError, type GetYouTubeChannelInsightsResponse, type GetYouTubeDailyViewsData, type GetYouTubeDailyViewsError, type GetYouTubeDailyViewsResponse, type GetYouTubeDemographicsData, type GetYouTubeDemographicsError, type GetYouTubeDemographicsResponse, type GetYoutubePlaylistsData, type GetYoutubePlaylistsError, type GetYoutubePlaylistsResponse, type GoogleBusinessPlatformData, type HandleOAuthCallbackData, type HandleOAuthCallbackError, type HandleOAuthCallbackResponse, type HideInboxCommentData, type HideInboxCommentError, type HideInboxCommentResponse, type InboxWebhookAccount, type InboxWebhookConversation, type InboxWebhookMessage, type InitiateTelegramConnectData, type InitiateTelegramConnectError, type InitiateTelegramConnectResponse, type InitiateWhatsAppCallData, type InitiateWhatsAppCallError, type InitiateWhatsAppCallResponse, 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 ListAdsBusinessCentersData, type ListAdsBusinessCentersError, type ListAdsBusinessCentersResponse, 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 ListContactsData, type ListContactsError, type ListContactsResponse, type ListConversionAssociationsData, type ListConversionAssociationsError, type ListConversionAssociationsResponse, type ListConversionDestinationsData, type ListConversionDestinationsError, type ListConversionDestinationsResponse, type ListCustomFieldsData, type ListCustomFieldsError, type ListCustomFieldsResponse, type ListDiscordGuildMembersData, type ListDiscordGuildMembersError, type ListDiscordGuildMembersResponse, type ListDiscordGuildRolesData, type ListDiscordGuildRolesError, type ListDiscordGuildRolesResponse, type ListDiscordPinnedMessagesData, type ListDiscordPinnedMessagesError, type ListDiscordPinnedMessagesResponse, type ListDiscordScheduledEventsData, type ListDiscordScheduledEventsError, type ListDiscordScheduledEventsResponse, type ListFacebookPagesData, type ListFacebookPagesError, type ListFacebookPagesResponse, type ListFormLeadsData, type ListFormLeadsError, type ListFormLeadsResponse, 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 ListInstagramStoriesData, type ListInstagramStoriesError, type ListInstagramStoriesResponse, type ListLeadFormsData, type ListLeadFormsError, type ListLeadFormsResponse, type ListLeadsData, type ListLeadsError, type ListLeadsResponse, type ListLinkedInOrganizationsData, type ListLinkedInOrganizationsError, type ListLinkedInOrganizationsResponse, type ListLogsData, type ListLogsError, type ListLogsResponse, type ListPinterestBoardsForSelectionData, type ListPinterestBoardsForSelectionError, type ListPinterestBoardsForSelectionResponse, type ListPostsData, type ListPostsError, 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 ListTrackingTagSharedAccountsData, type ListTrackingTagSharedAccountsError, type ListTrackingTagSharedAccountsResponse, type ListTrackingTagsData, type ListTrackingTagsError, type ListTrackingTagsResponse, type ListUsersError, type ListUsersResponse, type ListWhatsAppCallsData, type ListWhatsAppCallsError, type ListWhatsAppCallsResponse, type ListWhatsAppConversionsData, type ListWhatsAppConversionsError, type ListWhatsAppConversionsResponse, type ListWhatsAppFlowResponsesData, type ListWhatsAppFlowResponsesError, type ListWhatsAppFlowResponsesResponse, type ListWhatsAppFlowVersionsData, type ListWhatsAppFlowVersionsError, type ListWhatsAppFlowVersionsResponse, type ListWhatsAppFlowsData, type ListWhatsAppFlowsError, type ListWhatsAppFlowsResponse, type ListWhatsAppGroupChatsData, type ListWhatsAppGroupChatsError, type ListWhatsAppGroupChatsResponse, type ListWhatsAppGroupJoinRequestsData, type ListWhatsAppGroupJoinRequestsError, type ListWhatsAppGroupJoinRequestsResponse, type ListWhatsAppNumberCountriesError, type ListWhatsAppNumberCountriesResponse, type ListWhatsAppPhoneNumbersData, type ListWhatsAppPhoneNumbersError, type ListWhatsAppPhoneNumbersResponse, type ListWhatsAppSandboxSessionsError, type ListWhatsAppSandboxSessionsResponse, type ListWorkflowExecutionEventsData, type ListWorkflowExecutionEventsError, type ListWorkflowExecutionEventsResponse, type ListWorkflowExecutionsData, type ListWorkflowExecutionsError, type ListWorkflowExecutionsResponse, type ListWorkflowVersionsData, type ListWorkflowVersionsError, type ListWorkflowVersionsResponse, type ListWorkflowsData, type ListWorkflowsError, type ListWorkflowsResponse, type MarkConversationReadData, type MarkConversationReadError, type MarkConversationReadResponse, type MediaItem, type MediaUploadResponse, type Money, type MoveAccountToProfileData, type MoveAccountToProfileError, type MoveAccountToProfileResponse, type Pagination, type ParameterLimitParam, type ParameterPageParam, type PauseSequenceData, type PauseSequenceError, type PauseSequenceResponse, type PauseWorkflowData, type PauseWorkflowError, type PauseWorkflowResponse, type PinDiscordMessageData, type PinDiscordMessageError, type PinDiscordMessageResponse, type PinterestPlatformData, type PlatformAnalytics, type PlatformTarget, type Post, type PostAnalytics, type PostCreateResponse, type PostDeleteResponse, type PostGetResponse, 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 PublishWhatsAppFlowData, type PublishWhatsAppFlowError, type PublishWhatsAppFlowResponse, 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 RedditPost, type RejectWhatsAppGroupJoinRequestsData, type RejectWhatsAppGroupJoinRequestsError, type RejectWhatsAppGroupJoinRequestsResponse, type ReleaseWhatsAppPhoneNumberData, type ReleaseWhatsAppPhoneNumberError, type ReleaseWhatsAppPhoneNumberResponse, type RemoveBookmarkData, type RemoveBookmarkError, type RemoveBookmarkResponse, type RemoveConversionAssociationsData, type RemoveConversionAssociationsError, type RemoveConversionAssociationsResponse, type RemoveDiscordMemberRoleData, type RemoveDiscordMemberRoleError, type RemoveDiscordMemberRoleResponse, type RemoveMessageReactionData, type RemoveMessageReactionError, type RemoveMessageReactionResponse, type RemoveTrackingTagSharedAccountData, type RemoveTrackingTagSharedAccountError, type RemoveTrackingTagSharedAccountResponse, type RemoveWhatsAppGroupParticipantsData, type RemoveWhatsAppGroupParticipantsError, type RemoveWhatsAppGroupParticipantsResponse, type ReplyToGoogleBusinessReviewData, type ReplyToGoogleBusinessReviewError, type ReplyToGoogleBusinessReviewResponse, type ReplyToInboxPostData, type ReplyToInboxPostError, type ReplyToInboxPostResponse, type ReplyToInboxReviewData, type ReplyToInboxReviewError, type ReplyToInboxReviewResponse, type RestoreWorkflowVersionData, type RestoreWorkflowVersionError, type RestoreWorkflowVersionResponse, type RetryPostData, type RetryPostError, type RetryPostResponse, type RetweetPostData, type RetweetPostError, type RetweetPostResponse, type ReviewWebhookReview, type ScheduleBroadcastData, type ScheduleBroadcastError, type ScheduleBroadcastResponse, type SearchAdInterestsData, type SearchAdInterestsError, type SearchAdInterestsResponse, type SearchAdTargetingData, type SearchAdTargetingError, type SearchAdTargetingResponse, type SearchAvailableWhatsAppNumbersData, type SearchAvailableWhatsAppNumbersError, type SearchAvailableWhatsAppNumbersResponse, 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 SendConversionsData, type SendConversionsError, type SendConversionsResponse, type SendDiscordDirectMessageData, type SendDiscordDirectMessageError, type SendDiscordDirectMessageResponse, type SendInboxMessageData, type SendInboxMessageError, type SendInboxMessageResponse, type SendPrivateReplyToCommentData, type SendPrivateReplyToCommentError, type SendPrivateReplyToCommentResponse, type SendTypingIndicatorData, type SendTypingIndicatorError, type SendTypingIndicatorResponse, type SendWhatsAppConversionData, type SendWhatsAppConversionError, type SendWhatsAppConversionResponse, type SendWhatsAppFlowMessageData, type SendWhatsAppFlowMessageError, type SendWhatsAppFlowMessageResponse, 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 SharedAdAccount, type SnapchatPlatformData, type SocialAccount, type StartGoogleBusinessVerificationData, type StartGoogleBusinessVerificationError, type StartGoogleBusinessVerificationResponse, type SubmitWhatsAppNumberKycData, type SubmitWhatsAppNumberKycError, type SubmitWhatsAppNumberKycResponse, type TargetingSpec, type TelegramPlatformData, type TestWebhookData, type TestWebhookError, type TestWebhookResponse, type ThreadsPlatformData, type TikTokPlatformData, type TrackingTag, type TriggerWorkflowData, type TriggerWorkflowError, type TriggerWorkflowResponse, 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 UnpinDiscordMessageData, type UnpinDiscordMessageError, type UnpinDiscordMessageResponse, type UnpublishPostData, type UnpublishPostError, type UnpublishPostResponse, type UpdateAccountData, type UpdateAccountError, type UpdateAccountGroupData, type UpdateAccountGroupError, type UpdateAccountGroupResponse, type UpdateAccountResponse, type UpdateAdCampaignData, type UpdateAdCampaignError, type UpdateAdCampaignResponse, type UpdateAdCampaignStatusData, type UpdateAdCampaignStatusError, type UpdateAdCampaignStatusResponse, type UpdateAdData, type UpdateAdError, type UpdateAdResponse, type UpdateAdSetData, type UpdateAdSetError, type UpdateAdSetResponse, type UpdateAdSetStatusData, type UpdateAdSetStatusError, type UpdateAdSetStatusResponse, type UpdateBroadcastData, type UpdateBroadcastError, type UpdateBroadcastResponse, type UpdateCommentAutomationData, type UpdateCommentAutomationError, type UpdateCommentAutomationResponse, type UpdateContactData, type UpdateContactError, type UpdateContactResponse, type UpdateConversionDestinationData, type UpdateConversionDestinationError, type UpdateConversionDestinationResponse, type UpdateCustomFieldData, type UpdateCustomFieldError, type UpdateCustomFieldResponse, type UpdateDiscordScheduledEventData, type UpdateDiscordScheduledEventError, type UpdateDiscordScheduledEventResponse, type UpdateDiscordSettingsData, type UpdateDiscordSettingsError, type UpdateDiscordSettingsResponse, 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 UpdateGoogleBusinessPlaceActionData, type UpdateGoogleBusinessPlaceActionError, type UpdateGoogleBusinessPlaceActionResponse, type UpdateGoogleBusinessServicesData, type UpdateGoogleBusinessServicesError, type UpdateGoogleBusinessServicesResponse, 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 UpdateTrackingTagData, type UpdateTrackingTagError, type UpdateTrackingTagResponse, type UpdateWebhookSettingsData, type UpdateWebhookSettingsError, type UpdateWebhookSettingsResponse, type UpdateWhatsAppBusinessProfileData, type UpdateWhatsAppBusinessProfileError, type UpdateWhatsAppBusinessProfileResponse, type UpdateWhatsAppCallingData, type UpdateWhatsAppCallingError, type UpdateWhatsAppCallingResponse, type UpdateWhatsAppDisplayNameData, type UpdateWhatsAppDisplayNameError, type UpdateWhatsAppDisplayNameResponse, type UpdateWhatsAppFlowData, type UpdateWhatsAppFlowError, type UpdateWhatsAppFlowResponse, type UpdateWhatsAppGroupChatData, type UpdateWhatsAppGroupChatError, type UpdateWhatsAppGroupChatResponse, type UpdateWhatsAppTemplateData, type UpdateWhatsAppTemplateError, type UpdateWhatsAppTemplateResponse, type UpdateWorkflowData, type UpdateWorkflowError, type UpdateWorkflowResponse, type UpdateYoutubeDefaultPlaylistData, type UpdateYoutubeDefaultPlaylistError, type UpdateYoutubeDefaultPlaylistResponse, type UploadMediaDirectData, type UploadMediaDirectError, type UploadMediaDirectResponse, type UploadTokenResponse, type UploadTokenStatusResponse, type UploadWhatsAppFlowJsonData, type UploadWhatsAppFlowJsonError, type UploadWhatsAppFlowJsonResponse, 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 WebhookPayloadAccountAdsInitialSyncCompleted, type WebhookPayloadAccountConnected, type WebhookPayloadAccountDisconnected, type WebhookPayloadAdStatusChanged, type WebhookPayloadCallEnded, type WebhookPayloadCallFailed, type WebhookPayloadCallPermissionRequest, type WebhookPayloadCallReceived, type WebhookPayloadComment, type WebhookPayloadConversationStarted, type WebhookPayloadLead, type WebhookPayloadMessage, type WebhookPayloadMessageDeleted, type WebhookPayloadMessageDeliveryStatus, type WebhookPayloadMessageEdited, type WebhookPayloadMessageSent, type WebhookPayloadPost, type WebhookPayloadPostPlatform, type WebhookPayloadReaction, type WebhookPayloadReviewNew, type WebhookPayloadReviewUpdated, type WebhookPayloadTest, type WebhookPayloadWhatsAppTemplateStatusUpdated, type WhatsAppBodyComponent, type WhatsAppButtonsComponent, type WhatsAppFooterComponent, type WhatsAppHeaderComponent, type WhatsAppSandboxSession, type WhatsAppTemplateButton, type WhatsAppTemplateComponent, type WorkflowEdge, type WorkflowExecutionEvent, type WorkflowNode, type XApiOperation, type XApiPricing, type YouTubeDailyViewsResponse, type YouTubeDemographicsResponse, type YouTubePlatformData, type YouTubeScopeMissingResponse, Zernio, ZernioApiError, type action, type action2, type actionSource, type adType, type adType2, type adType3, type aggregation, type aggregation2, type aggregation3, type autoArchiveDuration, type billingPeriod, type billingSystem, type budgetLevel, type commercialContentType, type contentType, type contentType2, type contentType3, Zernio as default, type direction, type direction2, type disconnectionType, type endReason, type entity_type, type errorCategory, type errorCategory2, type errorSource, type event, type event10, type event11, type event12, type event13, type event14, type event15, type event16, type event17, type event18, type event19, type event2, type event20, type event21, type event22, type event23, type event3, type event4, type event5, type event6, type event7, type event8, type event9, type format, type gapFreq, type gender, type goal, type graduationStrategy, type incomeTier, type interactiveType, type kind, type level, type mediaType, type mediaType2, type metric, type metricType, type offerType, type otp_type, parseApiError, type parseMode, type permission, type platform, type platform10, type platform2, type platform3, type platform4, type platform5, type platform6, type platform7, type platform8, type platform9, type privacy_level, type replySettings, type response, type reviewStatus, type scope, type status, type status10, type status11, type status2, type status3, type status4, type status5, type status6, type status7, type status8, type status9, type syncStatus, type syncStatus2, type timeframe, type topicType, type type, type type2, type type3, type type4, type type5, type type6, type type7, type visibility };
|