@getlatedev/node 0.2.5 → 0.2.7
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 +59 -0
- package/dist/index.d.mts +642 -1
- package/dist/index.d.ts +642 -1
- package/dist/index.js +298 -0
- package/dist/index.mjs +298 -0
- package/package.json +1 -1
- package/src/client.ts +108 -0
- package/src/generated/sdk.gen.ts +455 -1
- package/src/generated/types.gen.ts +694 -0
package/dist/index.d.mts
CHANGED
|
@@ -400,6 +400,70 @@ declare class Zernio {
|
|
|
400
400
|
getWhatsAppPhoneNumber: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<GetWhatsAppPhoneNumberData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<GetWhatsAppPhoneNumberResponse, GetWhatsAppPhoneNumberError, ThrowOnError>;
|
|
401
401
|
releaseWhatsAppPhoneNumber: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<ReleaseWhatsAppPhoneNumberData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<ReleaseWhatsAppPhoneNumberResponse, unknown, ThrowOnError>;
|
|
402
402
|
};
|
|
403
|
+
/**
|
|
404
|
+
* contacts API
|
|
405
|
+
*/
|
|
406
|
+
contacts: {
|
|
407
|
+
listContacts: <ThrowOnError extends boolean = false>(options?: _hey_api_client_fetch.OptionsLegacyParser<ListContactsData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<unknown, ListContactsError, ThrowOnError>;
|
|
408
|
+
createContact: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<CreateContactData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<unknown, unknown, ThrowOnError>;
|
|
409
|
+
getContact: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<GetContactData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<unknown, GetContactError, ThrowOnError>;
|
|
410
|
+
updateContact: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<UpdateContactData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<unknown, UpdateContactError, ThrowOnError>;
|
|
411
|
+
deleteContact: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<DeleteContactData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<unknown, DeleteContactError, ThrowOnError>;
|
|
412
|
+
getContactChannels: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<GetContactChannelsData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<unknown, GetContactChannelsError, ThrowOnError>;
|
|
413
|
+
bulkCreateContacts: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<BulkCreateContactsData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<unknown, BulkCreateContactsError, ThrowOnError>;
|
|
414
|
+
};
|
|
415
|
+
/**
|
|
416
|
+
* customfields API
|
|
417
|
+
*/
|
|
418
|
+
customfields: {
|
|
419
|
+
setContactFieldValue: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<SetContactFieldValueData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<unknown, SetContactFieldValueError, ThrowOnError>;
|
|
420
|
+
clearContactFieldValue: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<ClearContactFieldValueData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<unknown, ClearContactFieldValueError, ThrowOnError>;
|
|
421
|
+
listCustomFields: <ThrowOnError extends boolean = false>(options?: _hey_api_client_fetch.OptionsLegacyParser<ListCustomFieldsData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<unknown, ListCustomFieldsError, ThrowOnError>;
|
|
422
|
+
createCustomField: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<CreateCustomFieldData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<unknown, unknown, ThrowOnError>;
|
|
423
|
+
updateCustomField: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<UpdateCustomFieldData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<unknown, UpdateCustomFieldError, ThrowOnError>;
|
|
424
|
+
deleteCustomField: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<DeleteCustomFieldData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<unknown, DeleteCustomFieldError, ThrowOnError>;
|
|
425
|
+
};
|
|
426
|
+
/**
|
|
427
|
+
* broadcasts API
|
|
428
|
+
*/
|
|
429
|
+
broadcasts: {
|
|
430
|
+
listBroadcasts: <ThrowOnError extends boolean = false>(options?: _hey_api_client_fetch.OptionsLegacyParser<ListBroadcastsData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<unknown, ListBroadcastsError, ThrowOnError>;
|
|
431
|
+
createBroadcast: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<CreateBroadcastData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<unknown, CreateBroadcastError, ThrowOnError>;
|
|
432
|
+
getBroadcast: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<GetBroadcastData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<unknown, GetBroadcastError, ThrowOnError>;
|
|
433
|
+
updateBroadcast: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<UpdateBroadcastData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<unknown, UpdateBroadcastError, ThrowOnError>;
|
|
434
|
+
deleteBroadcast: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<DeleteBroadcastData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<unknown, DeleteBroadcastError, ThrowOnError>;
|
|
435
|
+
sendBroadcast: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<SendBroadcastData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<unknown, unknown, ThrowOnError>;
|
|
436
|
+
scheduleBroadcast: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<ScheduleBroadcastData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<unknown, unknown, ThrowOnError>;
|
|
437
|
+
cancelBroadcast: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<CancelBroadcastData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<unknown, unknown, ThrowOnError>;
|
|
438
|
+
listBroadcastRecipients: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<ListBroadcastRecipientsData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<unknown, ListBroadcastRecipientsError, ThrowOnError>;
|
|
439
|
+
addBroadcastRecipients: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<AddBroadcastRecipientsData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<unknown, AddBroadcastRecipientsError, ThrowOnError>;
|
|
440
|
+
};
|
|
441
|
+
/**
|
|
442
|
+
* sequences API
|
|
443
|
+
*/
|
|
444
|
+
sequences: {
|
|
445
|
+
listSequences: <ThrowOnError extends boolean = false>(options?: _hey_api_client_fetch.OptionsLegacyParser<ListSequencesData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<unknown, ListSequencesError, ThrowOnError>;
|
|
446
|
+
createSequence: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<CreateSequenceData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<unknown, CreateSequenceError, ThrowOnError>;
|
|
447
|
+
getSequence: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<GetSequenceData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<unknown, GetSequenceError, ThrowOnError>;
|
|
448
|
+
updateSequence: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<UpdateSequenceData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<unknown, UpdateSequenceError, ThrowOnError>;
|
|
449
|
+
deleteSequence: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<DeleteSequenceData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<unknown, DeleteSequenceError, ThrowOnError>;
|
|
450
|
+
activateSequence: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<ActivateSequenceData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<unknown, unknown, ThrowOnError>;
|
|
451
|
+
pauseSequence: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<PauseSequenceData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<unknown, unknown, ThrowOnError>;
|
|
452
|
+
enrollContacts: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<EnrollContactsData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<unknown, EnrollContactsError, ThrowOnError>;
|
|
453
|
+
unenrollContact: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<UnenrollContactData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<unknown, UnenrollContactError, ThrowOnError>;
|
|
454
|
+
listSequenceEnrollments: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<ListSequenceEnrollmentsData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<unknown, ListSequenceEnrollmentsError, ThrowOnError>;
|
|
455
|
+
};
|
|
456
|
+
/**
|
|
457
|
+
* commentautomations API
|
|
458
|
+
*/
|
|
459
|
+
commentautomations: {
|
|
460
|
+
listCommentAutomations: <ThrowOnError extends boolean = false>(options?: _hey_api_client_fetch.OptionsLegacyParser<ListCommentAutomationsData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<ListCommentAutomationsResponse, ListCommentAutomationsError, ThrowOnError>;
|
|
461
|
+
createCommentAutomation: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<CreateCommentAutomationData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<unknown, unknown, ThrowOnError>;
|
|
462
|
+
getCommentAutomation: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<GetCommentAutomationData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<unknown, GetCommentAutomationError, ThrowOnError>;
|
|
463
|
+
updateCommentAutomation: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<UpdateCommentAutomationData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<unknown, UpdateCommentAutomationError, ThrowOnError>;
|
|
464
|
+
deleteCommentAutomation: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<DeleteCommentAutomationData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<unknown, DeleteCommentAutomationError, ThrowOnError>;
|
|
465
|
+
listCommentAutomationLogs: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<ListCommentAutomationLogsData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<unknown, ListCommentAutomationLogsError, ThrowOnError>;
|
|
466
|
+
};
|
|
403
467
|
/**
|
|
404
468
|
* Create a new Zernio API client.
|
|
405
469
|
*
|
|
@@ -8755,5 +8819,582 @@ type ReleaseWhatsAppPhoneNumberResponse = ({
|
|
|
8755
8819
|
type ReleaseWhatsAppPhoneNumberError = (unknown | {
|
|
8756
8820
|
error?: string;
|
|
8757
8821
|
});
|
|
8822
|
+
type ListContactsData = {
|
|
8823
|
+
query?: {
|
|
8824
|
+
isSubscribed?: 'true' | 'false';
|
|
8825
|
+
limit?: number;
|
|
8826
|
+
platform?: 'instagram' | 'facebook' | 'telegram' | 'twitter' | 'bluesky' | 'reddit' | 'whatsapp';
|
|
8827
|
+
/**
|
|
8828
|
+
* Filter by profile. Omit to list across all profiles
|
|
8829
|
+
*/
|
|
8830
|
+
profileId?: string;
|
|
8831
|
+
search?: string;
|
|
8832
|
+
skip?: number;
|
|
8833
|
+
tag?: string;
|
|
8834
|
+
};
|
|
8835
|
+
};
|
|
8836
|
+
type ListContactsResponse = (unknown);
|
|
8837
|
+
type ListContactsError = ({
|
|
8838
|
+
error?: string;
|
|
8839
|
+
});
|
|
8840
|
+
type CreateContactData = {
|
|
8841
|
+
body: {
|
|
8842
|
+
profileId: string;
|
|
8843
|
+
name: string;
|
|
8844
|
+
email?: string;
|
|
8845
|
+
company?: string;
|
|
8846
|
+
tags?: Array<(string)>;
|
|
8847
|
+
isSubscribed?: boolean;
|
|
8848
|
+
notes?: string;
|
|
8849
|
+
/**
|
|
8850
|
+
* Optional. Creates a channel if provided with platform + platformIdentifier
|
|
8851
|
+
*/
|
|
8852
|
+
accountId?: string;
|
|
8853
|
+
platform?: string;
|
|
8854
|
+
platformIdentifier?: string;
|
|
8855
|
+
displayIdentifier?: string;
|
|
8856
|
+
};
|
|
8857
|
+
};
|
|
8858
|
+
type CreateContactResponse = (unknown);
|
|
8859
|
+
type CreateContactError = ({
|
|
8860
|
+
error?: string;
|
|
8861
|
+
} | unknown);
|
|
8862
|
+
type GetContactData = {
|
|
8863
|
+
path: {
|
|
8864
|
+
contactId: string;
|
|
8865
|
+
};
|
|
8866
|
+
};
|
|
8867
|
+
type GetContactResponse = (unknown);
|
|
8868
|
+
type GetContactError = ({
|
|
8869
|
+
error?: string;
|
|
8870
|
+
});
|
|
8871
|
+
type UpdateContactData = {
|
|
8872
|
+
body?: {
|
|
8873
|
+
name?: string;
|
|
8874
|
+
email?: string;
|
|
8875
|
+
company?: string;
|
|
8876
|
+
avatarUrl?: string;
|
|
8877
|
+
tags?: Array<(string)>;
|
|
8878
|
+
isSubscribed?: boolean;
|
|
8879
|
+
isBlocked?: boolean;
|
|
8880
|
+
notes?: string;
|
|
8881
|
+
};
|
|
8882
|
+
path: {
|
|
8883
|
+
contactId: string;
|
|
8884
|
+
};
|
|
8885
|
+
};
|
|
8886
|
+
type UpdateContactResponse = (unknown);
|
|
8887
|
+
type UpdateContactError = ({
|
|
8888
|
+
error?: string;
|
|
8889
|
+
});
|
|
8890
|
+
type DeleteContactData = {
|
|
8891
|
+
path: {
|
|
8892
|
+
contactId: string;
|
|
8893
|
+
};
|
|
8894
|
+
};
|
|
8895
|
+
type DeleteContactResponse = (unknown);
|
|
8896
|
+
type DeleteContactError = ({
|
|
8897
|
+
error?: string;
|
|
8898
|
+
});
|
|
8899
|
+
type GetContactChannelsData = {
|
|
8900
|
+
path: {
|
|
8901
|
+
contactId: string;
|
|
8902
|
+
};
|
|
8903
|
+
};
|
|
8904
|
+
type GetContactChannelsResponse = (unknown);
|
|
8905
|
+
type GetContactChannelsError = ({
|
|
8906
|
+
error?: string;
|
|
8907
|
+
});
|
|
8908
|
+
type BulkCreateContactsData = {
|
|
8909
|
+
body: {
|
|
8910
|
+
profileId: string;
|
|
8911
|
+
accountId: string;
|
|
8912
|
+
platform: string;
|
|
8913
|
+
contacts: Array<{
|
|
8914
|
+
name: string;
|
|
8915
|
+
platformIdentifier: string;
|
|
8916
|
+
displayIdentifier?: string;
|
|
8917
|
+
email?: string;
|
|
8918
|
+
company?: string;
|
|
8919
|
+
tags?: Array<(string)>;
|
|
8920
|
+
}>;
|
|
8921
|
+
};
|
|
8922
|
+
};
|
|
8923
|
+
type BulkCreateContactsResponse = (unknown);
|
|
8924
|
+
type BulkCreateContactsError = ({
|
|
8925
|
+
error?: string;
|
|
8926
|
+
});
|
|
8927
|
+
type SetContactFieldValueData = {
|
|
8928
|
+
body: {
|
|
8929
|
+
/**
|
|
8930
|
+
* Field value (type depends on field definition)
|
|
8931
|
+
*/
|
|
8932
|
+
value: unknown;
|
|
8933
|
+
};
|
|
8934
|
+
path: {
|
|
8935
|
+
contactId: string;
|
|
8936
|
+
slug: string;
|
|
8937
|
+
};
|
|
8938
|
+
};
|
|
8939
|
+
type SetContactFieldValueResponse = (unknown);
|
|
8940
|
+
type SetContactFieldValueError = ({
|
|
8941
|
+
error?: string;
|
|
8942
|
+
});
|
|
8943
|
+
type ClearContactFieldValueData = {
|
|
8944
|
+
path: {
|
|
8945
|
+
contactId: string;
|
|
8946
|
+
slug: string;
|
|
8947
|
+
};
|
|
8948
|
+
};
|
|
8949
|
+
type ClearContactFieldValueResponse = (unknown);
|
|
8950
|
+
type ClearContactFieldValueError = ({
|
|
8951
|
+
error?: string;
|
|
8952
|
+
});
|
|
8953
|
+
type ListCustomFieldsData = {
|
|
8954
|
+
query?: {
|
|
8955
|
+
/**
|
|
8956
|
+
* Filter by profile. Omit to list across all profiles
|
|
8957
|
+
*/
|
|
8958
|
+
profileId?: string;
|
|
8959
|
+
};
|
|
8960
|
+
};
|
|
8961
|
+
type ListCustomFieldsResponse = (unknown);
|
|
8962
|
+
type ListCustomFieldsError = ({
|
|
8963
|
+
error?: string;
|
|
8964
|
+
});
|
|
8965
|
+
type CreateCustomFieldData = {
|
|
8966
|
+
body: {
|
|
8967
|
+
profileId: string;
|
|
8968
|
+
name: string;
|
|
8969
|
+
/**
|
|
8970
|
+
* Auto-generated from name if not provided
|
|
8971
|
+
*/
|
|
8972
|
+
slug?: string;
|
|
8973
|
+
type: 'text' | 'number' | 'date' | 'boolean' | 'select';
|
|
8974
|
+
/**
|
|
8975
|
+
* Required for select type
|
|
8976
|
+
*/
|
|
8977
|
+
options?: Array<(string)>;
|
|
8978
|
+
};
|
|
8979
|
+
};
|
|
8980
|
+
type CreateCustomFieldResponse = (unknown);
|
|
8981
|
+
type CreateCustomFieldError = ({
|
|
8982
|
+
error?: string;
|
|
8983
|
+
} | unknown);
|
|
8984
|
+
type UpdateCustomFieldData = {
|
|
8985
|
+
body?: {
|
|
8986
|
+
name?: string;
|
|
8987
|
+
options?: Array<(string)>;
|
|
8988
|
+
};
|
|
8989
|
+
path: {
|
|
8990
|
+
fieldId: string;
|
|
8991
|
+
};
|
|
8992
|
+
};
|
|
8993
|
+
type UpdateCustomFieldResponse = (unknown);
|
|
8994
|
+
type UpdateCustomFieldError = ({
|
|
8995
|
+
error?: string;
|
|
8996
|
+
});
|
|
8997
|
+
type DeleteCustomFieldData = {
|
|
8998
|
+
path: {
|
|
8999
|
+
fieldId: string;
|
|
9000
|
+
};
|
|
9001
|
+
};
|
|
9002
|
+
type DeleteCustomFieldResponse = (unknown);
|
|
9003
|
+
type DeleteCustomFieldError = ({
|
|
9004
|
+
error?: string;
|
|
9005
|
+
});
|
|
9006
|
+
type ListBroadcastsData = {
|
|
9007
|
+
query?: {
|
|
9008
|
+
limit?: number;
|
|
9009
|
+
platform?: string;
|
|
9010
|
+
/**
|
|
9011
|
+
* Filter by profile. Omit to list across all profiles
|
|
9012
|
+
*/
|
|
9013
|
+
profileId?: string;
|
|
9014
|
+
skip?: number;
|
|
9015
|
+
status?: 'draft' | 'scheduled' | 'sending' | 'completed' | 'failed' | 'cancelled';
|
|
9016
|
+
};
|
|
9017
|
+
};
|
|
9018
|
+
type ListBroadcastsResponse = (unknown);
|
|
9019
|
+
type ListBroadcastsError = ({
|
|
9020
|
+
error?: string;
|
|
9021
|
+
});
|
|
9022
|
+
type CreateBroadcastData = {
|
|
9023
|
+
body: {
|
|
9024
|
+
profileId: string;
|
|
9025
|
+
accountId: string;
|
|
9026
|
+
platform: 'instagram' | 'facebook' | 'telegram' | 'twitter' | 'bluesky' | 'reddit' | 'whatsapp';
|
|
9027
|
+
name: string;
|
|
9028
|
+
description?: string;
|
|
9029
|
+
message?: {
|
|
9030
|
+
text?: string;
|
|
9031
|
+
attachments?: Array<{
|
|
9032
|
+
type?: string;
|
|
9033
|
+
url?: string;
|
|
9034
|
+
filename?: string;
|
|
9035
|
+
}>;
|
|
9036
|
+
};
|
|
9037
|
+
/**
|
|
9038
|
+
* WhatsApp template (required when platform is whatsapp)
|
|
9039
|
+
*/
|
|
9040
|
+
template?: {
|
|
9041
|
+
name?: string;
|
|
9042
|
+
language?: string;
|
|
9043
|
+
components?: unknown[];
|
|
9044
|
+
};
|
|
9045
|
+
segmentFilters?: {
|
|
9046
|
+
tags?: Array<(string)>;
|
|
9047
|
+
isSubscribed?: boolean;
|
|
9048
|
+
};
|
|
9049
|
+
};
|
|
9050
|
+
};
|
|
9051
|
+
type CreateBroadcastResponse = (unknown);
|
|
9052
|
+
type CreateBroadcastError = ({
|
|
9053
|
+
error?: string;
|
|
9054
|
+
});
|
|
9055
|
+
type GetBroadcastData = {
|
|
9056
|
+
path: {
|
|
9057
|
+
broadcastId: string;
|
|
9058
|
+
};
|
|
9059
|
+
};
|
|
9060
|
+
type GetBroadcastResponse = (unknown);
|
|
9061
|
+
type GetBroadcastError = ({
|
|
9062
|
+
error?: string;
|
|
9063
|
+
});
|
|
9064
|
+
type UpdateBroadcastData = {
|
|
9065
|
+
path: {
|
|
9066
|
+
broadcastId: string;
|
|
9067
|
+
};
|
|
9068
|
+
};
|
|
9069
|
+
type UpdateBroadcastResponse = (unknown);
|
|
9070
|
+
type UpdateBroadcastError = ({
|
|
9071
|
+
error?: string;
|
|
9072
|
+
});
|
|
9073
|
+
type DeleteBroadcastData = {
|
|
9074
|
+
path: {
|
|
9075
|
+
broadcastId: string;
|
|
9076
|
+
};
|
|
9077
|
+
};
|
|
9078
|
+
type DeleteBroadcastResponse = (unknown);
|
|
9079
|
+
type DeleteBroadcastError = ({
|
|
9080
|
+
error?: string;
|
|
9081
|
+
});
|
|
9082
|
+
type SendBroadcastData = {
|
|
9083
|
+
path: {
|
|
9084
|
+
broadcastId: string;
|
|
9085
|
+
};
|
|
9086
|
+
};
|
|
9087
|
+
type SendBroadcastResponse = (unknown);
|
|
9088
|
+
type SendBroadcastError = (unknown | {
|
|
9089
|
+
error?: string;
|
|
9090
|
+
});
|
|
9091
|
+
type ScheduleBroadcastData = {
|
|
9092
|
+
body: {
|
|
9093
|
+
scheduledAt: string;
|
|
9094
|
+
};
|
|
9095
|
+
path: {
|
|
9096
|
+
broadcastId: string;
|
|
9097
|
+
};
|
|
9098
|
+
};
|
|
9099
|
+
type ScheduleBroadcastResponse = (unknown);
|
|
9100
|
+
type ScheduleBroadcastError = (unknown | {
|
|
9101
|
+
error?: string;
|
|
9102
|
+
});
|
|
9103
|
+
type CancelBroadcastData = {
|
|
9104
|
+
path: {
|
|
9105
|
+
broadcastId: string;
|
|
9106
|
+
};
|
|
9107
|
+
};
|
|
9108
|
+
type CancelBroadcastResponse = (unknown);
|
|
9109
|
+
type CancelBroadcastError = (unknown | {
|
|
9110
|
+
error?: string;
|
|
9111
|
+
});
|
|
9112
|
+
type ListBroadcastRecipientsData = {
|
|
9113
|
+
path: {
|
|
9114
|
+
broadcastId: string;
|
|
9115
|
+
};
|
|
9116
|
+
query?: {
|
|
9117
|
+
limit?: number;
|
|
9118
|
+
skip?: number;
|
|
9119
|
+
status?: 'pending' | 'sent' | 'delivered' | 'read' | 'failed';
|
|
9120
|
+
};
|
|
9121
|
+
};
|
|
9122
|
+
type ListBroadcastRecipientsResponse = (unknown);
|
|
9123
|
+
type ListBroadcastRecipientsError = ({
|
|
9124
|
+
error?: string;
|
|
9125
|
+
});
|
|
9126
|
+
type AddBroadcastRecipientsData = {
|
|
9127
|
+
body: {
|
|
9128
|
+
/**
|
|
9129
|
+
* Specific contact IDs to add
|
|
9130
|
+
*/
|
|
9131
|
+
contactIds?: Array<(string)>;
|
|
9132
|
+
/**
|
|
9133
|
+
* Auto-populate from broadcast segment filters
|
|
9134
|
+
*/
|
|
9135
|
+
useSegment?: boolean;
|
|
9136
|
+
};
|
|
9137
|
+
path: {
|
|
9138
|
+
broadcastId: string;
|
|
9139
|
+
};
|
|
9140
|
+
};
|
|
9141
|
+
type AddBroadcastRecipientsResponse = (unknown);
|
|
9142
|
+
type AddBroadcastRecipientsError = ({
|
|
9143
|
+
error?: string;
|
|
9144
|
+
});
|
|
9145
|
+
type ListSequencesData = {
|
|
9146
|
+
query?: {
|
|
9147
|
+
limit?: number;
|
|
9148
|
+
/**
|
|
9149
|
+
* Filter by profile. Omit to list across all profiles
|
|
9150
|
+
*/
|
|
9151
|
+
profileId?: string;
|
|
9152
|
+
skip?: number;
|
|
9153
|
+
status?: 'draft' | 'active' | 'paused';
|
|
9154
|
+
};
|
|
9155
|
+
};
|
|
9156
|
+
type ListSequencesResponse = (unknown);
|
|
9157
|
+
type ListSequencesError = ({
|
|
9158
|
+
error?: string;
|
|
9159
|
+
});
|
|
9160
|
+
type CreateSequenceData = {
|
|
9161
|
+
body: {
|
|
9162
|
+
profileId: string;
|
|
9163
|
+
accountId: string;
|
|
9164
|
+
platform: 'instagram' | 'facebook' | 'telegram' | 'twitter' | 'bluesky' | 'reddit' | 'whatsapp';
|
|
9165
|
+
name: string;
|
|
9166
|
+
description?: string;
|
|
9167
|
+
steps?: Array<{
|
|
9168
|
+
order: number;
|
|
9169
|
+
delayMinutes: number;
|
|
9170
|
+
message?: {
|
|
9171
|
+
text?: string;
|
|
9172
|
+
};
|
|
9173
|
+
template?: {
|
|
9174
|
+
name?: string;
|
|
9175
|
+
language?: string;
|
|
9176
|
+
};
|
|
9177
|
+
}>;
|
|
9178
|
+
exitOnReply?: boolean;
|
|
9179
|
+
exitOnUnsubscribe?: boolean;
|
|
9180
|
+
};
|
|
9181
|
+
};
|
|
9182
|
+
type CreateSequenceResponse = (unknown);
|
|
9183
|
+
type CreateSequenceError = ({
|
|
9184
|
+
error?: string;
|
|
9185
|
+
});
|
|
9186
|
+
type GetSequenceData = {
|
|
9187
|
+
path: {
|
|
9188
|
+
sequenceId: string;
|
|
9189
|
+
};
|
|
9190
|
+
};
|
|
9191
|
+
type GetSequenceResponse = (unknown);
|
|
9192
|
+
type GetSequenceError = ({
|
|
9193
|
+
error?: string;
|
|
9194
|
+
});
|
|
9195
|
+
type UpdateSequenceData = {
|
|
9196
|
+
path: {
|
|
9197
|
+
sequenceId: string;
|
|
9198
|
+
};
|
|
9199
|
+
};
|
|
9200
|
+
type UpdateSequenceResponse = (unknown);
|
|
9201
|
+
type UpdateSequenceError = ({
|
|
9202
|
+
error?: string;
|
|
9203
|
+
});
|
|
9204
|
+
type DeleteSequenceData = {
|
|
9205
|
+
path: {
|
|
9206
|
+
sequenceId: string;
|
|
9207
|
+
};
|
|
9208
|
+
};
|
|
9209
|
+
type DeleteSequenceResponse = (unknown);
|
|
9210
|
+
type DeleteSequenceError = ({
|
|
9211
|
+
error?: string;
|
|
9212
|
+
});
|
|
9213
|
+
type ActivateSequenceData = {
|
|
9214
|
+
path: {
|
|
9215
|
+
sequenceId: string;
|
|
9216
|
+
};
|
|
9217
|
+
};
|
|
9218
|
+
type ActivateSequenceResponse = (unknown);
|
|
9219
|
+
type ActivateSequenceError = (unknown | {
|
|
9220
|
+
error?: string;
|
|
9221
|
+
});
|
|
9222
|
+
type PauseSequenceData = {
|
|
9223
|
+
path: {
|
|
9224
|
+
sequenceId: string;
|
|
9225
|
+
};
|
|
9226
|
+
};
|
|
9227
|
+
type PauseSequenceResponse = (unknown);
|
|
9228
|
+
type PauseSequenceError = (unknown | {
|
|
9229
|
+
error?: string;
|
|
9230
|
+
});
|
|
9231
|
+
type EnrollContactsData = {
|
|
9232
|
+
body: {
|
|
9233
|
+
contactIds: Array<(string)>;
|
|
9234
|
+
/**
|
|
9235
|
+
* Optional. Auto-detected if not provided.
|
|
9236
|
+
*/
|
|
9237
|
+
channelIds?: Array<(string)>;
|
|
9238
|
+
};
|
|
9239
|
+
path: {
|
|
9240
|
+
sequenceId: string;
|
|
9241
|
+
};
|
|
9242
|
+
};
|
|
9243
|
+
type EnrollContactsResponse = (unknown);
|
|
9244
|
+
type EnrollContactsError = ({
|
|
9245
|
+
error?: string;
|
|
9246
|
+
});
|
|
9247
|
+
type UnenrollContactData = {
|
|
9248
|
+
path: {
|
|
9249
|
+
contactId: string;
|
|
9250
|
+
sequenceId: string;
|
|
9251
|
+
};
|
|
9252
|
+
};
|
|
9253
|
+
type UnenrollContactResponse = (unknown);
|
|
9254
|
+
type UnenrollContactError = ({
|
|
9255
|
+
error?: string;
|
|
9256
|
+
});
|
|
9257
|
+
type ListSequenceEnrollmentsData = {
|
|
9258
|
+
path: {
|
|
9259
|
+
sequenceId: string;
|
|
9260
|
+
};
|
|
9261
|
+
query?: {
|
|
9262
|
+
limit?: number;
|
|
9263
|
+
skip?: number;
|
|
9264
|
+
status?: 'active' | 'completed' | 'exited' | 'paused';
|
|
9265
|
+
};
|
|
9266
|
+
};
|
|
9267
|
+
type ListSequenceEnrollmentsResponse = (unknown);
|
|
9268
|
+
type ListSequenceEnrollmentsError = ({
|
|
9269
|
+
error?: string;
|
|
9270
|
+
});
|
|
9271
|
+
type ListCommentAutomationsData = {
|
|
9272
|
+
query?: {
|
|
9273
|
+
/**
|
|
9274
|
+
* Filter by profile. Omit to list across all profiles
|
|
9275
|
+
*/
|
|
9276
|
+
profileId?: string;
|
|
9277
|
+
};
|
|
9278
|
+
};
|
|
9279
|
+
type ListCommentAutomationsResponse = ({
|
|
9280
|
+
success?: boolean;
|
|
9281
|
+
automations?: Array<{
|
|
9282
|
+
id?: string;
|
|
9283
|
+
name?: string;
|
|
9284
|
+
platform?: 'instagram' | 'facebook';
|
|
9285
|
+
accountId?: string;
|
|
9286
|
+
platformPostId?: string;
|
|
9287
|
+
postTitle?: string;
|
|
9288
|
+
keywords?: Array<(string)>;
|
|
9289
|
+
matchMode?: 'exact' | 'contains';
|
|
9290
|
+
dmMessage?: string;
|
|
9291
|
+
commentReply?: string;
|
|
9292
|
+
isActive?: boolean;
|
|
9293
|
+
stats?: {
|
|
9294
|
+
triggered?: number;
|
|
9295
|
+
dmsSent?: number;
|
|
9296
|
+
dmsFailed?: number;
|
|
9297
|
+
uniqueContacts?: number;
|
|
9298
|
+
};
|
|
9299
|
+
createdAt?: string;
|
|
9300
|
+
}>;
|
|
9301
|
+
});
|
|
9302
|
+
type ListCommentAutomationsError = ({
|
|
9303
|
+
error?: string;
|
|
9304
|
+
});
|
|
9305
|
+
type CreateCommentAutomationData = {
|
|
9306
|
+
body: {
|
|
9307
|
+
profileId: string;
|
|
9308
|
+
/**
|
|
9309
|
+
* Instagram or Facebook account ID
|
|
9310
|
+
*/
|
|
9311
|
+
accountId: string;
|
|
9312
|
+
/**
|
|
9313
|
+
* Platform media/post ID
|
|
9314
|
+
*/
|
|
9315
|
+
platformPostId: string;
|
|
9316
|
+
/**
|
|
9317
|
+
* Zernio post ID (optional)
|
|
9318
|
+
*/
|
|
9319
|
+
postId?: string;
|
|
9320
|
+
/**
|
|
9321
|
+
* Post content snippet for display
|
|
9322
|
+
*/
|
|
9323
|
+
postTitle?: string;
|
|
9324
|
+
/**
|
|
9325
|
+
* Automation label
|
|
9326
|
+
*/
|
|
9327
|
+
name: string;
|
|
9328
|
+
/**
|
|
9329
|
+
* Trigger keywords (empty = any comment triggers)
|
|
9330
|
+
*/
|
|
9331
|
+
keywords?: Array<(string)>;
|
|
9332
|
+
matchMode?: 'exact' | 'contains';
|
|
9333
|
+
/**
|
|
9334
|
+
* DM text to send to commenter
|
|
9335
|
+
*/
|
|
9336
|
+
dmMessage: string;
|
|
9337
|
+
/**
|
|
9338
|
+
* Optional public reply to the comment
|
|
9339
|
+
*/
|
|
9340
|
+
commentReply?: string;
|
|
9341
|
+
};
|
|
9342
|
+
};
|
|
9343
|
+
type CreateCommentAutomationResponse = (unknown);
|
|
9344
|
+
type CreateCommentAutomationError = (unknown | {
|
|
9345
|
+
error?: string;
|
|
9346
|
+
});
|
|
9347
|
+
type GetCommentAutomationData = {
|
|
9348
|
+
path: {
|
|
9349
|
+
automationId: string;
|
|
9350
|
+
};
|
|
9351
|
+
};
|
|
9352
|
+
type GetCommentAutomationResponse = (unknown);
|
|
9353
|
+
type GetCommentAutomationError = ({
|
|
9354
|
+
error?: string;
|
|
9355
|
+
});
|
|
9356
|
+
type UpdateCommentAutomationData = {
|
|
9357
|
+
body?: {
|
|
9358
|
+
name?: string;
|
|
9359
|
+
keywords?: Array<(string)>;
|
|
9360
|
+
matchMode?: 'exact' | 'contains';
|
|
9361
|
+
dmMessage?: string;
|
|
9362
|
+
commentReply?: string;
|
|
9363
|
+
isActive?: boolean;
|
|
9364
|
+
};
|
|
9365
|
+
path: {
|
|
9366
|
+
automationId: string;
|
|
9367
|
+
};
|
|
9368
|
+
};
|
|
9369
|
+
type UpdateCommentAutomationResponse = (unknown);
|
|
9370
|
+
type UpdateCommentAutomationError = ({
|
|
9371
|
+
error?: string;
|
|
9372
|
+
});
|
|
9373
|
+
type DeleteCommentAutomationData = {
|
|
9374
|
+
path: {
|
|
9375
|
+
automationId: string;
|
|
9376
|
+
};
|
|
9377
|
+
};
|
|
9378
|
+
type DeleteCommentAutomationResponse = (unknown);
|
|
9379
|
+
type DeleteCommentAutomationError = ({
|
|
9380
|
+
error?: string;
|
|
9381
|
+
});
|
|
9382
|
+
type ListCommentAutomationLogsData = {
|
|
9383
|
+
path: {
|
|
9384
|
+
automationId: string;
|
|
9385
|
+
};
|
|
9386
|
+
query?: {
|
|
9387
|
+
limit?: number;
|
|
9388
|
+
skip?: number;
|
|
9389
|
+
/**
|
|
9390
|
+
* Filter by result status
|
|
9391
|
+
*/
|
|
9392
|
+
status?: 'sent' | 'failed' | 'skipped';
|
|
9393
|
+
};
|
|
9394
|
+
};
|
|
9395
|
+
type ListCommentAutomationLogsResponse = (unknown);
|
|
9396
|
+
type ListCommentAutomationLogsError = ({
|
|
9397
|
+
error?: string;
|
|
9398
|
+
});
|
|
8758
9399
|
|
|
8759
|
-
export { type AccountGetResponse, type AccountWithFollowerStats, type AccountsListResponse, type AddWhatsAppBroadcastRecipientsData, type AddWhatsAppBroadcastRecipientsError, type AddWhatsAppBroadcastRecipientsResponse, type AnalyticsListResponse, type AnalyticsOverview, type AnalyticsSinglePostResponse, type ApiKey, type BlueskyPlatformData, type BookmarkPostData, type BookmarkPostError, type BookmarkPostResponse, type BulkDeleteWhatsAppContactsData, type BulkDeleteWhatsAppContactsError, type BulkDeleteWhatsAppContactsResponse, type BulkUpdateWhatsAppContactsData, type BulkUpdateWhatsAppContactsError, type BulkUpdateWhatsAppContactsResponse, type BulkUploadPostsData, type BulkUploadPostsError, type BulkUploadPostsResponse, type CancelWhatsAppBroadcastScheduleData, type CancelWhatsAppBroadcastScheduleError, type CancelWhatsAppBroadcastScheduleResponse, type CaptionResponse, type CheckInstagramHashtagsData, type CheckInstagramHashtagsError, type CheckInstagramHashtagsResponse, type ClientOptions, type CompleteTelegramConnectData, type CompleteTelegramConnectError, type CompleteTelegramConnectResponse, type ConnectBlueskyCredentialsData, type ConnectBlueskyCredentialsError, type ConnectBlueskyCredentialsResponse, type ConnectWhatsAppCredentialsData, type ConnectWhatsAppCredentialsError, type ConnectWhatsAppCredentialsResponse, type ConnectionLog, type CreateAccountGroupData, type CreateAccountGroupError, type CreateAccountGroupResponse, type CreateApiKeyData, type CreateApiKeyError, type CreateApiKeyResponse, type CreateGoogleBusinessMediaData, type CreateGoogleBusinessMediaError, type CreateGoogleBusinessMediaResponse, type CreateGoogleBusinessPlaceActionData, type CreateGoogleBusinessPlaceActionError, type CreateGoogleBusinessPlaceActionResponse, type CreateInviteTokenData, type CreateInviteTokenError, type CreateInviteTokenResponse, type CreatePostData, type CreatePostError, type CreatePostResponse, type CreateProfileData, type CreateProfileError, type CreateProfileResponse, type CreateQueueSlotData, type CreateQueueSlotError, type CreateQueueSlotResponse, type CreateWebhookSettingsData, type CreateWebhookSettingsError, type CreateWebhookSettingsResponse, type CreateWhatsAppBroadcastData, type CreateWhatsAppBroadcastError, type CreateWhatsAppBroadcastResponse, type CreateWhatsAppContactData, type CreateWhatsAppContactError, type CreateWhatsAppContactResponse, type CreateWhatsAppTemplateData, type CreateWhatsAppTemplateError, type CreateWhatsAppTemplateResponse, type DeleteAccountData, type DeleteAccountError, type DeleteAccountGroupData, type DeleteAccountGroupError, type DeleteAccountGroupResponse, type DeleteAccountResponse, type DeleteApiKeyData, type DeleteApiKeyError, type DeleteApiKeyResponse, type DeleteGoogleBusinessMediaData, type DeleteGoogleBusinessMediaError, type DeleteGoogleBusinessMediaResponse, type DeleteGoogleBusinessPlaceActionData, type DeleteGoogleBusinessPlaceActionError, type DeleteGoogleBusinessPlaceActionResponse, type DeleteInboxCommentData, type DeleteInboxCommentError, type DeleteInboxCommentResponse, type DeleteInboxReviewReplyData, type DeleteInboxReviewReplyError, type DeleteInboxReviewReplyResponse, type DeleteInstagramIceBreakersData, type DeleteInstagramIceBreakersError, type DeleteInstagramIceBreakersResponse, type DeleteMessengerMenuData, type DeleteMessengerMenuError, type DeleteMessengerMenuResponse, type DeletePostData, type DeletePostError, type DeletePostResponse, type DeleteProfileData, type DeleteProfileError, type DeleteProfileResponse, type DeleteQueueSlotData, type DeleteQueueSlotError, type DeleteQueueSlotResponse, type DeleteTelegramCommandsData, type DeleteTelegramCommandsError, type DeleteTelegramCommandsResponse, type DeleteWebhookSettingsData, type DeleteWebhookSettingsError, type DeleteWebhookSettingsResponse, type DeleteWhatsAppBroadcastData, type DeleteWhatsAppBroadcastError, type DeleteWhatsAppBroadcastResponse, type DeleteWhatsAppContactData, type DeleteWhatsAppContactError, type DeleteWhatsAppContactResponse, type DeleteWhatsAppGroupData, type DeleteWhatsAppGroupError, type DeleteWhatsAppGroupResponse, type DeleteWhatsAppTemplateData, type DeleteWhatsAppTemplateError, type DeleteWhatsAppTemplateResponse, type DownloadBlueskyMediaData, type DownloadBlueskyMediaError, type DownloadBlueskyMediaResponse, type DownloadFacebookVideoData, type DownloadFacebookVideoError, type DownloadFacebookVideoResponse, type DownloadFormat, type DownloadInstagramMediaData, type DownloadInstagramMediaError, type DownloadInstagramMediaResponse, type DownloadLinkedInVideoData, type DownloadLinkedInVideoError, type DownloadLinkedInVideoResponse, type DownloadResponse, type DownloadTikTokVideoData, type DownloadTikTokVideoError, type DownloadTikTokVideoResponse, type DownloadTwitterMediaData, type DownloadTwitterMediaError, type DownloadTwitterMediaResponse, type DownloadYouTubeVideoData, type DownloadYouTubeVideoError, type DownloadYouTubeVideoResponse, type EditInboxMessageData, type EditInboxMessageError, type EditInboxMessageResponse, type ErrorResponse, type FacebookPlatformData, type FollowUserData, type FollowUserError, type FollowUserResponse, type FollowerStatsResponse, type FoodMenu, type FoodMenuItem, type FoodMenuItemAttributes, type FoodMenuLabel, type FoodMenuSection, type GetAccountHealthData, type GetAccountHealthError, type GetAccountHealthResponse, type GetAllAccountsHealthData, type GetAllAccountsHealthError, type GetAllAccountsHealthResponse, type GetAnalyticsData, type GetAnalyticsError, type GetAnalyticsResponse, type GetBestTimeToPostData, type GetBestTimeToPostError, type GetBestTimeToPostResponse, type GetConnectUrlData, type GetConnectUrlError, type GetConnectUrlResponse, type GetContentDecayData, type GetContentDecayError, type GetContentDecayResponse, type GetDailyMetricsData, type GetDailyMetricsError, type GetDailyMetricsResponse, type GetFacebookPagesData, type GetFacebookPagesError, type GetFacebookPagesResponse, type GetFollowerStatsData, type GetFollowerStatsError, type GetFollowerStatsResponse, type GetGmbLocationsData, type GetGmbLocationsError, type GetGmbLocationsResponse, type GetGoogleBusinessAttributesData, type GetGoogleBusinessAttributesError, type GetGoogleBusinessAttributesResponse, type GetGoogleBusinessFoodMenusData, type GetGoogleBusinessFoodMenusError, type GetGoogleBusinessFoodMenusResponse, type GetGoogleBusinessLocationDetailsData, type GetGoogleBusinessLocationDetailsError, type GetGoogleBusinessLocationDetailsResponse, type GetGoogleBusinessReviewsData, type GetGoogleBusinessReviewsError, type GetGoogleBusinessReviewsResponse, type GetInboxConversationData, type GetInboxConversationError, type GetInboxConversationMessagesData, type GetInboxConversationMessagesError, type GetInboxConversationMessagesResponse, type GetInboxConversationResponse, type GetInboxPostCommentsData, type GetInboxPostCommentsError, type GetInboxPostCommentsResponse, type GetInstagramAccountInsightsData, type GetInstagramAccountInsightsError, type GetInstagramAccountInsightsResponse, type GetInstagramDemographicsData, type GetInstagramDemographicsError, type GetInstagramDemographicsResponse, type GetInstagramIceBreakersData, type GetInstagramIceBreakersError, type GetInstagramIceBreakersResponse, type GetLinkedInAggregateAnalyticsData, type GetLinkedInAggregateAnalyticsError, type GetLinkedInAggregateAnalyticsResponse, type GetLinkedInMentionsData, type GetLinkedInMentionsError, type GetLinkedInMentionsResponse, type GetLinkedInOrganizationsData, type GetLinkedInOrganizationsError, type GetLinkedInOrganizationsResponse, type GetLinkedInPostAnalyticsData, type GetLinkedInPostAnalyticsError, type GetLinkedInPostAnalyticsResponse, type GetLinkedInPostReactionsData, type GetLinkedInPostReactionsError, type GetLinkedInPostReactionsResponse, type GetMediaPresignedUrlData, type GetMediaPresignedUrlError, type GetMediaPresignedUrlResponse, type GetMessengerMenuData, type GetMessengerMenuError, type GetMessengerMenuResponse, type GetNextQueueSlotData, type GetNextQueueSlotError, type GetNextQueueSlotResponse, type GetPendingOAuthDataData, type GetPendingOAuthDataError, type GetPendingOAuthDataResponse, type GetPinterestBoardsData, type GetPinterestBoardsError, type GetPinterestBoardsResponse, type GetPostData, type GetPostError, type GetPostLogsData, type GetPostLogsError, type GetPostLogsResponse, type GetPostResponse, type GetPostTimelineData, type GetPostTimelineError, type GetPostTimelineResponse, type GetPostingFrequencyData, type GetPostingFrequencyError, type GetPostingFrequencyResponse, type GetProfileData, type GetProfileError, type GetProfileResponse, type GetRedditFeedData, type GetRedditFeedError, type GetRedditFeedResponse, type GetRedditFlairsData, type GetRedditFlairsError, type GetRedditFlairsResponse, type GetRedditSubredditsData, type GetRedditSubredditsError, type GetRedditSubredditsResponse, type GetTelegramCommandsData, type GetTelegramCommandsError, type GetTelegramCommandsResponse, type GetTelegramConnectStatusData, type GetTelegramConnectStatusError, type GetTelegramConnectStatusResponse, type GetTikTokCreatorInfoData, type GetTikTokCreatorInfoError, type GetTikTokCreatorInfoResponse, type GetUsageStatsError, type GetUsageStatsResponse, type GetUserData, type GetUserError, type GetUserResponse, type GetWebhookLogsData, type GetWebhookLogsError, type GetWebhookLogsResponse, type GetWebhookSettingsError, type GetWebhookSettingsResponse, type GetWhatsAppBroadcastData, type GetWhatsAppBroadcastError, type GetWhatsAppBroadcastRecipientsData, type GetWhatsAppBroadcastRecipientsError, type GetWhatsAppBroadcastRecipientsResponse, type GetWhatsAppBroadcastResponse, type GetWhatsAppBroadcastsData, type GetWhatsAppBroadcastsError, type GetWhatsAppBroadcastsResponse, type GetWhatsAppBusinessProfileData, type GetWhatsAppBusinessProfileError, type GetWhatsAppBusinessProfileResponse, type GetWhatsAppContactData, type GetWhatsAppContactError, type GetWhatsAppContactResponse, type GetWhatsAppContactsData, type GetWhatsAppContactsError, type GetWhatsAppContactsResponse, type GetWhatsAppDisplayNameData, type GetWhatsAppDisplayNameError, type GetWhatsAppDisplayNameResponse, type 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 InstagramAccountInsightsResponse, type InstagramDemographicsResponse, type InstagramPlatformData, Late, LateApiError, type LikeInboxCommentData, type LikeInboxCommentError, type LikeInboxCommentResponse, type LinkedInAggregateAnalyticsDailyResponse, type LinkedInAggregateAnalyticsTotalResponse, type LinkedInPlatformData, type ListAccountGroupsError, type ListAccountGroupsResponse, type ListAccountsData, type ListAccountsError, type ListAccountsResponse, type ListApiKeysError, type ListApiKeysResponse, type ListConnectionLogsData, type ListConnectionLogsError, type ListConnectionLogsResponse, type ListFacebookPagesData, type ListFacebookPagesError, type ListFacebookPagesResponse, type ListGoogleBusinessLocationsData, type ListGoogleBusinessLocationsError, type ListGoogleBusinessLocationsResponse, type ListGoogleBusinessMediaData, type ListGoogleBusinessMediaError, type ListGoogleBusinessMediaResponse, type ListGoogleBusinessPlaceActionsData, type ListGoogleBusinessPlaceActionsError, type ListGoogleBusinessPlaceActionsResponse, type ListInboxCommentsData, type ListInboxCommentsError, type ListInboxCommentsResponse, type ListInboxConversationsData, type ListInboxConversationsError, type ListInboxConversationsResponse, type ListInboxReviewsData, type ListInboxReviewsError, type ListInboxReviewsResponse, type ListLinkedInOrganizationsData, type ListLinkedInOrganizationsError, type ListLinkedInOrganizationsResponse, type ListPinterestBoardsForSelectionData, type ListPinterestBoardsForSelectionError, type ListPinterestBoardsForSelectionResponse, type ListPostsData, type ListPostsError, type ListPostsLogsData, type ListPostsLogsError, type ListPostsLogsResponse, type ListPostsResponse, type ListProfilesData, type ListProfilesError, type ListProfilesResponse, type ListQueueSlotsData, type ListQueueSlotsError, type ListQueueSlotsResponse, type ListSnapchatProfilesData, type ListSnapchatProfilesError, type ListSnapchatProfilesResponse, type ListUsersError, type ListUsersResponse, type MediaItem, type MediaUploadResponse, type Money, type Pagination, type ParameterLimitParam, type ParameterPageParam, type PinterestPlatformData, type PlatformAnalytics, type PlatformTarget, type Post, type PostAnalytics, type PostCreateResponse, type PostDeleteResponse, type PostGetResponse, type PostLog, type PostRetryResponse, type PostUpdateResponse, type PostsListResponse, type PreviewQueueData, type PreviewQueueError, type PreviewQueueResponse, type Profile, type ProfileCreateResponse, type ProfileDeleteResponse, type ProfileGetResponse, type ProfileUpdateResponse, type ProfilesListResponse, type PurchaseWhatsAppPhoneNumberData, type PurchaseWhatsAppPhoneNumberError, type PurchaseWhatsAppPhoneNumberResponse, type QueueDeleteResponse, type QueueNextSlotResponse, type QueuePreviewResponse, type QueueSchedule, type QueueSlot, type QueueSlotsResponse, type QueueUpdateResponse, RateLimitError, type RecyclingConfig, type RecyclingState, type RedditPlatformData, type ReleaseWhatsAppPhoneNumberData, type ReleaseWhatsAppPhoneNumberError, type ReleaseWhatsAppPhoneNumberResponse, type RemoveBookmarkData, type RemoveBookmarkError, type RemoveBookmarkResponse, type RemoveWhatsAppBroadcastRecipientsData, type RemoveWhatsAppBroadcastRecipientsError, type RemoveWhatsAppBroadcastRecipientsResponse, type RenameWhatsAppGroupData, type RenameWhatsAppGroupError, type RenameWhatsAppGroupResponse, type ReplyToInboxPostData, type ReplyToInboxPostError, type ReplyToInboxPostResponse, type ReplyToInboxReviewData, type ReplyToInboxReviewError, type ReplyToInboxReviewResponse, type RetryPostData, type RetryPostError, type RetryPostResponse, type RetweetPostData, type RetweetPostError, type RetweetPostResponse, type ScheduleWhatsAppBroadcastData, type ScheduleWhatsAppBroadcastError, type ScheduleWhatsAppBroadcastResponse, type SearchRedditData, type SearchRedditError, type SearchRedditResponse, type SelectFacebookPageData, type SelectFacebookPageError, type SelectFacebookPageResponse, type SelectGoogleBusinessLocationData, type SelectGoogleBusinessLocationError, type SelectGoogleBusinessLocationResponse, type SelectLinkedInOrganizationData, type SelectLinkedInOrganizationError, type SelectLinkedInOrganizationResponse, type SelectPinterestBoardData, type SelectPinterestBoardError, type SelectPinterestBoardResponse, type SelectSnapchatProfileData, type SelectSnapchatProfileError, type SelectSnapchatProfileResponse, type SendInboxMessageData, type SendInboxMessageError, type SendInboxMessageResponse, type SendPrivateReplyToCommentData, type SendPrivateReplyToCommentError, type SendPrivateReplyToCommentResponse, type SendWhatsAppBroadcastData, type SendWhatsAppBroadcastError, type SendWhatsAppBroadcastResponse, type SendWhatsAppBulkData, type SendWhatsAppBulkError, type SendWhatsAppBulkResponse, type SetInstagramIceBreakersData, type SetInstagramIceBreakersError, type SetInstagramIceBreakersResponse, type SetMessengerMenuData, type SetMessengerMenuError, type SetMessengerMenuResponse, type SetTelegramCommandsData, type SetTelegramCommandsError, type SetTelegramCommandsResponse, type SnapchatPlatformData, type SocialAccount, type TelegramPlatformData, type TestWebhookData, type TestWebhookError, type TestWebhookResponse, type ThreadsPlatformData, type TikTokPlatformData, type TranscriptResponse, type TranscriptSegment, type TwitterPlatformData, type UndoRetweetData, type UndoRetweetError, type UndoRetweetResponse, type UnfollowUserData, type UnfollowUserError, type UnfollowUserResponse, type UnhideInboxCommentData, type UnhideInboxCommentError, type UnhideInboxCommentResponse, type UnlikeInboxCommentData, type UnlikeInboxCommentError, type UnlikeInboxCommentResponse, type UnpublishPostData, type UnpublishPostError, type UnpublishPostResponse, type UpdateAccountData, type UpdateAccountError, type UpdateAccountGroupData, type UpdateAccountGroupError, type UpdateAccountGroupResponse, type UpdateAccountResponse, type UpdateFacebookPageData, type UpdateFacebookPageError, type UpdateFacebookPageResponse, type UpdateGmbLocationData, type UpdateGmbLocationError, type UpdateGmbLocationResponse, type UpdateGoogleBusinessAttributesData, type UpdateGoogleBusinessAttributesError, type UpdateGoogleBusinessAttributesResponse, type UpdateGoogleBusinessFoodMenusData, type UpdateGoogleBusinessFoodMenusError, type UpdateGoogleBusinessFoodMenusResponse, type UpdateGoogleBusinessLocationDetailsData, type UpdateGoogleBusinessLocationDetailsError, type UpdateGoogleBusinessLocationDetailsResponse, type UpdateInboxConversationData, type UpdateInboxConversationError, type UpdateInboxConversationResponse, type UpdateLinkedInOrganizationData, type UpdateLinkedInOrganizationError, type UpdateLinkedInOrganizationResponse, type UpdatePinterestBoardsData, type UpdatePinterestBoardsError, type UpdatePinterestBoardsResponse, type UpdatePostData, type UpdatePostError, type UpdatePostResponse, type UpdateProfileData, type UpdateProfileError, type UpdateProfileResponse, type UpdateQueueSlotData, type UpdateQueueSlotError, type UpdateQueueSlotResponse, type UpdateRedditSubredditsData, type UpdateRedditSubredditsError, type UpdateRedditSubredditsResponse, type UpdateWebhookSettingsData, type UpdateWebhookSettingsError, type UpdateWebhookSettingsResponse, type UpdateWhatsAppBusinessProfileData, type UpdateWhatsAppBusinessProfileError, type UpdateWhatsAppBusinessProfileResponse, type UpdateWhatsAppContactData, type UpdateWhatsAppContactError, type UpdateWhatsAppContactResponse, type UpdateWhatsAppDisplayNameData, type UpdateWhatsAppDisplayNameError, type UpdateWhatsAppDisplayNameResponse, type UpdateWhatsAppTemplateData, type UpdateWhatsAppTemplateError, type UpdateWhatsAppTemplateResponse, type UploadTokenResponse, type UploadTokenStatusResponse, type UploadWhatsAppProfilePhotoData, type UploadWhatsAppProfilePhotoError, type UploadWhatsAppProfilePhotoResponse, type UploadedFile, type UsageStats, type User, type UserGetResponse, type UsersListResponse, type ValidateMediaData, type ValidateMediaError, type ValidateMediaResponse, type ValidatePostData, type ValidatePostError, type ValidatePostLengthData, type ValidatePostLengthError, type ValidatePostLengthResponse, type ValidatePostResponse, type ValidateSubredditData, type ValidateSubredditError, type ValidateSubredditResponse, ValidationError, type Webhook, type WebhookLog, type WebhookPayloadAccountConnected, type WebhookPayloadAccountDisconnected, type WebhookPayloadComment, type WebhookPayloadMessage, type WebhookPayloadPost, type YouTubeDailyViewsResponse, type YouTubePlatformData, type YouTubeScopeMissingResponse, Zernio, ZernioApiError, type action, type aggregation, type aggregation2, type aggregation3, type billingPeriod, type commercialContentType, type connectionMethod, type contentType, type contentType2, type contentType3, Zernio as default, type direction, type disconnectionType, type errorCategory, type errorSource, type event, type event2, type event3, type event4, type event5, type event6, type eventType, type gapFreq, type graduationStrategy, type mediaType, type mediaType2, type metric, type metricType, parseApiError, type parseMode, type permission, type platform, type platform2, type platform3, type replySettings, type scope, type status, type status2, type status3, type status4, type status5, type status6, type status7, type status8, type syncStatus, type syncStatus2, type timeframe, type type, type type2, type type3, type visibility };
|
|
9400
|
+
export { type AccountGetResponse, type AccountWithFollowerStats, type AccountsListResponse, type ActivateSequenceData, type ActivateSequenceError, type ActivateSequenceResponse, type AddBroadcastRecipientsData, type AddBroadcastRecipientsError, type AddBroadcastRecipientsResponse, type AddWhatsAppBroadcastRecipientsData, type AddWhatsAppBroadcastRecipientsError, type AddWhatsAppBroadcastRecipientsResponse, type AnalyticsListResponse, type AnalyticsOverview, type AnalyticsSinglePostResponse, type ApiKey, type BlueskyPlatformData, type BookmarkPostData, type BookmarkPostError, type BookmarkPostResponse, type BulkCreateContactsData, type BulkCreateContactsError, type BulkCreateContactsResponse, type BulkDeleteWhatsAppContactsData, type BulkDeleteWhatsAppContactsError, type BulkDeleteWhatsAppContactsResponse, type BulkUpdateWhatsAppContactsData, type BulkUpdateWhatsAppContactsError, type BulkUpdateWhatsAppContactsResponse, type BulkUploadPostsData, type BulkUploadPostsError, type BulkUploadPostsResponse, type CancelBroadcastData, type CancelBroadcastError, type CancelBroadcastResponse, type CancelWhatsAppBroadcastScheduleData, type CancelWhatsAppBroadcastScheduleError, type CancelWhatsAppBroadcastScheduleResponse, type CaptionResponse, type CheckInstagramHashtagsData, type CheckInstagramHashtagsError, type CheckInstagramHashtagsResponse, type ClearContactFieldValueData, type ClearContactFieldValueError, type ClearContactFieldValueResponse, type ClientOptions, type CompleteTelegramConnectData, type CompleteTelegramConnectError, type CompleteTelegramConnectResponse, type ConnectBlueskyCredentialsData, type ConnectBlueskyCredentialsError, type ConnectBlueskyCredentialsResponse, type ConnectWhatsAppCredentialsData, type ConnectWhatsAppCredentialsError, type ConnectWhatsAppCredentialsResponse, type ConnectionLog, type CreateAccountGroupData, type CreateAccountGroupError, type CreateAccountGroupResponse, type CreateApiKeyData, type CreateApiKeyError, type CreateApiKeyResponse, type CreateBroadcastData, type CreateBroadcastError, type CreateBroadcastResponse, type CreateCommentAutomationData, type CreateCommentAutomationError, type CreateCommentAutomationResponse, type CreateContactData, type CreateContactError, type CreateContactResponse, type CreateCustomFieldData, type CreateCustomFieldError, type CreateCustomFieldResponse, type CreateGoogleBusinessMediaData, type CreateGoogleBusinessMediaError, type CreateGoogleBusinessMediaResponse, type CreateGoogleBusinessPlaceActionData, type CreateGoogleBusinessPlaceActionError, type CreateGoogleBusinessPlaceActionResponse, type CreateInviteTokenData, type CreateInviteTokenError, type CreateInviteTokenResponse, type CreatePostData, type CreatePostError, type CreatePostResponse, type CreateProfileData, type CreateProfileError, type CreateProfileResponse, type CreateQueueSlotData, type CreateQueueSlotError, type CreateQueueSlotResponse, type CreateSequenceData, type CreateSequenceError, type CreateSequenceResponse, type CreateWebhookSettingsData, type CreateWebhookSettingsError, type CreateWebhookSettingsResponse, type CreateWhatsAppBroadcastData, type CreateWhatsAppBroadcastError, type CreateWhatsAppBroadcastResponse, type CreateWhatsAppContactData, type CreateWhatsAppContactError, type CreateWhatsAppContactResponse, type CreateWhatsAppTemplateData, type CreateWhatsAppTemplateError, type CreateWhatsAppTemplateResponse, type DeleteAccountData, type DeleteAccountError, type DeleteAccountGroupData, type DeleteAccountGroupError, type DeleteAccountGroupResponse, type DeleteAccountResponse, type DeleteApiKeyData, type DeleteApiKeyError, type DeleteApiKeyResponse, type DeleteBroadcastData, type DeleteBroadcastError, type DeleteBroadcastResponse, type DeleteCommentAutomationData, type DeleteCommentAutomationError, type DeleteCommentAutomationResponse, type DeleteContactData, type DeleteContactError, type DeleteContactResponse, type DeleteCustomFieldData, type DeleteCustomFieldError, type DeleteCustomFieldResponse, type DeleteGoogleBusinessMediaData, type DeleteGoogleBusinessMediaError, type DeleteGoogleBusinessMediaResponse, type DeleteGoogleBusinessPlaceActionData, type DeleteGoogleBusinessPlaceActionError, type DeleteGoogleBusinessPlaceActionResponse, type DeleteInboxCommentData, type DeleteInboxCommentError, type DeleteInboxCommentResponse, type DeleteInboxReviewReplyData, type DeleteInboxReviewReplyError, type DeleteInboxReviewReplyResponse, type DeleteInstagramIceBreakersData, type DeleteInstagramIceBreakersError, type DeleteInstagramIceBreakersResponse, type DeleteMessengerMenuData, type DeleteMessengerMenuError, type DeleteMessengerMenuResponse, type DeletePostData, type DeletePostError, type DeletePostResponse, type DeleteProfileData, type DeleteProfileError, type DeleteProfileResponse, type DeleteQueueSlotData, type DeleteQueueSlotError, type DeleteQueueSlotResponse, type DeleteSequenceData, type DeleteSequenceError, type DeleteSequenceResponse, type DeleteTelegramCommandsData, type DeleteTelegramCommandsError, type DeleteTelegramCommandsResponse, type DeleteWebhookSettingsData, type DeleteWebhookSettingsError, type DeleteWebhookSettingsResponse, type DeleteWhatsAppBroadcastData, type DeleteWhatsAppBroadcastError, type DeleteWhatsAppBroadcastResponse, type DeleteWhatsAppContactData, type DeleteWhatsAppContactError, type DeleteWhatsAppContactResponse, type DeleteWhatsAppGroupData, type DeleteWhatsAppGroupError, type DeleteWhatsAppGroupResponse, type DeleteWhatsAppTemplateData, type DeleteWhatsAppTemplateError, type DeleteWhatsAppTemplateResponse, type DownloadBlueskyMediaData, type DownloadBlueskyMediaError, type DownloadBlueskyMediaResponse, type DownloadFacebookVideoData, type DownloadFacebookVideoError, type DownloadFacebookVideoResponse, type DownloadFormat, type DownloadInstagramMediaData, type DownloadInstagramMediaError, type DownloadInstagramMediaResponse, type DownloadLinkedInVideoData, type DownloadLinkedInVideoError, type DownloadLinkedInVideoResponse, type DownloadResponse, type DownloadTikTokVideoData, type DownloadTikTokVideoError, type DownloadTikTokVideoResponse, type DownloadTwitterMediaData, type DownloadTwitterMediaError, type DownloadTwitterMediaResponse, type DownloadYouTubeVideoData, type DownloadYouTubeVideoError, type DownloadYouTubeVideoResponse, type EditInboxMessageData, type EditInboxMessageError, type EditInboxMessageResponse, type EnrollContactsData, type EnrollContactsError, type EnrollContactsResponse, type ErrorResponse, type FacebookPlatformData, type FollowUserData, type FollowUserError, type FollowUserResponse, type FollowerStatsResponse, type FoodMenu, type FoodMenuItem, type FoodMenuItemAttributes, type FoodMenuLabel, type FoodMenuSection, type GetAccountHealthData, type GetAccountHealthError, type GetAccountHealthResponse, type GetAllAccountsHealthData, type GetAllAccountsHealthError, type GetAllAccountsHealthResponse, type GetAnalyticsData, type GetAnalyticsError, type GetAnalyticsResponse, type GetBestTimeToPostData, type GetBestTimeToPostError, type GetBestTimeToPostResponse, type GetBroadcastData, type GetBroadcastError, type GetBroadcastResponse, type GetCommentAutomationData, type GetCommentAutomationError, type GetCommentAutomationResponse, type GetConnectUrlData, type GetConnectUrlError, type GetConnectUrlResponse, type GetContactChannelsData, type GetContactChannelsError, type GetContactChannelsResponse, type GetContactData, type GetContactError, type GetContactResponse, type GetContentDecayData, type GetContentDecayError, type GetContentDecayResponse, type GetDailyMetricsData, type GetDailyMetricsError, type GetDailyMetricsResponse, type GetFacebookPagesData, type GetFacebookPagesError, type GetFacebookPagesResponse, type GetFollowerStatsData, type GetFollowerStatsError, type GetFollowerStatsResponse, type GetGmbLocationsData, type GetGmbLocationsError, type GetGmbLocationsResponse, type GetGoogleBusinessAttributesData, type GetGoogleBusinessAttributesError, type GetGoogleBusinessAttributesResponse, type GetGoogleBusinessFoodMenusData, type GetGoogleBusinessFoodMenusError, type GetGoogleBusinessFoodMenusResponse, type GetGoogleBusinessLocationDetailsData, type GetGoogleBusinessLocationDetailsError, type GetGoogleBusinessLocationDetailsResponse, type GetGoogleBusinessReviewsData, type GetGoogleBusinessReviewsError, type GetGoogleBusinessReviewsResponse, type GetInboxConversationData, type GetInboxConversationError, type GetInboxConversationMessagesData, type GetInboxConversationMessagesError, type GetInboxConversationMessagesResponse, type GetInboxConversationResponse, type GetInboxPostCommentsData, type GetInboxPostCommentsError, type GetInboxPostCommentsResponse, type GetInstagramAccountInsightsData, type GetInstagramAccountInsightsError, type GetInstagramAccountInsightsResponse, type GetInstagramDemographicsData, type GetInstagramDemographicsError, type GetInstagramDemographicsResponse, type GetInstagramIceBreakersData, type GetInstagramIceBreakersError, type GetInstagramIceBreakersResponse, type GetLinkedInAggregateAnalyticsData, type GetLinkedInAggregateAnalyticsError, type GetLinkedInAggregateAnalyticsResponse, type GetLinkedInMentionsData, type GetLinkedInMentionsError, type GetLinkedInMentionsResponse, type GetLinkedInOrganizationsData, type GetLinkedInOrganizationsError, type GetLinkedInOrganizationsResponse, type GetLinkedInPostAnalyticsData, type GetLinkedInPostAnalyticsError, type GetLinkedInPostAnalyticsResponse, type GetLinkedInPostReactionsData, type GetLinkedInPostReactionsError, type GetLinkedInPostReactionsResponse, type GetMediaPresignedUrlData, type GetMediaPresignedUrlError, type GetMediaPresignedUrlResponse, type GetMessengerMenuData, type GetMessengerMenuError, type GetMessengerMenuResponse, type GetNextQueueSlotData, type GetNextQueueSlotError, type GetNextQueueSlotResponse, type GetPendingOAuthDataData, type GetPendingOAuthDataError, type GetPendingOAuthDataResponse, type GetPinterestBoardsData, type GetPinterestBoardsError, type GetPinterestBoardsResponse, type GetPostData, type GetPostError, type GetPostLogsData, type GetPostLogsError, type GetPostLogsResponse, type GetPostResponse, type GetPostTimelineData, type GetPostTimelineError, type GetPostTimelineResponse, type GetPostingFrequencyData, type GetPostingFrequencyError, type GetPostingFrequencyResponse, type GetProfileData, type GetProfileError, type GetProfileResponse, type GetRedditFeedData, type GetRedditFeedError, type GetRedditFeedResponse, type GetRedditFlairsData, type GetRedditFlairsError, type GetRedditFlairsResponse, type GetRedditSubredditsData, type GetRedditSubredditsError, type GetRedditSubredditsResponse, type GetSequenceData, type GetSequenceError, type GetSequenceResponse, type GetTelegramCommandsData, type GetTelegramCommandsError, type GetTelegramCommandsResponse, type GetTelegramConnectStatusData, type GetTelegramConnectStatusError, type GetTelegramConnectStatusResponse, type GetTikTokCreatorInfoData, type GetTikTokCreatorInfoError, type GetTikTokCreatorInfoResponse, type GetUsageStatsError, type GetUsageStatsResponse, type GetUserData, type GetUserError, type GetUserResponse, type GetWebhookLogsData, type GetWebhookLogsError, type GetWebhookLogsResponse, type GetWebhookSettingsError, type GetWebhookSettingsResponse, type GetWhatsAppBroadcastData, type GetWhatsAppBroadcastError, type GetWhatsAppBroadcastRecipientsData, type GetWhatsAppBroadcastRecipientsError, type GetWhatsAppBroadcastRecipientsResponse, type GetWhatsAppBroadcastResponse, type GetWhatsAppBroadcastsData, type GetWhatsAppBroadcastsError, type GetWhatsAppBroadcastsResponse, type GetWhatsAppBusinessProfileData, type GetWhatsAppBusinessProfileError, type GetWhatsAppBusinessProfileResponse, type GetWhatsAppContactData, type GetWhatsAppContactError, type GetWhatsAppContactResponse, type GetWhatsAppContactsData, type GetWhatsAppContactsError, type GetWhatsAppContactsResponse, type GetWhatsAppDisplayNameData, type GetWhatsAppDisplayNameError, type GetWhatsAppDisplayNameResponse, type 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 InstagramAccountInsightsResponse, type InstagramDemographicsResponse, type InstagramPlatformData, Late, LateApiError, type LikeInboxCommentData, type LikeInboxCommentError, type LikeInboxCommentResponse, type LinkedInAggregateAnalyticsDailyResponse, type LinkedInAggregateAnalyticsTotalResponse, type LinkedInPlatformData, type ListAccountGroupsError, type ListAccountGroupsResponse, type ListAccountsData, type ListAccountsError, type ListAccountsResponse, type ListApiKeysError, type ListApiKeysResponse, type ListBroadcastRecipientsData, type ListBroadcastRecipientsError, type ListBroadcastRecipientsResponse, type ListBroadcastsData, type ListBroadcastsError, type ListBroadcastsResponse, type ListCommentAutomationLogsData, type ListCommentAutomationLogsError, type ListCommentAutomationLogsResponse, type ListCommentAutomationsData, type ListCommentAutomationsError, type ListCommentAutomationsResponse, type ListConnectionLogsData, type ListConnectionLogsError, type ListConnectionLogsResponse, type ListContactsData, type ListContactsError, type ListContactsResponse, type ListCustomFieldsData, type ListCustomFieldsError, type ListCustomFieldsResponse, type ListFacebookPagesData, type ListFacebookPagesError, type ListFacebookPagesResponse, type ListGoogleBusinessLocationsData, type ListGoogleBusinessLocationsError, type ListGoogleBusinessLocationsResponse, type ListGoogleBusinessMediaData, type ListGoogleBusinessMediaError, type ListGoogleBusinessMediaResponse, type ListGoogleBusinessPlaceActionsData, type ListGoogleBusinessPlaceActionsError, type ListGoogleBusinessPlaceActionsResponse, type ListInboxCommentsData, type ListInboxCommentsError, type ListInboxCommentsResponse, type ListInboxConversationsData, type ListInboxConversationsError, type ListInboxConversationsResponse, type ListInboxReviewsData, type ListInboxReviewsError, type ListInboxReviewsResponse, type ListLinkedInOrganizationsData, type ListLinkedInOrganizationsError, type ListLinkedInOrganizationsResponse, type ListPinterestBoardsForSelectionData, type ListPinterestBoardsForSelectionError, type ListPinterestBoardsForSelectionResponse, type ListPostsData, type ListPostsError, type ListPostsLogsData, type ListPostsLogsError, type ListPostsLogsResponse, type ListPostsResponse, type ListProfilesData, type ListProfilesError, type ListProfilesResponse, type ListQueueSlotsData, type ListQueueSlotsError, type ListQueueSlotsResponse, type ListSequenceEnrollmentsData, type ListSequenceEnrollmentsError, type ListSequenceEnrollmentsResponse, type ListSequencesData, type ListSequencesError, type ListSequencesResponse, type ListSnapchatProfilesData, type ListSnapchatProfilesError, type ListSnapchatProfilesResponse, type ListUsersError, type ListUsersResponse, type MediaItem, type MediaUploadResponse, type Money, type Pagination, type ParameterLimitParam, type ParameterPageParam, type PauseSequenceData, type PauseSequenceError, type PauseSequenceResponse, type PinterestPlatformData, type PlatformAnalytics, type PlatformTarget, type Post, type PostAnalytics, type PostCreateResponse, type PostDeleteResponse, type PostGetResponse, type PostLog, type PostRetryResponse, type PostUpdateResponse, type PostsListResponse, type PreviewQueueData, type PreviewQueueError, type PreviewQueueResponse, type Profile, type ProfileCreateResponse, type ProfileDeleteResponse, type ProfileGetResponse, type ProfileUpdateResponse, type ProfilesListResponse, type PurchaseWhatsAppPhoneNumberData, type PurchaseWhatsAppPhoneNumberError, type PurchaseWhatsAppPhoneNumberResponse, type QueueDeleteResponse, type QueueNextSlotResponse, type QueuePreviewResponse, type QueueSchedule, type QueueSlot, type QueueSlotsResponse, type QueueUpdateResponse, RateLimitError, type RecyclingConfig, type RecyclingState, type RedditPlatformData, type ReleaseWhatsAppPhoneNumberData, type ReleaseWhatsAppPhoneNumberError, type ReleaseWhatsAppPhoneNumberResponse, type RemoveBookmarkData, type RemoveBookmarkError, type RemoveBookmarkResponse, type RemoveWhatsAppBroadcastRecipientsData, type RemoveWhatsAppBroadcastRecipientsError, type RemoveWhatsAppBroadcastRecipientsResponse, type RenameWhatsAppGroupData, type RenameWhatsAppGroupError, type RenameWhatsAppGroupResponse, type ReplyToInboxPostData, type ReplyToInboxPostError, type ReplyToInboxPostResponse, type ReplyToInboxReviewData, type ReplyToInboxReviewError, type ReplyToInboxReviewResponse, type RetryPostData, type RetryPostError, type RetryPostResponse, type RetweetPostData, type RetweetPostError, type RetweetPostResponse, type ScheduleBroadcastData, type ScheduleBroadcastError, type ScheduleBroadcastResponse, type ScheduleWhatsAppBroadcastData, type ScheduleWhatsAppBroadcastError, type ScheduleWhatsAppBroadcastResponse, type SearchRedditData, type SearchRedditError, type SearchRedditResponse, type SelectFacebookPageData, type SelectFacebookPageError, type SelectFacebookPageResponse, type SelectGoogleBusinessLocationData, type SelectGoogleBusinessLocationError, type SelectGoogleBusinessLocationResponse, type SelectLinkedInOrganizationData, type SelectLinkedInOrganizationError, type SelectLinkedInOrganizationResponse, type SelectPinterestBoardData, type SelectPinterestBoardError, type SelectPinterestBoardResponse, type SelectSnapchatProfileData, type SelectSnapchatProfileError, type SelectSnapchatProfileResponse, type SendBroadcastData, type SendBroadcastError, type SendBroadcastResponse, type SendInboxMessageData, type SendInboxMessageError, type SendInboxMessageResponse, type SendPrivateReplyToCommentData, type SendPrivateReplyToCommentError, type SendPrivateReplyToCommentResponse, type SendWhatsAppBroadcastData, type SendWhatsAppBroadcastError, type SendWhatsAppBroadcastResponse, type SendWhatsAppBulkData, type SendWhatsAppBulkError, type SendWhatsAppBulkResponse, type SetContactFieldValueData, type SetContactFieldValueError, type SetContactFieldValueResponse, type SetInstagramIceBreakersData, type SetInstagramIceBreakersError, type SetInstagramIceBreakersResponse, type SetMessengerMenuData, type SetMessengerMenuError, type SetMessengerMenuResponse, type SetTelegramCommandsData, type SetTelegramCommandsError, type SetTelegramCommandsResponse, type SnapchatPlatformData, type SocialAccount, type TelegramPlatformData, type TestWebhookData, type TestWebhookError, type TestWebhookResponse, type ThreadsPlatformData, type TikTokPlatformData, type TranscriptResponse, type TranscriptSegment, type TwitterPlatformData, type UndoRetweetData, type UndoRetweetError, type UndoRetweetResponse, type UnenrollContactData, type UnenrollContactError, type UnenrollContactResponse, type UnfollowUserData, type UnfollowUserError, type UnfollowUserResponse, type UnhideInboxCommentData, type UnhideInboxCommentError, type UnhideInboxCommentResponse, type UnlikeInboxCommentData, type UnlikeInboxCommentError, type UnlikeInboxCommentResponse, type UnpublishPostData, type UnpublishPostError, type UnpublishPostResponse, type UpdateAccountData, type UpdateAccountError, type UpdateAccountGroupData, type UpdateAccountGroupError, type UpdateAccountGroupResponse, type UpdateAccountResponse, type UpdateBroadcastData, type UpdateBroadcastError, type UpdateBroadcastResponse, type UpdateCommentAutomationData, type UpdateCommentAutomationError, type UpdateCommentAutomationResponse, type UpdateContactData, type UpdateContactError, type UpdateContactResponse, type UpdateCustomFieldData, type UpdateCustomFieldError, type UpdateCustomFieldResponse, type UpdateFacebookPageData, type UpdateFacebookPageError, type UpdateFacebookPageResponse, type UpdateGmbLocationData, type UpdateGmbLocationError, type UpdateGmbLocationResponse, type UpdateGoogleBusinessAttributesData, type UpdateGoogleBusinessAttributesError, type UpdateGoogleBusinessAttributesResponse, type UpdateGoogleBusinessFoodMenusData, type UpdateGoogleBusinessFoodMenusError, type UpdateGoogleBusinessFoodMenusResponse, type UpdateGoogleBusinessLocationDetailsData, type UpdateGoogleBusinessLocationDetailsError, type UpdateGoogleBusinessLocationDetailsResponse, type UpdateInboxConversationData, type UpdateInboxConversationError, type UpdateInboxConversationResponse, type UpdateLinkedInOrganizationData, type UpdateLinkedInOrganizationError, type UpdateLinkedInOrganizationResponse, type UpdatePinterestBoardsData, type UpdatePinterestBoardsError, type UpdatePinterestBoardsResponse, type UpdatePostData, type UpdatePostError, type UpdatePostResponse, type UpdateProfileData, type UpdateProfileError, type UpdateProfileResponse, type UpdateQueueSlotData, type UpdateQueueSlotError, type UpdateQueueSlotResponse, type UpdateRedditSubredditsData, type UpdateRedditSubredditsError, type UpdateRedditSubredditsResponse, type UpdateSequenceData, type UpdateSequenceError, type UpdateSequenceResponse, type UpdateWebhookSettingsData, type UpdateWebhookSettingsError, type UpdateWebhookSettingsResponse, type UpdateWhatsAppBusinessProfileData, type UpdateWhatsAppBusinessProfileError, type UpdateWhatsAppBusinessProfileResponse, type UpdateWhatsAppContactData, type UpdateWhatsAppContactError, type UpdateWhatsAppContactResponse, type UpdateWhatsAppDisplayNameData, type UpdateWhatsAppDisplayNameError, type UpdateWhatsAppDisplayNameResponse, type UpdateWhatsAppTemplateData, type UpdateWhatsAppTemplateError, type UpdateWhatsAppTemplateResponse, type UploadTokenResponse, type UploadTokenStatusResponse, type UploadWhatsAppProfilePhotoData, type UploadWhatsAppProfilePhotoError, type UploadWhatsAppProfilePhotoResponse, type UploadedFile, type UsageStats, type User, type UserGetResponse, type UsersListResponse, type ValidateMediaData, type ValidateMediaError, type ValidateMediaResponse, type ValidatePostData, type ValidatePostError, type ValidatePostLengthData, type ValidatePostLengthError, type ValidatePostLengthResponse, type ValidatePostResponse, type ValidateSubredditData, type ValidateSubredditError, type ValidateSubredditResponse, ValidationError, type Webhook, type WebhookLog, type WebhookPayloadAccountConnected, type WebhookPayloadAccountDisconnected, type WebhookPayloadComment, type WebhookPayloadMessage, type WebhookPayloadPost, type YouTubeDailyViewsResponse, type YouTubePlatformData, type YouTubeScopeMissingResponse, Zernio, ZernioApiError, type action, type aggregation, type aggregation2, type aggregation3, type billingPeriod, type commercialContentType, type connectionMethod, type contentType, type contentType2, type contentType3, Zernio as default, type direction, type disconnectionType, type errorCategory, type errorSource, type event, type event2, type event3, type event4, type event5, type event6, type eventType, type gapFreq, type graduationStrategy, type mediaType, type mediaType2, type metric, type metricType, parseApiError, type parseMode, type permission, type platform, type platform2, type platform3, type replySettings, type scope, type status, type status2, type status3, type status4, type status5, type status6, type status7, type status8, type syncStatus, type syncStatus2, type timeframe, type type, type type2, type type3, type visibility };
|