@getlatedev/node 0.1.43 → 0.1.45

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.ts CHANGED
@@ -339,6 +339,49 @@ declare class Late {
339
339
  replyToInboxReview: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<ReplyToInboxReviewData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<ReplyToInboxReviewResponse, unknown, ThrowOnError>;
340
340
  deleteInboxReviewReply: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<DeleteInboxReviewReplyData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<DeleteInboxReviewReplyResponse, unknown, ThrowOnError>;
341
341
  };
342
+ /**
343
+ * whatsapp API
344
+ */
345
+ whatsapp: {
346
+ sendWhatsAppBulk: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<SendWhatsAppBulkData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<SendWhatsAppBulkResponse, unknown, ThrowOnError>;
347
+ getWhatsAppContacts: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<GetWhatsAppContactsData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<GetWhatsAppContactsResponse, unknown, ThrowOnError>;
348
+ createWhatsAppContact: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<CreateWhatsAppContactData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<CreateWhatsAppContactResponse, unknown, ThrowOnError>;
349
+ getWhatsAppContact: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<GetWhatsAppContactData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<GetWhatsAppContactResponse, GetWhatsAppContactError, ThrowOnError>;
350
+ updateWhatsAppContact: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<UpdateWhatsAppContactData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<UpdateWhatsAppContactResponse, UpdateWhatsAppContactError, ThrowOnError>;
351
+ deleteWhatsAppContact: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<DeleteWhatsAppContactData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<DeleteWhatsAppContactResponse, DeleteWhatsAppContactError, ThrowOnError>;
352
+ importWhatsAppContacts: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<ImportWhatsAppContactsData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<ImportWhatsAppContactsResponse, unknown, ThrowOnError>;
353
+ bulkUpdateWhatsAppContacts: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<BulkUpdateWhatsAppContactsData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<BulkUpdateWhatsAppContactsResponse, unknown, ThrowOnError>;
354
+ bulkDeleteWhatsAppContacts: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<BulkDeleteWhatsAppContactsData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<BulkDeleteWhatsAppContactsResponse, unknown, ThrowOnError>;
355
+ getWhatsAppGroups: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<GetWhatsAppGroupsData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<GetWhatsAppGroupsResponse, unknown, ThrowOnError>;
356
+ renameWhatsAppGroup: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<RenameWhatsAppGroupData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<RenameWhatsAppGroupResponse, unknown, ThrowOnError>;
357
+ deleteWhatsAppGroup: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<DeleteWhatsAppGroupData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<DeleteWhatsAppGroupResponse, unknown, ThrowOnError>;
358
+ getWhatsAppTemplates: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<GetWhatsAppTemplatesData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<GetWhatsAppTemplatesResponse, unknown, ThrowOnError>;
359
+ createWhatsAppTemplate: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<CreateWhatsAppTemplateData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<CreateWhatsAppTemplateResponse, unknown, ThrowOnError>;
360
+ getWhatsAppTemplate: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<GetWhatsAppTemplateData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<GetWhatsAppTemplateResponse, unknown, ThrowOnError>;
361
+ updateWhatsAppTemplate: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<UpdateWhatsAppTemplateData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<UpdateWhatsAppTemplateResponse, unknown, ThrowOnError>;
362
+ deleteWhatsAppTemplate: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<DeleteWhatsAppTemplateData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<DeleteWhatsAppTemplateResponse, unknown, ThrowOnError>;
363
+ getWhatsAppBroadcasts: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<GetWhatsAppBroadcastsData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<GetWhatsAppBroadcastsResponse, unknown, ThrowOnError>;
364
+ createWhatsAppBroadcast: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<CreateWhatsAppBroadcastData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<CreateWhatsAppBroadcastResponse, unknown, ThrowOnError>;
365
+ getWhatsAppBroadcast: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<GetWhatsAppBroadcastData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<GetWhatsAppBroadcastResponse, GetWhatsAppBroadcastError, ThrowOnError>;
366
+ deleteWhatsAppBroadcast: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<DeleteWhatsAppBroadcastData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<DeleteWhatsAppBroadcastResponse, unknown, ThrowOnError>;
367
+ sendWhatsAppBroadcast: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<SendWhatsAppBroadcastData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<SendWhatsAppBroadcastResponse, unknown, ThrowOnError>;
368
+ scheduleWhatsAppBroadcast: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<ScheduleWhatsAppBroadcastData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<ScheduleWhatsAppBroadcastResponse, unknown, ThrowOnError>;
369
+ cancelWhatsAppBroadcastSchedule: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<CancelWhatsAppBroadcastScheduleData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<CancelWhatsAppBroadcastScheduleResponse, unknown, ThrowOnError>;
370
+ getWhatsAppBroadcastRecipients: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<GetWhatsAppBroadcastRecipientsData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<GetWhatsAppBroadcastRecipientsResponse, GetWhatsAppBroadcastRecipientsError, ThrowOnError>;
371
+ addWhatsAppBroadcastRecipients: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<AddWhatsAppBroadcastRecipientsData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<AddWhatsAppBroadcastRecipientsResponse, unknown, ThrowOnError>;
372
+ removeWhatsAppBroadcastRecipients: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<RemoveWhatsAppBroadcastRecipientsData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<RemoveWhatsAppBroadcastRecipientsResponse, unknown, ThrowOnError>;
373
+ getWhatsAppBusinessProfile: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<GetWhatsAppBusinessProfileData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<GetWhatsAppBusinessProfileResponse, unknown, ThrowOnError>;
374
+ updateWhatsAppBusinessProfile: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<UpdateWhatsAppBusinessProfileData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<UpdateWhatsAppBusinessProfileResponse, unknown, ThrowOnError>;
375
+ };
376
+ /**
377
+ * whatsappphonenumbers API
378
+ */
379
+ whatsappphonenumbers: {
380
+ getWhatsAppPhoneNumbers: <ThrowOnError extends boolean = false>(options?: _hey_api_client_fetch.OptionsLegacyParser<GetWhatsAppPhoneNumbersData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<GetWhatsAppPhoneNumbersResponse, GetWhatsAppPhoneNumbersError, ThrowOnError>;
381
+ purchaseWhatsAppPhoneNumber: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<PurchaseWhatsAppPhoneNumberData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<PurchaseWhatsAppPhoneNumberResponse, unknown, ThrowOnError>;
382
+ getWhatsAppPhoneNumber: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<GetWhatsAppPhoneNumberData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<GetWhatsAppPhoneNumberResponse, GetWhatsAppPhoneNumberError, ThrowOnError>;
383
+ releaseWhatsAppPhoneNumber: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<ReleaseWhatsAppPhoneNumberData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<ReleaseWhatsAppPhoneNumberResponse, unknown, ThrowOnError>;
384
+ };
342
385
  /**
343
386
  * Create a new Late API client.
344
387
  *
@@ -6664,5 +6707,1203 @@ type DeleteInboxReviewReplyResponse = ({
6664
6707
  type DeleteInboxReviewReplyError = ({
6665
6708
  error?: string;
6666
6709
  } | unknown);
6710
+ type SendWhatsAppBulkData = {
6711
+ body: {
6712
+ /**
6713
+ * WhatsApp social account ID
6714
+ */
6715
+ accountId: string;
6716
+ /**
6717
+ * List of recipients (max 100)
6718
+ */
6719
+ recipients: Array<{
6720
+ /**
6721
+ * Recipient phone number in E.164 format
6722
+ */
6723
+ phone: string;
6724
+ /**
6725
+ * Per-recipient template variables keyed by index (e.g., "1", "2")
6726
+ */
6727
+ variables?: {
6728
+ [key: string]: (string);
6729
+ };
6730
+ }>;
6731
+ template: {
6732
+ /**
6733
+ * Template name
6734
+ */
6735
+ name: string;
6736
+ /**
6737
+ * Template language code
6738
+ */
6739
+ language: string;
6740
+ /**
6741
+ * Base template components
6742
+ */
6743
+ components?: Array<{
6744
+ [key: string]: unknown;
6745
+ }>;
6746
+ };
6747
+ };
6748
+ };
6749
+ type SendWhatsAppBulkResponse = ({
6750
+ success?: boolean;
6751
+ summary?: {
6752
+ total?: number;
6753
+ sent?: number;
6754
+ failed?: number;
6755
+ };
6756
+ results?: Array<{
6757
+ phone?: string;
6758
+ success?: boolean;
6759
+ messageId?: string;
6760
+ error?: string;
6761
+ }>;
6762
+ });
6763
+ type SendWhatsAppBulkError = (unknown | {
6764
+ error?: string;
6765
+ });
6766
+ type GetWhatsAppContactsData = {
6767
+ query: {
6768
+ /**
6769
+ * WhatsApp social account ID
6770
+ */
6771
+ accountId: string;
6772
+ /**
6773
+ * Filter by group
6774
+ */
6775
+ group?: string;
6776
+ /**
6777
+ * Maximum results (default 50)
6778
+ */
6779
+ limit?: number;
6780
+ /**
6781
+ * Filter by opt-in status
6782
+ */
6783
+ optedIn?: 'true' | 'false';
6784
+ /**
6785
+ * Search contacts by name, phone, email, or company
6786
+ */
6787
+ search?: string;
6788
+ /**
6789
+ * Offset for pagination
6790
+ */
6791
+ skip?: number;
6792
+ /**
6793
+ * Filter by tag
6794
+ */
6795
+ tag?: string;
6796
+ };
6797
+ };
6798
+ type GetWhatsAppContactsResponse = ({
6799
+ success?: boolean;
6800
+ contacts?: Array<{
6801
+ id?: string;
6802
+ phone?: string;
6803
+ waId?: string;
6804
+ name?: string;
6805
+ email?: string;
6806
+ company?: string;
6807
+ tags?: Array<(string)>;
6808
+ groups?: Array<(string)>;
6809
+ isOptedIn?: boolean;
6810
+ lastMessageSentAt?: string;
6811
+ lastMessageReceivedAt?: string;
6812
+ messagesSentCount?: number;
6813
+ messagesReceivedCount?: number;
6814
+ customFields?: {
6815
+ [key: string]: unknown;
6816
+ };
6817
+ notes?: string;
6818
+ createdAt?: string;
6819
+ }>;
6820
+ filters?: {
6821
+ tags?: Array<(string)>;
6822
+ groups?: Array<(string)>;
6823
+ };
6824
+ pagination?: {
6825
+ total?: number;
6826
+ limit?: number;
6827
+ skip?: number;
6828
+ hasMore?: boolean;
6829
+ };
6830
+ });
6831
+ type GetWhatsAppContactsError = (unknown | {
6832
+ error?: string;
6833
+ });
6834
+ type CreateWhatsAppContactData = {
6835
+ body: {
6836
+ /**
6837
+ * WhatsApp social account ID
6838
+ */
6839
+ accountId: string;
6840
+ /**
6841
+ * Phone number in E.164 format
6842
+ */
6843
+ phone: string;
6844
+ /**
6845
+ * Contact name
6846
+ */
6847
+ name: string;
6848
+ /**
6849
+ * Contact email
6850
+ */
6851
+ email?: string;
6852
+ /**
6853
+ * Company name
6854
+ */
6855
+ company?: string;
6856
+ /**
6857
+ * Tags for categorization
6858
+ */
6859
+ tags?: Array<(string)>;
6860
+ /**
6861
+ * Groups the contact belongs to
6862
+ */
6863
+ groups?: Array<(string)>;
6864
+ /**
6865
+ * Whether the contact has opted in to receive messages
6866
+ */
6867
+ isOptedIn?: boolean;
6868
+ /**
6869
+ * Custom key-value fields
6870
+ */
6871
+ customFields?: {
6872
+ [key: string]: (string);
6873
+ };
6874
+ /**
6875
+ * Notes about the contact
6876
+ */
6877
+ notes?: string;
6878
+ };
6879
+ };
6880
+ type CreateWhatsAppContactResponse = ({
6881
+ success?: boolean;
6882
+ contact?: {
6883
+ id?: string;
6884
+ phone?: string;
6885
+ name?: string;
6886
+ email?: string;
6887
+ company?: string;
6888
+ tags?: Array<(string)>;
6889
+ groups?: Array<(string)>;
6890
+ isOptedIn?: boolean;
6891
+ createdAt?: string;
6892
+ };
6893
+ });
6894
+ type CreateWhatsAppContactError = (unknown | {
6895
+ error?: string;
6896
+ });
6897
+ type GetWhatsAppContactData = {
6898
+ path: {
6899
+ /**
6900
+ * Contact ID
6901
+ */
6902
+ contactId: string;
6903
+ };
6904
+ };
6905
+ type GetWhatsAppContactResponse = ({
6906
+ success?: boolean;
6907
+ contact?: {
6908
+ id?: string;
6909
+ phone?: string;
6910
+ waId?: string;
6911
+ name?: string;
6912
+ email?: string;
6913
+ company?: string;
6914
+ tags?: Array<(string)>;
6915
+ groups?: Array<(string)>;
6916
+ isOptedIn?: boolean;
6917
+ optInDate?: string;
6918
+ optOutDate?: string;
6919
+ isBlocked?: boolean;
6920
+ lastMessageSentAt?: string;
6921
+ lastMessageReceivedAt?: string;
6922
+ messagesSentCount?: number;
6923
+ messagesReceivedCount?: number;
6924
+ customFields?: {
6925
+ [key: string]: unknown;
6926
+ };
6927
+ notes?: string;
6928
+ createdAt?: string;
6929
+ updatedAt?: string;
6930
+ };
6931
+ });
6932
+ type GetWhatsAppContactError = ({
6933
+ error?: string;
6934
+ });
6935
+ type UpdateWhatsAppContactData = {
6936
+ body: {
6937
+ /**
6938
+ * Contact name
6939
+ */
6940
+ name?: string;
6941
+ /**
6942
+ * Contact email
6943
+ */
6944
+ email?: string;
6945
+ /**
6946
+ * Company name
6947
+ */
6948
+ company?: string;
6949
+ /**
6950
+ * Tags (replaces existing)
6951
+ */
6952
+ tags?: Array<(string)>;
6953
+ /**
6954
+ * Groups (replaces existing)
6955
+ */
6956
+ groups?: Array<(string)>;
6957
+ /**
6958
+ * Opt-in status (changes are timestamped)
6959
+ */
6960
+ isOptedIn?: boolean;
6961
+ /**
6962
+ * Block status
6963
+ */
6964
+ isBlocked?: boolean;
6965
+ /**
6966
+ * Custom fields to merge (set value to null to remove a field)
6967
+ */
6968
+ customFields?: {
6969
+ [key: string]: ((string) | null);
6970
+ };
6971
+ /**
6972
+ * Notes about the contact
6973
+ */
6974
+ notes?: string;
6975
+ };
6976
+ path: {
6977
+ /**
6978
+ * Contact ID
6979
+ */
6980
+ contactId: string;
6981
+ };
6982
+ };
6983
+ type UpdateWhatsAppContactResponse = ({
6984
+ success?: boolean;
6985
+ contact?: {
6986
+ id?: string;
6987
+ phone?: string;
6988
+ name?: string;
6989
+ email?: string;
6990
+ company?: string;
6991
+ tags?: Array<(string)>;
6992
+ groups?: Array<(string)>;
6993
+ isOptedIn?: boolean;
6994
+ isBlocked?: boolean;
6995
+ customFields?: {
6996
+ [key: string]: unknown;
6997
+ };
6998
+ notes?: string;
6999
+ updatedAt?: string;
7000
+ };
7001
+ });
7002
+ type UpdateWhatsAppContactError = ({
7003
+ error?: string;
7004
+ });
7005
+ type DeleteWhatsAppContactData = {
7006
+ path: {
7007
+ /**
7008
+ * Contact ID
7009
+ */
7010
+ contactId: string;
7011
+ };
7012
+ };
7013
+ type DeleteWhatsAppContactResponse = ({
7014
+ success?: boolean;
7015
+ message?: string;
7016
+ });
7017
+ type DeleteWhatsAppContactError = ({
7018
+ error?: string;
7019
+ });
7020
+ type ImportWhatsAppContactsData = {
7021
+ body: {
7022
+ /**
7023
+ * WhatsApp social account ID
7024
+ */
7025
+ accountId: string;
7026
+ /**
7027
+ * Contacts to import (max 1000)
7028
+ */
7029
+ contacts: Array<{
7030
+ /**
7031
+ * Phone number in E.164 format
7032
+ */
7033
+ phone: string;
7034
+ /**
7035
+ * Contact name
7036
+ */
7037
+ name: string;
7038
+ email?: string;
7039
+ company?: string;
7040
+ tags?: Array<(string)>;
7041
+ groups?: Array<(string)>;
7042
+ customFields?: {
7043
+ [key: string]: (string);
7044
+ };
7045
+ notes?: string;
7046
+ }>;
7047
+ /**
7048
+ * Tags applied to all imported contacts
7049
+ */
7050
+ defaultTags?: Array<(string)>;
7051
+ /**
7052
+ * Groups applied to all imported contacts
7053
+ */
7054
+ defaultGroups?: Array<(string)>;
7055
+ /**
7056
+ * Skip contacts with existing phone numbers
7057
+ */
7058
+ skipDuplicates?: boolean;
7059
+ };
7060
+ };
7061
+ type ImportWhatsAppContactsResponse = ({
7062
+ success?: boolean;
7063
+ summary?: {
7064
+ total?: number;
7065
+ created?: number;
7066
+ skipped?: number;
7067
+ failed?: number;
7068
+ };
7069
+ results?: Array<{
7070
+ phone?: string;
7071
+ name?: string;
7072
+ success?: boolean;
7073
+ contactId?: string;
7074
+ error?: string;
7075
+ }>;
7076
+ });
7077
+ type ImportWhatsAppContactsError = (unknown | {
7078
+ error?: string;
7079
+ });
7080
+ type BulkUpdateWhatsAppContactsData = {
7081
+ body: {
7082
+ /**
7083
+ * Bulk action to perform
7084
+ */
7085
+ action: 'addTags' | 'removeTags' | 'addGroups' | 'removeGroups' | 'optIn' | 'optOut' | 'block' | 'unblock';
7086
+ /**
7087
+ * Contact IDs to update (max 500)
7088
+ */
7089
+ contactIds: Array<(string)>;
7090
+ /**
7091
+ * Tags to add or remove (required for addTags/removeTags)
7092
+ */
7093
+ tags?: Array<(string)>;
7094
+ /**
7095
+ * Groups to add or remove (required for addGroups/removeGroups)
7096
+ */
7097
+ groups?: Array<(string)>;
7098
+ };
7099
+ };
7100
+ type BulkUpdateWhatsAppContactsResponse = ({
7101
+ success?: boolean;
7102
+ action?: string;
7103
+ /**
7104
+ * Number of contacts modified
7105
+ */
7106
+ modified?: number;
7107
+ /**
7108
+ * Number of contacts matched
7109
+ */
7110
+ matched?: number;
7111
+ });
7112
+ type BulkUpdateWhatsAppContactsError = (unknown | {
7113
+ error?: string;
7114
+ });
7115
+ type BulkDeleteWhatsAppContactsData = {
7116
+ body: {
7117
+ /**
7118
+ * Contact IDs to delete (max 500)
7119
+ */
7120
+ contactIds: Array<(string)>;
7121
+ };
7122
+ };
7123
+ type BulkDeleteWhatsAppContactsResponse = ({
7124
+ success?: boolean;
7125
+ /**
7126
+ * Number of contacts deleted
7127
+ */
7128
+ deleted?: number;
7129
+ });
7130
+ type BulkDeleteWhatsAppContactsError = (unknown | {
7131
+ error?: string;
7132
+ });
7133
+ type GetWhatsAppGroupsData = {
7134
+ query: {
7135
+ /**
7136
+ * WhatsApp social account ID
7137
+ */
7138
+ accountId: string;
7139
+ };
7140
+ };
7141
+ type GetWhatsAppGroupsResponse = ({
7142
+ success?: boolean;
7143
+ groups?: Array<{
7144
+ name?: string;
7145
+ /**
7146
+ * Total contacts in this group
7147
+ */
7148
+ totalCount?: number;
7149
+ /**
7150
+ * Opted-in contacts in this group
7151
+ */
7152
+ optedInCount?: number;
7153
+ }>;
7154
+ summary?: {
7155
+ totalContacts?: number;
7156
+ optedInContacts?: number;
7157
+ groupCount?: number;
7158
+ };
7159
+ });
7160
+ type GetWhatsAppGroupsError = (unknown | {
7161
+ error?: string;
7162
+ });
7163
+ type RenameWhatsAppGroupData = {
7164
+ body: {
7165
+ /**
7166
+ * WhatsApp social account ID
7167
+ */
7168
+ accountId: string;
7169
+ /**
7170
+ * Current group name
7171
+ */
7172
+ oldName: string;
7173
+ /**
7174
+ * New group name
7175
+ */
7176
+ newName: string;
7177
+ };
7178
+ };
7179
+ type RenameWhatsAppGroupResponse = ({
7180
+ success?: boolean;
7181
+ message?: string;
7182
+ /**
7183
+ * Number of contacts updated
7184
+ */
7185
+ modified?: number;
7186
+ });
7187
+ type RenameWhatsAppGroupError = (unknown | {
7188
+ error?: string;
7189
+ });
7190
+ type DeleteWhatsAppGroupData = {
7191
+ body: {
7192
+ /**
7193
+ * WhatsApp social account ID
7194
+ */
7195
+ accountId: string;
7196
+ /**
7197
+ * Group name to delete
7198
+ */
7199
+ groupName: string;
7200
+ };
7201
+ };
7202
+ type DeleteWhatsAppGroupResponse = ({
7203
+ success?: boolean;
7204
+ message?: string;
7205
+ /**
7206
+ * Number of contacts updated
7207
+ */
7208
+ modified?: number;
7209
+ });
7210
+ type DeleteWhatsAppGroupError = (unknown | {
7211
+ error?: string;
7212
+ });
7213
+ type GetWhatsAppTemplatesData = {
7214
+ query: {
7215
+ /**
7216
+ * WhatsApp social account ID
7217
+ */
7218
+ accountId: string;
7219
+ };
7220
+ };
7221
+ type GetWhatsAppTemplatesResponse = ({
7222
+ success?: boolean;
7223
+ templates?: Array<{
7224
+ /**
7225
+ * WhatsApp template ID
7226
+ */
7227
+ id?: string;
7228
+ name?: string;
7229
+ status?: 'APPROVED' | 'PENDING' | 'REJECTED';
7230
+ category?: 'AUTHENTICATION' | 'MARKETING' | 'UTILITY';
7231
+ language?: string;
7232
+ components?: Array<{
7233
+ [key: string]: unknown;
7234
+ }>;
7235
+ }>;
7236
+ });
7237
+ type GetWhatsAppTemplatesError = (unknown | {
7238
+ error?: string;
7239
+ });
7240
+ type CreateWhatsAppTemplateData = {
7241
+ body: {
7242
+ /**
7243
+ * WhatsApp social account ID
7244
+ */
7245
+ accountId: string;
7246
+ /**
7247
+ * Template name (lowercase, letters/numbers/underscores, must start with a letter)
7248
+ */
7249
+ name: string;
7250
+ /**
7251
+ * Template category
7252
+ */
7253
+ category: 'AUTHENTICATION' | 'MARKETING' | 'UTILITY';
7254
+ /**
7255
+ * Template language code (e.g., en_US)
7256
+ */
7257
+ language: string;
7258
+ /**
7259
+ * Template components (header, body, footer, buttons)
7260
+ */
7261
+ components: Array<{
7262
+ [key: string]: unknown;
7263
+ }>;
7264
+ };
7265
+ };
7266
+ type CreateWhatsAppTemplateResponse = ({
7267
+ success?: boolean;
7268
+ template?: {
7269
+ id?: string;
7270
+ name?: string;
7271
+ status?: string;
7272
+ category?: string;
7273
+ language?: string;
7274
+ };
7275
+ });
7276
+ type CreateWhatsAppTemplateError = (unknown | {
7277
+ error?: string;
7278
+ });
7279
+ type GetWhatsAppTemplateData = {
7280
+ path: {
7281
+ /**
7282
+ * Template name
7283
+ */
7284
+ templateName: string;
7285
+ };
7286
+ query: {
7287
+ /**
7288
+ * WhatsApp social account ID
7289
+ */
7290
+ accountId: string;
7291
+ };
7292
+ };
7293
+ type GetWhatsAppTemplateResponse = ({
7294
+ success?: boolean;
7295
+ template?: {
7296
+ id?: string;
7297
+ name?: string;
7298
+ status?: string;
7299
+ category?: string;
7300
+ language?: string;
7301
+ components?: Array<{
7302
+ [key: string]: unknown;
7303
+ }>;
7304
+ };
7305
+ });
7306
+ type GetWhatsAppTemplateError = (unknown | {
7307
+ error?: string;
7308
+ });
7309
+ type UpdateWhatsAppTemplateData = {
7310
+ body: {
7311
+ /**
7312
+ * WhatsApp social account ID
7313
+ */
7314
+ accountId: string;
7315
+ /**
7316
+ * Updated template components
7317
+ */
7318
+ components: Array<{
7319
+ [key: string]: unknown;
7320
+ }>;
7321
+ };
7322
+ path: {
7323
+ /**
7324
+ * Template name
7325
+ */
7326
+ templateName: string;
7327
+ };
7328
+ };
7329
+ type UpdateWhatsAppTemplateResponse = ({
7330
+ success?: boolean;
7331
+ template?: {
7332
+ id?: string;
7333
+ name?: string;
7334
+ status?: string;
7335
+ };
7336
+ });
7337
+ type UpdateWhatsAppTemplateError = (unknown | {
7338
+ error?: string;
7339
+ });
7340
+ type DeleteWhatsAppTemplateData = {
7341
+ path: {
7342
+ /**
7343
+ * Template name
7344
+ */
7345
+ templateName: string;
7346
+ };
7347
+ query: {
7348
+ /**
7349
+ * WhatsApp social account ID
7350
+ */
7351
+ accountId: string;
7352
+ };
7353
+ };
7354
+ type DeleteWhatsAppTemplateResponse = ({
7355
+ success?: boolean;
7356
+ message?: string;
7357
+ });
7358
+ type DeleteWhatsAppTemplateError = (unknown | {
7359
+ error?: string;
7360
+ });
7361
+ type GetWhatsAppBroadcastsData = {
7362
+ query: {
7363
+ /**
7364
+ * WhatsApp social account ID
7365
+ */
7366
+ accountId: string;
7367
+ /**
7368
+ * Maximum results (default 50)
7369
+ */
7370
+ limit?: number;
7371
+ /**
7372
+ * Offset for pagination
7373
+ */
7374
+ skip?: number;
7375
+ /**
7376
+ * Filter by broadcast status
7377
+ */
7378
+ status?: 'draft' | 'scheduled' | 'sending' | 'completed' | 'failed' | 'cancelled';
7379
+ };
7380
+ };
7381
+ type GetWhatsAppBroadcastsResponse = ({
7382
+ success?: boolean;
7383
+ broadcasts?: Array<{
7384
+ id?: string;
7385
+ name?: string;
7386
+ description?: string;
7387
+ template?: {
7388
+ name?: string;
7389
+ language?: string;
7390
+ };
7391
+ status?: 'draft' | 'scheduled' | 'sending' | 'completed' | 'failed' | 'cancelled';
7392
+ recipientCount?: number;
7393
+ scheduledAt?: string;
7394
+ startedAt?: string;
7395
+ completedAt?: string;
7396
+ sentCount?: number;
7397
+ deliveredCount?: number;
7398
+ readCount?: number;
7399
+ failedCount?: number;
7400
+ createdAt?: string;
7401
+ }>;
7402
+ pagination?: {
7403
+ total?: number;
7404
+ limit?: number;
7405
+ skip?: number;
7406
+ hasMore?: boolean;
7407
+ };
7408
+ });
7409
+ type GetWhatsAppBroadcastsError = (unknown | {
7410
+ error?: string;
7411
+ });
7412
+ type CreateWhatsAppBroadcastData = {
7413
+ body: {
7414
+ /**
7415
+ * WhatsApp social account ID
7416
+ */
7417
+ accountId: string;
7418
+ /**
7419
+ * Broadcast name
7420
+ */
7421
+ name: string;
7422
+ /**
7423
+ * Broadcast description
7424
+ */
7425
+ description?: string;
7426
+ template: {
7427
+ /**
7428
+ * Template name
7429
+ */
7430
+ name: string;
7431
+ /**
7432
+ * Template language code
7433
+ */
7434
+ language: string;
7435
+ /**
7436
+ * Base template components
7437
+ */
7438
+ components?: Array<{
7439
+ [key: string]: unknown;
7440
+ }>;
7441
+ };
7442
+ /**
7443
+ * Initial recipients (optional)
7444
+ */
7445
+ recipients?: Array<{
7446
+ /**
7447
+ * Phone number in E.164 format
7448
+ */
7449
+ phone: string;
7450
+ name?: string;
7451
+ /**
7452
+ * Per-recipient template variables
7453
+ */
7454
+ variables?: {
7455
+ [key: string]: (string);
7456
+ };
7457
+ }>;
7458
+ };
7459
+ };
7460
+ type CreateWhatsAppBroadcastResponse = ({
7461
+ success?: boolean;
7462
+ broadcast?: {
7463
+ id?: string;
7464
+ name?: string;
7465
+ description?: string;
7466
+ template?: {
7467
+ [key: string]: unknown;
7468
+ };
7469
+ /**
7470
+ * Always "draft" for new broadcasts
7471
+ */
7472
+ status?: string;
7473
+ recipientCount?: number;
7474
+ createdAt?: string;
7475
+ };
7476
+ });
7477
+ type CreateWhatsAppBroadcastError = (unknown | {
7478
+ error?: string;
7479
+ });
7480
+ type GetWhatsAppBroadcastData = {
7481
+ path: {
7482
+ /**
7483
+ * Broadcast ID
7484
+ */
7485
+ broadcastId: string;
7486
+ };
7487
+ };
7488
+ type GetWhatsAppBroadcastResponse = ({
7489
+ success?: boolean;
7490
+ broadcast?: {
7491
+ id?: string;
7492
+ name?: string;
7493
+ description?: string;
7494
+ template?: {
7495
+ [key: string]: unknown;
7496
+ };
7497
+ status?: 'draft' | 'scheduled' | 'sending' | 'completed' | 'failed' | 'cancelled';
7498
+ recipientCount?: number;
7499
+ scheduledAt?: string;
7500
+ startedAt?: string;
7501
+ completedAt?: string;
7502
+ sentCount?: number;
7503
+ deliveredCount?: number;
7504
+ readCount?: number;
7505
+ failedCount?: number;
7506
+ createdAt?: string;
7507
+ updatedAt?: string;
7508
+ };
7509
+ });
7510
+ type GetWhatsAppBroadcastError = ({
7511
+ error?: string;
7512
+ });
7513
+ type DeleteWhatsAppBroadcastData = {
7514
+ path: {
7515
+ /**
7516
+ * Broadcast ID
7517
+ */
7518
+ broadcastId: string;
7519
+ };
7520
+ };
7521
+ type DeleteWhatsAppBroadcastResponse = ({
7522
+ success?: boolean;
7523
+ message?: string;
7524
+ });
7525
+ type DeleteWhatsAppBroadcastError = (unknown | {
7526
+ error?: string;
7527
+ });
7528
+ type SendWhatsAppBroadcastData = {
7529
+ path: {
7530
+ /**
7531
+ * Broadcast ID
7532
+ */
7533
+ broadcastId: string;
7534
+ };
7535
+ };
7536
+ type SendWhatsAppBroadcastResponse = ({
7537
+ success?: boolean;
7538
+ /**
7539
+ * Final broadcast status
7540
+ */
7541
+ status?: 'completed' | 'failed';
7542
+ /**
7543
+ * Number of messages sent successfully
7544
+ */
7545
+ sent?: number;
7546
+ /**
7547
+ * Number of messages that failed
7548
+ */
7549
+ failed?: number;
7550
+ /**
7551
+ * Total recipient count
7552
+ */
7553
+ total?: number;
7554
+ });
7555
+ type SendWhatsAppBroadcastError = (unknown | {
7556
+ error?: string;
7557
+ });
7558
+ type ScheduleWhatsAppBroadcastData = {
7559
+ body: {
7560
+ /**
7561
+ * ISO 8601 date-time for sending (must be in the future, max 30 days)
7562
+ */
7563
+ scheduledAt: string;
7564
+ };
7565
+ path: {
7566
+ /**
7567
+ * Broadcast ID
7568
+ */
7569
+ broadcastId: string;
7570
+ };
7571
+ };
7572
+ type ScheduleWhatsAppBroadcastResponse = ({
7573
+ success?: boolean;
7574
+ broadcast?: {
7575
+ id?: string;
7576
+ /**
7577
+ * "scheduled"
7578
+ */
7579
+ status?: string;
7580
+ scheduledAt?: string;
7581
+ };
7582
+ });
7583
+ type ScheduleWhatsAppBroadcastError = (unknown | {
7584
+ error?: string;
7585
+ });
7586
+ type CancelWhatsAppBroadcastScheduleData = {
7587
+ path: {
7588
+ /**
7589
+ * Broadcast ID
7590
+ */
7591
+ broadcastId: string;
7592
+ };
7593
+ };
7594
+ type CancelWhatsAppBroadcastScheduleResponse = ({
7595
+ success?: boolean;
7596
+ broadcast?: {
7597
+ id?: string;
7598
+ /**
7599
+ * "draft"
7600
+ */
7601
+ status?: string;
7602
+ };
7603
+ message?: string;
7604
+ });
7605
+ type CancelWhatsAppBroadcastScheduleError = (unknown | {
7606
+ error?: string;
7607
+ });
7608
+ type GetWhatsAppBroadcastRecipientsData = {
7609
+ path: {
7610
+ /**
7611
+ * Broadcast ID
7612
+ */
7613
+ broadcastId: string;
7614
+ };
7615
+ query?: {
7616
+ /**
7617
+ * Maximum results (default 100)
7618
+ */
7619
+ limit?: number;
7620
+ /**
7621
+ * Offset for pagination
7622
+ */
7623
+ skip?: number;
7624
+ /**
7625
+ * Filter by recipient delivery status
7626
+ */
7627
+ status?: 'pending' | 'sent' | 'delivered' | 'read' | 'failed';
7628
+ };
7629
+ };
7630
+ type GetWhatsAppBroadcastRecipientsResponse = ({
7631
+ success?: boolean;
7632
+ recipients?: Array<{
7633
+ phone?: string;
7634
+ name?: string;
7635
+ variables?: {
7636
+ [key: string]: unknown;
7637
+ };
7638
+ status?: 'pending' | 'sent' | 'delivered' | 'read' | 'failed';
7639
+ messageId?: string;
7640
+ error?: string;
7641
+ sentAt?: string;
7642
+ deliveredAt?: string;
7643
+ readAt?: string;
7644
+ }>;
7645
+ pagination?: {
7646
+ total?: number;
7647
+ limit?: number;
7648
+ skip?: number;
7649
+ hasMore?: boolean;
7650
+ };
7651
+ summary?: {
7652
+ total?: number;
7653
+ pending?: number;
7654
+ sent?: number;
7655
+ delivered?: number;
7656
+ read?: number;
7657
+ failed?: number;
7658
+ };
7659
+ });
7660
+ type GetWhatsAppBroadcastRecipientsError = ({
7661
+ error?: string;
7662
+ });
7663
+ type AddWhatsAppBroadcastRecipientsData = {
7664
+ body: {
7665
+ /**
7666
+ * Recipients to add (max 1000)
7667
+ */
7668
+ recipients: Array<{
7669
+ /**
7670
+ * Phone number in E.164 format
7671
+ */
7672
+ phone: string;
7673
+ name?: string;
7674
+ variables?: {
7675
+ [key: string]: (string);
7676
+ };
7677
+ }>;
7678
+ };
7679
+ path: {
7680
+ /**
7681
+ * Broadcast ID
7682
+ */
7683
+ broadcastId: string;
7684
+ };
7685
+ };
7686
+ type AddWhatsAppBroadcastRecipientsResponse = ({
7687
+ success?: boolean;
7688
+ /**
7689
+ * Number of new recipients added
7690
+ */
7691
+ added?: number;
7692
+ /**
7693
+ * Number of duplicate phone numbers skipped
7694
+ */
7695
+ duplicates?: number;
7696
+ /**
7697
+ * Total recipient count after addition
7698
+ */
7699
+ totalRecipients?: number;
7700
+ });
7701
+ type AddWhatsAppBroadcastRecipientsError = (unknown | {
7702
+ error?: string;
7703
+ });
7704
+ type RemoveWhatsAppBroadcastRecipientsData = {
7705
+ body: {
7706
+ /**
7707
+ * Phone numbers to remove
7708
+ */
7709
+ phones: Array<(string)>;
7710
+ };
7711
+ path: {
7712
+ /**
7713
+ * Broadcast ID
7714
+ */
7715
+ broadcastId: string;
7716
+ };
7717
+ };
7718
+ type RemoveWhatsAppBroadcastRecipientsResponse = ({
7719
+ success?: boolean;
7720
+ /**
7721
+ * Number of recipients removed
7722
+ */
7723
+ removed?: number;
7724
+ /**
7725
+ * Remaining recipient count
7726
+ */
7727
+ totalRecipients?: number;
7728
+ });
7729
+ type RemoveWhatsAppBroadcastRecipientsError = (unknown | {
7730
+ error?: string;
7731
+ });
7732
+ type GetWhatsAppBusinessProfileData = {
7733
+ query: {
7734
+ /**
7735
+ * WhatsApp social account ID
7736
+ */
7737
+ accountId: string;
7738
+ };
7739
+ };
7740
+ type GetWhatsAppBusinessProfileResponse = ({
7741
+ success?: boolean;
7742
+ businessProfile?: {
7743
+ /**
7744
+ * Short description (max 139 chars)
7745
+ */
7746
+ about?: string;
7747
+ address?: string;
7748
+ /**
7749
+ * Full description (max 512 chars)
7750
+ */
7751
+ description?: string;
7752
+ email?: string;
7753
+ profilePictureUrl?: string;
7754
+ websites?: Array<(string)>;
7755
+ /**
7756
+ * Business category
7757
+ */
7758
+ vertical?: string;
7759
+ };
7760
+ });
7761
+ type GetWhatsAppBusinessProfileError = (unknown | {
7762
+ error?: string;
7763
+ });
7764
+ type UpdateWhatsAppBusinessProfileData = {
7765
+ body: {
7766
+ /**
7767
+ * WhatsApp social account ID
7768
+ */
7769
+ accountId: string;
7770
+ /**
7771
+ * Short business description (max 139 characters)
7772
+ */
7773
+ about?: string;
7774
+ /**
7775
+ * Business address
7776
+ */
7777
+ address?: string;
7778
+ /**
7779
+ * Full business description (max 512 characters)
7780
+ */
7781
+ description?: string;
7782
+ /**
7783
+ * Business email
7784
+ */
7785
+ email?: string;
7786
+ /**
7787
+ * Business websites (max 2)
7788
+ */
7789
+ websites?: Array<(string)>;
7790
+ /**
7791
+ * Business category (e.g., RETAIL, ENTERTAINMENT, etc.)
7792
+ */
7793
+ vertical?: string;
7794
+ /**
7795
+ * Handle from resumable upload for profile picture
7796
+ */
7797
+ profilePictureHandle?: string;
7798
+ };
7799
+ };
7800
+ type UpdateWhatsAppBusinessProfileResponse = ({
7801
+ success?: boolean;
7802
+ message?: string;
7803
+ });
7804
+ type UpdateWhatsAppBusinessProfileError = (unknown | {
7805
+ error?: string;
7806
+ });
7807
+ type GetWhatsAppPhoneNumbersData = {
7808
+ query?: {
7809
+ /**
7810
+ * Filter by profile
7811
+ */
7812
+ profileId?: string;
7813
+ /**
7814
+ * Filter by status (by default excludes released numbers)
7815
+ */
7816
+ status?: 'provisioning' | 'active' | 'suspended' | 'releasing' | 'released';
7817
+ };
7818
+ };
7819
+ type GetWhatsAppPhoneNumbersResponse = ({
7820
+ numbers?: Array<{
7821
+ _id?: string;
7822
+ phoneNumber?: string;
7823
+ country?: string;
7824
+ status?: 'pending_payment' | 'provisioning' | 'active' | 'suspended' | 'releasing' | 'released';
7825
+ profileId?: {
7826
+ [key: string]: unknown;
7827
+ };
7828
+ provisionedAt?: string;
7829
+ metaPreverifiedId?: string;
7830
+ metaVerificationStatus?: string;
7831
+ createdAt?: string;
7832
+ }>;
7833
+ });
7834
+ type GetWhatsAppPhoneNumbersError = ({
7835
+ error?: string;
7836
+ });
7837
+ type PurchaseWhatsAppPhoneNumberData = {
7838
+ body: {
7839
+ /**
7840
+ * Profile to associate the number with
7841
+ */
7842
+ profileId: string;
7843
+ };
7844
+ };
7845
+ type PurchaseWhatsAppPhoneNumberResponse = (({
7846
+ message?: string;
7847
+ checkoutUrl?: string;
7848
+ } | {
7849
+ message?: string;
7850
+ phoneNumber?: {
7851
+ id?: string;
7852
+ phoneNumber?: string;
7853
+ status?: string;
7854
+ country?: string;
7855
+ provisionedAt?: string;
7856
+ metaPreverifiedId?: string;
7857
+ metaVerificationStatus?: string;
7858
+ };
7859
+ }));
7860
+ type PurchaseWhatsAppPhoneNumberError = (unknown | {
7861
+ error?: string;
7862
+ });
7863
+ type GetWhatsAppPhoneNumberData = {
7864
+ path: {
7865
+ /**
7866
+ * Phone number record ID
7867
+ */
7868
+ phoneNumberId: string;
7869
+ };
7870
+ };
7871
+ type GetWhatsAppPhoneNumberResponse = ({
7872
+ phoneNumber?: {
7873
+ id?: string;
7874
+ phoneNumber?: string;
7875
+ status?: 'pending_payment' | 'provisioning' | 'active' | 'suspended' | 'releasing' | 'released';
7876
+ country?: string;
7877
+ metaPreverifiedId?: string;
7878
+ metaVerificationStatus?: string;
7879
+ provisionedAt?: string;
7880
+ };
7881
+ });
7882
+ type GetWhatsAppPhoneNumberError = ({
7883
+ error?: string;
7884
+ });
7885
+ type ReleaseWhatsAppPhoneNumberData = {
7886
+ path: {
7887
+ /**
7888
+ * Phone number record ID
7889
+ */
7890
+ phoneNumberId: string;
7891
+ };
7892
+ };
7893
+ type ReleaseWhatsAppPhoneNumberResponse = ({
7894
+ message?: string;
7895
+ phoneNumber?: {
7896
+ id?: string;
7897
+ phoneNumber?: string;
7898
+ /**
7899
+ * "released"
7900
+ */
7901
+ status?: string;
7902
+ releasedAt?: string;
7903
+ };
7904
+ });
7905
+ type ReleaseWhatsAppPhoneNumberError = (unknown | {
7906
+ error?: string;
7907
+ });
6667
7908
 
