@getlatedev/node 0.1.15 → 0.1.17
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 +14 -0
- package/dist/index.d.mts +384 -2
- package/dist/index.d.ts +384 -2
- package/dist/index.js +76 -1
- package/dist/index.mjs +76 -1
- package/package.json +1 -1
- package/src/client.ts +26 -0
- package/src/generated/sdk.gen.ts +127 -5
- package/src/generated/types.gen.ts +398 -1
package/dist/index.d.ts
CHANGED
|
@@ -286,6 +286,21 @@ declare class Late {
|
|
|
286
286
|
updateInboxConversation: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<UpdateInboxConversationData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<UpdateInboxConversationResponse, unknown, ThrowOnError>;
|
|
287
287
|
getInboxConversationMessages: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<GetInboxConversationMessagesData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<GetInboxConversationMessagesResponse, unknown, ThrowOnError>;
|
|
288
288
|
sendInboxMessage: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<SendInboxMessageData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<SendInboxMessageResponse, unknown, ThrowOnError>;
|
|
289
|
+
editInboxMessage: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<EditInboxMessageData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<EditInboxMessageResponse, unknown, ThrowOnError>;
|
|
290
|
+
};
|
|
291
|
+
/**
|
|
292
|
+
* accountsettings API
|
|
293
|
+
*/
|
|
294
|
+
accountsettings: {
|
|
295
|
+
getMessengerMenu: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<GetMessengerMenuData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<GetMessengerMenuResponse, unknown, ThrowOnError>;
|
|
296
|
+
setMessengerMenu: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<SetMessengerMenuData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<unknown, unknown, ThrowOnError>;
|
|
297
|
+
deleteMessengerMenu: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<DeleteMessengerMenuData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<unknown, DeleteMessengerMenuError, ThrowOnError>;
|
|
298
|
+
getInstagramIceBreakers: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<GetInstagramIceBreakersData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<GetInstagramIceBreakersResponse, unknown, ThrowOnError>;
|
|
299
|
+
setInstagramIceBreakers: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<SetInstagramIceBreakersData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<unknown, unknown, ThrowOnError>;
|
|
300
|
+
deleteInstagramIceBreakers: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<DeleteInstagramIceBreakersData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<unknown, DeleteInstagramIceBreakersError, ThrowOnError>;
|
|
301
|
+
getTelegramCommands: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<GetTelegramCommandsData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<GetTelegramCommandsResponse, unknown, ThrowOnError>;
|
|
302
|
+
setTelegramCommands: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<SetTelegramCommandsData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<unknown, unknown, ThrowOnError>;
|
|
303
|
+
deleteTelegramCommands: <ThrowOnError extends boolean = false>(options: _hey_api_client_fetch.OptionsLegacyParser<DeleteTelegramCommandsData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<unknown, DeleteTelegramCommandsError, ThrowOnError>;
|
|
289
304
|
};
|
|
290
305
|
/**
|
|
291
306
|
* comments API
|
|
@@ -2050,6 +2065,27 @@ type WebhookPayloadMessage = {
|
|
|
2050
2065
|
name?: string;
|
|
2051
2066
|
username?: string;
|
|
2052
2067
|
picture?: string;
|
|
2068
|
+
/**
|
|
2069
|
+
* Instagram profile data for the sender. Only present for Instagram conversations.
|
|
2070
|
+
*/
|
|
2071
|
+
instagramProfile?: {
|
|
2072
|
+
/**
|
|
2073
|
+
* Whether the sender follows your Instagram business account
|
|
2074
|
+
*/
|
|
2075
|
+
isFollower?: (boolean) | null;
|
|
2076
|
+
/**
|
|
2077
|
+
* Whether your Instagram business account follows the sender
|
|
2078
|
+
*/
|
|
2079
|
+
isFollowing?: (boolean) | null;
|
|
2080
|
+
/**
|
|
2081
|
+
* The sender's follower count on Instagram
|
|
2082
|
+
*/
|
|
2083
|
+
followerCount?: (number) | null;
|
|
2084
|
+
/**
|
|
2085
|
+
* Whether the sender is a verified Instagram user
|
|
2086
|
+
*/
|
|
2087
|
+
isVerified?: (boolean) | null;
|
|
2088
|
+
} | null;
|
|
2053
2089
|
};
|
|
2054
2090
|
sentAt?: string;
|
|
2055
2091
|
isRead?: boolean;
|
|
@@ -2072,6 +2108,27 @@ type WebhookPayloadMessage = {
|
|
|
2072
2108
|
username?: string;
|
|
2073
2109
|
displayName?: string;
|
|
2074
2110
|
};
|
|
2111
|
+
/**
|
|
2112
|
+
* Interactive message metadata (present when message is a quick reply tap, postback button tap, or inline keyboard callback)
|
|
2113
|
+
*/
|
|
2114
|
+
metadata?: {
|
|
2115
|
+
/**
|
|
2116
|
+
* Payload from a quick reply tap (Meta platforms)
|
|
2117
|
+
*/
|
|
2118
|
+
quickReplyPayload?: string;
|
|
2119
|
+
/**
|
|
2120
|
+
* Payload from a postback button tap (Meta platforms)
|
|
2121
|
+
*/
|
|
2122
|
+
postbackPayload?: string;
|
|
2123
|
+
/**
|
|
2124
|
+
* Title of the tapped postback button (Meta platforms)
|
|
2125
|
+
*/
|
|
2126
|
+
postbackTitle?: string;
|
|
2127
|
+
/**
|
|
2128
|
+
* Callback data from an inline keyboard button tap (Telegram)
|
|
2129
|
+
*/
|
|
2130
|
+
callbackData?: string;
|
|
2131
|
+
} | null;
|
|
2075
2132
|
timestamp?: string;
|
|
2076
2133
|
};
|
|
2077
2134
|
type event4 = 'message.received';
|
|
@@ -5297,6 +5354,31 @@ type ListInboxConversationsResponse = ({
|
|
|
5297
5354
|
* Direct link to open the conversation on the platform (if available)
|
|
5298
5355
|
*/
|
|
5299
5356
|
url?: (string) | null;
|
|
5357
|
+
/**
|
|
5358
|
+
* Instagram profile data for the participant. Only present for Instagram conversations.
|
|
5359
|
+
*/
|
|
5360
|
+
instagramProfile?: {
|
|
5361
|
+
/**
|
|
5362
|
+
* Whether the participant follows your Instagram business account
|
|
5363
|
+
*/
|
|
5364
|
+
isFollower?: (boolean) | null;
|
|
5365
|
+
/**
|
|
5366
|
+
* Whether your Instagram business account follows the participant
|
|
5367
|
+
*/
|
|
5368
|
+
isFollowing?: (boolean) | null;
|
|
5369
|
+
/**
|
|
5370
|
+
* The participant's follower count on Instagram
|
|
5371
|
+
*/
|
|
5372
|
+
followerCount?: (number) | null;
|
|
5373
|
+
/**
|
|
5374
|
+
* Whether the participant is a verified Instagram user
|
|
5375
|
+
*/
|
|
5376
|
+
isVerified?: (boolean) | null;
|
|
5377
|
+
/**
|
|
5378
|
+
* When this profile data was last fetched from Instagram
|
|
5379
|
+
*/
|
|
5380
|
+
fetchedAt?: (string) | null;
|
|
5381
|
+
} | null;
|
|
5300
5382
|
}>;
|
|
5301
5383
|
pagination?: {
|
|
5302
5384
|
hasMore?: boolean;
|
|
@@ -5355,6 +5437,31 @@ type GetInboxConversationResponse = ({
|
|
|
5355
5437
|
id?: string;
|
|
5356
5438
|
name?: string;
|
|
5357
5439
|
}>;
|
|
5440
|
+
/**
|
|
5441
|
+
* Instagram profile data for the participant. Only present for Instagram conversations.
|
|
5442
|
+
*/
|
|
5443
|
+
instagramProfile?: {
|
|
5444
|
+
/**
|
|
5445
|
+
* Whether the participant follows your Instagram business account
|
|
5446
|
+
*/
|
|
5447
|
+
isFollower?: (boolean) | null;
|
|
5448
|
+
/**
|
|
5449
|
+
* Whether your Instagram business account follows the participant
|
|
5450
|
+
*/
|
|
5451
|
+
isFollowing?: (boolean) | null;
|
|
5452
|
+
/**
|
|
5453
|
+
* The participant's follower count on Instagram
|
|
5454
|
+
*/
|
|
5455
|
+
followerCount?: (number) | null;
|
|
5456
|
+
/**
|
|
5457
|
+
* Whether the participant is a verified Instagram user
|
|
5458
|
+
*/
|
|
5459
|
+
isVerified?: (boolean) | null;
|
|
5460
|
+
/**
|
|
5461
|
+
* When this profile data was last fetched from Instagram
|
|
5462
|
+
*/
|
|
5463
|
+
fetchedAt?: (string) | null;
|
|
5464
|
+
} | null;
|
|
5358
5465
|
};
|
|
5359
5466
|
});
|
|
5360
5467
|
type GetInboxConversationError = ({
|
|
@@ -5448,7 +5555,120 @@ type SendInboxMessageData = {
|
|
|
5448
5555
|
/**
|
|
5449
5556
|
* Message text
|
|
5450
5557
|
*/
|
|
5451
|
-
message
|
|
5558
|
+
message?: string;
|
|
5559
|
+
/**
|
|
5560
|
+
* Quick reply buttons. Mutually exclusive with buttons. Max 13 items.
|
|
5561
|
+
*/
|
|
5562
|
+
quickReplies?: Array<{
|
|
5563
|
+
/**
|
|
5564
|
+
* Button label (max 20 chars)
|
|
5565
|
+
*/
|
|
5566
|
+
title: string;
|
|
5567
|
+
/**
|
|
5568
|
+
* Payload sent back on tap
|
|
5569
|
+
*/
|
|
5570
|
+
payload: string;
|
|
5571
|
+
/**
|
|
5572
|
+
* Optional icon URL (Meta only)
|
|
5573
|
+
*/
|
|
5574
|
+
imageUrl?: string;
|
|
5575
|
+
}>;
|
|
5576
|
+
/**
|
|
5577
|
+
* Action buttons. Mutually exclusive with quickReplies. Max 3 items.
|
|
5578
|
+
*/
|
|
5579
|
+
buttons?: Array<{
|
|
5580
|
+
/**
|
|
5581
|
+
* Button type. phone is Facebook only.
|
|
5582
|
+
*/
|
|
5583
|
+
type: 'url' | 'postback' | 'phone';
|
|
5584
|
+
/**
|
|
5585
|
+
* Button label (max 20 chars)
|
|
5586
|
+
*/
|
|
5587
|
+
title: string;
|
|
5588
|
+
/**
|
|
5589
|
+
* URL for url-type buttons
|
|
5590
|
+
*/
|
|
5591
|
+
url?: string;
|
|
5592
|
+
/**
|
|
5593
|
+
* Payload for postback-type buttons
|
|
5594
|
+
*/
|
|
5595
|
+
payload?: string;
|
|
5596
|
+
/**
|
|
5597
|
+
* Phone number for phone-type buttons (Facebook only)
|
|
5598
|
+
*/
|
|
5599
|
+
phone?: string;
|
|
5600
|
+
}>;
|
|
5601
|
+
/**
|
|
5602
|
+
* Generic template for carousels (Instagram/Facebook only, ignored on Telegram).
|
|
5603
|
+
*/
|
|
5604
|
+
template?: {
|
|
5605
|
+
/**
|
|
5606
|
+
* Template type
|
|
5607
|
+
*/
|
|
5608
|
+
type?: 'generic';
|
|
5609
|
+
elements?: Array<{
|
|
5610
|
+
/**
|
|
5611
|
+
* Element title (max 80 chars)
|
|
5612
|
+
*/
|
|
5613
|
+
title: string;
|
|
5614
|
+
/**
|
|
5615
|
+
* Element subtitle
|
|
5616
|
+
*/
|
|
5617
|
+
subtitle?: string;
|
|
5618
|
+
/**
|
|
5619
|
+
* Element image URL
|
|
5620
|
+
*/
|
|
5621
|
+
imageUrl?: string;
|
|
5622
|
+
buttons?: Array<{
|
|
5623
|
+
type?: 'url' | 'postback';
|
|
5624
|
+
title?: string;
|
|
5625
|
+
url?: string;
|
|
5626
|
+
payload?: string;
|
|
5627
|
+
}>;
|
|
5628
|
+
}>;
|
|
5629
|
+
};
|
|
5630
|
+
/**
|
|
5631
|
+
* Telegram-native keyboard markup. Ignored on other platforms.
|
|
5632
|
+
*/
|
|
5633
|
+
replyMarkup?: {
|
|
5634
|
+
/**
|
|
5635
|
+
* Keyboard type
|
|
5636
|
+
*/
|
|
5637
|
+
type?: 'inline_keyboard' | 'reply_keyboard';
|
|
5638
|
+
/**
|
|
5639
|
+
* Array of rows, each row is an array of buttons
|
|
5640
|
+
*/
|
|
5641
|
+
keyboard?: Array<Array<{
|
|
5642
|
+
/**
|
|
5643
|
+
* Button text
|
|
5644
|
+
*/
|
|
5645
|
+
text?: string;
|
|
5646
|
+
/**
|
|
5647
|
+
* Callback data (inline_keyboard only
|
|
5648
|
+
*/
|
|
5649
|
+
callbackData?: string;
|
|
5650
|
+
/**
|
|
5651
|
+
* URL to open (inline_keyboard only)
|
|
5652
|
+
*/
|
|
5653
|
+
url?: string;
|
|
5654
|
+
}>>;
|
|
5655
|
+
/**
|
|
5656
|
+
* Hide keyboard after use (reply_keyboard only)
|
|
5657
|
+
*/
|
|
5658
|
+
oneTime?: boolean;
|
|
5659
|
+
};
|
|
5660
|
+
/**
|
|
5661
|
+
* Facebook messaging type. Required when using messageTag.
|
|
5662
|
+
*/
|
|
5663
|
+
messagingType?: 'RESPONSE' | 'UPDATE' | 'MESSAGE_TAG';
|
|
5664
|
+
/**
|
|
5665
|
+
* Facebook message tag for messaging outside 24h window. Requires messagingType MESSAGE_TAG. Instagram only supports HUMAN_AGENT.
|
|
5666
|
+
*/
|
|
5667
|
+
messageTag?: 'CONFIRMED_EVENT_UPDATE' | 'POST_PURCHASE_UPDATE' | 'ACCOUNT_UPDATE' | 'HUMAN_AGENT';
|
|
5668
|
+
/**
|
|
5669
|
+
* Platform message ID to reply to (Telegram only).
|
|
5670
|
+
*/
|
|
5671
|
+
replyTo?: string;
|
|
5452
5672
|
};
|
|
5453
5673
|
path: {
|
|
5454
5674
|
/**
|
|
@@ -5484,6 +5704,168 @@ type SendInboxMessageError = ({
|
|
|
5484
5704
|
} | {
|
|
5485
5705
|
error?: string;
|
|
5486
5706
|
} | unknown);
|
|
5707
|
+
type EditInboxMessageData = {
|
|
5708
|
+
body: {
|
|
5709
|
+
/**
|
|
5710
|
+
* Social account ID
|
|
5711
|
+
*/
|
|
5712
|
+
accountId: string;
|
|
5713
|
+
/**
|
|
5714
|
+
* New message text
|
|
5715
|
+
*/
|
|
5716
|
+
text?: string;
|
|
5717
|
+
/**
|
|
5718
|
+
* New inline keyboard markup
|
|
5719
|
+
*/
|
|
5720
|
+
replyMarkup?: {
|
|
5721
|
+
type?: 'inline_keyboard';
|
|
5722
|
+
keyboard?: Array<Array<{
|
|
5723
|
+
text?: string;
|
|
5724
|
+
callbackData?: string;
|
|
5725
|
+
url?: string;
|
|
5726
|
+
}>>;
|
|
5727
|
+
};
|
|
5728
|
+
};
|
|
5729
|
+
path: {
|
|
5730
|
+
/**
|
|
5731
|
+
* The conversation ID
|
|
5732
|
+
*/
|
|
5733
|
+
conversationId: string;
|
|
5734
|
+
/**
|
|
5735
|
+
* The Telegram message ID to edit
|
|
5736
|
+
*/
|
|
5737
|
+
messageId: string;
|
|
5738
|
+
};
|
|
5739
|
+
};
|
|
5740
|
+
type EditInboxMessageResponse = ({
|
|
5741
|
+
success?: boolean;
|
|
5742
|
+
data?: {
|
|
5743
|
+
messageId?: number;
|
|
5744
|
+
};
|
|
5745
|
+
});
|
|
5746
|
+
type EditInboxMessageError = (unknown | {
|
|
5747
|
+
error?: string;
|
|
5748
|
+
});
|
|
5749
|
+
type GetMessengerMenuData = {
|
|
5750
|
+
path: {
|
|
5751
|
+
accountId: string;
|
|
5752
|
+
};
|
|
5753
|
+
};
|
|
5754
|
+
type GetMessengerMenuResponse = ({
|
|
5755
|
+
data?: Array<{
|
|
5756
|
+
[key: string]: unknown;
|
|
5757
|
+
}>;
|
|
5758
|
+
});
|
|
5759
|
+
type GetMessengerMenuError = (unknown | {
|
|
5760
|
+
error?: string;
|
|
5761
|
+
});
|
|
5762
|
+
type SetMessengerMenuData = {
|
|
5763
|
+
body: {
|
|
5764
|
+
/**
|
|
5765
|
+
* Persistent menu configuration array (Meta format)
|
|
5766
|
+
*/
|
|
5767
|
+
persistent_menu: Array<{
|
|
5768
|
+
[key: string]: unknown;
|
|
5769
|
+
}>;
|
|
5770
|
+
};
|
|
5771
|
+
path: {
|
|
5772
|
+
accountId: string;
|
|
5773
|
+
};
|
|
5774
|
+
};
|
|
5775
|
+
type SetMessengerMenuResponse = (unknown);
|
|
5776
|
+
type SetMessengerMenuError = (unknown | {
|
|
5777
|
+
error?: string;
|
|
5778
|
+
});
|
|
5779
|
+
type DeleteMessengerMenuData = {
|
|
5780
|
+
path: {
|
|
5781
|
+
accountId: string;
|
|
5782
|
+
};
|
|
5783
|
+
};
|
|
5784
|
+
type DeleteMessengerMenuResponse = (unknown);
|
|
5785
|
+
type DeleteMessengerMenuError = ({
|
|
5786
|
+
error?: string;
|
|
5787
|
+
});
|
|
5788
|
+
type GetInstagramIceBreakersData = {
|
|
5789
|
+
path: {
|
|
5790
|
+
accountId: string;
|
|
5791
|
+
};
|
|
5792
|
+
};
|
|
5793
|
+
type GetInstagramIceBreakersResponse = ({
|
|
5794
|
+
data?: Array<{
|
|
5795
|
+
[key: string]: unknown;
|
|
5796
|
+
}>;
|
|
5797
|
+
});
|
|
5798
|
+
type GetInstagramIceBreakersError = (unknown | {
|
|
5799
|
+
error?: string;
|
|
5800
|
+
});
|
|
5801
|
+
type SetInstagramIceBreakersData = {
|
|
5802
|
+
body: {
|
|
5803
|
+
ice_breakers: Array<{
|
|
5804
|
+
question: string;
|
|
5805
|
+
payload: string;
|
|
5806
|
+
}>;
|
|
5807
|
+
};
|
|
5808
|
+
path: {
|
|
5809
|
+
accountId: string;
|
|
5810
|
+
};
|
|
5811
|
+
};
|
|
5812
|
+
type SetInstagramIceBreakersResponse = (unknown);
|
|
5813
|
+
type SetInstagramIceBreakersError = (unknown | {
|
|
5814
|
+
error?: string;
|
|
5815
|
+
});
|
|
5816
|
+
type DeleteInstagramIceBreakersData = {
|
|
5817
|
+
path: {
|
|
5818
|
+
accountId: string;
|
|
5819
|
+
};
|
|
5820
|
+
};
|
|
5821
|
+
type DeleteInstagramIceBreakersResponse = (unknown);
|
|
5822
|
+
type DeleteInstagramIceBreakersError = ({
|
|
5823
|
+
error?: string;
|
|
5824
|
+
});
|
|
5825
|
+
type GetTelegramCommandsData = {
|
|
5826
|
+
path: {
|
|
5827
|
+
accountId: string;
|
|
5828
|
+
};
|
|
5829
|
+
};
|
|
5830
|
+
type GetTelegramCommandsResponse = ({
|
|
5831
|
+
data?: Array<{
|
|
5832
|
+
command?: string;
|
|
5833
|
+
description?: string;
|
|
5834
|
+
}>;
|
|
5835
|
+
});
|
|
5836
|
+
type GetTelegramCommandsError = (unknown | {
|
|
5837
|
+
error?: string;
|
|
5838
|
+
});
|
|
5839
|
+
type SetTelegramCommandsData = {
|
|
5840
|
+
body: {
|
|
5841
|
+
commands: Array<{
|
|
5842
|
+
/**
|
|
5843
|
+
* Bot command without leading slash
|
|
5844
|
+
*/
|
|
5845
|
+
command: string;
|
|
5846
|
+
/**
|
|
5847
|
+
* Command description
|
|
5848
|
+
*/
|
|
5849
|
+
description: string;
|
|
5850
|
+
}>;
|
|
5851
|
+
};
|
|
5852
|
+
path: {
|
|
5853
|
+
accountId: string;
|
|
5854
|
+
};
|
|
5855
|
+
};
|
|
5856
|
+
type SetTelegramCommandsResponse = (unknown);
|
|
5857
|
+
type SetTelegramCommandsError = (unknown | {
|
|
5858
|
+
error?: string;
|
|
5859
|
+
});
|
|
5860
|
+
type DeleteTelegramCommandsData = {
|
|
5861
|
+
path: {
|
|
5862
|
+
accountId: string;
|
|
5863
|
+
};
|
|
5864
|
+
};
|
|
5865
|
+
type DeleteTelegramCommandsResponse = (unknown);
|
|
5866
|
+
type DeleteTelegramCommandsError = ({
|
|
5867
|
+
error?: string;
|
|
5868
|
+
});
|
|
5487
5869
|
type ListInboxCommentsData = {
|
|
5488
5870
|
query?: {
|
|
5489
5871
|
/**
|
|
@@ -5988,4 +6370,4 @@ type DeleteInboxReviewReplyError = ({
|
|
|
5988
6370
|
error?: string;
|
|
5989
6371
|
} | unknown);
|
|
5990
6372
|
|
|
5991
|
-
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 DeletePostData, type DeletePostError, type DeletePostResponse, type DeleteProfileData, type DeleteProfileError, type DeleteProfileResponse, type DeleteQueueSlotData, type DeleteQueueSlotError, type DeleteQueueSlotResponse, 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 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 GetConnectUrlData, type GetConnectUrlError, type GetConnectUrlResponse, 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 GetLinkedInAggregateAnalyticsData, type GetLinkedInAggregateAnalyticsError, type GetLinkedInAggregateAnalyticsResponse, type GetLinkedInMentionsData, type GetLinkedInMentionsError, type GetLinkedInMentionsResponse, type GetLinkedInOrganizationsData, type GetLinkedInOrganizationsError, type GetLinkedInOrganizationsResponse, type GetLinkedInPostAnalyticsData, type GetLinkedInPostAnalyticsError, type GetLinkedInPostAnalyticsResponse, type GetLogData, type GetLogError, type GetLogResponse, type GetMediaPresignedUrlData, type GetMediaPresignedUrlError, type GetMediaPresignedUrlResponse, 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 GetProfileData, type GetProfileError, type GetProfileResponse, type GetRedditFeedData, type GetRedditFeedError, type GetRedditFeedResponse, type GetRedditSubredditsData, type GetRedditSubredditsError, type GetRedditSubredditsResponse, 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 ListLogsData, type ListLogsError, type ListLogsResponse, 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 PostLogDetail, 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 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 SnapchatPlatformData, type SocialAccount, type TelegramPlatformData, type TestWebhookData, type TestWebhookError, type TestWebhookResponse, type ThreadsPlatformData, type TikTokPlatformData, type TikTokSettings, type TranscriptResponse, type TranscriptSegment, type TwitterPlatformData, type UnhideInboxCommentData, type UnhideInboxCommentError, type UnhideInboxCommentResponse, type UnlikeInboxCommentData, type UnlikeInboxCommentError, type UnlikeInboxCommentResponse, 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, ValidationError, type Webhook, type WebhookLog, type WebhookPayloadAccountConnected, type WebhookPayloadAccountDisconnected, 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, Late as default, type direction, type disconnectionType, type errorCategory, type errorSource, type event, type event2, type event3, type event4, type event5, type eventType, type graduationStrategy, type mediaType, parseApiError, type parseMode, type platform, type platform2, type status, type status2, type status3, type status4, type status5, type status6, type type, type type2, type type3, type visibility };
|
|
6373
|
+
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 GetConnectUrlData, type GetConnectUrlError, type GetConnectUrlResponse, 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 GetLogData, type GetLogError, type GetLogResponse, 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 GetProfileData, type GetProfileError, type GetProfileResponse, type GetRedditFeedData, type GetRedditFeedError, type GetRedditFeedResponse, 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 ListLogsData, type ListLogsError, type ListLogsResponse, 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 PostLogDetail, 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 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 TikTokSettings, type TranscriptResponse, type TranscriptSegment, type TwitterPlatformData, type UnhideInboxCommentData, type UnhideInboxCommentError, type UnhideInboxCommentResponse, type UnlikeInboxCommentData, type UnlikeInboxCommentError, type UnlikeInboxCommentResponse, 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, ValidationError, type Webhook, type WebhookLog, type WebhookPayloadAccountConnected, type WebhookPayloadAccountDisconnected, 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, Late as default, type direction, type disconnectionType, type errorCategory, type errorSource, type event, type event2, type event3, type event4, type event5, type eventType, type graduationStrategy, type mediaType, parseApiError, type parseMode, type platform, type platform2, type status, type status2, type status3, type status4, type status5, type status6, type type, type type2, type type3, type visibility };
|
package/dist/index.js
CHANGED
|
@@ -925,6 +925,66 @@ var sendInboxMessage = (options) => {
|
|
|
925
925
|
url: "/v1/inbox/conversations/{conversationId}/messages"
|
|
926
926
|
});
|
|
927
927
|
};
|
|
928
|
+
var editInboxMessage = (options) => {
|
|
929
|
+
return (options?.client ?? client).patch({
|
|
930
|
+
...options,
|
|
931
|
+
url: "/v1/inbox/conversations/{conversationId}/messages/{messageId}"
|
|
932
|
+
});
|
|
933
|
+
};
|
|
934
|
+
var getMessengerMenu = (options) => {
|
|
935
|
+
return (options?.client ?? client).get({
|
|
936
|
+
...options,
|
|
937
|
+
url: "/v1/accounts/{accountId}/messenger-menu"
|
|
938
|
+
});
|
|
939
|
+
};
|
|
940
|
+
var setMessengerMenu = (options) => {
|
|
941
|
+
return (options?.client ?? client).put({
|
|
942
|
+
...options,
|
|
943
|
+
url: "/v1/accounts/{accountId}/messenger-menu"
|
|
944
|
+
});
|
|
945
|
+
};
|
|
946
|
+
var deleteMessengerMenu = (options) => {
|
|
947
|
+
return (options?.client ?? client).delete({
|
|
948
|
+
...options,
|
|
949
|
+
url: "/v1/accounts/{accountId}/messenger-menu"
|
|
950
|
+
});
|
|
951
|
+
};
|
|
952
|
+
var getInstagramIceBreakers = (options) => {
|
|
953
|
+
return (options?.client ?? client).get({
|
|
954
|
+
...options,
|
|
955
|
+
url: "/v1/accounts/{accountId}/instagram-ice-breakers"
|
|
956
|
+
});
|
|
957
|
+
};
|
|
958
|
+
var setInstagramIceBreakers = (options) => {
|
|
959
|
+
return (options?.client ?? client).put({
|
|
960
|
+
...options,
|
|
961
|
+
url: "/v1/accounts/{accountId}/instagram-ice-breakers"
|
|
962
|
+
});
|
|
963
|
+
};
|
|
964
|
+
var deleteInstagramIceBreakers = (options) => {
|
|
965
|
+
return (options?.client ?? client).delete({
|
|
966
|
+
...options,
|
|
967
|
+
url: "/v1/accounts/{accountId}/instagram-ice-breakers"
|
|
968
|
+
});
|
|
969
|
+
};
|
|
970
|
+
var getTelegramCommands = (options) => {
|
|
971
|
+
return (options?.client ?? client).get({
|
|
972
|
+
...options,
|
|
973
|
+
url: "/v1/accounts/{accountId}/telegram-commands"
|
|
974
|
+
});
|
|
975
|
+
};
|
|
976
|
+
var setTelegramCommands = (options) => {
|
|
977
|
+
return (options?.client ?? client).put({
|
|
978
|
+
...options,
|
|
979
|
+
url: "/v1/accounts/{accountId}/telegram-commands"
|
|
980
|
+
});
|
|
981
|
+
};
|
|
982
|
+
var deleteTelegramCommands = (options) => {
|
|
983
|
+
return (options?.client ?? client).delete({
|
|
984
|
+
...options,
|
|
985
|
+
url: "/v1/accounts/{accountId}/telegram-commands"
|
|
986
|
+
});
|
|
987
|
+
};
|
|
928
988
|
var listInboxComments = (options) => {
|
|
929
989
|
return (options?.client ?? client).get({
|
|
930
990
|
...options,
|
|
@@ -1329,7 +1389,22 @@ var Late = class {
|
|
|
1329
1389
|
getInboxConversation,
|
|
1330
1390
|
updateInboxConversation,
|
|
1331
1391
|
getInboxConversationMessages,
|
|
1332
|
-
sendInboxMessage
|
|
1392
|
+
sendInboxMessage,
|
|
1393
|
+
editInboxMessage
|
|
1394
|
+
};
|
|
1395
|
+
/**
|
|
1396
|
+
* accountsettings API
|
|
1397
|
+
*/
|
|
1398
|
+
this.accountsettings = {
|
|
1399
|
+
getMessengerMenu,
|
|
1400
|
+
setMessengerMenu,
|
|
1401
|
+
deleteMessengerMenu,
|
|
1402
|
+
getInstagramIceBreakers,
|
|
1403
|
+
setInstagramIceBreakers,
|
|
1404
|
+
deleteInstagramIceBreakers,
|
|
1405
|
+
getTelegramCommands,
|
|
1406
|
+
setTelegramCommands,
|
|
1407
|
+
deleteTelegramCommands
|
|
1333
1408
|
};
|
|
1334
1409
|
/**
|
|
1335
1410
|
* comments API
|
package/dist/index.mjs
CHANGED
|
@@ -896,6 +896,66 @@ var sendInboxMessage = (options) => {
|
|
|
896
896
|
url: "/v1/inbox/conversations/{conversationId}/messages"
|
|
897
897
|
});
|
|
898
898
|
};
|
|
899
|
+
var editInboxMessage = (options) => {
|
|
900
|
+
return (options?.client ?? client).patch({
|
|
901
|
+
...options,
|
|
902
|
+
url: "/v1/inbox/conversations/{conversationId}/messages/{messageId}"
|
|
903
|
+
});
|
|
904
|
+
};
|
|
905
|
+
var getMessengerMenu = (options) => {
|
|
906
|
+
return (options?.client ?? client).get({
|
|
907
|
+
...options,
|
|
908
|
+
url: "/v1/accounts/{accountId}/messenger-menu"
|
|
909
|
+
});
|
|
910
|
+
};
|
|
911
|
+
var setMessengerMenu = (options) => {
|
|
912
|
+
return (options?.client ?? client).put({
|
|
913
|
+
...options,
|
|
914
|
+
url: "/v1/accounts/{accountId}/messenger-menu"
|
|
915
|
+
});
|
|
916
|
+
};
|
|
917
|
+
var deleteMessengerMenu = (options) => {
|
|
918
|
+
return (options?.client ?? client).delete({
|
|
919
|
+
...options,
|
|
920
|
+
url: "/v1/accounts/{accountId}/messenger-menu"
|
|
921
|
+
});
|
|
922
|
+
};
|
|
923
|
+
var getInstagramIceBreakers = (options) => {
|
|
924
|
+
return (options?.client ?? client).get({
|
|
925
|
+
...options,
|
|
926
|
+
url: "/v1/accounts/{accountId}/instagram-ice-breakers"
|
|
927
|
+
});
|
|
928
|
+
};
|
|
929
|
+
var setInstagramIceBreakers = (options) => {
|
|
930
|
+
return (options?.client ?? client).put({
|
|
931
|
+
...options,
|
|
932
|
+
url: "/v1/accounts/{accountId}/instagram-ice-breakers"
|
|
933
|
+
});
|
|
934
|
+
};
|
|
935
|
+
var deleteInstagramIceBreakers = (options) => {
|
|
936
|
+
return (options?.client ?? client).delete({
|
|
937
|
+
...options,
|
|
938
|
+
url: "/v1/accounts/{accountId}/instagram-ice-breakers"
|
|
939
|
+
});
|
|
940
|
+
};
|
|
941
|
+
var getTelegramCommands = (options) => {
|
|
942
|
+
return (options?.client ?? client).get({
|
|
943
|
+
...options,
|
|
944
|
+
url: "/v1/accounts/{accountId}/telegram-commands"
|
|
945
|
+
});
|
|
946
|
+
};
|
|
947
|
+
var setTelegramCommands = (options) => {
|
|
948
|
+
return (options?.client ?? client).put({
|
|
949
|
+
...options,
|
|
950
|
+
url: "/v1/accounts/{accountId}/telegram-commands"
|
|
951
|
+
});
|
|
952
|
+
};
|
|
953
|
+
var deleteTelegramCommands = (options) => {
|
|
954
|
+
return (options?.client ?? client).delete({
|
|
955
|
+
...options,
|
|
956
|
+
url: "/v1/accounts/{accountId}/telegram-commands"
|
|
957
|
+
});
|
|
958
|
+
};
|
|
899
959
|
var listInboxComments = (options) => {
|
|
900
960
|
return (options?.client ?? client).get({
|
|
901
961
|
...options,
|
|
@@ -1300,7 +1360,22 @@ var Late = class {
|
|
|
1300
1360
|
getInboxConversation,
|
|
1301
1361
|
updateInboxConversation,
|
|
1302
1362
|
getInboxConversationMessages,
|
|
1303
|
-
sendInboxMessage
|
|
1363
|
+
sendInboxMessage,
|
|
1364
|
+
editInboxMessage
|
|
1365
|
+
};
|
|
1366
|
+
/**
|
|
1367
|
+
* accountsettings API
|
|
1368
|
+
*/
|
|
1369
|
+
this.accountsettings = {
|
|
1370
|
+
getMessengerMenu,
|
|
1371
|
+
setMessengerMenu,
|
|
1372
|
+
deleteMessengerMenu,
|
|
1373
|
+
getInstagramIceBreakers,
|
|
1374
|
+
setInstagramIceBreakers,
|
|
1375
|
+
deleteInstagramIceBreakers,
|
|
1376
|
+
getTelegramCommands,
|
|
1377
|
+
setTelegramCommands,
|
|
1378
|
+
deleteTelegramCommands
|
|
1304
1379
|
};
|
|
1305
1380
|
/**
|
|
1306
1381
|
* comments API
|