@wildix/stream-client 0.0.14 → 3.1.10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-cjs/StreamService.js +3 -7
- package/dist-cjs/StreamServiceClient.js +34 -27
- package/dist-cjs/auth/httpAuthExtensionConfiguration.js +43 -0
- package/dist-cjs/auth/httpAuthSchemeProvider.js +58 -0
- package/dist-cjs/commands/AddChannelMemberCommand.js +10 -11
- package/dist-cjs/commands/AddChannelMembersCommand.js +10 -11
- package/dist-cjs/commands/AssignChannelCommand.js +10 -11
- package/dist-cjs/commands/CreateGroupChannelCommand.js +10 -11
- package/dist-cjs/commands/CreateKiteChannelCommand.js +10 -11
- package/dist-cjs/commands/CreateSectionCommand.js +10 -11
- package/dist-cjs/commands/DeleteChannelCommand.js +10 -11
- package/dist-cjs/commands/DeleteChannelMemberCommand.js +10 -11
- package/dist-cjs/commands/DeleteMessageCommand.js +10 -11
- package/dist-cjs/commands/DeleteMessageReactionCommand.js +10 -11
- package/dist-cjs/commands/DeleteSectionCommand.js +10 -11
- package/dist-cjs/commands/GetChannelCommand.js +10 -11
- package/dist-cjs/commands/GetChannelMemberCommand.js +10 -11
- package/dist-cjs/commands/GetDirectChannelIdCommand.js +10 -11
- package/dist-cjs/commands/GetFilePresignedDownloadUrlCommand.js +10 -11
- package/dist-cjs/commands/GetInboxCommand.js +10 -11
- package/dist-cjs/commands/GetMessageCommand.js +10 -11
- package/dist-cjs/commands/GetOrCreateDirectChannelCommand.js +10 -11
- package/dist-cjs/commands/GetOrCreateSmsChannelCommand.js +10 -11
- package/dist-cjs/commands/GetOrCreateTelephonyChannelCommand.js +10 -11
- package/dist-cjs/commands/GetOrCreateWhatsAppChannelCommand.js +10 -11
- package/dist-cjs/commands/GetSmsChannelIdCommand.js +10 -11
- package/dist-cjs/commands/GetTelephonyChannelIdCommand.js +10 -11
- package/dist-cjs/commands/GetTokenCommand.js +10 -11
- package/dist-cjs/commands/GetUploadedFileInfoCommand.js +10 -11
- package/dist-cjs/commands/GetWhatsAppChannelIdCommand.js +10 -11
- package/dist-cjs/commands/HideChannelCommand.js +10 -11
- package/dist-cjs/commands/JoinChannelCommand.js +10 -11
- package/dist-cjs/commands/LeaveChannelCommand.js +10 -11
- package/dist-cjs/commands/ListChannelMembersCommand.js +10 -11
- package/dist-cjs/commands/ListChannelMembersReadStatusCommand.js +10 -11
- package/dist-cjs/commands/ListChannelsCommand.js +10 -11
- package/dist-cjs/commands/ListMentionsCommand.js +10 -11
- package/dist-cjs/commands/ListMessagesCommand.js +10 -11
- package/dist-cjs/commands/MarkReadCommand.js +10 -11
- package/dist-cjs/commands/MarkUnreadCommand.js +10 -11
- package/dist-cjs/commands/MoveChannelToSectionCommand.js +10 -11
- package/dist-cjs/commands/MuteChannelCommand.js +10 -11
- package/dist-cjs/commands/PartialUpdateChannelCommand.js +10 -11
- package/dist-cjs/commands/PartialUpdateMessageCommand.js +10 -11
- package/dist-cjs/commands/PinChannelCommand.js +10 -11
- package/dist-cjs/commands/PinMessageCommand.js +10 -11
- package/dist-cjs/commands/QueryChannelsCommand.js +10 -11
- package/dist-cjs/commands/RemoveChannelFromSectionCommand.js +10 -11
- package/dist-cjs/commands/RenameSectionCommand.js +10 -11
- package/dist-cjs/commands/SendGiphyCommand.js +10 -11
- package/dist-cjs/commands/SendMessageCommand.js +10 -11
- package/dist-cjs/commands/SendMessageReactionCommand.js +10 -11
- package/dist-cjs/commands/SendSystemMessageCommand.js +10 -11
- package/dist-cjs/commands/SendTypingStartCommand.js +10 -11
- package/dist-cjs/commands/SendTypingStopCommand.js +10 -11
- package/dist-cjs/commands/ShowChannelCommand.js +10 -11
- package/dist-cjs/commands/UnmuteChannelCommand.js +10 -11
- package/dist-cjs/commands/UnpinChannelCommand.js +10 -11
- package/dist-cjs/commands/UnpinMessageCommand.js +10 -11
- package/dist-cjs/commands/UpdateChannelCommand.js +10 -11
- package/dist-cjs/commands/UpdateMessageCommand.js +10 -11
- package/dist-cjs/commands/UploadFileCommand.js +10 -11
- package/dist-cjs/commands/index.js +0 -2
- package/dist-cjs/endpoint/EndpointParameters.js +18 -0
- package/dist-cjs/endpoint/bdd.js +28 -0
- package/dist-cjs/endpoint/endpointResolver.js +16 -0
- package/dist-cjs/index.js +4 -1
- package/dist-cjs/models/StreamServiceServiceException.js +3 -3
- package/dist-cjs/models/enums.js +114 -0
- package/dist-cjs/models/errors.js +209 -0
- package/dist-cjs/models/models_0.js +0 -381
- package/dist-cjs/runtimeConfig.browser.js +11 -11
- package/dist-cjs/runtimeConfig.js +22 -18
- package/dist-cjs/runtimeConfig.shared.js +30 -10
- package/dist-cjs/runtimeExtensions.js +6 -5
- package/dist-cjs/schemas/schemas_0.js +1584 -0
- package/dist-es/StreamService.js +6 -10
- package/dist-es/StreamServiceClient.js +30 -23
- package/dist-es/auth/httpAuthExtensionConfiguration.js +38 -0
- package/dist-es/auth/httpAuthSchemeProvider.js +52 -0
- package/dist-es/commands/AddChannelMemberCommand.js +9 -10
- package/dist-es/commands/AddChannelMembersCommand.js +9 -10
- package/dist-es/commands/AssignChannelCommand.js +9 -10
- package/dist-es/commands/CreateGroupChannelCommand.js +9 -10
- package/dist-es/commands/CreateKiteChannelCommand.js +9 -10
- package/dist-es/commands/CreateSectionCommand.js +9 -10
- package/dist-es/commands/DeleteChannelCommand.js +9 -10
- package/dist-es/commands/DeleteChannelMemberCommand.js +9 -10
- package/dist-es/commands/DeleteMessageCommand.js +9 -10
- package/dist-es/commands/DeleteMessageReactionCommand.js +9 -10
- package/dist-es/commands/DeleteSectionCommand.js +9 -10
- package/dist-es/commands/GetChannelCommand.js +9 -10
- package/dist-es/commands/GetChannelMemberCommand.js +9 -10
- package/dist-es/commands/GetDirectChannelIdCommand.js +9 -10
- package/dist-es/commands/GetFilePresignedDownloadUrlCommand.js +9 -10
- package/dist-es/commands/GetInboxCommand.js +9 -10
- package/dist-es/commands/GetMessageCommand.js +9 -10
- package/dist-es/commands/GetOrCreateDirectChannelCommand.js +9 -10
- package/dist-es/commands/GetOrCreateSmsChannelCommand.js +9 -10
- package/dist-es/commands/GetOrCreateTelephonyChannelCommand.js +9 -10
- package/dist-es/commands/GetOrCreateWhatsAppChannelCommand.js +9 -10
- package/dist-es/commands/GetSmsChannelIdCommand.js +9 -10
- package/dist-es/commands/GetTelephonyChannelIdCommand.js +9 -10
- package/dist-es/commands/GetTokenCommand.js +9 -10
- package/dist-es/commands/GetUploadedFileInfoCommand.js +9 -10
- package/dist-es/commands/GetWhatsAppChannelIdCommand.js +9 -10
- package/dist-es/commands/HideChannelCommand.js +9 -10
- package/dist-es/commands/JoinChannelCommand.js +9 -10
- package/dist-es/commands/LeaveChannelCommand.js +9 -10
- package/dist-es/commands/ListChannelMembersCommand.js +9 -10
- package/dist-es/commands/ListChannelMembersReadStatusCommand.js +9 -10
- package/dist-es/commands/ListChannelsCommand.js +9 -10
- package/dist-es/commands/ListMentionsCommand.js +9 -10
- package/dist-es/commands/ListMessagesCommand.js +9 -10
- package/dist-es/commands/MarkReadCommand.js +9 -10
- package/dist-es/commands/MarkUnreadCommand.js +9 -10
- package/dist-es/commands/MoveChannelToSectionCommand.js +9 -10
- package/dist-es/commands/MuteChannelCommand.js +9 -10
- package/dist-es/commands/PartialUpdateChannelCommand.js +9 -10
- package/dist-es/commands/PartialUpdateMessageCommand.js +9 -10
- package/dist-es/commands/PinChannelCommand.js +9 -10
- package/dist-es/commands/PinMessageCommand.js +9 -10
- package/dist-es/commands/QueryChannelsCommand.js +9 -10
- package/dist-es/commands/RemoveChannelFromSectionCommand.js +9 -10
- package/dist-es/commands/RenameSectionCommand.js +9 -10
- package/dist-es/commands/SendGiphyCommand.js +9 -10
- package/dist-es/commands/SendMessageCommand.js +9 -10
- package/dist-es/commands/SendMessageReactionCommand.js +9 -10
- package/dist-es/commands/SendSystemMessageCommand.js +9 -10
- package/dist-es/commands/SendTypingStartCommand.js +9 -10
- package/dist-es/commands/SendTypingStopCommand.js +9 -10
- package/dist-es/commands/ShowChannelCommand.js +9 -10
- package/dist-es/commands/UnmuteChannelCommand.js +9 -10
- package/dist-es/commands/UnpinChannelCommand.js +9 -10
- package/dist-es/commands/UnpinMessageCommand.js +9 -10
- package/dist-es/commands/UpdateChannelCommand.js +9 -10
- package/dist-es/commands/UpdateMessageCommand.js +9 -10
- package/dist-es/commands/UploadFileCommand.js +9 -10
- package/dist-es/commands/index.js +0 -2
- package/dist-es/endpoint/EndpointParameters.js +14 -0
- package/dist-es/endpoint/bdd.js +25 -0
- package/dist-es/endpoint/endpointResolver.js +12 -0
- package/dist-es/index.js +4 -1
- package/dist-es/models/StreamServiceServiceException.js +1 -1
- package/dist-es/models/enums.js +111 -0
- package/dist-es/models/errors.js +191 -0
- package/dist-es/models/models_0.js +1 -365
- package/dist-es/runtimeConfig.browser.js +7 -7
- package/dist-es/runtimeConfig.js +17 -13
- package/dist-es/runtimeConfig.shared.js +24 -4
- package/dist-es/runtimeExtensions.js +6 -5
- package/dist-es/schemas/schemas_0.js +1577 -0
- package/dist-types/StreamService.d.ts +59 -73
- package/dist-types/StreamServiceClient.d.ts +90 -76
- package/dist-types/auth/httpAuthExtensionConfiguration.d.ts +29 -0
- package/dist-types/auth/httpAuthSchemeProvider.d.ts +81 -0
- package/dist-types/commands/AddChannelMemberCommand.d.ts +11 -7
- package/dist-types/commands/AddChannelMembersCommand.d.ts +11 -7
- package/dist-types/commands/AssignChannelCommand.d.ts +11 -7
- package/dist-types/commands/CreateGroupChannelCommand.d.ts +11 -7
- package/dist-types/commands/CreateKiteChannelCommand.d.ts +11 -7
- package/dist-types/commands/CreateSectionCommand.d.ts +11 -7
- package/dist-types/commands/DeleteChannelCommand.d.ts +11 -7
- package/dist-types/commands/DeleteChannelMemberCommand.d.ts +11 -7
- package/dist-types/commands/DeleteMessageCommand.d.ts +11 -7
- package/dist-types/commands/DeleteMessageReactionCommand.d.ts +11 -7
- package/dist-types/commands/DeleteSectionCommand.d.ts +11 -7
- package/dist-types/commands/GetChannelCommand.d.ts +11 -7
- package/dist-types/commands/GetChannelMemberCommand.d.ts +11 -7
- package/dist-types/commands/GetDirectChannelIdCommand.d.ts +11 -7
- package/dist-types/commands/GetFilePresignedDownloadUrlCommand.d.ts +11 -7
- package/dist-types/commands/GetInboxCommand.d.ts +11 -7
- package/dist-types/commands/GetMessageCommand.d.ts +11 -7
- package/dist-types/commands/GetOrCreateDirectChannelCommand.d.ts +11 -7
- package/dist-types/commands/GetOrCreateSmsChannelCommand.d.ts +11 -7
- package/dist-types/commands/GetOrCreateTelephonyChannelCommand.d.ts +11 -7
- package/dist-types/commands/GetOrCreateWhatsAppChannelCommand.d.ts +11 -7
- package/dist-types/commands/GetSmsChannelIdCommand.d.ts +11 -7
- package/dist-types/commands/GetTelephonyChannelIdCommand.d.ts +11 -7
- package/dist-types/commands/GetTokenCommand.d.ts +11 -7
- package/dist-types/commands/GetUploadedFileInfoCommand.d.ts +11 -7
- package/dist-types/commands/GetWhatsAppChannelIdCommand.d.ts +11 -7
- package/dist-types/commands/HideChannelCommand.d.ts +11 -7
- package/dist-types/commands/JoinChannelCommand.d.ts +11 -7
- package/dist-types/commands/LeaveChannelCommand.d.ts +11 -7
- package/dist-types/commands/ListChannelMembersCommand.d.ts +11 -7
- package/dist-types/commands/ListChannelMembersReadStatusCommand.d.ts +11 -7
- package/dist-types/commands/ListChannelsCommand.d.ts +11 -7
- package/dist-types/commands/ListMentionsCommand.d.ts +11 -7
- package/dist-types/commands/ListMessagesCommand.d.ts +11 -7
- package/dist-types/commands/MarkReadCommand.d.ts +11 -7
- package/dist-types/commands/MarkUnreadCommand.d.ts +11 -7
- package/dist-types/commands/MoveChannelToSectionCommand.d.ts +11 -7
- package/dist-types/commands/MuteChannelCommand.d.ts +11 -7
- package/dist-types/commands/PartialUpdateChannelCommand.d.ts +11 -7
- package/dist-types/commands/PartialUpdateMessageCommand.d.ts +11 -7
- package/dist-types/commands/PinChannelCommand.d.ts +11 -7
- package/dist-types/commands/PinMessageCommand.d.ts +11 -7
- package/dist-types/commands/QueryChannelsCommand.d.ts +11 -7
- package/dist-types/commands/RemoveChannelFromSectionCommand.d.ts +11 -7
- package/dist-types/commands/RenameSectionCommand.d.ts +11 -7
- package/dist-types/commands/SendGiphyCommand.d.ts +11 -7
- package/dist-types/commands/SendMessageCommand.d.ts +11 -7
- package/dist-types/commands/SendMessageReactionCommand.d.ts +11 -7
- package/dist-types/commands/SendSystemMessageCommand.d.ts +11 -7
- package/dist-types/commands/SendTypingStartCommand.d.ts +11 -7
- package/dist-types/commands/SendTypingStopCommand.d.ts +11 -7
- package/dist-types/commands/ShowChannelCommand.d.ts +11 -7
- package/dist-types/commands/UnmuteChannelCommand.d.ts +11 -7
- package/dist-types/commands/UnpinChannelCommand.d.ts +11 -7
- package/dist-types/commands/UnpinMessageCommand.d.ts +11 -7
- package/dist-types/commands/UpdateChannelCommand.d.ts +11 -7
- package/dist-types/commands/UpdateMessageCommand.d.ts +11 -7
- package/dist-types/commands/UploadFileCommand.d.ts +11 -7
- package/dist-types/commands/index.d.ts +0 -2
- package/dist-types/endpoint/EndpointParameters.d.ts +48 -0
- package/dist-types/endpoint/bdd.d.ts +2 -0
- package/dist-types/endpoint/endpointResolver.d.ts +8 -0
- package/dist-types/extensionConfiguration.d.ts +4 -3
- package/dist-types/index.d.ts +5 -1
- package/dist-types/models/StreamServiceServiceException.d.ts +1 -1
- package/dist-types/models/enums.d.ts +286 -0
- package/dist-types/models/errors.d.ts +189 -0
- package/dist-types/models/models_0.d.ts +69 -669
- package/dist-types/runtimeConfig.browser.d.ts +37 -18
- package/dist-types/runtimeConfig.d.ts +36 -17
- package/dist-types/runtimeConfig.native.d.ts +38 -19
- package/dist-types/runtimeConfig.shared.d.ts +20 -3
- package/dist-types/runtimeExtensions.d.ts +1 -1
- package/dist-types/schemas/schemas_0.d.ts +243 -0
- package/package.json +13 -39
- package/dist-cjs/commands/SearchChannelsCommand.js +0 -21
- package/dist-cjs/commands/SearchMessagesCommand.js +0 -21
- package/dist-cjs/models/index.js +0 -4
- package/dist-cjs/protocols/Aws_restJson1.js +0 -2463
- package/dist-es/commands/SearchChannelsCommand.js +0 -17
- package/dist-es/commands/SearchMessagesCommand.js +0 -17
- package/dist-es/models/index.js +0 -1
- package/dist-es/protocols/Aws_restJson1.js +0 -2338
- package/dist-types/commands/SearchChannelsCommand.d.ts +0 -160
- package/dist-types/commands/SearchMessagesCommand.d.ts +0 -204
- package/dist-types/models/index.d.ts +0 -1
- package/dist-types/protocols/Aws_restJson1.d.ts +0 -542
|
@@ -0,0 +1,1584 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.DeleteMessageReactionInput$ = exports.DeleteMessageOutput$ = exports.DeleteMessageInput$ = exports.DeleteChannelOutput$ = exports.DeleteChannelMemberOutput$ = exports.DeleteChannelMemberInput$ = exports.DeleteChannelInput$ = exports.CreateSectionOutput$ = exports.CreateSectionInput$ = exports.CreateKiteChannelOutput$ = exports.CreateKiteChannelInput$ = exports.CreateGroupChannelOutput$ = exports.CreateGroupChannelInput$ = exports.ChannelsQuery$ = exports.ChannelMemberReadStatus$ = exports.ChannelMember$ = exports.ChannelContextPushToTalk$ = exports.ChannelContextEventAttendee$ = exports.ChannelContextEvent$ = exports.ChannelContext$ = exports.Channel$ = exports.ButtonReplyHandler$ = exports.ButtonLinkHandler$ = exports.ButtonElement$ = exports.ButtonActionHandler$ = exports.AssignChannelOutput$ = exports.AssignChannelInput$ = exports.AddChannelMembersOutput$ = exports.AddChannelMembersInput$ = exports.AddChannelMemberOutput$ = exports.AddChannelMemberInput$ = exports.TemplateWithParameters$ = exports.TemplateParameter$ = exports.errorTypeRegistries = exports.TargetNotFoundException$ = exports.TargetNotEligibleException$ = exports.StreamServiceException$ = exports.SectionNotFoundException$ = exports.MessageNotFoundException$ = exports.MemberNotFoundException$ = exports.MemberAlreadyExistException$ = exports.MarkUnreadChannelsLimitReachedException$ = exports.FileNotFoundException$ = exports.ChannelNotFoundException$ = exports.ChannelAlreadyExistException$ = exports.ValidationException$ = exports.UnauthorizedException$ = exports.RateLimitExceededException$ = exports.ForbiddenException$ = exports.StreamServiceServiceException$ = void 0;
|
|
4
|
+
exports.ListMentionsInput$ = exports.ListChannelsOutput$ = exports.ListChannelsInput$ = exports.ListChannelMembersReadStatusOutput$ = exports.ListChannelMembersReadStatusInput$ = exports.ListChannelMembersOutput$ = exports.ListChannelMembersInput$ = exports.LeaveChannelOutput$ = exports.LeaveChannelInput$ = exports.LastMessagePreview$ = exports.JoinChannelOutput$ = exports.JoinChannelInput$ = exports.InitialMessage$ = exports.InboxState$ = exports.InboxChannel$ = exports.HideChannelOutput$ = exports.HideChannelInput$ = exports.GetWhatsAppChannelIdOutput$ = exports.GetWhatsAppChannelIdInput$ = exports.GetUploadedFileInfoOutput$ = exports.GetUploadedFileInfoInput$ = exports.GetTokenOutput$ = exports.GetTokenInput$ = exports.GetTelephonyChannelIdOutput$ = exports.GetTelephonyChannelIdInput$ = exports.GetSmsChannelIdOutput$ = exports.GetSmsChannelIdInput$ = exports.GetOrCreateWhatsAppChannelOutput$ = exports.GetOrCreateWhatsAppChannelInput$ = exports.GetOrCreateTelephonyChannelOutput$ = exports.GetOrCreateTelephonyChannelInput$ = exports.GetOrCreateSmsChannelOutput$ = exports.GetOrCreateSmsChannelInput$ = exports.GetOrCreateDirectChannelOutput$ = exports.GetOrCreateDirectChannelInput$ = exports.GetMessageOutput$ = exports.GetMessageInput$ = exports.GetInboxOutput$ = exports.GetInboxInput$ = exports.GetFilePresignedDownloadUrlOutput$ = exports.GetFilePresignedDownloadUrlInput$ = exports.GetDirectChannelIdOutput$ = exports.GetDirectChannelIdInput$ = exports.GetChannelOutput$ = exports.GetChannelMemberOutput$ = exports.GetChannelMemberInput$ = exports.GetChannelInput$ = exports.DeleteSectionOutput$ = exports.DeleteSectionInput$ = exports.DeleteMessageReactionOutput$ = void 0;
|
|
5
|
+
exports.SendTypingStartInput$ = exports.SendSystemMessageOutput$ = exports.SendSystemMessageInput$ = exports.SendMessageReactionOutput$ = exports.SendMessageReactionInput$ = exports.SendMessageOutput$ = exports.SendMessageInput$ = exports.SendGiphyOutput$ = exports.SendGiphyInput$ = exports.Section$ = exports.RenameSectionOutput$ = exports.RenameSectionInput$ = exports.RemoveChannelFromSectionOutput$ = exports.RemoveChannelFromSectionInput$ = exports.Reaction$ = exports.QueryChannelsOutput$ = exports.QueryChannelsInput$ = exports.PinMessageOutput$ = exports.PinMessageInput$ = exports.PinChannelOutput$ = exports.PinChannelInput$ = exports.PartialUpdateMessageSetInput$ = exports.PartialUpdateMessageOutput$ = exports.PartialUpdateMessageInput$ = exports.PartialUpdateChannelSetOptions$ = exports.PartialUpdateChannelOutput$ = exports.PartialUpdateChannelInput$ = exports.MuteChannelOutput$ = exports.MuteChannelInput$ = exports.MultipleMembersJoinedSystemMessage$ = exports.MoveChannelToSectionOutput$ = exports.MoveChannelToSectionInput$ = exports.MessageTemplateConfig$ = exports.MessageQuoteRef$ = exports.MessageQuote$ = exports.MessageGiphy$ = exports.MessageForwardRef$ = exports.MessageForward$ = exports.MessageAttachmentRequest$ = exports.MessageAttachment$ = exports.Message$ = exports.MentionEntry$ = exports.MentionChannelPreview$ = exports.MarkUnreadOutput$ = exports.MarkUnreadInput$ = exports.MarkReadOutput$ = exports.MarkReadInput$ = exports.ListMessagesOutput$ = exports.ListMessagesInput$ = exports.ListMentionsOutput$ = void 0;
|
|
6
|
+
exports.GetSmsChannelId$ = exports.GetOrCreateWhatsAppChannel$ = exports.GetOrCreateTelephonyChannel$ = exports.GetOrCreateSmsChannel$ = exports.GetOrCreateDirectChannel$ = exports.GetMessage$ = exports.GetInbox$ = exports.GetFilePresignedDownloadUrl$ = exports.GetDirectChannelId$ = exports.GetChannelMember$ = exports.GetChannel$ = exports.DeleteSection$ = exports.DeleteMessageReaction$ = exports.DeleteMessage$ = exports.DeleteChannelMember$ = exports.DeleteChannel$ = exports.CreateSection$ = exports.CreateKiteChannel$ = exports.CreateGroupChannel$ = exports.AssignChannel$ = exports.AddChannelMembers$ = exports.AddChannelMember$ = exports.SystemMessage$ = exports.Element$ = exports.ButtonHandler$ = exports.AssignChannelServiceRequest$ = exports.AssignChannelAssigneeRequest$ = exports.ActionElement$ = exports.WhatsAppClosedSystemMessage$ = exports.WelcomeMessage$ = exports.UserToInvite$ = exports.UploadFileOutput$ = exports.UploadFileOptions$ = exports.UploadFileInput$ = exports.UploadedFileInfo$ = exports.UpdateMessageOutput$ = exports.UpdateMessageInput$ = exports.UpdateChannelOutput$ = exports.UpdateChannelInput$ = exports.UnpinMessageOutput$ = exports.UnpinMessageInput$ = exports.UnpinChannelOutput$ = exports.UnpinChannelInput$ = exports.UnmuteChannelOutput$ = exports.UnmuteChannelInput$ = exports.ShowChannelOutput$ = exports.ShowChannelInput$ = exports.SendTypingStopOutput$ = exports.SendTypingStopInput$ = exports.SendTypingStartOutput$ = void 0;
|
|
7
|
+
exports.UploadFile$ = exports.UpdateMessage$ = exports.UpdateChannel$ = exports.UnpinMessage$ = exports.UnpinChannel$ = exports.UnmuteChannel$ = exports.ShowChannel$ = exports.SendTypingStop$ = exports.SendTypingStart$ = exports.SendSystemMessage$ = exports.SendMessageReaction$ = exports.SendMessage$ = exports.SendGiphy$ = exports.RenameSection$ = exports.RemoveChannelFromSection$ = exports.QueryChannels$ = exports.PinMessage$ = exports.PinChannel$ = exports.PartialUpdateMessage$ = exports.PartialUpdateChannel$ = exports.MuteChannel$ = exports.MoveChannelToSection$ = exports.MarkUnread$ = exports.MarkRead$ = exports.ListMessages$ = exports.ListMentions$ = exports.ListChannels$ = exports.ListChannelMembersReadStatus$ = exports.ListChannelMembers$ = exports.LeaveChannel$ = exports.JoinChannel$ = exports.HideChannel$ = exports.GetWhatsAppChannelId$ = exports.GetUploadedFileInfo$ = exports.GetToken$ = exports.GetTelephonyChannelId$ = void 0;
|
|
8
|
+
const _AC = "AssignChannel";
|
|
9
|
+
const _ACAR = "AssignChannelAssigneeRequest";
|
|
10
|
+
const _ACI = "AssignChannelInput";
|
|
11
|
+
const _ACM = "AddChannelMember";
|
|
12
|
+
const _ACMI = "AddChannelMemberInput";
|
|
13
|
+
const _ACMId = "AddChannelMembersInput";
|
|
14
|
+
const _ACMO = "AddChannelMemberOutput";
|
|
15
|
+
const _ACMOd = "AddChannelMembersOutput";
|
|
16
|
+
const _ACMd = "AddChannelMembers";
|
|
17
|
+
const _ACO = "AssignChannelOutput";
|
|
18
|
+
const _ACSR = "AssignChannelServiceRequest";
|
|
19
|
+
const _AE = "ActionElement";
|
|
20
|
+
const _AEL = "ActionsElementsList";
|
|
21
|
+
const _BAH = "ButtonActionHandler";
|
|
22
|
+
const _BE = "ButtonElement";
|
|
23
|
+
const _BH = "ButtonHandler";
|
|
24
|
+
const _BLH = "ButtonLinkHandler";
|
|
25
|
+
const _BRH = "ButtonReplyHandler";
|
|
26
|
+
const _C = "Channel";
|
|
27
|
+
const _CAEE = "ChannelAlreadyExistException";
|
|
28
|
+
const _CC = "ChannelContext";
|
|
29
|
+
const _CCE = "ChannelContextEvent";
|
|
30
|
+
const _CCEA = "ChannelContextEventAttendee";
|
|
31
|
+
const _CCEAL = "ChannelContextEventAttendeeList";
|
|
32
|
+
const _CCEL = "ChannelContextEventList";
|
|
33
|
+
const _CCPTT = "ChannelContextPushToTalk";
|
|
34
|
+
const _CGC = "CreateGroupChannel";
|
|
35
|
+
const _CGCI = "CreateGroupChannelInput";
|
|
36
|
+
const _CGCO = "CreateGroupChannelOutput";
|
|
37
|
+
const _CKC = "CreateKiteChannel";
|
|
38
|
+
const _CKCI = "CreateKiteChannelInput";
|
|
39
|
+
const _CKCO = "CreateKiteChannelOutput";
|
|
40
|
+
const _CM = "ChannelMember";
|
|
41
|
+
const _CML = "ChannelMemberList";
|
|
42
|
+
const _CMRS = "ChannelMemberReadStatus";
|
|
43
|
+
const _CMRSL = "ChannelMemberReadStatusList";
|
|
44
|
+
const _CNFE = "ChannelNotFoundException";
|
|
45
|
+
const _CQ = "ChannelsQuery";
|
|
46
|
+
const _CS = "CreateSection";
|
|
47
|
+
const _CSI = "CreateSectionInput";
|
|
48
|
+
const _CSO = "CreateSectionOutput";
|
|
49
|
+
const _DC = "DeleteChannel";
|
|
50
|
+
const _DCI = "DeleteChannelInput";
|
|
51
|
+
const _DCM = "DeleteChannelMember";
|
|
52
|
+
const _DCMI = "DeleteChannelMemberInput";
|
|
53
|
+
const _DCMO = "DeleteChannelMemberOutput";
|
|
54
|
+
const _DCO = "DeleteChannelOutput";
|
|
55
|
+
const _DM = "DeleteMessage";
|
|
56
|
+
const _DMI = "DeleteMessageInput";
|
|
57
|
+
const _DMO = "DeleteMessageOutput";
|
|
58
|
+
const _DMR = "DeleteMessageReaction";
|
|
59
|
+
const _DMRI = "DeleteMessageReactionInput";
|
|
60
|
+
const _DMRO = "DeleteMessageReactionOutput";
|
|
61
|
+
const _DS = "DeleteSection";
|
|
62
|
+
const _DSI = "DeleteSectionInput";
|
|
63
|
+
const _DSO = "DeleteSectionOutput";
|
|
64
|
+
const _E = "Element";
|
|
65
|
+
const _EL = "ElementsList";
|
|
66
|
+
const _FE = "ForbiddenException";
|
|
67
|
+
const _FNFE = "FileNotFoundException";
|
|
68
|
+
const _GC = "GetChannel";
|
|
69
|
+
const _GCI = "GetChannelInput";
|
|
70
|
+
const _GCM = "GetChannelMember";
|
|
71
|
+
const _GCMI = "GetChannelMemberInput";
|
|
72
|
+
const _GCMO = "GetChannelMemberOutput";
|
|
73
|
+
const _GCO = "GetChannelOutput";
|
|
74
|
+
const _GDCI = "GetDirectChannelId";
|
|
75
|
+
const _GDCII = "GetDirectChannelIdInput";
|
|
76
|
+
const _GDCIO = "GetDirectChannelIdOutput";
|
|
77
|
+
const _GFPDU = "GetFilePresignedDownloadUrl";
|
|
78
|
+
const _GFPDUI = "GetFilePresignedDownloadUrlInput";
|
|
79
|
+
const _GFPDUO = "GetFilePresignedDownloadUrlOutput";
|
|
80
|
+
const _GI = "GetInbox";
|
|
81
|
+
const _GII = "GetInboxInput";
|
|
82
|
+
const _GIO = "GetInboxOutput";
|
|
83
|
+
const _GM = "GetMessage";
|
|
84
|
+
const _GMI = "GetMessageInput";
|
|
85
|
+
const _GMO = "GetMessageOutput";
|
|
86
|
+
const _GOCDC = "GetOrCreateDirectChannel";
|
|
87
|
+
const _GOCDCI = "GetOrCreateDirectChannelInput";
|
|
88
|
+
const _GOCDCO = "GetOrCreateDirectChannelOutput";
|
|
89
|
+
const _GOCSC = "GetOrCreateSmsChannel";
|
|
90
|
+
const _GOCSCI = "GetOrCreateSmsChannelInput";
|
|
91
|
+
const _GOCSCO = "GetOrCreateSmsChannelOutput";
|
|
92
|
+
const _GOCTC = "GetOrCreateTelephonyChannel";
|
|
93
|
+
const _GOCTCI = "GetOrCreateTelephonyChannelInput";
|
|
94
|
+
const _GOCTCO = "GetOrCreateTelephonyChannelOutput";
|
|
95
|
+
const _GOCWAC = "GetOrCreateWhatsAppChannel";
|
|
96
|
+
const _GOCWACI = "GetOrCreateWhatsAppChannelInput";
|
|
97
|
+
const _GOCWACO = "GetOrCreateWhatsAppChannelOutput";
|
|
98
|
+
const _GSCI = "GetSmsChannelId";
|
|
99
|
+
const _GSCII = "GetSmsChannelIdInput";
|
|
100
|
+
const _GSCIO = "GetSmsChannelIdOutput";
|
|
101
|
+
const _GT = "GetToken";
|
|
102
|
+
const _GTCI = "GetTelephonyChannelId";
|
|
103
|
+
const _GTCII = "GetTelephonyChannelIdInput";
|
|
104
|
+
const _GTCIO = "GetTelephonyChannelIdOutput";
|
|
105
|
+
const _GTI = "GetTokenInput";
|
|
106
|
+
const _GTO = "GetTokenOutput";
|
|
107
|
+
const _GUFI = "GetUploadedFileInfo";
|
|
108
|
+
const _GUFII = "GetUploadedFileInfoInput";
|
|
109
|
+
const _GUFIO = "GetUploadedFileInfoOutput";
|
|
110
|
+
const _GWACI = "GetWhatsAppChannelId";
|
|
111
|
+
const _GWACII = "GetWhatsAppChannelIdInput";
|
|
112
|
+
const _GWACIO = "GetWhatsAppChannelIdOutput";
|
|
113
|
+
const _HC = "HideChannel";
|
|
114
|
+
const _HCI = "HideChannelInput";
|
|
115
|
+
const _HCO = "HideChannelOutput";
|
|
116
|
+
const _IC = "InboxChannel";
|
|
117
|
+
const _ICL = "InboxChannelList";
|
|
118
|
+
const _IM = "InitialMessage";
|
|
119
|
+
const _IS = "InboxState";
|
|
120
|
+
const _JC = "JoinChannel";
|
|
121
|
+
const _JCI = "JoinChannelInput";
|
|
122
|
+
const _JCO = "JoinChannelOutput";
|
|
123
|
+
const _LC = "LeaveChannel";
|
|
124
|
+
const _LCI = "LeaveChannelInput";
|
|
125
|
+
const _LCIi = "ListChannelsInput";
|
|
126
|
+
const _LCM = "ListChannelMembers";
|
|
127
|
+
const _LCMI = "ListChannelMembersInput";
|
|
128
|
+
const _LCMO = "ListChannelMembersOutput";
|
|
129
|
+
const _LCMRS = "ListChannelMembersReadStatus";
|
|
130
|
+
const _LCMRSI = "ListChannelMembersReadStatusInput";
|
|
131
|
+
const _LCMRSO = "ListChannelMembersReadStatusOutput";
|
|
132
|
+
const _LCO = "LeaveChannelOutput";
|
|
133
|
+
const _LCOi = "ListChannelsOutput";
|
|
134
|
+
const _LCi = "ListChannels";
|
|
135
|
+
const _LM = "ListMentions";
|
|
136
|
+
const _LMI = "ListMentionsInput";
|
|
137
|
+
const _LMIi = "ListMessagesInput";
|
|
138
|
+
const _LMO = "ListMentionsOutput";
|
|
139
|
+
const _LMOi = "ListMessagesOutput";
|
|
140
|
+
const _LMP = "LastMessagePreview";
|
|
141
|
+
const _LMi = "ListMessages";
|
|
142
|
+
const _LTP = "ListTemplateParameter";
|
|
143
|
+
const _M = "Message";
|
|
144
|
+
const _MA = "MessageAttachment";
|
|
145
|
+
const _MAEE = "MemberAlreadyExistException";
|
|
146
|
+
const _MAL = "MessageAttachmentList";
|
|
147
|
+
const _MAR = "MessageAttachmentRequest";
|
|
148
|
+
const _MARL = "MessageAttachmentRequestList";
|
|
149
|
+
const _MC = "MuteChannel";
|
|
150
|
+
const _MCI = "MuteChannelInput";
|
|
151
|
+
const _MCO = "MuteChannelOutput";
|
|
152
|
+
const _MCP = "MentionChannelPreview";
|
|
153
|
+
const _MCTS = "MoveChannelToSection";
|
|
154
|
+
const _MCTSI = "MoveChannelToSectionInput";
|
|
155
|
+
const _MCTSO = "MoveChannelToSectionOutput";
|
|
156
|
+
const _ME = "MentionEntry";
|
|
157
|
+
const _MEL = "MentionEntryList";
|
|
158
|
+
const _MF = "MessageForward";
|
|
159
|
+
const _MFR = "MessageForwardRef";
|
|
160
|
+
const _MG = "MessageGiphy";
|
|
161
|
+
const _ML = "MessageList";
|
|
162
|
+
const _MMJSM = "MultipleMembersJoinedSystemMessage";
|
|
163
|
+
const _MNFE = "MemberNotFoundException";
|
|
164
|
+
const _MNFEe = "MessageNotFoundException";
|
|
165
|
+
const _MQ = "MessageQuote";
|
|
166
|
+
const _MQR = "MessageQuoteRef";
|
|
167
|
+
const _MR = "MarkRead";
|
|
168
|
+
const _MRI = "MarkReadInput";
|
|
169
|
+
const _MRO = "MarkReadOutput";
|
|
170
|
+
const _MTC = "MessageTemplateConfig";
|
|
171
|
+
const _MU = "MarkUnread";
|
|
172
|
+
const _MUCLRE = "MarkUnreadChannelsLimitReachedException";
|
|
173
|
+
const _MUI = "MarkUnreadInput";
|
|
174
|
+
const _MUO = "MarkUnreadOutput";
|
|
175
|
+
const _PC = "PinChannel";
|
|
176
|
+
const _PCI = "PinChannelInput";
|
|
177
|
+
const _PCO = "PinChannelOutput";
|
|
178
|
+
const _PM = "PinMessage";
|
|
179
|
+
const _PMI = "PinMessageInput";
|
|
180
|
+
const _PMO = "PinMessageOutput";
|
|
181
|
+
const _PUC = "PartialUpdateChannel";
|
|
182
|
+
const _PUCI = "PartialUpdateChannelInput";
|
|
183
|
+
const _PUCO = "PartialUpdateChannelOutput";
|
|
184
|
+
const _PUCSO = "PartialUpdateChannelSetOptions";
|
|
185
|
+
const _PUM = "PartialUpdateMessage";
|
|
186
|
+
const _PUMI = "PartialUpdateMessageInput";
|
|
187
|
+
const _PUMO = "PartialUpdateMessageOutput";
|
|
188
|
+
const _PUMSI = "PartialUpdateMessageSetInput";
|
|
189
|
+
const _QC = "QueryChannels";
|
|
190
|
+
const _QCI = "QueryChannelsInput";
|
|
191
|
+
const _QCO = "QueryChannelsOutput";
|
|
192
|
+
const _R = "Reaction";
|
|
193
|
+
const _RA = "Retry-After";
|
|
194
|
+
const _RCFS = "RemoveChannelFromSection";
|
|
195
|
+
const _RCFSI = "RemoveChannelFromSectionInput";
|
|
196
|
+
const _RCFSO = "RemoveChannelFromSectionOutput";
|
|
197
|
+
const _RL = "ReactionList";
|
|
198
|
+
const _RLEE = "RateLimitExceededException";
|
|
199
|
+
const _RS = "RenameSection";
|
|
200
|
+
const _RSI = "RenameSectionInput";
|
|
201
|
+
const _RSO = "RenameSectionOutput";
|
|
202
|
+
const _S = "Section";
|
|
203
|
+
const _SC = "ShowChannel";
|
|
204
|
+
const _SCI = "ShowChannelInput";
|
|
205
|
+
const _SCO = "ShowChannelOutput";
|
|
206
|
+
const _SG = "SendGiphy";
|
|
207
|
+
const _SGI = "SendGiphyInput";
|
|
208
|
+
const _SGO = "SendGiphyOutput";
|
|
209
|
+
const _SL = "SectionList";
|
|
210
|
+
const _SM = "SystemMessage";
|
|
211
|
+
const _SMI = "SendMessageInput";
|
|
212
|
+
const _SMO = "SendMessageOutput";
|
|
213
|
+
const _SMR = "SendMessageReaction";
|
|
214
|
+
const _SMRI = "SendMessageReactionInput";
|
|
215
|
+
const _SMRO = "SendMessageReactionOutput";
|
|
216
|
+
const _SMe = "SendMessage";
|
|
217
|
+
const _SNFE = "SectionNotFoundException";
|
|
218
|
+
const _SSE = "StreamServiceException";
|
|
219
|
+
const _SSM = "SendSystemMessage";
|
|
220
|
+
const _SSMI = "SendSystemMessageInput";
|
|
221
|
+
const _SSMO = "SendSystemMessageOutput";
|
|
222
|
+
const _STS = "SendTypingStart";
|
|
223
|
+
const _STSI = "SendTypingStartInput";
|
|
224
|
+
const _STSIe = "SendTypingStopInput";
|
|
225
|
+
const _STSO = "SendTypingStartOutput";
|
|
226
|
+
const _STSOe = "SendTypingStopOutput";
|
|
227
|
+
const _STSe = "SendTypingStop";
|
|
228
|
+
const _TNEE = "TargetNotEligibleException";
|
|
229
|
+
const _TNFE = "TargetNotFoundException";
|
|
230
|
+
const _TP = "TemplateParameter";
|
|
231
|
+
const _TWP = "TemplateWithParameters";
|
|
232
|
+
const _UC = "UnmuteChannel";
|
|
233
|
+
const _UCI = "UnmuteChannelInput";
|
|
234
|
+
const _UCIn = "UnpinChannelInput";
|
|
235
|
+
const _UCIp = "UpdateChannelInput";
|
|
236
|
+
const _UCO = "UnmuteChannelOutput";
|
|
237
|
+
const _UCOn = "UnpinChannelOutput";
|
|
238
|
+
const _UCOp = "UpdateChannelOutput";
|
|
239
|
+
const _UCn = "UnpinChannel";
|
|
240
|
+
const _UCp = "UpdateChannel";
|
|
241
|
+
const _UE = "UnauthorizedException";
|
|
242
|
+
const _UF = "UploadFile";
|
|
243
|
+
const _UFI = "UploadedFileInfo";
|
|
244
|
+
const _UFIp = "UploadFileInput";
|
|
245
|
+
const _UFO = "UploadFileOptions";
|
|
246
|
+
const _UFOp = "UploadFileOutput";
|
|
247
|
+
const _UM = "UnpinMessage";
|
|
248
|
+
const _UMI = "UnpinMessageInput";
|
|
249
|
+
const _UMIp = "UpdateMessageInput";
|
|
250
|
+
const _UMO = "UnpinMessageOutput";
|
|
251
|
+
const _UMOp = "UpdateMessageOutput";
|
|
252
|
+
const _UMp = "UpdateMessage";
|
|
253
|
+
const _UTI = "UserToInvite";
|
|
254
|
+
const _UTIL = "UserToInviteList";
|
|
255
|
+
const _VE = "ValidationException";
|
|
256
|
+
const _WACSM = "WhatsAppClosedSystemMessage";
|
|
257
|
+
const _WM = "WelcomeMessage";
|
|
258
|
+
const _WML = "WelcomeMessageList";
|
|
259
|
+
const _XRL = "X-RateLimit-Limit";
|
|
260
|
+
const _XRR = "X-RateLimit-Remaining";
|
|
261
|
+
const _a = "assignee";
|
|
262
|
+
const _aI = "assigneeId";
|
|
263
|
+
const _aM = "addedMembers";
|
|
264
|
+
const _aR = "autoRecord";
|
|
265
|
+
const _ac = "access";
|
|
266
|
+
const _act = "action";
|
|
267
|
+
const _acti = "actions";
|
|
268
|
+
const _at = "attendees";
|
|
269
|
+
const _att = "attachments";
|
|
270
|
+
const _b = "broadcast";
|
|
271
|
+
const _bI = "broadcastId";
|
|
272
|
+
const _bu = "button";
|
|
273
|
+
const _c = "client";
|
|
274
|
+
const _cA = "createdAt";
|
|
275
|
+
const _cB = "createdBy";
|
|
276
|
+
const _cC = "channelCount";
|
|
277
|
+
const _cET = "creationEventType";
|
|
278
|
+
const _cI = "channelId";
|
|
279
|
+
const _cIl = "clientId";
|
|
280
|
+
const _cIo = "companyId";
|
|
281
|
+
const _cT = "channelType";
|
|
282
|
+
const _cV = "channelVersion";
|
|
283
|
+
const _ca = "category";
|
|
284
|
+
const _ch = "channel";
|
|
285
|
+
const _cha = "channels";
|
|
286
|
+
const _co = "company";
|
|
287
|
+
const _col = "colleague";
|
|
288
|
+
const _con = "context";
|
|
289
|
+
const _cu = "cursor";
|
|
290
|
+
const _d = "disabled";
|
|
291
|
+
const _dA = "deletedAt";
|
|
292
|
+
const _de = "description";
|
|
293
|
+
const _do = "download";
|
|
294
|
+
const _e = "error";
|
|
295
|
+
const _eA = "editedAt";
|
|
296
|
+
const _el = "elements";
|
|
297
|
+
const _em = "email";
|
|
298
|
+
const _en = "end";
|
|
299
|
+
const _ev = "events";
|
|
300
|
+
const _eve = "event";
|
|
301
|
+
const _ex = "external";
|
|
302
|
+
const _exp = "expires";
|
|
303
|
+
const _f = "file";
|
|
304
|
+
const _fI = "fsId";
|
|
305
|
+
const _fi = "filter";
|
|
306
|
+
const _fo = "forward";
|
|
307
|
+
const _for = "force";
|
|
308
|
+
const _fr = "from";
|
|
309
|
+
const _g = "giphy";
|
|
310
|
+
const _h = "handler";
|
|
311
|
+
const _hE = "httpError";
|
|
312
|
+
const _hH = "httpHeader";
|
|
313
|
+
const _hHi = "hideHistory";
|
|
314
|
+
const _hQ = "httpQuery";
|
|
315
|
+
const _he = "height";
|
|
316
|
+
const _hi = "hidden";
|
|
317
|
+
const _ht = "http";
|
|
318
|
+
const _i = "id";
|
|
319
|
+
const _iM = "initialMessage";
|
|
320
|
+
const _id = "ids";
|
|
321
|
+
const _in = "inbox";
|
|
322
|
+
const _jA = "joinedAt";
|
|
323
|
+
const _k = "kite";
|
|
324
|
+
const _kA = "kiteAssign";
|
|
325
|
+
const _kDS = "kiteDefaultSubject";
|
|
326
|
+
const _kSN = "kiteServiceName";
|
|
327
|
+
const _kT = "kiteTarget";
|
|
328
|
+
const _kV = "kiteVariant";
|
|
329
|
+
const _l = "limit";
|
|
330
|
+
const _lAA = "lastActivityAt";
|
|
331
|
+
const _lM = "lastMessage";
|
|
332
|
+
const _lR = "latestReactions";
|
|
333
|
+
const _lRA = "lastReadAt";
|
|
334
|
+
const _lRVS = "lastReadVisibleSeq";
|
|
335
|
+
const _li = "link";
|
|
336
|
+
const _m = "message";
|
|
337
|
+
const _mAA = "mentionAddedAt";
|
|
338
|
+
const _mC = "membersCount";
|
|
339
|
+
const _mCe = "memberCount";
|
|
340
|
+
const _mI = "memberId";
|
|
341
|
+
const _mIe = "messageId";
|
|
342
|
+
const _mMJ = "multipleMembersJoined";
|
|
343
|
+
const _mT = "messageType";
|
|
344
|
+
const _mTI = "memberToInvite";
|
|
345
|
+
const _mTIe = "membersToInvite";
|
|
346
|
+
const _mU = "mutedUntil";
|
|
347
|
+
const _mUC = "mentionUnreadCount";
|
|
348
|
+
const _mUMC = "mutedUnreadMessageCount";
|
|
349
|
+
const _mV = "messageVersion";
|
|
350
|
+
const _ma = "markdown";
|
|
351
|
+
const _me = "member";
|
|
352
|
+
const _mem = "members";
|
|
353
|
+
const _men = "mentions";
|
|
354
|
+
const _mes = "messages";
|
|
355
|
+
const _mi = "mime";
|
|
356
|
+
const _mm = "mms";
|
|
357
|
+
const _mu = "muted";
|
|
358
|
+
const _n = "name";
|
|
359
|
+
const _nC = "nextCursor";
|
|
360
|
+
const _o = "owner";
|
|
361
|
+
const _of = "offset";
|
|
362
|
+
const _op = "options";
|
|
363
|
+
const _ou = "outgoing";
|
|
364
|
+
const _p = "parameters";
|
|
365
|
+
const _pA = "pinnedAt";
|
|
366
|
+
const _pB = "pinnedBy";
|
|
367
|
+
const _pC = "pictureColor";
|
|
368
|
+
const _pDU = "presignedDownloadUrl";
|
|
369
|
+
const _pUU = "presignedUploadUrl";
|
|
370
|
+
const _ph = "phone";
|
|
371
|
+
const _pi = "picture";
|
|
372
|
+
const _pin = "pinned";
|
|
373
|
+
const _pt = "ptt";
|
|
374
|
+
const _q = "quote";
|
|
375
|
+
const _qu = "query";
|
|
376
|
+
const _r = "reason";
|
|
377
|
+
const _rA = "retryAfter";
|
|
378
|
+
const _rAe = "readAt";
|
|
379
|
+
const _rC = "reactionCounts";
|
|
380
|
+
const _rI = "recipientId";
|
|
381
|
+
const _rL = "rateLimit";
|
|
382
|
+
const _rLR = "rateLimitRemaining";
|
|
383
|
+
const _rLRa = "rateLimitReset";
|
|
384
|
+
const _rN = "recipientNumber";
|
|
385
|
+
const _re = "read";
|
|
386
|
+
const _reg = "region";
|
|
387
|
+
const _rep = "reply";
|
|
388
|
+
const _ro = "role";
|
|
389
|
+
const _s = "smithy.ts.sdk.synthetic.wildix.stream";
|
|
390
|
+
const _sI = "sectionId";
|
|
391
|
+
const _sIe = "sectionIds";
|
|
392
|
+
const _sR = "serviceRecipient";
|
|
393
|
+
const _sS = "smsStatus";
|
|
394
|
+
const _sT = "serviceTitle";
|
|
395
|
+
const _sU = "serviceUri";
|
|
396
|
+
const _se = "server";
|
|
397
|
+
const _sec = "section";
|
|
398
|
+
const _sect = "sections";
|
|
399
|
+
const _ser = "service";
|
|
400
|
+
const _set = "set";
|
|
401
|
+
const _si = "silent";
|
|
402
|
+
const _siz = "size";
|
|
403
|
+
const _sm = "sms";
|
|
404
|
+
const _so = "source";
|
|
405
|
+
const _st = "start";
|
|
406
|
+
const _sta = "status";
|
|
407
|
+
const _su = "subject";
|
|
408
|
+
const _sum = "summary";
|
|
409
|
+
const _sy = "system";
|
|
410
|
+
const _t = "text";
|
|
411
|
+
const _tI = "targetId";
|
|
412
|
+
const _tL = "transcriptionLanguage";
|
|
413
|
+
const _tRI = "targetRouteId";
|
|
414
|
+
const _tS = "timelineSeq";
|
|
415
|
+
const _ta = "target";
|
|
416
|
+
const _te = "telephony";
|
|
417
|
+
const _tem = "template";
|
|
418
|
+
const _th = "thumbnail";
|
|
419
|
+
const _to = "token";
|
|
420
|
+
const _to_ = "to";
|
|
421
|
+
const _ty = "type";
|
|
422
|
+
const _u = "url";
|
|
423
|
+
const _uA = "updatedAt";
|
|
424
|
+
const _uC = "unreadCount";
|
|
425
|
+
const _uI = "userId";
|
|
426
|
+
const _uMA = "unreadMarkAt";
|
|
427
|
+
const _uMC = "unreadMentionCount";
|
|
428
|
+
const _uMI = "unreadMessageId";
|
|
429
|
+
const _uUCC = "unmutedUnreadChannelCount";
|
|
430
|
+
const _uUMC = "unmutedUnreadMessageCount";
|
|
431
|
+
const _un = "unset";
|
|
432
|
+
const _ur = "uri";
|
|
433
|
+
const _v = "value";
|
|
434
|
+
const _vS = "visibleSeq";
|
|
435
|
+
const _va = "variant";
|
|
436
|
+
const _w = "whatsapp";
|
|
437
|
+
const _wAC = "whatsAppClosed";
|
|
438
|
+
const _wGVO = "wizyGuestViewOnly";
|
|
439
|
+
const _wM = "welcomeMessages";
|
|
440
|
+
const _wS = "whatsappStatus";
|
|
441
|
+
const _wi = "width";
|
|
442
|
+
const _xRR = "x-RateLimit-Reset";
|
|
443
|
+
const n0 = "smithy.framework";
|
|
444
|
+
const n1 = "wildix.stream";
|
|
445
|
+
const n2 = "wildix.xbees.kite";
|
|
446
|
+
const n3 = "wildix.classound";
|
|
447
|
+
const schema_1 = require("@smithy/core/schema");
|
|
448
|
+
const errors_1 = require("../models/errors");
|
|
449
|
+
const StreamServiceServiceException_1 = require("../models/StreamServiceServiceException");
|
|
450
|
+
const _s_registry = schema_1.TypeRegistry.for(_s);
|
|
451
|
+
exports.StreamServiceServiceException$ = [-3, _s, "StreamServiceServiceException", 0, [], []];
|
|
452
|
+
_s_registry.registerError(exports.StreamServiceServiceException$, StreamServiceServiceException_1.StreamServiceServiceException);
|
|
453
|
+
const n0_registry = schema_1.TypeRegistry.for(n0);
|
|
454
|
+
const n1_registry = schema_1.TypeRegistry.for(n1);
|
|
455
|
+
const n2_registry = schema_1.TypeRegistry.for(n2);
|
|
456
|
+
exports.ForbiddenException$ = [-3, n0, _FE,
|
|
457
|
+
{ [_e]: _c, [_hE]: 403 },
|
|
458
|
+
[_m],
|
|
459
|
+
[0], 1
|
|
460
|
+
];
|
|
461
|
+
n0_registry.registerError(exports.ForbiddenException$, errors_1.ForbiddenException);
|
|
462
|
+
exports.RateLimitExceededException$ = [-3, n0, _RLEE,
|
|
463
|
+
{ [_e]: _c, [_hE]: 429 },
|
|
464
|
+
[_m, _rL, _rLR, _rLRa, _rA],
|
|
465
|
+
[0, [0, { [_hH]: _XRL }], [1, { [_hH]: _XRR }], [1, { [_hH]: _xRR }], [1, { [_hH]: _RA }]], 1
|
|
466
|
+
];
|
|
467
|
+
n0_registry.registerError(exports.RateLimitExceededException$, errors_1.RateLimitExceededException);
|
|
468
|
+
exports.UnauthorizedException$ = [-3, n0, _UE,
|
|
469
|
+
{ [_e]: _c, [_hE]: 401 },
|
|
470
|
+
[_m],
|
|
471
|
+
[0], 1
|
|
472
|
+
];
|
|
473
|
+
n0_registry.registerError(exports.UnauthorizedException$, errors_1.UnauthorizedException);
|
|
474
|
+
exports.ValidationException$ = [-3, n0, _VE,
|
|
475
|
+
{ [_e]: _c, [_hE]: 400 },
|
|
476
|
+
[_m],
|
|
477
|
+
[0], 1
|
|
478
|
+
];
|
|
479
|
+
n0_registry.registerError(exports.ValidationException$, errors_1.ValidationException);
|
|
480
|
+
exports.ChannelAlreadyExistException$ = [-3, n1, _CAEE,
|
|
481
|
+
{ [_e]: _c, [_hE]: 401 },
|
|
482
|
+
[_m],
|
|
483
|
+
[0], 1
|
|
484
|
+
];
|
|
485
|
+
n1_registry.registerError(exports.ChannelAlreadyExistException$, errors_1.ChannelAlreadyExistException);
|
|
486
|
+
exports.ChannelNotFoundException$ = [-3, n1, _CNFE,
|
|
487
|
+
{ [_e]: _c, [_hE]: 404 },
|
|
488
|
+
[_m],
|
|
489
|
+
[0], 1
|
|
490
|
+
];
|
|
491
|
+
n1_registry.registerError(exports.ChannelNotFoundException$, errors_1.ChannelNotFoundException);
|
|
492
|
+
exports.FileNotFoundException$ = [-3, n1, _FNFE,
|
|
493
|
+
{ [_e]: _c, [_hE]: 404 },
|
|
494
|
+
[_m],
|
|
495
|
+
[0], 1
|
|
496
|
+
];
|
|
497
|
+
n1_registry.registerError(exports.FileNotFoundException$, errors_1.FileNotFoundException);
|
|
498
|
+
exports.MarkUnreadChannelsLimitReachedException$ = [-3, n1, _MUCLRE,
|
|
499
|
+
{ [_e]: _c, [_hE]: 403 },
|
|
500
|
+
[_m],
|
|
501
|
+
[0], 1
|
|
502
|
+
];
|
|
503
|
+
n1_registry.registerError(exports.MarkUnreadChannelsLimitReachedException$, errors_1.MarkUnreadChannelsLimitReachedException);
|
|
504
|
+
exports.MemberAlreadyExistException$ = [-3, n1, _MAEE,
|
|
505
|
+
{ [_e]: _c, [_hE]: 404 },
|
|
506
|
+
[_m],
|
|
507
|
+
[0], 1
|
|
508
|
+
];
|
|
509
|
+
n1_registry.registerError(exports.MemberAlreadyExistException$, errors_1.MemberAlreadyExistException);
|
|
510
|
+
exports.MemberNotFoundException$ = [-3, n1, _MNFE,
|
|
511
|
+
{ [_e]: _c, [_hE]: 404 },
|
|
512
|
+
[_m],
|
|
513
|
+
[0], 1
|
|
514
|
+
];
|
|
515
|
+
n1_registry.registerError(exports.MemberNotFoundException$, errors_1.MemberNotFoundException);
|
|
516
|
+
exports.MessageNotFoundException$ = [-3, n1, _MNFEe,
|
|
517
|
+
{ [_e]: _c, [_hE]: 404 },
|
|
518
|
+
[_m],
|
|
519
|
+
[0], 1
|
|
520
|
+
];
|
|
521
|
+
n1_registry.registerError(exports.MessageNotFoundException$, errors_1.MessageNotFoundException);
|
|
522
|
+
exports.SectionNotFoundException$ = [-3, n1, _SNFE,
|
|
523
|
+
{ [_e]: _c, [_hE]: 404 },
|
|
524
|
+
[_m],
|
|
525
|
+
[0], 1
|
|
526
|
+
];
|
|
527
|
+
n1_registry.registerError(exports.SectionNotFoundException$, errors_1.SectionNotFoundException);
|
|
528
|
+
exports.StreamServiceException$ = [-3, n1, _SSE,
|
|
529
|
+
{ [_e]: _se, [_hE]: 500 },
|
|
530
|
+
[_m],
|
|
531
|
+
[0], 1
|
|
532
|
+
];
|
|
533
|
+
n1_registry.registerError(exports.StreamServiceException$, errors_1.StreamServiceException);
|
|
534
|
+
exports.TargetNotEligibleException$ = [-3, n2, _TNEE,
|
|
535
|
+
{ [_e]: _c, [_hE]: 401 },
|
|
536
|
+
[_m, _r],
|
|
537
|
+
[0, 0], 1
|
|
538
|
+
];
|
|
539
|
+
n2_registry.registerError(exports.TargetNotEligibleException$, errors_1.TargetNotEligibleException);
|
|
540
|
+
exports.TargetNotFoundException$ = [-3, n2, _TNFE,
|
|
541
|
+
{ [_e]: _c, [_hE]: 404 },
|
|
542
|
+
[_m],
|
|
543
|
+
[0], 1
|
|
544
|
+
];
|
|
545
|
+
n2_registry.registerError(exports.TargetNotFoundException$, errors_1.TargetNotFoundException);
|
|
546
|
+
exports.errorTypeRegistries = [
|
|
547
|
+
_s_registry,
|
|
548
|
+
n0_registry,
|
|
549
|
+
n1_registry,
|
|
550
|
+
n2_registry,
|
|
551
|
+
];
|
|
552
|
+
exports.TemplateParameter$ = [3, n3, _TP,
|
|
553
|
+
0,
|
|
554
|
+
[_n, _v],
|
|
555
|
+
[0, 0], 2
|
|
556
|
+
];
|
|
557
|
+
exports.TemplateWithParameters$ = [3, n3, _TWP,
|
|
558
|
+
0,
|
|
559
|
+
[_n, _p],
|
|
560
|
+
[0, () => ListTemplateParameter], 1
|
|
561
|
+
];
|
|
562
|
+
exports.AddChannelMemberInput$ = [3, n1, _ACMI,
|
|
563
|
+
0,
|
|
564
|
+
[_cI, _cIo, _uI, _si, _mI, _mTI, _hHi],
|
|
565
|
+
[[0, 1], [0, { [_hQ]: _co }], [0, { [_hQ]: _uI }], 2, 0, () => exports.UserToInvite$, 2], 1
|
|
566
|
+
];
|
|
567
|
+
exports.AddChannelMemberOutput$ = [3, n1, _ACMO,
|
|
568
|
+
0,
|
|
569
|
+
[_me],
|
|
570
|
+
[() => exports.ChannelMember$], 1
|
|
571
|
+
];
|
|
572
|
+
exports.AddChannelMembersInput$ = [3, n1, _ACMId,
|
|
573
|
+
0,
|
|
574
|
+
[_cI, _cIo, _uI, _si, _mem, _mTIe, _hHi, _uMI],
|
|
575
|
+
[[0, 1], [0, { [_hQ]: _co }], [0, { [_hQ]: _uI }], 2, 64 | 0, () => UserToInviteList, 2, 0], 1
|
|
576
|
+
];
|
|
577
|
+
exports.AddChannelMembersOutput$ = [3, n1, _ACMOd,
|
|
578
|
+
0,
|
|
579
|
+
[_mem],
|
|
580
|
+
[() => ChannelMemberList], 1
|
|
581
|
+
];
|
|
582
|
+
exports.AssignChannelInput$ = [3, n1, _ACI,
|
|
583
|
+
0,
|
|
584
|
+
[_cI, _cIo, _uI, _si, _ser, _a, _va],
|
|
585
|
+
[[0, 1], [0, { [_hQ]: _co }], [0, { [_hQ]: _uI }], 2, () => exports.AssignChannelServiceRequest$, () => exports.AssignChannelAssigneeRequest$, 0], 1
|
|
586
|
+
];
|
|
587
|
+
exports.AssignChannelOutput$ = [3, n1, _ACO,
|
|
588
|
+
0,
|
|
589
|
+
[_aI, _sU],
|
|
590
|
+
[0, 0]
|
|
591
|
+
];
|
|
592
|
+
exports.ButtonActionHandler$ = [3, n1, _BAH,
|
|
593
|
+
0,
|
|
594
|
+
[_i],
|
|
595
|
+
[0], 1
|
|
596
|
+
];
|
|
597
|
+
exports.ButtonElement$ = [3, n1, _BE,
|
|
598
|
+
0,
|
|
599
|
+
[_t, _h, _va, _d],
|
|
600
|
+
[0, () => exports.ButtonHandler$, 0, 2], 2
|
|
601
|
+
];
|
|
602
|
+
exports.ButtonLinkHandler$ = [3, n1, _BLH,
|
|
603
|
+
0,
|
|
604
|
+
[_u],
|
|
605
|
+
[0], 1
|
|
606
|
+
];
|
|
607
|
+
exports.ButtonReplyHandler$ = [3, n1, _BRH,
|
|
608
|
+
0,
|
|
609
|
+
[_t],
|
|
610
|
+
[0]
|
|
611
|
+
];
|
|
612
|
+
exports.Channel$ = [3, n1, _C,
|
|
613
|
+
0,
|
|
614
|
+
[_cI, _cT, _mC, _cA, _cB, _cV, _lAA, _uA, _lM, _co, _k, _kT, _kV, _kSN, _kDS, _ser, _sR, _te, _ex, _su, _de, _pi, _pC, _ac, _b, _con, _wS, _sm, _mm, _w, _kA, _sT, _aI, _aR, _tL, _wGVO],
|
|
615
|
+
[0, 0, 1, 0, 0, 1, 0, 0, () => exports.LastMessagePreview$, 0, 2, 0, 0, 0, 0, 0, 0, 2, 2, 0, 0, 0, 0, 0, 2, () => exports.ChannelContext$, 0, 2, 2, 2, 0, 0, 0, 2, 0, 2], 7
|
|
616
|
+
];
|
|
617
|
+
exports.ChannelContext$ = [3, n1, _CC,
|
|
618
|
+
0,
|
|
619
|
+
[_so, _ta, _ev, _pt],
|
|
620
|
+
[0, 0, () => ChannelContextEventList, () => exports.ChannelContextPushToTalk$]
|
|
621
|
+
];
|
|
622
|
+
exports.ChannelContextEvent$ = [3, n1, _CCE,
|
|
623
|
+
0,
|
|
624
|
+
[_i, _o, _st, _en, _sum, _at],
|
|
625
|
+
[0, 0, 0, 0, 0, () => ChannelContextEventAttendeeList]
|
|
626
|
+
];
|
|
627
|
+
exports.ChannelContextEventAttendee$ = [3, n1, _CCEA,
|
|
628
|
+
0,
|
|
629
|
+
[_em, _sta, _n],
|
|
630
|
+
[0, 0, 0], 2
|
|
631
|
+
];
|
|
632
|
+
exports.ChannelContextPushToTalk$ = [3, n1, _CCPTT,
|
|
633
|
+
0,
|
|
634
|
+
[_bI],
|
|
635
|
+
[0]
|
|
636
|
+
];
|
|
637
|
+
exports.ChannelMember$ = [3, n1, _CM,
|
|
638
|
+
0,
|
|
639
|
+
[_uI, _jA, _ro],
|
|
640
|
+
[0, 0, 0], 3
|
|
641
|
+
];
|
|
642
|
+
exports.ChannelMemberReadStatus$ = [3, n1, _CMRS,
|
|
643
|
+
0,
|
|
644
|
+
[_uI, _lRA, _lRVS],
|
|
645
|
+
[0, 0, 1], 1
|
|
646
|
+
];
|
|
647
|
+
exports.ChannelsQuery$ = [3, n1, _CQ,
|
|
648
|
+
0,
|
|
649
|
+
[_id],
|
|
650
|
+
[64 | 0]
|
|
651
|
+
];
|
|
652
|
+
exports.CreateGroupChannelInput$ = [3, n1, _CGCI,
|
|
653
|
+
0,
|
|
654
|
+
[_cIo, _uI, _su, _de, _pi, _pC, _ac, _b, _con, _wS, _sm, _mm, _w, _kA, _sT, _aI, _aR, _tL, _wGVO, _cI, _mem, _mTIe, _cET],
|
|
655
|
+
[[0, { [_hQ]: _co }], [0, { [_hQ]: _uI }], 0, 0, 0, 0, 0, 2, () => exports.ChannelContext$, 0, 2, 2, 2, 0, 0, 0, 2, 0, 2, 0, 64 | 0, () => UserToInviteList, 0]
|
|
656
|
+
];
|
|
657
|
+
exports.CreateGroupChannelOutput$ = [3, n1, _CGCO,
|
|
658
|
+
0,
|
|
659
|
+
[_ch],
|
|
660
|
+
[() => exports.Channel$], 1
|
|
661
|
+
];
|
|
662
|
+
exports.CreateKiteChannelInput$ = [3, n1, _CKCI,
|
|
663
|
+
0,
|
|
664
|
+
[_tI, _cIo, _uI, _cI, _tRI, _wM, _iM],
|
|
665
|
+
[0, [0, { [_hQ]: _co }], [0, { [_hQ]: _uI }], 0, 0, () => WelcomeMessageList, () => exports.InitialMessage$], 1
|
|
666
|
+
];
|
|
667
|
+
exports.CreateKiteChannelOutput$ = [3, n1, _CKCO,
|
|
668
|
+
0,
|
|
669
|
+
[_ch],
|
|
670
|
+
[() => exports.Channel$], 1
|
|
671
|
+
];
|
|
672
|
+
exports.CreateSectionInput$ = [3, n1, _CSI,
|
|
673
|
+
0,
|
|
674
|
+
[_sI, _n, _cIo, _uI],
|
|
675
|
+
[0, 0, [0, { [_hQ]: _co }], [0, { [_hQ]: _uI }]], 2
|
|
676
|
+
];
|
|
677
|
+
exports.CreateSectionOutput$ = [3, n1, _CSO,
|
|
678
|
+
0,
|
|
679
|
+
[_sec],
|
|
680
|
+
[() => exports.Section$], 1
|
|
681
|
+
];
|
|
682
|
+
exports.DeleteChannelInput$ = [3, n1, _DCI,
|
|
683
|
+
0,
|
|
684
|
+
[_cI, _cIo, _uI],
|
|
685
|
+
[[0, 1], [0, { [_hQ]: _co }], [0, { [_hQ]: _uI }]], 1
|
|
686
|
+
];
|
|
687
|
+
exports.DeleteChannelMemberInput$ = [3, n1, _DCMI,
|
|
688
|
+
0,
|
|
689
|
+
[_cI, _mI, _cIo, _uI, _si],
|
|
690
|
+
[[0, 1], [0, 1], [0, { [_hQ]: _co }], [0, { [_hQ]: _uI }], [2, { [_hQ]: _si }]], 2
|
|
691
|
+
];
|
|
692
|
+
exports.DeleteChannelMemberOutput$ = [3, n1, _DCMO,
|
|
693
|
+
0,
|
|
694
|
+
[],
|
|
695
|
+
[]
|
|
696
|
+
];
|
|
697
|
+
exports.DeleteChannelOutput$ = [3, n1, _DCO,
|
|
698
|
+
0,
|
|
699
|
+
[],
|
|
700
|
+
[]
|
|
701
|
+
];
|
|
702
|
+
exports.DeleteMessageInput$ = [3, n1, _DMI,
|
|
703
|
+
0,
|
|
704
|
+
[_cI, _mIe, _cIo, _uI],
|
|
705
|
+
[[0, 1], [0, 1], [0, { [_hQ]: _co }], [0, { [_hQ]: _uI }]], 2
|
|
706
|
+
];
|
|
707
|
+
exports.DeleteMessageOutput$ = [3, n1, _DMO,
|
|
708
|
+
0,
|
|
709
|
+
[],
|
|
710
|
+
[]
|
|
711
|
+
];
|
|
712
|
+
exports.DeleteMessageReactionInput$ = [3, n1, _DMRI,
|
|
713
|
+
0,
|
|
714
|
+
[_cI, _mIe, _ty, _cIo, _uI],
|
|
715
|
+
[[0, 1], [0, 1], [0, 1], [0, { [_hQ]: _co }], [0, { [_hQ]: _uI }]], 3
|
|
716
|
+
];
|
|
717
|
+
exports.DeleteMessageReactionOutput$ = [3, n1, _DMRO,
|
|
718
|
+
0,
|
|
719
|
+
[_m],
|
|
720
|
+
[() => exports.Message$], 1
|
|
721
|
+
];
|
|
722
|
+
exports.DeleteSectionInput$ = [3, n1, _DSI,
|
|
723
|
+
0,
|
|
724
|
+
[_sI, _cIo, _uI],
|
|
725
|
+
[[0, 1], [0, { [_hQ]: _co }], [0, { [_hQ]: _uI }]], 1
|
|
726
|
+
];
|
|
727
|
+
exports.DeleteSectionOutput$ = [3, n1, _DSO,
|
|
728
|
+
0,
|
|
729
|
+
[],
|
|
730
|
+
[]
|
|
731
|
+
];
|
|
732
|
+
exports.GetChannelInput$ = [3, n1, _GCI,
|
|
733
|
+
0,
|
|
734
|
+
[_cI, _cIo, _uI],
|
|
735
|
+
[[0, 1], [0, { [_hQ]: _co }], [0, { [_hQ]: _uI }]], 1
|
|
736
|
+
];
|
|
737
|
+
exports.GetChannelMemberInput$ = [3, n1, _GCMI,
|
|
738
|
+
0,
|
|
739
|
+
[_cI, _mI, _cIo, _uI],
|
|
740
|
+
[[0, 1], [0, 1], [0, { [_hQ]: _co }], [0, { [_hQ]: _uI }]], 2
|
|
741
|
+
];
|
|
742
|
+
exports.GetChannelMemberOutput$ = [3, n1, _GCMO,
|
|
743
|
+
0,
|
|
744
|
+
[_me],
|
|
745
|
+
[() => exports.ChannelMember$], 1
|
|
746
|
+
];
|
|
747
|
+
exports.GetChannelOutput$ = [3, n1, _GCO,
|
|
748
|
+
0,
|
|
749
|
+
[_ch],
|
|
750
|
+
[() => exports.Channel$], 1
|
|
751
|
+
];
|
|
752
|
+
exports.GetDirectChannelIdInput$ = [3, n1, _GDCII,
|
|
753
|
+
0,
|
|
754
|
+
[_cIo, _uI, _mI, _mTI],
|
|
755
|
+
[[0, { [_hQ]: _co }], [0, { [_hQ]: _uI }], 0, () => exports.UserToInvite$]
|
|
756
|
+
];
|
|
757
|
+
exports.GetDirectChannelIdOutput$ = [3, n1, _GDCIO,
|
|
758
|
+
0,
|
|
759
|
+
[_cI],
|
|
760
|
+
[0], 1
|
|
761
|
+
];
|
|
762
|
+
exports.GetFilePresignedDownloadUrlInput$ = [3, n1, _GFPDUI,
|
|
763
|
+
0,
|
|
764
|
+
[_cI, _mIe, _fI, _cIo, _uI, _ca, _do],
|
|
765
|
+
[[0, 1], [0, 1], [0, 1], [0, { [_hQ]: _co }], [0, { [_hQ]: _uI }], [0, { [_hQ]: _ca }], [1, { [_hQ]: _do }]], 3
|
|
766
|
+
];
|
|
767
|
+
exports.GetFilePresignedDownloadUrlOutput$ = [3, n1, _GFPDUO,
|
|
768
|
+
0,
|
|
769
|
+
[_pDU],
|
|
770
|
+
[0], 1
|
|
771
|
+
];
|
|
772
|
+
exports.GetInboxInput$ = [3, n1, _GII,
|
|
773
|
+
0,
|
|
774
|
+
[_cIo, _uI],
|
|
775
|
+
[[0, { [_hQ]: _co }], [0, { [_hQ]: _uI }]]
|
|
776
|
+
];
|
|
777
|
+
exports.GetInboxOutput$ = [3, n1, _GIO,
|
|
778
|
+
0,
|
|
779
|
+
[_cha, _sect],
|
|
780
|
+
[() => InboxChannelList, () => SectionList], 2
|
|
781
|
+
];
|
|
782
|
+
exports.GetMessageInput$ = [3, n1, _GMI,
|
|
783
|
+
0,
|
|
784
|
+
[_cI, _mIe, _cIo, _uI],
|
|
785
|
+
[[0, 1], [0, 1], [0, { [_hQ]: _co }], [0, { [_hQ]: _uI }]], 2
|
|
786
|
+
];
|
|
787
|
+
exports.GetMessageOutput$ = [3, n1, _GMO,
|
|
788
|
+
0,
|
|
789
|
+
[_m],
|
|
790
|
+
[() => exports.Message$], 1
|
|
791
|
+
];
|
|
792
|
+
exports.GetOrCreateDirectChannelInput$ = [3, n1, _GOCDCI,
|
|
793
|
+
0,
|
|
794
|
+
[_cIo, _uI, _mI, _mTI],
|
|
795
|
+
[[0, { [_hQ]: _co }], [0, { [_hQ]: _uI }], 0, () => exports.UserToInvite$]
|
|
796
|
+
];
|
|
797
|
+
exports.GetOrCreateDirectChannelOutput$ = [3, n1, _GOCDCO,
|
|
798
|
+
0,
|
|
799
|
+
[_ch],
|
|
800
|
+
[() => exports.Channel$], 1
|
|
801
|
+
];
|
|
802
|
+
exports.GetOrCreateSmsChannelInput$ = [3, n1, _GOCSCI,
|
|
803
|
+
0,
|
|
804
|
+
[_sU, _cIo, _uI, _rI, _rN, _ou],
|
|
805
|
+
[0, [0, { [_hQ]: _co }], [0, { [_hQ]: _uI }], 0, 0, 2], 1
|
|
806
|
+
];
|
|
807
|
+
exports.GetOrCreateSmsChannelOutput$ = [3, n1, _GOCSCO,
|
|
808
|
+
0,
|
|
809
|
+
[_ch],
|
|
810
|
+
[() => exports.Channel$], 1
|
|
811
|
+
];
|
|
812
|
+
exports.GetOrCreateTelephonyChannelInput$ = [3, n1, _GOCTCI,
|
|
813
|
+
0,
|
|
814
|
+
[_sU, _cIo, _uI, _rI, _rN],
|
|
815
|
+
[0, [0, { [_hQ]: _co }], [0, { [_hQ]: _uI }], 0, 0], 1
|
|
816
|
+
];
|
|
817
|
+
exports.GetOrCreateTelephonyChannelOutput$ = [3, n1, _GOCTCO,
|
|
818
|
+
0,
|
|
819
|
+
[_ch],
|
|
820
|
+
[() => exports.Channel$], 1
|
|
821
|
+
];
|
|
822
|
+
exports.GetOrCreateWhatsAppChannelInput$ = [3, n1, _GOCWACI,
|
|
823
|
+
0,
|
|
824
|
+
[_sU, _cIo, _uI, _rI, _rN, _ou],
|
|
825
|
+
[0, [0, { [_hQ]: _co }], [0, { [_hQ]: _uI }], 0, 0, 2], 1
|
|
826
|
+
];
|
|
827
|
+
exports.GetOrCreateWhatsAppChannelOutput$ = [3, n1, _GOCWACO,
|
|
828
|
+
0,
|
|
829
|
+
[_ch],
|
|
830
|
+
[() => exports.Channel$], 1
|
|
831
|
+
];
|
|
832
|
+
exports.GetSmsChannelIdInput$ = [3, n1, _GSCII,
|
|
833
|
+
0,
|
|
834
|
+
[_sU, _cIo, _uI, _rI, _rN],
|
|
835
|
+
[0, [0, { [_hQ]: _co }], [0, { [_hQ]: _uI }], 0, 0], 1
|
|
836
|
+
];
|
|
837
|
+
exports.GetSmsChannelIdOutput$ = [3, n1, _GSCIO,
|
|
838
|
+
0,
|
|
839
|
+
[_cI],
|
|
840
|
+
[0], 1
|
|
841
|
+
];
|
|
842
|
+
exports.GetTelephonyChannelIdInput$ = [3, n1, _GTCII,
|
|
843
|
+
0,
|
|
844
|
+
[_sU, _cIo, _uI, _rI, _rN],
|
|
845
|
+
[0, [0, { [_hQ]: _co }], [0, { [_hQ]: _uI }], 0, 0], 1
|
|
846
|
+
];
|
|
847
|
+
exports.GetTelephonyChannelIdOutput$ = [3, n1, _GTCIO,
|
|
848
|
+
0,
|
|
849
|
+
[_cI],
|
|
850
|
+
[0], 1
|
|
851
|
+
];
|
|
852
|
+
exports.GetTokenInput$ = [3, n1, _GTI,
|
|
853
|
+
0,
|
|
854
|
+
[_cIo, _uI, _cIl],
|
|
855
|
+
[[0, { [_hQ]: _co }], [0, { [_hQ]: _uI }], [0, { [_hQ]: _cIl }]]
|
|
856
|
+
];
|
|
857
|
+
exports.GetTokenOutput$ = [3, n1, _GTO,
|
|
858
|
+
0,
|
|
859
|
+
[_to, _exp],
|
|
860
|
+
[0, 1], 2
|
|
861
|
+
];
|
|
862
|
+
exports.GetUploadedFileInfoInput$ = [3, n1, _GUFII,
|
|
863
|
+
0,
|
|
864
|
+
[_cI, _fI, _cIo, _uI, _ca],
|
|
865
|
+
[[0, 1], [0, 1], [0, { [_hQ]: _co }], [0, { [_hQ]: _uI }], [0, { [_hQ]: _ca }]], 2
|
|
866
|
+
];
|
|
867
|
+
exports.GetUploadedFileInfoOutput$ = [3, n1, _GUFIO,
|
|
868
|
+
0,
|
|
869
|
+
[_f],
|
|
870
|
+
[() => exports.UploadedFileInfo$], 1
|
|
871
|
+
];
|
|
872
|
+
exports.GetWhatsAppChannelIdInput$ = [3, n1, _GWACII,
|
|
873
|
+
0,
|
|
874
|
+
[_sU, _cIo, _uI, _rI, _rN],
|
|
875
|
+
[0, [0, { [_hQ]: _co }], [0, { [_hQ]: _uI }], 0, 0], 1
|
|
876
|
+
];
|
|
877
|
+
exports.GetWhatsAppChannelIdOutput$ = [3, n1, _GWACIO,
|
|
878
|
+
0,
|
|
879
|
+
[_cI],
|
|
880
|
+
[0], 1
|
|
881
|
+
];
|
|
882
|
+
exports.HideChannelInput$ = [3, n1, _HCI,
|
|
883
|
+
0,
|
|
884
|
+
[_cI, _cIo, _uI],
|
|
885
|
+
[[0, 1], [0, { [_hQ]: _co }], [0, { [_hQ]: _uI }]], 1
|
|
886
|
+
];
|
|
887
|
+
exports.HideChannelOutput$ = [3, n1, _HCO,
|
|
888
|
+
0,
|
|
889
|
+
[],
|
|
890
|
+
[]
|
|
891
|
+
];
|
|
892
|
+
exports.InboxChannel$ = [3, n1, _IC,
|
|
893
|
+
0,
|
|
894
|
+
[_cI, _cT, _mC, _cA, _cB, _cV, _lAA, _in, _uA, _lM, _co, _k, _kT, _kV, _kSN, _kDS, _ser, _sR, _te, _ex, _su, _de, _pi, _pC, _ac, _b, _con, _wS, _sm, _mm, _w, _kA, _sT, _aI, _aR, _tL, _wGVO],
|
|
895
|
+
[0, 0, 1, 0, 0, 1, 0, () => exports.InboxState$, 0, () => exports.LastMessagePreview$, 0, 2, 0, 0, 0, 0, 0, 0, 2, 2, 0, 0, 0, 0, 0, 2, () => exports.ChannelContext$, 0, 2, 2, 2, 0, 0, 0, 2, 0, 2], 8
|
|
896
|
+
];
|
|
897
|
+
exports.InboxState$ = [3, n1, _IS,
|
|
898
|
+
0,
|
|
899
|
+
[_sIe, _uC, _mUC, _hi, _mu, _pin, _lRVS, _lRA, _mU, _uMA],
|
|
900
|
+
[64 | 0, 1, 1, 2, 2, 2, 1, 0, 0, 1], 6
|
|
901
|
+
];
|
|
902
|
+
exports.InitialMessage$ = [3, n1, _IM,
|
|
903
|
+
0,
|
|
904
|
+
[_mIe, _t, _el, _att, _q, _fo, _ma, _si, _w, _wS, _sm, _sS, _men],
|
|
905
|
+
[0, 0, () => ElementsList, () => MessageAttachmentRequestList, () => exports.MessageQuoteRef$, () => exports.MessageForwardRef$, 2, 2, 2, 0, 2, 0, 64 | 0], 1
|
|
906
|
+
];
|
|
907
|
+
exports.JoinChannelInput$ = [3, n1, _JCI,
|
|
908
|
+
0,
|
|
909
|
+
[_cI, _cIo, _uI, _si],
|
|
910
|
+
[[0, 1], [0, { [_hQ]: _co }], [0, { [_hQ]: _uI }], 2], 1
|
|
911
|
+
];
|
|
912
|
+
exports.JoinChannelOutput$ = [3, n1, _JCO,
|
|
913
|
+
0,
|
|
914
|
+
[_ch],
|
|
915
|
+
[() => exports.Channel$], 1
|
|
916
|
+
];
|
|
917
|
+
exports.LastMessagePreview$ = [3, n1, _LMP,
|
|
918
|
+
0,
|
|
919
|
+
[_mIe, _uI, _mT, _cA, _t, _eve],
|
|
920
|
+
[0, 0, 0, 0, 0, 0], 4
|
|
921
|
+
];
|
|
922
|
+
exports.LeaveChannelInput$ = [3, n1, _LCI,
|
|
923
|
+
0,
|
|
924
|
+
[_cI, _cIo, _uI, _si],
|
|
925
|
+
[[0, 1], [0, { [_hQ]: _co }], [0, { [_hQ]: _uI }], 2], 1
|
|
926
|
+
];
|
|
927
|
+
exports.LeaveChannelOutput$ = [3, n1, _LCO,
|
|
928
|
+
0,
|
|
929
|
+
[],
|
|
930
|
+
[]
|
|
931
|
+
];
|
|
932
|
+
exports.ListChannelMembersInput$ = [3, n1, _LCMI,
|
|
933
|
+
0,
|
|
934
|
+
[_cI, _cIo, _uI, _l, _of],
|
|
935
|
+
[[0, 1], [0, { [_hQ]: _co }], [0, { [_hQ]: _uI }], [1, { [_hQ]: _l }], [1, { [_hQ]: _of }]], 1
|
|
936
|
+
];
|
|
937
|
+
exports.ListChannelMembersOutput$ = [3, n1, _LCMO,
|
|
938
|
+
0,
|
|
939
|
+
[_mem],
|
|
940
|
+
[() => ChannelMemberList], 1
|
|
941
|
+
];
|
|
942
|
+
exports.ListChannelMembersReadStatusInput$ = [3, n1, _LCMRSI,
|
|
943
|
+
0,
|
|
944
|
+
[_cI, _cIo, _uI],
|
|
945
|
+
[[0, 1], [0, { [_hQ]: _co }], [0, { [_hQ]: _uI }]], 1
|
|
946
|
+
];
|
|
947
|
+
exports.ListChannelMembersReadStatusOutput$ = [3, n1, _LCMRSO,
|
|
948
|
+
0,
|
|
949
|
+
[_mem],
|
|
950
|
+
[() => ChannelMemberReadStatusList], 1
|
|
951
|
+
];
|
|
952
|
+
exports.ListChannelsInput$ = [3, n1, _LCIi,
|
|
953
|
+
0,
|
|
954
|
+
[_cIo, _uI, _sec, _fi, _cu],
|
|
955
|
+
[[0, { [_hQ]: _co }], [0, { [_hQ]: _uI }], [0, { [_hQ]: _sec }], [0, { [_hQ]: _fi }], [0, { [_hQ]: _cu }]]
|
|
956
|
+
];
|
|
957
|
+
exports.ListChannelsOutput$ = [3, n1, _LCOi,
|
|
958
|
+
0,
|
|
959
|
+
[_cha, _nC],
|
|
960
|
+
[() => InboxChannelList, 0], 1
|
|
961
|
+
];
|
|
962
|
+
exports.ListMentionsInput$ = [3, n1, _LMI,
|
|
963
|
+
0,
|
|
964
|
+
[_cIo, _uI, _fi, _cu],
|
|
965
|
+
[[0, { [_hQ]: _co }], [0, { [_hQ]: _uI }], [0, { [_hQ]: _fi }], [0, { [_hQ]: _cu }]]
|
|
966
|
+
];
|
|
967
|
+
exports.ListMentionsOutput$ = [3, n1, _LMO,
|
|
968
|
+
0,
|
|
969
|
+
[_men, _nC],
|
|
970
|
+
[() => MentionEntryList, 0], 1
|
|
971
|
+
];
|
|
972
|
+
exports.ListMessagesInput$ = [3, n1, _LMIi,
|
|
973
|
+
0,
|
|
974
|
+
[_cI, _cIo, _uI, _fr, _to_],
|
|
975
|
+
[[0, 1], [0, { [_hQ]: _co }], [0, { [_hQ]: _uI }], [1, { [_hQ]: _fr }], [1, { [_hQ]: _to_ }]], 1
|
|
976
|
+
];
|
|
977
|
+
exports.ListMessagesOutput$ = [3, n1, _LMOi,
|
|
978
|
+
0,
|
|
979
|
+
[_mes],
|
|
980
|
+
[() => MessageList], 1
|
|
981
|
+
];
|
|
982
|
+
exports.MarkReadInput$ = [3, n1, _MRI,
|
|
983
|
+
0,
|
|
984
|
+
[_cI, _cIo, _uI, _lRVS],
|
|
985
|
+
[[0, 1], [0, { [_hQ]: _co }], [0, { [_hQ]: _uI }], 1], 1
|
|
986
|
+
];
|
|
987
|
+
exports.MarkReadOutput$ = [3, n1, _MRO,
|
|
988
|
+
0,
|
|
989
|
+
[_in],
|
|
990
|
+
[() => exports.InboxState$], 1
|
|
991
|
+
];
|
|
992
|
+
exports.MarkUnreadInput$ = [3, n1, _MUI,
|
|
993
|
+
0,
|
|
994
|
+
[_cI, _cIo, _uI, _mIe, _uMA, _for],
|
|
995
|
+
[[0, 1], [0, { [_hQ]: _co }], [0, { [_hQ]: _uI }], 0, 1, [2, { [_hQ]: _for }]], 1
|
|
996
|
+
];
|
|
997
|
+
exports.MarkUnreadOutput$ = [3, n1, _MUO,
|
|
998
|
+
0,
|
|
999
|
+
[_in],
|
|
1000
|
+
[() => exports.InboxState$], 1
|
|
1001
|
+
];
|
|
1002
|
+
exports.MentionChannelPreview$ = [3, n1, _MCP,
|
|
1003
|
+
0,
|
|
1004
|
+
[_cI, _cT, _mCe, _cV, _lAA, _su, _pi],
|
|
1005
|
+
[0, 0, 1, 1, 0, 0, 0], 5
|
|
1006
|
+
];
|
|
1007
|
+
exports.MentionEntry$ = [3, n1, _ME,
|
|
1008
|
+
0,
|
|
1009
|
+
[_cI, _mIe, _tS, _mAA, _re, _m, _ch, _vS, _rAe],
|
|
1010
|
+
[0, 0, 1, 0, 2, () => exports.Message$, () => exports.MentionChannelPreview$, 1, 0], 7
|
|
1011
|
+
];
|
|
1012
|
+
exports.Message$ = [3, n1, _M,
|
|
1013
|
+
0,
|
|
1014
|
+
[_mIe, _uI, _mT, _att, _men, _rC, _pin, _sy, _tS, _vS, _cV, _mV, _cA, _t, _q, _fo, _lR, _pA, _pB, _eA, _dA, _el, _w, _wS, _sm, _sS, _ma, _g, _si, _eve],
|
|
1015
|
+
[0, 0, 0, () => MessageAttachmentList, 64 | 0, 128 | 1, 2, 2, 1, 1, 1, 1, 0, 0, () => exports.MessageQuote$, () => exports.MessageForward$, () => ReactionList, 0, 0, 0, 0, () => ElementsList, 2, 0, 2, 0, 2, () => exports.MessageGiphy$, 2, 0], 13
|
|
1016
|
+
];
|
|
1017
|
+
exports.MessageAttachment$ = [3, n1, _MA,
|
|
1018
|
+
0,
|
|
1019
|
+
[_fI, _n, _siz, _i, _mi, _wi, _he, _th],
|
|
1020
|
+
[0, 0, 1, 0, 0, 1, 1, 0], 4
|
|
1021
|
+
];
|
|
1022
|
+
exports.MessageAttachmentRequest$ = [3, n1, _MAR,
|
|
1023
|
+
0,
|
|
1024
|
+
[_fI, _n, _siz, _mi, _wi, _he, _th],
|
|
1025
|
+
[0, 0, 1, 0, 1, 1, 0], 3
|
|
1026
|
+
];
|
|
1027
|
+
exports.MessageForward$ = [3, n1, _MF,
|
|
1028
|
+
0,
|
|
1029
|
+
[_cI, _mIe, _uI, _cIo, _cA],
|
|
1030
|
+
[0, 0, 0, 0, 0], 3
|
|
1031
|
+
];
|
|
1032
|
+
exports.MessageForwardRef$ = [3, n1, _MFR,
|
|
1033
|
+
0,
|
|
1034
|
+
[_cI, _mIe],
|
|
1035
|
+
[0, 0], 2
|
|
1036
|
+
];
|
|
1037
|
+
exports.MessageGiphy$ = [3, n1, _MG,
|
|
1038
|
+
0,
|
|
1039
|
+
[_i, _siz, _u, _he, _wi],
|
|
1040
|
+
[0, 0, 0, 0, 0], 5
|
|
1041
|
+
];
|
|
1042
|
+
exports.MessageQuote$ = [3, n1, _MQ,
|
|
1043
|
+
0,
|
|
1044
|
+
[_cI, _mIe, _uI, _cA, _t],
|
|
1045
|
+
[0, 0, 0, 0, 0], 4
|
|
1046
|
+
];
|
|
1047
|
+
exports.MessageQuoteRef$ = [3, n1, _MQR,
|
|
1048
|
+
0,
|
|
1049
|
+
[_cI, _mIe],
|
|
1050
|
+
[0, 0], 2
|
|
1051
|
+
];
|
|
1052
|
+
exports.MessageTemplateConfig$ = [3, n1, _MTC,
|
|
1053
|
+
0,
|
|
1054
|
+
[_w],
|
|
1055
|
+
[() => exports.TemplateWithParameters$]
|
|
1056
|
+
];
|
|
1057
|
+
exports.MoveChannelToSectionInput$ = [3, n1, _MCTSI,
|
|
1058
|
+
0,
|
|
1059
|
+
[_cI, _sI, _cIo, _uI],
|
|
1060
|
+
[[0, 1], [0, 1], [0, { [_hQ]: _co }], [0, { [_hQ]: _uI }]], 2
|
|
1061
|
+
];
|
|
1062
|
+
exports.MoveChannelToSectionOutput$ = [3, n1, _MCTSO,
|
|
1063
|
+
0,
|
|
1064
|
+
[_in],
|
|
1065
|
+
[() => exports.InboxState$], 1
|
|
1066
|
+
];
|
|
1067
|
+
exports.MultipleMembersJoinedSystemMessage$ = [3, n1, _MMJSM,
|
|
1068
|
+
0,
|
|
1069
|
+
[_aM],
|
|
1070
|
+
[64 | 0], 1
|
|
1071
|
+
];
|
|
1072
|
+
exports.MuteChannelInput$ = [3, n1, _MCI,
|
|
1073
|
+
0,
|
|
1074
|
+
[_cI, _cIo, _uI, _mU],
|
|
1075
|
+
[[0, 1], [0, { [_hQ]: _co }], [0, { [_hQ]: _uI }], 0], 1
|
|
1076
|
+
];
|
|
1077
|
+
exports.MuteChannelOutput$ = [3, n1, _MCO,
|
|
1078
|
+
0,
|
|
1079
|
+
[_in],
|
|
1080
|
+
[() => exports.InboxState$], 1
|
|
1081
|
+
];
|
|
1082
|
+
exports.PartialUpdateChannelInput$ = [3, n1, _PUCI,
|
|
1083
|
+
0,
|
|
1084
|
+
[_cI, _cIo, _uI, _si, _set, _un],
|
|
1085
|
+
[[0, 1], [0, { [_hQ]: _co }], [0, { [_hQ]: _uI }], 2, () => exports.PartialUpdateChannelSetOptions$, 64 | 0], 1
|
|
1086
|
+
];
|
|
1087
|
+
exports.PartialUpdateChannelOutput$ = [3, n1, _PUCO,
|
|
1088
|
+
0,
|
|
1089
|
+
[_ch],
|
|
1090
|
+
[() => exports.Channel$], 1
|
|
1091
|
+
];
|
|
1092
|
+
exports.PartialUpdateChannelSetOptions$ = [3, n1, _PUCSO,
|
|
1093
|
+
0,
|
|
1094
|
+
[_su, _de, _pi, _pC, _ac, _b, _con, _wS, _sm, _mm, _w, _kA, _sT, _aI, _aR, _tL, _wGVO],
|
|
1095
|
+
[0, 0, 0, 0, 0, 2, () => exports.ChannelContext$, 0, 2, 2, 2, 0, 0, 0, 2, 0, 2]
|
|
1096
|
+
];
|
|
1097
|
+
exports.PartialUpdateMessageInput$ = [3, n1, _PUMI,
|
|
1098
|
+
0,
|
|
1099
|
+
[_cI, _mIe, _cIo, _uI, _set, _un, _si],
|
|
1100
|
+
[[0, 1], [0, 1], [0, { [_hQ]: _co }], [0, { [_hQ]: _uI }], () => exports.PartialUpdateMessageSetInput$, 64 | 0, 2], 2
|
|
1101
|
+
];
|
|
1102
|
+
exports.PartialUpdateMessageOutput$ = [3, n1, _PUMO,
|
|
1103
|
+
0,
|
|
1104
|
+
[_m],
|
|
1105
|
+
[() => exports.Message$], 1
|
|
1106
|
+
];
|
|
1107
|
+
exports.PartialUpdateMessageSetInput$ = [3, n1, _PUMSI,
|
|
1108
|
+
0,
|
|
1109
|
+
[_t, _el, _att, _q, _fo, _ma, _men, _w, _wS, _sm, _sS],
|
|
1110
|
+
[0, () => ElementsList, () => MessageAttachmentRequestList, () => exports.MessageQuoteRef$, () => exports.MessageForwardRef$, 2, 64 | 0, 2, 0, 2, 0]
|
|
1111
|
+
];
|
|
1112
|
+
exports.PinChannelInput$ = [3, n1, _PCI,
|
|
1113
|
+
0,
|
|
1114
|
+
[_cI, _cIo, _uI],
|
|
1115
|
+
[[0, 1], [0, { [_hQ]: _co }], [0, { [_hQ]: _uI }]], 1
|
|
1116
|
+
];
|
|
1117
|
+
exports.PinChannelOutput$ = [3, n1, _PCO,
|
|
1118
|
+
0,
|
|
1119
|
+
[],
|
|
1120
|
+
[]
|
|
1121
|
+
];
|
|
1122
|
+
exports.PinMessageInput$ = [3, n1, _PMI,
|
|
1123
|
+
0,
|
|
1124
|
+
[_cI, _mIe, _cIo, _uI],
|
|
1125
|
+
[[0, 1], [0, 1], [0, { [_hQ]: _co }], [0, { [_hQ]: _uI }]], 2
|
|
1126
|
+
];
|
|
1127
|
+
exports.PinMessageOutput$ = [3, n1, _PMO,
|
|
1128
|
+
0,
|
|
1129
|
+
[_m],
|
|
1130
|
+
[() => exports.Message$], 1
|
|
1131
|
+
];
|
|
1132
|
+
exports.QueryChannelsInput$ = [3, n1, _QCI,
|
|
1133
|
+
0,
|
|
1134
|
+
[_qu, _cIo, _uI],
|
|
1135
|
+
[() => exports.ChannelsQuery$, [0, { [_hQ]: _co }], [0, { [_hQ]: _uI }]], 1
|
|
1136
|
+
];
|
|
1137
|
+
exports.QueryChannelsOutput$ = [3, n1, _QCO,
|
|
1138
|
+
0,
|
|
1139
|
+
[_cha],
|
|
1140
|
+
[() => InboxChannelList], 1
|
|
1141
|
+
];
|
|
1142
|
+
exports.Reaction$ = [3, n1, _R,
|
|
1143
|
+
0,
|
|
1144
|
+
[_ty, _uI, _mIe],
|
|
1145
|
+
[0, 0, 0], 3
|
|
1146
|
+
];
|
|
1147
|
+
exports.RemoveChannelFromSectionInput$ = [3, n1, _RCFSI,
|
|
1148
|
+
0,
|
|
1149
|
+
[_cI, _sI, _cIo, _uI],
|
|
1150
|
+
[[0, 1], [0, 1], [0, { [_hQ]: _co }], [0, { [_hQ]: _uI }]], 2
|
|
1151
|
+
];
|
|
1152
|
+
exports.RemoveChannelFromSectionOutput$ = [3, n1, _RCFSO,
|
|
1153
|
+
0,
|
|
1154
|
+
[_in],
|
|
1155
|
+
[() => exports.InboxState$], 1
|
|
1156
|
+
];
|
|
1157
|
+
exports.RenameSectionInput$ = [3, n1, _RSI,
|
|
1158
|
+
0,
|
|
1159
|
+
[_sI, _n, _cIo, _uI],
|
|
1160
|
+
[[0, 1], 0, [0, { [_hQ]: _co }], [0, { [_hQ]: _uI }]], 2
|
|
1161
|
+
];
|
|
1162
|
+
exports.RenameSectionOutput$ = [3, n1, _RSO,
|
|
1163
|
+
0,
|
|
1164
|
+
[_sec],
|
|
1165
|
+
[() => exports.Section$], 1
|
|
1166
|
+
];
|
|
1167
|
+
exports.Section$ = [3, n1, _S,
|
|
1168
|
+
0,
|
|
1169
|
+
[_sI, _n, _ty, _cC, _uUCC, _uUMC, _mUMC, _uMC],
|
|
1170
|
+
[0, 0, 0, 1, 1, 1, 1, 1], 8
|
|
1171
|
+
];
|
|
1172
|
+
exports.SendGiphyInput$ = [3, n1, _SGI,
|
|
1173
|
+
0,
|
|
1174
|
+
[_cI, _g, _cIo, _uI, _mIe, _men, _q, _si],
|
|
1175
|
+
[[0, 1], () => exports.MessageGiphy$, [0, { [_hQ]: _co }], [0, { [_hQ]: _uI }], 0, 64 | 0, () => exports.MessageQuoteRef$, 2], 2
|
|
1176
|
+
];
|
|
1177
|
+
exports.SendGiphyOutput$ = [3, n1, _SGO,
|
|
1178
|
+
0,
|
|
1179
|
+
[_m],
|
|
1180
|
+
[() => exports.Message$], 1
|
|
1181
|
+
];
|
|
1182
|
+
exports.SendMessageInput$ = [3, n1, _SMI,
|
|
1183
|
+
0,
|
|
1184
|
+
[_cI, _cIo, _uI, _t, _el, _att, _q, _fo, _ma, _si, _w, _wS, _sm, _sS, _mIe, _men, _mT],
|
|
1185
|
+
[[0, 1], [0, { [_hQ]: _co }], [0, { [_hQ]: _uI }], 0, () => ElementsList, () => MessageAttachmentRequestList, () => exports.MessageQuoteRef$, () => exports.MessageForwardRef$, 2, 2, 2, 0, 2, 0, 0, 64 | 0, 0], 1
|
|
1186
|
+
];
|
|
1187
|
+
exports.SendMessageOutput$ = [3, n1, _SMO,
|
|
1188
|
+
0,
|
|
1189
|
+
[_m],
|
|
1190
|
+
[() => exports.Message$], 1
|
|
1191
|
+
];
|
|
1192
|
+
exports.SendMessageReactionInput$ = [3, n1, _SMRI,
|
|
1193
|
+
0,
|
|
1194
|
+
[_cI, _mIe, _ty, _cIo, _uI],
|
|
1195
|
+
[[0, 1], [0, 1], [0, 1], [0, { [_hQ]: _co }], [0, { [_hQ]: _uI }]], 3
|
|
1196
|
+
];
|
|
1197
|
+
exports.SendMessageReactionOutput$ = [3, n1, _SMRO,
|
|
1198
|
+
0,
|
|
1199
|
+
[_m],
|
|
1200
|
+
[() => exports.Message$], 1
|
|
1201
|
+
];
|
|
1202
|
+
exports.SendSystemMessageInput$ = [3, n1, _SSMI,
|
|
1203
|
+
0,
|
|
1204
|
+
[_cI, _m, _cIo, _uI, _eve, _si],
|
|
1205
|
+
[[0, 1], () => exports.SystemMessage$, [0, { [_hQ]: _co }], [0, { [_hQ]: _uI }], 0, 2], 2
|
|
1206
|
+
];
|
|
1207
|
+
exports.SendSystemMessageOutput$ = [3, n1, _SSMO,
|
|
1208
|
+
0,
|
|
1209
|
+
[_m],
|
|
1210
|
+
[() => exports.Message$], 1
|
|
1211
|
+
];
|
|
1212
|
+
exports.SendTypingStartInput$ = [3, n1, _STSI,
|
|
1213
|
+
0,
|
|
1214
|
+
[_cI, _cIo, _uI],
|
|
1215
|
+
[[0, 1], [0, { [_hQ]: _co }], [0, { [_hQ]: _uI }]], 1
|
|
1216
|
+
];
|
|
1217
|
+
exports.SendTypingStartOutput$ = [3, n1, _STSO,
|
|
1218
|
+
0,
|
|
1219
|
+
[],
|
|
1220
|
+
[]
|
|
1221
|
+
];
|
|
1222
|
+
exports.SendTypingStopInput$ = [3, n1, _STSIe,
|
|
1223
|
+
0,
|
|
1224
|
+
[_cI, _cIo, _uI],
|
|
1225
|
+
[[0, 1], [0, { [_hQ]: _co }], [0, { [_hQ]: _uI }]], 1
|
|
1226
|
+
];
|
|
1227
|
+
exports.SendTypingStopOutput$ = [3, n1, _STSOe,
|
|
1228
|
+
0,
|
|
1229
|
+
[],
|
|
1230
|
+
[]
|
|
1231
|
+
];
|
|
1232
|
+
exports.ShowChannelInput$ = [3, n1, _SCI,
|
|
1233
|
+
0,
|
|
1234
|
+
[_cI, _cIo, _uI],
|
|
1235
|
+
[[0, 1], [0, { [_hQ]: _co }], [0, { [_hQ]: _uI }]], 1
|
|
1236
|
+
];
|
|
1237
|
+
exports.ShowChannelOutput$ = [3, n1, _SCO,
|
|
1238
|
+
0,
|
|
1239
|
+
[],
|
|
1240
|
+
[]
|
|
1241
|
+
];
|
|
1242
|
+
exports.UnmuteChannelInput$ = [3, n1, _UCI,
|
|
1243
|
+
0,
|
|
1244
|
+
[_cI, _cIo, _uI],
|
|
1245
|
+
[[0, 1], [0, { [_hQ]: _co }], [0, { [_hQ]: _uI }]], 1
|
|
1246
|
+
];
|
|
1247
|
+
exports.UnmuteChannelOutput$ = [3, n1, _UCO,
|
|
1248
|
+
0,
|
|
1249
|
+
[_in],
|
|
1250
|
+
[() => exports.InboxState$], 1
|
|
1251
|
+
];
|
|
1252
|
+
exports.UnpinChannelInput$ = [3, n1, _UCIn,
|
|
1253
|
+
0,
|
|
1254
|
+
[_cI, _cIo, _uI],
|
|
1255
|
+
[[0, 1], [0, { [_hQ]: _co }], [0, { [_hQ]: _uI }]], 1
|
|
1256
|
+
];
|
|
1257
|
+
exports.UnpinChannelOutput$ = [3, n1, _UCOn,
|
|
1258
|
+
0,
|
|
1259
|
+
[],
|
|
1260
|
+
[]
|
|
1261
|
+
];
|
|
1262
|
+
exports.UnpinMessageInput$ = [3, n1, _UMI,
|
|
1263
|
+
0,
|
|
1264
|
+
[_cI, _mIe, _cIo, _uI],
|
|
1265
|
+
[[0, 1], [0, 1], [0, { [_hQ]: _co }], [0, { [_hQ]: _uI }]], 2
|
|
1266
|
+
];
|
|
1267
|
+
exports.UnpinMessageOutput$ = [3, n1, _UMO,
|
|
1268
|
+
0,
|
|
1269
|
+
[_m],
|
|
1270
|
+
[() => exports.Message$], 1
|
|
1271
|
+
];
|
|
1272
|
+
exports.UpdateChannelInput$ = [3, n1, _UCIp,
|
|
1273
|
+
0,
|
|
1274
|
+
[_cI, _cIo, _uI, _su, _de, _pi, _pC, _ac, _b, _con, _wS, _sm, _mm, _w, _kA, _sT, _aI, _aR, _tL, _wGVO, _si],
|
|
1275
|
+
[[0, 1], [0, { [_hQ]: _co }], [0, { [_hQ]: _uI }], 0, 0, 0, 0, 0, 2, () => exports.ChannelContext$, 0, 2, 2, 2, 0, 0, 0, 2, 0, 2, 2], 1
|
|
1276
|
+
];
|
|
1277
|
+
exports.UpdateChannelOutput$ = [3, n1, _UCOp,
|
|
1278
|
+
0,
|
|
1279
|
+
[_ch],
|
|
1280
|
+
[() => exports.Channel$], 1
|
|
1281
|
+
];
|
|
1282
|
+
exports.UpdateMessageInput$ = [3, n1, _UMIp,
|
|
1283
|
+
0,
|
|
1284
|
+
[_cI, _mIe, _cIo, _uI, _t, _el, _att, _q, _fo, _ma, _men, _w, _wS, _sm, _sS, _si],
|
|
1285
|
+
[[0, 1], [0, 1], [0, { [_hQ]: _co }], [0, { [_hQ]: _uI }], 0, () => ElementsList, () => MessageAttachmentRequestList, () => exports.MessageQuoteRef$, () => exports.MessageForwardRef$, 2, 64 | 0, 2, 0, 2, 0, 2], 2
|
|
1286
|
+
];
|
|
1287
|
+
exports.UpdateMessageOutput$ = [3, n1, _UMOp,
|
|
1288
|
+
0,
|
|
1289
|
+
[_m],
|
|
1290
|
+
[() => exports.Message$], 1
|
|
1291
|
+
];
|
|
1292
|
+
exports.UploadedFileInfo$ = [3, n1, _UFI,
|
|
1293
|
+
0,
|
|
1294
|
+
[_fI, _n, _siz, _mi, _wi, _he, _th],
|
|
1295
|
+
[0, 0, 1, 0, 1, 1, 0], 3
|
|
1296
|
+
];
|
|
1297
|
+
exports.UploadFileInput$ = [3, n1, _UFIp,
|
|
1298
|
+
0,
|
|
1299
|
+
[_cI, _n, _cIo, _uI, _op],
|
|
1300
|
+
[[0, 1], 0, [0, { [_hQ]: _co }], [0, { [_hQ]: _uI }], () => exports.UploadFileOptions$], 2
|
|
1301
|
+
];
|
|
1302
|
+
exports.UploadFileOptions$ = [3, n1, _UFO,
|
|
1303
|
+
0,
|
|
1304
|
+
[_ca, _reg],
|
|
1305
|
+
[0, 0]
|
|
1306
|
+
];
|
|
1307
|
+
exports.UploadFileOutput$ = [3, n1, _UFOp,
|
|
1308
|
+
0,
|
|
1309
|
+
[_fI, _pUU],
|
|
1310
|
+
[0, 0], 2
|
|
1311
|
+
];
|
|
1312
|
+
exports.UserToInvite$ = [3, n1, _UTI,
|
|
1313
|
+
0,
|
|
1314
|
+
[_em, _ph, _n, _col],
|
|
1315
|
+
[0, 0, 0, 2]
|
|
1316
|
+
];
|
|
1317
|
+
exports.WelcomeMessage$ = [3, n1, _WM,
|
|
1318
|
+
0,
|
|
1319
|
+
[_mIe, _uI, _t, _el, _att, _q, _fo, _ma, _si, _w, _wS, _sm, _sS, _men],
|
|
1320
|
+
[0, 0, 0, () => ElementsList, () => MessageAttachmentRequestList, () => exports.MessageQuoteRef$, () => exports.MessageForwardRef$, 2, 2, 2, 0, 2, 0, 64 | 0], 2
|
|
1321
|
+
];
|
|
1322
|
+
exports.WhatsAppClosedSystemMessage$ = [3, n1, _WACSM,
|
|
1323
|
+
0,
|
|
1324
|
+
[],
|
|
1325
|
+
[]
|
|
1326
|
+
];
|
|
1327
|
+
var ListTemplateParameter = [1, n3, _LTP,
|
|
1328
|
+
0, () => exports.TemplateParameter$
|
|
1329
|
+
];
|
|
1330
|
+
var ActionsElementsList = [1, n1, _AEL,
|
|
1331
|
+
0, () => exports.ActionElement$
|
|
1332
|
+
];
|
|
1333
|
+
var ChannelContextEventAttendeeList = [1, n1, _CCEAL,
|
|
1334
|
+
0, () => exports.ChannelContextEventAttendee$
|
|
1335
|
+
];
|
|
1336
|
+
var ChannelContextEventList = [1, n1, _CCEL,
|
|
1337
|
+
0, () => exports.ChannelContextEvent$
|
|
1338
|
+
];
|
|
1339
|
+
var ChannelIdList = 64 | 0;
|
|
1340
|
+
var ChannelMemberList = [1, n1, _CML,
|
|
1341
|
+
0, () => exports.ChannelMember$
|
|
1342
|
+
];
|
|
1343
|
+
var ChannelMemberReadStatusList = [1, n1, _CMRSL,
|
|
1344
|
+
0, () => exports.ChannelMemberReadStatus$
|
|
1345
|
+
];
|
|
1346
|
+
var ElementsList = [1, n1, _EL,
|
|
1347
|
+
0, () => exports.Element$
|
|
1348
|
+
];
|
|
1349
|
+
var GroupChannelUnsetOptionsList = 64 | 0;
|
|
1350
|
+
var InboxChannelList = [1, n1, _ICL,
|
|
1351
|
+
0, () => exports.InboxChannel$
|
|
1352
|
+
];
|
|
1353
|
+
var MentionEntryList = [1, n1, _MEL,
|
|
1354
|
+
0, () => exports.MentionEntry$
|
|
1355
|
+
];
|
|
1356
|
+
var MessageAttachmentList = [1, n1, _MAL,
|
|
1357
|
+
0, () => exports.MessageAttachment$
|
|
1358
|
+
];
|
|
1359
|
+
var MessageAttachmentRequestList = [1, n1, _MARL,
|
|
1360
|
+
0, () => exports.MessageAttachmentRequest$
|
|
1361
|
+
];
|
|
1362
|
+
var MessageList = [1, n1, _ML,
|
|
1363
|
+
0, () => exports.Message$
|
|
1364
|
+
];
|
|
1365
|
+
var MessageUnsetFieldsList = 64 | 0;
|
|
1366
|
+
var ReactionList = [1, n1, _RL,
|
|
1367
|
+
0, () => exports.Reaction$
|
|
1368
|
+
];
|
|
1369
|
+
var SectionIdList = 64 | 0;
|
|
1370
|
+
var SectionList = [1, n1, _SL,
|
|
1371
|
+
0, () => exports.Section$
|
|
1372
|
+
];
|
|
1373
|
+
var UserIdList = 64 | 0;
|
|
1374
|
+
var UserToInviteList = [1, n1, _UTIL,
|
|
1375
|
+
0, () => exports.UserToInvite$
|
|
1376
|
+
];
|
|
1377
|
+
var WelcomeMessageList = [1, n1, _WML,
|
|
1378
|
+
0, () => exports.WelcomeMessage$
|
|
1379
|
+
];
|
|
1380
|
+
var ReactionCounts = 128 | 1;
|
|
1381
|
+
exports.ActionElement$ = [4, n1, _AE,
|
|
1382
|
+
0,
|
|
1383
|
+
[_bu],
|
|
1384
|
+
[() => exports.ButtonElement$]
|
|
1385
|
+
];
|
|
1386
|
+
exports.AssignChannelAssigneeRequest$ = [4, n1, _ACAR,
|
|
1387
|
+
0,
|
|
1388
|
+
[_i, _em],
|
|
1389
|
+
[0, 0]
|
|
1390
|
+
];
|
|
1391
|
+
exports.AssignChannelServiceRequest$ = [4, n1, _ACSR,
|
|
1392
|
+
0,
|
|
1393
|
+
[_ur],
|
|
1394
|
+
[0]
|
|
1395
|
+
];
|
|
1396
|
+
exports.ButtonHandler$ = [4, n1, _BH,
|
|
1397
|
+
0,
|
|
1398
|
+
[_li, _rep, _act],
|
|
1399
|
+
[() => exports.ButtonLinkHandler$, () => exports.ButtonReplyHandler$, () => exports.ButtonActionHandler$]
|
|
1400
|
+
];
|
|
1401
|
+
exports.Element$ = [4, n1, _E,
|
|
1402
|
+
0,
|
|
1403
|
+
[_tem, _acti],
|
|
1404
|
+
[() => exports.MessageTemplateConfig$, () => ActionsElementsList]
|
|
1405
|
+
];
|
|
1406
|
+
exports.SystemMessage$ = [4, n1, _SM,
|
|
1407
|
+
0,
|
|
1408
|
+
[_wAC, _mMJ],
|
|
1409
|
+
[() => exports.WhatsAppClosedSystemMessage$, () => exports.MultipleMembersJoinedSystemMessage$]
|
|
1410
|
+
];
|
|
1411
|
+
exports.AddChannelMember$ = [9, n1, _ACM,
|
|
1412
|
+
{ [_ht]: ["POST", "/api/v1/channels/{channelId}/members", 200] }, () => exports.AddChannelMemberInput$, () => exports.AddChannelMemberOutput$
|
|
1413
|
+
];
|
|
1414
|
+
exports.AddChannelMembers$ = [9, n1, _ACMd,
|
|
1415
|
+
{ [_ht]: ["PUT", "/api/v1/channels/{channelId}/members", 200] }, () => exports.AddChannelMembersInput$, () => exports.AddChannelMembersOutput$
|
|
1416
|
+
];
|
|
1417
|
+
exports.AssignChannel$ = [9, n1, _AC,
|
|
1418
|
+
{ [_ht]: ["POST", "/api/v1/channels/{channelId}/assign", 200] }, () => exports.AssignChannelInput$, () => exports.AssignChannelOutput$
|
|
1419
|
+
];
|
|
1420
|
+
exports.CreateGroupChannel$ = [9, n1, _CGC,
|
|
1421
|
+
{ [_ht]: ["POST", "/api/v1/channels/group", 200] }, () => exports.CreateGroupChannelInput$, () => exports.CreateGroupChannelOutput$
|
|
1422
|
+
];
|
|
1423
|
+
exports.CreateKiteChannel$ = [9, n1, _CKC,
|
|
1424
|
+
{ [_ht]: ["POST", "/api/v1/channels/kite", 200] }, () => exports.CreateKiteChannelInput$, () => exports.CreateKiteChannelOutput$
|
|
1425
|
+
];
|
|
1426
|
+
exports.CreateSection$ = [9, n1, _CS,
|
|
1427
|
+
{ [_ht]: ["POST", "/api/v1/sections", 200] }, () => exports.CreateSectionInput$, () => exports.CreateSectionOutput$
|
|
1428
|
+
];
|
|
1429
|
+
exports.DeleteChannel$ = [9, n1, _DC,
|
|
1430
|
+
{ [_ht]: ["DELETE", "/api/v1/channels/{channelId}", 204] }, () => exports.DeleteChannelInput$, () => exports.DeleteChannelOutput$
|
|
1431
|
+
];
|
|
1432
|
+
exports.DeleteChannelMember$ = [9, n1, _DCM,
|
|
1433
|
+
{ [_ht]: ["DELETE", "/api/v1/channels/{channelId}/members/{memberId}", 204] }, () => exports.DeleteChannelMemberInput$, () => exports.DeleteChannelMemberOutput$
|
|
1434
|
+
];
|
|
1435
|
+
exports.DeleteMessage$ = [9, n1, _DM,
|
|
1436
|
+
{ [_ht]: ["DELETE", "/api/v1/channels/{channelId}/messages/{messageId}", 204] }, () => exports.DeleteMessageInput$, () => exports.DeleteMessageOutput$
|
|
1437
|
+
];
|
|
1438
|
+
exports.DeleteMessageReaction$ = [9, n1, _DMR,
|
|
1439
|
+
{ [_ht]: ["DELETE", "/api/v1/channels/{channelId}/messages/{messageId}/reactions/{type}", 200] }, () => exports.DeleteMessageReactionInput$, () => exports.DeleteMessageReactionOutput$
|
|
1440
|
+
];
|
|
1441
|
+
exports.DeleteSection$ = [9, n1, _DS,
|
|
1442
|
+
{ [_ht]: ["DELETE", "/api/v1/sections/{sectionId}", 204] }, () => exports.DeleteSectionInput$, () => exports.DeleteSectionOutput$
|
|
1443
|
+
];
|
|
1444
|
+
exports.GetChannel$ = [9, n1, _GC,
|
|
1445
|
+
{ [_ht]: ["GET", "/api/v1/channels/{channelId}", 200] }, () => exports.GetChannelInput$, () => exports.GetChannelOutput$
|
|
1446
|
+
];
|
|
1447
|
+
exports.GetChannelMember$ = [9, n1, _GCM,
|
|
1448
|
+
{ [_ht]: ["GET", "/api/v1/channels/{channelId}/members/{memberId}", 200] }, () => exports.GetChannelMemberInput$, () => exports.GetChannelMemberOutput$
|
|
1449
|
+
];
|
|
1450
|
+
exports.GetDirectChannelId$ = [9, n1, _GDCI,
|
|
1451
|
+
{ [_ht]: ["POST", "/api/v1/channels/direct/resolve-id", 200] }, () => exports.GetDirectChannelIdInput$, () => exports.GetDirectChannelIdOutput$
|
|
1452
|
+
];
|
|
1453
|
+
exports.GetFilePresignedDownloadUrl$ = [9, n1, _GFPDU,
|
|
1454
|
+
{ [_ht]: ["GET", "/api/v1/channels/{channelId}/messages/{messageId}/files/{fsId}/download-url", 200] }, () => exports.GetFilePresignedDownloadUrlInput$, () => exports.GetFilePresignedDownloadUrlOutput$
|
|
1455
|
+
];
|
|
1456
|
+
exports.GetInbox$ = [9, n1, _GI,
|
|
1457
|
+
{ [_ht]: ["GET", "/api/v1/inbox", 200] }, () => exports.GetInboxInput$, () => exports.GetInboxOutput$
|
|
1458
|
+
];
|
|
1459
|
+
exports.GetMessage$ = [9, n1, _GM,
|
|
1460
|
+
{ [_ht]: ["GET", "/api/v1/channels/{channelId}/messages/{messageId}", 200] }, () => exports.GetMessageInput$, () => exports.GetMessageOutput$
|
|
1461
|
+
];
|
|
1462
|
+
exports.GetOrCreateDirectChannel$ = [9, n1, _GOCDC,
|
|
1463
|
+
{ [_ht]: ["POST", "/api/v1/channels/direct/get-or-create", 200] }, () => exports.GetOrCreateDirectChannelInput$, () => exports.GetOrCreateDirectChannelOutput$
|
|
1464
|
+
];
|
|
1465
|
+
exports.GetOrCreateSmsChannel$ = [9, n1, _GOCSC,
|
|
1466
|
+
{ [_ht]: ["POST", "/api/v1/channels/sms/get-or-create", 200] }, () => exports.GetOrCreateSmsChannelInput$, () => exports.GetOrCreateSmsChannelOutput$
|
|
1467
|
+
];
|
|
1468
|
+
exports.GetOrCreateTelephonyChannel$ = [9, n1, _GOCTC,
|
|
1469
|
+
{ [_ht]: ["POST", "/api/v1/channels/telephony/get-or-create", 200] }, () => exports.GetOrCreateTelephonyChannelInput$, () => exports.GetOrCreateTelephonyChannelOutput$
|
|
1470
|
+
];
|
|
1471
|
+
exports.GetOrCreateWhatsAppChannel$ = [9, n1, _GOCWAC,
|
|
1472
|
+
{ [_ht]: ["POST", "/api/v1/channels/whatsapp/get-or-create", 200] }, () => exports.GetOrCreateWhatsAppChannelInput$, () => exports.GetOrCreateWhatsAppChannelOutput$
|
|
1473
|
+
];
|
|
1474
|
+
exports.GetSmsChannelId$ = [9, n1, _GSCI,
|
|
1475
|
+
{ [_ht]: ["POST", "/api/v1/channels/sms/resolve-id", 200] }, () => exports.GetSmsChannelIdInput$, () => exports.GetSmsChannelIdOutput$
|
|
1476
|
+
];
|
|
1477
|
+
exports.GetTelephonyChannelId$ = [9, n1, _GTCI,
|
|
1478
|
+
{ [_ht]: ["POST", "/api/v1/channels/telephony/resolve-id", 200] }, () => exports.GetTelephonyChannelIdInput$, () => exports.GetTelephonyChannelIdOutput$
|
|
1479
|
+
];
|
|
1480
|
+
exports.GetToken$ = [9, n1, _GT,
|
|
1481
|
+
{ [_ht]: ["GET", "/api/v1/token", 200] }, () => exports.GetTokenInput$, () => exports.GetTokenOutput$
|
|
1482
|
+
];
|
|
1483
|
+
exports.GetUploadedFileInfo$ = [9, n1, _GUFI,
|
|
1484
|
+
{ [_ht]: ["GET", "/api/v1/channels/{channelId}/files/{fsId}", 200] }, () => exports.GetUploadedFileInfoInput$, () => exports.GetUploadedFileInfoOutput$
|
|
1485
|
+
];
|
|
1486
|
+
exports.GetWhatsAppChannelId$ = [9, n1, _GWACI,
|
|
1487
|
+
{ [_ht]: ["POST", "/api/v1/channels/whatsapp/resolve-id", 200] }, () => exports.GetWhatsAppChannelIdInput$, () => exports.GetWhatsAppChannelIdOutput$
|
|
1488
|
+
];
|
|
1489
|
+
exports.HideChannel$ = [9, n1, _HC,
|
|
1490
|
+
{ [_ht]: ["POST", "/api/v1/channels/{channelId}/hide", 204] }, () => exports.HideChannelInput$, () => exports.HideChannelOutput$
|
|
1491
|
+
];
|
|
1492
|
+
exports.JoinChannel$ = [9, n1, _JC,
|
|
1493
|
+
{ [_ht]: ["POST", "/api/v1/channels/{channelId}/join", 200] }, () => exports.JoinChannelInput$, () => exports.JoinChannelOutput$
|
|
1494
|
+
];
|
|
1495
|
+
exports.LeaveChannel$ = [9, n1, _LC,
|
|
1496
|
+
{ [_ht]: ["POST", "/api/v1/channels/{channelId}/leave", 200] }, () => exports.LeaveChannelInput$, () => exports.LeaveChannelOutput$
|
|
1497
|
+
];
|
|
1498
|
+
exports.ListChannelMembers$ = [9, n1, _LCM,
|
|
1499
|
+
{ [_ht]: ["GET", "/api/v1/channels/{channelId}/members", 200] }, () => exports.ListChannelMembersInput$, () => exports.ListChannelMembersOutput$
|
|
1500
|
+
];
|
|
1501
|
+
exports.ListChannelMembersReadStatus$ = [9, n1, _LCMRS,
|
|
1502
|
+
{ [_ht]: ["GET", "/api/v1/channels/{channelId}/read-status", 200] }, () => exports.ListChannelMembersReadStatusInput$, () => exports.ListChannelMembersReadStatusOutput$
|
|
1503
|
+
];
|
|
1504
|
+
exports.ListChannels$ = [9, n1, _LCi,
|
|
1505
|
+
{ [_ht]: ["GET", "/api/v1/channels", 200] }, () => exports.ListChannelsInput$, () => exports.ListChannelsOutput$
|
|
1506
|
+
];
|
|
1507
|
+
exports.ListMentions$ = [9, n1, _LM,
|
|
1508
|
+
{ [_ht]: ["GET", "/api/v1/mentions", 200] }, () => exports.ListMentionsInput$, () => exports.ListMentionsOutput$
|
|
1509
|
+
];
|
|
1510
|
+
exports.ListMessages$ = [9, n1, _LMi,
|
|
1511
|
+
{ [_ht]: ["GET", "/api/v1/channels/{channelId}/messages", 200] }, () => exports.ListMessagesInput$, () => exports.ListMessagesOutput$
|
|
1512
|
+
];
|
|
1513
|
+
exports.MarkRead$ = [9, n1, _MR,
|
|
1514
|
+
{ [_ht]: ["POST", "/api/v1/channels/{channelId}/read", 200] }, () => exports.MarkReadInput$, () => exports.MarkReadOutput$
|
|
1515
|
+
];
|
|
1516
|
+
exports.MarkUnread$ = [9, n1, _MU,
|
|
1517
|
+
{ [_ht]: ["PUT", "/api/v1/channels/{channelId}/unread", 200] }, () => exports.MarkUnreadInput$, () => exports.MarkUnreadOutput$
|
|
1518
|
+
];
|
|
1519
|
+
exports.MoveChannelToSection$ = [9, n1, _MCTS,
|
|
1520
|
+
{ [_ht]: ["PUT", "/api/v1/channels/{channelId}/sections/{sectionId}", 200] }, () => exports.MoveChannelToSectionInput$, () => exports.MoveChannelToSectionOutput$
|
|
1521
|
+
];
|
|
1522
|
+
exports.MuteChannel$ = [9, n1, _MC,
|
|
1523
|
+
{ [_ht]: ["POST", "/api/v1/channels/{channelId}/mute", 200] }, () => exports.MuteChannelInput$, () => exports.MuteChannelOutput$
|
|
1524
|
+
];
|
|
1525
|
+
exports.PartialUpdateChannel$ = [9, n1, _PUC,
|
|
1526
|
+
{ [_ht]: ["PATCH", "/api/v1/channels/{channelId}", 200] }, () => exports.PartialUpdateChannelInput$, () => exports.PartialUpdateChannelOutput$
|
|
1527
|
+
];
|
|
1528
|
+
exports.PartialUpdateMessage$ = [9, n1, _PUM,
|
|
1529
|
+
{ [_ht]: ["PATCH", "/api/v1/channels/{channelId}/messages/{messageId}", 200] }, () => exports.PartialUpdateMessageInput$, () => exports.PartialUpdateMessageOutput$
|
|
1530
|
+
];
|
|
1531
|
+
exports.PinChannel$ = [9, n1, _PC,
|
|
1532
|
+
{ [_ht]: ["POST", "/api/v1/channels/{channelId}/pin", 200] }, () => exports.PinChannelInput$, () => exports.PinChannelOutput$
|
|
1533
|
+
];
|
|
1534
|
+
exports.PinMessage$ = [9, n1, _PM,
|
|
1535
|
+
{ [_ht]: ["PUT", "/api/v1/channels/{channelId}/messages/{messageId}/pin", 200] }, () => exports.PinMessageInput$, () => exports.PinMessageOutput$
|
|
1536
|
+
];
|
|
1537
|
+
exports.QueryChannels$ = [9, n1, _QC,
|
|
1538
|
+
{ [_ht]: ["POST", "/api/v1/channels/query", 200] }, () => exports.QueryChannelsInput$, () => exports.QueryChannelsOutput$
|
|
1539
|
+
];
|
|
1540
|
+
exports.RemoveChannelFromSection$ = [9, n1, _RCFS,
|
|
1541
|
+
{ [_ht]: ["DELETE", "/api/v1/channels/{channelId}/sections/{sectionId}", 204] }, () => exports.RemoveChannelFromSectionInput$, () => exports.RemoveChannelFromSectionOutput$
|
|
1542
|
+
];
|
|
1543
|
+
exports.RenameSection$ = [9, n1, _RS,
|
|
1544
|
+
{ [_ht]: ["PATCH", "/api/v1/sections/{sectionId}", 200] }, () => exports.RenameSectionInput$, () => exports.RenameSectionOutput$
|
|
1545
|
+
];
|
|
1546
|
+
exports.SendGiphy$ = [9, n1, _SG,
|
|
1547
|
+
{ [_ht]: ["POST", "/api/v1/channels/{channelId}/giphys", 200] }, () => exports.SendGiphyInput$, () => exports.SendGiphyOutput$
|
|
1548
|
+
];
|
|
1549
|
+
exports.SendMessage$ = [9, n1, _SMe,
|
|
1550
|
+
{ [_ht]: ["POST", "/api/v1/channels/{channelId}/messages", 200] }, () => exports.SendMessageInput$, () => exports.SendMessageOutput$
|
|
1551
|
+
];
|
|
1552
|
+
exports.SendMessageReaction$ = [9, n1, _SMR,
|
|
1553
|
+
{ [_ht]: ["PUT", "/api/v1/channels/{channelId}/messages/{messageId}/reactions/{type}", 200] }, () => exports.SendMessageReactionInput$, () => exports.SendMessageReactionOutput$
|
|
1554
|
+
];
|
|
1555
|
+
exports.SendSystemMessage$ = [9, n1, _SSM,
|
|
1556
|
+
{ [_ht]: ["POST", "/api/v1/channels/{channelId}/system-messages", 200] }, () => exports.SendSystemMessageInput$, () => exports.SendSystemMessageOutput$
|
|
1557
|
+
];
|
|
1558
|
+
exports.SendTypingStart$ = [9, n1, _STS,
|
|
1559
|
+
{ [_ht]: ["POST", "/api/v1/channels/{channelId}/typing/start", 200] }, () => exports.SendTypingStartInput$, () => exports.SendTypingStartOutput$
|
|
1560
|
+
];
|
|
1561
|
+
exports.SendTypingStop$ = [9, n1, _STSe,
|
|
1562
|
+
{ [_ht]: ["POST", "/api/v1/channels/{channelId}/typing/stop", 200] }, () => exports.SendTypingStopInput$, () => exports.SendTypingStopOutput$
|
|
1563
|
+
];
|
|
1564
|
+
exports.ShowChannel$ = [9, n1, _SC,
|
|
1565
|
+
{ [_ht]: ["POST", "/api/v1/channels/{channelId}/show", 204] }, () => exports.ShowChannelInput$, () => exports.ShowChannelOutput$
|
|
1566
|
+
];
|
|
1567
|
+
exports.UnmuteChannel$ = [9, n1, _UC,
|
|
1568
|
+
{ [_ht]: ["DELETE", "/api/v1/channels/{channelId}/mute", 204] }, () => exports.UnmuteChannelInput$, () => exports.UnmuteChannelOutput$
|
|
1569
|
+
];
|
|
1570
|
+
exports.UnpinChannel$ = [9, n1, _UCn,
|
|
1571
|
+
{ [_ht]: ["DELETE", "/api/v1/channels/{channelId}/pin", 204] }, () => exports.UnpinChannelInput$, () => exports.UnpinChannelOutput$
|
|
1572
|
+
];
|
|
1573
|
+
exports.UnpinMessage$ = [9, n1, _UM,
|
|
1574
|
+
{ [_ht]: ["DELETE", "/api/v1/channels/{channelId}/messages/{messageId}/pin", 200] }, () => exports.UnpinMessageInput$, () => exports.UnpinMessageOutput$
|
|
1575
|
+
];
|
|
1576
|
+
exports.UpdateChannel$ = [9, n1, _UCp,
|
|
1577
|
+
{ [_ht]: ["PUT", "/api/v1/channels/{channelId}", 200] }, () => exports.UpdateChannelInput$, () => exports.UpdateChannelOutput$
|
|
1578
|
+
];
|
|
1579
|
+
exports.UpdateMessage$ = [9, n1, _UMp,
|
|
1580
|
+
{ [_ht]: ["PUT", "/api/v1/channels/{channelId}/messages/{messageId}", 200] }, () => exports.UpdateMessageInput$, () => exports.UpdateMessageOutput$
|
|
1581
|
+
];
|
|
1582
|
+
exports.UploadFile$ = [9, n1, _UF,
|
|
1583
|
+
{ [_ht]: ["POST", "/api/v1/channels/{channelId}/files", 200] }, () => exports.UploadFileInput$, () => exports.UploadFileOutput$
|
|
1584
|
+
];
|