6668
- export { type AccountGetResponse, type AccountWithFollowerStats, type AccountsListResponse, type AnalyticsListResponse, type AnalyticsOverview, type AnalyticsSinglePostResponse, type ApiKey, type BlueskyPlatformData, type BulkUploadPostsData, type BulkUploadPostsError, type BulkUploadPostsResponse, type CaptionResponse, type CheckInstagramHashtagsData, type CheckInstagramHashtagsError, type CheckInstagramHashtagsResponse, type ClientOptions, type CompleteTelegramConnectData, type CompleteTelegramConnectError, type CompleteTelegramConnectResponse, type ConnectBlueskyCredentialsData, type ConnectBlueskyCredentialsError, type ConnectBlueskyCredentialsResponse, type ConnectionLog, type CreateAccountGroupData, type CreateAccountGroupError, type CreateAccountGroupResponse, type CreateApiKeyData, type CreateApiKeyError, type CreateApiKeyResponse, type CreateGoogleBusinessMediaData, type CreateGoogleBusinessMediaError, type CreateGoogleBusinessMediaResponse, type CreateGoogleBusinessPlaceActionData, type CreateGoogleBusinessPlaceActionError, type CreateGoogleBusinessPlaceActionResponse, type CreateInviteTokenData, type CreateInviteTokenError, type CreateInviteTokenResponse, type CreatePostData, type CreatePostError, type CreatePostResponse, type CreateProfileData, type CreateProfileError, type CreateProfileResponse, type CreateQueueSlotData, type CreateQueueSlotError, type CreateQueueSlotResponse, type CreateWebhookSettingsData, type CreateWebhookSettingsError, type CreateWebhookSettingsResponse, type DeleteAccountData, type DeleteAccountError, type DeleteAccountGroupData, type DeleteAccountGroupError, type DeleteAccountGroupResponse, type DeleteAccountResponse, type DeleteApiKeyData, type DeleteApiKeyError, type DeleteApiKeyResponse, type DeleteGoogleBusinessMediaData, type DeleteGoogleBusinessMediaError, type DeleteGoogleBusinessMediaResponse, type DeleteGoogleBusinessPlaceActionData, type DeleteGoogleBusinessPlaceActionError, type DeleteGoogleBusinessPlaceActionResponse, type DeleteInboxCommentData, type DeleteInboxCommentError, type DeleteInboxCommentResponse, type DeleteInboxReviewReplyData, type DeleteInboxReviewReplyError, type DeleteInboxReviewReplyResponse, type DeleteInstagramIceBreakersData, type DeleteInstagramIceBreakersError, type DeleteInstagramIceBreakersResponse, type DeleteMessengerMenuData, type DeleteMessengerMenuError, type DeleteMessengerMenuResponse, type DeletePostData, type DeletePostError, type DeletePostResponse, type DeleteProfileData, type DeleteProfileError, type DeleteProfileResponse, type DeleteQueueSlotData, type DeleteQueueSlotError, type DeleteQueueSlotResponse, type DeleteTelegramCommandsData, type DeleteTelegramCommandsError, type DeleteTelegramCommandsResponse, type DeleteWebhookSettingsData, type DeleteWebhookSettingsError, type DeleteWebhookSettingsResponse, type DownloadBlueskyMediaData, type DownloadBlueskyMediaError, type DownloadBlueskyMediaResponse, type DownloadFacebookVideoData, type DownloadFacebookVideoError, type DownloadFacebookVideoResponse, type DownloadFormat, type DownloadInstagramMediaData, type DownloadInstagramMediaError, type DownloadInstagramMediaResponse, type DownloadLinkedInVideoData, type DownloadLinkedInVideoError, type DownloadLinkedInVideoResponse, type DownloadResponse, type DownloadTikTokVideoData, type DownloadTikTokVideoError, type DownloadTikTokVideoResponse, type DownloadTwitterMediaData, type DownloadTwitterMediaError, type DownloadTwitterMediaResponse, type DownloadYouTubeVideoData, type DownloadYouTubeVideoError, type DownloadYouTubeVideoResponse, type EditInboxMessageData, type EditInboxMessageError, type EditInboxMessageResponse, type ErrorResponse, type FacebookPlatformData, type FollowerStatsResponse, type FoodMenu, type FoodMenuItem, type FoodMenuItemAttributes, type FoodMenuLabel, type FoodMenuSection, type GetAccountHealthData, type GetAccountHealthError, type GetAccountHealthResponse, type GetAllAccountsHealthData, type GetAllAccountsHealthError, type GetAllAccountsHealthResponse, type GetAnalyticsData, type GetAnalyticsError, type GetAnalyticsResponse, type GetBestTimeToPostData, type GetBestTimeToPostError, type GetBestTimeToPostResponse, type GetConnectUrlData, type GetConnectUrlError, type GetConnectUrlResponse, type GetContentDecayData, type GetContentDecayError, type GetContentDecayResponse, type GetDailyMetricsData, type GetDailyMetricsError, type GetDailyMetricsResponse, type GetFacebookPagesData, type GetFacebookPagesError, type GetFacebookPagesResponse, type GetFollowerStatsData, type GetFollowerStatsError, type GetFollowerStatsResponse, type GetGmbLocationsData, type GetGmbLocationsError, type GetGmbLocationsResponse, type GetGoogleBusinessAttributesData, type GetGoogleBusinessAttributesError, type GetGoogleBusinessAttributesResponse, type GetGoogleBusinessFoodMenusData, type GetGoogleBusinessFoodMenusError, type GetGoogleBusinessFoodMenusResponse, type GetGoogleBusinessLocationDetailsData, type GetGoogleBusinessLocationDetailsError, type GetGoogleBusinessLocationDetailsResponse, type GetGoogleBusinessReviewsData, type GetGoogleBusinessReviewsError, type GetGoogleBusinessReviewsResponse, type GetInboxConversationData, type GetInboxConversationError, type GetInboxConversationMessagesData, type GetInboxConversationMessagesError, type GetInboxConversationMessagesResponse, type GetInboxConversationResponse, type GetInboxPostCommentsData, type GetInboxPostCommentsError, type GetInboxPostCommentsResponse, type GetInstagramIceBreakersData, type GetInstagramIceBreakersError, type GetInstagramIceBreakersResponse, type GetLinkedInAggregateAnalyticsData, type GetLinkedInAggregateAnalyticsError, type GetLinkedInAggregateAnalyticsResponse, type GetLinkedInMentionsData, type GetLinkedInMentionsError, type GetLinkedInMentionsResponse, type GetLinkedInOrganizationsData, type GetLinkedInOrganizationsError, type GetLinkedInOrganizationsResponse, type GetLinkedInPostAnalyticsData, type GetLinkedInPostAnalyticsError, type GetLinkedInPostAnalyticsResponse, type GetLinkedInPostReactionsData, type GetLinkedInPostReactionsError, type GetLinkedInPostReactionsResponse, type GetMediaPresignedUrlData, type GetMediaPresignedUrlError, type GetMediaPresignedUrlResponse, type GetMessengerMenuData, type GetMessengerMenuError, type GetMessengerMenuResponse, type GetNextQueueSlotData, type GetNextQueueSlotError, type GetNextQueueSlotResponse, type GetPendingOAuthDataData, type GetPendingOAuthDataError, type GetPendingOAuthDataResponse, type GetPinterestBoardsData, type GetPinterestBoardsError, type GetPinterestBoardsResponse, type GetPostData, type GetPostError, type GetPostLogsData, type GetPostLogsError, type GetPostLogsResponse, type GetPostResponse, type GetPostTimelineData, type GetPostTimelineError, type GetPostTimelineResponse, type GetPostingFrequencyData, type GetPostingFrequencyError, type GetPostingFrequencyResponse, type GetProfileData, type GetProfileError, type GetProfileResponse, type GetRedditFeedData, type GetRedditFeedError, type GetRedditFeedResponse, type GetRedditFlairsData, type GetRedditFlairsError, type GetRedditFlairsResponse, type GetRedditSubredditsData, type GetRedditSubredditsError, type GetRedditSubredditsResponse, type GetTelegramCommandsData, type GetTelegramCommandsError, type GetTelegramCommandsResponse, type GetTelegramConnectStatusData, type GetTelegramConnectStatusError, type GetTelegramConnectStatusResponse, type GetUsageStatsError, type GetUsageStatsResponse, type GetUserData, type GetUserError, type GetUserResponse, type GetWebhookLogsData, type GetWebhookLogsError, type GetWebhookLogsResponse, type GetWebhookSettingsError, type GetWebhookSettingsResponse, type GetYouTubeDailyViewsData, type GetYouTubeDailyViewsError, type GetYouTubeDailyViewsResponse, type GetYouTubeTranscriptData, type GetYouTubeTranscriptError, type GetYouTubeTranscriptResponse, type GoogleBusinessPlatformData, type HandleOAuthCallbackData, type HandleOAuthCallbackError, type HandleOAuthCallbackResponse, type HashtagCheckResponse, type HashtagInfo, type HideInboxCommentData, type HideInboxCommentError, type HideInboxCommentResponse, type InitiateTelegramConnectData, type InitiateTelegramConnectError, type InitiateTelegramConnectResponse, type InstagramPlatformData, Late, LateApiError, type LikeInboxCommentData, type LikeInboxCommentError, type LikeInboxCommentResponse, type LinkedInAggregateAnalyticsDailyResponse, type LinkedInAggregateAnalyticsTotalResponse, type LinkedInPlatformData, type ListAccountGroupsError, type ListAccountGroupsResponse, type ListAccountsData, type ListAccountsError, type ListAccountsResponse, type ListApiKeysError, type ListApiKeysResponse, type ListConnectionLogsData, type ListConnectionLogsError, type ListConnectionLogsResponse, type ListFacebookPagesData, type ListFacebookPagesError, type ListFacebookPagesResponse, type ListGoogleBusinessLocationsData, type ListGoogleBusinessLocationsError, type ListGoogleBusinessLocationsResponse, type ListGoogleBusinessMediaData, type ListGoogleBusinessMediaError, type ListGoogleBusinessMediaResponse, type ListGoogleBusinessPlaceActionsData, type ListGoogleBusinessPlaceActionsError, type ListGoogleBusinessPlaceActionsResponse, type ListInboxCommentsData, type ListInboxCommentsError, type ListInboxCommentsResponse, type ListInboxConversationsData, type ListInboxConversationsError, type ListInboxConversationsResponse, type ListInboxReviewsData, type ListInboxReviewsError, type ListInboxReviewsResponse, type ListLinkedInOrganizationsData, type ListLinkedInOrganizationsError, type ListLinkedInOrganizationsResponse, type ListPinterestBoardsForSelectionData, type ListPinterestBoardsForSelectionError, type ListPinterestBoardsForSelectionResponse, type ListPostsData, type ListPostsError, type ListPostsLogsData, type ListPostsLogsError, type ListPostsLogsResponse, type ListPostsResponse, type ListProfilesData, type ListProfilesError, type ListProfilesResponse, type ListQueueSlotsData, type ListQueueSlotsError, type ListQueueSlotsResponse, type ListSnapchatProfilesData, type ListSnapchatProfilesError, type ListSnapchatProfilesResponse, type ListUsersError, type ListUsersResponse, type MediaItem, type MediaUploadResponse, type Money, type Pagination, type ParameterLimitParam, type ParameterPageParam, type PinterestPlatformData, type PlatformAnalytics, type PlatformTarget, type Post, type PostAnalytics, type PostCreateResponse, type PostDeleteResponse, type PostGetResponse, type PostLog, type PostRetryResponse, type PostUpdateResponse, type PostsListResponse, type PreviewQueueData, type PreviewQueueError, type PreviewQueueResponse, type Profile, type ProfileCreateResponse, type ProfileDeleteResponse, type ProfileGetResponse, type ProfileUpdateResponse, type ProfilesListResponse, type QueueDeleteResponse, type QueueNextSlotResponse, type QueuePreviewResponse, type QueueSchedule, type QueueSlot, type QueueSlotsResponse, type QueueUpdateResponse, RateLimitError, type RecyclingConfig, type RecyclingState, type RedditPlatformData, type ReplyToInboxPostData, type ReplyToInboxPostError, type ReplyToInboxPostResponse, type ReplyToInboxReviewData, type ReplyToInboxReviewError, type ReplyToInboxReviewResponse, type RetryPostData, type RetryPostError, type RetryPostResponse, type SearchRedditData, type SearchRedditError, type SearchRedditResponse, type SelectFacebookPageData, type SelectFacebookPageError, type SelectFacebookPageResponse, type SelectGoogleBusinessLocationData, type SelectGoogleBusinessLocationError, type SelectGoogleBusinessLocationResponse, type SelectLinkedInOrganizationData, type SelectLinkedInOrganizationError, type SelectLinkedInOrganizationResponse, type SelectPinterestBoardData, type SelectPinterestBoardError, type SelectPinterestBoardResponse, type SelectSnapchatProfileData, type SelectSnapchatProfileError, type SelectSnapchatProfileResponse, type SendInboxMessageData, type SendInboxMessageError, type SendInboxMessageResponse, type SendPrivateReplyToCommentData, type SendPrivateReplyToCommentError, type SendPrivateReplyToCommentResponse, type SetInstagramIceBreakersData, type SetInstagramIceBreakersError, type SetInstagramIceBreakersResponse, type SetMessengerMenuData, type SetMessengerMenuError, type SetMessengerMenuResponse, type SetTelegramCommandsData, type SetTelegramCommandsError, type SetTelegramCommandsResponse, type SnapchatPlatformData, type SocialAccount, type TelegramPlatformData, type TestWebhookData, type TestWebhookError, type TestWebhookResponse, type ThreadsPlatformData, type TikTokPlatformData, type TranscriptResponse, type TranscriptSegment, type TwitterPlatformData, type UnhideInboxCommentData, type UnhideInboxCommentError, type UnhideInboxCommentResponse, type UnlikeInboxCommentData, type UnlikeInboxCommentError, type UnlikeInboxCommentResponse, type UnpublishPostData, type UnpublishPostError, type UnpublishPostResponse, type UpdateAccountData, type UpdateAccountError, type UpdateAccountGroupData, type UpdateAccountGroupError, type UpdateAccountGroupResponse, type UpdateAccountResponse, type UpdateFacebookPageData, type UpdateFacebookPageError, type UpdateFacebookPageResponse, type UpdateGmbLocationData, type UpdateGmbLocationError, type UpdateGmbLocationResponse, type UpdateGoogleBusinessAttributesData, type UpdateGoogleBusinessAttributesError, type UpdateGoogleBusinessAttributesResponse, type UpdateGoogleBusinessFoodMenusData, type UpdateGoogleBusinessFoodMenusError, type UpdateGoogleBusinessFoodMenusResponse, type UpdateGoogleBusinessLocationDetailsData, type UpdateGoogleBusinessLocationDetailsError, type UpdateGoogleBusinessLocationDetailsResponse, type UpdateInboxConversationData, type UpdateInboxConversationError, type UpdateInboxConversationResponse, type UpdateLinkedInOrganizationData, type UpdateLinkedInOrganizationError, type UpdateLinkedInOrganizationResponse, type UpdatePinterestBoardsData, type UpdatePinterestBoardsError, type UpdatePinterestBoardsResponse, type UpdatePostData, type UpdatePostError, type UpdatePostResponse, type UpdateProfileData, type UpdateProfileError, type UpdateProfileResponse, type UpdateQueueSlotData, type UpdateQueueSlotError, type UpdateQueueSlotResponse, type UpdateRedditSubredditsData, type UpdateRedditSubredditsError, type UpdateRedditSubredditsResponse, type UpdateWebhookSettingsData, type UpdateWebhookSettingsError, type UpdateWebhookSettingsResponse, type UploadTokenResponse, type UploadTokenStatusResponse, type UploadedFile, type UsageStats, type User, type UserGetResponse, type UsersListResponse, type ValidateMediaData, type ValidateMediaError, type ValidateMediaResponse, type ValidatePostData, type ValidatePostError, type ValidatePostLengthData, type ValidatePostLengthError, type ValidatePostLengthResponse, type ValidatePostResponse, type ValidateSubredditData, type ValidateSubredditError, type ValidateSubredditResponse, ValidationError, type Webhook, type WebhookLog, type WebhookPayloadAccountConnected, type WebhookPayloadAccountDisconnected, type WebhookPayloadComment, type WebhookPayloadMessage, type WebhookPayloadPost, type YouTubeDailyViewsResponse, type YouTubePlatformData, type YouTubeScopeMissingResponse, type action, type aggregation, type aggregation2, type aggregation3, type billingPeriod, type commercialContentType, type connectionMethod, type contentType, type contentType2, type contentType3, Late as default, type direction, type disconnectionType, type errorCategory, type errorSource, type event, type event2, type event3, type event4, type event5, type event6, type eventType, type gapFreq, type graduationStrategy, type mediaType, parseApiError, type parseMode, type permission, type platform, type platform2, type platform3, type replySettings, type scope, type status, type status2, type status3, type status4, type status5, type status6, type type, type type2, type type3, type visibility };
7909
+ export { type AccountGetResponse, type AccountWithFollowerStats, type AccountsListResponse, type AddWhatsAppBroadcastRecipientsData, type AddWhatsAppBroadcastRecipientsError, type AddWhatsAppBroadcastRecipientsResponse, type AnalyticsListResponse, type AnalyticsOverview, type AnalyticsSinglePostResponse, type ApiKey, type BlueskyPlatformData, type BulkDeleteWhatsAppContactsData, type BulkDeleteWhatsAppContactsError, type BulkDeleteWhatsAppContactsResponse, type BulkUpdateWhatsAppContactsData, type BulkUpdateWhatsAppContactsError, type BulkUpdateWhatsAppContactsResponse, type BulkUploadPostsData, type BulkUploadPostsError, type BulkUploadPostsResponse, type CancelWhatsAppBroadcastScheduleData, type CancelWhatsAppBroadcastScheduleError, type CancelWhatsAppBroadcastScheduleResponse, type CaptionResponse, type CheckInstagramHashtagsData, type CheckInstagramHashtagsError, type CheckInstagramHashtagsResponse, type ClientOptions, type CompleteTelegramConnectData, type CompleteTelegramConnectError, type CompleteTelegramConnectResponse, type ConnectBlueskyCredentialsData, type ConnectBlueskyCredentialsError, type ConnectBlueskyCredentialsResponse, type ConnectionLog, type CreateAccountGroupData, type CreateAccountGroupError, type CreateAccountGroupResponse, type CreateApiKeyData, type CreateApiKeyError, type CreateApiKeyResponse, type CreateGoogleBusinessMediaData, type CreateGoogleBusinessMediaError, type CreateGoogleBusinessMediaResponse, type CreateGoogleBusinessPlaceActionData, type CreateGoogleBusinessPlaceActionError, type CreateGoogleBusinessPlaceActionResponse, type CreateInviteTokenData, type CreateInviteTokenError, type CreateInviteTokenResponse, type CreatePostData, type CreatePostError, type CreatePostResponse, type CreateProfileData, type CreateProfileError, type CreateProfileResponse, type CreateQueueSlotData, type CreateQueueSlotError, type CreateQueueSlotResponse, type CreateWebhookSettingsData, type CreateWebhookSettingsError, type CreateWebhookSettingsResponse, type CreateWhatsAppBroadcastData, type CreateWhatsAppBroadcastError, type CreateWhatsAppBroadcastResponse, type CreateWhatsAppContactData, type CreateWhatsAppContactError, type CreateWhatsAppContactResponse, type CreateWhatsAppTemplateData, type CreateWhatsAppTemplateError, type CreateWhatsAppTemplateResponse, type DeleteAccountData, type DeleteAccountError, type DeleteAccountGroupData, type DeleteAccountGroupError, type DeleteAccountGroupResponse, type DeleteAccountResponse, type DeleteApiKeyData, type DeleteApiKeyError, type DeleteApiKeyResponse, type DeleteGoogleBusinessMediaData, type DeleteGoogleBusinessMediaError, type DeleteGoogleBusinessMediaResponse, type DeleteGoogleBusinessPlaceActionData, type DeleteGoogleBusinessPlaceActionError, type DeleteGoogleBusinessPlaceActionResponse, type DeleteInboxCommentData, type DeleteInboxCommentError, type DeleteInboxCommentResponse, type DeleteInboxReviewReplyData, type DeleteInboxReviewReplyError, type DeleteInboxReviewReplyResponse, type DeleteInstagramIceBreakersData, type DeleteInstagramIceBreakersError, type DeleteInstagramIceBreakersResponse, type DeleteMessengerMenuData, type DeleteMessengerMenuError, type DeleteMessengerMenuResponse, type DeletePostData, type DeletePostError, type DeletePostResponse, type DeleteProfileData, type DeleteProfileError, type DeleteProfileResponse, type DeleteQueueSlotData, type DeleteQueueSlotError, type DeleteQueueSlotResponse, type DeleteTelegramCommandsData, type DeleteTelegramCommandsError, type DeleteTelegramCommandsResponse, type DeleteWebhookSettingsData, type DeleteWebhookSettingsError, type DeleteWebhookSettingsResponse, type DeleteWhatsAppBroadcastData, type DeleteWhatsAppBroadcastError, type DeleteWhatsAppBroadcastResponse, type DeleteWhatsAppContactData, type DeleteWhatsAppContactError, type DeleteWhatsAppContactResponse, type DeleteWhatsAppGroupData, type DeleteWhatsAppGroupError, type DeleteWhatsAppGroupResponse, type DeleteWhatsAppTemplateData, type DeleteWhatsAppTemplateError, type DeleteWhatsAppTemplateResponse, type DownloadBlueskyMediaData, type DownloadBlueskyMediaError, type DownloadBlueskyMediaResponse, type DownloadFacebookVideoData, type DownloadFacebookVideoError, type DownloadFacebookVideoResponse, type DownloadFormat, type DownloadInstagramMediaData, type DownloadInstagramMediaError, type DownloadInstagramMediaResponse, type DownloadLinkedInVideoData, type DownloadLinkedInVideoError, type DownloadLinkedInVideoResponse, type DownloadResponse, type DownloadTikTokVideoData, type DownloadTikTokVideoError, type DownloadTikTokVideoResponse, type DownloadTwitterMediaData, type DownloadTwitterMediaError, type DownloadTwitterMediaResponse, type DownloadYouTubeVideoData, type DownloadYouTubeVideoError, type DownloadYouTubeVideoResponse, type EditInboxMessageData, type EditInboxMessageError, type EditInboxMessageResponse, type ErrorResponse, type FacebookPlatformData, type FollowerStatsResponse, type FoodMenu, type FoodMenuItem, type FoodMenuItemAttributes, type FoodMenuLabel, type FoodMenuSection, type GetAccountHealthData, type GetAccountHealthError, type GetAccountHealthResponse, type GetAllAccountsHealthData, type GetAllAccountsHealthError, type GetAllAccountsHealthResponse, type GetAnalyticsData, type GetAnalyticsError, type GetAnalyticsResponse, type GetBestTimeToPostData, type GetBestTimeToPostError, type GetBestTimeToPostResponse, type GetConnectUrlData, type GetConnectUrlError, type GetConnectUrlResponse, type GetContentDecayData, type GetContentDecayError, type GetContentDecayResponse, type GetDailyMetricsData, type GetDailyMetricsError, type GetDailyMetricsResponse, type GetFacebookPagesData, type GetFacebookPagesError, type GetFacebookPagesResponse, type GetFollowerStatsData, type GetFollowerStatsError, type GetFollowerStatsResponse, type GetGmbLocationsData, type GetGmbLocationsError, type GetGmbLocationsResponse, type GetGoogleBusinessAttributesData, type GetGoogleBusinessAttributesError, type GetGoogleBusinessAttributesResponse, type GetGoogleBusinessFoodMenusData, type GetGoogleBusinessFoodMenusError, type GetGoogleBusinessFoodMenusResponse, type GetGoogleBusinessLocationDetailsData, type GetGoogleBusinessLocationDetailsError, type GetGoogleBusinessLocationDetailsResponse, type GetGoogleBusinessReviewsData, type GetGoogleBusinessReviewsError, type GetGoogleBusinessReviewsResponse, type GetInboxConversationData, type GetInboxConversationError, type GetInboxConversationMessagesData, type GetInboxConversationMessagesError, type GetInboxConversationMessagesResponse, type GetInboxConversationResponse, type GetInboxPostCommentsData, type GetInboxPostCommentsError, type GetInboxPostCommentsResponse, type GetInstagramIceBreakersData, type GetInstagramIceBreakersError, type GetInstagramIceBreakersResponse, type GetLinkedInAggregateAnalyticsData, type GetLinkedInAggregateAnalyticsError, type GetLinkedInAggregateAnalyticsResponse, type GetLinkedInMentionsData, type GetLinkedInMentionsError, type GetLinkedInMentionsResponse, type GetLinkedInOrganizationsData, type GetLinkedInOrganizationsError, type GetLinkedInOrganizationsResponse, type GetLinkedInPostAnalyticsData, type GetLinkedInPostAnalyticsError, type GetLinkedInPostAnalyticsResponse, type GetLinkedInPostReactionsData, type GetLinkedInPostReactionsError, type GetLinkedInPostReactionsResponse, type GetMediaPresignedUrlData, type GetMediaPresignedUrlError, type GetMediaPresignedUrlResponse, type GetMessengerMenuData, type GetMessengerMenuError, type GetMessengerMenuResponse, type GetNextQueueSlotData, type GetNextQueueSlotError, type GetNextQueueSlotResponse, type GetPendingOAuthDataData, type GetPendingOAuthDataError, type GetPendingOAuthDataResponse, type GetPinterestBoardsData, type GetPinterestBoardsError, type GetPinterestBoardsResponse, type GetPostData, type GetPostError, type GetPostLogsData, type GetPostLogsError, type GetPostLogsResponse, type GetPostResponse, type GetPostTimelineData, type GetPostTimelineError, type GetPostTimelineResponse, type GetPostingFrequencyData, type GetPostingFrequencyError, type GetPostingFrequencyResponse, type GetProfileData, type GetProfileError, type GetProfileResponse, type GetRedditFeedData, type GetRedditFeedError, type GetRedditFeedResponse, type GetRedditFlairsData, type GetRedditFlairsError, type GetRedditFlairsResponse, type GetRedditSubredditsData, type GetRedditSubredditsError, type GetRedditSubredditsResponse, type GetTelegramCommandsData, type GetTelegramCommandsError, type GetTelegramCommandsResponse, type GetTelegramConnectStatusData, type GetTelegramConnectStatusError, type GetTelegramConnectStatusResponse, type GetUsageStatsError, type GetUsageStatsResponse, type GetUserData, type GetUserError, type GetUserResponse, type GetWebhookLogsData, type GetWebhookLogsError, type GetWebhookLogsResponse, type GetWebhookSettingsError, type GetWebhookSettingsResponse, type GetWhatsAppBroadcastData, type GetWhatsAppBroadcastError, type GetWhatsAppBroadcastRecipientsData, type GetWhatsAppBroadcastRecipientsError, type GetWhatsAppBroadcastRecipientsResponse, type GetWhatsAppBroadcastResponse, type GetWhatsAppBroadcastsData, type GetWhatsAppBroadcastsError, type GetWhatsAppBroadcastsResponse, type GetWhatsAppBusinessProfileData, type GetWhatsAppBusinessProfileError, type GetWhatsAppBusinessProfileResponse, type GetWhatsAppContactData, type GetWhatsAppContactError, type GetWhatsAppContactResponse, type GetWhatsAppContactsData, type GetWhatsAppContactsError, type GetWhatsAppContactsResponse, type GetWhatsAppGroupsData, type GetWhatsAppGroupsError, type GetWhatsAppGroupsResponse, type GetWhatsAppPhoneNumberData, type GetWhatsAppPhoneNumberError, type GetWhatsAppPhoneNumberResponse, type GetWhatsAppPhoneNumbersData, type GetWhatsAppPhoneNumbersError, type GetWhatsAppPhoneNumbersResponse, type GetWhatsAppTemplateData, type GetWhatsAppTemplateError, type GetWhatsAppTemplateResponse, type GetWhatsAppTemplatesData, type GetWhatsAppTemplatesError, type GetWhatsAppTemplatesResponse, type GetYouTubeDailyViewsData, type GetYouTubeDailyViewsError, type GetYouTubeDailyViewsResponse, type GetYouTubeTranscriptData, type GetYouTubeTranscriptError, type GetYouTubeTranscriptResponse, type GoogleBusinessPlatformData, type HandleOAuthCallbackData, type HandleOAuthCallbackError, type HandleOAuthCallbackResponse, type HashtagCheckResponse, type HashtagInfo, type HideInboxCommentData, type HideInboxCommentError, type HideInboxCommentResponse, type ImportWhatsAppContactsData, type ImportWhatsAppContactsError, type ImportWhatsAppContactsResponse, type InitiateTelegramConnectData, type InitiateTelegramConnectError, type InitiateTelegramConnectResponse, type InstagramPlatformData, Late, LateApiError, type LikeInboxCommentData, type LikeInboxCommentError, type LikeInboxCommentResponse, type LinkedInAggregateAnalyticsDailyResponse, type LinkedInAggregateAnalyticsTotalResponse, type LinkedInPlatformData, type ListAccountGroupsError, type ListAccountGroupsResponse, type ListAccountsData, type ListAccountsError, type ListAccountsResponse, type ListApiKeysError, type ListApiKeysResponse, type ListConnectionLogsData, type ListConnectionLogsError, type ListConnectionLogsResponse, type ListFacebookPagesData, type ListFacebookPagesError, type ListFacebookPagesResponse, type ListGoogleBusinessLocationsData, type ListGoogleBusinessLocationsError, type ListGoogleBusinessLocationsResponse, type ListGoogleBusinessMediaData, type ListGoogleBusinessMediaError, type ListGoogleBusinessMediaResponse, type ListGoogleBusinessPlaceActionsData, type ListGoogleBusinessPlaceActionsError, type ListGoogleBusinessPlaceActionsResponse, type ListInboxCommentsData, type ListInboxCommentsError, type ListInboxCommentsResponse, type ListInboxConversationsData, type ListInboxConversationsError, type ListInboxConversationsResponse, type ListInboxReviewsData, type ListInboxReviewsError, type ListInboxReviewsResponse, type ListLinkedInOrganizationsData, type ListLinkedInOrganizationsError, type ListLinkedInOrganizationsResponse, type ListPinterestBoardsForSelectionData, type ListPinterestBoardsForSelectionError, type ListPinterestBoardsForSelectionResponse, type ListPostsData, type ListPostsError, type ListPostsLogsData, type ListPostsLogsError, type ListPostsLogsResponse, type ListPostsResponse, type ListProfilesData, type ListProfilesError, type ListProfilesResponse, type ListQueueSlotsData, type ListQueueSlotsError, type ListQueueSlotsResponse, type ListSnapchatProfilesData, type ListSnapchatProfilesError, type ListSnapchatProfilesResponse, type ListUsersError, type ListUsersResponse, type MediaItem, type MediaUploadResponse, type Money, type Pagination, type ParameterLimitParam, type ParameterPageParam, type PinterestPlatformData, type PlatformAnalytics, type PlatformTarget, type Post, type PostAnalytics, type PostCreateResponse, type PostDeleteResponse, type PostGetResponse, type PostLog, type PostRetryResponse, type PostUpdateResponse, type PostsListResponse, type PreviewQueueData, type PreviewQueueError, type PreviewQueueResponse, type Profile, type ProfileCreateResponse, type ProfileDeleteResponse, type ProfileGetResponse, type ProfileUpdateResponse, type ProfilesListResponse, type PurchaseWhatsAppPhoneNumberData, type PurchaseWhatsAppPhoneNumberError, type PurchaseWhatsAppPhoneNumberResponse, type QueueDeleteResponse, type QueueNextSlotResponse, type QueuePreviewResponse, type QueueSchedule, type QueueSlot, type QueueSlotsResponse, type QueueUpdateResponse, RateLimitError, type RecyclingConfig, type RecyclingState, type RedditPlatformData, type ReleaseWhatsAppPhoneNumberData, type ReleaseWhatsAppPhoneNumberError, type ReleaseWhatsAppPhoneNumberResponse, type RemoveWhatsAppBroadcastRecipientsData, type RemoveWhatsAppBroadcastRecipientsError, type RemoveWhatsAppBroadcastRecipientsResponse, type RenameWhatsAppGroupData, type RenameWhatsAppGroupError, type RenameWhatsAppGroupResponse, type ReplyToInboxPostData, type ReplyToInboxPostError, type ReplyToInboxPostResponse, type ReplyToInboxReviewData, type ReplyToInboxReviewError, type ReplyToInboxReviewResponse, type RetryPostData, type RetryPostError, type RetryPostResponse, type ScheduleWhatsAppBroadcastData, type ScheduleWhatsAppBroadcastError, type ScheduleWhatsAppBroadcastResponse, type SearchRedditData, type SearchRedditError, type SearchRedditResponse, type SelectFacebookPageData, type SelectFacebookPageError, type SelectFacebookPageResponse, type SelectGoogleBusinessLocationData, type SelectGoogleBusinessLocationError, type SelectGoogleBusinessLocationResponse, type SelectLinkedInOrganizationData, type SelectLinkedInOrganizationError, type SelectLinkedInOrganizationResponse, type SelectPinterestBoardData, type SelectPinterestBoardError, type SelectPinterestBoardResponse, type SelectSnapchatProfileData, type SelectSnapchatProfileError, type SelectSnapchatProfileResponse, type SendInboxMessageData, type SendInboxMessageError, type SendInboxMessageResponse, type SendPrivateReplyToCommentData, type SendPrivateReplyToCommentError, type SendPrivateReplyToCommentResponse, type SendWhatsAppBroadcastData, type SendWhatsAppBroadcastError, type SendWhatsAppBroadcastResponse, type SendWhatsAppBulkData, type SendWhatsAppBulkError, type SendWhatsAppBulkResponse, type SetInstagramIceBreakersData, type SetInstagramIceBreakersError, type SetInstagramIceBreakersResponse, type SetMessengerMenuData, type SetMessengerMenuError, type SetMessengerMenuResponse, type SetTelegramCommandsData, type SetTelegramCommandsError, type SetTelegramCommandsResponse, type SnapchatPlatformData, type SocialAccount, type TelegramPlatformData, type TestWebhookData, type TestWebhookError, type TestWebhookResponse, type ThreadsPlatformData, type TikTokPlatformData, type TranscriptResponse, type TranscriptSegment, type TwitterPlatformData, type UnhideInboxCommentData, type UnhideInboxCommentError, type UnhideInboxCommentResponse, type UnlikeInboxCommentData, type UnlikeInboxCommentError, type UnlikeInboxCommentResponse, type UnpublishPostData, type UnpublishPostError, type UnpublishPostResponse, type UpdateAccountData, type UpdateAccountError, type UpdateAccountGroupData, type UpdateAccountGroupError, type UpdateAccountGroupResponse, type UpdateAccountResponse, type UpdateFacebookPageData, type UpdateFacebookPageError, type UpdateFacebookPageResponse, type UpdateGmbLocationData, type UpdateGmbLocationError, type UpdateGmbLocationResponse, type UpdateGoogleBusinessAttributesData, type UpdateGoogleBusinessAttributesError, type UpdateGoogleBusinessAttributesResponse, type UpdateGoogleBusinessFoodMenusData, type UpdateGoogleBusinessFoodMenusError, type UpdateGoogleBusinessFoodMenusResponse, type UpdateGoogleBusinessLocationDetailsData, type UpdateGoogleBusinessLocationDetailsError, type UpdateGoogleBusinessLocationDetailsResponse, type UpdateInboxConversationData, type UpdateInboxConversationError, type UpdateInboxConversationResponse, type UpdateLinkedInOrganizationData, type UpdateLinkedInOrganizationError, type UpdateLinkedInOrganizationResponse, type UpdatePinterestBoardsData, type UpdatePinterestBoardsError, type UpdatePinterestBoardsResponse, type UpdatePostData, type UpdatePostError, type UpdatePostResponse, type UpdateProfileData, type UpdateProfileError, type UpdateProfileResponse, type UpdateQueueSlotData, type UpdateQueueSlotError, type UpdateQueueSlotResponse, type UpdateRedditSubredditsData, type UpdateRedditSubredditsError, type UpdateRedditSubredditsResponse, type UpdateWebhookSettingsData, type UpdateWebhookSettingsError, type UpdateWebhookSettingsResponse, type UpdateWhatsAppBusinessProfileData, type UpdateWhatsAppBusinessProfileError, type UpdateWhatsAppBusinessProfileResponse, type UpdateWhatsAppContactData, type UpdateWhatsAppContactError, type UpdateWhatsAppContactResponse, type UpdateWhatsAppTemplateData, type UpdateWhatsAppTemplateError, type UpdateWhatsAppTemplateResponse, type UploadTokenResponse, type UploadTokenStatusResponse, type UploadedFile, type UsageStats, type User, type UserGetResponse, type UsersListResponse, type ValidateMediaData, type ValidateMediaError, type ValidateMediaResponse, type ValidatePostData, type ValidatePostError, type ValidatePostLengthData, type ValidatePostLengthError, type ValidatePostLengthResponse, type ValidatePostResponse, type ValidateSubredditData, type ValidateSubredditError, type ValidateSubredditResponse, ValidationError, type Webhook, type WebhookLog, type WebhookPayloadAccountConnected, type WebhookPayloadAccountDisconnected, type WebhookPayloadComment, type WebhookPayloadMessage, type WebhookPayloadPost, type YouTubeDailyViewsResponse, type YouTubePlatformData, type YouTubeScopeMissingResponse, type action, type aggregation, type aggregation2, type aggregation3, type billingPeriod, type commercialContentType, type connectionMethod, type contentType, type contentType2, type contentType3, Late as default, type direction, type disconnectionType, type errorCategory, type errorSource, type event, type event2, type event3, type event4, type event5, type event6, type eventType, type gapFreq, type graduationStrategy, type mediaType, parseApiError, type parseMode, type permission, type platform, type platform2, type platform3, type replySettings, type scope, type status, type status2, type status3, type status4, type status5, type status6, type type, type type2, type type3, type visibility };