intercom-client 6.4.0 → 7.0.1
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 +95 -29
- package/dist/cjs/BaseClient.d.ts +44 -0
- package/dist/cjs/BaseClient.js +64 -0
- package/dist/cjs/Client.d.ts +102 -0
- package/dist/cjs/Client.js +161 -0
- package/dist/cjs/api/errors/BadRequestError.d.ts +5 -0
- package/dist/cjs/api/errors/BadRequestError.js +50 -0
- package/dist/cjs/api/errors/ForbiddenError.d.ts +6 -0
- package/dist/cjs/api/errors/ForbiddenError.js +50 -0
- package/dist/cjs/api/errors/NotFoundError.d.ts +5 -0
- package/dist/cjs/api/errors/NotFoundError.js +50 -0
- package/dist/cjs/api/errors/TooManyRequestsError.d.ts +6 -0
- package/dist/cjs/api/errors/TooManyRequestsError.js +50 -0
- package/dist/cjs/api/errors/UnauthorizedError.d.ts +6 -0
- package/dist/cjs/api/errors/UnauthorizedError.js +50 -0
- package/dist/cjs/api/errors/UnprocessableEntityError.d.ts +5 -0
- package/dist/cjs/api/errors/UnprocessableEntityError.js +50 -0
- package/dist/cjs/api/errors/index.d.ts +6 -0
- package/dist/cjs/api/errors/index.js +22 -0
- package/dist/cjs/api/index.d.ts +4 -0
- package/dist/cjs/api/index.js +19 -0
- package/dist/cjs/api/resources/admins/client/Client.d.ts +103 -0
- package/dist/cjs/api/resources/admins/client/Client.js +346 -0
- package/dist/cjs/api/resources/admins/client/index.d.ts +1 -0
- package/dist/cjs/api/resources/admins/client/index.js +17 -0
- package/dist/cjs/api/resources/admins/client/requests/ConfigureAwayAdminRequest.d.ts +33 -0
- package/dist/cjs/api/resources/admins/client/requests/ConfigureAwayAdminRequest.js +3 -0
- package/dist/cjs/api/resources/admins/client/requests/FindAdminRequest.d.ts +10 -0
- package/dist/cjs/api/resources/admins/client/requests/FindAdminRequest.js +3 -0
- package/dist/cjs/api/resources/admins/client/requests/ListAllActivityLogsRequest.d.ts +13 -0
- package/dist/cjs/api/resources/admins/client/requests/ListAllActivityLogsRequest.js +3 -0
- package/dist/cjs/api/resources/admins/client/requests/index.d.ts +3 -0
- package/dist/cjs/api/resources/admins/index.d.ts +2 -0
- package/dist/cjs/api/resources/admins/index.js +18 -0
- package/dist/cjs/api/resources/admins/types/Admin.d.ts +38 -0
- package/dist/cjs/api/resources/admins/types/Admin.js +3 -0
- package/dist/cjs/api/resources/admins/types/index.d.ts +1 -0
- package/dist/cjs/api/resources/admins/types/index.js +17 -0
- package/dist/cjs/api/resources/aiAgent/index.d.ts +1 -0
- package/dist/cjs/api/resources/aiAgent/index.js +17 -0
- package/dist/cjs/api/resources/aiAgent/types/AiAgent.d.ts +48 -0
- package/dist/cjs/api/resources/aiAgent/types/AiAgent.js +27 -0
- package/dist/cjs/api/resources/aiAgent/types/index.d.ts +1 -0
- package/dist/cjs/api/resources/aiAgent/types/index.js +17 -0
- package/dist/cjs/api/resources/aiContent/client/Client.d.ts +182 -0
- package/dist/cjs/api/resources/aiContent/client/Client.js +606 -0
- package/dist/cjs/api/resources/aiContent/client/index.d.ts +1 -0
- package/dist/cjs/api/resources/aiContent/client/index.js +17 -0
- package/dist/cjs/api/resources/aiContent/client/requests/CreateContentImportSourceRequest.d.ts +20 -0
- package/dist/cjs/api/resources/aiContent/client/requests/CreateContentImportSourceRequest.js +12 -0
- package/dist/cjs/api/resources/aiContent/client/requests/CreateExternalPageRequest.d.ts +26 -0
- package/dist/cjs/api/resources/aiContent/client/requests/CreateExternalPageRequest.js +3 -0
- package/dist/cjs/api/resources/aiContent/client/requests/DeleteContentImportSourceRequest.d.ts +10 -0
- package/dist/cjs/api/resources/aiContent/client/requests/DeleteContentImportSourceRequest.js +3 -0
- package/dist/cjs/api/resources/aiContent/client/requests/DeleteExternalPageRequest.d.ts +10 -0
- package/dist/cjs/api/resources/aiContent/client/requests/DeleteExternalPageRequest.js +3 -0
- package/dist/cjs/api/resources/aiContent/client/requests/GetContentImportSourceRequest.d.ts +10 -0
- package/dist/cjs/api/resources/aiContent/client/requests/GetContentImportSourceRequest.js +3 -0
- package/dist/cjs/api/resources/aiContent/client/requests/GetExternalPageRequest.d.ts +10 -0
- package/dist/cjs/api/resources/aiContent/client/requests/GetExternalPageRequest.js +3 -0
- package/dist/cjs/api/resources/aiContent/client/requests/UpdateContentImportSourceRequest.d.ts +33 -0
- package/dist/cjs/api/resources/aiContent/client/requests/UpdateContentImportSourceRequest.js +18 -0
- package/dist/cjs/api/resources/aiContent/client/requests/UpdateExternalPageRequest.d.ts +27 -0
- package/dist/cjs/api/resources/aiContent/client/requests/UpdateExternalPageRequest.js +3 -0
- package/dist/cjs/api/resources/aiContent/client/requests/index.d.ts +8 -0
- package/dist/cjs/api/resources/aiContent/index.d.ts +2 -0
- package/dist/cjs/api/resources/aiContent/index.js +18 -0
- package/dist/cjs/api/resources/aiContent/types/ContentImportSource.d.ts +36 -0
- package/dist/cjs/api/resources/aiContent/types/ContentImportSource.js +18 -0
- package/dist/cjs/api/resources/aiContent/types/ContentImportSourcesList.d.ts +13 -0
- package/dist/cjs/api/resources/aiContent/types/ContentImportSourcesList.js +3 -0
- package/dist/cjs/api/resources/aiContent/types/ExternalPage.d.ts +33 -0
- package/dist/cjs/api/resources/aiContent/types/ExternalPage.js +3 -0
- package/dist/cjs/api/resources/aiContent/types/ExternalPagesList.d.ts +13 -0
- package/dist/cjs/api/resources/aiContent/types/ExternalPagesList.js +3 -0
- package/dist/cjs/api/resources/aiContent/types/index.d.ts +4 -0
- package/dist/cjs/api/resources/aiContent/types/index.js +20 -0
- package/dist/cjs/api/resources/aiContentSource/index.d.ts +1 -0
- package/dist/cjs/api/resources/aiContentSource/index.js +17 -0
- package/dist/cjs/api/resources/aiContentSource/types/ContentSource.d.ts +13 -0
- package/dist/cjs/api/resources/aiContentSource/types/ContentSource.js +3 -0
- package/dist/cjs/api/resources/aiContentSource/types/index.d.ts +1 -0
- package/dist/cjs/api/resources/aiContentSource/types/index.js +17 -0
- package/dist/cjs/api/resources/articles/client/Client.d.ts +141 -0
- package/dist/cjs/api/resources/articles/client/Client.js +458 -0
- package/dist/cjs/api/resources/articles/client/index.d.ts +1 -0
- package/dist/cjs/api/resources/articles/client/index.js +17 -0
- package/dist/cjs/api/resources/articles/client/requests/DeleteArticleRequest.d.ts +10 -0
- package/dist/cjs/api/resources/articles/client/requests/DeleteArticleRequest.js +3 -0
- package/dist/cjs/api/resources/articles/client/requests/FindArticleRequest.d.ts +10 -0
- package/dist/cjs/api/resources/articles/client/requests/FindArticleRequest.js +3 -0
- package/dist/cjs/api/resources/articles/client/requests/ListArticlesRequest.d.ts +10 -0
- package/dist/cjs/api/resources/articles/client/requests/ListArticlesRequest.js +3 -0
- package/dist/cjs/api/resources/articles/client/requests/SearchArticlesRequest.d.ts +19 -0
- package/dist/cjs/api/resources/articles/client/requests/SearchArticlesRequest.js +3 -0
- package/dist/cjs/api/resources/articles/client/requests/UpdateArticleRequest.d.ts +43 -0
- package/dist/cjs/api/resources/articles/client/requests/UpdateArticleRequest.js +12 -0
- package/dist/cjs/api/resources/articles/client/requests/index.d.ts +5 -0
- package/dist/cjs/api/resources/articles/index.d.ts +2 -0
- package/dist/cjs/api/resources/articles/index.js +18 -0
- package/dist/cjs/api/resources/articles/types/Article.d.ts +7 -0
- package/dist/cjs/api/resources/articles/types/Article.js +3 -0
- package/dist/cjs/api/resources/articles/types/ArticleListItem.d.ts +45 -0
- package/dist/cjs/api/resources/articles/types/ArticleListItem.js +12 -0
- package/dist/cjs/api/resources/articles/types/ArticleSearchHighlights.d.ts +53 -0
- package/dist/cjs/api/resources/articles/types/ArticleSearchHighlights.js +29 -0
- package/dist/cjs/api/resources/articles/types/ArticleSearchResponse.d.ts +24 -0
- package/dist/cjs/api/resources/articles/types/ArticleSearchResponse.js +3 -0
- package/dist/cjs/api/resources/articles/types/InternalArticle.d.ts +5 -0
- package/dist/cjs/api/resources/articles/types/InternalArticle.js +3 -0
- package/dist/cjs/api/resources/articles/types/index.d.ts +5 -0
- package/dist/cjs/api/resources/articles/types/index.js +21 -0
- package/dist/cjs/api/resources/awayStatusReasons/client/Client.d.ts +29 -0
- package/dist/cjs/api/resources/awayStatusReasons/client/Client.js +109 -0
- package/dist/cjs/api/resources/awayStatusReasons/index.d.ts +1 -0
- package/dist/cjs/api/resources/awayStatusReasons/index.js +17 -0
- package/dist/cjs/api/resources/calls/client/Client.d.ts +97 -0
- package/dist/cjs/api/resources/calls/client/Client.js +341 -0
- package/dist/cjs/api/resources/calls/client/index.d.ts +1 -0
- package/dist/cjs/api/resources/calls/client/index.js +17 -0
- package/dist/cjs/api/resources/calls/client/requests/ListCallsRequest.d.ts +13 -0
- package/dist/cjs/api/resources/calls/client/requests/ListCallsRequest.js +3 -0
- package/dist/cjs/api/resources/calls/client/requests/ListCallsWithTranscriptsRequest.d.ts +10 -0
- package/dist/cjs/api/resources/calls/client/requests/ListCallsWithTranscriptsRequest.js +3 -0
- package/dist/cjs/api/resources/calls/client/requests/ShowCallRecordingRequest.d.ts +10 -0
- package/dist/cjs/api/resources/calls/client/requests/ShowCallRecordingRequest.js +3 -0
- package/dist/cjs/api/resources/calls/client/requests/ShowCallRequest.d.ts +10 -0
- package/dist/cjs/api/resources/calls/client/requests/ShowCallRequest.js +3 -0
- package/dist/cjs/api/resources/calls/client/requests/ShowCallTranscriptRequest.d.ts +10 -0
- package/dist/cjs/api/resources/calls/client/requests/ShowCallTranscriptRequest.js +3 -0
- package/dist/cjs/api/resources/calls/client/requests/index.d.ts +5 -0
- package/dist/cjs/api/resources/calls/index.d.ts +2 -0
- package/dist/cjs/api/resources/calls/index.js +18 -0
- package/dist/cjs/api/resources/calls/types/Call.d.ts +39 -0
- package/dist/cjs/api/resources/calls/types/Call.js +3 -0
- package/dist/cjs/api/resources/calls/types/ListCallsWithTranscriptsResponse.d.ts +16 -0
- package/dist/cjs/api/resources/calls/types/ListCallsWithTranscriptsResponse.js +3 -0
- package/dist/cjs/api/resources/calls/types/index.d.ts +2 -0
- package/dist/cjs/api/resources/calls/types/index.js +18 -0
- package/dist/cjs/api/resources/companies/client/Client.d.ts +270 -0
- package/dist/cjs/api/resources/companies/client/Client.js +809 -0
- package/dist/cjs/api/resources/companies/client/index.d.ts +1 -0
- package/dist/cjs/api/resources/companies/client/index.js +17 -0
- package/dist/cjs/api/resources/companies/client/requests/AttachContactToCompanyRequest.d.ts +25 -0
- package/dist/cjs/api/resources/companies/client/requests/AttachContactToCompanyRequest.js +3 -0
- package/dist/cjs/api/resources/companies/client/requests/DeleteCompanyRequest.d.ts +10 -0
- package/dist/cjs/api/resources/companies/client/requests/DeleteCompanyRequest.js +3 -0
- package/dist/cjs/api/resources/companies/client/requests/DetachContactFromCompanyRequest.d.ts +13 -0
- package/dist/cjs/api/resources/companies/client/requests/DetachContactFromCompanyRequest.js +3 -0
- package/dist/cjs/api/resources/companies/client/requests/FindCompanyRequest.d.ts +10 -0
- package/dist/cjs/api/resources/companies/client/requests/FindCompanyRequest.js +3 -0
- package/dist/cjs/api/resources/companies/client/requests/ListAttachedContactsRequest.d.ts +10 -0
- package/dist/cjs/api/resources/companies/client/requests/ListAttachedContactsRequest.js +3 -0
- package/dist/cjs/api/resources/companies/client/requests/ListCompaniesRequest.d.ts +16 -0
- package/dist/cjs/api/resources/companies/client/requests/ListCompaniesRequest.js +3 -0
- package/dist/cjs/api/resources/companies/client/requests/ListSegmentsAttachedToCompanyRequest.d.ts +10 -0
- package/dist/cjs/api/resources/companies/client/requests/ListSegmentsAttachedToCompanyRequest.js +3 -0
- package/dist/cjs/api/resources/companies/client/requests/RetrieveCompanyRequest.d.ts +25 -0
- package/dist/cjs/api/resources/companies/client/requests/RetrieveCompanyRequest.js +3 -0
- package/dist/cjs/api/resources/companies/client/requests/ScrollCompaniesRequest.d.ts +10 -0
- package/dist/cjs/api/resources/companies/client/requests/ScrollCompaniesRequest.js +3 -0
- package/dist/cjs/api/resources/companies/client/requests/UpdateCompanyRequest.d.ts +22 -0
- package/dist/cjs/api/resources/companies/client/requests/UpdateCompanyRequest.js +3 -0
- package/dist/cjs/api/resources/companies/client/requests/index.d.ts +10 -0
- package/dist/cjs/api/resources/companies/index.d.ts +2 -0
- package/dist/cjs/api/resources/companies/index.js +18 -0
- package/dist/cjs/api/resources/companies/types/CompaniesRetrieveResponse.d.ts +10 -0
- package/dist/cjs/api/resources/companies/types/CompaniesRetrieveResponse.js +3 -0
- package/dist/cjs/api/resources/companies/types/Company.d.ts +69 -0
- package/dist/cjs/api/resources/companies/types/Company.js +3 -0
- package/dist/cjs/api/resources/companies/types/index.d.ts +2 -0
- package/dist/cjs/api/resources/companies/types/index.js +18 -0
- package/dist/cjs/api/resources/contacts/client/Client.d.ts +422 -0
- package/dist/cjs/api/resources/contacts/client/Client.js +1169 -0
- package/dist/cjs/api/resources/contacts/client/index.d.ts +1 -0
- package/dist/cjs/api/resources/contacts/client/index.js +17 -0
- package/dist/cjs/api/resources/contacts/client/requests/ArchiveContactRequest.d.ts +10 -0
- package/dist/cjs/api/resources/contacts/client/requests/ArchiveContactRequest.js +3 -0
- package/dist/cjs/api/resources/contacts/client/requests/AttachSubscriptionToContactRequest.d.ts +30 -0
- package/dist/cjs/api/resources/contacts/client/requests/AttachSubscriptionToContactRequest.js +3 -0
- package/dist/cjs/api/resources/contacts/client/requests/BlockContactRequest.d.ts +10 -0
- package/dist/cjs/api/resources/contacts/client/requests/BlockContactRequest.js +3 -0
- package/dist/cjs/api/resources/contacts/client/requests/DeleteContactRequest.d.ts +10 -0
- package/dist/cjs/api/resources/contacts/client/requests/DeleteContactRequest.js +3 -0
- package/dist/cjs/api/resources/contacts/client/requests/DetachSubscriptionFromContactRequest.d.ts +13 -0
- package/dist/cjs/api/resources/contacts/client/requests/DetachSubscriptionFromContactRequest.js +3 -0
- package/dist/cjs/api/resources/contacts/client/requests/FindContactRequest.d.ts +10 -0
- package/dist/cjs/api/resources/contacts/client/requests/FindContactRequest.js +3 -0
- package/dist/cjs/api/resources/contacts/client/requests/ListAttachedCompaniesRequest.d.ts +16 -0
- package/dist/cjs/api/resources/contacts/client/requests/ListAttachedCompaniesRequest.js +3 -0
- package/dist/cjs/api/resources/contacts/client/requests/ListAttachedSubscriptionsRequest.d.ts +10 -0
- package/dist/cjs/api/resources/contacts/client/requests/ListAttachedSubscriptionsRequest.js +3 -0
- package/dist/cjs/api/resources/contacts/client/requests/ListContactsRequest.d.ts +12 -0
- package/dist/cjs/api/resources/contacts/client/requests/ListContactsRequest.js +3 -0
- package/dist/cjs/api/resources/contacts/client/requests/ListSegmentsAttachedToContactRequest.d.ts +10 -0
- package/dist/cjs/api/resources/contacts/client/requests/ListSegmentsAttachedToContactRequest.js +3 -0
- package/dist/cjs/api/resources/contacts/client/requests/ListTagsAttachedToContactRequest.d.ts +10 -0
- package/dist/cjs/api/resources/contacts/client/requests/ListTagsAttachedToContactRequest.js +3 -0
- package/dist/cjs/api/resources/contacts/client/requests/MergeContactsRequest.d.ts +13 -0
- package/dist/cjs/api/resources/contacts/client/requests/MergeContactsRequest.js +3 -0
- package/dist/cjs/api/resources/contacts/client/requests/ShowContactByExternalIdRequest.d.ts +10 -0
- package/dist/cjs/api/resources/contacts/client/requests/ShowContactByExternalIdRequest.js +3 -0
- package/dist/cjs/api/resources/contacts/client/requests/UnarchiveContactRequest.d.ts +10 -0
- package/dist/cjs/api/resources/contacts/client/requests/UnarchiveContactRequest.js +3 -0
- package/dist/cjs/api/resources/contacts/client/requests/UpdateContactRequest.d.ts +44 -0
- package/dist/cjs/api/resources/contacts/client/requests/UpdateContactRequest.js +3 -0
- package/dist/cjs/api/resources/contacts/client/requests/index.d.ts +15 -0
- package/dist/cjs/api/resources/contacts/index.d.ts +2 -0
- package/dist/cjs/api/resources/contacts/index.js +18 -0
- package/dist/cjs/api/resources/contacts/types/Contact.d.ts +91 -0
- package/dist/cjs/api/resources/contacts/types/Contact.js +3 -0
- package/dist/cjs/api/resources/contacts/types/ContactsCreateResponse.d.ts +5 -0
- package/dist/cjs/api/resources/contacts/types/ContactsCreateResponse.js +3 -0
- package/dist/cjs/api/resources/contacts/types/ContactsFindResponse.d.ts +5 -0
- package/dist/cjs/api/resources/contacts/types/ContactsFindResponse.js +3 -0
- package/dist/cjs/api/resources/contacts/types/ContactsMergeLeadInUserResponse.d.ts +5 -0
- package/dist/cjs/api/resources/contacts/types/ContactsMergeLeadInUserResponse.js +3 -0
- package/dist/cjs/api/resources/contacts/types/ContactsUpdateResponse.d.ts +5 -0
- package/dist/cjs/api/resources/contacts/types/ContactsUpdateResponse.js +3 -0
- package/dist/cjs/api/resources/contacts/types/ShowContactByExternalIdResponse.d.ts +5 -0
- package/dist/cjs/api/resources/contacts/types/ShowContactByExternalIdResponse.js +3 -0
- package/dist/cjs/api/resources/contacts/types/index.d.ts +6 -0
- package/dist/cjs/api/resources/contacts/types/index.js +22 -0
- package/dist/cjs/api/resources/conversations/client/Client.d.ts +555 -0
- package/dist/cjs/api/resources/conversations/client/Client.js +1188 -0
- package/dist/cjs/api/resources/conversations/client/index.d.ts +1 -0
- package/dist/cjs/api/resources/conversations/client/index.js +17 -0
- package/dist/cjs/api/resources/conversations/client/requests/AttachContactToConversationRequest.d.ts +39 -0
- package/dist/cjs/api/resources/conversations/client/requests/AttachContactToConversationRequest.js +3 -0
- package/dist/cjs/api/resources/conversations/client/requests/AutoAssignConversationRequest.d.ts +10 -0
- package/dist/cjs/api/resources/conversations/client/requests/AutoAssignConversationRequest.js +3 -0
- package/dist/cjs/api/resources/conversations/client/requests/ConvertConversationToTicketRequest.d.ts +21 -0
- package/dist/cjs/api/resources/conversations/client/requests/ConvertConversationToTicketRequest.js +3 -0
- package/dist/cjs/api/resources/conversations/client/requests/CreateConversationRequest.d.ts +43 -0
- package/dist/cjs/api/resources/conversations/client/requests/CreateConversationRequest.js +16 -0
- package/dist/cjs/api/resources/conversations/client/requests/DeleteConversationRequest.d.ts +10 -0
- package/dist/cjs/api/resources/conversations/client/requests/DeleteConversationRequest.js +3 -0
- package/dist/cjs/api/resources/conversations/client/requests/DetachContactFromConversationRequest.d.ts +37 -0
- package/dist/cjs/api/resources/conversations/client/requests/DetachContactFromConversationRequest.js +3 -0
- package/dist/cjs/api/resources/conversations/client/requests/FindConversationRequest.d.ts +16 -0
- package/dist/cjs/api/resources/conversations/client/requests/FindConversationRequest.js +3 -0
- package/dist/cjs/api/resources/conversations/client/requests/ListConversationsRequest.d.ts +13 -0
- package/dist/cjs/api/resources/conversations/client/requests/ListConversationsRequest.js +3 -0
- package/dist/cjs/api/resources/conversations/client/requests/ManageConversationPartsRequest.d.ts +57 -0
- package/dist/cjs/api/resources/conversations/client/requests/ManageConversationPartsRequest.js +3 -0
- package/dist/cjs/api/resources/conversations/client/requests/ReplyToConversationRequest.d.ts +105 -0
- package/dist/cjs/api/resources/conversations/client/requests/ReplyToConversationRequest.js +3 -0
- package/dist/cjs/api/resources/conversations/client/requests/UpdateConversationRequest.d.ts +48 -0
- package/dist/cjs/api/resources/conversations/client/requests/UpdateConversationRequest.js +3 -0
- package/dist/cjs/api/resources/conversations/client/requests/index.d.ts +11 -0
- package/dist/cjs/api/resources/conversations/index.d.ts +2 -0
- package/dist/cjs/api/resources/conversations/index.js +18 -0
- package/dist/cjs/api/resources/conversations/types/Conversation.d.ts +63 -0
- package/dist/cjs/api/resources/conversations/types/Conversation.js +18 -0
- package/dist/cjs/api/resources/conversations/types/ConversationsManageRequestBody.d.ts +16 -0
- package/dist/cjs/api/resources/conversations/types/ConversationsManageRequestBody.js +3 -0
- package/dist/cjs/api/resources/conversations/types/index.d.ts +2 -0
- package/dist/cjs/api/resources/conversations/types/index.js +18 -0
- package/dist/cjs/api/resources/customChannelEvents/client/Client.d.ts +125 -0
- package/dist/cjs/api/resources/customChannelEvents/client/Client.js +358 -0
- package/dist/cjs/api/resources/customChannelEvents/client/index.d.ts +1 -0
- package/dist/cjs/api/resources/customChannelEvents/client/index.js +17 -0
- package/dist/cjs/api/resources/customChannelEvents/client/requests/NotifyAttributeCollectedRequest.d.ts +19 -0
- package/dist/cjs/api/resources/customChannelEvents/client/requests/NotifyAttributeCollectedRequest.js +3 -0
- package/dist/cjs/api/resources/customChannelEvents/client/requests/NotifyNewMessageRequest.d.ts +17 -0
- package/dist/cjs/api/resources/customChannelEvents/client/requests/NotifyNewMessageRequest.js +3 -0
- package/dist/cjs/api/resources/customChannelEvents/client/requests/NotifyQuickReplySelectedRequest.d.ts +19 -0
- package/dist/cjs/api/resources/customChannelEvents/client/requests/NotifyQuickReplySelectedRequest.js +3 -0
- package/dist/cjs/api/resources/customChannelEvents/client/requests/index.d.ts +3 -0
- package/dist/cjs/api/resources/customChannelEvents/index.d.ts +1 -0
- package/dist/cjs/api/resources/customChannelEvents/index.js +17 -0
- package/dist/cjs/api/resources/customObjectInstances/client/Client.d.ts +111 -0
- package/dist/cjs/api/resources/customObjectInstances/client/Client.js +373 -0
- package/dist/cjs/api/resources/customObjectInstances/client/index.d.ts +1 -0
- package/dist/cjs/api/resources/customObjectInstances/client/index.js +17 -0
- package/dist/cjs/api/resources/customObjectInstances/client/requests/CreateOrUpdateCustomObjectInstanceRequest.d.ts +25 -0
- package/dist/cjs/api/resources/customObjectInstances/client/requests/CreateOrUpdateCustomObjectInstanceRequest.js +3 -0
- package/dist/cjs/api/resources/customObjectInstances/client/requests/DeleteCustomObjectInstancesByExternalIdRequest.d.ts +13 -0
- package/dist/cjs/api/resources/customObjectInstances/client/requests/DeleteCustomObjectInstancesByExternalIdRequest.js +3 -0
- package/dist/cjs/api/resources/customObjectInstances/client/requests/DeleteCustomObjectInstancesByIdRequest.d.ts +12 -0
- package/dist/cjs/api/resources/customObjectInstances/client/requests/DeleteCustomObjectInstancesByIdRequest.js +3 -0
- package/dist/cjs/api/resources/customObjectInstances/client/requests/GetCustomObjectInstancesByExternalIdRequest.d.ts +12 -0
- package/dist/cjs/api/resources/customObjectInstances/client/requests/GetCustomObjectInstancesByExternalIdRequest.js +3 -0
- package/dist/cjs/api/resources/customObjectInstances/client/requests/GetCustomObjectInstancesByIdRequest.d.ts +13 -0
- package/dist/cjs/api/resources/customObjectInstances/client/requests/GetCustomObjectInstancesByIdRequest.js +3 -0
- package/dist/cjs/api/resources/customObjectInstances/client/requests/index.d.ts +5 -0
- package/dist/cjs/api/resources/customObjectInstances/index.d.ts +2 -0
- package/dist/cjs/api/resources/customObjectInstances/index.js +18 -0
- package/dist/cjs/api/resources/customObjectInstances/types/CustomObjectInstance.d.ts +21 -0
- package/dist/cjs/api/resources/customObjectInstances/types/CustomObjectInstance.js +3 -0
- package/dist/cjs/api/resources/customObjectInstances/types/index.d.ts +1 -0
- package/dist/cjs/api/resources/customObjectInstances/types/index.js +17 -0
- package/dist/cjs/api/resources/dataAttributes/client/Client.d.ts +112 -0
- package/dist/cjs/api/resources/dataAttributes/client/Client.js +285 -0
- package/dist/cjs/api/resources/dataAttributes/client/index.d.ts +1 -0
- package/dist/cjs/api/resources/dataAttributes/client/index.js +17 -0
- package/dist/cjs/api/resources/dataAttributes/client/requests/ListDataAttributesRequest.d.ts +14 -0
- package/dist/cjs/api/resources/dataAttributes/client/requests/ListDataAttributesRequest.js +3 -0
- package/dist/cjs/api/resources/dataAttributes/client/requests/UpdateDataAttributeRequest.d.ts +52 -0
- package/dist/cjs/api/resources/dataAttributes/client/requests/UpdateDataAttributeRequest.js +3 -0
- package/dist/cjs/api/resources/dataAttributes/client/requests/index.d.ts +2 -0
- package/dist/cjs/api/resources/dataAttributes/index.d.ts +2 -0
- package/dist/cjs/api/resources/dataAttributes/index.js +18 -0
- package/dist/cjs/api/resources/dataAttributes/types/DataAttribute.d.ts +56 -0
- package/dist/cjs/api/resources/dataAttributes/types/DataAttribute.js +20 -0
- package/dist/cjs/api/resources/dataAttributes/types/DataAttributesListRequestModel.d.ts +6 -0
- package/dist/cjs/api/resources/dataAttributes/types/DataAttributesListRequestModel.js +9 -0
- package/dist/cjs/api/resources/dataAttributes/types/index.d.ts +2 -0
- package/dist/cjs/api/resources/dataAttributes/types/index.js +18 -0
- package/dist/cjs/api/resources/dataEvents/index.d.ts +1 -0
- package/dist/cjs/api/resources/dataEvents/index.js +17 -0
- package/dist/cjs/api/resources/dataEvents/types/DataEvent.d.ts +21 -0
- package/dist/cjs/api/resources/dataEvents/types/DataEvent.js +3 -0
- package/dist/cjs/api/resources/dataEvents/types/index.d.ts +1 -0
- package/dist/cjs/api/resources/dataEvents/types/index.js +17 -0
- package/dist/cjs/api/resources/dataExport/client/Client.d.ts +129 -0
- package/dist/cjs/api/resources/dataExport/client/Client.js +383 -0
- package/dist/cjs/api/resources/dataExport/client/index.d.ts +1 -0
- package/dist/cjs/api/resources/dataExport/client/index.js +17 -0
- package/dist/cjs/api/resources/dataExport/client/requests/CancelDataExportRequest.d.ts +10 -0
- package/dist/cjs/api/resources/dataExport/client/requests/CancelDataExportRequest.js +3 -0
- package/dist/cjs/api/resources/dataExport/client/requests/CreateDataExportRequest.d.ts +13 -0
- package/dist/cjs/api/resources/dataExport/client/requests/CreateDataExportRequest.js +3 -0
- package/dist/cjs/api/resources/dataExport/client/requests/DownloadDataExportRequest.d.ts +10 -0
- package/dist/cjs/api/resources/dataExport/client/requests/DownloadDataExportRequest.js +3 -0
- package/dist/cjs/api/resources/dataExport/client/requests/DownloadReportingDataExportRequest.d.ts +11 -0
- package/dist/cjs/api/resources/dataExport/client/requests/DownloadReportingDataExportRequest.js +3 -0
- package/dist/cjs/api/resources/dataExport/client/requests/ExportReportingDataRequest.d.ts +22 -0
- package/dist/cjs/api/resources/dataExport/client/requests/ExportReportingDataRequest.js +3 -0
- package/dist/cjs/api/resources/dataExport/client/requests/FindDataExportRequest.d.ts +10 -0
- package/dist/cjs/api/resources/dataExport/client/requests/FindDataExportRequest.js +3 -0
- package/dist/cjs/api/resources/dataExport/client/requests/index.d.ts +6 -0
- package/dist/cjs/api/resources/dataExport/index.d.ts +2 -0
- package/dist/cjs/api/resources/dataExport/index.js +18 -0
- package/dist/cjs/api/resources/dataExport/types/DataExport.d.ts +25 -0
- package/dist/cjs/api/resources/dataExport/types/DataExport.js +16 -0
- package/dist/cjs/api/resources/dataExport/types/DataExportExportReportingDataResponse.d.ts +6 -0
- package/dist/cjs/api/resources/dataExport/types/DataExportExportReportingDataResponse.js +3 -0
- package/dist/cjs/api/resources/dataExport/types/index.d.ts +2 -0
- package/dist/cjs/api/resources/dataExport/types/index.js +18 -0
- package/dist/cjs/api/resources/events/client/Client.d.ts +119 -0
- package/dist/cjs/api/resources/events/client/Client.js +293 -0
- package/dist/cjs/api/resources/events/client/index.d.ts +1 -0
- package/dist/cjs/api/resources/events/client/index.js +17 -0
- package/dist/cjs/api/resources/events/client/requests/ListEventSummariesRequest.d.ts +25 -0
- package/dist/cjs/api/resources/events/client/requests/ListEventSummariesRequest.js +3 -0
- package/dist/cjs/api/resources/events/client/requests/ListEventsRequest.d.ts +25 -0
- package/dist/cjs/api/resources/events/client/requests/ListEventsRequest.js +3 -0
- package/dist/cjs/api/resources/events/client/requests/index.d.ts +2 -0
- package/dist/cjs/api/resources/events/index.d.ts +1 -0
- package/dist/cjs/api/resources/events/index.js +17 -0
- package/dist/cjs/api/resources/export/client/Client.d.ts +40 -0
- package/dist/cjs/api/resources/export/client/Client.js +163 -0
- package/dist/cjs/api/resources/export/client/index.d.ts +1 -0
- package/dist/cjs/api/resources/export/client/index.js +17 -0
- package/dist/cjs/api/resources/export/client/requests/PostExportReportingDataEnqueueRequest.d.ts +15 -0
- package/dist/cjs/api/resources/export/client/requests/PostExportReportingDataEnqueueRequest.js +3 -0
- package/dist/cjs/api/resources/export/client/requests/index.d.ts +1 -0
- package/dist/cjs/api/resources/export/index.d.ts +2 -0
- package/dist/cjs/api/resources/export/index.js +18 -0
- package/dist/cjs/api/resources/export/types/GetExportReportingDataGetDatasetsResponse.d.ts +25 -0
- package/dist/cjs/api/resources/export/types/GetExportReportingDataGetDatasetsResponse.js +3 -0
- package/dist/cjs/api/resources/export/types/PostExportReportingDataEnqueueResponse.d.ts +6 -0
- package/dist/cjs/api/resources/export/types/PostExportReportingDataEnqueueResponse.js +3 -0
- package/dist/cjs/api/resources/export/types/index.d.ts +2 -0
- package/dist/cjs/api/resources/export/types/index.js +18 -0
- package/dist/cjs/api/resources/helpCenter/index.d.ts +1 -0
- package/dist/cjs/api/resources/helpCenter/index.js +17 -0
- package/dist/cjs/api/resources/helpCenter/types/Collection.d.ts +31 -0
- package/dist/cjs/api/resources/helpCenter/types/Collection.js +3 -0
- package/dist/cjs/api/resources/helpCenter/types/HelpCenter.d.ts +23 -0
- package/dist/cjs/api/resources/helpCenter/types/HelpCenter.js +3 -0
- package/dist/cjs/api/resources/helpCenter/types/HelpCenterList.d.ts +10 -0
- package/dist/cjs/api/resources/helpCenter/types/HelpCenterList.js +3 -0
- package/dist/cjs/api/resources/helpCenter/types/index.d.ts +3 -0
- package/dist/cjs/api/resources/helpCenter/types/index.js +19 -0
- package/dist/cjs/api/resources/helpCenters/client/Client.d.ts +45 -0
- package/dist/cjs/api/resources/helpCenters/client/Client.js +185 -0
- package/dist/cjs/api/resources/helpCenters/client/index.d.ts +1 -0
- package/dist/cjs/api/resources/helpCenters/client/index.js +17 -0
- package/dist/cjs/api/resources/helpCenters/client/requests/FindHelpCenterRequest.d.ts +10 -0
- package/dist/cjs/api/resources/helpCenters/client/requests/FindHelpCenterRequest.js +3 -0
- package/dist/cjs/api/resources/helpCenters/client/requests/ListHelpCentersRequest.d.ts +10 -0
- package/dist/cjs/api/resources/helpCenters/client/requests/ListHelpCentersRequest.js +3 -0
- package/dist/cjs/api/resources/helpCenters/client/requests/index.d.ts +2 -0
- package/dist/cjs/api/resources/helpCenters/index.d.ts +2 -0
- package/dist/cjs/api/resources/helpCenters/index.js +18 -0
- package/dist/cjs/api/resources/helpCenters/resources/collections/client/Client.d.ts +99 -0
- package/dist/cjs/api/resources/helpCenters/resources/collections/client/Client.js +367 -0
- package/dist/cjs/api/resources/helpCenters/resources/collections/client/index.d.ts +1 -0
- package/dist/cjs/api/resources/helpCenters/resources/collections/client/index.js +17 -0
- package/dist/cjs/api/resources/helpCenters/resources/collections/client/requests/CreateCollectionRequest.d.ts +24 -0
- package/dist/cjs/api/resources/helpCenters/resources/collections/client/requests/CreateCollectionRequest.js +3 -0
- package/dist/cjs/api/resources/helpCenters/resources/collections/client/requests/DeleteCollectionRequest.d.ts +10 -0
- package/dist/cjs/api/resources/helpCenters/resources/collections/client/requests/DeleteCollectionRequest.js +3 -0
- package/dist/cjs/api/resources/helpCenters/resources/collections/client/requests/FindCollectionRequest.d.ts +10 -0
- package/dist/cjs/api/resources/helpCenters/resources/collections/client/requests/FindCollectionRequest.js +3 -0
- package/dist/cjs/api/resources/helpCenters/resources/collections/client/requests/ListCollectionsRequest.d.ts +10 -0
- package/dist/cjs/api/resources/helpCenters/resources/collections/client/requests/ListCollectionsRequest.js +3 -0
- package/dist/cjs/api/resources/helpCenters/resources/collections/client/requests/UpdateCollectionRequest.d.ts +25 -0
- package/dist/cjs/api/resources/helpCenters/resources/collections/client/requests/UpdateCollectionRequest.js +3 -0
- package/dist/cjs/api/resources/helpCenters/resources/collections/client/requests/index.d.ts +5 -0
- package/dist/cjs/api/resources/helpCenters/resources/collections/index.d.ts +1 -0
- package/dist/cjs/api/resources/helpCenters/resources/collections/index.js +17 -0
- package/dist/cjs/api/resources/helpCenters/resources/index.d.ts +2 -0
- package/dist/cjs/api/resources/helpCenters/resources/index.js +41 -0
- package/dist/cjs/api/resources/index.d.ts +82 -0
- package/dist/cjs/api/resources/index.js +121 -0
- package/dist/cjs/api/resources/internalArticles/client/Client.d.ts +121 -0
- package/dist/cjs/api/resources/internalArticles/client/Client.js +415 -0
- package/dist/cjs/api/resources/internalArticles/client/index.d.ts +1 -0
- package/dist/cjs/api/resources/internalArticles/client/index.js +17 -0
- package/dist/cjs/api/resources/internalArticles/client/requests/DeleteInternalArticleRequest.d.ts +10 -0
- package/dist/cjs/api/resources/internalArticles/client/requests/DeleteInternalArticleRequest.js +3 -0
- package/dist/cjs/api/resources/internalArticles/client/requests/RetrieveInternalArticleRequest.d.ts +10 -0
- package/dist/cjs/api/resources/internalArticles/client/requests/RetrieveInternalArticleRequest.js +3 -0
- package/dist/cjs/api/resources/internalArticles/client/requests/SearchInternalArticlesRequest.d.ts +10 -0
- package/dist/cjs/api/resources/internalArticles/client/requests/SearchInternalArticlesRequest.js +3 -0
- package/dist/cjs/api/resources/internalArticles/client/requests/UpdateInternalArticleRequestBody.d.ts +27 -0
- package/dist/cjs/api/resources/internalArticles/client/requests/UpdateInternalArticleRequestBody.js +3 -0
- package/dist/cjs/api/resources/internalArticles/client/requests/index.d.ts +4 -0
- package/dist/cjs/api/resources/internalArticles/index.d.ts +2 -0
- package/dist/cjs/api/resources/internalArticles/index.js +18 -0
- package/dist/cjs/api/resources/internalArticles/types/InternalArticleListItem.d.ts +23 -0
- package/dist/cjs/api/resources/internalArticles/types/InternalArticleListItem.js +3 -0
- package/dist/cjs/api/resources/internalArticles/types/InternalArticleSearchResponse.d.ts +22 -0
- package/dist/cjs/api/resources/internalArticles/types/InternalArticleSearchResponse.js +3 -0
- package/dist/cjs/api/resources/internalArticles/types/index.d.ts +2 -0
- package/dist/cjs/api/resources/internalArticles/types/index.js +18 -0
- package/dist/cjs/api/resources/jobs/client/Client.d.ts +33 -0
- package/dist/cjs/api/resources/jobs/client/Client.js +116 -0
- package/dist/cjs/api/resources/jobs/client/index.d.ts +1 -0
- package/dist/cjs/api/resources/jobs/client/index.js +17 -0
- package/dist/cjs/api/resources/jobs/client/requests/JobsStatusRequest.d.ts +10 -0
- package/dist/cjs/api/resources/jobs/client/requests/JobsStatusRequest.js +3 -0
- package/dist/cjs/api/resources/jobs/client/requests/index.d.ts +1 -0
- package/dist/cjs/api/resources/jobs/index.d.ts +2 -0
- package/dist/cjs/api/resources/jobs/index.js +18 -0
- package/dist/cjs/api/resources/jobs/types/Jobs.d.ts +28 -0
- package/dist/cjs/api/resources/jobs/types/Jobs.js +13 -0
- package/dist/cjs/api/resources/jobs/types/index.d.ts +1 -0
- package/dist/cjs/api/resources/jobs/types/index.js +17 -0
- package/dist/cjs/api/resources/messages/client/Client.d.ts +110 -0
- package/dist/cjs/api/resources/messages/client/Client.js +199 -0
- package/dist/cjs/api/resources/messages/index.d.ts +2 -0
- package/dist/cjs/api/resources/messages/index.js +18 -0
- package/dist/cjs/api/resources/messages/types/Message.d.ts +29 -0
- package/dist/cjs/api/resources/messages/types/Message.js +14 -0
- package/dist/cjs/api/resources/messages/types/index.d.ts +1 -0
- package/dist/cjs/api/resources/messages/types/index.js +17 -0
- package/dist/cjs/api/resources/news/client/Client.d.ts +16 -0
- package/dist/cjs/api/resources/news/client/Client.js +21 -0
- package/dist/cjs/api/resources/news/index.d.ts +3 -0
- package/dist/cjs/api/resources/news/index.js +19 -0
- package/dist/cjs/api/resources/news/resources/feeds/client/Client.d.ts +56 -0
- package/dist/cjs/api/resources/news/resources/feeds/client/Client.js +208 -0
- package/dist/cjs/api/resources/news/resources/feeds/client/index.d.ts +1 -0
- package/dist/cjs/api/resources/news/resources/feeds/client/index.js +17 -0
- package/dist/cjs/api/resources/news/resources/feeds/client/requests/FindNewsFeedRequest.d.ts +10 -0
- package/dist/cjs/api/resources/news/resources/feeds/client/requests/FindNewsFeedRequest.js +3 -0
- package/dist/cjs/api/resources/news/resources/feeds/client/requests/ListNewsFeedItemsRequest.d.ts +10 -0
- package/dist/cjs/api/resources/news/resources/feeds/client/requests/ListNewsFeedItemsRequest.js +3 -0
- package/dist/cjs/api/resources/news/resources/feeds/client/requests/index.d.ts +2 -0
- package/dist/cjs/api/resources/news/resources/feeds/index.d.ts +1 -0
- package/dist/cjs/api/resources/news/resources/feeds/index.js +17 -0
- package/dist/cjs/api/resources/news/resources/index.d.ts +4 -0
- package/dist/cjs/api/resources/news/resources/index.js +43 -0
- package/dist/cjs/api/resources/news/resources/items/client/Client.d.ts +114 -0
- package/dist/cjs/api/resources/news/resources/items/client/Client.js +349 -0
- package/dist/cjs/api/resources/news/resources/items/client/index.d.ts +1 -0
- package/dist/cjs/api/resources/news/resources/items/client/index.js +17 -0
- package/dist/cjs/api/resources/news/resources/items/client/requests/DeleteNewsItemRequest.d.ts +10 -0
- package/dist/cjs/api/resources/news/resources/items/client/requests/DeleteNewsItemRequest.js +3 -0
- package/dist/cjs/api/resources/news/resources/items/client/requests/FindNewsItemRequest.d.ts +10 -0
- package/dist/cjs/api/resources/news/resources/items/client/requests/FindNewsItemRequest.js +3 -0
- package/dist/cjs/api/resources/news/resources/items/client/requests/UpdateNewsItemRequest.d.ts +29 -0
- package/dist/cjs/api/resources/news/resources/items/client/requests/UpdateNewsItemRequest.js +3 -0
- package/dist/cjs/api/resources/news/resources/items/client/requests/index.d.ts +3 -0
- package/dist/cjs/api/resources/news/resources/items/index.d.ts +1 -0
- package/dist/cjs/api/resources/news/resources/items/index.js +17 -0
- package/dist/cjs/api/resources/news/types/NewsItem.d.ts +42 -0
- package/dist/cjs/api/resources/news/types/NewsItem.js +12 -0
- package/dist/cjs/api/resources/news/types/Newsfeed.d.ts +17 -0
- package/dist/cjs/api/resources/news/types/Newsfeed.js +3 -0
- package/dist/cjs/api/resources/news/types/NewsfeedAssignment.d.ts +9 -0
- package/dist/cjs/api/resources/news/types/NewsfeedAssignment.js +3 -0
- package/dist/cjs/api/resources/news/types/index.d.ts +3 -0
- package/dist/cjs/api/resources/news/types/index.js +19 -0
- package/dist/cjs/api/resources/notes/client/Client.d.ts +64 -0
- package/dist/cjs/api/resources/notes/client/Client.js +252 -0
- package/dist/cjs/api/resources/notes/client/index.d.ts +1 -0
- package/dist/cjs/api/resources/notes/client/index.js +17 -0
- package/dist/cjs/api/resources/notes/client/requests/CreateContactNoteRequest.d.ts +30 -0
- package/dist/cjs/api/resources/notes/client/requests/CreateContactNoteRequest.js +3 -0
- package/dist/cjs/api/resources/notes/client/requests/FindNoteRequest.d.ts +10 -0
- package/dist/cjs/api/resources/notes/client/requests/FindNoteRequest.js +3 -0
- package/dist/cjs/api/resources/notes/client/requests/ListContactNotesRequest.d.ts +14 -0
- package/dist/cjs/api/resources/notes/client/requests/ListContactNotesRequest.js +3 -0
- package/dist/cjs/api/resources/notes/client/requests/index.d.ts +3 -0
- package/dist/cjs/api/resources/notes/index.d.ts +2 -0
- package/dist/cjs/api/resources/notes/index.js +18 -0
- package/dist/cjs/api/resources/notes/types/Note.d.ts +29 -0
- package/dist/cjs/api/resources/notes/types/Note.js +3 -0
- package/dist/cjs/api/resources/notes/types/index.d.ts +1 -0
- package/dist/cjs/api/resources/notes/types/index.js +17 -0
- package/dist/cjs/api/resources/phoneCallRedirects/client/Client.d.ts +47 -0
- package/dist/cjs/api/resources/phoneCallRedirects/client/Client.js +134 -0
- package/dist/cjs/api/resources/phoneCallRedirects/index.d.ts +1 -0
- package/dist/cjs/api/resources/phoneCallRedirects/index.js +17 -0
- package/dist/cjs/api/resources/segments/client/Client.d.ts +48 -0
- package/dist/cjs/api/resources/segments/client/Client.js +171 -0
- package/dist/cjs/api/resources/segments/client/index.d.ts +1 -0
- package/dist/cjs/api/resources/segments/client/index.js +17 -0
- package/dist/cjs/api/resources/segments/client/requests/FindSegmentRequest.d.ts +10 -0
- package/dist/cjs/api/resources/segments/client/requests/FindSegmentRequest.js +3 -0
- package/dist/cjs/api/resources/segments/client/requests/ListSegmentsRequest.d.ts +10 -0
- package/dist/cjs/api/resources/segments/client/requests/ListSegmentsRequest.js +3 -0
- package/dist/cjs/api/resources/segments/client/requests/index.d.ts +2 -0
- package/dist/cjs/api/resources/segments/index.d.ts +2 -0
- package/dist/cjs/api/resources/segments/index.js +18 -0
- package/dist/cjs/api/resources/segments/types/Segment.d.ts +27 -0
- package/dist/cjs/api/resources/segments/types/Segment.js +12 -0
- package/dist/cjs/api/resources/segments/types/index.d.ts +1 -0
- package/dist/cjs/api/resources/segments/types/index.js +17 -0
- package/dist/cjs/api/resources/subscriptionTypes/client/Client.d.ts +29 -0
- package/dist/cjs/api/resources/subscriptionTypes/client/Client.js +109 -0
- package/dist/cjs/api/resources/subscriptionTypes/index.d.ts +2 -0
- package/dist/cjs/api/resources/subscriptionTypes/index.js +18 -0
- package/dist/cjs/api/resources/subscriptionTypes/types/SubscriptionType.d.ts +42 -0
- package/dist/cjs/api/resources/subscriptionTypes/types/SubscriptionType.js +25 -0
- package/dist/cjs/api/resources/subscriptionTypes/types/index.d.ts +1 -0
- package/dist/cjs/api/resources/subscriptionTypes/types/index.js +17 -0
- package/dist/cjs/api/resources/tags/client/Client.d.ts +226 -0
- package/dist/cjs/api/resources/tags/client/Client.js +680 -0
- package/dist/cjs/api/resources/tags/client/index.d.ts +1 -0
- package/dist/cjs/api/resources/tags/client/index.js +17 -0
- package/dist/cjs/api/resources/tags/client/requests/DeleteTagRequest.d.ts +10 -0
- package/dist/cjs/api/resources/tags/client/requests/DeleteTagRequest.js +3 -0
- package/dist/cjs/api/resources/tags/client/requests/FindTagRequest.d.ts +10 -0
- package/dist/cjs/api/resources/tags/client/requests/FindTagRequest.js +3 -0
- package/dist/cjs/api/resources/tags/client/requests/TagContactRequest.d.ts +25 -0
- package/dist/cjs/api/resources/tags/client/requests/TagContactRequest.js +3 -0
- package/dist/cjs/api/resources/tags/client/requests/TagConversationRequest.d.ts +23 -0
- package/dist/cjs/api/resources/tags/client/requests/TagConversationRequest.js +3 -0
- package/dist/cjs/api/resources/tags/client/requests/TagTicketRequest.d.ts +23 -0
- package/dist/cjs/api/resources/tags/client/requests/TagTicketRequest.js +3 -0
- package/dist/cjs/api/resources/tags/client/requests/UntagContactRequest.d.ts +13 -0
- package/dist/cjs/api/resources/tags/client/requests/UntagContactRequest.js +3 -0
- package/dist/cjs/api/resources/tags/client/requests/UntagConversationRequest.d.ts +30 -0
- package/dist/cjs/api/resources/tags/client/requests/UntagConversationRequest.js +3 -0
- package/dist/cjs/api/resources/tags/client/requests/UntagTicketRequest.d.ts +30 -0
- package/dist/cjs/api/resources/tags/client/requests/UntagTicketRequest.js +3 -0
- package/dist/cjs/api/resources/tags/client/requests/index.d.ts +8 -0
- package/dist/cjs/api/resources/tags/index.d.ts +2 -0
- package/dist/cjs/api/resources/tags/index.js +18 -0
- package/dist/cjs/api/resources/tags/types/Tag.d.ts +15 -0
- package/dist/cjs/api/resources/tags/types/Tag.js +3 -0
- package/dist/cjs/api/resources/tags/types/TagBasic.d.ts +11 -0
- package/dist/cjs/api/resources/tags/types/TagBasic.js +3 -0
- package/dist/cjs/api/resources/tags/types/TagsCreateRequestBody.d.ts +2 -0
- package/dist/cjs/api/resources/tags/types/TagsCreateRequestBody.js +3 -0
- package/dist/cjs/api/resources/tags/types/index.d.ts +3 -0
- package/dist/cjs/api/resources/tags/types/index.js +19 -0
- package/dist/cjs/api/resources/teams/client/Client.d.ts +45 -0
- package/dist/cjs/api/resources/teams/client/Client.js +163 -0
- package/dist/cjs/api/resources/teams/client/index.d.ts +1 -0
- package/dist/cjs/api/resources/teams/client/index.js +17 -0
- package/dist/cjs/api/resources/teams/client/requests/FindTeamRequest.d.ts +10 -0
- package/dist/cjs/api/resources/teams/client/requests/FindTeamRequest.js +3 -0
- package/dist/cjs/api/resources/teams/client/requests/index.d.ts +1 -0
- package/dist/cjs/api/resources/teams/index.d.ts +2 -0
- package/dist/cjs/api/resources/teams/index.js +18 -0
- package/dist/cjs/api/resources/teams/types/Team.d.ts +19 -0
- package/dist/cjs/api/resources/teams/types/Team.js +3 -0
- package/dist/cjs/api/resources/teams/types/index.d.ts +1 -0
- package/dist/cjs/api/resources/teams/types/index.js +17 -0
- package/dist/cjs/api/resources/ticketStates/client/Client.d.ts +29 -0
- package/dist/cjs/api/resources/ticketStates/client/Client.js +109 -0
- package/dist/cjs/api/resources/ticketStates/index.d.ts +1 -0
- package/dist/cjs/api/resources/ticketStates/index.js +17 -0
- package/dist/cjs/api/resources/ticketTypes/client/Client.d.ts +90 -0
- package/dist/cjs/api/resources/ticketTypes/client/Client.js +296 -0
- package/dist/cjs/api/resources/ticketTypes/client/index.d.ts +1 -0
- package/dist/cjs/api/resources/ticketTypes/client/index.js +17 -0
- package/dist/cjs/api/resources/ticketTypes/client/requests/FindTicketTypeRequest.d.ts +10 -0
- package/dist/cjs/api/resources/ticketTypes/client/requests/FindTicketTypeRequest.js +3 -0
- package/dist/cjs/api/resources/ticketTypes/client/requests/UpdateTicketTypeRequest.d.ts +32 -0
- package/dist/cjs/api/resources/ticketTypes/client/requests/UpdateTicketTypeRequest.js +13 -0
- package/dist/cjs/api/resources/ticketTypes/client/requests/index.d.ts +2 -0
- package/dist/cjs/api/resources/ticketTypes/index.d.ts +2 -0
- package/dist/cjs/api/resources/ticketTypes/index.js +18 -0
- package/dist/cjs/api/resources/ticketTypes/resources/attributes/client/Client.d.ts +50 -0
- package/dist/cjs/api/resources/ticketTypes/resources/attributes/client/Client.js +190 -0
- package/dist/cjs/api/resources/ticketTypes/resources/attributes/client/index.d.ts +1 -0
- package/dist/cjs/api/resources/ticketTypes/resources/attributes/client/index.js +17 -0
- package/dist/cjs/api/resources/ticketTypes/resources/attributes/client/requests/CreateTicketTypeAttributeRequest.d.ts +47 -0
- package/dist/cjs/api/resources/ticketTypes/resources/attributes/client/requests/CreateTicketTypeAttributeRequest.js +17 -0
- package/dist/cjs/api/resources/ticketTypes/resources/attributes/client/requests/UpdateTicketTypeAttributeRequest.d.ts +34 -0
- package/dist/cjs/api/resources/ticketTypes/resources/attributes/client/requests/UpdateTicketTypeAttributeRequest.js +3 -0
- package/dist/cjs/api/resources/ticketTypes/resources/attributes/client/requests/index.d.ts +2 -0
- package/dist/cjs/api/resources/ticketTypes/resources/attributes/index.d.ts +1 -0
- package/dist/cjs/api/resources/ticketTypes/resources/attributes/index.js +17 -0
- package/dist/cjs/api/resources/ticketTypes/resources/index.d.ts +2 -0
- package/dist/cjs/api/resources/ticketTypes/resources/index.js +41 -0
- package/dist/cjs/api/resources/tickets/client/Client.d.ts +281 -0
- package/dist/cjs/api/resources/tickets/client/Client.js +624 -0
- package/dist/cjs/api/resources/tickets/client/index.d.ts +1 -0
- package/dist/cjs/api/resources/tickets/client/index.js +17 -0
- package/dist/cjs/api/resources/tickets/client/requests/CreateTicketRequest.d.ts +14 -0
- package/dist/cjs/api/resources/tickets/client/requests/CreateTicketRequest.js +3 -0
- package/dist/cjs/api/resources/tickets/client/requests/DeleteTicketRequest.d.ts +10 -0
- package/dist/cjs/api/resources/tickets/client/requests/DeleteTicketRequest.js +3 -0
- package/dist/cjs/api/resources/tickets/client/requests/EnqueueCreateTicketRequest.d.ts +14 -0
- package/dist/cjs/api/resources/tickets/client/requests/EnqueueCreateTicketRequest.js +3 -0
- package/dist/cjs/api/resources/tickets/client/requests/FindTicketRequest.d.ts +10 -0
- package/dist/cjs/api/resources/tickets/client/requests/FindTicketRequest.js +3 -0
- package/dist/cjs/api/resources/tickets/client/requests/ReplyToTicketRequest.d.ts +78 -0
- package/dist/cjs/api/resources/tickets/client/requests/ReplyToTicketRequest.js +3 -0
- package/dist/cjs/api/resources/tickets/client/requests/UpdateTicketRequest.d.ts +65 -0
- package/dist/cjs/api/resources/tickets/client/requests/UpdateTicketRequest.js +3 -0
- package/dist/cjs/api/resources/tickets/client/requests/index.d.ts +6 -0
- package/dist/cjs/api/resources/tickets/index.d.ts +2 -0
- package/dist/cjs/api/resources/tickets/index.js +18 -0
- package/dist/cjs/api/resources/tickets/types/DeleteTicketResponse.d.ts +11 -0
- package/dist/cjs/api/resources/tickets/types/DeleteTicketResponse.js +3 -0
- package/dist/cjs/api/resources/tickets/types/Ticket.d.ts +43 -0
- package/dist/cjs/api/resources/tickets/types/Ticket.js +13 -0
- package/dist/cjs/api/resources/tickets/types/TicketContacts.d.ts +10 -0
- package/dist/cjs/api/resources/tickets/types/TicketContacts.js +3 -0
- package/dist/cjs/api/resources/tickets/types/TicketPart.d.ts +100 -0
- package/dist/cjs/api/resources/tickets/types/TicketPart.js +21 -0
- package/dist/cjs/api/resources/tickets/types/TicketState.d.ts +25 -0
- package/dist/cjs/api/resources/tickets/types/TicketState.js +14 -0
- package/dist/cjs/api/resources/tickets/types/TicketStateDetailed.d.ts +39 -0
- package/dist/cjs/api/resources/tickets/types/TicketStateDetailed.js +14 -0
- package/dist/cjs/api/resources/tickets/types/TicketType.d.ts +47 -0
- package/dist/cjs/api/resources/tickets/types/TicketType.js +13 -0
- package/dist/cjs/api/resources/tickets/types/TicketsReplyRequestBody.d.ts +2 -0
- package/dist/cjs/api/resources/tickets/types/TicketsReplyRequestBody.js +3 -0
- package/dist/cjs/api/resources/tickets/types/index.d.ts +8 -0
- package/dist/cjs/api/resources/tickets/types/index.js +24 -0
- package/dist/cjs/api/resources/unstable/client/Client.d.ts +109 -0
- package/dist/cjs/api/resources/unstable/client/Client.js +176 -0
- package/dist/cjs/api/resources/unstable/errors/BadRequestError.d.ts +5 -0
- package/dist/cjs/api/resources/unstable/errors/BadRequestError.js +50 -0
- package/dist/cjs/api/resources/unstable/errors/ConflictError.d.ts +6 -0
- package/dist/cjs/api/resources/unstable/errors/ConflictError.js +50 -0
- package/dist/cjs/api/resources/unstable/errors/ForbiddenError.d.ts +6 -0
- package/dist/cjs/api/resources/unstable/errors/ForbiddenError.js +50 -0
- package/dist/cjs/api/resources/unstable/errors/InternalServerError.d.ts +6 -0
- package/dist/cjs/api/resources/unstable/errors/InternalServerError.js +50 -0
- package/dist/cjs/api/resources/unstable/errors/NotFoundError.d.ts +5 -0
- package/dist/cjs/api/resources/unstable/errors/NotFoundError.js +50 -0
- package/dist/cjs/api/resources/unstable/errors/TooManyRequestsError.d.ts +6 -0
- package/dist/cjs/api/resources/unstable/errors/TooManyRequestsError.js +50 -0
- package/dist/cjs/api/resources/unstable/errors/UnauthorizedError.d.ts +6 -0
- package/dist/cjs/api/resources/unstable/errors/UnauthorizedError.js +50 -0
- package/dist/cjs/api/resources/unstable/errors/UnprocessableEntityError.d.ts +5 -0
- package/dist/cjs/api/resources/unstable/errors/UnprocessableEntityError.js +50 -0
- package/dist/cjs/api/resources/unstable/errors/index.d.ts +8 -0
- package/dist/cjs/api/resources/unstable/errors/index.js +24 -0
- package/dist/cjs/api/resources/unstable/index.d.ts +4 -0
- package/dist/cjs/api/resources/unstable/index.js +20 -0
- package/dist/cjs/api/resources/unstable/resources/admins/client/Client.d.ts +103 -0
- package/dist/cjs/api/resources/unstable/resources/admins/client/Client.js +349 -0
- package/dist/cjs/api/resources/unstable/resources/admins/client/index.d.ts +1 -0
- package/dist/cjs/api/resources/unstable/resources/admins/client/index.js +17 -0
- package/dist/cjs/api/resources/unstable/resources/admins/client/requests/ListActivityLogsRequest.d.ts +13 -0
- package/dist/cjs/api/resources/unstable/resources/admins/client/requests/ListActivityLogsRequest.js +3 -0
- package/dist/cjs/api/resources/unstable/resources/admins/client/requests/RetrieveAdminRequest.d.ts +10 -0
- package/dist/cjs/api/resources/unstable/resources/admins/client/requests/RetrieveAdminRequest.js +3 -0
- package/dist/cjs/api/resources/unstable/resources/admins/client/requests/SetAwayAdminRequest.d.ts +33 -0
- package/dist/cjs/api/resources/unstable/resources/admins/client/requests/SetAwayAdminRequest.js +3 -0
- package/dist/cjs/api/resources/unstable/resources/admins/client/requests/index.d.ts +3 -0
- package/dist/cjs/api/resources/unstable/resources/admins/index.d.ts +2 -0
- package/dist/cjs/api/resources/unstable/resources/admins/index.js +18 -0
- package/dist/cjs/api/resources/unstable/resources/admins/types/Admin.d.ts +29 -0
- package/dist/cjs/api/resources/unstable/resources/admins/types/Admin.js +3 -0
- package/dist/cjs/api/resources/unstable/resources/admins/types/index.d.ts +1 -0
- package/dist/cjs/api/resources/unstable/resources/admins/types/index.js +17 -0
- package/dist/cjs/api/resources/unstable/resources/aiAgent/index.d.ts +1 -0
- package/dist/cjs/api/resources/unstable/resources/aiAgent/index.js +17 -0
- package/dist/cjs/api/resources/unstable/resources/aiAgent/types/AiAgent.d.ts +48 -0
- package/dist/cjs/api/resources/unstable/resources/aiAgent/types/AiAgent.js +27 -0
- package/dist/cjs/api/resources/unstable/resources/aiAgent/types/index.d.ts +1 -0
- package/dist/cjs/api/resources/unstable/resources/aiAgent/types/index.js +17 -0
- package/dist/cjs/api/resources/unstable/resources/aiContent/client/Client.d.ts +182 -0
- package/dist/cjs/api/resources/unstable/resources/aiContent/client/Client.js +618 -0
- package/dist/cjs/api/resources/unstable/resources/aiContent/client/index.d.ts +1 -0
- package/dist/cjs/api/resources/unstable/resources/aiContent/client/index.js +17 -0
- package/dist/cjs/api/resources/unstable/resources/aiContent/client/requests/CreateContentImportSourceRequest.d.ts +20 -0
- package/dist/cjs/api/resources/unstable/resources/aiContent/client/requests/CreateContentImportSourceRequest.js +12 -0
- package/dist/cjs/api/resources/unstable/resources/aiContent/client/requests/CreateExternalPageRequest.d.ts +26 -0
- package/dist/cjs/api/resources/unstable/resources/aiContent/client/requests/CreateExternalPageRequest.js +3 -0
- package/dist/cjs/api/resources/unstable/resources/aiContent/client/requests/DeleteContentImportSourceRequest.d.ts +10 -0
- package/dist/cjs/api/resources/unstable/resources/aiContent/client/requests/DeleteContentImportSourceRequest.js +3 -0
- package/dist/cjs/api/resources/unstable/resources/aiContent/client/requests/DeleteExternalPageRequest.d.ts +10 -0
- package/dist/cjs/api/resources/unstable/resources/aiContent/client/requests/DeleteExternalPageRequest.js +3 -0
- package/dist/cjs/api/resources/unstable/resources/aiContent/client/requests/GetContentImportSourceRequest.d.ts +10 -0
- package/dist/cjs/api/resources/unstable/resources/aiContent/client/requests/GetContentImportSourceRequest.js +3 -0
- package/dist/cjs/api/resources/unstable/resources/aiContent/client/requests/GetExternalPageRequest.d.ts +10 -0
- package/dist/cjs/api/resources/unstable/resources/aiContent/client/requests/GetExternalPageRequest.js +3 -0
- package/dist/cjs/api/resources/unstable/resources/aiContent/client/requests/UpdateContentImportSourceRequest.d.ts +33 -0
- package/dist/cjs/api/resources/unstable/resources/aiContent/client/requests/UpdateContentImportSourceRequest.js +18 -0
- package/dist/cjs/api/resources/unstable/resources/aiContent/client/requests/UpdateExternalPageRequest.d.ts +27 -0
- package/dist/cjs/api/resources/unstable/resources/aiContent/client/requests/UpdateExternalPageRequest.js +3 -0
- package/dist/cjs/api/resources/unstable/resources/aiContent/client/requests/index.d.ts +8 -0
- package/dist/cjs/api/resources/unstable/resources/aiContent/index.d.ts +2 -0
- package/dist/cjs/api/resources/unstable/resources/aiContent/index.js +18 -0
- package/dist/cjs/api/resources/unstable/resources/aiContent/types/ContentImportSource.d.ts +36 -0
- package/dist/cjs/api/resources/unstable/resources/aiContent/types/ContentImportSource.js +18 -0
- package/dist/cjs/api/resources/unstable/resources/aiContent/types/ContentImportSourcesList.d.ts +13 -0
- package/dist/cjs/api/resources/unstable/resources/aiContent/types/ContentImportSourcesList.js +3 -0
- package/dist/cjs/api/resources/unstable/resources/aiContent/types/ExternalPage.d.ts +33 -0
- package/dist/cjs/api/resources/unstable/resources/aiContent/types/ExternalPage.js +3 -0
- package/dist/cjs/api/resources/unstable/resources/aiContent/types/ExternalPagesList.d.ts +13 -0
- package/dist/cjs/api/resources/unstable/resources/aiContent/types/ExternalPagesList.js +3 -0
- package/dist/cjs/api/resources/unstable/resources/aiContent/types/index.d.ts +4 -0
- package/dist/cjs/api/resources/unstable/resources/aiContent/types/index.js +20 -0
- package/dist/cjs/api/resources/unstable/resources/aiContentSource/index.d.ts +1 -0
- package/dist/cjs/api/resources/unstable/resources/aiContentSource/index.js +17 -0
- package/dist/cjs/api/resources/unstable/resources/aiContentSource/types/ContentSource.d.ts +24 -0
- package/dist/cjs/api/resources/unstable/resources/aiContentSource/types/ContentSource.js +15 -0
- package/dist/cjs/api/resources/unstable/resources/aiContentSource/types/index.d.ts +1 -0
- package/dist/cjs/api/resources/unstable/resources/aiContentSource/types/index.js +17 -0
- package/dist/cjs/api/resources/unstable/resources/articles/client/Client.d.ts +99 -0
- package/dist/cjs/api/resources/unstable/resources/articles/client/Client.js +350 -0
- package/dist/cjs/api/resources/unstable/resources/articles/client/index.d.ts +1 -0
- package/dist/cjs/api/resources/unstable/resources/articles/client/index.js +17 -0
- package/dist/cjs/api/resources/unstable/resources/articles/client/requests/DeleteArticleRequest.d.ts +10 -0
- package/dist/cjs/api/resources/unstable/resources/articles/client/requests/DeleteArticleRequest.js +3 -0
- package/dist/cjs/api/resources/unstable/resources/articles/client/requests/RetrieveArticleRequest.d.ts +10 -0
- package/dist/cjs/api/resources/unstable/resources/articles/client/requests/RetrieveArticleRequest.js +3 -0
- package/dist/cjs/api/resources/unstable/resources/articles/client/requests/SearchArticlesRequest.d.ts +19 -0
- package/dist/cjs/api/resources/unstable/resources/articles/client/requests/SearchArticlesRequest.js +3 -0
- package/dist/cjs/api/resources/unstable/resources/articles/client/requests/index.d.ts +3 -0
- package/dist/cjs/api/resources/unstable/resources/articles/index.d.ts +2 -0
- package/dist/cjs/api/resources/unstable/resources/articles/index.js +18 -0
- package/dist/cjs/api/resources/unstable/resources/articles/types/Article.d.ts +7 -0
- package/dist/cjs/api/resources/unstable/resources/articles/types/Article.js +3 -0
- package/dist/cjs/api/resources/unstable/resources/articles/types/ArticleListItem.d.ts +45 -0
- package/dist/cjs/api/resources/unstable/resources/articles/types/ArticleListItem.js +12 -0
- package/dist/cjs/api/resources/unstable/resources/articles/types/ArticleSearchHighlights.d.ts +53 -0
- package/dist/cjs/api/resources/unstable/resources/articles/types/ArticleSearchHighlights.js +29 -0
- package/dist/cjs/api/resources/unstable/resources/articles/types/ArticleSearchResponse.d.ts +24 -0
- package/dist/cjs/api/resources/unstable/resources/articles/types/ArticleSearchResponse.js +3 -0
- package/dist/cjs/api/resources/unstable/resources/articles/types/InternalArticle.d.ts +5 -0
- package/dist/cjs/api/resources/unstable/resources/articles/types/InternalArticle.js +3 -0
- package/dist/cjs/api/resources/unstable/resources/articles/types/index.d.ts +5 -0
- package/dist/cjs/api/resources/unstable/resources/articles/types/index.js +21 -0
- package/dist/cjs/api/resources/unstable/resources/awayStatusReasons/client/Client.d.ts +29 -0
- package/dist/cjs/api/resources/unstable/resources/awayStatusReasons/client/Client.js +109 -0
- package/dist/cjs/api/resources/unstable/resources/awayStatusReasons/index.d.ts +1 -0
- package/dist/cjs/api/resources/unstable/resources/awayStatusReasons/index.js +17 -0
- package/dist/cjs/api/resources/unstable/resources/brands/client/Client.d.ts +46 -0
- package/dist/cjs/api/resources/unstable/resources/brands/client/Client.js +164 -0
- package/dist/cjs/api/resources/unstable/resources/brands/client/index.d.ts +1 -0
- package/dist/cjs/api/resources/unstable/resources/brands/client/index.js +17 -0
- package/dist/cjs/api/resources/unstable/resources/brands/client/requests/RetrieveBrandRequest.d.ts +10 -0
- package/dist/cjs/api/resources/unstable/resources/brands/client/requests/RetrieveBrandRequest.js +3 -0
- package/dist/cjs/api/resources/unstable/resources/brands/client/requests/index.d.ts +1 -0
- package/dist/cjs/api/resources/unstable/resources/brands/index.d.ts +2 -0
- package/dist/cjs/api/resources/unstable/resources/brands/index.js +18 -0
- package/dist/cjs/api/resources/unstable/resources/brands/types/Brand.d.ts +21 -0
- package/dist/cjs/api/resources/unstable/resources/brands/types/Brand.js +3 -0
- package/dist/cjs/api/resources/unstable/resources/brands/types/BrandList.d.ts +9 -0
- package/dist/cjs/api/resources/unstable/resources/brands/types/BrandList.js +3 -0
- package/dist/cjs/api/resources/unstable/resources/brands/types/index.d.ts +2 -0
- package/dist/cjs/api/resources/unstable/resources/brands/types/index.js +18 -0
- package/dist/cjs/api/resources/unstable/resources/calls/client/Client.d.ts +168 -0
- package/dist/cjs/api/resources/unstable/resources/calls/client/Client.js +562 -0
- package/dist/cjs/api/resources/unstable/resources/calls/client/index.d.ts +1 -0
- package/dist/cjs/api/resources/unstable/resources/calls/client/index.js +17 -0
- package/dist/cjs/api/resources/unstable/resources/calls/client/requests/CollectFinVoiceCallByExternalIdRequest.d.ts +10 -0
- package/dist/cjs/api/resources/unstable/resources/calls/client/requests/CollectFinVoiceCallByExternalIdRequest.js +3 -0
- package/dist/cjs/api/resources/unstable/resources/calls/client/requests/CollectFinVoiceCallByIdRequest.d.ts +10 -0
- package/dist/cjs/api/resources/unstable/resources/calls/client/requests/CollectFinVoiceCallByIdRequest.js +3 -0
- package/dist/cjs/api/resources/unstable/resources/calls/client/requests/CollectFinVoiceCallByPhoneNumberRequest.d.ts +10 -0
- package/dist/cjs/api/resources/unstable/resources/calls/client/requests/CollectFinVoiceCallByPhoneNumberRequest.js +3 -0
- package/dist/cjs/api/resources/unstable/resources/calls/client/requests/ListCallsRequest.d.ts +13 -0
- package/dist/cjs/api/resources/unstable/resources/calls/client/requests/ListCallsRequest.js +3 -0
- package/dist/cjs/api/resources/unstable/resources/calls/client/requests/ListCallsWithTranscriptsRequest.d.ts +10 -0
- package/dist/cjs/api/resources/unstable/resources/calls/client/requests/ListCallsWithTranscriptsRequest.js +3 -0
- package/dist/cjs/api/resources/unstable/resources/calls/client/requests/ShowCallRecordingRequest.d.ts +10 -0
- package/dist/cjs/api/resources/unstable/resources/calls/client/requests/ShowCallRecordingRequest.js +3 -0
- package/dist/cjs/api/resources/unstable/resources/calls/client/requests/ShowCallRequest.d.ts +10 -0
- package/dist/cjs/api/resources/unstable/resources/calls/client/requests/ShowCallRequest.js +3 -0
- package/dist/cjs/api/resources/unstable/resources/calls/client/requests/ShowCallTranscriptRequest.d.ts +10 -0
- package/dist/cjs/api/resources/unstable/resources/calls/client/requests/ShowCallTranscriptRequest.js +3 -0
- package/dist/cjs/api/resources/unstable/resources/calls/client/requests/index.d.ts +8 -0
- package/dist/cjs/api/resources/unstable/resources/calls/index.d.ts +2 -0
- package/dist/cjs/api/resources/unstable/resources/calls/index.js +18 -0
- package/dist/cjs/api/resources/unstable/resources/calls/types/Call.d.ts +39 -0
- package/dist/cjs/api/resources/unstable/resources/calls/types/Call.js +3 -0
- package/dist/cjs/api/resources/unstable/resources/calls/types/ListCallsWithTranscriptsResponse.d.ts +16 -0
- package/dist/cjs/api/resources/unstable/resources/calls/types/ListCallsWithTranscriptsResponse.js +3 -0
- package/dist/cjs/api/resources/unstable/resources/calls/types/index.d.ts +2 -0
- package/dist/cjs/api/resources/unstable/resources/calls/types/index.js +18 -0
- package/dist/cjs/api/resources/unstable/resources/companies/client/Client.d.ts +257 -0
- package/dist/cjs/api/resources/unstable/resources/companies/client/Client.js +779 -0
- package/dist/cjs/api/resources/unstable/resources/companies/client/index.d.ts +1 -0
- package/dist/cjs/api/resources/unstable/resources/companies/client/index.js +17 -0
- package/dist/cjs/api/resources/unstable/resources/companies/client/requests/AttachContactToACompanyRequest.d.ts +25 -0
- package/dist/cjs/api/resources/unstable/resources/companies/client/requests/AttachContactToACompanyRequest.js +3 -0
- package/dist/cjs/api/resources/unstable/resources/companies/client/requests/DeleteCompanyRequest.d.ts +10 -0
- package/dist/cjs/api/resources/unstable/resources/companies/client/requests/DeleteCompanyRequest.js +3 -0
- package/dist/cjs/api/resources/unstable/resources/companies/client/requests/DetachContactFromACompanyRequest.d.ts +13 -0
- package/dist/cjs/api/resources/unstable/resources/companies/client/requests/DetachContactFromACompanyRequest.js +3 -0
- package/dist/cjs/api/resources/unstable/resources/companies/client/requests/ListAllCompaniesRequest.d.ts +16 -0
- package/dist/cjs/api/resources/unstable/resources/companies/client/requests/ListAllCompaniesRequest.js +3 -0
- package/dist/cjs/api/resources/unstable/resources/companies/client/requests/ListAttachedContactsRequest.d.ts +10 -0
- package/dist/cjs/api/resources/unstable/resources/companies/client/requests/ListAttachedContactsRequest.js +3 -0
- package/dist/cjs/api/resources/unstable/resources/companies/client/requests/ListAttachedSegmentsForCompaniesRequest.d.ts +10 -0
- package/dist/cjs/api/resources/unstable/resources/companies/client/requests/ListAttachedSegmentsForCompaniesRequest.js +3 -0
- package/dist/cjs/api/resources/unstable/resources/companies/client/requests/RetrieveACompanyByIdRequest.d.ts +10 -0
- package/dist/cjs/api/resources/unstable/resources/companies/client/requests/RetrieveACompanyByIdRequest.js +3 -0
- package/dist/cjs/api/resources/unstable/resources/companies/client/requests/RetrieveCompanyRequest.d.ts +25 -0
- package/dist/cjs/api/resources/unstable/resources/companies/client/requests/RetrieveCompanyRequest.js +3 -0
- package/dist/cjs/api/resources/unstable/resources/companies/client/requests/ScrollOverAllCompaniesRequest.d.ts +10 -0
- package/dist/cjs/api/resources/unstable/resources/companies/client/requests/ScrollOverAllCompaniesRequest.js +3 -0
- package/dist/cjs/api/resources/unstable/resources/companies/client/requests/UpdateCompanyRequest.d.ts +10 -0
- package/dist/cjs/api/resources/unstable/resources/companies/client/requests/UpdateCompanyRequest.js +3 -0
- package/dist/cjs/api/resources/unstable/resources/companies/client/requests/index.d.ts +10 -0
- package/dist/cjs/api/resources/unstable/resources/companies/index.d.ts +2 -0
- package/dist/cjs/api/resources/unstable/resources/companies/index.js +18 -0
- package/dist/cjs/api/resources/unstable/resources/companies/types/Company.d.ts +79 -0
- package/dist/cjs/api/resources/unstable/resources/companies/types/Company.js +3 -0
- package/dist/cjs/api/resources/unstable/resources/companies/types/index.d.ts +1 -0
- package/dist/cjs/api/resources/unstable/resources/companies/types/index.js +17 -0
- package/dist/cjs/api/resources/unstable/resources/contacts/client/Client.d.ts +375 -0
- package/dist/cjs/api/resources/unstable/resources/contacts/client/Client.js +993 -0
- package/dist/cjs/api/resources/unstable/resources/contacts/client/index.d.ts +1 -0
- package/dist/cjs/api/resources/unstable/resources/contacts/client/index.js +17 -0
- package/dist/cjs/api/resources/unstable/resources/contacts/client/requests/ArchiveContactRequest.d.ts +10 -0
- package/dist/cjs/api/resources/unstable/resources/contacts/client/requests/ArchiveContactRequest.js +3 -0
- package/dist/cjs/api/resources/unstable/resources/contacts/client/requests/BlockContactRequest.d.ts +10 -0
- package/dist/cjs/api/resources/unstable/resources/contacts/client/requests/BlockContactRequest.js +3 -0
- package/dist/cjs/api/resources/unstable/resources/contacts/client/requests/DeleteContactRequest.d.ts +10 -0
- package/dist/cjs/api/resources/unstable/resources/contacts/client/requests/DeleteContactRequest.js +3 -0
- package/dist/cjs/api/resources/unstable/resources/contacts/client/requests/ListCompaniesForAContactRequest.d.ts +10 -0
- package/dist/cjs/api/resources/unstable/resources/contacts/client/requests/ListCompaniesForAContactRequest.js +3 -0
- package/dist/cjs/api/resources/unstable/resources/contacts/client/requests/ListSegmentsForAContactRequest.d.ts +10 -0
- package/dist/cjs/api/resources/unstable/resources/contacts/client/requests/ListSegmentsForAContactRequest.js +3 -0
- package/dist/cjs/api/resources/unstable/resources/contacts/client/requests/ListSubscriptionsForAContactRequest.d.ts +10 -0
- package/dist/cjs/api/resources/unstable/resources/contacts/client/requests/ListSubscriptionsForAContactRequest.js +3 -0
- package/dist/cjs/api/resources/unstable/resources/contacts/client/requests/ListTagsForAContactRequest.d.ts +10 -0
- package/dist/cjs/api/resources/unstable/resources/contacts/client/requests/ListTagsForAContactRequest.js +3 -0
- package/dist/cjs/api/resources/unstable/resources/contacts/client/requests/MergeContactsRequest.d.ts +13 -0
- package/dist/cjs/api/resources/unstable/resources/contacts/client/requests/MergeContactsRequest.js +3 -0
- package/dist/cjs/api/resources/unstable/resources/contacts/client/requests/ShowContactByExternalIdRequest.d.ts +10 -0
- package/dist/cjs/api/resources/unstable/resources/contacts/client/requests/ShowContactByExternalIdRequest.js +3 -0
- package/dist/cjs/api/resources/unstable/resources/contacts/client/requests/ShowContactRequest.d.ts +10 -0
- package/dist/cjs/api/resources/unstable/resources/contacts/client/requests/ShowContactRequest.js +3 -0
- package/dist/cjs/api/resources/unstable/resources/contacts/client/requests/UnarchiveContactRequest.d.ts +10 -0
- package/dist/cjs/api/resources/unstable/resources/contacts/client/requests/UnarchiveContactRequest.js +3 -0
- package/dist/cjs/api/resources/unstable/resources/contacts/client/requests/UpdateContactRequest.d.ts +44 -0
- package/dist/cjs/api/resources/unstable/resources/contacts/client/requests/UpdateContactRequest.js +3 -0
- package/dist/cjs/api/resources/unstable/resources/contacts/client/requests/index.d.ts +12 -0
- package/dist/cjs/api/resources/unstable/resources/contacts/index.d.ts +2 -0
- package/dist/cjs/api/resources/unstable/resources/contacts/index.js +18 -0
- package/dist/cjs/api/resources/unstable/resources/contacts/types/Contact.d.ts +100 -0
- package/dist/cjs/api/resources/unstable/resources/contacts/types/Contact.js +3 -0
- package/dist/cjs/api/resources/unstable/resources/contacts/types/CreateContactResponse.d.ts +5 -0
- package/dist/cjs/api/resources/unstable/resources/contacts/types/CreateContactResponse.js +3 -0
- package/dist/cjs/api/resources/unstable/resources/contacts/types/MergeContactResponse.d.ts +5 -0
- package/dist/cjs/api/resources/unstable/resources/contacts/types/MergeContactResponse.js +3 -0
- package/dist/cjs/api/resources/unstable/resources/contacts/types/ShowContactByExternalIdResponse.d.ts +5 -0
- package/dist/cjs/api/resources/unstable/resources/contacts/types/ShowContactByExternalIdResponse.js +3 -0
- package/dist/cjs/api/resources/unstable/resources/contacts/types/ShowContactResponse.d.ts +5 -0
- package/dist/cjs/api/resources/unstable/resources/contacts/types/ShowContactResponse.js +3 -0
- package/dist/cjs/api/resources/unstable/resources/contacts/types/UpdateContactResponse.d.ts +5 -0
- package/dist/cjs/api/resources/unstable/resources/contacts/types/UpdateContactResponse.js +3 -0
- package/dist/cjs/api/resources/unstable/resources/contacts/types/index.d.ts +6 -0
- package/dist/cjs/api/resources/unstable/resources/contacts/types/index.js +22 -0
- package/dist/cjs/api/resources/unstable/resources/conversations/client/Client.d.ts +534 -0
- package/dist/cjs/api/resources/unstable/resources/conversations/client/Client.js +1098 -0
- package/dist/cjs/api/resources/unstable/resources/conversations/client/index.d.ts +1 -0
- package/dist/cjs/api/resources/unstable/resources/conversations/client/index.js +17 -0
- package/dist/cjs/api/resources/unstable/resources/conversations/client/requests/AttachContactToConversationRequest.d.ts +39 -0
- package/dist/cjs/api/resources/unstable/resources/conversations/client/requests/AttachContactToConversationRequest.js +3 -0
- package/dist/cjs/api/resources/unstable/resources/conversations/client/requests/ConvertConversationToTicketRequest.d.ts +21 -0
- package/dist/cjs/api/resources/unstable/resources/conversations/client/requests/ConvertConversationToTicketRequest.js +3 -0
- package/dist/cjs/api/resources/unstable/resources/conversations/client/requests/CreateConversationRequest.d.ts +43 -0
- package/dist/cjs/api/resources/unstable/resources/conversations/client/requests/CreateConversationRequest.js +16 -0
- package/dist/cjs/api/resources/unstable/resources/conversations/client/requests/DeleteConversationRequest.d.ts +10 -0
- package/dist/cjs/api/resources/unstable/resources/conversations/client/requests/DeleteConversationRequest.js +3 -0
- package/dist/cjs/api/resources/unstable/resources/conversations/client/requests/DetachContactFromConversationRequest.d.ts +37 -0
- package/dist/cjs/api/resources/unstable/resources/conversations/client/requests/DetachContactFromConversationRequest.js +3 -0
- package/dist/cjs/api/resources/unstable/resources/conversations/client/requests/ListConversationsRequest.d.ts +13 -0
- package/dist/cjs/api/resources/unstable/resources/conversations/client/requests/ListConversationsRequest.js +3 -0
- package/dist/cjs/api/resources/unstable/resources/conversations/client/requests/ManageConversationRequest.d.ts +57 -0
- package/dist/cjs/api/resources/unstable/resources/conversations/client/requests/ManageConversationRequest.js +3 -0
- package/dist/cjs/api/resources/unstable/resources/conversations/client/requests/ReplyConversationRequest.d.ts +72 -0
- package/dist/cjs/api/resources/unstable/resources/conversations/client/requests/ReplyConversationRequest.js +3 -0
- package/dist/cjs/api/resources/unstable/resources/conversations/client/requests/RetrieveConversationRequest.d.ts +16 -0
- package/dist/cjs/api/resources/unstable/resources/conversations/client/requests/RetrieveConversationRequest.js +3 -0
- package/dist/cjs/api/resources/unstable/resources/conversations/client/requests/UpdateConversationRequest.d.ts +48 -0
- package/dist/cjs/api/resources/unstable/resources/conversations/client/requests/UpdateConversationRequest.js +3 -0
- package/dist/cjs/api/resources/unstable/resources/conversations/client/requests/index.d.ts +10 -0
- package/dist/cjs/api/resources/unstable/resources/conversations/index.d.ts +2 -0
- package/dist/cjs/api/resources/unstable/resources/conversations/index.js +18 -0
- package/dist/cjs/api/resources/unstable/resources/conversations/types/Conversation.d.ts +63 -0
- package/dist/cjs/api/resources/unstable/resources/conversations/types/Conversation.js +18 -0
- package/dist/cjs/api/resources/unstable/resources/conversations/types/ManageConversationRequestBody.d.ts +16 -0
- package/dist/cjs/api/resources/unstable/resources/conversations/types/ManageConversationRequestBody.js +3 -0
- package/dist/cjs/api/resources/unstable/resources/conversations/types/index.d.ts +2 -0
- package/dist/cjs/api/resources/unstable/resources/conversations/types/index.js +18 -0
- package/dist/cjs/api/resources/unstable/resources/customChannelEvents/client/Client.d.ts +124 -0
- package/dist/cjs/api/resources/unstable/resources/customChannelEvents/client/Client.js +357 -0
- package/dist/cjs/api/resources/unstable/resources/customChannelEvents/client/index.d.ts +1 -0
- package/dist/cjs/api/resources/unstable/resources/customChannelEvents/client/index.js +17 -0
- package/dist/cjs/api/resources/unstable/resources/customChannelEvents/client/requests/NotifyAttributeCollectedRequest.d.ts +21 -0
- package/dist/cjs/api/resources/unstable/resources/customChannelEvents/client/requests/NotifyAttributeCollectedRequest.js +3 -0
- package/dist/cjs/api/resources/unstable/resources/customChannelEvents/client/requests/NotifyNewMessageRequest.d.ts +19 -0
- package/dist/cjs/api/resources/unstable/resources/customChannelEvents/client/requests/NotifyNewMessageRequest.js +3 -0
- package/dist/cjs/api/resources/unstable/resources/customChannelEvents/client/requests/NotifyQuickReplySelectedRequest.d.ts +19 -0
- package/dist/cjs/api/resources/unstable/resources/customChannelEvents/client/requests/NotifyQuickReplySelectedRequest.js +3 -0
- package/dist/cjs/api/resources/unstable/resources/customChannelEvents/client/requests/index.d.ts +3 -0
- package/dist/cjs/api/resources/unstable/resources/customChannelEvents/index.d.ts +1 -0
- package/dist/cjs/api/resources/unstable/resources/customChannelEvents/index.js +17 -0
- package/dist/cjs/api/resources/unstable/resources/customObjectInstances/client/Client.d.ts +111 -0
- package/dist/cjs/api/resources/unstable/resources/customObjectInstances/client/Client.js +379 -0
- package/dist/cjs/api/resources/unstable/resources/customObjectInstances/client/index.d.ts +1 -0
- package/dist/cjs/api/resources/unstable/resources/customObjectInstances/client/index.js +17 -0
- package/dist/cjs/api/resources/unstable/resources/customObjectInstances/client/requests/CreateOrUpdateCustomObjectInstanceRequest.d.ts +25 -0
- package/dist/cjs/api/resources/unstable/resources/customObjectInstances/client/requests/CreateOrUpdateCustomObjectInstanceRequest.js +3 -0
- package/dist/cjs/api/resources/unstable/resources/customObjectInstances/client/requests/DeleteCustomObjectInstancesByExternalIdRequest.d.ts +13 -0
- package/dist/cjs/api/resources/unstable/resources/customObjectInstances/client/requests/DeleteCustomObjectInstancesByExternalIdRequest.js +3 -0
- package/dist/cjs/api/resources/unstable/resources/customObjectInstances/client/requests/DeleteCustomObjectInstancesByIdRequest.d.ts +12 -0
- package/dist/cjs/api/resources/unstable/resources/customObjectInstances/client/requests/DeleteCustomObjectInstancesByIdRequest.js +3 -0
- package/dist/cjs/api/resources/unstable/resources/customObjectInstances/client/requests/GetCustomObjectInstancesByExternalIdRequest.d.ts +12 -0
- package/dist/cjs/api/resources/unstable/resources/customObjectInstances/client/requests/GetCustomObjectInstancesByExternalIdRequest.js +3 -0
- package/dist/cjs/api/resources/unstable/resources/customObjectInstances/client/requests/GetCustomObjectInstancesByIdRequest.d.ts +13 -0
- package/dist/cjs/api/resources/unstable/resources/customObjectInstances/client/requests/GetCustomObjectInstancesByIdRequest.js +3 -0
- package/dist/cjs/api/resources/unstable/resources/customObjectInstances/client/requests/index.d.ts +5 -0
- package/dist/cjs/api/resources/unstable/resources/customObjectInstances/index.d.ts +2 -0
- package/dist/cjs/api/resources/unstable/resources/customObjectInstances/index.js +18 -0
- package/dist/cjs/api/resources/unstable/resources/customObjectInstances/types/CustomObjectInstance.d.ts +21 -0
- package/dist/cjs/api/resources/unstable/resources/customObjectInstances/types/CustomObjectInstance.js +3 -0
- package/dist/cjs/api/resources/unstable/resources/customObjectInstances/types/index.d.ts +1 -0
- package/dist/cjs/api/resources/unstable/resources/customObjectInstances/types/index.js +17 -0
- package/dist/cjs/api/resources/unstable/resources/dataAttributes/client/Client.d.ts +75 -0
- package/dist/cjs/api/resources/unstable/resources/dataAttributes/client/Client.js +248 -0
- package/dist/cjs/api/resources/unstable/resources/dataAttributes/client/index.d.ts +1 -0
- package/dist/cjs/api/resources/unstable/resources/dataAttributes/client/index.js +17 -0
- package/dist/cjs/api/resources/unstable/resources/dataAttributes/client/requests/LisDataAttributesRequest.d.ts +14 -0
- package/dist/cjs/api/resources/unstable/resources/dataAttributes/client/requests/LisDataAttributesRequest.js +3 -0
- package/dist/cjs/api/resources/unstable/resources/dataAttributes/client/requests/UpdateDataAttributeRequest.d.ts +14 -0
- package/dist/cjs/api/resources/unstable/resources/dataAttributes/client/requests/UpdateDataAttributeRequest.js +3 -0
- package/dist/cjs/api/resources/unstable/resources/dataAttributes/client/requests/index.d.ts +2 -0
- package/dist/cjs/api/resources/unstable/resources/dataAttributes/index.d.ts +2 -0
- package/dist/cjs/api/resources/unstable/resources/dataAttributes/index.js +18 -0
- package/dist/cjs/api/resources/unstable/resources/dataAttributes/types/DataAttribute.d.ts +56 -0
- package/dist/cjs/api/resources/unstable/resources/dataAttributes/types/DataAttribute.js +20 -0
- package/dist/cjs/api/resources/unstable/resources/dataAttributes/types/LisDataAttributesRequestModel.d.ts +6 -0
- package/dist/cjs/api/resources/unstable/resources/dataAttributes/types/LisDataAttributesRequestModel.js +9 -0
- package/dist/cjs/api/resources/unstable/resources/dataAttributes/types/index.d.ts +2 -0
- package/dist/cjs/api/resources/unstable/resources/dataAttributes/types/index.js +18 -0
- package/dist/cjs/api/resources/unstable/resources/dataEvents/client/Client.d.ts +118 -0
- package/dist/cjs/api/resources/unstable/resources/dataEvents/client/Client.js +282 -0
- package/dist/cjs/api/resources/unstable/resources/dataEvents/client/index.d.ts +1 -0
- package/dist/cjs/api/resources/unstable/resources/dataEvents/client/index.js +17 -0
- package/dist/cjs/api/resources/unstable/resources/dataEvents/client/requests/CreateDataEventSummariesRequest.d.ts +25 -0
- package/dist/cjs/api/resources/unstable/resources/dataEvents/client/requests/CreateDataEventSummariesRequest.js +3 -0
- package/dist/cjs/api/resources/unstable/resources/dataEvents/client/requests/LisDataEventsRequest.d.ts +17 -0
- package/dist/cjs/api/resources/unstable/resources/dataEvents/client/requests/LisDataEventsRequest.js +3 -0
- package/dist/cjs/api/resources/unstable/resources/dataEvents/client/requests/index.d.ts +2 -0
- package/dist/cjs/api/resources/unstable/resources/dataEvents/index.d.ts +2 -0
- package/dist/cjs/api/resources/unstable/resources/dataEvents/index.js +18 -0
- package/dist/cjs/api/resources/unstable/resources/dataEvents/types/DataEvent.d.ts +21 -0
- package/dist/cjs/api/resources/unstable/resources/dataEvents/types/DataEvent.js +3 -0
- package/dist/cjs/api/resources/unstable/resources/dataEvents/types/LisDataEventsRequestFilter.d.ts +7 -0
- package/dist/cjs/api/resources/unstable/resources/dataEvents/types/LisDataEventsRequestFilter.js +3 -0
- package/dist/cjs/api/resources/unstable/resources/dataEvents/types/index.d.ts +2 -0
- package/dist/cjs/api/resources/unstable/resources/dataEvents/types/index.js +18 -0
- package/dist/cjs/api/resources/unstable/resources/dataExport/client/Client.d.ts +94 -0
- package/dist/cjs/api/resources/unstable/resources/dataExport/client/Client.js +264 -0
- package/dist/cjs/api/resources/unstable/resources/dataExport/client/index.d.ts +1 -0
- package/dist/cjs/api/resources/unstable/resources/dataExport/client/index.js +17 -0
- package/dist/cjs/api/resources/unstable/resources/dataExport/client/requests/CancelDataExportRequest.d.ts +10 -0
- package/dist/cjs/api/resources/unstable/resources/dataExport/client/requests/CancelDataExportRequest.js +3 -0
- package/dist/cjs/api/resources/unstable/resources/dataExport/client/requests/CreateDataExportsRequest.d.ts +13 -0
- package/dist/cjs/api/resources/unstable/resources/dataExport/client/requests/CreateDataExportsRequest.js +3 -0
- package/dist/cjs/api/resources/unstable/resources/dataExport/client/requests/DownloadDataExportRequest.d.ts +10 -0
- package/dist/cjs/api/resources/unstable/resources/dataExport/client/requests/DownloadDataExportRequest.js +3 -0
- package/dist/cjs/api/resources/unstable/resources/dataExport/client/requests/GetDataExportRequest.d.ts +10 -0
- package/dist/cjs/api/resources/unstable/resources/dataExport/client/requests/GetDataExportRequest.js +3 -0
- package/dist/cjs/api/resources/unstable/resources/dataExport/client/requests/index.d.ts +4 -0
- package/dist/cjs/api/resources/unstable/resources/dataExport/index.d.ts +2 -0
- package/dist/cjs/api/resources/unstable/resources/dataExport/index.js +18 -0
- package/dist/cjs/api/resources/unstable/resources/dataExport/types/DataExport.d.ts +25 -0
- package/dist/cjs/api/resources/unstable/resources/dataExport/types/DataExport.js +16 -0
- package/dist/cjs/api/resources/unstable/resources/dataExport/types/index.d.ts +1 -0
- package/dist/cjs/api/resources/unstable/resources/dataExport/types/index.js +17 -0
- package/dist/cjs/api/resources/unstable/resources/emails/client/Client.d.ts +45 -0
- package/dist/cjs/api/resources/unstable/resources/emails/client/Client.js +163 -0
- package/dist/cjs/api/resources/unstable/resources/emails/client/index.d.ts +1 -0
- package/dist/cjs/api/resources/unstable/resources/emails/client/index.js +17 -0
- package/dist/cjs/api/resources/unstable/resources/emails/client/requests/RetrieveEmailRequest.d.ts +10 -0
- package/dist/cjs/api/resources/unstable/resources/emails/client/requests/RetrieveEmailRequest.js +3 -0
- package/dist/cjs/api/resources/unstable/resources/emails/client/requests/index.d.ts +1 -0
- package/dist/cjs/api/resources/unstable/resources/emails/index.d.ts +2 -0
- package/dist/cjs/api/resources/unstable/resources/emails/index.js +18 -0
- package/dist/cjs/api/resources/unstable/resources/emails/types/EmailList.d.ts +9 -0
- package/dist/cjs/api/resources/unstable/resources/emails/types/EmailList.js +3 -0
- package/dist/cjs/api/resources/unstable/resources/emails/types/EmailSetting.d.ts +25 -0
- package/dist/cjs/api/resources/unstable/resources/emails/types/EmailSetting.js +3 -0
- package/dist/cjs/api/resources/unstable/resources/emails/types/index.d.ts +2 -0
- package/dist/cjs/api/resources/unstable/resources/emails/types/index.js +18 -0
- package/dist/cjs/api/resources/unstable/resources/export/client/Client.d.ts +40 -0
- package/dist/cjs/api/resources/unstable/resources/export/client/Client.js +163 -0
- package/dist/cjs/api/resources/unstable/resources/export/client/index.d.ts +1 -0
- package/dist/cjs/api/resources/unstable/resources/export/client/index.js +17 -0
- package/dist/cjs/api/resources/unstable/resources/export/client/requests/PostExportReportingDataEnqueueRequest.d.ts +15 -0
- package/dist/cjs/api/resources/unstable/resources/export/client/requests/PostExportReportingDataEnqueueRequest.js +3 -0
- package/dist/cjs/api/resources/unstable/resources/export/client/requests/index.d.ts +1 -0
- package/dist/cjs/api/resources/unstable/resources/export/index.d.ts +2 -0
- package/dist/cjs/api/resources/unstable/resources/export/index.js +18 -0
- package/dist/cjs/api/resources/unstable/resources/export/types/GetExportReportingDataGetDatasetsResponse.d.ts +25 -0
- package/dist/cjs/api/resources/unstable/resources/export/types/GetExportReportingDataGetDatasetsResponse.js +3 -0
- package/dist/cjs/api/resources/unstable/resources/export/types/PostExportReportingDataEnqueueResponse.d.ts +6 -0
- package/dist/cjs/api/resources/unstable/resources/export/types/PostExportReportingDataEnqueueResponse.js +3 -0
- package/dist/cjs/api/resources/unstable/resources/export/types/index.d.ts +2 -0
- package/dist/cjs/api/resources/unstable/resources/export/types/index.js +18 -0
- package/dist/cjs/api/resources/unstable/resources/helpCenter/client/Client.d.ts +130 -0
- package/dist/cjs/api/resources/unstable/resources/helpCenter/client/Client.js +454 -0
- package/dist/cjs/api/resources/unstable/resources/helpCenter/client/index.d.ts +1 -0
- package/dist/cjs/api/resources/unstable/resources/helpCenter/client/index.js +17 -0
- package/dist/cjs/api/resources/unstable/resources/helpCenter/client/requests/CreateCollectionRequest.d.ts +24 -0
- package/dist/cjs/api/resources/unstable/resources/helpCenter/client/requests/CreateCollectionRequest.js +3 -0
- package/dist/cjs/api/resources/unstable/resources/helpCenter/client/requests/DeleteCollectionRequest.d.ts +10 -0
- package/dist/cjs/api/resources/unstable/resources/helpCenter/client/requests/DeleteCollectionRequest.js +3 -0
- package/dist/cjs/api/resources/unstable/resources/helpCenter/client/requests/RetrieveCollectionRequest.d.ts +10 -0
- package/dist/cjs/api/resources/unstable/resources/helpCenter/client/requests/RetrieveCollectionRequest.js +3 -0
- package/dist/cjs/api/resources/unstable/resources/helpCenter/client/requests/RetrieveHelpCenterRequest.d.ts +10 -0
- package/dist/cjs/api/resources/unstable/resources/helpCenter/client/requests/RetrieveHelpCenterRequest.js +3 -0
- package/dist/cjs/api/resources/unstable/resources/helpCenter/client/requests/UpdateCollectionRequest.d.ts +25 -0
- package/dist/cjs/api/resources/unstable/resources/helpCenter/client/requests/UpdateCollectionRequest.js +3 -0
- package/dist/cjs/api/resources/unstable/resources/helpCenter/client/requests/index.d.ts +5 -0
- package/dist/cjs/api/resources/unstable/resources/helpCenter/index.d.ts +2 -0
- package/dist/cjs/api/resources/unstable/resources/helpCenter/index.js +18 -0
- package/dist/cjs/api/resources/unstable/resources/helpCenter/types/Collection.d.ts +31 -0
- package/dist/cjs/api/resources/unstable/resources/helpCenter/types/Collection.js +3 -0
- package/dist/cjs/api/resources/unstable/resources/helpCenter/types/HelpCenter.d.ts +23 -0
- package/dist/cjs/api/resources/unstable/resources/helpCenter/types/HelpCenter.js +3 -0
- package/dist/cjs/api/resources/unstable/resources/helpCenter/types/HelpCenterList.d.ts +10 -0
- package/dist/cjs/api/resources/unstable/resources/helpCenter/types/HelpCenterList.js +3 -0
- package/dist/cjs/api/resources/unstable/resources/helpCenter/types/index.d.ts +3 -0
- package/dist/cjs/api/resources/unstable/resources/helpCenter/types/index.js +19 -0
- package/dist/cjs/api/resources/unstable/resources/index.d.ts +93 -0
- package/dist/cjs/api/resources/unstable/resources/index.js +132 -0
- package/dist/cjs/api/resources/unstable/resources/internalArticles/client/Client.d.ts +121 -0
- package/dist/cjs/api/resources/unstable/resources/internalArticles/client/Client.js +418 -0
- package/dist/cjs/api/resources/unstable/resources/internalArticles/client/index.d.ts +1 -0
- package/dist/cjs/api/resources/unstable/resources/internalArticles/client/index.js +17 -0
- package/dist/cjs/api/resources/unstable/resources/internalArticles/client/requests/DeleteInternalArticleRequest.d.ts +10 -0
- package/dist/cjs/api/resources/unstable/resources/internalArticles/client/requests/DeleteInternalArticleRequest.js +3 -0
- package/dist/cjs/api/resources/unstable/resources/internalArticles/client/requests/RetrieveInternalArticleRequest.d.ts +10 -0
- package/dist/cjs/api/resources/unstable/resources/internalArticles/client/requests/RetrieveInternalArticleRequest.js +3 -0
- package/dist/cjs/api/resources/unstable/resources/internalArticles/client/requests/SearchInternalArticlesRequest.d.ts +10 -0
- package/dist/cjs/api/resources/unstable/resources/internalArticles/client/requests/SearchInternalArticlesRequest.js +3 -0
- package/dist/cjs/api/resources/unstable/resources/internalArticles/client/requests/UpdateInternalArticleRequestBody.d.ts +27 -0
- package/dist/cjs/api/resources/unstable/resources/internalArticles/client/requests/UpdateInternalArticleRequestBody.js +3 -0
- package/dist/cjs/api/resources/unstable/resources/internalArticles/client/requests/index.d.ts +4 -0
- package/dist/cjs/api/resources/unstable/resources/internalArticles/index.d.ts +2 -0
- package/dist/cjs/api/resources/unstable/resources/internalArticles/index.js +18 -0
- package/dist/cjs/api/resources/unstable/resources/internalArticles/types/InternalArticleListItem.d.ts +23 -0
- package/dist/cjs/api/resources/unstable/resources/internalArticles/types/InternalArticleListItem.js +3 -0
- package/dist/cjs/api/resources/unstable/resources/internalArticles/types/InternalArticleSearchResponse.d.ts +22 -0
- package/dist/cjs/api/resources/unstable/resources/internalArticles/types/InternalArticleSearchResponse.js +3 -0
- package/dist/cjs/api/resources/unstable/resources/internalArticles/types/index.d.ts +2 -0
- package/dist/cjs/api/resources/unstable/resources/internalArticles/types/index.js +18 -0
- package/dist/cjs/api/resources/unstable/resources/jobs/client/Client.d.ts +33 -0
- package/dist/cjs/api/resources/unstable/resources/jobs/client/Client.js +116 -0
- package/dist/cjs/api/resources/unstable/resources/jobs/client/index.d.ts +1 -0
- package/dist/cjs/api/resources/unstable/resources/jobs/client/index.js +17 -0
- package/dist/cjs/api/resources/unstable/resources/jobs/client/requests/JobsStatusRequest.d.ts +10 -0
- package/dist/cjs/api/resources/unstable/resources/jobs/client/requests/JobsStatusRequest.js +3 -0
- package/dist/cjs/api/resources/unstable/resources/jobs/client/requests/index.d.ts +1 -0
- package/dist/cjs/api/resources/unstable/resources/jobs/index.d.ts +2 -0
- package/dist/cjs/api/resources/unstable/resources/jobs/index.js +18 -0
- package/dist/cjs/api/resources/unstable/resources/jobs/types/Jobs.d.ts +28 -0
- package/dist/cjs/api/resources/unstable/resources/jobs/types/Jobs.js +13 -0
- package/dist/cjs/api/resources/unstable/resources/jobs/types/index.d.ts +1 -0
- package/dist/cjs/api/resources/unstable/resources/jobs/types/index.js +17 -0
- package/dist/cjs/api/resources/unstable/resources/macros/client/Client.d.ts +81 -0
- package/dist/cjs/api/resources/unstable/resources/macros/client/Client.js +216 -0
- package/dist/cjs/api/resources/unstable/resources/macros/client/index.d.ts +1 -0
- package/dist/cjs/api/resources/unstable/resources/macros/client/index.js +17 -0
- package/dist/cjs/api/resources/unstable/resources/macros/client/requests/GetMacroRequest.d.ts +25 -0
- package/dist/cjs/api/resources/unstable/resources/macros/client/requests/GetMacroRequest.js +3 -0
- package/dist/cjs/api/resources/unstable/resources/macros/client/requests/ListMacrosRequest.d.ts +51 -0
- package/dist/cjs/api/resources/unstable/resources/macros/client/requests/ListMacrosRequest.js +3 -0
- package/dist/cjs/api/resources/unstable/resources/macros/client/requests/index.d.ts +2 -0
- package/dist/cjs/api/resources/unstable/resources/macros/index.d.ts +2 -0
- package/dist/cjs/api/resources/unstable/resources/macros/index.js +18 -0
- package/dist/cjs/api/resources/unstable/resources/macros/types/Macro.d.ts +41 -0
- package/dist/cjs/api/resources/unstable/resources/macros/types/Macro.js +19 -0
- package/dist/cjs/api/resources/unstable/resources/macros/types/MacroList.d.ts +34 -0
- package/dist/cjs/api/resources/unstable/resources/macros/types/MacroList.js +3 -0
- package/dist/cjs/api/resources/unstable/resources/macros/types/index.d.ts +2 -0
- package/dist/cjs/api/resources/unstable/resources/macros/types/index.js +18 -0
- package/dist/cjs/api/resources/unstable/resources/messages/client/Client.d.ts +220 -0
- package/dist/cjs/api/resources/unstable/resources/messages/client/Client.js +362 -0
- package/dist/cjs/api/resources/unstable/resources/messages/client/index.d.ts +1 -0
- package/dist/cjs/api/resources/unstable/resources/messages/client/index.js +17 -0
- package/dist/cjs/api/resources/unstable/resources/messages/client/requests/GetWhatsAppMessageStatusRequest.d.ts +16 -0
- package/dist/cjs/api/resources/unstable/resources/messages/client/requests/GetWhatsAppMessageStatusRequest.js +3 -0
- package/dist/cjs/api/resources/unstable/resources/messages/client/requests/index.d.ts +1 -0
- package/dist/cjs/api/resources/unstable/resources/messages/index.d.ts +2 -0
- package/dist/cjs/api/resources/unstable/resources/messages/index.js +18 -0
- package/dist/cjs/api/resources/unstable/resources/messages/types/Message.d.ts +31 -0
- package/dist/cjs/api/resources/unstable/resources/messages/types/Message.js +16 -0
- package/dist/cjs/api/resources/unstable/resources/messages/types/index.d.ts +1 -0
- package/dist/cjs/api/resources/unstable/resources/messages/types/index.js +17 -0
- package/dist/cjs/api/resources/unstable/resources/news/client/Client.d.ts +159 -0
- package/dist/cjs/api/resources/unstable/resources/news/client/Client.js +501 -0
- package/dist/cjs/api/resources/unstable/resources/news/client/index.d.ts +1 -0
- package/dist/cjs/api/resources/unstable/resources/news/client/index.js +17 -0
- package/dist/cjs/api/resources/unstable/resources/news/client/requests/DeleteNewsItemRequest.d.ts +10 -0
- package/dist/cjs/api/resources/unstable/resources/news/client/requests/DeleteNewsItemRequest.js +3 -0
- package/dist/cjs/api/resources/unstable/resources/news/client/requests/ListLiveNewsfeedItemsRequest.d.ts +10 -0
- package/dist/cjs/api/resources/unstable/resources/news/client/requests/ListLiveNewsfeedItemsRequest.js +3 -0
- package/dist/cjs/api/resources/unstable/resources/news/client/requests/RetrieveNewsItemRequest.d.ts +10 -0
- package/dist/cjs/api/resources/unstable/resources/news/client/requests/RetrieveNewsItemRequest.js +3 -0
- package/dist/cjs/api/resources/unstable/resources/news/client/requests/RetrieveNewsfeedRequest.d.ts +10 -0
- package/dist/cjs/api/resources/unstable/resources/news/client/requests/RetrieveNewsfeedRequest.js +3 -0
- package/dist/cjs/api/resources/unstable/resources/news/client/requests/UpdateNewsItemRequest.d.ts +29 -0
- package/dist/cjs/api/resources/unstable/resources/news/client/requests/UpdateNewsItemRequest.js +3 -0
- package/dist/cjs/api/resources/unstable/resources/news/client/requests/index.d.ts +5 -0
- package/dist/cjs/api/resources/unstable/resources/news/index.d.ts +2 -0
- package/dist/cjs/api/resources/unstable/resources/news/index.js +18 -0
- package/dist/cjs/api/resources/unstable/resources/news/types/NewsItem.d.ts +42 -0
- package/dist/cjs/api/resources/unstable/resources/news/types/NewsItem.js +12 -0
- package/dist/cjs/api/resources/unstable/resources/news/types/Newsfeed.d.ts +17 -0
- package/dist/cjs/api/resources/unstable/resources/news/types/Newsfeed.js +3 -0
- package/dist/cjs/api/resources/unstable/resources/news/types/NewsfeedAssignment.d.ts +9 -0
- package/dist/cjs/api/resources/unstable/resources/news/types/NewsfeedAssignment.js +3 -0
- package/dist/cjs/api/resources/unstable/resources/news/types/index.d.ts +3 -0
- package/dist/cjs/api/resources/unstable/resources/news/types/index.js +19 -0
- package/dist/cjs/api/resources/unstable/resources/notes/client/Client.d.ts +97 -0
- package/dist/cjs/api/resources/unstable/resources/notes/client/Client.js +302 -0
- package/dist/cjs/api/resources/unstable/resources/notes/client/index.d.ts +1 -0
- package/dist/cjs/api/resources/unstable/resources/notes/client/index.js +17 -0
- package/dist/cjs/api/resources/unstable/resources/notes/client/requests/CreateNoteRequest.d.ts +35 -0
- package/dist/cjs/api/resources/unstable/resources/notes/client/requests/CreateNoteRequest.js +3 -0
- package/dist/cjs/api/resources/unstable/resources/notes/client/requests/ListCompanyNotesRequest.d.ts +10 -0
- package/dist/cjs/api/resources/unstable/resources/notes/client/requests/ListCompanyNotesRequest.js +3 -0
- package/dist/cjs/api/resources/unstable/resources/notes/client/requests/ListNotesRequest.d.ts +10 -0
- package/dist/cjs/api/resources/unstable/resources/notes/client/requests/ListNotesRequest.js +3 -0
- package/dist/cjs/api/resources/unstable/resources/notes/client/requests/RetrieveNoteRequest.d.ts +10 -0
- package/dist/cjs/api/resources/unstable/resources/notes/client/requests/RetrieveNoteRequest.js +3 -0
- package/dist/cjs/api/resources/unstable/resources/notes/client/requests/index.d.ts +4 -0
- package/dist/cjs/api/resources/unstable/resources/notes/index.d.ts +2 -0
- package/dist/cjs/api/resources/unstable/resources/notes/index.js +18 -0
- package/dist/cjs/api/resources/unstable/resources/notes/types/CompanyNote.d.ts +29 -0
- package/dist/cjs/api/resources/unstable/resources/notes/types/CompanyNote.js +3 -0
- package/dist/cjs/api/resources/unstable/resources/notes/types/Note.d.ts +29 -0
- package/dist/cjs/api/resources/unstable/resources/notes/types/Note.js +3 -0
- package/dist/cjs/api/resources/unstable/resources/notes/types/index.d.ts +2 -0
- package/dist/cjs/api/resources/unstable/resources/notes/types/index.js +18 -0
- package/dist/cjs/api/resources/unstable/resources/segments/client/Client.d.ts +48 -0
- package/dist/cjs/api/resources/unstable/resources/segments/client/Client.js +171 -0
- package/dist/cjs/api/resources/unstable/resources/segments/client/index.d.ts +1 -0
- package/dist/cjs/api/resources/unstable/resources/segments/client/index.js +17 -0
- package/dist/cjs/api/resources/unstable/resources/segments/client/requests/ListSegmentsRequest.d.ts +10 -0
- package/dist/cjs/api/resources/unstable/resources/segments/client/requests/ListSegmentsRequest.js +3 -0
- package/dist/cjs/api/resources/unstable/resources/segments/client/requests/RetrieveSegmentRequest.d.ts +10 -0
- package/dist/cjs/api/resources/unstable/resources/segments/client/requests/RetrieveSegmentRequest.js +3 -0
- package/dist/cjs/api/resources/unstable/resources/segments/client/requests/index.d.ts +2 -0
- package/dist/cjs/api/resources/unstable/resources/segments/index.d.ts +2 -0
- package/dist/cjs/api/resources/unstable/resources/segments/index.js +18 -0
- package/dist/cjs/api/resources/unstable/resources/segments/types/Segment.d.ts +27 -0
- package/dist/cjs/api/resources/unstable/resources/segments/types/Segment.js +12 -0
- package/dist/cjs/api/resources/unstable/resources/segments/types/index.d.ts +1 -0
- package/dist/cjs/api/resources/unstable/resources/segments/types/index.js +17 -0
- package/dist/cjs/api/resources/unstable/resources/subscriptionTypes/client/Client.d.ts +77 -0
- package/dist/cjs/api/resources/unstable/resources/subscriptionTypes/client/Client.js +250 -0
- package/dist/cjs/api/resources/unstable/resources/subscriptionTypes/client/index.d.ts +1 -0
- package/dist/cjs/api/resources/unstable/resources/subscriptionTypes/client/index.js +17 -0
- package/dist/cjs/api/resources/unstable/resources/subscriptionTypes/client/requests/AttachSubscriptionTypeToContactRequest.d.ts +30 -0
- package/dist/cjs/api/resources/unstable/resources/subscriptionTypes/client/requests/AttachSubscriptionTypeToContactRequest.js +3 -0
- package/dist/cjs/api/resources/unstable/resources/subscriptionTypes/client/requests/DetachSubscriptionTypeToContactRequest.d.ts +13 -0
- package/dist/cjs/api/resources/unstable/resources/subscriptionTypes/client/requests/DetachSubscriptionTypeToContactRequest.js +3 -0
- package/dist/cjs/api/resources/unstable/resources/subscriptionTypes/client/requests/index.d.ts +2 -0
- package/dist/cjs/api/resources/unstable/resources/subscriptionTypes/index.d.ts +2 -0
- package/dist/cjs/api/resources/unstable/resources/subscriptionTypes/index.js +18 -0
- package/dist/cjs/api/resources/unstable/resources/subscriptionTypes/types/SubscriptionType.d.ts +42 -0
- package/dist/cjs/api/resources/unstable/resources/subscriptionTypes/types/SubscriptionType.js +25 -0
- package/dist/cjs/api/resources/unstable/resources/subscriptionTypes/types/index.d.ts +1 -0
- package/dist/cjs/api/resources/unstable/resources/subscriptionTypes/types/index.js +17 -0
- package/dist/cjs/api/resources/unstable/resources/switch/client/Client.d.ts +37 -0
- package/dist/cjs/api/resources/unstable/resources/switch/client/Client.js +127 -0
- package/dist/cjs/api/resources/unstable/resources/switch/index.d.ts +1 -0
- package/dist/cjs/api/resources/unstable/resources/switch/index.js +17 -0
- package/dist/cjs/api/resources/unstable/resources/tags/client/Client.d.ts +226 -0
- package/dist/cjs/api/resources/unstable/resources/tags/client/Client.js +680 -0
- package/dist/cjs/api/resources/unstable/resources/tags/client/index.d.ts +1 -0
- package/dist/cjs/api/resources/unstable/resources/tags/client/index.js +17 -0
- package/dist/cjs/api/resources/unstable/resources/tags/client/requests/AttachTagToContactRequest.d.ts +25 -0
- package/dist/cjs/api/resources/unstable/resources/tags/client/requests/AttachTagToContactRequest.js +3 -0
- package/dist/cjs/api/resources/unstable/resources/tags/client/requests/AttachTagToConversationRequest.d.ts +23 -0
- package/dist/cjs/api/resources/unstable/resources/tags/client/requests/AttachTagToConversationRequest.js +3 -0
- package/dist/cjs/api/resources/unstable/resources/tags/client/requests/AttachTagToTicketRequest.d.ts +23 -0
- package/dist/cjs/api/resources/unstable/resources/tags/client/requests/AttachTagToTicketRequest.js +3 -0
- package/dist/cjs/api/resources/unstable/resources/tags/client/requests/DeleteTagRequest.d.ts +10 -0
- package/dist/cjs/api/resources/unstable/resources/tags/client/requests/DeleteTagRequest.js +3 -0
- package/dist/cjs/api/resources/unstable/resources/tags/client/requests/DetachTagFromContactRequest.d.ts +13 -0
- package/dist/cjs/api/resources/unstable/resources/tags/client/requests/DetachTagFromContactRequest.js +3 -0
- package/dist/cjs/api/resources/unstable/resources/tags/client/requests/DetachTagFromConversationRequest.d.ts +30 -0
- package/dist/cjs/api/resources/unstable/resources/tags/client/requests/DetachTagFromConversationRequest.js +3 -0
- package/dist/cjs/api/resources/unstable/resources/tags/client/requests/DetachTagFromTicketRequest.d.ts +30 -0
- package/dist/cjs/api/resources/unstable/resources/tags/client/requests/DetachTagFromTicketRequest.js +3 -0
- package/dist/cjs/api/resources/unstable/resources/tags/client/requests/FindTagRequest.d.ts +10 -0
- package/dist/cjs/api/resources/unstable/resources/tags/client/requests/FindTagRequest.js +3 -0
- package/dist/cjs/api/resources/unstable/resources/tags/client/requests/index.d.ts +8 -0
- package/dist/cjs/api/resources/unstable/resources/tags/index.d.ts +2 -0
- package/dist/cjs/api/resources/unstable/resources/tags/index.js +18 -0
- package/dist/cjs/api/resources/unstable/resources/tags/types/CreateTagRequestBody.d.ts +2 -0
- package/dist/cjs/api/resources/unstable/resources/tags/types/CreateTagRequestBody.js +3 -0
- package/dist/cjs/api/resources/unstable/resources/tags/types/Tag.d.ts +15 -0
- package/dist/cjs/api/resources/unstable/resources/tags/types/Tag.js +3 -0
- package/dist/cjs/api/resources/unstable/resources/tags/types/TagBasic.d.ts +11 -0
- package/dist/cjs/api/resources/unstable/resources/tags/types/TagBasic.js +3 -0
- package/dist/cjs/api/resources/unstable/resources/tags/types/index.d.ts +3 -0
- package/dist/cjs/api/resources/unstable/resources/tags/types/index.js +19 -0
- package/dist/cjs/api/resources/unstable/resources/teams/client/Client.d.ts +45 -0
- package/dist/cjs/api/resources/unstable/resources/teams/client/Client.js +163 -0
- package/dist/cjs/api/resources/unstable/resources/teams/client/index.d.ts +1 -0
- package/dist/cjs/api/resources/unstable/resources/teams/client/index.js +17 -0
- package/dist/cjs/api/resources/unstable/resources/teams/client/requests/RetrieveTeamRequest.d.ts +10 -0
- package/dist/cjs/api/resources/unstable/resources/teams/client/requests/RetrieveTeamRequest.js +3 -0
- package/dist/cjs/api/resources/unstable/resources/teams/client/requests/index.d.ts +1 -0
- package/dist/cjs/api/resources/unstable/resources/teams/index.d.ts +2 -0
- package/dist/cjs/api/resources/unstable/resources/teams/index.js +18 -0
- package/dist/cjs/api/resources/unstable/resources/teams/types/Team.d.ts +15 -0
- package/dist/cjs/api/resources/unstable/resources/teams/types/Team.js +3 -0
- package/dist/cjs/api/resources/unstable/resources/teams/types/index.d.ts +1 -0
- package/dist/cjs/api/resources/unstable/resources/teams/types/index.js +17 -0
- package/dist/cjs/api/resources/unstable/resources/ticketStates/client/Client.d.ts +29 -0
- package/dist/cjs/api/resources/unstable/resources/ticketStates/client/Client.js +109 -0
- package/dist/cjs/api/resources/unstable/resources/ticketStates/index.d.ts +1 -0
- package/dist/cjs/api/resources/unstable/resources/ticketStates/index.js +17 -0
- package/dist/cjs/api/resources/unstable/resources/ticketTypeAttributes/client/Client.d.ts +53 -0
- package/dist/cjs/api/resources/unstable/resources/ticketTypeAttributes/client/Client.js +193 -0
- package/dist/cjs/api/resources/unstable/resources/ticketTypeAttributes/client/index.d.ts +1 -0
- package/dist/cjs/api/resources/unstable/resources/ticketTypeAttributes/client/index.js +17 -0
- package/dist/cjs/api/resources/unstable/resources/ticketTypeAttributes/client/requests/CreateTicketTypeAttributeRequest.d.ts +47 -0
- package/dist/cjs/api/resources/unstable/resources/ticketTypeAttributes/client/requests/CreateTicketTypeAttributeRequest.js +17 -0
- package/dist/cjs/api/resources/unstable/resources/ticketTypeAttributes/client/requests/UpdateTicketTypeAttributeRequest.d.ts +34 -0
- package/dist/cjs/api/resources/unstable/resources/ticketTypeAttributes/client/requests/UpdateTicketTypeAttributeRequest.js +3 -0
- package/dist/cjs/api/resources/unstable/resources/ticketTypeAttributes/client/requests/index.d.ts +2 -0
- package/dist/cjs/api/resources/unstable/resources/ticketTypeAttributes/index.d.ts +1 -0
- package/dist/cjs/api/resources/unstable/resources/ticketTypeAttributes/index.js +17 -0
- package/dist/cjs/api/resources/unstable/resources/ticketTypes/client/Client.d.ts +63 -0
- package/dist/cjs/api/resources/unstable/resources/ticketTypes/client/Client.js +223 -0
- package/dist/cjs/api/resources/unstable/resources/ticketTypes/client/index.d.ts +1 -0
- package/dist/cjs/api/resources/unstable/resources/ticketTypes/client/index.js +17 -0
- package/dist/cjs/api/resources/unstable/resources/ticketTypes/client/requests/GetTicketTypeRequest.d.ts +10 -0
- package/dist/cjs/api/resources/unstable/resources/ticketTypes/client/requests/GetTicketTypeRequest.js +3 -0
- package/dist/cjs/api/resources/unstable/resources/ticketTypes/client/requests/index.d.ts +1 -0
- package/dist/cjs/api/resources/unstable/resources/ticketTypes/index.d.ts +1 -0
- package/dist/cjs/api/resources/unstable/resources/ticketTypes/index.js +17 -0
- package/dist/cjs/api/resources/unstable/resources/tickets/client/Client.d.ts +264 -0
- package/dist/cjs/api/resources/unstable/resources/tickets/client/Client.js +556 -0
- package/dist/cjs/api/resources/unstable/resources/tickets/client/index.d.ts +1 -0
- package/dist/cjs/api/resources/unstable/resources/tickets/client/index.js +17 -0
- package/dist/cjs/api/resources/unstable/resources/tickets/client/requests/DeleteTicketRequest.d.ts +10 -0
- package/dist/cjs/api/resources/unstable/resources/tickets/client/requests/DeleteTicketRequest.js +3 -0
- package/dist/cjs/api/resources/unstable/resources/tickets/client/requests/EnqueueCreateTicketRequest.d.ts +14 -0
- package/dist/cjs/api/resources/unstable/resources/tickets/client/requests/EnqueueCreateTicketRequest.js +3 -0
- package/dist/cjs/api/resources/unstable/resources/tickets/client/requests/GetTicketRequest.d.ts +10 -0
- package/dist/cjs/api/resources/unstable/resources/tickets/client/requests/GetTicketRequest.js +3 -0
- package/dist/cjs/api/resources/unstable/resources/tickets/client/requests/ReplyTicketRequest.d.ts +56 -0
- package/dist/cjs/api/resources/unstable/resources/tickets/client/requests/ReplyTicketRequest.js +3 -0
- package/dist/cjs/api/resources/unstable/resources/tickets/client/requests/UpdateTicketRequest.d.ts +65 -0
- package/dist/cjs/api/resources/unstable/resources/tickets/client/requests/UpdateTicketRequest.js +3 -0
- package/dist/cjs/api/resources/unstable/resources/tickets/client/requests/index.d.ts +5 -0
- package/dist/cjs/api/resources/unstable/resources/tickets/index.d.ts +2 -0
- package/dist/cjs/api/resources/unstable/resources/tickets/index.js +18 -0
- package/dist/cjs/api/resources/unstable/resources/tickets/types/DeleteTicketResponse.d.ts +11 -0
- package/dist/cjs/api/resources/unstable/resources/tickets/types/DeleteTicketResponse.js +3 -0
- package/dist/cjs/api/resources/unstable/resources/tickets/types/ReplyTicketRequestBody.d.ts +2 -0
- package/dist/cjs/api/resources/unstable/resources/tickets/types/ReplyTicketRequestBody.js +3 -0
- package/dist/cjs/api/resources/unstable/resources/tickets/types/Ticket.d.ts +43 -0
- package/dist/cjs/api/resources/unstable/resources/tickets/types/Ticket.js +13 -0
- package/dist/cjs/api/resources/unstable/resources/tickets/types/TicketContacts.d.ts +10 -0
- package/dist/cjs/api/resources/unstable/resources/tickets/types/TicketContacts.js +3 -0
- package/dist/cjs/api/resources/unstable/resources/tickets/types/TicketPart.d.ts +100 -0
- package/dist/cjs/api/resources/unstable/resources/tickets/types/TicketPart.js +21 -0
- package/dist/cjs/api/resources/unstable/resources/tickets/types/TicketState.d.ts +25 -0
- package/dist/cjs/api/resources/unstable/resources/tickets/types/TicketState.js +14 -0
- package/dist/cjs/api/resources/unstable/resources/tickets/types/TicketStateDetailed.d.ts +39 -0
- package/dist/cjs/api/resources/unstable/resources/tickets/types/TicketStateDetailed.js +14 -0
- package/dist/cjs/api/resources/unstable/resources/tickets/types/TicketType.d.ts +47 -0
- package/dist/cjs/api/resources/unstable/resources/tickets/types/TicketType.js +13 -0
- package/dist/cjs/api/resources/unstable/resources/tickets/types/index.d.ts +8 -0
- package/dist/cjs/api/resources/unstable/resources/tickets/types/index.js +24 -0
- package/dist/cjs/api/resources/unstable/resources/visitors/client/Client.d.ts +85 -0
- package/dist/cjs/api/resources/unstable/resources/visitors/client/Client.js +254 -0
- package/dist/cjs/api/resources/unstable/resources/visitors/client/index.d.ts +1 -0
- package/dist/cjs/api/resources/unstable/resources/visitors/client/index.js +17 -0
- package/dist/cjs/api/resources/unstable/resources/visitors/client/requests/ConvertVisitorRequest.d.ts +18 -0
- package/dist/cjs/api/resources/unstable/resources/visitors/client/requests/ConvertVisitorRequest.js +3 -0
- package/dist/cjs/api/resources/unstable/resources/visitors/client/requests/RetrieveVisitorWithUserIdRequest.d.ts +10 -0
- package/dist/cjs/api/resources/unstable/resources/visitors/client/requests/RetrieveVisitorWithUserIdRequest.js +3 -0
- package/dist/cjs/api/resources/unstable/resources/visitors/client/requests/index.d.ts +2 -0
- package/dist/cjs/api/resources/unstable/resources/visitors/index.d.ts +1 -0
- package/dist/cjs/api/resources/unstable/resources/visitors/index.js +17 -0
- package/dist/cjs/api/resources/unstable/types/ActivityLog.d.ts +102 -0
- package/dist/cjs/api/resources/unstable/types/ActivityLog.js +77 -0
- package/dist/cjs/api/resources/unstable/types/ActivityLogList.d.ts +11 -0
- package/dist/cjs/api/resources/unstable/types/ActivityLogList.js +3 -0
- package/dist/cjs/api/resources/unstable/types/ActivityLogMetadata.d.ts +27 -0
- package/dist/cjs/api/resources/unstable/types/ActivityLogMetadata.js +3 -0
- package/dist/cjs/api/resources/unstable/types/AddressableList.d.ts +11 -0
- package/dist/cjs/api/resources/unstable/types/AddressableList.js +3 -0
- package/dist/cjs/api/resources/unstable/types/AdminList.d.ts +10 -0
- package/dist/cjs/api/resources/unstable/types/AdminList.js +3 -0
- package/dist/cjs/api/resources/unstable/types/AdminPriorityLevel.d.ts +9 -0
- package/dist/cjs/api/resources/unstable/types/AdminPriorityLevel.js +3 -0
- package/dist/cjs/api/resources/unstable/types/AdminReplyConversationRequest.d.ts +28 -0
- package/dist/cjs/api/resources/unstable/types/AdminReplyConversationRequest.js +12 -0
- package/dist/cjs/api/resources/unstable/types/AdminReplyTicketRequest.d.ts +34 -0
- package/dist/cjs/api/resources/unstable/types/AdminReplyTicketRequest.js +12 -0
- package/dist/cjs/api/resources/unstable/types/AdminWithApp.d.ts +41 -0
- package/dist/cjs/api/resources/unstable/types/AdminWithApp.js +3 -0
- package/dist/cjs/api/resources/unstable/types/AiCallResponse.d.ts +25 -0
- package/dist/cjs/api/resources/unstable/types/AiCallResponse.js +3 -0
- package/dist/cjs/api/resources/unstable/types/App.d.ts +19 -0
- package/dist/cjs/api/resources/unstable/types/App.js +3 -0
- package/dist/cjs/api/resources/unstable/types/ArticleContent.d.ts +31 -0
- package/dist/cjs/api/resources/unstable/types/ArticleContent.js +12 -0
- package/dist/cjs/api/resources/unstable/types/ArticleList.d.ts +13 -0
- package/dist/cjs/api/resources/unstable/types/ArticleList.js +3 -0
- package/dist/cjs/api/resources/unstable/types/ArticleStatistics.d.ts +19 -0
- package/dist/cjs/api/resources/unstable/types/ArticleStatistics.js +3 -0
- package/dist/cjs/api/resources/unstable/types/ArticleTranslatedContent.d.ts +82 -0
- package/dist/cjs/api/resources/unstable/types/ArticleTranslatedContent.js +3 -0
- package/dist/cjs/api/resources/unstable/types/AssignConversationRequest.d.ts +19 -0
- package/dist/cjs/api/resources/unstable/types/AssignConversationRequest.js +11 -0
- package/dist/cjs/api/resources/unstable/types/AwayStatusReason.d.ts +17 -0
- package/dist/cjs/api/resources/unstable/types/AwayStatusReason.js +3 -0
- package/dist/cjs/api/resources/unstable/types/CallList.d.ts +13 -0
- package/dist/cjs/api/resources/unstable/types/CallList.js +3 -0
- package/dist/cjs/api/resources/unstable/types/CloseConversationRequest.d.ts +10 -0
- package/dist/cjs/api/resources/unstable/types/CloseConversationRequest.js +3 -0
- package/dist/cjs/api/resources/unstable/types/CollectionList.d.ts +13 -0
- package/dist/cjs/api/resources/unstable/types/CollectionList.js +3 -0
- package/dist/cjs/api/resources/unstable/types/CompanyAttachedContacts.d.ts +13 -0
- package/dist/cjs/api/resources/unstable/types/CompanyAttachedContacts.js +3 -0
- package/dist/cjs/api/resources/unstable/types/CompanyAttachedSegments.d.ts +10 -0
- package/dist/cjs/api/resources/unstable/types/CompanyAttachedSegments.js +3 -0
- package/dist/cjs/api/resources/unstable/types/CompanyData.d.ts +11 -0
- package/dist/cjs/api/resources/unstable/types/CompanyData.js +3 -0
- package/dist/cjs/api/resources/unstable/types/CompanyList.d.ts +13 -0
- package/dist/cjs/api/resources/unstable/types/CompanyList.js +3 -0
- package/dist/cjs/api/resources/unstable/types/CompanyScroll.d.ts +14 -0
- package/dist/cjs/api/resources/unstable/types/CompanyScroll.js +3 -0
- package/dist/cjs/api/resources/unstable/types/ContactArchived.d.ts +8 -0
- package/dist/cjs/api/resources/unstable/types/ContactArchived.js +3 -0
- package/dist/cjs/api/resources/unstable/types/ContactAttachedCompanies.d.ts +13 -0
- package/dist/cjs/api/resources/unstable/types/ContactAttachedCompanies.js +3 -0
- package/dist/cjs/api/resources/unstable/types/ContactBlocked.d.ts +8 -0
- package/dist/cjs/api/resources/unstable/types/ContactBlocked.js +3 -0
- package/dist/cjs/api/resources/unstable/types/ContactCompanies.d.ts +14 -0
- package/dist/cjs/api/resources/unstable/types/ContactCompanies.js +3 -0
- package/dist/cjs/api/resources/unstable/types/ContactDeleted.d.ts +8 -0
- package/dist/cjs/api/resources/unstable/types/ContactDeleted.js +3 -0
- package/dist/cjs/api/resources/unstable/types/ContactList.d.ts +13 -0
- package/dist/cjs/api/resources/unstable/types/ContactList.js +3 -0
- package/dist/cjs/api/resources/unstable/types/ContactLocation.d.ts +13 -0
- package/dist/cjs/api/resources/unstable/types/ContactLocation.js +3 -0
- package/dist/cjs/api/resources/unstable/types/ContactNotes.d.ts +14 -0
- package/dist/cjs/api/resources/unstable/types/ContactNotes.js +3 -0
- package/dist/cjs/api/resources/unstable/types/ContactReference.d.ts +11 -0
- package/dist/cjs/api/resources/unstable/types/ContactReference.js +3 -0
- package/dist/cjs/api/resources/unstable/types/ContactReplyBaseRequest.d.ts +23 -0
- package/dist/cjs/api/resources/unstable/types/ContactReplyBaseRequest.js +3 -0
- package/dist/cjs/api/resources/unstable/types/ContactReplyConversationRequest.d.ts +2 -0
- package/dist/cjs/api/resources/unstable/types/ContactReplyConversationRequest.js +3 -0
- package/dist/cjs/api/resources/unstable/types/ContactReplyEmailRequest.d.ts +10 -0
- package/dist/cjs/api/resources/unstable/types/ContactReplyEmailRequest.js +3 -0
- package/dist/cjs/api/resources/unstable/types/ContactReplyIntercomUserIdRequest.d.ts +10 -0
- package/dist/cjs/api/resources/unstable/types/ContactReplyIntercomUserIdRequest.js +3 -0
- package/dist/cjs/api/resources/unstable/types/ContactReplyTicketEmailRequest.d.ts +8 -0
- package/dist/cjs/api/resources/unstable/types/ContactReplyTicketEmailRequest.js +3 -0
- package/dist/cjs/api/resources/unstable/types/ContactReplyTicketIntercomUserIdRequest.d.ts +8 -0
- package/dist/cjs/api/resources/unstable/types/ContactReplyTicketIntercomUserIdRequest.js +3 -0
- package/dist/cjs/api/resources/unstable/types/ContactReplyTicketRequest.d.ts +2 -0
- package/dist/cjs/api/resources/unstable/types/ContactReplyTicketRequest.js +3 -0
- package/dist/cjs/api/resources/unstable/types/ContactReplyTicketUserIdRequest.d.ts +8 -0
- package/dist/cjs/api/resources/unstable/types/ContactReplyTicketUserIdRequest.js +3 -0
- package/dist/cjs/api/resources/unstable/types/ContactReplyUserIdRequest.d.ts +10 -0
- package/dist/cjs/api/resources/unstable/types/ContactReplyUserIdRequest.js +3 -0
- package/dist/cjs/api/resources/unstable/types/ContactSegments.d.ts +10 -0
- package/dist/cjs/api/resources/unstable/types/ContactSegments.js +3 -0
- package/dist/cjs/api/resources/unstable/types/ContactSocialProfiles.d.ts +8 -0
- package/dist/cjs/api/resources/unstable/types/ContactSocialProfiles.js +3 -0
- package/dist/cjs/api/resources/unstable/types/ContactSubscriptionTypes.d.ts +14 -0
- package/dist/cjs/api/resources/unstable/types/ContactSubscriptionTypes.js +3 -0
- package/dist/cjs/api/resources/unstable/types/ContactTags.d.ts +14 -0
- package/dist/cjs/api/resources/unstable/types/ContactTags.js +3 -0
- package/dist/cjs/api/resources/unstable/types/ContactUnarchived.d.ts +8 -0
- package/dist/cjs/api/resources/unstable/types/ContactUnarchived.js +3 -0
- package/dist/cjs/api/resources/unstable/types/ContentSourcesList.d.ts +8 -0
- package/dist/cjs/api/resources/unstable/types/ContentSourcesList.js +3 -0
- package/dist/cjs/api/resources/unstable/types/ConversationAttachmentFiles.d.ts +11 -0
- package/dist/cjs/api/resources/unstable/types/ConversationAttachmentFiles.js +3 -0
- package/dist/cjs/api/resources/unstable/types/ConversationAttributeUpdatedByAdmin.d.ts +17 -0
- package/dist/cjs/api/resources/unstable/types/ConversationAttributeUpdatedByAdmin.js +3 -0
- package/dist/cjs/api/resources/unstable/types/ConversationAttributeUpdatedByWorkflow.d.ts +22 -0
- package/dist/cjs/api/resources/unstable/types/ConversationAttributeUpdatedByWorkflow.js +3 -0
- package/dist/cjs/api/resources/unstable/types/ConversationContacts.d.ts +10 -0
- package/dist/cjs/api/resources/unstable/types/ConversationContacts.js +3 -0
- package/dist/cjs/api/resources/unstable/types/ConversationDeleted.d.ts +11 -0
- package/dist/cjs/api/resources/unstable/types/ConversationDeleted.js +3 -0
- package/dist/cjs/api/resources/unstable/types/ConversationFirstContactReply.d.ts +11 -0
- package/dist/cjs/api/resources/unstable/types/ConversationFirstContactReply.js +3 -0
- package/dist/cjs/api/resources/unstable/types/ConversationList.d.ts +13 -0
- package/dist/cjs/api/resources/unstable/types/ConversationList.js +3 -0
- package/dist/cjs/api/resources/unstable/types/ConversationPart.d.ts +47 -0
- package/dist/cjs/api/resources/unstable/types/ConversationPart.js +13 -0
- package/dist/cjs/api/resources/unstable/types/ConversationPartAuthor.d.ts +17 -0
- package/dist/cjs/api/resources/unstable/types/ConversationPartAuthor.js +3 -0
- package/dist/cjs/api/resources/unstable/types/ConversationPartMetadata.d.ts +19 -0
- package/dist/cjs/api/resources/unstable/types/ConversationPartMetadata.js +3 -0
- package/dist/cjs/api/resources/unstable/types/ConversationParts.d.ts +12 -0
- package/dist/cjs/api/resources/unstable/types/ConversationParts.js +3 -0
- package/dist/cjs/api/resources/unstable/types/ConversationRating.d.ts +16 -0
- package/dist/cjs/api/resources/unstable/types/ConversationRating.js +3 -0
- package/dist/cjs/api/resources/unstable/types/ConversationResponseTime.d.ts +11 -0
- package/dist/cjs/api/resources/unstable/types/ConversationResponseTime.js +3 -0
- package/dist/cjs/api/resources/unstable/types/ConversationSource.d.ts +39 -0
- package/dist/cjs/api/resources/unstable/types/ConversationSource.js +20 -0
- package/dist/cjs/api/resources/unstable/types/ConversationStatistics.d.ts +52 -0
- package/dist/cjs/api/resources/unstable/types/ConversationStatistics.js +3 -0
- package/dist/cjs/api/resources/unstable/types/ConversationTeammates.d.ts +10 -0
- package/dist/cjs/api/resources/unstable/types/ConversationTeammates.js +3 -0
- package/dist/cjs/api/resources/unstable/types/CreateArticleRequest.d.ts +29 -0
- package/dist/cjs/api/resources/unstable/types/CreateArticleRequest.js +12 -0
- package/dist/cjs/api/resources/unstable/types/CreateDataAttributeRequest.d.ts +11 -0
- package/dist/cjs/api/resources/unstable/types/CreateDataAttributeRequest.js +3 -0
- package/dist/cjs/api/resources/unstable/types/CreateInternalArticleRequest.d.ts +13 -0
- package/dist/cjs/api/resources/unstable/types/CreateInternalArticleRequest.js +3 -0
- package/dist/cjs/api/resources/unstable/types/CreateMessageRequest.d.ts +4 -0
- package/dist/cjs/api/resources/unstable/types/CreateMessageRequest.js +3 -0
- package/dist/cjs/api/resources/unstable/types/CreateOrUpdateCompanyRequest.d.ts +23 -0
- package/dist/cjs/api/resources/unstable/types/CreateOrUpdateCompanyRequest.js +3 -0
- package/dist/cjs/api/resources/unstable/types/CreateOrUpdateTagRequest.d.ts +9 -0
- package/dist/cjs/api/resources/unstable/types/CreateOrUpdateTagRequest.js +3 -0
- package/dist/cjs/api/resources/unstable/types/CreatePhoneSwitchRequest.d.ts +9 -0
- package/dist/cjs/api/resources/unstable/types/CreatePhoneSwitchRequest.js +3 -0
- package/dist/cjs/api/resources/unstable/types/CreateTicketReplyWithCommentRequest.d.ts +2 -0
- package/dist/cjs/api/resources/unstable/types/CreateTicketReplyWithCommentRequest.js +3 -0
- package/dist/cjs/api/resources/unstable/types/CreateTicketRequestBody.d.ts +40 -0
- package/dist/cjs/api/resources/unstable/types/CreateTicketRequestBody.js +3 -0
- package/dist/cjs/api/resources/unstable/types/CreateTicketTypeRequest.d.ts +25 -0
- package/dist/cjs/api/resources/unstable/types/CreateTicketTypeRequest.js +13 -0
- package/dist/cjs/api/resources/unstable/types/CursorPages.d.ts +16 -0
- package/dist/cjs/api/resources/unstable/types/CursorPages.js +3 -0
- package/dist/cjs/api/resources/unstable/types/CustomActionFinished.d.ts +22 -0
- package/dist/cjs/api/resources/unstable/types/CustomActionFinished.js +15 -0
- package/dist/cjs/api/resources/unstable/types/CustomActionStarted.d.ts +12 -0
- package/dist/cjs/api/resources/unstable/types/CustomActionStarted.js +3 -0
- package/dist/cjs/api/resources/unstable/types/CustomAttributes.d.ts +8 -0
- package/dist/cjs/api/resources/unstable/types/CustomAttributes.js +3 -0
- package/dist/cjs/api/resources/unstable/types/CustomChannelAttribute.d.ts +6 -0
- package/dist/cjs/api/resources/unstable/types/CustomChannelAttribute.js +3 -0
- package/dist/cjs/api/resources/unstable/types/CustomChannelBaseEvent.d.ts +8 -0
- package/dist/cjs/api/resources/unstable/types/CustomChannelBaseEvent.js +3 -0
- package/dist/cjs/api/resources/unstable/types/CustomChannelContact.d.ts +18 -0
- package/dist/cjs/api/resources/unstable/types/CustomChannelContact.js +12 -0
- package/dist/cjs/api/resources/unstable/types/CustomChannelNotificationResponse.d.ts +10 -0
- package/dist/cjs/api/resources/unstable/types/CustomChannelNotificationResponse.js +3 -0
- package/dist/cjs/api/resources/unstable/types/CustomObjectInstanceDeleted.d.ts +11 -0
- package/dist/cjs/api/resources/unstable/types/CustomObjectInstanceDeleted.js +3 -0
- package/dist/cjs/api/resources/unstable/types/CustomObjectInstanceList.d.ts +9 -0
- package/dist/cjs/api/resources/unstable/types/CustomObjectInstanceList.js +3 -0
- package/dist/cjs/api/resources/unstable/types/CustomerRequest.d.ts +7 -0
- package/dist/cjs/api/resources/unstable/types/CustomerRequest.js +3 -0
- package/dist/cjs/api/resources/unstable/types/DataAttributeList.d.ts +10 -0
- package/dist/cjs/api/resources/unstable/types/DataAttributeList.js +3 -0
- package/dist/cjs/api/resources/unstable/types/DataEventList.d.ts +21 -0
- package/dist/cjs/api/resources/unstable/types/DataEventList.js +3 -0
- package/dist/cjs/api/resources/unstable/types/DataEventSummary.d.ts +16 -0
- package/dist/cjs/api/resources/unstable/types/DataEventSummary.js +3 -0
- package/dist/cjs/api/resources/unstable/types/DataEventSummaryItem.d.ts +15 -0
- package/dist/cjs/api/resources/unstable/types/DataEventSummaryItem.js +3 -0
- package/dist/cjs/api/resources/unstable/types/DataExportCsv.d.ts +57 -0
- package/dist/cjs/api/resources/unstable/types/DataExportCsv.js +3 -0
- package/dist/cjs/api/resources/unstable/types/Datetime.d.ts +7 -0
- package/dist/cjs/api/resources/unstable/types/Datetime.js +3 -0
- package/dist/cjs/api/resources/unstable/types/DeletedArticleObject.d.ts +11 -0
- package/dist/cjs/api/resources/unstable/types/DeletedArticleObject.js +3 -0
- package/dist/cjs/api/resources/unstable/types/DeletedCollectionObject.d.ts +11 -0
- package/dist/cjs/api/resources/unstable/types/DeletedCollectionObject.js +3 -0
- package/dist/cjs/api/resources/unstable/types/DeletedCompanyObject.d.ts +11 -0
- package/dist/cjs/api/resources/unstable/types/DeletedCompanyObject.js +3 -0
- package/dist/cjs/api/resources/unstable/types/DeletedInternalArticleObject.d.ts +11 -0
- package/dist/cjs/api/resources/unstable/types/DeletedInternalArticleObject.js +3 -0
- package/dist/cjs/api/resources/unstable/types/DeletedObject.d.ts +11 -0
- package/dist/cjs/api/resources/unstable/types/DeletedObject.js +3 -0
- package/dist/cjs/api/resources/unstable/types/EmailAddressHeader.d.ts +11 -0
- package/dist/cjs/api/resources/unstable/types/EmailAddressHeader.js +3 -0
- package/dist/cjs/api/resources/unstable/types/EmailMessageMetadata.d.ts +12 -0
- package/dist/cjs/api/resources/unstable/types/EmailMessageMetadata.js +3 -0
- package/dist/cjs/api/resources/unstable/types/Error_.d.ts +24 -0
- package/dist/cjs/api/resources/unstable/types/Error_.js +3 -0
- package/dist/cjs/api/resources/unstable/types/EventDetails.d.ts +2 -0
- package/dist/cjs/api/resources/unstable/types/EventDetails.js +3 -0
- package/dist/cjs/api/resources/unstable/types/FileAttribute.d.ts +18 -0
- package/dist/cjs/api/resources/unstable/types/FileAttribute.js +3 -0
- package/dist/cjs/api/resources/unstable/types/GroupContent.d.ts +11 -0
- package/dist/cjs/api/resources/unstable/types/GroupContent.js +3 -0
- package/dist/cjs/api/resources/unstable/types/GroupTranslatedContent.d.ts +82 -0
- package/dist/cjs/api/resources/unstable/types/GroupTranslatedContent.js +3 -0
- package/dist/cjs/api/resources/unstable/types/InternalArticleList.d.ts +13 -0
- package/dist/cjs/api/resources/unstable/types/InternalArticleList.js +3 -0
- package/dist/cjs/api/resources/unstable/types/LinkedObject.d.ts +26 -0
- package/dist/cjs/api/resources/unstable/types/LinkedObject.js +18 -0
- package/dist/cjs/api/resources/unstable/types/LinkedObjectList.d.ts +14 -0
- package/dist/cjs/api/resources/unstable/types/LinkedObjectList.js +3 -0
- package/dist/cjs/api/resources/unstable/types/MultipleFilterSearchRequest.d.ts +24 -0
- package/dist/cjs/api/resources/unstable/types/MultipleFilterSearchRequest.js +12 -0
- package/dist/cjs/api/resources/unstable/types/NewsItemRequest.d.ts +30 -0
- package/dist/cjs/api/resources/unstable/types/NewsItemRequest.js +12 -0
- package/dist/cjs/api/resources/unstable/types/NotFoundErrorBody.d.ts +19 -0
- package/dist/cjs/api/resources/unstable/types/NotFoundErrorBody.js +3 -0
- package/dist/cjs/api/resources/unstable/types/NoteList.d.ts +13 -0
- package/dist/cjs/api/resources/unstable/types/NoteList.js +3 -0
- package/dist/cjs/api/resources/unstable/types/OpenConversationRequest.d.ts +7 -0
- package/dist/cjs/api/resources/unstable/types/OpenConversationRequest.js +3 -0
- package/dist/cjs/api/resources/unstable/types/OperatorWorkflowEvent.d.ts +19 -0
- package/dist/cjs/api/resources/unstable/types/OperatorWorkflowEvent.js +3 -0
- package/dist/cjs/api/resources/unstable/types/PagesLink.d.ts +13 -0
- package/dist/cjs/api/resources/unstable/types/PagesLink.js +3 -0
- package/dist/cjs/api/resources/unstable/types/PaginatedResponse.d.ts +21 -0
- package/dist/cjs/api/resources/unstable/types/PaginatedResponse.js +12 -0
- package/dist/cjs/api/resources/unstable/types/PaginatedResponseDataItem.d.ts +10 -0
- package/dist/cjs/api/resources/unstable/types/PaginatedResponseDataItem.js +3 -0
- package/dist/cjs/api/resources/unstable/types/PartAttachment.d.ts +19 -0
- package/dist/cjs/api/resources/unstable/types/PartAttachment.js +3 -0
- package/dist/cjs/api/resources/unstable/types/PhoneSwitch.d.ts +9 -0
- package/dist/cjs/api/resources/unstable/types/PhoneSwitch.js +3 -0
- package/dist/cjs/api/resources/unstable/types/QuickReplyOption.d.ts +6 -0
- package/dist/cjs/api/resources/unstable/types/QuickReplyOption.js +3 -0
- package/dist/cjs/api/resources/unstable/types/Recipient.d.ts +17 -0
- package/dist/cjs/api/resources/unstable/types/Recipient.js +12 -0
- package/dist/cjs/api/resources/unstable/types/RedactConversationRequest.d.ts +24 -0
- package/dist/cjs/api/resources/unstable/types/RedactConversationRequest.js +3 -0
- package/dist/cjs/api/resources/unstable/types/Reference.d.ts +9 -0
- package/dist/cjs/api/resources/unstable/types/Reference.js +3 -0
- package/dist/cjs/api/resources/unstable/types/RegisterFinVoiceCallRequest.d.ts +22 -0
- package/dist/cjs/api/resources/unstable/types/RegisterFinVoiceCallRequest.js +13 -0
- package/dist/cjs/api/resources/unstable/types/ReplyConversationRequestBody.d.ts +2 -0
- package/dist/cjs/api/resources/unstable/types/ReplyConversationRequestBody.js +3 -0
- package/dist/cjs/api/resources/unstable/types/SearchRequest.d.ts +11 -0
- package/dist/cjs/api/resources/unstable/types/SearchRequest.js +3 -0
- package/dist/cjs/api/resources/unstable/types/SegmentList.d.ts +12 -0
- package/dist/cjs/api/resources/unstable/types/SegmentList.js +3 -0
- package/dist/cjs/api/resources/unstable/types/SingleFilterSearchRequest.d.ts +27 -0
- package/dist/cjs/api/resources/unstable/types/SingleFilterSearchRequest.js +16 -0
- package/dist/cjs/api/resources/unstable/types/SlaApplied.d.ts +32 -0
- package/dist/cjs/api/resources/unstable/types/SlaApplied.js +19 -0
- package/dist/cjs/api/resources/unstable/types/SnoozeConversationRequest.d.ts +9 -0
- package/dist/cjs/api/resources/unstable/types/SnoozeConversationRequest.js +3 -0
- package/dist/cjs/api/resources/unstable/types/SocialProfile.d.ts +11 -0
- package/dist/cjs/api/resources/unstable/types/SocialProfile.js +3 -0
- package/dist/cjs/api/resources/unstable/types/StartingAfterPaging.d.ts +6 -0
- package/dist/cjs/api/resources/unstable/types/StartingAfterPaging.js +3 -0
- package/dist/cjs/api/resources/unstable/types/SubscriptionTypeList.d.ts +10 -0
- package/dist/cjs/api/resources/unstable/types/SubscriptionTypeList.js +3 -0
- package/dist/cjs/api/resources/unstable/types/TagCompanyRequest.d.ts +20 -0
- package/dist/cjs/api/resources/unstable/types/TagCompanyRequest.js +3 -0
- package/dist/cjs/api/resources/unstable/types/TagList.d.ts +10 -0
- package/dist/cjs/api/resources/unstable/types/TagList.js +3 -0
- package/dist/cjs/api/resources/unstable/types/TagMultipleUsersRequest.d.ts +17 -0
- package/dist/cjs/api/resources/unstable/types/TagMultipleUsersRequest.js +3 -0
- package/dist/cjs/api/resources/unstable/types/Tags.d.ts +10 -0
- package/dist/cjs/api/resources/unstable/types/Tags.js +3 -0
- package/dist/cjs/api/resources/unstable/types/TeamList.d.ts +10 -0
- package/dist/cjs/api/resources/unstable/types/TeamList.js +3 -0
- package/dist/cjs/api/resources/unstable/types/TeamPriorityLevel.d.ts +9 -0
- package/dist/cjs/api/resources/unstable/types/TeamPriorityLevel.js +3 -0
- package/dist/cjs/api/resources/unstable/types/TicketCustomAttributes.d.ts +8 -0
- package/dist/cjs/api/resources/unstable/types/TicketCustomAttributes.js +3 -0
- package/dist/cjs/api/resources/unstable/types/TicketList.d.ts +13 -0
- package/dist/cjs/api/resources/unstable/types/TicketList.js +3 -0
- package/dist/cjs/api/resources/unstable/types/TicketPartAuthor.d.ts +23 -0
- package/dist/cjs/api/resources/unstable/types/TicketPartAuthor.js +14 -0
- package/dist/cjs/api/resources/unstable/types/TicketParts.d.ts +12 -0
- package/dist/cjs/api/resources/unstable/types/TicketParts.js +3 -0
- package/dist/cjs/api/resources/unstable/types/TicketReply.d.ts +32 -0
- package/dist/cjs/api/resources/unstable/types/TicketReply.js +13 -0
- package/dist/cjs/api/resources/unstable/types/TicketRequestCustomAttributes.d.ts +7 -0
- package/dist/cjs/api/resources/unstable/types/TicketRequestCustomAttributes.js +3 -0
- package/dist/cjs/api/resources/unstable/types/TicketStateList.d.ts +10 -0
- package/dist/cjs/api/resources/unstable/types/TicketStateList.js +3 -0
- package/dist/cjs/api/resources/unstable/types/TicketTypeAttribute.d.ts +39 -0
- package/dist/cjs/api/resources/unstable/types/TicketTypeAttribute.js +3 -0
- package/dist/cjs/api/resources/unstable/types/TicketTypeAttributeList.d.ts +10 -0
- package/dist/cjs/api/resources/unstable/types/TicketTypeAttributeList.js +3 -0
- package/dist/cjs/api/resources/unstable/types/TicketTypeList.d.ts +10 -0
- package/dist/cjs/api/resources/unstable/types/TicketTypeList.js +3 -0
- package/dist/cjs/api/resources/unstable/types/Translation.d.ts +11 -0
- package/dist/cjs/api/resources/unstable/types/Translation.js +3 -0
- package/dist/cjs/api/resources/unstable/types/UntagCompanyRequest.d.ts +22 -0
- package/dist/cjs/api/resources/unstable/types/UntagCompanyRequest.js +3 -0
- package/dist/cjs/api/resources/unstable/types/UpdateDataAttributeRequestBody.d.ts +8 -0
- package/dist/cjs/api/resources/unstable/types/UpdateDataAttributeRequestBody.js +3 -0
- package/dist/cjs/api/resources/unstable/types/Visitor.d.ts +125 -0
- package/dist/cjs/api/resources/unstable/types/Visitor.js +3 -0
- package/dist/cjs/api/resources/unstable/types/VisitorDeletedObject.d.ts +11 -0
- package/dist/cjs/api/resources/unstable/types/VisitorDeletedObject.js +3 -0
- package/dist/cjs/api/resources/unstable/types/WhatsappMessageStatusList.d.ts +60 -0
- package/dist/cjs/api/resources/unstable/types/WhatsappMessageStatusList.js +20 -0
- package/dist/cjs/api/resources/unstable/types/index.d.ts +154 -0
- package/dist/cjs/api/resources/unstable/types/index.js +170 -0
- package/dist/cjs/api/resources/visitors/client/Client.d.ts +86 -0
- package/dist/cjs/api/resources/visitors/client/Client.js +249 -0
- package/dist/cjs/api/resources/visitors/client/index.d.ts +1 -0
- package/dist/cjs/api/resources/visitors/client/index.js +17 -0
- package/dist/cjs/api/resources/visitors/client/requests/FindVisitorRequest.d.ts +10 -0
- package/dist/cjs/api/resources/visitors/client/requests/FindVisitorRequest.js +3 -0
- package/dist/cjs/api/resources/visitors/client/requests/MergeVisitorToContactRequest.d.ts +43 -0
- package/dist/cjs/api/resources/visitors/client/requests/MergeVisitorToContactRequest.js +3 -0
- package/dist/cjs/api/resources/visitors/client/requests/index.d.ts +2 -0
- package/dist/cjs/api/resources/visitors/index.d.ts +1 -0
- package/dist/cjs/api/resources/visitors/index.js +17 -0
- package/dist/cjs/api/types/ActivityLog.d.ts +127 -0
- package/dist/cjs/api/types/ActivityLog.js +102 -0
- package/dist/cjs/api/types/ActivityLogList.d.ts +11 -0
- package/dist/cjs/api/types/ActivityLogList.js +3 -0
- package/dist/cjs/api/types/ActivityLogMetadata.d.ts +52 -0
- package/dist/cjs/api/types/ActivityLogMetadata.js +3 -0
- package/dist/cjs/api/types/AddressableList.d.ts +11 -0
- package/dist/cjs/api/types/AddressableList.js +3 -0
- package/dist/cjs/api/types/AdminList.d.ts +10 -0
- package/dist/cjs/api/types/AdminList.js +3 -0
- package/dist/cjs/api/types/AdminPriorityLevel.d.ts +9 -0
- package/dist/cjs/api/types/AdminPriorityLevel.js +3 -0
- package/dist/cjs/api/types/AdminReplyConversationRequest.d.ts +28 -0
- package/dist/cjs/api/types/AdminReplyConversationRequest.js +12 -0
- package/dist/cjs/api/types/AdminReplyTicketRequest.d.ts +34 -0
- package/dist/cjs/api/types/AdminReplyTicketRequest.js +12 -0
- package/dist/cjs/api/types/AdminWithApp.d.ts +41 -0
- package/dist/cjs/api/types/AdminWithApp.js +3 -0
- package/dist/cjs/api/types/App.d.ts +19 -0
- package/dist/cjs/api/types/App.js +3 -0
- package/dist/cjs/api/types/ArticleContent.d.ts +31 -0
- package/dist/cjs/api/types/ArticleContent.js +12 -0
- package/dist/cjs/api/types/ArticleList.d.ts +13 -0
- package/dist/cjs/api/types/ArticleList.js +3 -0
- package/dist/cjs/api/types/ArticleStatistics.d.ts +19 -0
- package/dist/cjs/api/types/ArticleStatistics.js +3 -0
- package/dist/cjs/api/types/ArticleTranslatedContent.d.ts +82 -0
- package/dist/cjs/api/types/ArticleTranslatedContent.js +3 -0
- package/dist/cjs/api/types/AssignConversationRequest.d.ts +19 -0
- package/dist/cjs/api/types/AssignConversationRequest.js +11 -0
- package/dist/cjs/api/types/AwayStatusReason.d.ts +17 -0
- package/dist/cjs/api/types/AwayStatusReason.js +3 -0
- package/dist/cjs/api/types/CallList.d.ts +13 -0
- package/dist/cjs/api/types/CallList.js +3 -0
- package/dist/cjs/api/types/CloseConversationRequest.d.ts +10 -0
- package/dist/cjs/api/types/CloseConversationRequest.js +3 -0
- package/dist/cjs/api/types/CollectionList.d.ts +13 -0
- package/dist/cjs/api/types/CollectionList.js +3 -0
- package/dist/cjs/api/types/CompanyAttachedContacts.d.ts +13 -0
- package/dist/cjs/api/types/CompanyAttachedContacts.js +3 -0
- package/dist/cjs/api/types/CompanyAttachedSegments.d.ts +10 -0
- package/dist/cjs/api/types/CompanyAttachedSegments.js +3 -0
- package/dist/cjs/api/types/CompanyData.d.ts +11 -0
- package/dist/cjs/api/types/CompanyData.js +3 -0
- package/dist/cjs/api/types/CompanyList.d.ts +13 -0
- package/dist/cjs/api/types/CompanyList.js +3 -0
- package/dist/cjs/api/types/CompanyScroll.d.ts +14 -0
- package/dist/cjs/api/types/CompanyScroll.js +3 -0
- package/dist/cjs/api/types/ContactArchived.d.ts +8 -0
- package/dist/cjs/api/types/ContactArchived.js +3 -0
- package/dist/cjs/api/types/ContactAttachedCompanies.d.ts +13 -0
- package/dist/cjs/api/types/ContactAttachedCompanies.js +3 -0
- package/dist/cjs/api/types/ContactBlocked.d.ts +8 -0
- package/dist/cjs/api/types/ContactBlocked.js +3 -0
- package/dist/cjs/api/types/ContactCompanies.d.ts +14 -0
- package/dist/cjs/api/types/ContactCompanies.js +3 -0
- package/dist/cjs/api/types/ContactDeleted.d.ts +8 -0
- package/dist/cjs/api/types/ContactDeleted.js +3 -0
- package/dist/cjs/api/types/ContactList.d.ts +13 -0
- package/dist/cjs/api/types/ContactList.js +3 -0
- package/dist/cjs/api/types/ContactLocation.d.ts +13 -0
- package/dist/cjs/api/types/ContactLocation.js +3 -0
- package/dist/cjs/api/types/ContactNotes.d.ts +14 -0
- package/dist/cjs/api/types/ContactNotes.js +3 -0
- package/dist/cjs/api/types/ContactReference.d.ts +11 -0
- package/dist/cjs/api/types/ContactReference.js +3 -0
- package/dist/cjs/api/types/ContactReplyBaseRequest.d.ts +23 -0
- package/dist/cjs/api/types/ContactReplyBaseRequest.js +3 -0
- package/dist/cjs/api/types/ContactReplyConversationRequest.d.ts +2 -0
- package/dist/cjs/api/types/ContactReplyConversationRequest.js +3 -0
- package/dist/cjs/api/types/ContactReplyEmailRequest.d.ts +10 -0
- package/dist/cjs/api/types/ContactReplyEmailRequest.js +3 -0
- package/dist/cjs/api/types/ContactReplyIntercomUserIdRequest.d.ts +10 -0
- package/dist/cjs/api/types/ContactReplyIntercomUserIdRequest.js +3 -0
- package/dist/cjs/api/types/ContactReplyTicketEmailRequest.d.ts +8 -0
- package/dist/cjs/api/types/ContactReplyTicketEmailRequest.js +3 -0
- package/dist/cjs/api/types/ContactReplyTicketIntercomUserIdRequest.d.ts +8 -0
- package/dist/cjs/api/types/ContactReplyTicketIntercomUserIdRequest.js +3 -0
- package/dist/cjs/api/types/ContactReplyTicketRequest.d.ts +2 -0
- package/dist/cjs/api/types/ContactReplyTicketRequest.js +3 -0
- package/dist/cjs/api/types/ContactReplyTicketUserIdRequest.d.ts +8 -0
- package/dist/cjs/api/types/ContactReplyTicketUserIdRequest.js +3 -0
- package/dist/cjs/api/types/ContactReplyUserIdRequest.d.ts +10 -0
- package/dist/cjs/api/types/ContactReplyUserIdRequest.js +3 -0
- package/dist/cjs/api/types/ContactSegments.d.ts +10 -0
- package/dist/cjs/api/types/ContactSegments.js +3 -0
- package/dist/cjs/api/types/ContactSocialProfiles.d.ts +8 -0
- package/dist/cjs/api/types/ContactSocialProfiles.js +3 -0
- package/dist/cjs/api/types/ContactSubscriptionTypes.d.ts +14 -0
- package/dist/cjs/api/types/ContactSubscriptionTypes.js +3 -0
- package/dist/cjs/api/types/ContactTags.d.ts +14 -0
- package/dist/cjs/api/types/ContactTags.js +3 -0
- package/dist/cjs/api/types/ContactUnarchived.d.ts +8 -0
- package/dist/cjs/api/types/ContactUnarchived.js +3 -0
- package/dist/cjs/api/types/ContentSourcesList.d.ts +8 -0
- package/dist/cjs/api/types/ContentSourcesList.js +3 -0
- package/dist/cjs/api/types/ConversationAttachmentFiles.d.ts +11 -0
- package/dist/cjs/api/types/ConversationAttachmentFiles.js +3 -0
- package/dist/cjs/api/types/ConversationAttributeUpdatedByAdmin.d.ts +17 -0
- package/dist/cjs/api/types/ConversationAttributeUpdatedByAdmin.js +3 -0
- package/dist/cjs/api/types/ConversationAttributeUpdatedByWorkflow.d.ts +22 -0
- package/dist/cjs/api/types/ConversationAttributeUpdatedByWorkflow.js +3 -0
- package/dist/cjs/api/types/ConversationContacts.d.ts +10 -0
- package/dist/cjs/api/types/ConversationContacts.js +3 -0
- package/dist/cjs/api/types/ConversationDeleted.d.ts +11 -0
- package/dist/cjs/api/types/ConversationDeleted.js +3 -0
- package/dist/cjs/api/types/ConversationFirstContactReply.d.ts +11 -0
- package/dist/cjs/api/types/ConversationFirstContactReply.js +3 -0
- package/dist/cjs/api/types/ConversationList.d.ts +13 -0
- package/dist/cjs/api/types/ConversationList.js +3 -0
- package/dist/cjs/api/types/ConversationPart.d.ts +47 -0
- package/dist/cjs/api/types/ConversationPart.js +13 -0
- package/dist/cjs/api/types/ConversationPartAuthor.d.ts +17 -0
- package/dist/cjs/api/types/ConversationPartAuthor.js +3 -0
- package/dist/cjs/api/types/ConversationPartMetadata.d.ts +19 -0
- package/dist/cjs/api/types/ConversationPartMetadata.js +3 -0
- package/dist/cjs/api/types/ConversationParts.d.ts +12 -0
- package/dist/cjs/api/types/ConversationParts.js +3 -0
- package/dist/cjs/api/types/ConversationRating.d.ts +16 -0
- package/dist/cjs/api/types/ConversationRating.js +3 -0
- package/dist/cjs/api/types/ConversationResponseTime.d.ts +11 -0
- package/dist/cjs/api/types/ConversationResponseTime.js +3 -0
- package/dist/cjs/api/types/ConversationSource.d.ts +39 -0
- package/dist/cjs/api/types/ConversationSource.js +20 -0
- package/dist/cjs/api/types/ConversationStatistics.d.ts +52 -0
- package/dist/cjs/api/types/ConversationStatistics.js +3 -0
- package/dist/cjs/api/types/ConversationTeammates.d.ts +10 -0
- package/dist/cjs/api/types/ConversationTeammates.js +3 -0
- package/dist/cjs/api/types/CreateArticleRequest.d.ts +35 -0
- package/dist/cjs/api/types/CreateArticleRequest.js +17 -0
- package/dist/cjs/api/types/CreateContactRequest.d.ts +34 -0
- package/dist/cjs/api/types/CreateContactRequest.js +3 -0
- package/dist/cjs/api/types/CreateContactRequestTwo.d.ts +1 -0
- package/dist/cjs/api/types/CreateContactRequestTwo.js +3 -0
- package/dist/cjs/api/types/CreateDataAttributeRequest.d.ts +11 -0
- package/dist/cjs/api/types/CreateDataAttributeRequest.js +3 -0
- package/dist/cjs/api/types/CreateDataEventRequest.d.ts +19 -0
- package/dist/cjs/api/types/CreateDataEventRequest.js +3 -0
- package/dist/cjs/api/types/CreateDataEventRequestTwo.d.ts +1 -0
- package/dist/cjs/api/types/CreateDataEventRequestTwo.js +3 -0
- package/dist/cjs/api/types/CreateInternalArticleRequest.d.ts +13 -0
- package/dist/cjs/api/types/CreateInternalArticleRequest.js +3 -0
- package/dist/cjs/api/types/CreateMessageRequest.d.ts +97 -0
- package/dist/cjs/api/types/CreateMessageRequest.js +29 -0
- package/dist/cjs/api/types/CreateOrUpdateCompanyRequest.d.ts +23 -0
- package/dist/cjs/api/types/CreateOrUpdateCompanyRequest.js +3 -0
- package/dist/cjs/api/types/CreateOrUpdateTagRequest.d.ts +9 -0
- package/dist/cjs/api/types/CreateOrUpdateTagRequest.js +3 -0
- package/dist/cjs/api/types/CreatePhoneSwitchRequest.d.ts +9 -0
- package/dist/cjs/api/types/CreatePhoneSwitchRequest.js +3 -0
- package/dist/cjs/api/types/CreateTicketReplyWithCommentRequest.d.ts +2 -0
- package/dist/cjs/api/types/CreateTicketReplyWithCommentRequest.js +3 -0
- package/dist/cjs/api/types/CreateTicketRequestBody.d.ts +40 -0
- package/dist/cjs/api/types/CreateTicketRequestBody.js +3 -0
- package/dist/cjs/api/types/CreateTicketTypeRequest.d.ts +25 -0
- package/dist/cjs/api/types/CreateTicketTypeRequest.js +13 -0
- package/dist/cjs/api/types/CursorPages.d.ts +16 -0
- package/dist/cjs/api/types/CursorPages.js +3 -0
- package/dist/cjs/api/types/CustomActionFinished.d.ts +22 -0
- package/dist/cjs/api/types/CustomActionFinished.js +15 -0
- package/dist/cjs/api/types/CustomActionStarted.d.ts +12 -0
- package/dist/cjs/api/types/CustomActionStarted.js +3 -0
- package/dist/cjs/api/types/CustomAttributes.d.ts +8 -0
- package/dist/cjs/api/types/CustomAttributes.js +3 -0
- package/dist/cjs/api/types/CustomChannelAttribute.d.ts +6 -0
- package/dist/cjs/api/types/CustomChannelAttribute.js +3 -0
- package/dist/cjs/api/types/CustomChannelBaseEvent.d.ts +8 -0
- package/dist/cjs/api/types/CustomChannelBaseEvent.js +3 -0
- package/dist/cjs/api/types/CustomChannelContact.d.ts +18 -0
- package/dist/cjs/api/types/CustomChannelContact.js +12 -0
- package/dist/cjs/api/types/CustomChannelNotificationResponse.d.ts +10 -0
- package/dist/cjs/api/types/CustomChannelNotificationResponse.js +3 -0
- package/dist/cjs/api/types/CustomObjectInstanceDeleted.d.ts +11 -0
- package/dist/cjs/api/types/CustomObjectInstanceDeleted.js +3 -0
- package/dist/cjs/api/types/CustomObjectInstanceList.d.ts +9 -0
- package/dist/cjs/api/types/CustomObjectInstanceList.js +3 -0
- package/dist/cjs/api/types/CustomerRequest.d.ts +7 -0
- package/dist/cjs/api/types/CustomerRequest.js +3 -0
- package/dist/cjs/api/types/DataAttributeList.d.ts +10 -0
- package/dist/cjs/api/types/DataAttributeList.js +3 -0
- package/dist/cjs/api/types/DataEventList.d.ts +21 -0
- package/dist/cjs/api/types/DataEventList.js +3 -0
- package/dist/cjs/api/types/DataEventSummary.d.ts +16 -0
- package/dist/cjs/api/types/DataEventSummary.js +3 -0
- package/dist/cjs/api/types/DataEventSummaryItem.d.ts +15 -0
- package/dist/cjs/api/types/DataEventSummaryItem.js +3 -0
- package/dist/cjs/api/types/DataExportCsv.d.ts +57 -0
- package/dist/cjs/api/types/DataExportCsv.js +3 -0
- package/dist/cjs/api/types/Datetime.d.ts +7 -0
- package/dist/cjs/api/types/Datetime.js +3 -0
- package/dist/cjs/api/types/DeletedArticleObject.d.ts +11 -0
- package/dist/cjs/api/types/DeletedArticleObject.js +3 -0
- package/dist/cjs/api/types/DeletedCollectionObject.d.ts +11 -0
- package/dist/cjs/api/types/DeletedCollectionObject.js +3 -0
- package/dist/cjs/api/types/DeletedCompanyObject.d.ts +11 -0
- package/dist/cjs/api/types/DeletedCompanyObject.js +3 -0
- package/dist/cjs/api/types/DeletedInternalArticleObject.d.ts +11 -0
- package/dist/cjs/api/types/DeletedInternalArticleObject.js +3 -0
- package/dist/cjs/api/types/DeletedObject.d.ts +11 -0
- package/dist/cjs/api/types/DeletedObject.js +3 -0
- package/dist/cjs/api/types/EmailAddressHeader.d.ts +11 -0
- package/dist/cjs/api/types/EmailAddressHeader.js +3 -0
- package/dist/cjs/api/types/EmailMessageMetadata.d.ts +10 -0
- package/dist/cjs/api/types/EmailMessageMetadata.js +3 -0
- package/dist/cjs/api/types/Error_.d.ts +24 -0
- package/dist/cjs/api/types/Error_.js +3 -0
- package/dist/cjs/api/types/EventDetails.d.ts +2 -0
- package/dist/cjs/api/types/EventDetails.js +3 -0
- package/dist/cjs/api/types/FileAttribute.d.ts +18 -0
- package/dist/cjs/api/types/FileAttribute.js +3 -0
- package/dist/cjs/api/types/GroupContent.d.ts +11 -0
- package/dist/cjs/api/types/GroupContent.js +3 -0
- package/dist/cjs/api/types/GroupTranslatedContent.d.ts +82 -0
- package/dist/cjs/api/types/GroupTranslatedContent.js +3 -0
- package/dist/cjs/api/types/InternalArticleList.d.ts +13 -0
- package/dist/cjs/api/types/InternalArticleList.js +3 -0
- package/dist/cjs/api/types/LinkedObject.d.ts +26 -0
- package/dist/cjs/api/types/LinkedObject.js +18 -0
- package/dist/cjs/api/types/LinkedObjectList.d.ts +14 -0
- package/dist/cjs/api/types/LinkedObjectList.js +3 -0
- package/dist/cjs/api/types/Metadata.d.ts +2 -0
- package/dist/cjs/api/types/Metadata.js +3 -0
- package/dist/cjs/api/types/MultipleFilterSearchRequest.d.ts +24 -0
- package/dist/cjs/api/types/MultipleFilterSearchRequest.js +12 -0
- package/dist/cjs/api/types/NewsItemRequest.d.ts +30 -0
- package/dist/cjs/api/types/NewsItemRequest.js +12 -0
- package/dist/cjs/api/types/NotFoundErrorBody.d.ts +19 -0
- package/dist/cjs/api/types/NotFoundErrorBody.js +3 -0
- package/dist/cjs/api/types/NoteList.d.ts +12 -0
- package/dist/cjs/api/types/NoteList.js +3 -0
- package/dist/cjs/api/types/OffsetPages.d.ts +11 -0
- package/dist/cjs/api/types/OffsetPages.js +3 -0
- package/dist/cjs/api/types/OpenConversationRequest.d.ts +7 -0
- package/dist/cjs/api/types/OpenConversationRequest.js +3 -0
- package/dist/cjs/api/types/OperatorWorkflowEvent.d.ts +19 -0
- package/dist/cjs/api/types/OperatorWorkflowEvent.js +3 -0
- package/dist/cjs/api/types/PagesLink.d.ts +13 -0
- package/dist/cjs/api/types/PagesLink.js +3 -0
- package/dist/cjs/api/types/PaginatedResponse.d.ts +21 -0
- package/dist/cjs/api/types/PaginatedResponse.js +12 -0
- package/dist/cjs/api/types/PaginatedResponseDataItem.d.ts +10 -0
- package/dist/cjs/api/types/PaginatedResponseDataItem.js +3 -0
- package/dist/cjs/api/types/PartAttachment.d.ts +19 -0
- package/dist/cjs/api/types/PartAttachment.js +3 -0
- package/dist/cjs/api/types/PhoneSwitch.d.ts +9 -0
- package/dist/cjs/api/types/PhoneSwitch.js +3 -0
- package/dist/cjs/api/types/QuickReplyOption.d.ts +6 -0
- package/dist/cjs/api/types/QuickReplyOption.js +3 -0
- package/dist/cjs/api/types/Recipient.d.ts +17 -0
- package/dist/cjs/api/types/Recipient.js +12 -0
- package/dist/cjs/api/types/RedactConversationRequest.d.ts +24 -0
- package/dist/cjs/api/types/RedactConversationRequest.js +3 -0
- package/dist/cjs/api/types/Reference.d.ts +9 -0
- package/dist/cjs/api/types/Reference.js +3 -0
- package/dist/cjs/api/types/ReplyConversationRequest.d.ts +2 -0
- package/dist/cjs/api/types/ReplyConversationRequest.js +3 -0
- package/dist/cjs/api/types/SearchRequest.d.ts +11 -0
- package/dist/cjs/api/types/SearchRequest.js +3 -0
- package/dist/cjs/api/types/SegmentList.d.ts +12 -0
- package/dist/cjs/api/types/SegmentList.js +3 -0
- package/dist/cjs/api/types/SingleFilterSearchRequest.d.ts +31 -0
- package/dist/cjs/api/types/SingleFilterSearchRequest.js +20 -0
- package/dist/cjs/api/types/SlaApplied.d.ts +32 -0
- package/dist/cjs/api/types/SlaApplied.js +19 -0
- package/dist/cjs/api/types/SnoozeConversationRequest.d.ts +9 -0
- package/dist/cjs/api/types/SnoozeConversationRequest.js +3 -0
- package/dist/cjs/api/types/SocialProfile.d.ts +11 -0
- package/dist/cjs/api/types/SocialProfile.js +3 -0
- package/dist/cjs/api/types/StartingAfterPaging.d.ts +6 -0
- package/dist/cjs/api/types/StartingAfterPaging.js +3 -0
- package/dist/cjs/api/types/SubscriptionTypeList.d.ts +10 -0
- package/dist/cjs/api/types/SubscriptionTypeList.js +3 -0
- package/dist/cjs/api/types/TagCompanyRequest.d.ts +20 -0
- package/dist/cjs/api/types/TagCompanyRequest.js +3 -0
- package/dist/cjs/api/types/TagList.d.ts +10 -0
- package/dist/cjs/api/types/TagList.js +3 -0
- package/dist/cjs/api/types/TagMultipleUsersRequest.d.ts +17 -0
- package/dist/cjs/api/types/TagMultipleUsersRequest.js +3 -0
- package/dist/cjs/api/types/Tags.d.ts +10 -0
- package/dist/cjs/api/types/Tags.js +3 -0
- package/dist/cjs/api/types/TeamList.d.ts +10 -0
- package/dist/cjs/api/types/TeamList.js +3 -0
- package/dist/cjs/api/types/TeamPriorityLevel.d.ts +9 -0
- package/dist/cjs/api/types/TeamPriorityLevel.js +3 -0
- package/dist/cjs/api/types/TicketCustomAttributes.d.ts +4 -0
- package/dist/cjs/api/types/TicketCustomAttributes.js +3 -0
- package/dist/cjs/api/types/TicketList.d.ts +13 -0
- package/dist/cjs/api/types/TicketList.js +3 -0
- package/dist/cjs/api/types/TicketPartAuthor.d.ts +23 -0
- package/dist/cjs/api/types/TicketPartAuthor.js +14 -0
- package/dist/cjs/api/types/TicketParts.d.ts +12 -0
- package/dist/cjs/api/types/TicketParts.js +3 -0
- package/dist/cjs/api/types/TicketReply.d.ts +32 -0
- package/dist/cjs/api/types/TicketReply.js +13 -0
- package/dist/cjs/api/types/TicketRequestCustomAttributes.d.ts +4 -0
- package/dist/cjs/api/types/TicketRequestCustomAttributes.js +3 -0
- package/dist/cjs/api/types/TicketStateList.d.ts +10 -0
- package/dist/cjs/api/types/TicketStateList.js +3 -0
- package/dist/cjs/api/types/TicketTypeAttribute.d.ts +52 -0
- package/dist/cjs/api/types/TicketTypeAttribute.js +17 -0
- package/dist/cjs/api/types/TicketTypeAttributeList.d.ts +10 -0
- package/dist/cjs/api/types/TicketTypeAttributeList.js +3 -0
- package/dist/cjs/api/types/TicketTypeList.d.ts +10 -0
- package/dist/cjs/api/types/TicketTypeList.js +3 -0
- package/dist/cjs/api/types/Translation.d.ts +11 -0
- package/dist/cjs/api/types/Translation.js +3 -0
- package/dist/cjs/api/types/UntagCompanyRequest.d.ts +22 -0
- package/dist/cjs/api/types/UntagCompanyRequest.js +3 -0
- package/dist/cjs/api/types/UpdateArticleRequestBody.d.ts +10 -0
- package/dist/cjs/api/types/UpdateArticleRequestBody.js +11 -0
- package/dist/cjs/api/types/UpdateCompanyRequestBody.d.ts +19 -0
- package/dist/cjs/api/types/UpdateCompanyRequestBody.js +3 -0
- package/dist/cjs/api/types/UpdateDataAttributeRequestBody.d.ts +8 -0
- package/dist/cjs/api/types/UpdateDataAttributeRequestBody.js +3 -0
- package/dist/cjs/api/types/UpdateVisitorRequest.d.ts +12 -0
- package/dist/cjs/api/types/UpdateVisitorRequest.js +3 -0
- package/dist/cjs/api/types/UpdateVisitorRequestOne.d.ts +1 -0
- package/dist/cjs/api/types/UpdateVisitorRequestOne.js +3 -0
- package/dist/cjs/api/types/Visitor.d.ts +125 -0
- package/dist/cjs/api/types/Visitor.js +3 -0
- package/dist/cjs/api/types/VisitorDeletedObject.d.ts +11 -0
- package/dist/cjs/api/types/VisitorDeletedObject.js +3 -0
- package/dist/cjs/api/types/WhatsappMessageStatusList.d.ts +60 -0
- package/dist/cjs/api/types/WhatsappMessageStatusList.js +20 -0
- package/dist/cjs/api/types/index.d.ts +162 -0
- package/dist/cjs/api/types/index.js +178 -0
- package/dist/cjs/api/version.d.ts +2 -0
- package/dist/cjs/api/version.js +3 -0
- package/dist/cjs/auth/BearerAuthProvider.d.ts +14 -0
- package/dist/cjs/auth/BearerAuthProvider.js +72 -0
- package/dist/cjs/auth/index.d.ts +1 -0
- package/dist/cjs/auth/index.js +5 -0
- package/dist/cjs/core/auth/AuthProvider.d.ts +7 -0
- package/dist/cjs/core/auth/AuthRequest.d.ts +9 -0
- package/dist/cjs/core/auth/BasicAuth.js +27 -0
- package/dist/cjs/core/auth/BearerToken.d.ts +7 -0
- package/dist/cjs/core/auth/BearerToken.js +16 -0
- package/dist/cjs/core/auth/NoOpAuthProvider.d.ts +5 -0
- package/dist/cjs/core/auth/NoOpAuthProvider.js +9 -0
- package/dist/cjs/core/auth/index.d.ts +5 -0
- package/dist/cjs/core/auth/index.js +9 -0
- package/dist/cjs/core/base64.d.ts +2 -0
- package/dist/cjs/core/base64.js +26 -0
- package/dist/cjs/core/exports.d.ts +2 -0
- package/dist/cjs/core/exports.js +18 -0
- package/dist/cjs/core/fetcher/APIResponse.d.ts +20 -0
- package/dist/cjs/core/fetcher/BinaryResponse.d.ts +19 -0
- package/dist/cjs/core/fetcher/BinaryResponse.js +17 -0
- package/dist/cjs/core/fetcher/EndpointMetadata.d.ts +13 -0
- package/dist/cjs/core/fetcher/EndpointSupplier.d.ts +12 -0
- package/dist/cjs/core/fetcher/EndpointSupplier.js +22 -0
- package/dist/cjs/core/fetcher/Fetcher.d.ts +49 -0
- package/dist/cjs/core/fetcher/Fetcher.js +316 -0
- package/dist/cjs/core/fetcher/HttpResponsePromise.d.ts +58 -0
- package/dist/cjs/core/fetcher/RawResponse.js +44 -0
- package/dist/cjs/core/fetcher/createRequestUrl.d.ts +1 -0
- package/dist/cjs/core/fetcher/createRequestUrl.js +8 -0
- package/dist/cjs/core/fetcher/getErrorResponseBody.d.ts +1 -0
- package/dist/cjs/core/fetcher/getErrorResponseBody.js +45 -0
- package/dist/cjs/core/fetcher/getFetchFn.d.ts +1 -0
- package/dist/cjs/core/fetcher/getFetchFn.js +17 -0
- package/dist/cjs/core/fetcher/getRequestBody.d.ts +7 -0
- package/dist/cjs/core/fetcher/getRequestBody.js +27 -0
- package/dist/cjs/core/fetcher/getResponseBody.js +69 -0
- package/dist/cjs/core/fetcher/index.d.ts +11 -0
- package/dist/cjs/core/fetcher/index.js +17 -0
- package/dist/cjs/core/fetcher/makeRequest.d.ts +1 -0
- package/dist/cjs/core/fetcher/makeRequest.js +40 -0
- package/dist/cjs/core/fetcher/requestWithRetries.js +67 -0
- package/dist/cjs/core/fetcher/signals.d.ts +5 -0
- package/dist/cjs/core/fetcher/signals.js +24 -0
- package/dist/cjs/core/headers.d.ts +2 -0
- package/dist/cjs/core/headers.js +31 -0
- package/dist/cjs/core/index.d.ts +8 -0
- package/dist/cjs/core/index.js +47 -0
- package/dist/cjs/core/logging/exports.d.ts +18 -0
- package/dist/cjs/core/logging/exports.js +45 -0
- package/dist/cjs/core/logging/index.d.ts +1 -0
- package/dist/cjs/core/logging/index.js +17 -0
- package/dist/cjs/core/logging/logger.d.ts +126 -0
- package/dist/cjs/core/logging/logger.js +144 -0
- package/dist/cjs/core/pagination/Page.d.ts +33 -0
- package/dist/cjs/core/pagination/Page.js +101 -0
- package/dist/cjs/core/pagination/exports.d.ts +1 -0
- package/dist/cjs/core/pagination/index.d.ts +1 -0
- package/dist/cjs/core/pagination/index.js +5 -0
- package/dist/cjs/core/runtime/index.d.ts +1 -0
- package/dist/cjs/core/runtime/index.js +5 -0
- package/dist/cjs/core/runtime/runtime.js +103 -0
- package/dist/cjs/core/url/encodePathParam.d.ts +1 -0
- package/dist/cjs/core/url/encodePathParam.js +21 -0
- package/dist/cjs/core/url/index.d.ts +3 -0
- package/dist/cjs/core/url/index.js +9 -0
- package/dist/cjs/core/url/join.d.ts +1 -0
- package/dist/cjs/core/url/join.js +68 -0
- package/dist/cjs/core/url/qs.d.ts +6 -0
- package/dist/cjs/core/url/qs.js +64 -0
- package/dist/cjs/core/utils/index.d.ts +1 -0
- package/dist/cjs/core/utils/index.js +5 -0
- package/dist/cjs/environments.d.ts +6 -0
- package/dist/cjs/environments.js +9 -0
- package/dist/cjs/errors/IntercomError.d.ts +12 -0
- package/dist/cjs/errors/IntercomError.js +28 -0
- package/dist/cjs/errors/IntercomTimeoutError.d.ts +3 -0
- package/dist/cjs/errors/IntercomTimeoutError.js +11 -0
- package/dist/cjs/errors/handleNonStatusCodeError.d.ts +2 -0
- package/dist/cjs/errors/handleNonStatusCodeError.js +65 -0
- package/dist/cjs/errors/index.d.ts +2 -0
- package/dist/cjs/errors/index.js +7 -0
- package/dist/cjs/exports.d.ts +1 -0
- package/dist/cjs/exports.js +17 -0
- package/dist/cjs/index.d.ts +6 -0
- package/dist/cjs/index.js +48 -0
- package/dist/cjs/version.d.ts +1 -0
- package/dist/cjs/version.js +4 -0
- package/dist/esm/BaseClient.d.mts +44 -0
- package/dist/esm/BaseClient.mjs +27 -0
- package/dist/esm/Client.d.mts +102 -0
- package/dist/esm/Client.mjs +157 -0
- package/dist/esm/api/errors/BadRequestError.d.mts +5 -0
- package/dist/esm/api/errors/BadRequestError.mjs +13 -0
- package/dist/esm/api/errors/ForbiddenError.d.mts +6 -0
- package/dist/esm/api/errors/ForbiddenError.mjs +13 -0
- package/dist/esm/api/errors/NotFoundError.d.mts +5 -0
- package/dist/esm/api/errors/NotFoundError.mjs +13 -0
- package/dist/esm/api/errors/TooManyRequestsError.d.mts +6 -0
- package/dist/esm/api/errors/TooManyRequestsError.mjs +13 -0
- package/dist/esm/api/errors/UnauthorizedError.d.mts +6 -0
- package/dist/esm/api/errors/UnauthorizedError.mjs +13 -0
- package/dist/esm/api/errors/UnprocessableEntityError.d.mts +5 -0
- package/dist/esm/api/errors/UnprocessableEntityError.mjs +13 -0
- package/dist/esm/api/errors/index.d.mts +6 -0
- package/dist/esm/api/errors/index.mjs +6 -0
- package/dist/esm/api/index.d.mts +4 -0
- package/dist/esm/api/index.mjs +3 -0
- package/dist/esm/api/resources/admins/client/Client.d.mts +103 -0
- package/dist/esm/api/resources/admins/client/Client.mjs +309 -0
- package/dist/esm/api/resources/admins/client/index.d.mts +1 -0
- package/dist/esm/api/resources/admins/client/index.mjs +1 -0
- package/dist/esm/api/resources/admins/client/requests/ConfigureAwayAdminRequest.d.mts +33 -0
- package/dist/esm/api/resources/admins/client/requests/ConfigureAwayAdminRequest.mjs +2 -0
- package/dist/esm/api/resources/admins/client/requests/FindAdminRequest.d.mts +10 -0
- package/dist/esm/api/resources/admins/client/requests/FindAdminRequest.mjs +2 -0
- package/dist/esm/api/resources/admins/client/requests/ListAllActivityLogsRequest.d.mts +13 -0
- package/dist/esm/api/resources/admins/client/requests/ListAllActivityLogsRequest.mjs +2 -0
- package/dist/esm/api/resources/admins/client/requests/index.d.mts +3 -0
- package/dist/esm/api/resources/admins/index.d.mts +2 -0
- package/dist/esm/api/resources/admins/index.mjs +2 -0
- package/dist/esm/api/resources/admins/types/Admin.d.mts +38 -0
- package/dist/esm/api/resources/admins/types/Admin.mjs +2 -0
- package/dist/esm/api/resources/admins/types/index.d.mts +1 -0
- package/dist/esm/api/resources/admins/types/index.mjs +1 -0
- package/dist/esm/api/resources/aiAgent/index.d.mts +1 -0
- package/dist/esm/api/resources/aiAgent/index.mjs +1 -0
- package/dist/esm/api/resources/aiAgent/types/AiAgent.d.mts +48 -0
- package/dist/esm/api/resources/aiAgent/types/AiAgent.mjs +24 -0
- package/dist/esm/api/resources/aiAgent/types/index.d.mts +1 -0
- package/dist/esm/api/resources/aiAgent/types/index.mjs +1 -0
- package/dist/esm/api/resources/aiContent/client/Client.d.mts +182 -0
- package/dist/esm/api/resources/aiContent/client/Client.mjs +569 -0
- package/dist/esm/api/resources/aiContent/client/index.d.mts +1 -0
- package/dist/esm/api/resources/aiContent/client/index.mjs +1 -0
- package/dist/esm/api/resources/aiContent/client/requests/CreateContentImportSourceRequest.d.mts +20 -0
- package/dist/esm/api/resources/aiContent/client/requests/CreateContentImportSourceRequest.mjs +9 -0
- package/dist/esm/api/resources/aiContent/client/requests/CreateExternalPageRequest.d.mts +26 -0
- package/dist/esm/api/resources/aiContent/client/requests/CreateExternalPageRequest.mjs +2 -0
- package/dist/esm/api/resources/aiContent/client/requests/DeleteContentImportSourceRequest.d.mts +10 -0
- package/dist/esm/api/resources/aiContent/client/requests/DeleteContentImportSourceRequest.mjs +2 -0
- package/dist/esm/api/resources/aiContent/client/requests/DeleteExternalPageRequest.d.mts +10 -0
- package/dist/esm/api/resources/aiContent/client/requests/DeleteExternalPageRequest.mjs +2 -0
- package/dist/esm/api/resources/aiContent/client/requests/GetContentImportSourceRequest.d.mts +10 -0
- package/dist/esm/api/resources/aiContent/client/requests/GetContentImportSourceRequest.mjs +2 -0
- package/dist/esm/api/resources/aiContent/client/requests/GetExternalPageRequest.d.mts +10 -0
- package/dist/esm/api/resources/aiContent/client/requests/GetExternalPageRequest.mjs +2 -0
- package/dist/esm/api/resources/aiContent/client/requests/UpdateContentImportSourceRequest.d.mts +33 -0
- package/dist/esm/api/resources/aiContent/client/requests/UpdateContentImportSourceRequest.mjs +15 -0
- package/dist/esm/api/resources/aiContent/client/requests/UpdateExternalPageRequest.d.mts +27 -0
- package/dist/esm/api/resources/aiContent/client/requests/UpdateExternalPageRequest.mjs +2 -0
- package/dist/esm/api/resources/aiContent/client/requests/index.d.mts +8 -0
- package/dist/esm/api/resources/aiContent/index.d.mts +2 -0
- package/dist/esm/api/resources/aiContent/index.mjs +2 -0
- package/dist/esm/api/resources/aiContent/types/ContentImportSource.d.mts +36 -0
- package/dist/esm/api/resources/aiContent/types/ContentImportSource.mjs +15 -0
- package/dist/esm/api/resources/aiContent/types/ContentImportSourcesList.d.mts +13 -0
- package/dist/esm/api/resources/aiContent/types/ContentImportSourcesList.mjs +2 -0
- package/dist/esm/api/resources/aiContent/types/ExternalPage.d.mts +33 -0
- package/dist/esm/api/resources/aiContent/types/ExternalPage.mjs +2 -0
- package/dist/esm/api/resources/aiContent/types/ExternalPagesList.d.mts +13 -0
- package/dist/esm/api/resources/aiContent/types/ExternalPagesList.mjs +2 -0
- package/dist/esm/api/resources/aiContent/types/index.d.mts +4 -0
- package/dist/esm/api/resources/aiContent/types/index.mjs +4 -0
- package/dist/esm/api/resources/aiContentSource/index.d.mts +1 -0
- package/dist/esm/api/resources/aiContentSource/index.mjs +1 -0
- package/dist/esm/api/resources/aiContentSource/types/ContentSource.d.mts +13 -0
- package/dist/esm/api/resources/aiContentSource/types/ContentSource.mjs +2 -0
- package/dist/esm/api/resources/aiContentSource/types/index.d.mts +1 -0
- package/dist/esm/api/resources/aiContentSource/types/index.mjs +1 -0
- package/dist/esm/api/resources/articles/client/Client.d.mts +141 -0
- package/dist/esm/api/resources/articles/client/Client.mjs +421 -0
- package/dist/esm/api/resources/articles/client/index.d.mts +1 -0
- package/dist/esm/api/resources/articles/client/index.mjs +1 -0
- package/dist/esm/api/resources/articles/client/requests/DeleteArticleRequest.d.mts +10 -0
- package/dist/esm/api/resources/articles/client/requests/DeleteArticleRequest.mjs +2 -0
- package/dist/esm/api/resources/articles/client/requests/FindArticleRequest.d.mts +10 -0
- package/dist/esm/api/resources/articles/client/requests/FindArticleRequest.mjs +2 -0
- package/dist/esm/api/resources/articles/client/requests/ListArticlesRequest.d.mts +10 -0
- package/dist/esm/api/resources/articles/client/requests/ListArticlesRequest.mjs +2 -0
- package/dist/esm/api/resources/articles/client/requests/SearchArticlesRequest.d.mts +19 -0
- package/dist/esm/api/resources/articles/client/requests/SearchArticlesRequest.mjs +2 -0
- package/dist/esm/api/resources/articles/client/requests/UpdateArticleRequest.d.mts +43 -0
- package/dist/esm/api/resources/articles/client/requests/UpdateArticleRequest.mjs +9 -0
- package/dist/esm/api/resources/articles/client/requests/index.d.mts +5 -0
- package/dist/esm/api/resources/articles/index.d.mts +2 -0
- package/dist/esm/api/resources/articles/index.mjs +2 -0
- package/dist/esm/api/resources/articles/types/Article.d.mts +7 -0
- package/dist/esm/api/resources/articles/types/Article.mjs +2 -0
- package/dist/esm/api/resources/articles/types/ArticleListItem.d.mts +45 -0
- package/dist/esm/api/resources/articles/types/ArticleListItem.mjs +9 -0
- package/dist/esm/api/resources/articles/types/ArticleSearchHighlights.d.mts +53 -0
- package/dist/esm/api/resources/articles/types/ArticleSearchHighlights.mjs +26 -0
- package/dist/esm/api/resources/articles/types/ArticleSearchResponse.d.mts +24 -0
- package/dist/esm/api/resources/articles/types/ArticleSearchResponse.mjs +2 -0
- package/dist/esm/api/resources/articles/types/InternalArticle.d.mts +5 -0
- package/dist/esm/api/resources/articles/types/InternalArticle.mjs +2 -0
- package/dist/esm/api/resources/articles/types/index.d.mts +5 -0
- package/dist/esm/api/resources/articles/types/index.mjs +5 -0
- package/dist/esm/api/resources/awayStatusReasons/client/Client.d.mts +29 -0
- package/dist/esm/api/resources/awayStatusReasons/client/Client.mjs +72 -0
- package/dist/esm/api/resources/awayStatusReasons/client/index.mjs +1 -0
- package/dist/esm/api/resources/awayStatusReasons/index.d.mts +1 -0
- package/dist/esm/api/resources/awayStatusReasons/index.mjs +1 -0
- package/dist/esm/api/resources/calls/client/Client.d.mts +97 -0
- package/dist/esm/api/resources/calls/client/Client.mjs +304 -0
- package/dist/esm/api/resources/calls/client/index.d.mts +1 -0
- package/dist/esm/api/resources/calls/client/index.mjs +1 -0
- package/dist/esm/api/resources/calls/client/requests/ListCallsRequest.d.mts +13 -0
- package/dist/esm/api/resources/calls/client/requests/ListCallsRequest.mjs +2 -0
- package/dist/esm/api/resources/calls/client/requests/ListCallsWithTranscriptsRequest.d.mts +10 -0
- package/dist/esm/api/resources/calls/client/requests/ListCallsWithTranscriptsRequest.mjs +2 -0
- package/dist/esm/api/resources/calls/client/requests/ShowCallRecordingRequest.d.mts +10 -0
- package/dist/esm/api/resources/calls/client/requests/ShowCallRecordingRequest.mjs +2 -0
- package/dist/esm/api/resources/calls/client/requests/ShowCallRequest.d.mts +10 -0
- package/dist/esm/api/resources/calls/client/requests/ShowCallRequest.mjs +2 -0
- package/dist/esm/api/resources/calls/client/requests/ShowCallTranscriptRequest.d.mts +10 -0
- package/dist/esm/api/resources/calls/client/requests/ShowCallTranscriptRequest.mjs +2 -0
- package/dist/esm/api/resources/calls/client/requests/index.d.mts +5 -0
- package/dist/esm/api/resources/calls/client/requests/index.mjs +1 -0
- package/dist/esm/api/resources/calls/index.d.mts +2 -0
- package/dist/esm/api/resources/calls/index.mjs +2 -0
- package/dist/esm/api/resources/calls/types/Call.d.mts +39 -0
- package/dist/esm/api/resources/calls/types/Call.mjs +2 -0
- package/dist/esm/api/resources/calls/types/ListCallsWithTranscriptsResponse.d.mts +16 -0
- package/dist/esm/api/resources/calls/types/ListCallsWithTranscriptsResponse.mjs +2 -0
- package/dist/esm/api/resources/calls/types/index.d.mts +2 -0
- package/dist/esm/api/resources/calls/types/index.mjs +2 -0
- package/dist/esm/api/resources/companies/client/Client.d.mts +270 -0
- package/dist/esm/api/resources/companies/client/Client.mjs +772 -0
- package/dist/esm/api/resources/companies/client/index.d.mts +1 -0
- package/dist/esm/api/resources/companies/client/index.mjs +1 -0
- package/dist/esm/api/resources/companies/client/requests/AttachContactToCompanyRequest.d.mts +25 -0
- package/dist/esm/api/resources/companies/client/requests/AttachContactToCompanyRequest.mjs +2 -0
- package/dist/esm/api/resources/companies/client/requests/DeleteCompanyRequest.d.mts +10 -0
- package/dist/esm/api/resources/companies/client/requests/DeleteCompanyRequest.mjs +2 -0
- package/dist/esm/api/resources/companies/client/requests/DetachContactFromCompanyRequest.d.mts +13 -0
- package/dist/esm/api/resources/companies/client/requests/DetachContactFromCompanyRequest.mjs +2 -0
- package/dist/esm/api/resources/companies/client/requests/FindCompanyRequest.d.mts +10 -0
- package/dist/esm/api/resources/companies/client/requests/FindCompanyRequest.mjs +2 -0
- package/dist/esm/api/resources/companies/client/requests/ListAttachedContactsRequest.d.mts +10 -0
- package/dist/esm/api/resources/companies/client/requests/ListAttachedContactsRequest.mjs +2 -0
- package/dist/esm/api/resources/companies/client/requests/ListCompaniesRequest.d.mts +16 -0
- package/dist/esm/api/resources/companies/client/requests/ListCompaniesRequest.mjs +2 -0
- package/dist/esm/api/resources/companies/client/requests/ListSegmentsAttachedToCompanyRequest.d.mts +10 -0
- package/dist/esm/api/resources/companies/client/requests/ListSegmentsAttachedToCompanyRequest.mjs +2 -0
- package/dist/esm/api/resources/companies/client/requests/RetrieveCompanyRequest.d.mts +25 -0
- package/dist/esm/api/resources/companies/client/requests/RetrieveCompanyRequest.mjs +2 -0
- package/dist/esm/api/resources/companies/client/requests/ScrollCompaniesRequest.d.mts +10 -0
- package/dist/esm/api/resources/companies/client/requests/ScrollCompaniesRequest.mjs +2 -0
- package/dist/esm/api/resources/companies/client/requests/UpdateCompanyRequest.d.mts +22 -0
- package/dist/esm/api/resources/companies/client/requests/UpdateCompanyRequest.mjs +2 -0
- package/dist/esm/api/resources/companies/client/requests/index.d.mts +10 -0
- package/dist/esm/api/resources/companies/client/requests/index.mjs +1 -0
- package/dist/esm/api/resources/companies/index.d.mts +2 -0
- package/dist/esm/api/resources/companies/index.mjs +2 -0
- package/dist/esm/api/resources/companies/types/CompaniesRetrieveResponse.d.mts +10 -0
- package/dist/esm/api/resources/companies/types/CompaniesRetrieveResponse.mjs +2 -0
- package/dist/esm/api/resources/companies/types/Company.d.mts +69 -0
- package/dist/esm/api/resources/companies/types/Company.mjs +2 -0
- package/dist/esm/api/resources/companies/types/index.d.mts +2 -0
- package/dist/esm/api/resources/companies/types/index.mjs +2 -0
- package/dist/esm/api/resources/contacts/client/Client.d.mts +422 -0
- package/dist/esm/api/resources/contacts/client/Client.mjs +1132 -0
- package/dist/esm/api/resources/contacts/client/index.d.mts +1 -0
- package/dist/esm/api/resources/contacts/client/index.mjs +1 -0
- package/dist/esm/api/resources/contacts/client/requests/ArchiveContactRequest.d.mts +10 -0
- package/dist/esm/api/resources/contacts/client/requests/ArchiveContactRequest.mjs +2 -0
- package/dist/esm/api/resources/contacts/client/requests/AttachSubscriptionToContactRequest.d.mts +30 -0
- package/dist/esm/api/resources/contacts/client/requests/AttachSubscriptionToContactRequest.mjs +2 -0
- package/dist/esm/api/resources/contacts/client/requests/BlockContactRequest.d.mts +10 -0
- package/dist/esm/api/resources/contacts/client/requests/BlockContactRequest.mjs +2 -0
- package/dist/esm/api/resources/contacts/client/requests/DeleteContactRequest.d.mts +10 -0
- package/dist/esm/api/resources/contacts/client/requests/DeleteContactRequest.mjs +2 -0
- package/dist/esm/api/resources/contacts/client/requests/DetachSubscriptionFromContactRequest.d.mts +13 -0
- package/dist/esm/api/resources/contacts/client/requests/DetachSubscriptionFromContactRequest.mjs +2 -0
- package/dist/esm/api/resources/contacts/client/requests/FindContactRequest.d.mts +10 -0
- package/dist/esm/api/resources/contacts/client/requests/FindContactRequest.mjs +2 -0
- package/dist/esm/api/resources/contacts/client/requests/ListAttachedCompaniesRequest.d.mts +16 -0
- package/dist/esm/api/resources/contacts/client/requests/ListAttachedCompaniesRequest.mjs +2 -0
- package/dist/esm/api/resources/contacts/client/requests/ListAttachedSubscriptionsRequest.d.mts +10 -0
- package/dist/esm/api/resources/contacts/client/requests/ListAttachedSubscriptionsRequest.mjs +2 -0
- package/dist/esm/api/resources/contacts/client/requests/ListContactsRequest.d.mts +12 -0
- package/dist/esm/api/resources/contacts/client/requests/ListContactsRequest.mjs +2 -0
- package/dist/esm/api/resources/contacts/client/requests/ListSegmentsAttachedToContactRequest.d.mts +10 -0
- package/dist/esm/api/resources/contacts/client/requests/ListSegmentsAttachedToContactRequest.mjs +2 -0
- package/dist/esm/api/resources/contacts/client/requests/ListTagsAttachedToContactRequest.d.mts +10 -0
- package/dist/esm/api/resources/contacts/client/requests/ListTagsAttachedToContactRequest.mjs +2 -0
- package/dist/esm/api/resources/contacts/client/requests/MergeContactsRequest.d.mts +13 -0
- package/dist/esm/api/resources/contacts/client/requests/MergeContactsRequest.mjs +2 -0
- package/dist/esm/api/resources/contacts/client/requests/ShowContactByExternalIdRequest.d.mts +10 -0
- package/dist/esm/api/resources/contacts/client/requests/ShowContactByExternalIdRequest.mjs +2 -0
- package/dist/esm/api/resources/contacts/client/requests/UnarchiveContactRequest.d.mts +10 -0
- package/dist/esm/api/resources/contacts/client/requests/UnarchiveContactRequest.mjs +2 -0
- package/dist/esm/api/resources/contacts/client/requests/UpdateContactRequest.d.mts +44 -0
- package/dist/esm/api/resources/contacts/client/requests/UpdateContactRequest.mjs +2 -0
- package/dist/esm/api/resources/contacts/client/requests/index.d.mts +15 -0
- package/dist/esm/api/resources/contacts/client/requests/index.mjs +1 -0
- package/dist/esm/api/resources/contacts/index.d.mts +2 -0
- package/dist/esm/api/resources/contacts/index.mjs +2 -0
- package/dist/esm/api/resources/contacts/types/Contact.d.mts +91 -0
- package/dist/esm/api/resources/contacts/types/Contact.mjs +2 -0
- package/dist/esm/api/resources/contacts/types/ContactsCreateResponse.d.mts +5 -0
- package/dist/esm/api/resources/contacts/types/ContactsCreateResponse.mjs +2 -0
- package/dist/esm/api/resources/contacts/types/ContactsFindResponse.d.mts +5 -0
- package/dist/esm/api/resources/contacts/types/ContactsFindResponse.mjs +2 -0
- package/dist/esm/api/resources/contacts/types/ContactsMergeLeadInUserResponse.d.mts +5 -0
- package/dist/esm/api/resources/contacts/types/ContactsMergeLeadInUserResponse.mjs +2 -0
- package/dist/esm/api/resources/contacts/types/ContactsUpdateResponse.d.mts +5 -0
- package/dist/esm/api/resources/contacts/types/ContactsUpdateResponse.mjs +2 -0
- package/dist/esm/api/resources/contacts/types/ShowContactByExternalIdResponse.d.mts +5 -0
- package/dist/esm/api/resources/contacts/types/ShowContactByExternalIdResponse.mjs +2 -0
- package/dist/esm/api/resources/contacts/types/index.d.mts +6 -0
- package/dist/esm/api/resources/contacts/types/index.mjs +6 -0
- package/dist/esm/api/resources/conversations/client/Client.d.mts +555 -0
- package/dist/esm/api/resources/conversations/client/Client.mjs +1151 -0
- package/dist/esm/api/resources/conversations/client/index.d.mts +1 -0
- package/dist/esm/api/resources/conversations/client/index.mjs +1 -0
- package/dist/esm/api/resources/conversations/client/requests/AttachContactToConversationRequest.d.mts +39 -0
- package/dist/esm/api/resources/conversations/client/requests/AttachContactToConversationRequest.mjs +2 -0
- package/dist/esm/api/resources/conversations/client/requests/AutoAssignConversationRequest.d.mts +10 -0
- package/dist/esm/api/resources/conversations/client/requests/AutoAssignConversationRequest.mjs +2 -0
- package/dist/esm/api/resources/conversations/client/requests/ConvertConversationToTicketRequest.d.mts +21 -0
- package/dist/esm/api/resources/conversations/client/requests/ConvertConversationToTicketRequest.mjs +2 -0
- package/dist/esm/api/resources/conversations/client/requests/CreateConversationRequest.d.mts +43 -0
- package/dist/esm/api/resources/conversations/client/requests/CreateConversationRequest.mjs +13 -0
- package/dist/esm/api/resources/conversations/client/requests/DeleteConversationRequest.d.mts +10 -0
- package/dist/esm/api/resources/conversations/client/requests/DeleteConversationRequest.mjs +2 -0
- package/dist/esm/api/resources/conversations/client/requests/DetachContactFromConversationRequest.d.mts +37 -0
- package/dist/esm/api/resources/conversations/client/requests/DetachContactFromConversationRequest.mjs +2 -0
- package/dist/esm/api/resources/conversations/client/requests/FindConversationRequest.d.mts +16 -0
- package/dist/esm/api/resources/conversations/client/requests/FindConversationRequest.mjs +2 -0
- package/dist/esm/api/resources/conversations/client/requests/ListConversationsRequest.d.mts +13 -0
- package/dist/esm/api/resources/conversations/client/requests/ListConversationsRequest.mjs +2 -0
- package/dist/esm/api/resources/conversations/client/requests/ManageConversationPartsRequest.d.mts +57 -0
- package/dist/esm/api/resources/conversations/client/requests/ManageConversationPartsRequest.mjs +2 -0
- package/dist/esm/api/resources/conversations/client/requests/ReplyToConversationRequest.d.mts +105 -0
- package/dist/esm/api/resources/conversations/client/requests/ReplyToConversationRequest.mjs +2 -0
- package/dist/esm/api/resources/conversations/client/requests/UpdateConversationRequest.d.mts +48 -0
- package/dist/esm/api/resources/conversations/client/requests/UpdateConversationRequest.mjs +2 -0
- package/dist/esm/api/resources/conversations/client/requests/index.d.mts +11 -0
- package/dist/esm/api/resources/conversations/client/requests/index.mjs +1 -0
- package/dist/esm/api/resources/conversations/index.d.mts +2 -0
- package/dist/esm/api/resources/conversations/index.mjs +2 -0
- package/dist/esm/api/resources/conversations/types/Conversation.d.mts +63 -0
- package/dist/esm/api/resources/conversations/types/Conversation.mjs +15 -0
- package/dist/esm/api/resources/conversations/types/ConversationsManageRequestBody.d.mts +16 -0
- package/dist/esm/api/resources/conversations/types/ConversationsManageRequestBody.mjs +2 -0
- package/dist/esm/api/resources/conversations/types/index.d.mts +2 -0
- package/dist/esm/api/resources/conversations/types/index.mjs +2 -0
- package/dist/esm/api/resources/customChannelEvents/client/Client.d.mts +125 -0
- package/dist/esm/api/resources/customChannelEvents/client/Client.mjs +321 -0
- package/dist/esm/api/resources/customChannelEvents/client/index.d.mts +1 -0
- package/dist/esm/api/resources/customChannelEvents/client/index.mjs +1 -0
- package/dist/esm/api/resources/customChannelEvents/client/requests/NotifyAttributeCollectedRequest.d.mts +19 -0
- package/dist/esm/api/resources/customChannelEvents/client/requests/NotifyAttributeCollectedRequest.mjs +2 -0
- package/dist/esm/api/resources/customChannelEvents/client/requests/NotifyNewMessageRequest.d.mts +17 -0
- package/dist/esm/api/resources/customChannelEvents/client/requests/NotifyNewMessageRequest.mjs +2 -0
- package/dist/esm/api/resources/customChannelEvents/client/requests/NotifyQuickReplySelectedRequest.d.mts +19 -0
- package/dist/esm/api/resources/customChannelEvents/client/requests/NotifyQuickReplySelectedRequest.mjs +2 -0
- package/dist/esm/api/resources/customChannelEvents/client/requests/index.d.mts +3 -0
- package/dist/esm/api/resources/customChannelEvents/client/requests/index.mjs +1 -0
- package/dist/esm/api/resources/customChannelEvents/index.d.mts +1 -0
- package/dist/esm/api/resources/customChannelEvents/index.mjs +1 -0
- package/dist/esm/api/resources/customObjectInstances/client/Client.d.mts +111 -0
- package/dist/esm/api/resources/customObjectInstances/client/Client.mjs +336 -0
- package/dist/esm/api/resources/customObjectInstances/client/index.d.mts +1 -0
- package/dist/esm/api/resources/customObjectInstances/client/index.mjs +1 -0
- package/dist/esm/api/resources/customObjectInstances/client/requests/CreateOrUpdateCustomObjectInstanceRequest.d.mts +25 -0
- package/dist/esm/api/resources/customObjectInstances/client/requests/CreateOrUpdateCustomObjectInstanceRequest.mjs +2 -0
- package/dist/esm/api/resources/customObjectInstances/client/requests/DeleteCustomObjectInstancesByExternalIdRequest.d.mts +13 -0
- package/dist/esm/api/resources/customObjectInstances/client/requests/DeleteCustomObjectInstancesByExternalIdRequest.mjs +2 -0
- package/dist/esm/api/resources/customObjectInstances/client/requests/DeleteCustomObjectInstancesByIdRequest.d.mts +12 -0
- package/dist/esm/api/resources/customObjectInstances/client/requests/DeleteCustomObjectInstancesByIdRequest.mjs +2 -0
- package/dist/esm/api/resources/customObjectInstances/client/requests/GetCustomObjectInstancesByExternalIdRequest.d.mts +12 -0
- package/dist/esm/api/resources/customObjectInstances/client/requests/GetCustomObjectInstancesByExternalIdRequest.mjs +2 -0
- package/dist/esm/api/resources/customObjectInstances/client/requests/GetCustomObjectInstancesByIdRequest.d.mts +13 -0
- package/dist/esm/api/resources/customObjectInstances/client/requests/GetCustomObjectInstancesByIdRequest.mjs +2 -0
- package/dist/esm/api/resources/customObjectInstances/client/requests/index.d.mts +5 -0
- package/dist/esm/api/resources/customObjectInstances/client/requests/index.mjs +1 -0
- package/dist/esm/api/resources/customObjectInstances/index.d.mts +2 -0
- package/dist/esm/api/resources/customObjectInstances/index.mjs +2 -0
- package/dist/esm/api/resources/customObjectInstances/types/CustomObjectInstance.d.mts +21 -0
- package/dist/esm/api/resources/customObjectInstances/types/CustomObjectInstance.mjs +2 -0
- package/dist/esm/api/resources/customObjectInstances/types/index.d.mts +1 -0
- package/dist/esm/api/resources/customObjectInstances/types/index.mjs +1 -0
- package/dist/esm/api/resources/dataAttributes/client/Client.d.mts +112 -0
- package/dist/esm/api/resources/dataAttributes/client/Client.mjs +248 -0
- package/dist/esm/api/resources/dataAttributes/client/index.d.mts +1 -0
- package/dist/esm/api/resources/dataAttributes/client/index.mjs +1 -0
- package/dist/esm/api/resources/dataAttributes/client/requests/ListDataAttributesRequest.d.mts +14 -0
- package/dist/esm/api/resources/dataAttributes/client/requests/ListDataAttributesRequest.mjs +2 -0
- package/dist/esm/api/resources/dataAttributes/client/requests/UpdateDataAttributeRequest.d.mts +52 -0
- package/dist/esm/api/resources/dataAttributes/client/requests/UpdateDataAttributeRequest.mjs +2 -0
- package/dist/esm/api/resources/dataAttributes/client/requests/index.d.mts +2 -0
- package/dist/esm/api/resources/dataAttributes/client/requests/index.mjs +1 -0
- package/dist/esm/api/resources/dataAttributes/index.d.mts +2 -0
- package/dist/esm/api/resources/dataAttributes/index.mjs +2 -0
- package/dist/esm/api/resources/dataAttributes/types/DataAttribute.d.mts +56 -0
- package/dist/esm/api/resources/dataAttributes/types/DataAttribute.mjs +17 -0
- package/dist/esm/api/resources/dataAttributes/types/DataAttributesListRequestModel.d.mts +6 -0
- package/dist/esm/api/resources/dataAttributes/types/DataAttributesListRequestModel.mjs +6 -0
- package/dist/esm/api/resources/dataAttributes/types/index.d.mts +2 -0
- package/dist/esm/api/resources/dataAttributes/types/index.mjs +2 -0
- package/dist/esm/api/resources/dataEvents/index.d.mts +1 -0
- package/dist/esm/api/resources/dataEvents/index.mjs +1 -0
- package/dist/esm/api/resources/dataEvents/types/DataEvent.d.mts +21 -0
- package/dist/esm/api/resources/dataEvents/types/DataEvent.mjs +2 -0
- package/dist/esm/api/resources/dataEvents/types/index.d.mts +1 -0
- package/dist/esm/api/resources/dataEvents/types/index.mjs +1 -0
- package/dist/esm/api/resources/dataExport/client/Client.d.mts +129 -0
- package/dist/esm/api/resources/dataExport/client/Client.mjs +346 -0
- package/dist/esm/api/resources/dataExport/client/index.d.mts +1 -0
- package/dist/esm/api/resources/dataExport/client/index.mjs +1 -0
- package/dist/esm/api/resources/dataExport/client/requests/CancelDataExportRequest.d.mts +10 -0
- package/dist/esm/api/resources/dataExport/client/requests/CancelDataExportRequest.mjs +2 -0
- package/dist/esm/api/resources/dataExport/client/requests/CreateDataExportRequest.d.mts +13 -0
- package/dist/esm/api/resources/dataExport/client/requests/CreateDataExportRequest.mjs +2 -0
- package/dist/esm/api/resources/dataExport/client/requests/DownloadDataExportRequest.d.mts +10 -0
- package/dist/esm/api/resources/dataExport/client/requests/DownloadDataExportRequest.mjs +2 -0
- package/dist/esm/api/resources/dataExport/client/requests/DownloadReportingDataExportRequest.d.mts +11 -0
- package/dist/esm/api/resources/dataExport/client/requests/DownloadReportingDataExportRequest.mjs +2 -0
- package/dist/esm/api/resources/dataExport/client/requests/ExportReportingDataRequest.d.mts +22 -0
- package/dist/esm/api/resources/dataExport/client/requests/ExportReportingDataRequest.mjs +2 -0
- package/dist/esm/api/resources/dataExport/client/requests/FindDataExportRequest.d.mts +10 -0
- package/dist/esm/api/resources/dataExport/client/requests/FindDataExportRequest.mjs +2 -0
- package/dist/esm/api/resources/dataExport/client/requests/index.d.mts +6 -0
- package/dist/esm/api/resources/dataExport/client/requests/index.mjs +1 -0
- package/dist/esm/api/resources/dataExport/index.d.mts +2 -0
- package/dist/esm/api/resources/dataExport/index.mjs +2 -0
- package/dist/esm/api/resources/dataExport/types/DataExport.d.mts +25 -0
- package/dist/esm/api/resources/dataExport/types/DataExport.mjs +13 -0
- package/dist/esm/api/resources/dataExport/types/DataExportExportReportingDataResponse.d.mts +6 -0
- package/dist/esm/api/resources/dataExport/types/DataExportExportReportingDataResponse.mjs +2 -0
- package/dist/esm/api/resources/dataExport/types/index.d.mts +2 -0
- package/dist/esm/api/resources/dataExport/types/index.mjs +2 -0
- package/dist/esm/api/resources/events/client/Client.d.mts +119 -0
- package/dist/esm/api/resources/events/client/Client.mjs +256 -0
- package/dist/esm/api/resources/events/client/index.d.mts +1 -0
- package/dist/esm/api/resources/events/client/index.mjs +1 -0
- package/dist/esm/api/resources/events/client/requests/ListEventSummariesRequest.d.mts +25 -0
- package/dist/esm/api/resources/events/client/requests/ListEventSummariesRequest.mjs +2 -0
- package/dist/esm/api/resources/events/client/requests/ListEventsRequest.d.mts +25 -0
- package/dist/esm/api/resources/events/client/requests/ListEventsRequest.mjs +2 -0
- package/dist/esm/api/resources/events/client/requests/index.d.mts +2 -0
- package/dist/esm/api/resources/events/client/requests/index.mjs +1 -0
- package/dist/esm/api/resources/events/index.d.mts +1 -0
- package/dist/esm/api/resources/events/index.mjs +1 -0
- package/dist/esm/api/resources/export/client/Client.d.mts +40 -0
- package/dist/esm/api/resources/export/client/Client.mjs +126 -0
- package/dist/esm/api/resources/export/client/index.d.mts +1 -0
- package/dist/esm/api/resources/export/client/index.mjs +1 -0
- package/dist/esm/api/resources/export/client/requests/PostExportReportingDataEnqueueRequest.d.mts +15 -0
- package/dist/esm/api/resources/export/client/requests/PostExportReportingDataEnqueueRequest.mjs +2 -0
- package/dist/esm/api/resources/export/client/requests/index.d.mts +1 -0
- package/dist/esm/api/resources/export/client/requests/index.mjs +1 -0
- package/dist/esm/api/resources/export/index.d.mts +2 -0
- package/dist/esm/api/resources/export/index.mjs +2 -0
- package/dist/esm/api/resources/export/types/GetExportReportingDataGetDatasetsResponse.d.mts +25 -0
- package/dist/esm/api/resources/export/types/GetExportReportingDataGetDatasetsResponse.mjs +2 -0
- package/dist/esm/api/resources/export/types/PostExportReportingDataEnqueueResponse.d.mts +6 -0
- package/dist/esm/api/resources/export/types/PostExportReportingDataEnqueueResponse.mjs +2 -0
- package/dist/esm/api/resources/export/types/index.d.mts +2 -0
- package/dist/esm/api/resources/export/types/index.mjs +2 -0
- package/dist/esm/api/resources/helpCenter/index.d.mts +1 -0
- package/dist/esm/api/resources/helpCenter/index.mjs +1 -0
- package/dist/esm/api/resources/helpCenter/types/Collection.d.mts +31 -0
- package/dist/esm/api/resources/helpCenter/types/Collection.mjs +2 -0
- package/dist/esm/api/resources/helpCenter/types/HelpCenter.d.mts +23 -0
- package/dist/esm/api/resources/helpCenter/types/HelpCenter.mjs +2 -0
- package/dist/esm/api/resources/helpCenter/types/HelpCenterList.d.mts +10 -0
- package/dist/esm/api/resources/helpCenter/types/HelpCenterList.mjs +2 -0
- package/dist/esm/api/resources/helpCenter/types/index.d.mts +3 -0
- package/dist/esm/api/resources/helpCenter/types/index.mjs +3 -0
- package/dist/esm/api/resources/helpCenters/client/Client.d.mts +45 -0
- package/dist/esm/api/resources/helpCenters/client/Client.mjs +148 -0
- package/dist/esm/api/resources/helpCenters/client/index.d.mts +1 -0
- package/dist/esm/api/resources/helpCenters/client/index.mjs +1 -0
- package/dist/esm/api/resources/helpCenters/client/requests/FindHelpCenterRequest.d.mts +10 -0
- package/dist/esm/api/resources/helpCenters/client/requests/FindHelpCenterRequest.mjs +2 -0
- package/dist/esm/api/resources/helpCenters/client/requests/ListHelpCentersRequest.d.mts +10 -0
- package/dist/esm/api/resources/helpCenters/client/requests/ListHelpCentersRequest.mjs +2 -0
- package/dist/esm/api/resources/helpCenters/client/requests/index.d.mts +2 -0
- package/dist/esm/api/resources/helpCenters/client/requests/index.mjs +1 -0
- package/dist/esm/api/resources/helpCenters/index.d.mts +2 -0
- package/dist/esm/api/resources/helpCenters/index.mjs +2 -0
- package/dist/esm/api/resources/helpCenters/resources/collections/client/Client.d.mts +99 -0
- package/dist/esm/api/resources/helpCenters/resources/collections/client/Client.mjs +330 -0
- package/dist/esm/api/resources/helpCenters/resources/collections/client/index.d.mts +1 -0
- package/dist/esm/api/resources/helpCenters/resources/collections/client/index.mjs +1 -0
- package/dist/esm/api/resources/helpCenters/resources/collections/client/requests/CreateCollectionRequest.d.mts +24 -0
- package/dist/esm/api/resources/helpCenters/resources/collections/client/requests/CreateCollectionRequest.mjs +2 -0
- package/dist/esm/api/resources/helpCenters/resources/collections/client/requests/DeleteCollectionRequest.d.mts +10 -0
- package/dist/esm/api/resources/helpCenters/resources/collections/client/requests/DeleteCollectionRequest.mjs +2 -0
- package/dist/esm/api/resources/helpCenters/resources/collections/client/requests/FindCollectionRequest.d.mts +10 -0
- package/dist/esm/api/resources/helpCenters/resources/collections/client/requests/FindCollectionRequest.mjs +2 -0
- package/dist/esm/api/resources/helpCenters/resources/collections/client/requests/ListCollectionsRequest.d.mts +10 -0
- package/dist/esm/api/resources/helpCenters/resources/collections/client/requests/ListCollectionsRequest.mjs +2 -0
- package/dist/esm/api/resources/helpCenters/resources/collections/client/requests/UpdateCollectionRequest.d.mts +25 -0
- package/dist/esm/api/resources/helpCenters/resources/collections/client/requests/UpdateCollectionRequest.mjs +2 -0
- package/dist/esm/api/resources/helpCenters/resources/collections/client/requests/index.d.mts +5 -0
- package/dist/esm/api/resources/helpCenters/resources/collections/client/requests/index.mjs +1 -0
- package/dist/esm/api/resources/helpCenters/resources/collections/index.d.mts +1 -0
- package/dist/esm/api/resources/helpCenters/resources/collections/index.mjs +1 -0
- package/dist/esm/api/resources/helpCenters/resources/index.d.mts +2 -0
- package/dist/esm/api/resources/helpCenters/resources/index.mjs +2 -0
- package/dist/esm/api/resources/index.d.mts +82 -0
- package/dist/esm/api/resources/index.mjs +82 -0
- package/dist/esm/api/resources/internalArticles/client/Client.d.mts +121 -0
- package/dist/esm/api/resources/internalArticles/client/Client.mjs +378 -0
- package/dist/esm/api/resources/internalArticles/client/index.d.mts +1 -0
- package/dist/esm/api/resources/internalArticles/client/index.mjs +1 -0
- package/dist/esm/api/resources/internalArticles/client/requests/DeleteInternalArticleRequest.d.mts +10 -0
- package/dist/esm/api/resources/internalArticles/client/requests/DeleteInternalArticleRequest.mjs +2 -0
- package/dist/esm/api/resources/internalArticles/client/requests/RetrieveInternalArticleRequest.d.mts +10 -0
- package/dist/esm/api/resources/internalArticles/client/requests/RetrieveInternalArticleRequest.mjs +2 -0
- package/dist/esm/api/resources/internalArticles/client/requests/SearchInternalArticlesRequest.d.mts +10 -0
- package/dist/esm/api/resources/internalArticles/client/requests/SearchInternalArticlesRequest.mjs +2 -0
- package/dist/esm/api/resources/internalArticles/client/requests/UpdateInternalArticleRequestBody.d.mts +27 -0
- package/dist/esm/api/resources/internalArticles/client/requests/UpdateInternalArticleRequestBody.mjs +2 -0
- package/dist/esm/api/resources/internalArticles/client/requests/index.d.mts +4 -0
- package/dist/esm/api/resources/internalArticles/client/requests/index.mjs +1 -0
- package/dist/esm/api/resources/internalArticles/index.d.mts +2 -0
- package/dist/esm/api/resources/internalArticles/index.mjs +2 -0
- package/dist/esm/api/resources/internalArticles/types/InternalArticleListItem.d.mts +23 -0
- package/dist/esm/api/resources/internalArticles/types/InternalArticleListItem.mjs +2 -0
- package/dist/esm/api/resources/internalArticles/types/InternalArticleSearchResponse.d.mts +22 -0
- package/dist/esm/api/resources/internalArticles/types/InternalArticleSearchResponse.mjs +2 -0
- package/dist/esm/api/resources/internalArticles/types/index.d.mts +2 -0
- package/dist/esm/api/resources/internalArticles/types/index.mjs +2 -0
- package/dist/esm/api/resources/jobs/client/Client.d.mts +33 -0
- package/dist/esm/api/resources/jobs/client/Client.mjs +79 -0
- package/dist/esm/api/resources/jobs/client/index.d.mts +1 -0
- package/dist/esm/api/resources/jobs/client/index.mjs +1 -0
- package/dist/esm/api/resources/jobs/client/requests/JobsStatusRequest.d.mts +10 -0
- package/dist/esm/api/resources/jobs/client/requests/JobsStatusRequest.mjs +2 -0
- package/dist/esm/api/resources/jobs/client/requests/index.d.mts +1 -0
- package/dist/esm/api/resources/jobs/client/requests/index.mjs +1 -0
- package/dist/esm/api/resources/jobs/index.d.mts +2 -0
- package/dist/esm/api/resources/jobs/index.mjs +2 -0
- package/dist/esm/api/resources/jobs/types/Jobs.d.mts +28 -0
- package/dist/esm/api/resources/jobs/types/Jobs.mjs +10 -0
- package/dist/esm/api/resources/jobs/types/index.d.mts +1 -0
- package/dist/esm/api/resources/jobs/types/index.mjs +1 -0
- package/dist/esm/api/resources/messages/client/Client.d.mts +110 -0
- package/dist/esm/api/resources/messages/client/Client.mjs +162 -0
- package/dist/esm/api/resources/messages/client/index.d.mts +1 -0
- package/dist/esm/api/resources/messages/client/index.mjs +1 -0
- package/dist/esm/api/resources/messages/index.d.mts +2 -0
- package/dist/esm/api/resources/messages/index.mjs +2 -0
- package/dist/esm/api/resources/messages/types/Message.d.mts +29 -0
- package/dist/esm/api/resources/messages/types/Message.mjs +11 -0
- package/dist/esm/api/resources/messages/types/index.d.mts +1 -0
- package/dist/esm/api/resources/messages/types/index.mjs +1 -0
- package/dist/esm/api/resources/news/client/Client.d.mts +16 -0
- package/dist/esm/api/resources/news/client/Client.mjs +17 -0
- package/dist/esm/api/resources/news/client/index.d.mts +1 -0
- package/dist/esm/api/resources/news/client/index.mjs +1 -0
- package/dist/esm/api/resources/news/index.d.mts +3 -0
- package/dist/esm/api/resources/news/index.mjs +3 -0
- package/dist/esm/api/resources/news/resources/feeds/client/Client.d.mts +56 -0
- package/dist/esm/api/resources/news/resources/feeds/client/Client.mjs +171 -0
- package/dist/esm/api/resources/news/resources/feeds/client/index.d.mts +1 -0
- package/dist/esm/api/resources/news/resources/feeds/client/index.mjs +1 -0
- package/dist/esm/api/resources/news/resources/feeds/client/requests/FindNewsFeedRequest.d.mts +10 -0
- package/dist/esm/api/resources/news/resources/feeds/client/requests/FindNewsFeedRequest.mjs +2 -0
- package/dist/esm/api/resources/news/resources/feeds/client/requests/ListNewsFeedItemsRequest.d.mts +10 -0
- package/dist/esm/api/resources/news/resources/feeds/client/requests/ListNewsFeedItemsRequest.mjs +2 -0
- package/dist/esm/api/resources/news/resources/feeds/client/requests/index.d.mts +2 -0
- package/dist/esm/api/resources/news/resources/feeds/client/requests/index.mjs +1 -0
- package/dist/esm/api/resources/news/resources/feeds/index.d.mts +1 -0
- package/dist/esm/api/resources/news/resources/feeds/index.mjs +1 -0
- package/dist/esm/api/resources/news/resources/index.d.mts +4 -0
- package/dist/esm/api/resources/news/resources/index.mjs +4 -0
- package/dist/esm/api/resources/news/resources/items/client/Client.d.mts +114 -0
- package/dist/esm/api/resources/news/resources/items/client/Client.mjs +312 -0
- package/dist/esm/api/resources/news/resources/items/client/index.d.mts +1 -0
- package/dist/esm/api/resources/news/resources/items/client/index.mjs +1 -0
- package/dist/esm/api/resources/news/resources/items/client/requests/DeleteNewsItemRequest.d.mts +10 -0
- package/dist/esm/api/resources/news/resources/items/client/requests/DeleteNewsItemRequest.mjs +2 -0
- package/dist/esm/api/resources/news/resources/items/client/requests/FindNewsItemRequest.d.mts +10 -0
- package/dist/esm/api/resources/news/resources/items/client/requests/FindNewsItemRequest.mjs +2 -0
- package/dist/esm/api/resources/news/resources/items/client/requests/UpdateNewsItemRequest.d.mts +29 -0
- package/dist/esm/api/resources/news/resources/items/client/requests/UpdateNewsItemRequest.mjs +2 -0
- package/dist/esm/api/resources/news/resources/items/client/requests/index.d.mts +3 -0
- package/dist/esm/api/resources/news/resources/items/client/requests/index.mjs +1 -0
- package/dist/esm/api/resources/news/resources/items/index.d.mts +1 -0
- package/dist/esm/api/resources/news/resources/items/index.mjs +1 -0
- package/dist/esm/api/resources/news/types/NewsItem.d.mts +42 -0
- package/dist/esm/api/resources/news/types/NewsItem.mjs +9 -0
- package/dist/esm/api/resources/news/types/Newsfeed.d.mts +17 -0
- package/dist/esm/api/resources/news/types/Newsfeed.mjs +2 -0
- package/dist/esm/api/resources/news/types/NewsfeedAssignment.d.mts +9 -0
- package/dist/esm/api/resources/news/types/NewsfeedAssignment.mjs +2 -0
- package/dist/esm/api/resources/news/types/index.d.mts +3 -0
- package/dist/esm/api/resources/news/types/index.mjs +3 -0
- package/dist/esm/api/resources/notes/client/Client.d.mts +64 -0
- package/dist/esm/api/resources/notes/client/Client.mjs +215 -0
- package/dist/esm/api/resources/notes/client/index.d.mts +1 -0
- package/dist/esm/api/resources/notes/client/index.mjs +1 -0
- package/dist/esm/api/resources/notes/client/requests/CreateContactNoteRequest.d.mts +30 -0
- package/dist/esm/api/resources/notes/client/requests/CreateContactNoteRequest.mjs +2 -0
- package/dist/esm/api/resources/notes/client/requests/FindNoteRequest.d.mts +10 -0
- package/dist/esm/api/resources/notes/client/requests/FindNoteRequest.mjs +2 -0
- package/dist/esm/api/resources/notes/client/requests/ListContactNotesRequest.d.mts +14 -0
- package/dist/esm/api/resources/notes/client/requests/ListContactNotesRequest.mjs +2 -0
- package/dist/esm/api/resources/notes/client/requests/index.d.mts +3 -0
- package/dist/esm/api/resources/notes/client/requests/index.mjs +1 -0
- package/dist/esm/api/resources/notes/index.d.mts +2 -0
- package/dist/esm/api/resources/notes/index.mjs +2 -0
- package/dist/esm/api/resources/notes/types/Note.d.mts +29 -0
- package/dist/esm/api/resources/notes/types/Note.mjs +2 -0
- package/dist/esm/api/resources/notes/types/index.d.mts +1 -0
- package/dist/esm/api/resources/notes/types/index.mjs +1 -0
- package/dist/esm/api/resources/phoneCallRedirects/client/Client.d.mts +47 -0
- package/dist/esm/api/resources/phoneCallRedirects/client/Client.mjs +97 -0
- package/dist/esm/api/resources/phoneCallRedirects/client/index.d.mts +1 -0
- package/dist/esm/api/resources/phoneCallRedirects/client/index.mjs +1 -0
- package/dist/esm/api/resources/phoneCallRedirects/index.d.mts +1 -0
- package/dist/esm/api/resources/phoneCallRedirects/index.mjs +1 -0
- package/dist/esm/api/resources/segments/client/Client.d.mts +48 -0
- package/dist/esm/api/resources/segments/client/Client.mjs +134 -0
- package/dist/esm/api/resources/segments/client/index.d.mts +1 -0
- package/dist/esm/api/resources/segments/client/index.mjs +1 -0
- package/dist/esm/api/resources/segments/client/requests/FindSegmentRequest.d.mts +10 -0
- package/dist/esm/api/resources/segments/client/requests/FindSegmentRequest.mjs +2 -0
- package/dist/esm/api/resources/segments/client/requests/ListSegmentsRequest.d.mts +10 -0
- package/dist/esm/api/resources/segments/client/requests/ListSegmentsRequest.mjs +2 -0
- package/dist/esm/api/resources/segments/client/requests/index.d.mts +2 -0
- package/dist/esm/api/resources/segments/client/requests/index.mjs +1 -0
- package/dist/esm/api/resources/segments/index.d.mts +2 -0
- package/dist/esm/api/resources/segments/index.mjs +2 -0
- package/dist/esm/api/resources/segments/types/Segment.d.mts +27 -0
- package/dist/esm/api/resources/segments/types/Segment.mjs +9 -0
- package/dist/esm/api/resources/segments/types/index.d.mts +1 -0
- package/dist/esm/api/resources/segments/types/index.mjs +1 -0
- package/dist/esm/api/resources/subscriptionTypes/client/Client.d.mts +29 -0
- package/dist/esm/api/resources/subscriptionTypes/client/Client.mjs +72 -0
- package/dist/esm/api/resources/subscriptionTypes/client/index.d.mts +1 -0
- package/dist/esm/api/resources/subscriptionTypes/client/index.mjs +1 -0
- package/dist/esm/api/resources/subscriptionTypes/index.d.mts +2 -0
- package/dist/esm/api/resources/subscriptionTypes/index.mjs +2 -0
- package/dist/esm/api/resources/subscriptionTypes/types/SubscriptionType.d.mts +42 -0
- package/dist/esm/api/resources/subscriptionTypes/types/SubscriptionType.mjs +22 -0
- package/dist/esm/api/resources/subscriptionTypes/types/index.d.mts +1 -0
- package/dist/esm/api/resources/subscriptionTypes/types/index.mjs +1 -0
- package/dist/esm/api/resources/tags/client/Client.d.mts +226 -0
- package/dist/esm/api/resources/tags/client/Client.mjs +643 -0
- package/dist/esm/api/resources/tags/client/index.d.mts +1 -0
- package/dist/esm/api/resources/tags/client/index.mjs +1 -0
- package/dist/esm/api/resources/tags/client/requests/DeleteTagRequest.d.mts +10 -0
- package/dist/esm/api/resources/tags/client/requests/DeleteTagRequest.mjs +2 -0
- package/dist/esm/api/resources/tags/client/requests/FindTagRequest.d.mts +10 -0
- package/dist/esm/api/resources/tags/client/requests/FindTagRequest.mjs +2 -0
- package/dist/esm/api/resources/tags/client/requests/TagContactRequest.d.mts +25 -0
- package/dist/esm/api/resources/tags/client/requests/TagContactRequest.mjs +2 -0
- package/dist/esm/api/resources/tags/client/requests/TagConversationRequest.d.mts +23 -0
- package/dist/esm/api/resources/tags/client/requests/TagConversationRequest.mjs +2 -0
- package/dist/esm/api/resources/tags/client/requests/TagTicketRequest.d.mts +23 -0
- package/dist/esm/api/resources/tags/client/requests/TagTicketRequest.mjs +2 -0
- package/dist/esm/api/resources/tags/client/requests/UntagContactRequest.d.mts +13 -0
- package/dist/esm/api/resources/tags/client/requests/UntagContactRequest.mjs +2 -0
- package/dist/esm/api/resources/tags/client/requests/UntagConversationRequest.d.mts +30 -0
- package/dist/esm/api/resources/tags/client/requests/UntagConversationRequest.mjs +2 -0
- package/dist/esm/api/resources/tags/client/requests/UntagTicketRequest.d.mts +30 -0
- package/dist/esm/api/resources/tags/client/requests/UntagTicketRequest.mjs +2 -0
- package/dist/esm/api/resources/tags/client/requests/index.d.mts +8 -0
- package/dist/esm/api/resources/tags/client/requests/index.mjs +1 -0
- package/dist/esm/api/resources/tags/index.d.mts +2 -0
- package/dist/esm/api/resources/tags/index.mjs +2 -0
- package/dist/esm/api/resources/tags/types/Tag.d.mts +15 -0
- package/dist/esm/api/resources/tags/types/Tag.mjs +2 -0
- package/dist/esm/api/resources/tags/types/TagBasic.d.mts +11 -0
- package/dist/esm/api/resources/tags/types/TagBasic.mjs +2 -0
- package/dist/esm/api/resources/tags/types/TagsCreateRequestBody.d.mts +2 -0
- package/dist/esm/api/resources/tags/types/TagsCreateRequestBody.mjs +2 -0
- package/dist/esm/api/resources/tags/types/index.d.mts +3 -0
- package/dist/esm/api/resources/tags/types/index.mjs +3 -0
- package/dist/esm/api/resources/teams/client/Client.d.mts +45 -0
- package/dist/esm/api/resources/teams/client/Client.mjs +126 -0
- package/dist/esm/api/resources/teams/client/index.d.mts +1 -0
- package/dist/esm/api/resources/teams/client/index.mjs +1 -0
- package/dist/esm/api/resources/teams/client/requests/FindTeamRequest.d.mts +10 -0
- package/dist/esm/api/resources/teams/client/requests/FindTeamRequest.mjs +2 -0
- package/dist/esm/api/resources/teams/client/requests/index.d.mts +1 -0
- package/dist/esm/api/resources/teams/client/requests/index.mjs +1 -0
- package/dist/esm/api/resources/teams/index.d.mts +2 -0
- package/dist/esm/api/resources/teams/index.mjs +2 -0
- package/dist/esm/api/resources/teams/types/Team.d.mts +19 -0
- package/dist/esm/api/resources/teams/types/Team.mjs +2 -0
- package/dist/esm/api/resources/teams/types/index.d.mts +1 -0
- package/dist/esm/api/resources/teams/types/index.mjs +1 -0
- package/dist/esm/api/resources/ticketStates/client/Client.d.mts +29 -0
- package/dist/esm/api/resources/ticketStates/client/Client.mjs +72 -0
- package/dist/esm/api/resources/ticketStates/client/index.d.mts +1 -0
- package/dist/esm/api/resources/ticketStates/client/index.mjs +1 -0
- package/dist/esm/api/resources/ticketStates/index.d.mts +1 -0
- package/dist/esm/api/resources/ticketStates/index.mjs +1 -0
- package/dist/esm/api/resources/ticketTypes/client/Client.d.mts +90 -0
- package/dist/esm/api/resources/ticketTypes/client/Client.mjs +259 -0
- package/dist/esm/api/resources/ticketTypes/client/index.d.mts +1 -0
- package/dist/esm/api/resources/ticketTypes/client/index.mjs +1 -0
- package/dist/esm/api/resources/ticketTypes/client/requests/FindTicketTypeRequest.d.mts +10 -0
- package/dist/esm/api/resources/ticketTypes/client/requests/FindTicketTypeRequest.mjs +2 -0
- package/dist/esm/api/resources/ticketTypes/client/requests/UpdateTicketTypeRequest.d.mts +32 -0
- package/dist/esm/api/resources/ticketTypes/client/requests/UpdateTicketTypeRequest.mjs +10 -0
- package/dist/esm/api/resources/ticketTypes/client/requests/index.d.mts +2 -0
- package/dist/esm/api/resources/ticketTypes/client/requests/index.mjs +1 -0
- package/dist/esm/api/resources/ticketTypes/index.d.mts +2 -0
- package/dist/esm/api/resources/ticketTypes/index.mjs +2 -0
- package/dist/esm/api/resources/ticketTypes/resources/attributes/client/Client.d.mts +50 -0
- package/dist/esm/api/resources/ticketTypes/resources/attributes/client/Client.mjs +153 -0
- package/dist/esm/api/resources/ticketTypes/resources/attributes/client/index.d.mts +1 -0
- package/dist/esm/api/resources/ticketTypes/resources/attributes/client/index.mjs +1 -0
- package/dist/esm/api/resources/ticketTypes/resources/attributes/client/requests/CreateTicketTypeAttributeRequest.d.mts +47 -0
- package/dist/esm/api/resources/ticketTypes/resources/attributes/client/requests/CreateTicketTypeAttributeRequest.mjs +14 -0
- package/dist/esm/api/resources/ticketTypes/resources/attributes/client/requests/UpdateTicketTypeAttributeRequest.d.mts +34 -0
- package/dist/esm/api/resources/ticketTypes/resources/attributes/client/requests/UpdateTicketTypeAttributeRequest.mjs +2 -0
- package/dist/esm/api/resources/ticketTypes/resources/attributes/client/requests/index.d.mts +2 -0
- package/dist/esm/api/resources/ticketTypes/resources/attributes/client/requests/index.mjs +1 -0
- package/dist/esm/api/resources/ticketTypes/resources/attributes/index.d.mts +1 -0
- package/dist/esm/api/resources/ticketTypes/resources/attributes/index.mjs +1 -0
- package/dist/esm/api/resources/ticketTypes/resources/index.d.mts +2 -0
- package/dist/esm/api/resources/ticketTypes/resources/index.mjs +2 -0
- package/dist/esm/api/resources/tickets/client/Client.d.mts +281 -0
- package/dist/esm/api/resources/tickets/client/Client.mjs +587 -0
- package/dist/esm/api/resources/tickets/client/index.d.mts +1 -0
- package/dist/esm/api/resources/tickets/client/index.mjs +1 -0
- package/dist/esm/api/resources/tickets/client/requests/CreateTicketRequest.d.mts +14 -0
- package/dist/esm/api/resources/tickets/client/requests/CreateTicketRequest.mjs +2 -0
- package/dist/esm/api/resources/tickets/client/requests/DeleteTicketRequest.d.mts +10 -0
- package/dist/esm/api/resources/tickets/client/requests/DeleteTicketRequest.mjs +2 -0
- package/dist/esm/api/resources/tickets/client/requests/EnqueueCreateTicketRequest.d.mts +14 -0
- package/dist/esm/api/resources/tickets/client/requests/EnqueueCreateTicketRequest.mjs +2 -0
- package/dist/esm/api/resources/tickets/client/requests/FindTicketRequest.d.mts +10 -0
- package/dist/esm/api/resources/tickets/client/requests/FindTicketRequest.mjs +2 -0
- package/dist/esm/api/resources/tickets/client/requests/ReplyToTicketRequest.d.mts +78 -0
- package/dist/esm/api/resources/tickets/client/requests/ReplyToTicketRequest.mjs +2 -0
- package/dist/esm/api/resources/tickets/client/requests/UpdateTicketRequest.d.mts +65 -0
- package/dist/esm/api/resources/tickets/client/requests/UpdateTicketRequest.mjs +2 -0
- package/dist/esm/api/resources/tickets/client/requests/index.d.mts +6 -0
- package/dist/esm/api/resources/tickets/client/requests/index.mjs +1 -0
- package/dist/esm/api/resources/tickets/index.d.mts +2 -0
- package/dist/esm/api/resources/tickets/index.mjs +2 -0
- package/dist/esm/api/resources/tickets/types/DeleteTicketResponse.d.mts +11 -0
- package/dist/esm/api/resources/tickets/types/DeleteTicketResponse.mjs +2 -0
- package/dist/esm/api/resources/tickets/types/Ticket.d.mts +43 -0
- package/dist/esm/api/resources/tickets/types/Ticket.mjs +10 -0
- package/dist/esm/api/resources/tickets/types/TicketContacts.d.mts +10 -0
- package/dist/esm/api/resources/tickets/types/TicketContacts.mjs +2 -0
- package/dist/esm/api/resources/tickets/types/TicketPart.d.mts +100 -0
- package/dist/esm/api/resources/tickets/types/TicketPart.mjs +18 -0
- package/dist/esm/api/resources/tickets/types/TicketState.d.mts +25 -0
- package/dist/esm/api/resources/tickets/types/TicketState.mjs +11 -0
- package/dist/esm/api/resources/tickets/types/TicketStateDetailed.d.mts +39 -0
- package/dist/esm/api/resources/tickets/types/TicketStateDetailed.mjs +11 -0
- package/dist/esm/api/resources/tickets/types/TicketType.d.mts +47 -0
- package/dist/esm/api/resources/tickets/types/TicketType.mjs +10 -0
- package/dist/esm/api/resources/tickets/types/TicketsReplyRequestBody.d.mts +2 -0
- package/dist/esm/api/resources/tickets/types/TicketsReplyRequestBody.mjs +2 -0
- package/dist/esm/api/resources/tickets/types/index.d.mts +8 -0
- package/dist/esm/api/resources/tickets/types/index.mjs +8 -0
- package/dist/esm/api/resources/unstable/client/Client.d.mts +109 -0
- package/dist/esm/api/resources/unstable/client/Client.mjs +172 -0
- package/dist/esm/api/resources/unstable/client/index.d.mts +1 -0
- package/dist/esm/api/resources/unstable/client/index.mjs +1 -0
- package/dist/esm/api/resources/unstable/errors/BadRequestError.d.mts +5 -0
- package/dist/esm/api/resources/unstable/errors/BadRequestError.mjs +13 -0
- package/dist/esm/api/resources/unstable/errors/ConflictError.d.mts +6 -0
- package/dist/esm/api/resources/unstable/errors/ConflictError.mjs +13 -0
- package/dist/esm/api/resources/unstable/errors/ForbiddenError.d.mts +6 -0
- package/dist/esm/api/resources/unstable/errors/ForbiddenError.mjs +13 -0
- package/dist/esm/api/resources/unstable/errors/InternalServerError.d.mts +6 -0
- package/dist/esm/api/resources/unstable/errors/InternalServerError.mjs +13 -0
- package/dist/esm/api/resources/unstable/errors/NotFoundError.d.mts +5 -0
- package/dist/esm/api/resources/unstable/errors/NotFoundError.mjs +13 -0
- package/dist/esm/api/resources/unstable/errors/TooManyRequestsError.d.mts +6 -0
- package/dist/esm/api/resources/unstable/errors/TooManyRequestsError.mjs +13 -0
- package/dist/esm/api/resources/unstable/errors/UnauthorizedError.d.mts +6 -0
- package/dist/esm/api/resources/unstable/errors/UnauthorizedError.mjs +13 -0
- package/dist/esm/api/resources/unstable/errors/UnprocessableEntityError.d.mts +5 -0
- package/dist/esm/api/resources/unstable/errors/UnprocessableEntityError.mjs +13 -0
- package/dist/esm/api/resources/unstable/errors/index.d.mts +8 -0
- package/dist/esm/api/resources/unstable/errors/index.mjs +8 -0
- package/dist/esm/api/resources/unstable/index.d.mts +4 -0
- package/dist/esm/api/resources/unstable/index.mjs +4 -0
- package/dist/esm/api/resources/unstable/resources/admins/client/Client.d.mts +103 -0
- package/dist/esm/api/resources/unstable/resources/admins/client/Client.mjs +312 -0
- package/dist/esm/api/resources/unstable/resources/admins/client/index.d.mts +1 -0
- package/dist/esm/api/resources/unstable/resources/admins/client/index.mjs +1 -0
- package/dist/esm/api/resources/unstable/resources/admins/client/requests/ListActivityLogsRequest.d.mts +13 -0
- package/dist/esm/api/resources/unstable/resources/admins/client/requests/ListActivityLogsRequest.mjs +2 -0
- package/dist/esm/api/resources/unstable/resources/admins/client/requests/RetrieveAdminRequest.d.mts +10 -0
- package/dist/esm/api/resources/unstable/resources/admins/client/requests/RetrieveAdminRequest.mjs +2 -0
- package/dist/esm/api/resources/unstable/resources/admins/client/requests/SetAwayAdminRequest.d.mts +33 -0
- package/dist/esm/api/resources/unstable/resources/admins/client/requests/SetAwayAdminRequest.mjs +2 -0
- package/dist/esm/api/resources/unstable/resources/admins/client/requests/index.d.mts +3 -0
- package/dist/esm/api/resources/unstable/resources/admins/client/requests/index.mjs +1 -0
- package/dist/esm/api/resources/unstable/resources/admins/index.d.mts +2 -0
- package/dist/esm/api/resources/unstable/resources/admins/index.mjs +2 -0
- package/dist/esm/api/resources/unstable/resources/admins/types/Admin.d.mts +29 -0
- package/dist/esm/api/resources/unstable/resources/admins/types/Admin.mjs +2 -0
- package/dist/esm/api/resources/unstable/resources/admins/types/index.d.mts +1 -0
- package/dist/esm/api/resources/unstable/resources/admins/types/index.mjs +1 -0
- package/dist/esm/api/resources/unstable/resources/aiAgent/index.d.mts +1 -0
- package/dist/esm/api/resources/unstable/resources/aiAgent/index.mjs +1 -0
- package/dist/esm/api/resources/unstable/resources/aiAgent/types/AiAgent.d.mts +48 -0
- package/dist/esm/api/resources/unstable/resources/aiAgent/types/AiAgent.mjs +24 -0
- package/dist/esm/api/resources/unstable/resources/aiAgent/types/index.d.mts +1 -0
- package/dist/esm/api/resources/unstable/resources/aiAgent/types/index.mjs +1 -0
- package/dist/esm/api/resources/unstable/resources/aiContent/client/Client.d.mts +182 -0
- package/dist/esm/api/resources/unstable/resources/aiContent/client/Client.mjs +581 -0
- package/dist/esm/api/resources/unstable/resources/aiContent/client/index.d.mts +1 -0
- package/dist/esm/api/resources/unstable/resources/aiContent/client/index.mjs +1 -0
- package/dist/esm/api/resources/unstable/resources/aiContent/client/requests/CreateContentImportSourceRequest.d.mts +20 -0
- package/dist/esm/api/resources/unstable/resources/aiContent/client/requests/CreateContentImportSourceRequest.mjs +9 -0
- package/dist/esm/api/resources/unstable/resources/aiContent/client/requests/CreateExternalPageRequest.d.mts +26 -0
- package/dist/esm/api/resources/unstable/resources/aiContent/client/requests/CreateExternalPageRequest.mjs +2 -0
- package/dist/esm/api/resources/unstable/resources/aiContent/client/requests/DeleteContentImportSourceRequest.d.mts +10 -0
- package/dist/esm/api/resources/unstable/resources/aiContent/client/requests/DeleteContentImportSourceRequest.mjs +2 -0
- package/dist/esm/api/resources/unstable/resources/aiContent/client/requests/DeleteExternalPageRequest.d.mts +10 -0
- package/dist/esm/api/resources/unstable/resources/aiContent/client/requests/DeleteExternalPageRequest.mjs +2 -0
- package/dist/esm/api/resources/unstable/resources/aiContent/client/requests/GetContentImportSourceRequest.d.mts +10 -0
- package/dist/esm/api/resources/unstable/resources/aiContent/client/requests/GetContentImportSourceRequest.mjs +2 -0
- package/dist/esm/api/resources/unstable/resources/aiContent/client/requests/GetExternalPageRequest.d.mts +10 -0
- package/dist/esm/api/resources/unstable/resources/aiContent/client/requests/GetExternalPageRequest.mjs +2 -0
- package/dist/esm/api/resources/unstable/resources/aiContent/client/requests/UpdateContentImportSourceRequest.d.mts +33 -0
- package/dist/esm/api/resources/unstable/resources/aiContent/client/requests/UpdateContentImportSourceRequest.mjs +15 -0
- package/dist/esm/api/resources/unstable/resources/aiContent/client/requests/UpdateExternalPageRequest.d.mts +27 -0
- package/dist/esm/api/resources/unstable/resources/aiContent/client/requests/UpdateExternalPageRequest.mjs +2 -0
- package/dist/esm/api/resources/unstable/resources/aiContent/client/requests/index.d.mts +8 -0
- package/dist/esm/api/resources/unstable/resources/aiContent/client/requests/index.mjs +1 -0
- package/dist/esm/api/resources/unstable/resources/aiContent/index.d.mts +2 -0
- package/dist/esm/api/resources/unstable/resources/aiContent/index.mjs +2 -0
- package/dist/esm/api/resources/unstable/resources/aiContent/types/ContentImportSource.d.mts +36 -0
- package/dist/esm/api/resources/unstable/resources/aiContent/types/ContentImportSource.mjs +15 -0
- package/dist/esm/api/resources/unstable/resources/aiContent/types/ContentImportSourcesList.d.mts +13 -0
- package/dist/esm/api/resources/unstable/resources/aiContent/types/ContentImportSourcesList.mjs +2 -0
- package/dist/esm/api/resources/unstable/resources/aiContent/types/ExternalPage.d.mts +33 -0
- package/dist/esm/api/resources/unstable/resources/aiContent/types/ExternalPage.mjs +2 -0
- package/dist/esm/api/resources/unstable/resources/aiContent/types/ExternalPagesList.d.mts +13 -0
- package/dist/esm/api/resources/unstable/resources/aiContent/types/ExternalPagesList.mjs +2 -0
- package/dist/esm/api/resources/unstable/resources/aiContent/types/index.d.mts +4 -0
- package/dist/esm/api/resources/unstable/resources/aiContent/types/index.mjs +4 -0
- package/dist/esm/api/resources/unstable/resources/aiContentSource/index.d.mts +1 -0
- package/dist/esm/api/resources/unstable/resources/aiContentSource/index.mjs +1 -0
- package/dist/esm/api/resources/unstable/resources/aiContentSource/types/ContentSource.d.mts +24 -0
- package/dist/esm/api/resources/unstable/resources/aiContentSource/types/ContentSource.mjs +12 -0
- package/dist/esm/api/resources/unstable/resources/aiContentSource/types/index.d.mts +1 -0
- package/dist/esm/api/resources/unstable/resources/aiContentSource/types/index.mjs +1 -0
- package/dist/esm/api/resources/unstable/resources/articles/client/Client.d.mts +99 -0
- package/dist/esm/api/resources/unstable/resources/articles/client/Client.mjs +313 -0
- package/dist/esm/api/resources/unstable/resources/articles/client/index.d.mts +1 -0
- package/dist/esm/api/resources/unstable/resources/articles/client/index.mjs +1 -0
- package/dist/esm/api/resources/unstable/resources/articles/client/requests/DeleteArticleRequest.d.mts +10 -0
- package/dist/esm/api/resources/unstable/resources/articles/client/requests/DeleteArticleRequest.mjs +2 -0
- package/dist/esm/api/resources/unstable/resources/articles/client/requests/RetrieveArticleRequest.d.mts +10 -0
- package/dist/esm/api/resources/unstable/resources/articles/client/requests/RetrieveArticleRequest.mjs +2 -0
- package/dist/esm/api/resources/unstable/resources/articles/client/requests/SearchArticlesRequest.d.mts +19 -0
- package/dist/esm/api/resources/unstable/resources/articles/client/requests/SearchArticlesRequest.mjs +2 -0
- package/dist/esm/api/resources/unstable/resources/articles/client/requests/index.d.mts +3 -0
- package/dist/esm/api/resources/unstable/resources/articles/client/requests/index.mjs +1 -0
- package/dist/esm/api/resources/unstable/resources/articles/index.d.mts +2 -0
- package/dist/esm/api/resources/unstable/resources/articles/index.mjs +2 -0
- package/dist/esm/api/resources/unstable/resources/articles/types/Article.d.mts +7 -0
- package/dist/esm/api/resources/unstable/resources/articles/types/Article.mjs +2 -0
- package/dist/esm/api/resources/unstable/resources/articles/types/ArticleListItem.d.mts +45 -0
- package/dist/esm/api/resources/unstable/resources/articles/types/ArticleListItem.mjs +9 -0
- package/dist/esm/api/resources/unstable/resources/articles/types/ArticleSearchHighlights.d.mts +53 -0
- package/dist/esm/api/resources/unstable/resources/articles/types/ArticleSearchHighlights.mjs +26 -0
- package/dist/esm/api/resources/unstable/resources/articles/types/ArticleSearchResponse.d.mts +24 -0
- package/dist/esm/api/resources/unstable/resources/articles/types/ArticleSearchResponse.mjs +2 -0
- package/dist/esm/api/resources/unstable/resources/articles/types/InternalArticle.d.mts +5 -0
- package/dist/esm/api/resources/unstable/resources/articles/types/InternalArticle.mjs +2 -0
- package/dist/esm/api/resources/unstable/resources/articles/types/index.d.mts +5 -0
- package/dist/esm/api/resources/unstable/resources/articles/types/index.mjs +5 -0
- package/dist/esm/api/resources/unstable/resources/awayStatusReasons/client/Client.d.mts +29 -0
- package/dist/esm/api/resources/unstable/resources/awayStatusReasons/client/Client.mjs +72 -0
- package/dist/esm/api/resources/unstable/resources/awayStatusReasons/client/index.d.mts +1 -0
- package/dist/esm/api/resources/unstable/resources/awayStatusReasons/client/index.mjs +1 -0
- package/dist/esm/api/resources/unstable/resources/awayStatusReasons/index.d.mts +1 -0
- package/dist/esm/api/resources/unstable/resources/awayStatusReasons/index.mjs +1 -0
- package/dist/esm/api/resources/unstable/resources/brands/client/Client.d.mts +46 -0
- package/dist/esm/api/resources/unstable/resources/brands/client/Client.mjs +127 -0
- package/dist/esm/api/resources/unstable/resources/brands/client/index.d.mts +1 -0
- package/dist/esm/api/resources/unstable/resources/brands/client/index.mjs +1 -0
- package/dist/esm/api/resources/unstable/resources/brands/client/requests/RetrieveBrandRequest.d.mts +10 -0
- package/dist/esm/api/resources/unstable/resources/brands/client/requests/RetrieveBrandRequest.mjs +2 -0
- package/dist/esm/api/resources/unstable/resources/brands/client/requests/index.d.mts +1 -0
- package/dist/esm/api/resources/unstable/resources/brands/client/requests/index.mjs +1 -0
- package/dist/esm/api/resources/unstable/resources/brands/index.d.mts +2 -0
- package/dist/esm/api/resources/unstable/resources/brands/index.mjs +2 -0
- package/dist/esm/api/resources/unstable/resources/brands/types/Brand.d.mts +21 -0
- package/dist/esm/api/resources/unstable/resources/brands/types/Brand.mjs +2 -0
- package/dist/esm/api/resources/unstable/resources/brands/types/BrandList.d.mts +9 -0
- package/dist/esm/api/resources/unstable/resources/brands/types/BrandList.mjs +2 -0
- package/dist/esm/api/resources/unstable/resources/brands/types/index.d.mts +2 -0
- package/dist/esm/api/resources/unstable/resources/brands/types/index.mjs +2 -0
- package/dist/esm/api/resources/unstable/resources/calls/client/Client.d.mts +168 -0
- package/dist/esm/api/resources/unstable/resources/calls/client/Client.mjs +525 -0
- package/dist/esm/api/resources/unstable/resources/calls/client/index.d.mts +1 -0
- package/dist/esm/api/resources/unstable/resources/calls/client/index.mjs +1 -0
- package/dist/esm/api/resources/unstable/resources/calls/client/requests/CollectFinVoiceCallByExternalIdRequest.d.mts +10 -0
- package/dist/esm/api/resources/unstable/resources/calls/client/requests/CollectFinVoiceCallByExternalIdRequest.mjs +2 -0
- package/dist/esm/api/resources/unstable/resources/calls/client/requests/CollectFinVoiceCallByIdRequest.d.mts +10 -0
- package/dist/esm/api/resources/unstable/resources/calls/client/requests/CollectFinVoiceCallByIdRequest.mjs +2 -0
- package/dist/esm/api/resources/unstable/resources/calls/client/requests/CollectFinVoiceCallByPhoneNumberRequest.d.mts +10 -0
- package/dist/esm/api/resources/unstable/resources/calls/client/requests/CollectFinVoiceCallByPhoneNumberRequest.mjs +2 -0
- package/dist/esm/api/resources/unstable/resources/calls/client/requests/ListCallsRequest.d.mts +13 -0
- package/dist/esm/api/resources/unstable/resources/calls/client/requests/ListCallsRequest.mjs +2 -0
- package/dist/esm/api/resources/unstable/resources/calls/client/requests/ListCallsWithTranscriptsRequest.d.mts +10 -0
- package/dist/esm/api/resources/unstable/resources/calls/client/requests/ListCallsWithTranscriptsRequest.mjs +2 -0
- package/dist/esm/api/resources/unstable/resources/calls/client/requests/ShowCallRecordingRequest.d.mts +10 -0
- package/dist/esm/api/resources/unstable/resources/calls/client/requests/ShowCallRecordingRequest.mjs +2 -0
- package/dist/esm/api/resources/unstable/resources/calls/client/requests/ShowCallRequest.d.mts +10 -0
- package/dist/esm/api/resources/unstable/resources/calls/client/requests/ShowCallRequest.mjs +2 -0
- package/dist/esm/api/resources/unstable/resources/calls/client/requests/ShowCallTranscriptRequest.d.mts +10 -0
- package/dist/esm/api/resources/unstable/resources/calls/client/requests/ShowCallTranscriptRequest.mjs +2 -0
- package/dist/esm/api/resources/unstable/resources/calls/client/requests/index.d.mts +8 -0
- package/dist/esm/api/resources/unstable/resources/calls/client/requests/index.mjs +1 -0
- package/dist/esm/api/resources/unstable/resources/calls/index.d.mts +2 -0
- package/dist/esm/api/resources/unstable/resources/calls/index.mjs +2 -0
- package/dist/esm/api/resources/unstable/resources/calls/types/Call.d.mts +39 -0
- package/dist/esm/api/resources/unstable/resources/calls/types/Call.mjs +2 -0
- package/dist/esm/api/resources/unstable/resources/calls/types/ListCallsWithTranscriptsResponse.d.mts +16 -0
- package/dist/esm/api/resources/unstable/resources/calls/types/ListCallsWithTranscriptsResponse.mjs +2 -0
- package/dist/esm/api/resources/unstable/resources/calls/types/index.d.mts +2 -0
- package/dist/esm/api/resources/unstable/resources/calls/types/index.mjs +2 -0
- package/dist/esm/api/resources/unstable/resources/companies/client/Client.d.mts +257 -0
- package/dist/esm/api/resources/unstable/resources/companies/client/Client.mjs +742 -0
- package/dist/esm/api/resources/unstable/resources/companies/client/index.d.mts +1 -0
- package/dist/esm/api/resources/unstable/resources/companies/client/index.mjs +1 -0
- package/dist/esm/api/resources/unstable/resources/companies/client/requests/AttachContactToACompanyRequest.d.mts +25 -0
- package/dist/esm/api/resources/unstable/resources/companies/client/requests/AttachContactToACompanyRequest.mjs +2 -0
- package/dist/esm/api/resources/unstable/resources/companies/client/requests/DeleteCompanyRequest.d.mts +10 -0
- package/dist/esm/api/resources/unstable/resources/companies/client/requests/DeleteCompanyRequest.mjs +2 -0
- package/dist/esm/api/resources/unstable/resources/companies/client/requests/DetachContactFromACompanyRequest.d.mts +13 -0
- package/dist/esm/api/resources/unstable/resources/companies/client/requests/DetachContactFromACompanyRequest.mjs +2 -0
- package/dist/esm/api/resources/unstable/resources/companies/client/requests/ListAllCompaniesRequest.d.mts +16 -0
- package/dist/esm/api/resources/unstable/resources/companies/client/requests/ListAllCompaniesRequest.mjs +2 -0
- package/dist/esm/api/resources/unstable/resources/companies/client/requests/ListAttachedContactsRequest.d.mts +10 -0
- package/dist/esm/api/resources/unstable/resources/companies/client/requests/ListAttachedContactsRequest.mjs +2 -0
- package/dist/esm/api/resources/unstable/resources/companies/client/requests/ListAttachedSegmentsForCompaniesRequest.d.mts +10 -0
- package/dist/esm/api/resources/unstable/resources/companies/client/requests/ListAttachedSegmentsForCompaniesRequest.mjs +2 -0
- package/dist/esm/api/resources/unstable/resources/companies/client/requests/RetrieveACompanyByIdRequest.d.mts +10 -0
- package/dist/esm/api/resources/unstable/resources/companies/client/requests/RetrieveACompanyByIdRequest.mjs +2 -0
- package/dist/esm/api/resources/unstable/resources/companies/client/requests/RetrieveCompanyRequest.d.mts +25 -0
- package/dist/esm/api/resources/unstable/resources/companies/client/requests/RetrieveCompanyRequest.mjs +2 -0
- package/dist/esm/api/resources/unstable/resources/companies/client/requests/ScrollOverAllCompaniesRequest.d.mts +10 -0
- package/dist/esm/api/resources/unstable/resources/companies/client/requests/ScrollOverAllCompaniesRequest.mjs +2 -0
- package/dist/esm/api/resources/unstable/resources/companies/client/requests/UpdateCompanyRequest.d.mts +10 -0
- package/dist/esm/api/resources/unstable/resources/companies/client/requests/UpdateCompanyRequest.mjs +2 -0
- package/dist/esm/api/resources/unstable/resources/companies/client/requests/index.d.mts +10 -0
- package/dist/esm/api/resources/unstable/resources/companies/client/requests/index.mjs +1 -0
- package/dist/esm/api/resources/unstable/resources/companies/index.d.mts +2 -0
- package/dist/esm/api/resources/unstable/resources/companies/index.mjs +2 -0
- package/dist/esm/api/resources/unstable/resources/companies/types/Company.d.mts +79 -0
- package/dist/esm/api/resources/unstable/resources/companies/types/Company.mjs +2 -0
- package/dist/esm/api/resources/unstable/resources/companies/types/index.d.mts +1 -0
- package/dist/esm/api/resources/unstable/resources/companies/types/index.mjs +1 -0
- package/dist/esm/api/resources/unstable/resources/contacts/client/Client.d.mts +375 -0
- package/dist/esm/api/resources/unstable/resources/contacts/client/Client.mjs +956 -0
- package/dist/esm/api/resources/unstable/resources/contacts/client/index.d.mts +1 -0
- package/dist/esm/api/resources/unstable/resources/contacts/client/index.mjs +1 -0
- package/dist/esm/api/resources/unstable/resources/contacts/client/requests/ArchiveContactRequest.d.mts +10 -0
- package/dist/esm/api/resources/unstable/resources/contacts/client/requests/ArchiveContactRequest.mjs +2 -0
- package/dist/esm/api/resources/unstable/resources/contacts/client/requests/BlockContactRequest.d.mts +10 -0
- package/dist/esm/api/resources/unstable/resources/contacts/client/requests/BlockContactRequest.mjs +2 -0
- package/dist/esm/api/resources/unstable/resources/contacts/client/requests/DeleteContactRequest.d.mts +10 -0
- package/dist/esm/api/resources/unstable/resources/contacts/client/requests/DeleteContactRequest.mjs +2 -0
- package/dist/esm/api/resources/unstable/resources/contacts/client/requests/ListCompaniesForAContactRequest.d.mts +10 -0
- package/dist/esm/api/resources/unstable/resources/contacts/client/requests/ListCompaniesForAContactRequest.mjs +2 -0
- package/dist/esm/api/resources/unstable/resources/contacts/client/requests/ListSegmentsForAContactRequest.d.mts +10 -0
- package/dist/esm/api/resources/unstable/resources/contacts/client/requests/ListSegmentsForAContactRequest.mjs +2 -0
- package/dist/esm/api/resources/unstable/resources/contacts/client/requests/ListSubscriptionsForAContactRequest.d.mts +10 -0
- package/dist/esm/api/resources/unstable/resources/contacts/client/requests/ListSubscriptionsForAContactRequest.mjs +2 -0
- package/dist/esm/api/resources/unstable/resources/contacts/client/requests/ListTagsForAContactRequest.d.mts +10 -0
- package/dist/esm/api/resources/unstable/resources/contacts/client/requests/ListTagsForAContactRequest.mjs +2 -0
- package/dist/esm/api/resources/unstable/resources/contacts/client/requests/MergeContactsRequest.d.mts +13 -0
- package/dist/esm/api/resources/unstable/resources/contacts/client/requests/MergeContactsRequest.mjs +2 -0
- package/dist/esm/api/resources/unstable/resources/contacts/client/requests/ShowContactByExternalIdRequest.d.mts +10 -0
- package/dist/esm/api/resources/unstable/resources/contacts/client/requests/ShowContactByExternalIdRequest.mjs +2 -0
- package/dist/esm/api/resources/unstable/resources/contacts/client/requests/ShowContactRequest.d.mts +10 -0
- package/dist/esm/api/resources/unstable/resources/contacts/client/requests/ShowContactRequest.mjs +2 -0
- package/dist/esm/api/resources/unstable/resources/contacts/client/requests/UnarchiveContactRequest.d.mts +10 -0
- package/dist/esm/api/resources/unstable/resources/contacts/client/requests/UnarchiveContactRequest.mjs +2 -0
- package/dist/esm/api/resources/unstable/resources/contacts/client/requests/UpdateContactRequest.d.mts +44 -0
- package/dist/esm/api/resources/unstable/resources/contacts/client/requests/UpdateContactRequest.mjs +2 -0
- package/dist/esm/api/resources/unstable/resources/contacts/client/requests/index.d.mts +12 -0
- package/dist/esm/api/resources/unstable/resources/contacts/client/requests/index.mjs +1 -0
- package/dist/esm/api/resources/unstable/resources/contacts/index.d.mts +2 -0
- package/dist/esm/api/resources/unstable/resources/contacts/index.mjs +2 -0
- package/dist/esm/api/resources/unstable/resources/contacts/types/Contact.d.mts +100 -0
- package/dist/esm/api/resources/unstable/resources/contacts/types/Contact.mjs +2 -0
- package/dist/esm/api/resources/unstable/resources/contacts/types/CreateContactResponse.d.mts +5 -0
- package/dist/esm/api/resources/unstable/resources/contacts/types/CreateContactResponse.mjs +2 -0
- package/dist/esm/api/resources/unstable/resources/contacts/types/MergeContactResponse.d.mts +5 -0
- package/dist/esm/api/resources/unstable/resources/contacts/types/MergeContactResponse.mjs +2 -0
- package/dist/esm/api/resources/unstable/resources/contacts/types/ShowContactByExternalIdResponse.d.mts +5 -0
- package/dist/esm/api/resources/unstable/resources/contacts/types/ShowContactByExternalIdResponse.mjs +2 -0
- package/dist/esm/api/resources/unstable/resources/contacts/types/ShowContactResponse.d.mts +5 -0
- package/dist/esm/api/resources/unstable/resources/contacts/types/ShowContactResponse.mjs +2 -0
- package/dist/esm/api/resources/unstable/resources/contacts/types/UpdateContactResponse.d.mts +5 -0
- package/dist/esm/api/resources/unstable/resources/contacts/types/UpdateContactResponse.mjs +2 -0
- package/dist/esm/api/resources/unstable/resources/contacts/types/index.d.mts +6 -0
- package/dist/esm/api/resources/unstable/resources/contacts/types/index.mjs +6 -0
- package/dist/esm/api/resources/unstable/resources/conversations/client/Client.d.mts +534 -0
- package/dist/esm/api/resources/unstable/resources/conversations/client/Client.mjs +1061 -0
- package/dist/esm/api/resources/unstable/resources/conversations/client/index.d.mts +1 -0
- package/dist/esm/api/resources/unstable/resources/conversations/client/index.mjs +1 -0
- package/dist/esm/api/resources/unstable/resources/conversations/client/requests/AttachContactToConversationRequest.d.mts +39 -0
- package/dist/esm/api/resources/unstable/resources/conversations/client/requests/AttachContactToConversationRequest.mjs +2 -0
- package/dist/esm/api/resources/unstable/resources/conversations/client/requests/ConvertConversationToTicketRequest.d.mts +21 -0
- package/dist/esm/api/resources/unstable/resources/conversations/client/requests/ConvertConversationToTicketRequest.mjs +2 -0
- package/dist/esm/api/resources/unstable/resources/conversations/client/requests/CreateConversationRequest.d.mts +43 -0
- package/dist/esm/api/resources/unstable/resources/conversations/client/requests/CreateConversationRequest.mjs +13 -0
- package/dist/esm/api/resources/unstable/resources/conversations/client/requests/DeleteConversationRequest.d.mts +10 -0
- package/dist/esm/api/resources/unstable/resources/conversations/client/requests/DeleteConversationRequest.mjs +2 -0
- package/dist/esm/api/resources/unstable/resources/conversations/client/requests/DetachContactFromConversationRequest.d.mts +37 -0
- package/dist/esm/api/resources/unstable/resources/conversations/client/requests/DetachContactFromConversationRequest.mjs +2 -0
- package/dist/esm/api/resources/unstable/resources/conversations/client/requests/ListConversationsRequest.d.mts +13 -0
- package/dist/esm/api/resources/unstable/resources/conversations/client/requests/ListConversationsRequest.mjs +2 -0
- package/dist/esm/api/resources/unstable/resources/conversations/client/requests/ManageConversationRequest.d.mts +57 -0
- package/dist/esm/api/resources/unstable/resources/conversations/client/requests/ManageConversationRequest.mjs +2 -0
- package/dist/esm/api/resources/unstable/resources/conversations/client/requests/ReplyConversationRequest.d.mts +72 -0
- package/dist/esm/api/resources/unstable/resources/conversations/client/requests/ReplyConversationRequest.mjs +2 -0
- package/dist/esm/api/resources/unstable/resources/conversations/client/requests/RetrieveConversationRequest.d.mts +16 -0
- package/dist/esm/api/resources/unstable/resources/conversations/client/requests/RetrieveConversationRequest.mjs +2 -0
- package/dist/esm/api/resources/unstable/resources/conversations/client/requests/UpdateConversationRequest.d.mts +48 -0
- package/dist/esm/api/resources/unstable/resources/conversations/client/requests/UpdateConversationRequest.mjs +2 -0
- package/dist/esm/api/resources/unstable/resources/conversations/client/requests/index.d.mts +10 -0
- package/dist/esm/api/resources/unstable/resources/conversations/client/requests/index.mjs +1 -0
- package/dist/esm/api/resources/unstable/resources/conversations/index.d.mts +2 -0
- package/dist/esm/api/resources/unstable/resources/conversations/index.mjs +2 -0
- package/dist/esm/api/resources/unstable/resources/conversations/types/Conversation.d.mts +63 -0
- package/dist/esm/api/resources/unstable/resources/conversations/types/Conversation.mjs +15 -0
- package/dist/esm/api/resources/unstable/resources/conversations/types/ManageConversationRequestBody.d.mts +16 -0
- package/dist/esm/api/resources/unstable/resources/conversations/types/ManageConversationRequestBody.mjs +2 -0
- package/dist/esm/api/resources/unstable/resources/conversations/types/index.d.mts +2 -0
- package/dist/esm/api/resources/unstable/resources/conversations/types/index.mjs +2 -0
- package/dist/esm/api/resources/unstable/resources/customChannelEvents/client/Client.d.mts +124 -0
- package/dist/esm/api/resources/unstable/resources/customChannelEvents/client/Client.mjs +320 -0
- package/dist/esm/api/resources/unstable/resources/customChannelEvents/client/index.d.mts +1 -0
- package/dist/esm/api/resources/unstable/resources/customChannelEvents/client/index.mjs +1 -0
- package/dist/esm/api/resources/unstable/resources/customChannelEvents/client/requests/NotifyAttributeCollectedRequest.d.mts +21 -0
- package/dist/esm/api/resources/unstable/resources/customChannelEvents/client/requests/NotifyAttributeCollectedRequest.mjs +2 -0
- package/dist/esm/api/resources/unstable/resources/customChannelEvents/client/requests/NotifyNewMessageRequest.d.mts +19 -0
- package/dist/esm/api/resources/unstable/resources/customChannelEvents/client/requests/NotifyNewMessageRequest.mjs +2 -0
- package/dist/esm/api/resources/unstable/resources/customChannelEvents/client/requests/NotifyQuickReplySelectedRequest.d.mts +19 -0
- package/dist/esm/api/resources/unstable/resources/customChannelEvents/client/requests/NotifyQuickReplySelectedRequest.mjs +2 -0
- package/dist/esm/api/resources/unstable/resources/customChannelEvents/client/requests/index.d.mts +3 -0
- package/dist/esm/api/resources/unstable/resources/customChannelEvents/client/requests/index.mjs +1 -0
- package/dist/esm/api/resources/unstable/resources/customChannelEvents/index.d.mts +1 -0
- package/dist/esm/api/resources/unstable/resources/customChannelEvents/index.mjs +1 -0
- package/dist/esm/api/resources/unstable/resources/customObjectInstances/client/Client.d.mts +111 -0
- package/dist/esm/api/resources/unstable/resources/customObjectInstances/client/Client.mjs +342 -0
- package/dist/esm/api/resources/unstable/resources/customObjectInstances/client/index.d.mts +1 -0
- package/dist/esm/api/resources/unstable/resources/customObjectInstances/client/index.mjs +1 -0
- package/dist/esm/api/resources/unstable/resources/customObjectInstances/client/requests/CreateOrUpdateCustomObjectInstanceRequest.d.mts +25 -0
- package/dist/esm/api/resources/unstable/resources/customObjectInstances/client/requests/CreateOrUpdateCustomObjectInstanceRequest.mjs +2 -0
- package/dist/esm/api/resources/unstable/resources/customObjectInstances/client/requests/DeleteCustomObjectInstancesByExternalIdRequest.d.mts +13 -0
- package/dist/esm/api/resources/unstable/resources/customObjectInstances/client/requests/DeleteCustomObjectInstancesByExternalIdRequest.mjs +2 -0
- package/dist/esm/api/resources/unstable/resources/customObjectInstances/client/requests/DeleteCustomObjectInstancesByIdRequest.d.mts +12 -0
- package/dist/esm/api/resources/unstable/resources/customObjectInstances/client/requests/DeleteCustomObjectInstancesByIdRequest.mjs +2 -0
- package/dist/esm/api/resources/unstable/resources/customObjectInstances/client/requests/GetCustomObjectInstancesByExternalIdRequest.d.mts +12 -0
- package/dist/esm/api/resources/unstable/resources/customObjectInstances/client/requests/GetCustomObjectInstancesByExternalIdRequest.mjs +2 -0
- package/dist/esm/api/resources/unstable/resources/customObjectInstances/client/requests/GetCustomObjectInstancesByIdRequest.d.mts +13 -0
- package/dist/esm/api/resources/unstable/resources/customObjectInstances/client/requests/GetCustomObjectInstancesByIdRequest.mjs +2 -0
- package/dist/esm/api/resources/unstable/resources/customObjectInstances/client/requests/index.d.mts +5 -0
- package/dist/esm/api/resources/unstable/resources/customObjectInstances/client/requests/index.mjs +1 -0
- package/dist/esm/api/resources/unstable/resources/customObjectInstances/index.d.mts +2 -0
- package/dist/esm/api/resources/unstable/resources/customObjectInstances/index.mjs +2 -0
- package/dist/esm/api/resources/unstable/resources/customObjectInstances/types/CustomObjectInstance.d.mts +21 -0
- package/dist/esm/api/resources/unstable/resources/customObjectInstances/types/CustomObjectInstance.mjs +2 -0
- package/dist/esm/api/resources/unstable/resources/customObjectInstances/types/index.d.mts +1 -0
- package/dist/esm/api/resources/unstable/resources/customObjectInstances/types/index.mjs +1 -0
- package/dist/esm/api/resources/unstable/resources/dataAttributes/client/Client.d.mts +75 -0
- package/dist/esm/api/resources/unstable/resources/dataAttributes/client/Client.mjs +211 -0
- package/dist/esm/api/resources/unstable/resources/dataAttributes/client/index.d.mts +1 -0
- package/dist/esm/api/resources/unstable/resources/dataAttributes/client/index.mjs +1 -0
- package/dist/esm/api/resources/unstable/resources/dataAttributes/client/requests/LisDataAttributesRequest.d.mts +14 -0
- package/dist/esm/api/resources/unstable/resources/dataAttributes/client/requests/LisDataAttributesRequest.mjs +2 -0
- package/dist/esm/api/resources/unstable/resources/dataAttributes/client/requests/UpdateDataAttributeRequest.d.mts +14 -0
- package/dist/esm/api/resources/unstable/resources/dataAttributes/client/requests/UpdateDataAttributeRequest.mjs +2 -0
- package/dist/esm/api/resources/unstable/resources/dataAttributes/client/requests/index.d.mts +2 -0
- package/dist/esm/api/resources/unstable/resources/dataAttributes/client/requests/index.mjs +1 -0
- package/dist/esm/api/resources/unstable/resources/dataAttributes/index.d.mts +2 -0
- package/dist/esm/api/resources/unstable/resources/dataAttributes/index.mjs +2 -0
- package/dist/esm/api/resources/unstable/resources/dataAttributes/types/DataAttribute.d.mts +56 -0
- package/dist/esm/api/resources/unstable/resources/dataAttributes/types/DataAttribute.mjs +17 -0
- package/dist/esm/api/resources/unstable/resources/dataAttributes/types/LisDataAttributesRequestModel.d.mts +6 -0
- package/dist/esm/api/resources/unstable/resources/dataAttributes/types/LisDataAttributesRequestModel.mjs +6 -0
- package/dist/esm/api/resources/unstable/resources/dataAttributes/types/index.d.mts +2 -0
- package/dist/esm/api/resources/unstable/resources/dataAttributes/types/index.mjs +2 -0
- package/dist/esm/api/resources/unstable/resources/dataEvents/client/Client.d.mts +118 -0
- package/dist/esm/api/resources/unstable/resources/dataEvents/client/Client.mjs +245 -0
- package/dist/esm/api/resources/unstable/resources/dataEvents/client/index.d.mts +1 -0
- package/dist/esm/api/resources/unstable/resources/dataEvents/client/index.mjs +1 -0
- package/dist/esm/api/resources/unstable/resources/dataEvents/client/requests/CreateDataEventSummariesRequest.d.mts +25 -0
- package/dist/esm/api/resources/unstable/resources/dataEvents/client/requests/CreateDataEventSummariesRequest.mjs +2 -0
- package/dist/esm/api/resources/unstable/resources/dataEvents/client/requests/LisDataEventsRequest.d.mts +17 -0
- package/dist/esm/api/resources/unstable/resources/dataEvents/client/requests/LisDataEventsRequest.mjs +2 -0
- package/dist/esm/api/resources/unstable/resources/dataEvents/client/requests/index.d.mts +2 -0
- package/dist/esm/api/resources/unstable/resources/dataEvents/client/requests/index.mjs +1 -0
- package/dist/esm/api/resources/unstable/resources/dataEvents/index.d.mts +2 -0
- package/dist/esm/api/resources/unstable/resources/dataEvents/index.mjs +2 -0
- package/dist/esm/api/resources/unstable/resources/dataEvents/types/DataEvent.d.mts +21 -0
- package/dist/esm/api/resources/unstable/resources/dataEvents/types/DataEvent.mjs +2 -0
- package/dist/esm/api/resources/unstable/resources/dataEvents/types/LisDataEventsRequestFilter.d.mts +7 -0
- package/dist/esm/api/resources/unstable/resources/dataEvents/types/LisDataEventsRequestFilter.mjs +2 -0
- package/dist/esm/api/resources/unstable/resources/dataEvents/types/index.d.mts +2 -0
- package/dist/esm/api/resources/unstable/resources/dataEvents/types/index.mjs +2 -0
- package/dist/esm/api/resources/unstable/resources/dataExport/client/Client.d.mts +94 -0
- package/dist/esm/api/resources/unstable/resources/dataExport/client/Client.mjs +227 -0
- package/dist/esm/api/resources/unstable/resources/dataExport/client/index.d.mts +1 -0
- package/dist/esm/api/resources/unstable/resources/dataExport/client/index.mjs +1 -0
- package/dist/esm/api/resources/unstable/resources/dataExport/client/requests/CancelDataExportRequest.d.mts +10 -0
- package/dist/esm/api/resources/unstable/resources/dataExport/client/requests/CancelDataExportRequest.mjs +2 -0
- package/dist/esm/api/resources/unstable/resources/dataExport/client/requests/CreateDataExportsRequest.d.mts +13 -0
- package/dist/esm/api/resources/unstable/resources/dataExport/client/requests/CreateDataExportsRequest.mjs +2 -0
- package/dist/esm/api/resources/unstable/resources/dataExport/client/requests/DownloadDataExportRequest.d.mts +10 -0
- package/dist/esm/api/resources/unstable/resources/dataExport/client/requests/DownloadDataExportRequest.mjs +2 -0
- package/dist/esm/api/resources/unstable/resources/dataExport/client/requests/GetDataExportRequest.d.mts +10 -0
- package/dist/esm/api/resources/unstable/resources/dataExport/client/requests/GetDataExportRequest.mjs +2 -0
- package/dist/esm/api/resources/unstable/resources/dataExport/client/requests/index.d.mts +4 -0
- package/dist/esm/api/resources/unstable/resources/dataExport/client/requests/index.mjs +1 -0
- package/dist/esm/api/resources/unstable/resources/dataExport/index.d.mts +2 -0
- package/dist/esm/api/resources/unstable/resources/dataExport/index.mjs +2 -0
- package/dist/esm/api/resources/unstable/resources/dataExport/types/DataExport.d.mts +25 -0
- package/dist/esm/api/resources/unstable/resources/dataExport/types/DataExport.mjs +13 -0
- package/dist/esm/api/resources/unstable/resources/dataExport/types/index.d.mts +1 -0
- package/dist/esm/api/resources/unstable/resources/dataExport/types/index.mjs +1 -0
- package/dist/esm/api/resources/unstable/resources/emails/client/Client.d.mts +45 -0
- package/dist/esm/api/resources/unstable/resources/emails/client/Client.mjs +126 -0
- package/dist/esm/api/resources/unstable/resources/emails/client/index.d.mts +1 -0
- package/dist/esm/api/resources/unstable/resources/emails/client/index.mjs +1 -0
- package/dist/esm/api/resources/unstable/resources/emails/client/requests/RetrieveEmailRequest.d.mts +10 -0
- package/dist/esm/api/resources/unstable/resources/emails/client/requests/RetrieveEmailRequest.mjs +2 -0
- package/dist/esm/api/resources/unstable/resources/emails/client/requests/index.d.mts +1 -0
- package/dist/esm/api/resources/unstable/resources/emails/client/requests/index.mjs +1 -0
- package/dist/esm/api/resources/unstable/resources/emails/index.d.mts +2 -0
- package/dist/esm/api/resources/unstable/resources/emails/index.mjs +2 -0
- package/dist/esm/api/resources/unstable/resources/emails/types/EmailList.d.mts +9 -0
- package/dist/esm/api/resources/unstable/resources/emails/types/EmailList.mjs +2 -0
- package/dist/esm/api/resources/unstable/resources/emails/types/EmailSetting.d.mts +25 -0
- package/dist/esm/api/resources/unstable/resources/emails/types/EmailSetting.mjs +2 -0
- package/dist/esm/api/resources/unstable/resources/emails/types/index.d.mts +2 -0
- package/dist/esm/api/resources/unstable/resources/emails/types/index.mjs +2 -0
- package/dist/esm/api/resources/unstable/resources/export/client/Client.d.mts +40 -0
- package/dist/esm/api/resources/unstable/resources/export/client/Client.mjs +126 -0
- package/dist/esm/api/resources/unstable/resources/export/client/index.d.mts +1 -0
- package/dist/esm/api/resources/unstable/resources/export/client/index.mjs +1 -0
- package/dist/esm/api/resources/unstable/resources/export/client/requests/PostExportReportingDataEnqueueRequest.d.mts +15 -0
- package/dist/esm/api/resources/unstable/resources/export/client/requests/PostExportReportingDataEnqueueRequest.mjs +2 -0
- package/dist/esm/api/resources/unstable/resources/export/client/requests/index.d.mts +1 -0
- package/dist/esm/api/resources/unstable/resources/export/client/requests/index.mjs +1 -0
- package/dist/esm/api/resources/unstable/resources/export/index.d.mts +2 -0
- package/dist/esm/api/resources/unstable/resources/export/index.mjs +2 -0
- package/dist/esm/api/resources/unstable/resources/export/types/GetExportReportingDataGetDatasetsResponse.d.mts +25 -0
- package/dist/esm/api/resources/unstable/resources/export/types/GetExportReportingDataGetDatasetsResponse.mjs +2 -0
- package/dist/esm/api/resources/unstable/resources/export/types/PostExportReportingDataEnqueueResponse.d.mts +6 -0
- package/dist/esm/api/resources/unstable/resources/export/types/PostExportReportingDataEnqueueResponse.mjs +2 -0
- package/dist/esm/api/resources/unstable/resources/export/types/index.d.mts +2 -0
- package/dist/esm/api/resources/unstable/resources/export/types/index.mjs +2 -0
- package/dist/esm/api/resources/unstable/resources/helpCenter/client/Client.d.mts +130 -0
- package/dist/esm/api/resources/unstable/resources/helpCenter/client/Client.mjs +417 -0
- package/dist/esm/api/resources/unstable/resources/helpCenter/client/index.d.mts +1 -0
- package/dist/esm/api/resources/unstable/resources/helpCenter/client/index.mjs +1 -0
- package/dist/esm/api/resources/unstable/resources/helpCenter/client/requests/CreateCollectionRequest.d.mts +24 -0
- package/dist/esm/api/resources/unstable/resources/helpCenter/client/requests/CreateCollectionRequest.mjs +2 -0
- package/dist/esm/api/resources/unstable/resources/helpCenter/client/requests/DeleteCollectionRequest.d.mts +10 -0
- package/dist/esm/api/resources/unstable/resources/helpCenter/client/requests/DeleteCollectionRequest.mjs +2 -0
- package/dist/esm/api/resources/unstable/resources/helpCenter/client/requests/RetrieveCollectionRequest.d.mts +10 -0
- package/dist/esm/api/resources/unstable/resources/helpCenter/client/requests/RetrieveCollectionRequest.mjs +2 -0
- package/dist/esm/api/resources/unstable/resources/helpCenter/client/requests/RetrieveHelpCenterRequest.d.mts +10 -0
- package/dist/esm/api/resources/unstable/resources/helpCenter/client/requests/RetrieveHelpCenterRequest.mjs +2 -0
- package/dist/esm/api/resources/unstable/resources/helpCenter/client/requests/UpdateCollectionRequest.d.mts +25 -0
- package/dist/esm/api/resources/unstable/resources/helpCenter/client/requests/UpdateCollectionRequest.mjs +2 -0
- package/dist/esm/api/resources/unstable/resources/helpCenter/client/requests/index.d.mts +5 -0
- package/dist/esm/api/resources/unstable/resources/helpCenter/client/requests/index.mjs +1 -0
- package/dist/esm/api/resources/unstable/resources/helpCenter/index.d.mts +2 -0
- package/dist/esm/api/resources/unstable/resources/helpCenter/index.mjs +2 -0
- package/dist/esm/api/resources/unstable/resources/helpCenter/types/Collection.d.mts +31 -0
- package/dist/esm/api/resources/unstable/resources/helpCenter/types/Collection.mjs +2 -0
- package/dist/esm/api/resources/unstable/resources/helpCenter/types/HelpCenter.d.mts +23 -0
- package/dist/esm/api/resources/unstable/resources/helpCenter/types/HelpCenter.mjs +2 -0
- package/dist/esm/api/resources/unstable/resources/helpCenter/types/HelpCenterList.d.mts +10 -0
- package/dist/esm/api/resources/unstable/resources/helpCenter/types/HelpCenterList.mjs +2 -0
- package/dist/esm/api/resources/unstable/resources/helpCenter/types/index.d.mts +3 -0
- package/dist/esm/api/resources/unstable/resources/helpCenter/types/index.mjs +3 -0
- package/dist/esm/api/resources/unstable/resources/index.d.mts +93 -0
- package/dist/esm/api/resources/unstable/resources/index.mjs +93 -0
- package/dist/esm/api/resources/unstable/resources/internalArticles/client/Client.d.mts +121 -0
- package/dist/esm/api/resources/unstable/resources/internalArticles/client/Client.mjs +381 -0
- package/dist/esm/api/resources/unstable/resources/internalArticles/client/index.d.mts +1 -0
- package/dist/esm/api/resources/unstable/resources/internalArticles/client/index.mjs +1 -0
- package/dist/esm/api/resources/unstable/resources/internalArticles/client/requests/DeleteInternalArticleRequest.d.mts +10 -0
- package/dist/esm/api/resources/unstable/resources/internalArticles/client/requests/DeleteInternalArticleRequest.mjs +2 -0
- package/dist/esm/api/resources/unstable/resources/internalArticles/client/requests/RetrieveInternalArticleRequest.d.mts +10 -0
- package/dist/esm/api/resources/unstable/resources/internalArticles/client/requests/RetrieveInternalArticleRequest.mjs +2 -0
- package/dist/esm/api/resources/unstable/resources/internalArticles/client/requests/SearchInternalArticlesRequest.d.mts +10 -0
- package/dist/esm/api/resources/unstable/resources/internalArticles/client/requests/SearchInternalArticlesRequest.mjs +2 -0
- package/dist/esm/api/resources/unstable/resources/internalArticles/client/requests/UpdateInternalArticleRequestBody.d.mts +27 -0
- package/dist/esm/api/resources/unstable/resources/internalArticles/client/requests/UpdateInternalArticleRequestBody.mjs +2 -0
- package/dist/esm/api/resources/unstable/resources/internalArticles/client/requests/index.d.mts +4 -0
- package/dist/esm/api/resources/unstable/resources/internalArticles/client/requests/index.mjs +1 -0
- package/dist/esm/api/resources/unstable/resources/internalArticles/index.d.mts +2 -0
- package/dist/esm/api/resources/unstable/resources/internalArticles/index.mjs +2 -0
- package/dist/esm/api/resources/unstable/resources/internalArticles/types/InternalArticleListItem.d.mts +23 -0
- package/dist/esm/api/resources/unstable/resources/internalArticles/types/InternalArticleListItem.mjs +2 -0
- package/dist/esm/api/resources/unstable/resources/internalArticles/types/InternalArticleSearchResponse.d.mts +22 -0
- package/dist/esm/api/resources/unstable/resources/internalArticles/types/InternalArticleSearchResponse.mjs +2 -0
- package/dist/esm/api/resources/unstable/resources/internalArticles/types/index.d.mts +2 -0
- package/dist/esm/api/resources/unstable/resources/internalArticles/types/index.mjs +2 -0
- package/dist/esm/api/resources/unstable/resources/jobs/client/Client.d.mts +33 -0
- package/dist/esm/api/resources/unstable/resources/jobs/client/Client.mjs +79 -0
- package/dist/esm/api/resources/unstable/resources/jobs/client/index.d.mts +1 -0
- package/dist/esm/api/resources/unstable/resources/jobs/client/index.mjs +1 -0
- package/dist/esm/api/resources/unstable/resources/jobs/client/requests/JobsStatusRequest.d.mts +10 -0
- package/dist/esm/api/resources/unstable/resources/jobs/client/requests/JobsStatusRequest.mjs +2 -0
- package/dist/esm/api/resources/unstable/resources/jobs/client/requests/index.d.mts +1 -0
- package/dist/esm/api/resources/unstable/resources/jobs/client/requests/index.mjs +1 -0
- package/dist/esm/api/resources/unstable/resources/jobs/index.d.mts +2 -0
- package/dist/esm/api/resources/unstable/resources/jobs/index.mjs +2 -0
- package/dist/esm/api/resources/unstable/resources/jobs/types/Jobs.d.mts +28 -0
- package/dist/esm/api/resources/unstable/resources/jobs/types/Jobs.mjs +10 -0
- package/dist/esm/api/resources/unstable/resources/jobs/types/index.d.mts +1 -0
- package/dist/esm/api/resources/unstable/resources/jobs/types/index.mjs +1 -0
- package/dist/esm/api/resources/unstable/resources/macros/client/Client.d.mts +81 -0
- package/dist/esm/api/resources/unstable/resources/macros/client/Client.mjs +179 -0
- package/dist/esm/api/resources/unstable/resources/macros/client/index.d.mts +1 -0
- package/dist/esm/api/resources/unstable/resources/macros/client/index.mjs +1 -0
- package/dist/esm/api/resources/unstable/resources/macros/client/requests/GetMacroRequest.d.mts +25 -0
- package/dist/esm/api/resources/unstable/resources/macros/client/requests/GetMacroRequest.mjs +2 -0
- package/dist/esm/api/resources/unstable/resources/macros/client/requests/ListMacrosRequest.d.mts +51 -0
- package/dist/esm/api/resources/unstable/resources/macros/client/requests/ListMacrosRequest.mjs +2 -0
- package/dist/esm/api/resources/unstable/resources/macros/client/requests/index.d.mts +2 -0
- package/dist/esm/api/resources/unstable/resources/macros/client/requests/index.mjs +1 -0
- package/dist/esm/api/resources/unstable/resources/macros/index.d.mts +2 -0
- package/dist/esm/api/resources/unstable/resources/macros/index.mjs +2 -0
- package/dist/esm/api/resources/unstable/resources/macros/types/Macro.d.mts +41 -0
- package/dist/esm/api/resources/unstable/resources/macros/types/Macro.mjs +16 -0
- package/dist/esm/api/resources/unstable/resources/macros/types/MacroList.d.mts +34 -0
- package/dist/esm/api/resources/unstable/resources/macros/types/MacroList.mjs +2 -0
- package/dist/esm/api/resources/unstable/resources/macros/types/index.d.mts +2 -0
- package/dist/esm/api/resources/unstable/resources/macros/types/index.mjs +2 -0
- package/dist/esm/api/resources/unstable/resources/messages/client/Client.d.mts +220 -0
- package/dist/esm/api/resources/unstable/resources/messages/client/Client.mjs +325 -0
- package/dist/esm/api/resources/unstable/resources/messages/client/index.d.mts +1 -0
- package/dist/esm/api/resources/unstable/resources/messages/client/index.mjs +1 -0
- package/dist/esm/api/resources/unstable/resources/messages/client/requests/GetWhatsAppMessageStatusRequest.d.mts +16 -0
- package/dist/esm/api/resources/unstable/resources/messages/client/requests/GetWhatsAppMessageStatusRequest.mjs +2 -0
- package/dist/esm/api/resources/unstable/resources/messages/client/requests/index.d.mts +1 -0
- package/dist/esm/api/resources/unstable/resources/messages/client/requests/index.mjs +1 -0
- package/dist/esm/api/resources/unstable/resources/messages/index.d.mts +2 -0
- package/dist/esm/api/resources/unstable/resources/messages/index.mjs +2 -0
- package/dist/esm/api/resources/unstable/resources/messages/types/Message.d.mts +31 -0
- package/dist/esm/api/resources/unstable/resources/messages/types/Message.mjs +13 -0
- package/dist/esm/api/resources/unstable/resources/messages/types/index.d.mts +1 -0
- package/dist/esm/api/resources/unstable/resources/messages/types/index.mjs +1 -0
- package/dist/esm/api/resources/unstable/resources/news/client/Client.d.mts +159 -0
- package/dist/esm/api/resources/unstable/resources/news/client/Client.mjs +464 -0
- package/dist/esm/api/resources/unstable/resources/news/client/index.d.mts +1 -0
- package/dist/esm/api/resources/unstable/resources/news/client/index.mjs +1 -0
- package/dist/esm/api/resources/unstable/resources/news/client/requests/DeleteNewsItemRequest.d.mts +10 -0
- package/dist/esm/api/resources/unstable/resources/news/client/requests/DeleteNewsItemRequest.mjs +2 -0
- package/dist/esm/api/resources/unstable/resources/news/client/requests/ListLiveNewsfeedItemsRequest.d.mts +10 -0
- package/dist/esm/api/resources/unstable/resources/news/client/requests/ListLiveNewsfeedItemsRequest.mjs +2 -0
- package/dist/esm/api/resources/unstable/resources/news/client/requests/RetrieveNewsItemRequest.d.mts +10 -0
- package/dist/esm/api/resources/unstable/resources/news/client/requests/RetrieveNewsItemRequest.mjs +2 -0
- package/dist/esm/api/resources/unstable/resources/news/client/requests/RetrieveNewsfeedRequest.d.mts +10 -0
- package/dist/esm/api/resources/unstable/resources/news/client/requests/RetrieveNewsfeedRequest.mjs +2 -0
- package/dist/esm/api/resources/unstable/resources/news/client/requests/UpdateNewsItemRequest.d.mts +29 -0
- package/dist/esm/api/resources/unstable/resources/news/client/requests/UpdateNewsItemRequest.mjs +2 -0
- package/dist/esm/api/resources/unstable/resources/news/client/requests/index.d.mts +5 -0
- package/dist/esm/api/resources/unstable/resources/news/client/requests/index.mjs +1 -0
- package/dist/esm/api/resources/unstable/resources/news/index.d.mts +2 -0
- package/dist/esm/api/resources/unstable/resources/news/index.mjs +2 -0
- package/dist/esm/api/resources/unstable/resources/news/types/NewsItem.d.mts +42 -0
- package/dist/esm/api/resources/unstable/resources/news/types/NewsItem.mjs +9 -0
- package/dist/esm/api/resources/unstable/resources/news/types/Newsfeed.d.mts +17 -0
- package/dist/esm/api/resources/unstable/resources/news/types/Newsfeed.mjs +2 -0
- package/dist/esm/api/resources/unstable/resources/news/types/NewsfeedAssignment.d.mts +9 -0
- package/dist/esm/api/resources/unstable/resources/news/types/NewsfeedAssignment.mjs +2 -0
- package/dist/esm/api/resources/unstable/resources/news/types/index.d.mts +3 -0
- package/dist/esm/api/resources/unstable/resources/news/types/index.mjs +3 -0
- package/dist/esm/api/resources/unstable/resources/notes/client/Client.d.mts +97 -0
- package/dist/esm/api/resources/unstable/resources/notes/client/Client.mjs +265 -0
- package/dist/esm/api/resources/unstable/resources/notes/client/index.d.mts +1 -0
- package/dist/esm/api/resources/unstable/resources/notes/client/index.mjs +1 -0
- package/dist/esm/api/resources/unstable/resources/notes/client/requests/CreateNoteRequest.d.mts +35 -0
- package/dist/esm/api/resources/unstable/resources/notes/client/requests/CreateNoteRequest.mjs +2 -0
- package/dist/esm/api/resources/unstable/resources/notes/client/requests/ListCompanyNotesRequest.d.mts +10 -0
- package/dist/esm/api/resources/unstable/resources/notes/client/requests/ListCompanyNotesRequest.mjs +2 -0
- package/dist/esm/api/resources/unstable/resources/notes/client/requests/ListNotesRequest.d.mts +10 -0
- package/dist/esm/api/resources/unstable/resources/notes/client/requests/ListNotesRequest.mjs +2 -0
- package/dist/esm/api/resources/unstable/resources/notes/client/requests/RetrieveNoteRequest.d.mts +10 -0
- package/dist/esm/api/resources/unstable/resources/notes/client/requests/RetrieveNoteRequest.mjs +2 -0
- package/dist/esm/api/resources/unstable/resources/notes/client/requests/index.d.mts +4 -0
- package/dist/esm/api/resources/unstable/resources/notes/client/requests/index.mjs +1 -0
- package/dist/esm/api/resources/unstable/resources/notes/index.d.mts +2 -0
- package/dist/esm/api/resources/unstable/resources/notes/index.mjs +2 -0
- package/dist/esm/api/resources/unstable/resources/notes/types/CompanyNote.d.mts +29 -0
- package/dist/esm/api/resources/unstable/resources/notes/types/CompanyNote.mjs +2 -0
- package/dist/esm/api/resources/unstable/resources/notes/types/Note.d.mts +29 -0
- package/dist/esm/api/resources/unstable/resources/notes/types/Note.mjs +2 -0
- package/dist/esm/api/resources/unstable/resources/notes/types/index.d.mts +2 -0
- package/dist/esm/api/resources/unstable/resources/notes/types/index.mjs +2 -0
- package/dist/esm/api/resources/unstable/resources/segments/client/Client.d.mts +48 -0
- package/dist/esm/api/resources/unstable/resources/segments/client/Client.mjs +134 -0
- package/dist/esm/api/resources/unstable/resources/segments/client/index.d.mts +1 -0
- package/dist/esm/api/resources/unstable/resources/segments/client/index.mjs +1 -0
- package/dist/esm/api/resources/unstable/resources/segments/client/requests/ListSegmentsRequest.d.mts +10 -0
- package/dist/esm/api/resources/unstable/resources/segments/client/requests/ListSegmentsRequest.mjs +2 -0
- package/dist/esm/api/resources/unstable/resources/segments/client/requests/RetrieveSegmentRequest.d.mts +10 -0
- package/dist/esm/api/resources/unstable/resources/segments/client/requests/RetrieveSegmentRequest.mjs +2 -0
- package/dist/esm/api/resources/unstable/resources/segments/client/requests/index.d.mts +2 -0
- package/dist/esm/api/resources/unstable/resources/segments/client/requests/index.mjs +1 -0
- package/dist/esm/api/resources/unstable/resources/segments/index.d.mts +2 -0
- package/dist/esm/api/resources/unstable/resources/segments/index.mjs +2 -0
- package/dist/esm/api/resources/unstable/resources/segments/types/Segment.d.mts +27 -0
- package/dist/esm/api/resources/unstable/resources/segments/types/Segment.mjs +9 -0
- package/dist/esm/api/resources/unstable/resources/segments/types/index.d.mts +1 -0
- package/dist/esm/api/resources/unstable/resources/segments/types/index.mjs +1 -0
- package/dist/esm/api/resources/unstable/resources/subscriptionTypes/client/Client.d.mts +77 -0
- package/dist/esm/api/resources/unstable/resources/subscriptionTypes/client/Client.mjs +213 -0
- package/dist/esm/api/resources/unstable/resources/subscriptionTypes/client/index.d.mts +1 -0
- package/dist/esm/api/resources/unstable/resources/subscriptionTypes/client/index.mjs +1 -0
- package/dist/esm/api/resources/unstable/resources/subscriptionTypes/client/requests/AttachSubscriptionTypeToContactRequest.d.mts +30 -0
- package/dist/esm/api/resources/unstable/resources/subscriptionTypes/client/requests/AttachSubscriptionTypeToContactRequest.mjs +2 -0
- package/dist/esm/api/resources/unstable/resources/subscriptionTypes/client/requests/DetachSubscriptionTypeToContactRequest.d.mts +13 -0
- package/dist/esm/api/resources/unstable/resources/subscriptionTypes/client/requests/DetachSubscriptionTypeToContactRequest.mjs +2 -0
- package/dist/esm/api/resources/unstable/resources/subscriptionTypes/client/requests/index.d.mts +2 -0
- package/dist/esm/api/resources/unstable/resources/subscriptionTypes/client/requests/index.mjs +1 -0
- package/dist/esm/api/resources/unstable/resources/subscriptionTypes/index.d.mts +2 -0
- package/dist/esm/api/resources/unstable/resources/subscriptionTypes/index.mjs +2 -0
- package/dist/esm/api/resources/unstable/resources/subscriptionTypes/types/SubscriptionType.d.mts +42 -0
- package/dist/esm/api/resources/unstable/resources/subscriptionTypes/types/SubscriptionType.mjs +22 -0
- package/dist/esm/api/resources/unstable/resources/subscriptionTypes/types/index.d.mts +1 -0
- package/dist/esm/api/resources/unstable/resources/subscriptionTypes/types/index.mjs +1 -0
- package/dist/esm/api/resources/unstable/resources/switch/client/Client.d.mts +37 -0
- package/dist/esm/api/resources/unstable/resources/switch/client/Client.mjs +90 -0
- package/dist/esm/api/resources/unstable/resources/switch/client/index.d.mts +1 -0
- package/dist/esm/api/resources/unstable/resources/switch/client/index.mjs +1 -0
- package/dist/esm/api/resources/unstable/resources/switch/index.d.mts +1 -0
- package/dist/esm/api/resources/unstable/resources/switch/index.mjs +1 -0
- package/dist/esm/api/resources/unstable/resources/tags/client/Client.d.mts +226 -0
- package/dist/esm/api/resources/unstable/resources/tags/client/Client.mjs +643 -0
- package/dist/esm/api/resources/unstable/resources/tags/client/index.d.mts +1 -0
- package/dist/esm/api/resources/unstable/resources/tags/client/index.mjs +1 -0
- package/dist/esm/api/resources/unstable/resources/tags/client/requests/AttachTagToContactRequest.d.mts +25 -0
- package/dist/esm/api/resources/unstable/resources/tags/client/requests/AttachTagToContactRequest.mjs +2 -0
- package/dist/esm/api/resources/unstable/resources/tags/client/requests/AttachTagToConversationRequest.d.mts +23 -0
- package/dist/esm/api/resources/unstable/resources/tags/client/requests/AttachTagToConversationRequest.mjs +2 -0
- package/dist/esm/api/resources/unstable/resources/tags/client/requests/AttachTagToTicketRequest.d.mts +23 -0
- package/dist/esm/api/resources/unstable/resources/tags/client/requests/AttachTagToTicketRequest.mjs +2 -0
- package/dist/esm/api/resources/unstable/resources/tags/client/requests/DeleteTagRequest.d.mts +10 -0
- package/dist/esm/api/resources/unstable/resources/tags/client/requests/DeleteTagRequest.mjs +2 -0
- package/dist/esm/api/resources/unstable/resources/tags/client/requests/DetachTagFromContactRequest.d.mts +13 -0
- package/dist/esm/api/resources/unstable/resources/tags/client/requests/DetachTagFromContactRequest.mjs +2 -0
- package/dist/esm/api/resources/unstable/resources/tags/client/requests/DetachTagFromConversationRequest.d.mts +30 -0
- package/dist/esm/api/resources/unstable/resources/tags/client/requests/DetachTagFromConversationRequest.mjs +2 -0
- package/dist/esm/api/resources/unstable/resources/tags/client/requests/DetachTagFromTicketRequest.d.mts +30 -0
- package/dist/esm/api/resources/unstable/resources/tags/client/requests/DetachTagFromTicketRequest.mjs +2 -0
- package/dist/esm/api/resources/unstable/resources/tags/client/requests/FindTagRequest.d.mts +10 -0
- package/dist/esm/api/resources/unstable/resources/tags/client/requests/FindTagRequest.mjs +2 -0
- package/dist/esm/api/resources/unstable/resources/tags/client/requests/index.d.mts +8 -0
- package/dist/esm/api/resources/unstable/resources/tags/client/requests/index.mjs +1 -0
- package/dist/esm/api/resources/unstable/resources/tags/index.d.mts +2 -0
- package/dist/esm/api/resources/unstable/resources/tags/index.mjs +2 -0
- package/dist/esm/api/resources/unstable/resources/tags/types/CreateTagRequestBody.d.mts +2 -0
- package/dist/esm/api/resources/unstable/resources/tags/types/CreateTagRequestBody.mjs +2 -0
- package/dist/esm/api/resources/unstable/resources/tags/types/Tag.d.mts +15 -0
- package/dist/esm/api/resources/unstable/resources/tags/types/Tag.mjs +2 -0
- package/dist/esm/api/resources/unstable/resources/tags/types/TagBasic.d.mts +11 -0
- package/dist/esm/api/resources/unstable/resources/tags/types/TagBasic.mjs +2 -0
- package/dist/esm/api/resources/unstable/resources/tags/types/index.d.mts +3 -0
- package/dist/esm/api/resources/unstable/resources/tags/types/index.mjs +3 -0
- package/dist/esm/api/resources/unstable/resources/teams/client/Client.d.mts +45 -0
- package/dist/esm/api/resources/unstable/resources/teams/client/Client.mjs +126 -0
- package/dist/esm/api/resources/unstable/resources/teams/client/index.d.mts +1 -0
- package/dist/esm/api/resources/unstable/resources/teams/client/index.mjs +1 -0
- package/dist/esm/api/resources/unstable/resources/teams/client/requests/RetrieveTeamRequest.d.mts +10 -0
- package/dist/esm/api/resources/unstable/resources/teams/client/requests/RetrieveTeamRequest.mjs +2 -0
- package/dist/esm/api/resources/unstable/resources/teams/client/requests/index.d.mts +1 -0
- package/dist/esm/api/resources/unstable/resources/teams/client/requests/index.mjs +1 -0
- package/dist/esm/api/resources/unstable/resources/teams/index.d.mts +2 -0
- package/dist/esm/api/resources/unstable/resources/teams/index.mjs +2 -0
- package/dist/esm/api/resources/unstable/resources/teams/types/Team.d.mts +15 -0
- package/dist/esm/api/resources/unstable/resources/teams/types/Team.mjs +2 -0
- package/dist/esm/api/resources/unstable/resources/teams/types/index.d.mts +1 -0
- package/dist/esm/api/resources/unstable/resources/teams/types/index.mjs +1 -0
- package/dist/esm/api/resources/unstable/resources/ticketStates/client/Client.d.mts +29 -0
- package/dist/esm/api/resources/unstable/resources/ticketStates/client/Client.mjs +72 -0
- package/dist/esm/api/resources/unstable/resources/ticketStates/client/index.d.mts +1 -0
- package/dist/esm/api/resources/unstable/resources/ticketStates/client/index.mjs +1 -0
- package/dist/esm/api/resources/unstable/resources/ticketStates/index.d.mts +1 -0
- package/dist/esm/api/resources/unstable/resources/ticketStates/index.mjs +1 -0
- package/dist/esm/api/resources/unstable/resources/ticketTypeAttributes/client/Client.d.mts +53 -0
- package/dist/esm/api/resources/unstable/resources/ticketTypeAttributes/client/Client.mjs +156 -0
- package/dist/esm/api/resources/unstable/resources/ticketTypeAttributes/client/index.d.mts +1 -0
- package/dist/esm/api/resources/unstable/resources/ticketTypeAttributes/client/index.mjs +1 -0
- package/dist/esm/api/resources/unstable/resources/ticketTypeAttributes/client/requests/CreateTicketTypeAttributeRequest.d.mts +47 -0
- package/dist/esm/api/resources/unstable/resources/ticketTypeAttributes/client/requests/CreateTicketTypeAttributeRequest.mjs +14 -0
- package/dist/esm/api/resources/unstable/resources/ticketTypeAttributes/client/requests/UpdateTicketTypeAttributeRequest.d.mts +34 -0
- package/dist/esm/api/resources/unstable/resources/ticketTypeAttributes/client/requests/UpdateTicketTypeAttributeRequest.mjs +2 -0
- package/dist/esm/api/resources/unstable/resources/ticketTypeAttributes/client/requests/index.d.mts +2 -0
- package/dist/esm/api/resources/unstable/resources/ticketTypeAttributes/client/requests/index.mjs +1 -0
- package/dist/esm/api/resources/unstable/resources/ticketTypeAttributes/index.d.mts +1 -0
- package/dist/esm/api/resources/unstable/resources/ticketTypeAttributes/index.mjs +1 -0
- package/dist/esm/api/resources/unstable/resources/ticketTypes/client/Client.d.mts +63 -0
- package/dist/esm/api/resources/unstable/resources/ticketTypes/client/Client.mjs +186 -0
- package/dist/esm/api/resources/unstable/resources/ticketTypes/client/index.d.mts +1 -0
- package/dist/esm/api/resources/unstable/resources/ticketTypes/client/index.mjs +1 -0
- package/dist/esm/api/resources/unstable/resources/ticketTypes/client/requests/GetTicketTypeRequest.d.mts +10 -0
- package/dist/esm/api/resources/unstable/resources/ticketTypes/client/requests/GetTicketTypeRequest.mjs +2 -0
- package/dist/esm/api/resources/unstable/resources/ticketTypes/client/requests/index.d.mts +1 -0
- package/dist/esm/api/resources/unstable/resources/ticketTypes/client/requests/index.mjs +1 -0
- package/dist/esm/api/resources/unstable/resources/ticketTypes/index.d.mts +1 -0
- package/dist/esm/api/resources/unstable/resources/ticketTypes/index.mjs +1 -0
- package/dist/esm/api/resources/unstable/resources/tickets/client/Client.d.mts +264 -0
- package/dist/esm/api/resources/unstable/resources/tickets/client/Client.mjs +519 -0
- package/dist/esm/api/resources/unstable/resources/tickets/client/index.d.mts +1 -0
- package/dist/esm/api/resources/unstable/resources/tickets/client/index.mjs +1 -0
- package/dist/esm/api/resources/unstable/resources/tickets/client/requests/DeleteTicketRequest.d.mts +10 -0
- package/dist/esm/api/resources/unstable/resources/tickets/client/requests/DeleteTicketRequest.mjs +2 -0
- package/dist/esm/api/resources/unstable/resources/tickets/client/requests/EnqueueCreateTicketRequest.d.mts +14 -0
- package/dist/esm/api/resources/unstable/resources/tickets/client/requests/EnqueueCreateTicketRequest.mjs +2 -0
- package/dist/esm/api/resources/unstable/resources/tickets/client/requests/GetTicketRequest.d.mts +10 -0
- package/dist/esm/api/resources/unstable/resources/tickets/client/requests/GetTicketRequest.mjs +2 -0
- package/dist/esm/api/resources/unstable/resources/tickets/client/requests/ReplyTicketRequest.d.mts +56 -0
- package/dist/esm/api/resources/unstable/resources/tickets/client/requests/ReplyTicketRequest.mjs +2 -0
- package/dist/esm/api/resources/unstable/resources/tickets/client/requests/UpdateTicketRequest.d.mts +65 -0
- package/dist/esm/api/resources/unstable/resources/tickets/client/requests/UpdateTicketRequest.mjs +2 -0
- package/dist/esm/api/resources/unstable/resources/tickets/client/requests/index.d.mts +5 -0
- package/dist/esm/api/resources/unstable/resources/tickets/client/requests/index.mjs +1 -0
- package/dist/esm/api/resources/unstable/resources/tickets/index.d.mts +2 -0
- package/dist/esm/api/resources/unstable/resources/tickets/index.mjs +2 -0
- package/dist/esm/api/resources/unstable/resources/tickets/types/DeleteTicketResponse.d.mts +11 -0
- package/dist/esm/api/resources/unstable/resources/tickets/types/DeleteTicketResponse.mjs +2 -0
- package/dist/esm/api/resources/unstable/resources/tickets/types/ReplyTicketRequestBody.d.mts +2 -0
- package/dist/esm/api/resources/unstable/resources/tickets/types/ReplyTicketRequestBody.mjs +2 -0
- package/dist/esm/api/resources/unstable/resources/tickets/types/Ticket.d.mts +43 -0
- package/dist/esm/api/resources/unstable/resources/tickets/types/Ticket.mjs +10 -0
- package/dist/esm/api/resources/unstable/resources/tickets/types/TicketContacts.d.mts +10 -0
- package/dist/esm/api/resources/unstable/resources/tickets/types/TicketContacts.mjs +2 -0
- package/dist/esm/api/resources/unstable/resources/tickets/types/TicketPart.d.mts +100 -0
- package/dist/esm/api/resources/unstable/resources/tickets/types/TicketPart.mjs +18 -0
- package/dist/esm/api/resources/unstable/resources/tickets/types/TicketState.d.mts +25 -0
- package/dist/esm/api/resources/unstable/resources/tickets/types/TicketState.mjs +11 -0
- package/dist/esm/api/resources/unstable/resources/tickets/types/TicketStateDetailed.d.mts +39 -0
- package/dist/esm/api/resources/unstable/resources/tickets/types/TicketStateDetailed.mjs +11 -0
- package/dist/esm/api/resources/unstable/resources/tickets/types/TicketType.d.mts +47 -0
- package/dist/esm/api/resources/unstable/resources/tickets/types/TicketType.mjs +10 -0
- package/dist/esm/api/resources/unstable/resources/tickets/types/index.d.mts +8 -0
- package/dist/esm/api/resources/unstable/resources/tickets/types/index.mjs +8 -0
- package/dist/esm/api/resources/unstable/resources/visitors/client/Client.d.mts +85 -0
- package/dist/esm/api/resources/unstable/resources/visitors/client/Client.mjs +217 -0
- package/dist/esm/api/resources/unstable/resources/visitors/client/index.d.mts +1 -0
- package/dist/esm/api/resources/unstable/resources/visitors/client/index.mjs +1 -0
- package/dist/esm/api/resources/unstable/resources/visitors/client/requests/ConvertVisitorRequest.d.mts +18 -0
- package/dist/esm/api/resources/unstable/resources/visitors/client/requests/ConvertVisitorRequest.mjs +2 -0
- package/dist/esm/api/resources/unstable/resources/visitors/client/requests/RetrieveVisitorWithUserIdRequest.d.mts +10 -0
- package/dist/esm/api/resources/unstable/resources/visitors/client/requests/RetrieveVisitorWithUserIdRequest.mjs +2 -0
- package/dist/esm/api/resources/unstable/resources/visitors/client/requests/index.d.mts +2 -0
- package/dist/esm/api/resources/unstable/resources/visitors/client/requests/index.mjs +1 -0
- package/dist/esm/api/resources/unstable/resources/visitors/index.d.mts +1 -0
- package/dist/esm/api/resources/unstable/resources/visitors/index.mjs +1 -0
- package/dist/esm/api/resources/unstable/types/ActivityLog.d.mts +102 -0
- package/dist/esm/api/resources/unstable/types/ActivityLog.mjs +74 -0
- package/dist/esm/api/resources/unstable/types/ActivityLogList.d.mts +11 -0
- package/dist/esm/api/resources/unstable/types/ActivityLogList.mjs +2 -0
- package/dist/esm/api/resources/unstable/types/ActivityLogMetadata.d.mts +27 -0
- package/dist/esm/api/resources/unstable/types/ActivityLogMetadata.mjs +2 -0
- package/dist/esm/api/resources/unstable/types/AddressableList.d.mts +11 -0
- package/dist/esm/api/resources/unstable/types/AddressableList.mjs +2 -0
- package/dist/esm/api/resources/unstable/types/AdminList.d.mts +10 -0
- package/dist/esm/api/resources/unstable/types/AdminList.mjs +2 -0
- package/dist/esm/api/resources/unstable/types/AdminPriorityLevel.d.mts +9 -0
- package/dist/esm/api/resources/unstable/types/AdminPriorityLevel.mjs +2 -0
- package/dist/esm/api/resources/unstable/types/AdminReplyConversationRequest.d.mts +28 -0
- package/dist/esm/api/resources/unstable/types/AdminReplyConversationRequest.mjs +9 -0
- package/dist/esm/api/resources/unstable/types/AdminReplyTicketRequest.d.mts +34 -0
- package/dist/esm/api/resources/unstable/types/AdminReplyTicketRequest.mjs +9 -0
- package/dist/esm/api/resources/unstable/types/AdminWithApp.d.mts +41 -0
- package/dist/esm/api/resources/unstable/types/AdminWithApp.mjs +2 -0
- package/dist/esm/api/resources/unstable/types/AiCallResponse.d.mts +25 -0
- package/dist/esm/api/resources/unstable/types/AiCallResponse.mjs +2 -0
- package/dist/esm/api/resources/unstable/types/App.d.mts +19 -0
- package/dist/esm/api/resources/unstable/types/App.mjs +2 -0
- package/dist/esm/api/resources/unstable/types/ArticleContent.d.mts +31 -0
- package/dist/esm/api/resources/unstable/types/ArticleContent.mjs +9 -0
- package/dist/esm/api/resources/unstable/types/ArticleList.d.mts +13 -0
- package/dist/esm/api/resources/unstable/types/ArticleList.mjs +2 -0
- package/dist/esm/api/resources/unstable/types/ArticleStatistics.d.mts +19 -0
- package/dist/esm/api/resources/unstable/types/ArticleStatistics.mjs +2 -0
- package/dist/esm/api/resources/unstable/types/ArticleTranslatedContent.d.mts +82 -0
- package/dist/esm/api/resources/unstable/types/ArticleTranslatedContent.mjs +2 -0
- package/dist/esm/api/resources/unstable/types/AssignConversationRequest.d.mts +19 -0
- package/dist/esm/api/resources/unstable/types/AssignConversationRequest.mjs +8 -0
- package/dist/esm/api/resources/unstable/types/AwayStatusReason.d.mts +17 -0
- package/dist/esm/api/resources/unstable/types/AwayStatusReason.mjs +2 -0
- package/dist/esm/api/resources/unstable/types/CallList.d.mts +13 -0
- package/dist/esm/api/resources/unstable/types/CallList.mjs +2 -0
- package/dist/esm/api/resources/unstable/types/CloseConversationRequest.d.mts +10 -0
- package/dist/esm/api/resources/unstable/types/CloseConversationRequest.mjs +2 -0
- package/dist/esm/api/resources/unstable/types/CollectionList.d.mts +13 -0
- package/dist/esm/api/resources/unstable/types/CollectionList.mjs +2 -0
- package/dist/esm/api/resources/unstable/types/CompanyAttachedContacts.d.mts +13 -0
- package/dist/esm/api/resources/unstable/types/CompanyAttachedContacts.mjs +2 -0
- package/dist/esm/api/resources/unstable/types/CompanyAttachedSegments.d.mts +10 -0
- package/dist/esm/api/resources/unstable/types/CompanyAttachedSegments.mjs +2 -0
- package/dist/esm/api/resources/unstable/types/CompanyData.d.mts +11 -0
- package/dist/esm/api/resources/unstable/types/CompanyData.mjs +2 -0
- package/dist/esm/api/resources/unstable/types/CompanyList.d.mts +13 -0
- package/dist/esm/api/resources/unstable/types/CompanyList.mjs +2 -0
- package/dist/esm/api/resources/unstable/types/CompanyScroll.d.mts +14 -0
- package/dist/esm/api/resources/unstable/types/CompanyScroll.mjs +2 -0
- package/dist/esm/api/resources/unstable/types/ContactArchived.d.mts +8 -0
- package/dist/esm/api/resources/unstable/types/ContactArchived.mjs +2 -0
- package/dist/esm/api/resources/unstable/types/ContactAttachedCompanies.d.mts +13 -0
- package/dist/esm/api/resources/unstable/types/ContactAttachedCompanies.mjs +2 -0
- package/dist/esm/api/resources/unstable/types/ContactBlocked.d.mts +8 -0
- package/dist/esm/api/resources/unstable/types/ContactBlocked.mjs +2 -0
- package/dist/esm/api/resources/unstable/types/ContactCompanies.d.mts +14 -0
- package/dist/esm/api/resources/unstable/types/ContactCompanies.mjs +2 -0
- package/dist/esm/api/resources/unstable/types/ContactDeleted.d.mts +8 -0
- package/dist/esm/api/resources/unstable/types/ContactDeleted.mjs +2 -0
- package/dist/esm/api/resources/unstable/types/ContactList.d.mts +13 -0
- package/dist/esm/api/resources/unstable/types/ContactList.mjs +2 -0
- package/dist/esm/api/resources/unstable/types/ContactLocation.d.mts +13 -0
- package/dist/esm/api/resources/unstable/types/ContactLocation.mjs +2 -0
- package/dist/esm/api/resources/unstable/types/ContactNotes.d.mts +14 -0
- package/dist/esm/api/resources/unstable/types/ContactNotes.mjs +2 -0
- package/dist/esm/api/resources/unstable/types/ContactReference.d.mts +11 -0
- package/dist/esm/api/resources/unstable/types/ContactReference.mjs +2 -0
- package/dist/esm/api/resources/unstable/types/ContactReplyBaseRequest.d.mts +23 -0
- package/dist/esm/api/resources/unstable/types/ContactReplyBaseRequest.mjs +2 -0
- package/dist/esm/api/resources/unstable/types/ContactReplyConversationRequest.d.mts +2 -0
- package/dist/esm/api/resources/unstable/types/ContactReplyConversationRequest.mjs +2 -0
- package/dist/esm/api/resources/unstable/types/ContactReplyEmailRequest.d.mts +10 -0
- package/dist/esm/api/resources/unstable/types/ContactReplyEmailRequest.mjs +2 -0
- package/dist/esm/api/resources/unstable/types/ContactReplyIntercomUserIdRequest.d.mts +10 -0
- package/dist/esm/api/resources/unstable/types/ContactReplyIntercomUserIdRequest.mjs +2 -0
- package/dist/esm/api/resources/unstable/types/ContactReplyTicketEmailRequest.d.mts +8 -0
- package/dist/esm/api/resources/unstable/types/ContactReplyTicketEmailRequest.mjs +2 -0
- package/dist/esm/api/resources/unstable/types/ContactReplyTicketIntercomUserIdRequest.d.mts +8 -0
- package/dist/esm/api/resources/unstable/types/ContactReplyTicketIntercomUserIdRequest.mjs +2 -0
- package/dist/esm/api/resources/unstable/types/ContactReplyTicketRequest.d.mts +2 -0
- package/dist/esm/api/resources/unstable/types/ContactReplyTicketRequest.mjs +2 -0
- package/dist/esm/api/resources/unstable/types/ContactReplyTicketUserIdRequest.d.mts +8 -0
- package/dist/esm/api/resources/unstable/types/ContactReplyTicketUserIdRequest.mjs +2 -0
- package/dist/esm/api/resources/unstable/types/ContactReplyUserIdRequest.d.mts +10 -0
- package/dist/esm/api/resources/unstable/types/ContactReplyUserIdRequest.mjs +2 -0
- package/dist/esm/api/resources/unstable/types/ContactSegments.d.mts +10 -0
- package/dist/esm/api/resources/unstable/types/ContactSegments.mjs +2 -0
- package/dist/esm/api/resources/unstable/types/ContactSocialProfiles.d.mts +8 -0
- package/dist/esm/api/resources/unstable/types/ContactSocialProfiles.mjs +2 -0
- package/dist/esm/api/resources/unstable/types/ContactSubscriptionTypes.d.mts +14 -0
- package/dist/esm/api/resources/unstable/types/ContactSubscriptionTypes.mjs +2 -0
- package/dist/esm/api/resources/unstable/types/ContactTags.d.mts +14 -0
- package/dist/esm/api/resources/unstable/types/ContactTags.mjs +2 -0
- package/dist/esm/api/resources/unstable/types/ContactUnarchived.d.mts +8 -0
- package/dist/esm/api/resources/unstable/types/ContactUnarchived.mjs +2 -0
- package/dist/esm/api/resources/unstable/types/ContentSourcesList.d.mts +8 -0
- package/dist/esm/api/resources/unstable/types/ContentSourcesList.mjs +2 -0
- package/dist/esm/api/resources/unstable/types/ConversationAttachmentFiles.d.mts +11 -0
- package/dist/esm/api/resources/unstable/types/ConversationAttachmentFiles.mjs +2 -0
- package/dist/esm/api/resources/unstable/types/ConversationAttributeUpdatedByAdmin.d.mts +17 -0
- package/dist/esm/api/resources/unstable/types/ConversationAttributeUpdatedByAdmin.mjs +2 -0
- package/dist/esm/api/resources/unstable/types/ConversationAttributeUpdatedByWorkflow.d.mts +22 -0
- package/dist/esm/api/resources/unstable/types/ConversationAttributeUpdatedByWorkflow.mjs +2 -0
- package/dist/esm/api/resources/unstable/types/ConversationContacts.d.mts +10 -0
- package/dist/esm/api/resources/unstable/types/ConversationContacts.mjs +2 -0
- package/dist/esm/api/resources/unstable/types/ConversationDeleted.d.mts +11 -0
- package/dist/esm/api/resources/unstable/types/ConversationDeleted.mjs +2 -0
- package/dist/esm/api/resources/unstable/types/ConversationFirstContactReply.d.mts +11 -0
- package/dist/esm/api/resources/unstable/types/ConversationFirstContactReply.mjs +2 -0
- package/dist/esm/api/resources/unstable/types/ConversationList.d.mts +13 -0
- package/dist/esm/api/resources/unstable/types/ConversationList.mjs +2 -0
- package/dist/esm/api/resources/unstable/types/ConversationPart.d.mts +47 -0
- package/dist/esm/api/resources/unstable/types/ConversationPart.mjs +10 -0
- package/dist/esm/api/resources/unstable/types/ConversationPartAuthor.d.mts +17 -0
- package/dist/esm/api/resources/unstable/types/ConversationPartAuthor.mjs +2 -0
- package/dist/esm/api/resources/unstable/types/ConversationPartMetadata.d.mts +19 -0
- package/dist/esm/api/resources/unstable/types/ConversationPartMetadata.mjs +2 -0
- package/dist/esm/api/resources/unstable/types/ConversationParts.d.mts +12 -0
- package/dist/esm/api/resources/unstable/types/ConversationParts.mjs +2 -0
- package/dist/esm/api/resources/unstable/types/ConversationRating.d.mts +16 -0
- package/dist/esm/api/resources/unstable/types/ConversationRating.mjs +2 -0
- package/dist/esm/api/resources/unstable/types/ConversationResponseTime.d.mts +11 -0
- package/dist/esm/api/resources/unstable/types/ConversationResponseTime.mjs +2 -0
- package/dist/esm/api/resources/unstable/types/ConversationSource.d.mts +39 -0
- package/dist/esm/api/resources/unstable/types/ConversationSource.mjs +17 -0
- package/dist/esm/api/resources/unstable/types/ConversationStatistics.d.mts +52 -0
- package/dist/esm/api/resources/unstable/types/ConversationStatistics.mjs +2 -0
- package/dist/esm/api/resources/unstable/types/ConversationTeammates.d.mts +10 -0
- package/dist/esm/api/resources/unstable/types/ConversationTeammates.mjs +2 -0
- package/dist/esm/api/resources/unstable/types/CreateArticleRequest.d.mts +29 -0
- package/dist/esm/api/resources/unstable/types/CreateArticleRequest.mjs +9 -0
- package/dist/esm/api/resources/unstable/types/CreateDataAttributeRequest.d.mts +11 -0
- package/dist/esm/api/resources/unstable/types/CreateDataAttributeRequest.mjs +2 -0
- package/dist/esm/api/resources/unstable/types/CreateInternalArticleRequest.d.mts +13 -0
- package/dist/esm/api/resources/unstable/types/CreateInternalArticleRequest.mjs +2 -0
- package/dist/esm/api/resources/unstable/types/CreateMessageRequest.d.mts +4 -0
- package/dist/esm/api/resources/unstable/types/CreateMessageRequest.mjs +2 -0
- package/dist/esm/api/resources/unstable/types/CreateOrUpdateCompanyRequest.d.mts +23 -0
- package/dist/esm/api/resources/unstable/types/CreateOrUpdateCompanyRequest.mjs +2 -0
- package/dist/esm/api/resources/unstable/types/CreateOrUpdateTagRequest.d.mts +9 -0
- package/dist/esm/api/resources/unstable/types/CreateOrUpdateTagRequest.mjs +2 -0
- package/dist/esm/api/resources/unstable/types/CreatePhoneSwitchRequest.d.mts +9 -0
- package/dist/esm/api/resources/unstable/types/CreatePhoneSwitchRequest.mjs +2 -0
- package/dist/esm/api/resources/unstable/types/CreateTicketReplyWithCommentRequest.d.mts +2 -0
- package/dist/esm/api/resources/unstable/types/CreateTicketReplyWithCommentRequest.mjs +2 -0
- package/dist/esm/api/resources/unstable/types/CreateTicketRequestBody.d.mts +40 -0
- package/dist/esm/api/resources/unstable/types/CreateTicketRequestBody.mjs +2 -0
- package/dist/esm/api/resources/unstable/types/CreateTicketTypeRequest.d.mts +25 -0
- package/dist/esm/api/resources/unstable/types/CreateTicketTypeRequest.mjs +10 -0
- package/dist/esm/api/resources/unstable/types/CursorPages.d.mts +16 -0
- package/dist/esm/api/resources/unstable/types/CursorPages.mjs +2 -0
- package/dist/esm/api/resources/unstable/types/CustomActionFinished.d.mts +22 -0
- package/dist/esm/api/resources/unstable/types/CustomActionFinished.mjs +12 -0
- package/dist/esm/api/resources/unstable/types/CustomActionStarted.d.mts +12 -0
- package/dist/esm/api/resources/unstable/types/CustomActionStarted.mjs +2 -0
- package/dist/esm/api/resources/unstable/types/CustomAttributes.d.mts +8 -0
- package/dist/esm/api/resources/unstable/types/CustomAttributes.mjs +2 -0
- package/dist/esm/api/resources/unstable/types/CustomChannelAttribute.d.mts +6 -0
- package/dist/esm/api/resources/unstable/types/CustomChannelAttribute.mjs +2 -0
- package/dist/esm/api/resources/unstable/types/CustomChannelBaseEvent.d.mts +8 -0
- package/dist/esm/api/resources/unstable/types/CustomChannelBaseEvent.mjs +2 -0
- package/dist/esm/api/resources/unstable/types/CustomChannelContact.d.mts +18 -0
- package/dist/esm/api/resources/unstable/types/CustomChannelContact.mjs +9 -0
- package/dist/esm/api/resources/unstable/types/CustomChannelNotificationResponse.d.mts +10 -0
- package/dist/esm/api/resources/unstable/types/CustomChannelNotificationResponse.mjs +2 -0
- package/dist/esm/api/resources/unstable/types/CustomObjectInstanceDeleted.d.mts +11 -0
- package/dist/esm/api/resources/unstable/types/CustomObjectInstanceDeleted.mjs +2 -0
- package/dist/esm/api/resources/unstable/types/CustomObjectInstanceList.d.mts +9 -0
- package/dist/esm/api/resources/unstable/types/CustomObjectInstanceList.mjs +2 -0
- package/dist/esm/api/resources/unstable/types/CustomerRequest.d.mts +7 -0
- package/dist/esm/api/resources/unstable/types/CustomerRequest.mjs +2 -0
- package/dist/esm/api/resources/unstable/types/DataAttributeList.d.mts +10 -0
- package/dist/esm/api/resources/unstable/types/DataAttributeList.mjs +2 -0
- package/dist/esm/api/resources/unstable/types/DataEventList.d.mts +21 -0
- package/dist/esm/api/resources/unstable/types/DataEventList.mjs +2 -0
- package/dist/esm/api/resources/unstable/types/DataEventSummary.d.mts +16 -0
- package/dist/esm/api/resources/unstable/types/DataEventSummary.mjs +2 -0
- package/dist/esm/api/resources/unstable/types/DataEventSummaryItem.d.mts +15 -0
- package/dist/esm/api/resources/unstable/types/DataEventSummaryItem.mjs +2 -0
- package/dist/esm/api/resources/unstable/types/DataExportCsv.d.mts +57 -0
- package/dist/esm/api/resources/unstable/types/DataExportCsv.mjs +2 -0
- package/dist/esm/api/resources/unstable/types/Datetime.d.mts +7 -0
- package/dist/esm/api/resources/unstable/types/Datetime.mjs +2 -0
- package/dist/esm/api/resources/unstable/types/DeletedArticleObject.d.mts +11 -0
- package/dist/esm/api/resources/unstable/types/DeletedArticleObject.mjs +2 -0
- package/dist/esm/api/resources/unstable/types/DeletedCollectionObject.d.mts +11 -0
- package/dist/esm/api/resources/unstable/types/DeletedCollectionObject.mjs +2 -0
- package/dist/esm/api/resources/unstable/types/DeletedCompanyObject.d.mts +11 -0
- package/dist/esm/api/resources/unstable/types/DeletedCompanyObject.mjs +2 -0
- package/dist/esm/api/resources/unstable/types/DeletedInternalArticleObject.d.mts +11 -0
- package/dist/esm/api/resources/unstable/types/DeletedInternalArticleObject.mjs +2 -0
- package/dist/esm/api/resources/unstable/types/DeletedObject.d.mts +11 -0
- package/dist/esm/api/resources/unstable/types/DeletedObject.mjs +2 -0
- package/dist/esm/api/resources/unstable/types/EmailAddressHeader.d.mts +11 -0
- package/dist/esm/api/resources/unstable/types/EmailAddressHeader.mjs +2 -0
- package/dist/esm/api/resources/unstable/types/EmailMessageMetadata.d.mts +12 -0
- package/dist/esm/api/resources/unstable/types/EmailMessageMetadata.mjs +2 -0
- package/dist/esm/api/resources/unstable/types/Error_.d.mts +24 -0
- package/dist/esm/api/resources/unstable/types/Error_.mjs +2 -0
- package/dist/esm/api/resources/unstable/types/EventDetails.d.mts +2 -0
- package/dist/esm/api/resources/unstable/types/EventDetails.mjs +2 -0
- package/dist/esm/api/resources/unstable/types/FileAttribute.d.mts +18 -0
- package/dist/esm/api/resources/unstable/types/FileAttribute.mjs +2 -0
- package/dist/esm/api/resources/unstable/types/GroupContent.d.mts +11 -0
- package/dist/esm/api/resources/unstable/types/GroupContent.mjs +2 -0
- package/dist/esm/api/resources/unstable/types/GroupTranslatedContent.d.mts +82 -0
- package/dist/esm/api/resources/unstable/types/GroupTranslatedContent.mjs +2 -0
- package/dist/esm/api/resources/unstable/types/InternalArticleList.d.mts +13 -0
- package/dist/esm/api/resources/unstable/types/InternalArticleList.mjs +2 -0
- package/dist/esm/api/resources/unstable/types/LinkedObject.d.mts +26 -0
- package/dist/esm/api/resources/unstable/types/LinkedObject.mjs +15 -0
- package/dist/esm/api/resources/unstable/types/LinkedObjectList.d.mts +14 -0
- package/dist/esm/api/resources/unstable/types/LinkedObjectList.mjs +2 -0
- package/dist/esm/api/resources/unstable/types/MultipleFilterSearchRequest.d.mts +24 -0
- package/dist/esm/api/resources/unstable/types/MultipleFilterSearchRequest.mjs +9 -0
- package/dist/esm/api/resources/unstable/types/NewsItemRequest.d.mts +30 -0
- package/dist/esm/api/resources/unstable/types/NewsItemRequest.mjs +9 -0
- package/dist/esm/api/resources/unstable/types/NotFoundErrorBody.d.mts +19 -0
- package/dist/esm/api/resources/unstable/types/NotFoundErrorBody.mjs +2 -0
- package/dist/esm/api/resources/unstable/types/NoteList.d.mts +13 -0
- package/dist/esm/api/resources/unstable/types/NoteList.mjs +2 -0
- package/dist/esm/api/resources/unstable/types/OpenConversationRequest.d.mts +7 -0
- package/dist/esm/api/resources/unstable/types/OpenConversationRequest.mjs +2 -0
- package/dist/esm/api/resources/unstable/types/OperatorWorkflowEvent.d.mts +19 -0
- package/dist/esm/api/resources/unstable/types/OperatorWorkflowEvent.mjs +2 -0
- package/dist/esm/api/resources/unstable/types/PagesLink.d.mts +13 -0
- package/dist/esm/api/resources/unstable/types/PagesLink.mjs +2 -0
- package/dist/esm/api/resources/unstable/types/PaginatedResponse.d.mts +21 -0
- package/dist/esm/api/resources/unstable/types/PaginatedResponse.mjs +9 -0
- package/dist/esm/api/resources/unstable/types/PaginatedResponseDataItem.d.mts +10 -0
- package/dist/esm/api/resources/unstable/types/PaginatedResponseDataItem.mjs +2 -0
- package/dist/esm/api/resources/unstable/types/PartAttachment.d.mts +19 -0
- package/dist/esm/api/resources/unstable/types/PartAttachment.mjs +2 -0
- package/dist/esm/api/resources/unstable/types/PhoneSwitch.d.mts +9 -0
- package/dist/esm/api/resources/unstable/types/PhoneSwitch.mjs +2 -0
- package/dist/esm/api/resources/unstable/types/QuickReplyOption.d.mts +6 -0
- package/dist/esm/api/resources/unstable/types/QuickReplyOption.mjs +2 -0
- package/dist/esm/api/resources/unstable/types/Recipient.d.mts +17 -0
- package/dist/esm/api/resources/unstable/types/Recipient.mjs +9 -0
- package/dist/esm/api/resources/unstable/types/RedactConversationRequest.d.mts +24 -0
- package/dist/esm/api/resources/unstable/types/RedactConversationRequest.mjs +2 -0
- package/dist/esm/api/resources/unstable/types/Reference.d.mts +9 -0
- package/dist/esm/api/resources/unstable/types/Reference.mjs +2 -0
- package/dist/esm/api/resources/unstable/types/RegisterFinVoiceCallRequest.d.mts +22 -0
- package/dist/esm/api/resources/unstable/types/RegisterFinVoiceCallRequest.mjs +10 -0
- package/dist/esm/api/resources/unstable/types/ReplyConversationRequestBody.d.mts +2 -0
- package/dist/esm/api/resources/unstable/types/ReplyConversationRequestBody.mjs +2 -0
- package/dist/esm/api/resources/unstable/types/SearchRequest.d.mts +11 -0
- package/dist/esm/api/resources/unstable/types/SearchRequest.mjs +2 -0
- package/dist/esm/api/resources/unstable/types/SegmentList.d.mts +12 -0
- package/dist/esm/api/resources/unstable/types/SegmentList.mjs +2 -0
- package/dist/esm/api/resources/unstable/types/SingleFilterSearchRequest.d.mts +27 -0
- package/dist/esm/api/resources/unstable/types/SingleFilterSearchRequest.mjs +13 -0
- package/dist/esm/api/resources/unstable/types/SlaApplied.d.mts +32 -0
- package/dist/esm/api/resources/unstable/types/SlaApplied.mjs +16 -0
- package/dist/esm/api/resources/unstable/types/SnoozeConversationRequest.d.mts +9 -0
- package/dist/esm/api/resources/unstable/types/SnoozeConversationRequest.mjs +2 -0
- package/dist/esm/api/resources/unstable/types/SocialProfile.d.mts +11 -0
- package/dist/esm/api/resources/unstable/types/SocialProfile.mjs +2 -0
- package/dist/esm/api/resources/unstable/types/StartingAfterPaging.d.mts +6 -0
- package/dist/esm/api/resources/unstable/types/StartingAfterPaging.mjs +2 -0
- package/dist/esm/api/resources/unstable/types/SubscriptionTypeList.d.mts +10 -0
- package/dist/esm/api/resources/unstable/types/SubscriptionTypeList.mjs +2 -0
- package/dist/esm/api/resources/unstable/types/TagCompanyRequest.d.mts +20 -0
- package/dist/esm/api/resources/unstable/types/TagCompanyRequest.mjs +2 -0
- package/dist/esm/api/resources/unstable/types/TagList.d.mts +10 -0
- package/dist/esm/api/resources/unstable/types/TagList.mjs +2 -0
- package/dist/esm/api/resources/unstable/types/TagMultipleUsersRequest.d.mts +17 -0
- package/dist/esm/api/resources/unstable/types/TagMultipleUsersRequest.mjs +2 -0
- package/dist/esm/api/resources/unstable/types/Tags.d.mts +10 -0
- package/dist/esm/api/resources/unstable/types/Tags.mjs +2 -0
- package/dist/esm/api/resources/unstable/types/TeamList.d.mts +10 -0
- package/dist/esm/api/resources/unstable/types/TeamList.mjs +2 -0
- package/dist/esm/api/resources/unstable/types/TeamPriorityLevel.d.mts +9 -0
- package/dist/esm/api/resources/unstable/types/TeamPriorityLevel.mjs +2 -0
- package/dist/esm/api/resources/unstable/types/TicketCustomAttributes.d.mts +8 -0
- package/dist/esm/api/resources/unstable/types/TicketCustomAttributes.mjs +2 -0
- package/dist/esm/api/resources/unstable/types/TicketList.d.mts +13 -0
- package/dist/esm/api/resources/unstable/types/TicketList.mjs +2 -0
- package/dist/esm/api/resources/unstable/types/TicketPartAuthor.d.mts +23 -0
- package/dist/esm/api/resources/unstable/types/TicketPartAuthor.mjs +11 -0
- package/dist/esm/api/resources/unstable/types/TicketParts.d.mts +12 -0
- package/dist/esm/api/resources/unstable/types/TicketParts.mjs +2 -0
- package/dist/esm/api/resources/unstable/types/TicketReply.d.mts +32 -0
- package/dist/esm/api/resources/unstable/types/TicketReply.mjs +10 -0
- package/dist/esm/api/resources/unstable/types/TicketRequestCustomAttributes.d.mts +7 -0
- package/dist/esm/api/resources/unstable/types/TicketRequestCustomAttributes.mjs +2 -0
- package/dist/esm/api/resources/unstable/types/TicketStateList.d.mts +10 -0
- package/dist/esm/api/resources/unstable/types/TicketStateList.mjs +2 -0
- package/dist/esm/api/resources/unstable/types/TicketTypeAttribute.d.mts +39 -0
- package/dist/esm/api/resources/unstable/types/TicketTypeAttribute.mjs +2 -0
- package/dist/esm/api/resources/unstable/types/TicketTypeAttributeList.d.mts +10 -0
- package/dist/esm/api/resources/unstable/types/TicketTypeAttributeList.mjs +2 -0
- package/dist/esm/api/resources/unstable/types/TicketTypeList.d.mts +10 -0
- package/dist/esm/api/resources/unstable/types/TicketTypeList.mjs +2 -0
- package/dist/esm/api/resources/unstable/types/Translation.d.mts +11 -0
- package/dist/esm/api/resources/unstable/types/Translation.mjs +2 -0
- package/dist/esm/api/resources/unstable/types/UntagCompanyRequest.d.mts +22 -0
- package/dist/esm/api/resources/unstable/types/UntagCompanyRequest.mjs +2 -0
- package/dist/esm/api/resources/unstable/types/UpdateDataAttributeRequestBody.d.mts +8 -0
- package/dist/esm/api/resources/unstable/types/UpdateDataAttributeRequestBody.mjs +2 -0
- package/dist/esm/api/resources/unstable/types/Visitor.d.mts +125 -0
- package/dist/esm/api/resources/unstable/types/Visitor.mjs +2 -0
- package/dist/esm/api/resources/unstable/types/VisitorDeletedObject.d.mts +11 -0
- package/dist/esm/api/resources/unstable/types/VisitorDeletedObject.mjs +2 -0
- package/dist/esm/api/resources/unstable/types/WhatsappMessageStatusList.d.mts +60 -0
- package/dist/esm/api/resources/unstable/types/WhatsappMessageStatusList.mjs +17 -0
- package/dist/esm/api/resources/unstable/types/index.d.mts +154 -0
- package/dist/esm/api/resources/unstable/types/index.mjs +154 -0
- package/dist/esm/api/resources/visitors/client/Client.d.mts +86 -0
- package/dist/esm/api/resources/visitors/client/Client.mjs +212 -0
- package/dist/esm/api/resources/visitors/client/index.d.mts +1 -0
- package/dist/esm/api/resources/visitors/client/index.mjs +1 -0
- package/dist/esm/api/resources/visitors/client/requests/FindVisitorRequest.d.mts +10 -0
- package/dist/esm/api/resources/visitors/client/requests/FindVisitorRequest.mjs +2 -0
- package/dist/esm/api/resources/visitors/client/requests/MergeVisitorToContactRequest.d.mts +43 -0
- package/dist/esm/api/resources/visitors/client/requests/MergeVisitorToContactRequest.mjs +2 -0
- package/dist/esm/api/resources/visitors/client/requests/index.d.mts +2 -0
- package/dist/esm/api/resources/visitors/client/requests/index.mjs +1 -0
- package/dist/esm/api/resources/visitors/index.d.mts +1 -0
- package/dist/esm/api/resources/visitors/index.mjs +1 -0
- package/dist/esm/api/types/ActivityLog.d.mts +127 -0
- package/dist/esm/api/types/ActivityLog.mjs +99 -0
- package/dist/esm/api/types/ActivityLogList.d.mts +11 -0
- package/dist/esm/api/types/ActivityLogList.mjs +2 -0
- package/dist/esm/api/types/ActivityLogMetadata.d.mts +52 -0
- package/dist/esm/api/types/ActivityLogMetadata.mjs +2 -0
- package/dist/esm/api/types/AddressableList.d.mts +11 -0
- package/dist/esm/api/types/AddressableList.mjs +2 -0
- package/dist/esm/api/types/AdminList.d.mts +10 -0
- package/dist/esm/api/types/AdminList.mjs +2 -0
- package/dist/esm/api/types/AdminPriorityLevel.d.mts +9 -0
- package/dist/esm/api/types/AdminPriorityLevel.mjs +2 -0
- package/dist/esm/api/types/AdminReplyConversationRequest.d.mts +28 -0
- package/dist/esm/api/types/AdminReplyConversationRequest.mjs +9 -0
- package/dist/esm/api/types/AdminReplyTicketRequest.d.mts +34 -0
- package/dist/esm/api/types/AdminReplyTicketRequest.mjs +9 -0
- package/dist/esm/api/types/AdminWithApp.d.mts +41 -0
- package/dist/esm/api/types/AdminWithApp.mjs +2 -0
- package/dist/esm/api/types/App.d.mts +19 -0
- package/dist/esm/api/types/App.mjs +2 -0
- package/dist/esm/api/types/ArticleContent.d.mts +31 -0
- package/dist/esm/api/types/ArticleContent.mjs +9 -0
- package/dist/esm/api/types/ArticleList.d.mts +13 -0
- package/dist/esm/api/types/ArticleList.mjs +2 -0
- package/dist/esm/api/types/ArticleStatistics.d.mts +19 -0
- package/dist/esm/api/types/ArticleStatistics.mjs +2 -0
- package/dist/esm/api/types/ArticleTranslatedContent.d.mts +82 -0
- package/dist/esm/api/types/ArticleTranslatedContent.mjs +2 -0
- package/dist/esm/api/types/AssignConversationRequest.d.mts +19 -0
- package/dist/esm/api/types/AssignConversationRequest.mjs +8 -0
- package/dist/esm/api/types/AwayStatusReason.d.mts +17 -0
- package/dist/esm/api/types/AwayStatusReason.mjs +2 -0
- package/dist/esm/api/types/CallList.d.mts +13 -0
- package/dist/esm/api/types/CallList.mjs +2 -0
- package/dist/esm/api/types/CloseConversationRequest.d.mts +10 -0
- package/dist/esm/api/types/CloseConversationRequest.mjs +2 -0
- package/dist/esm/api/types/CollectionList.d.mts +13 -0
- package/dist/esm/api/types/CollectionList.mjs +2 -0
- package/dist/esm/api/types/CompanyAttachedContacts.d.mts +13 -0
- package/dist/esm/api/types/CompanyAttachedContacts.mjs +2 -0
- package/dist/esm/api/types/CompanyAttachedSegments.d.mts +10 -0
- package/dist/esm/api/types/CompanyAttachedSegments.mjs +2 -0
- package/dist/esm/api/types/CompanyData.d.mts +11 -0
- package/dist/esm/api/types/CompanyData.mjs +2 -0
- package/dist/esm/api/types/CompanyList.d.mts +13 -0
- package/dist/esm/api/types/CompanyList.mjs +2 -0
- package/dist/esm/api/types/CompanyScroll.d.mts +14 -0
- package/dist/esm/api/types/CompanyScroll.mjs +2 -0
- package/dist/esm/api/types/ContactArchived.d.mts +8 -0
- package/dist/esm/api/types/ContactArchived.mjs +2 -0
- package/dist/esm/api/types/ContactAttachedCompanies.d.mts +13 -0
- package/dist/esm/api/types/ContactAttachedCompanies.mjs +2 -0
- package/dist/esm/api/types/ContactBlocked.d.mts +8 -0
- package/dist/esm/api/types/ContactBlocked.mjs +2 -0
- package/dist/esm/api/types/ContactCompanies.d.mts +14 -0
- package/dist/esm/api/types/ContactCompanies.mjs +2 -0
- package/dist/esm/api/types/ContactDeleted.d.mts +8 -0
- package/dist/esm/api/types/ContactDeleted.mjs +2 -0
- package/dist/esm/api/types/ContactList.d.mts +13 -0
- package/dist/esm/api/types/ContactList.mjs +2 -0
- package/dist/esm/api/types/ContactLocation.d.mts +13 -0
- package/dist/esm/api/types/ContactLocation.mjs +2 -0
- package/dist/esm/api/types/ContactNotes.d.mts +14 -0
- package/dist/esm/api/types/ContactNotes.mjs +2 -0
- package/dist/esm/api/types/ContactReference.d.mts +11 -0
- package/dist/esm/api/types/ContactReference.mjs +2 -0
- package/dist/esm/api/types/ContactReplyBaseRequest.d.mts +23 -0
- package/dist/esm/api/types/ContactReplyBaseRequest.mjs +2 -0
- package/dist/esm/api/types/ContactReplyConversationRequest.d.mts +2 -0
- package/dist/esm/api/types/ContactReplyConversationRequest.mjs +2 -0
- package/dist/esm/api/types/ContactReplyEmailRequest.d.mts +10 -0
- package/dist/esm/api/types/ContactReplyEmailRequest.mjs +2 -0
- package/dist/esm/api/types/ContactReplyIntercomUserIdRequest.d.mts +10 -0
- package/dist/esm/api/types/ContactReplyIntercomUserIdRequest.mjs +2 -0
- package/dist/esm/api/types/ContactReplyTicketEmailRequest.d.mts +8 -0
- package/dist/esm/api/types/ContactReplyTicketEmailRequest.mjs +2 -0
- package/dist/esm/api/types/ContactReplyTicketIntercomUserIdRequest.d.mts +8 -0
- package/dist/esm/api/types/ContactReplyTicketIntercomUserIdRequest.mjs +2 -0
- package/dist/esm/api/types/ContactReplyTicketRequest.d.mts +2 -0
- package/dist/esm/api/types/ContactReplyTicketRequest.mjs +2 -0
- package/dist/esm/api/types/ContactReplyTicketUserIdRequest.d.mts +8 -0
- package/dist/esm/api/types/ContactReplyTicketUserIdRequest.mjs +2 -0
- package/dist/esm/api/types/ContactReplyUserIdRequest.d.mts +10 -0
- package/dist/esm/api/types/ContactReplyUserIdRequest.mjs +2 -0
- package/dist/esm/api/types/ContactSegments.d.mts +10 -0
- package/dist/esm/api/types/ContactSegments.mjs +2 -0
- package/dist/esm/api/types/ContactSocialProfiles.d.mts +8 -0
- package/dist/esm/api/types/ContactSocialProfiles.mjs +2 -0
- package/dist/esm/api/types/ContactSubscriptionTypes.d.mts +14 -0
- package/dist/esm/api/types/ContactSubscriptionTypes.mjs +2 -0
- package/dist/esm/api/types/ContactTags.d.mts +14 -0
- package/dist/esm/api/types/ContactTags.mjs +2 -0
- package/dist/esm/api/types/ContactUnarchived.d.mts +8 -0
- package/dist/esm/api/types/ContactUnarchived.mjs +2 -0
- package/dist/esm/api/types/ContentSourcesList.d.mts +8 -0
- package/dist/esm/api/types/ContentSourcesList.mjs +2 -0
- package/dist/esm/api/types/ConversationAttachmentFiles.d.mts +11 -0
- package/dist/esm/api/types/ConversationAttachmentFiles.mjs +2 -0
- package/dist/esm/api/types/ConversationAttributeUpdatedByAdmin.d.mts +17 -0
- package/dist/esm/api/types/ConversationAttributeUpdatedByAdmin.mjs +2 -0
- package/dist/esm/api/types/ConversationAttributeUpdatedByWorkflow.d.mts +22 -0
- package/dist/esm/api/types/ConversationAttributeUpdatedByWorkflow.mjs +2 -0
- package/dist/esm/api/types/ConversationContacts.d.mts +10 -0
- package/dist/esm/api/types/ConversationContacts.mjs +2 -0
- package/dist/esm/api/types/ConversationDeleted.d.mts +11 -0
- package/dist/esm/api/types/ConversationDeleted.mjs +2 -0
- package/dist/esm/api/types/ConversationFirstContactReply.d.mts +11 -0
- package/dist/esm/api/types/ConversationFirstContactReply.mjs +2 -0
- package/dist/esm/api/types/ConversationList.d.mts +13 -0
- package/dist/esm/api/types/ConversationList.mjs +2 -0
- package/dist/esm/api/types/ConversationPart.d.mts +47 -0
- package/dist/esm/api/types/ConversationPart.mjs +10 -0
- package/dist/esm/api/types/ConversationPartAuthor.d.mts +17 -0
- package/dist/esm/api/types/ConversationPartAuthor.mjs +2 -0
- package/dist/esm/api/types/ConversationPartMetadata.d.mts +19 -0
- package/dist/esm/api/types/ConversationPartMetadata.mjs +2 -0
- package/dist/esm/api/types/ConversationParts.d.mts +12 -0
- package/dist/esm/api/types/ConversationParts.mjs +2 -0
- package/dist/esm/api/types/ConversationRating.d.mts +16 -0
- package/dist/esm/api/types/ConversationRating.mjs +2 -0
- package/dist/esm/api/types/ConversationResponseTime.d.mts +11 -0
- package/dist/esm/api/types/ConversationResponseTime.mjs +2 -0
- package/dist/esm/api/types/ConversationSource.d.mts +39 -0
- package/dist/esm/api/types/ConversationSource.mjs +17 -0
- package/dist/esm/api/types/ConversationStatistics.d.mts +52 -0
- package/dist/esm/api/types/ConversationStatistics.mjs +2 -0
- package/dist/esm/api/types/ConversationTeammates.d.mts +10 -0
- package/dist/esm/api/types/ConversationTeammates.mjs +2 -0
- package/dist/esm/api/types/CreateArticleRequest.d.mts +35 -0
- package/dist/esm/api/types/CreateArticleRequest.mjs +14 -0
- package/dist/esm/api/types/CreateContactRequest.d.mts +34 -0
- package/dist/esm/api/types/CreateContactRequest.mjs +2 -0
- package/dist/esm/api/types/CreateContactRequestTwo.d.mts +1 -0
- package/dist/esm/api/types/CreateContactRequestTwo.mjs +2 -0
- package/dist/esm/api/types/CreateDataAttributeRequest.d.mts +11 -0
- package/dist/esm/api/types/CreateDataAttributeRequest.mjs +2 -0
- package/dist/esm/api/types/CreateDataEventRequest.d.mts +19 -0
- package/dist/esm/api/types/CreateDataEventRequest.mjs +2 -0
- package/dist/esm/api/types/CreateDataEventRequestTwo.d.mts +1 -0
- package/dist/esm/api/types/CreateDataEventRequestTwo.mjs +2 -0
- package/dist/esm/api/types/CreateInternalArticleRequest.d.mts +13 -0
- package/dist/esm/api/types/CreateInternalArticleRequest.mjs +2 -0
- package/dist/esm/api/types/CreateMessageRequest.d.mts +97 -0
- package/dist/esm/api/types/CreateMessageRequest.mjs +26 -0
- package/dist/esm/api/types/CreateOrUpdateCompanyRequest.d.mts +23 -0
- package/dist/esm/api/types/CreateOrUpdateCompanyRequest.mjs +2 -0
- package/dist/esm/api/types/CreateOrUpdateTagRequest.d.mts +9 -0
- package/dist/esm/api/types/CreateOrUpdateTagRequest.mjs +2 -0
- package/dist/esm/api/types/CreatePhoneSwitchRequest.d.mts +9 -0
- package/dist/esm/api/types/CreatePhoneSwitchRequest.mjs +2 -0
- package/dist/esm/api/types/CreateTicketReplyWithCommentRequest.d.mts +2 -0
- package/dist/esm/api/types/CreateTicketReplyWithCommentRequest.mjs +2 -0
- package/dist/esm/api/types/CreateTicketRequestBody.d.mts +40 -0
- package/dist/esm/api/types/CreateTicketRequestBody.mjs +2 -0
- package/dist/esm/api/types/CreateTicketTypeRequest.d.mts +25 -0
- package/dist/esm/api/types/CreateTicketTypeRequest.mjs +10 -0
- package/dist/esm/api/types/CursorPages.d.mts +16 -0
- package/dist/esm/api/types/CursorPages.mjs +2 -0
- package/dist/esm/api/types/CustomActionFinished.d.mts +22 -0
- package/dist/esm/api/types/CustomActionFinished.mjs +12 -0
- package/dist/esm/api/types/CustomActionStarted.d.mts +12 -0
- package/dist/esm/api/types/CustomActionStarted.mjs +2 -0
- package/dist/esm/api/types/CustomAttributes.d.mts +8 -0
- package/dist/esm/api/types/CustomAttributes.mjs +2 -0
- package/dist/esm/api/types/CustomChannelAttribute.d.mts +6 -0
- package/dist/esm/api/types/CustomChannelAttribute.mjs +2 -0
- package/dist/esm/api/types/CustomChannelBaseEvent.d.mts +8 -0
- package/dist/esm/api/types/CustomChannelBaseEvent.mjs +2 -0
- package/dist/esm/api/types/CustomChannelContact.d.mts +18 -0
- package/dist/esm/api/types/CustomChannelContact.mjs +9 -0
- package/dist/esm/api/types/CustomChannelNotificationResponse.d.mts +10 -0
- package/dist/esm/api/types/CustomChannelNotificationResponse.mjs +2 -0
- package/dist/esm/api/types/CustomObjectInstanceDeleted.d.mts +11 -0
- package/dist/esm/api/types/CustomObjectInstanceDeleted.mjs +2 -0
- package/dist/esm/api/types/CustomObjectInstanceList.d.mts +9 -0
- package/dist/esm/api/types/CustomObjectInstanceList.mjs +2 -0
- package/dist/esm/api/types/CustomerRequest.d.mts +7 -0
- package/dist/esm/api/types/CustomerRequest.mjs +2 -0
- package/dist/esm/api/types/DataAttributeList.d.mts +10 -0
- package/dist/esm/api/types/DataAttributeList.mjs +2 -0
- package/dist/esm/api/types/DataEventList.d.mts +21 -0
- package/dist/esm/api/types/DataEventList.mjs +2 -0
- package/dist/esm/api/types/DataEventSummary.d.mts +16 -0
- package/dist/esm/api/types/DataEventSummary.mjs +2 -0
- package/dist/esm/api/types/DataEventSummaryItem.d.mts +15 -0
- package/dist/esm/api/types/DataEventSummaryItem.mjs +2 -0
- package/dist/esm/api/types/DataExportCsv.d.mts +57 -0
- package/dist/esm/api/types/DataExportCsv.mjs +2 -0
- package/dist/esm/api/types/Datetime.d.mts +7 -0
- package/dist/esm/api/types/Datetime.mjs +2 -0
- package/dist/esm/api/types/DeletedArticleObject.d.mts +11 -0
- package/dist/esm/api/types/DeletedArticleObject.mjs +2 -0
- package/dist/esm/api/types/DeletedCollectionObject.d.mts +11 -0
- package/dist/esm/api/types/DeletedCollectionObject.mjs +2 -0
- package/dist/esm/api/types/DeletedCompanyObject.d.mts +11 -0
- package/dist/esm/api/types/DeletedCompanyObject.mjs +2 -0
- package/dist/esm/api/types/DeletedInternalArticleObject.d.mts +11 -0
- package/dist/esm/api/types/DeletedInternalArticleObject.mjs +2 -0
- package/dist/esm/api/types/DeletedObject.d.mts +11 -0
- package/dist/esm/api/types/DeletedObject.mjs +2 -0
- package/dist/esm/api/types/EmailAddressHeader.d.mts +11 -0
- package/dist/esm/api/types/EmailAddressHeader.mjs +2 -0
- package/dist/esm/api/types/EmailMessageMetadata.d.mts +10 -0
- package/dist/esm/api/types/EmailMessageMetadata.mjs +2 -0
- package/dist/esm/api/types/Error_.d.mts +24 -0
- package/dist/esm/api/types/Error_.mjs +2 -0
- package/dist/esm/api/types/EventDetails.d.mts +2 -0
- package/dist/esm/api/types/EventDetails.mjs +2 -0
- package/dist/esm/api/types/FileAttribute.d.mts +18 -0
- package/dist/esm/api/types/FileAttribute.mjs +2 -0
- package/dist/esm/api/types/GroupContent.d.mts +11 -0
- package/dist/esm/api/types/GroupContent.mjs +2 -0
- package/dist/esm/api/types/GroupTranslatedContent.d.mts +82 -0
- package/dist/esm/api/types/GroupTranslatedContent.mjs +2 -0
- package/dist/esm/api/types/InternalArticleList.d.mts +13 -0
- package/dist/esm/api/types/InternalArticleList.mjs +2 -0
- package/dist/esm/api/types/LinkedObject.d.mts +26 -0
- package/dist/esm/api/types/LinkedObject.mjs +15 -0
- package/dist/esm/api/types/LinkedObjectList.d.mts +14 -0
- package/dist/esm/api/types/LinkedObjectList.mjs +2 -0
- package/dist/esm/api/types/Metadata.d.mts +2 -0
- package/dist/esm/api/types/Metadata.mjs +2 -0
- package/dist/esm/api/types/MultipleFilterSearchRequest.d.mts +24 -0
- package/dist/esm/api/types/MultipleFilterSearchRequest.mjs +9 -0
- package/dist/esm/api/types/NewsItemRequest.d.mts +30 -0
- package/dist/esm/api/types/NewsItemRequest.mjs +9 -0
- package/dist/esm/api/types/NotFoundErrorBody.d.mts +19 -0
- package/dist/esm/api/types/NotFoundErrorBody.mjs +2 -0
- package/dist/esm/api/types/NoteList.d.mts +12 -0
- package/dist/esm/api/types/NoteList.mjs +2 -0
- package/dist/esm/api/types/OffsetPages.d.mts +11 -0
- package/dist/esm/api/types/OffsetPages.mjs +2 -0
- package/dist/esm/api/types/OpenConversationRequest.d.mts +7 -0
- package/dist/esm/api/types/OpenConversationRequest.mjs +2 -0
- package/dist/esm/api/types/OperatorWorkflowEvent.d.mts +19 -0
- package/dist/esm/api/types/OperatorWorkflowEvent.mjs +2 -0
- package/dist/esm/api/types/PagesLink.d.mts +13 -0
- package/dist/esm/api/types/PagesLink.mjs +2 -0
- package/dist/esm/api/types/PaginatedResponse.d.mts +21 -0
- package/dist/esm/api/types/PaginatedResponse.mjs +9 -0
- package/dist/esm/api/types/PaginatedResponseDataItem.d.mts +10 -0
- package/dist/esm/api/types/PaginatedResponseDataItem.mjs +2 -0
- package/dist/esm/api/types/PartAttachment.d.mts +19 -0
- package/dist/esm/api/types/PartAttachment.mjs +2 -0
- package/dist/esm/api/types/PhoneSwitch.d.mts +9 -0
- package/dist/esm/api/types/PhoneSwitch.mjs +2 -0
- package/dist/esm/api/types/QuickReplyOption.d.mts +6 -0
- package/dist/esm/api/types/QuickReplyOption.mjs +2 -0
- package/dist/esm/api/types/Recipient.d.mts +17 -0
- package/dist/esm/api/types/Recipient.mjs +9 -0
- package/dist/esm/api/types/RedactConversationRequest.d.mts +24 -0
- package/dist/esm/api/types/RedactConversationRequest.mjs +2 -0
- package/dist/esm/api/types/Reference.d.mts +9 -0
- package/dist/esm/api/types/Reference.mjs +2 -0
- package/dist/esm/api/types/ReplyConversationRequest.d.mts +2 -0
- package/dist/esm/api/types/ReplyConversationRequest.mjs +2 -0
- package/dist/esm/api/types/SearchRequest.d.mts +11 -0
- package/dist/esm/api/types/SearchRequest.mjs +2 -0
- package/dist/esm/api/types/SegmentList.d.mts +12 -0
- package/dist/esm/api/types/SegmentList.mjs +2 -0
- package/dist/esm/api/types/SingleFilterSearchRequest.d.mts +31 -0
- package/dist/esm/api/types/SingleFilterSearchRequest.mjs +17 -0
- package/dist/esm/api/types/SlaApplied.d.mts +32 -0
- package/dist/esm/api/types/SlaApplied.mjs +16 -0
- package/dist/esm/api/types/SnoozeConversationRequest.d.mts +9 -0
- package/dist/esm/api/types/SnoozeConversationRequest.mjs +2 -0
- package/dist/esm/api/types/SocialProfile.d.mts +11 -0
- package/dist/esm/api/types/SocialProfile.mjs +2 -0
- package/dist/esm/api/types/StartingAfterPaging.d.mts +6 -0
- package/dist/esm/api/types/StartingAfterPaging.mjs +2 -0
- package/dist/esm/api/types/SubscriptionTypeList.d.mts +10 -0
- package/dist/esm/api/types/SubscriptionTypeList.mjs +2 -0
- package/dist/esm/api/types/TagCompanyRequest.d.mts +20 -0
- package/dist/esm/api/types/TagCompanyRequest.mjs +2 -0
- package/dist/esm/api/types/TagList.d.mts +10 -0
- package/dist/esm/api/types/TagList.mjs +2 -0
- package/dist/esm/api/types/TagMultipleUsersRequest.d.mts +17 -0
- package/dist/esm/api/types/TagMultipleUsersRequest.mjs +2 -0
- package/dist/esm/api/types/Tags.d.mts +10 -0
- package/dist/esm/api/types/Tags.mjs +2 -0
- package/dist/esm/api/types/TeamList.d.mts +10 -0
- package/dist/esm/api/types/TeamList.mjs +2 -0
- package/dist/esm/api/types/TeamPriorityLevel.d.mts +9 -0
- package/dist/esm/api/types/TeamPriorityLevel.mjs +2 -0
- package/dist/esm/api/types/TicketCustomAttributes.d.mts +4 -0
- package/dist/esm/api/types/TicketCustomAttributes.mjs +2 -0
- package/dist/esm/api/types/TicketList.d.mts +13 -0
- package/dist/esm/api/types/TicketList.mjs +2 -0
- package/dist/esm/api/types/TicketPartAuthor.d.mts +23 -0
- package/dist/esm/api/types/TicketPartAuthor.mjs +11 -0
- package/dist/esm/api/types/TicketParts.d.mts +12 -0
- package/dist/esm/api/types/TicketParts.mjs +2 -0
- package/dist/esm/api/types/TicketReply.d.mts +32 -0
- package/dist/esm/api/types/TicketReply.mjs +10 -0
- package/dist/esm/api/types/TicketRequestCustomAttributes.d.mts +4 -0
- package/dist/esm/api/types/TicketRequestCustomAttributes.mjs +2 -0
- package/dist/esm/api/types/TicketStateList.d.mts +10 -0
- package/dist/esm/api/types/TicketStateList.mjs +2 -0
- package/dist/esm/api/types/TicketTypeAttribute.d.mts +52 -0
- package/dist/esm/api/types/TicketTypeAttribute.mjs +14 -0
- package/dist/esm/api/types/TicketTypeAttributeList.d.mts +10 -0
- package/dist/esm/api/types/TicketTypeAttributeList.mjs +2 -0
- package/dist/esm/api/types/TicketTypeList.d.mts +10 -0
- package/dist/esm/api/types/TicketTypeList.mjs +2 -0
- package/dist/esm/api/types/Translation.d.mts +11 -0
- package/dist/esm/api/types/Translation.mjs +2 -0
- package/dist/esm/api/types/UntagCompanyRequest.d.mts +22 -0
- package/dist/esm/api/types/UntagCompanyRequest.mjs +2 -0
- package/dist/esm/api/types/UpdateArticleRequestBody.d.mts +10 -0
- package/dist/esm/api/types/UpdateArticleRequestBody.mjs +8 -0
- package/dist/esm/api/types/UpdateCompanyRequestBody.d.mts +19 -0
- package/dist/esm/api/types/UpdateCompanyRequestBody.mjs +2 -0
- package/dist/esm/api/types/UpdateDataAttributeRequestBody.d.mts +8 -0
- package/dist/esm/api/types/UpdateDataAttributeRequestBody.mjs +2 -0
- package/dist/esm/api/types/UpdateVisitorRequest.d.mts +12 -0
- package/dist/esm/api/types/UpdateVisitorRequest.mjs +2 -0
- package/dist/esm/api/types/UpdateVisitorRequestOne.d.mts +1 -0
- package/dist/esm/api/types/UpdateVisitorRequestOne.mjs +2 -0
- package/dist/esm/api/types/Visitor.d.mts +125 -0
- package/dist/esm/api/types/Visitor.mjs +2 -0
- package/dist/esm/api/types/VisitorDeletedObject.d.mts +11 -0
- package/dist/esm/api/types/VisitorDeletedObject.mjs +2 -0
- package/dist/esm/api/types/WhatsappMessageStatusList.d.mts +60 -0
- package/dist/esm/api/types/WhatsappMessageStatusList.mjs +17 -0
- package/dist/esm/api/types/index.d.mts +162 -0
- package/dist/esm/api/types/index.mjs +162 -0
- package/dist/esm/api/version.d.mts +2 -0
- package/dist/esm/api/version.mjs +2 -0
- package/dist/esm/auth/BearerAuthProvider.d.mts +14 -0
- package/dist/esm/auth/BearerAuthProvider.mjs +35 -0
- package/dist/esm/auth/index.d.mts +1 -0
- package/dist/esm/auth/index.mjs +1 -0
- package/dist/esm/core/auth/AuthProvider.d.mts +7 -0
- package/dist/esm/core/auth/AuthProvider.mjs +1 -0
- package/dist/esm/core/auth/AuthRequest.d.mts +9 -0
- package/dist/esm/core/auth/AuthRequest.mjs +1 -0
- package/dist/esm/core/auth/BasicAuth.mjs +24 -0
- package/dist/esm/core/auth/BearerToken.d.mts +7 -0
- package/dist/esm/core/auth/BearerToken.mjs +13 -0
- package/dist/esm/core/auth/NoOpAuthProvider.d.mts +5 -0
- package/dist/esm/core/auth/NoOpAuthProvider.mjs +5 -0
- package/dist/esm/core/auth/index.d.mts +5 -0
- package/dist/esm/core/auth/index.mjs +3 -0
- package/dist/esm/core/base64.d.mts +2 -0
- package/dist/esm/core/base64.mjs +22 -0
- package/dist/esm/core/exports.d.mts +2 -0
- package/dist/esm/core/exports.mjs +2 -0
- package/dist/esm/core/fetcher/APIResponse.d.mts +20 -0
- package/dist/esm/core/fetcher/APIResponse.mjs +1 -0
- package/dist/esm/core/fetcher/BinaryResponse.d.mts +19 -0
- package/dist/esm/core/fetcher/BinaryResponse.mjs +14 -0
- package/dist/esm/core/fetcher/EndpointMetadata.d.mts +13 -0
- package/dist/esm/core/fetcher/EndpointMetadata.mjs +1 -0
- package/dist/esm/core/fetcher/EndpointSupplier.d.mts +12 -0
- package/dist/esm/core/fetcher/EndpointSupplier.mjs +19 -0
- package/dist/esm/core/fetcher/Fetcher.d.mts +49 -0
- package/dist/esm/core/fetcher/Fetcher.mjs +312 -0
- package/dist/esm/core/fetcher/Headers.mjs +82 -0
- package/dist/esm/core/fetcher/HttpResponsePromise.d.mts +58 -0
- package/dist/esm/core/fetcher/HttpResponsePromise.mjs +99 -0
- package/dist/esm/core/fetcher/RawResponse.mjs +40 -0
- package/dist/esm/core/fetcher/Supplier.mjs +19 -0
- package/dist/esm/core/fetcher/createRequestUrl.d.mts +1 -0
- package/dist/esm/core/fetcher/createRequestUrl.mjs +5 -0
- package/dist/esm/core/fetcher/getErrorResponseBody.d.mts +1 -0
- package/dist/esm/core/fetcher/getErrorResponseBody.mjs +42 -0
- package/dist/esm/core/fetcher/getFetchFn.d.mts +1 -0
- package/dist/esm/core/fetcher/getFetchFn.mjs +14 -0
- package/dist/esm/core/fetcher/getHeader.mjs +8 -0
- package/dist/esm/core/fetcher/getRequestBody.d.mts +7 -0
- package/dist/esm/core/fetcher/getRequestBody.mjs +24 -0
- package/dist/esm/core/fetcher/getResponseBody.mjs +66 -0
- package/dist/esm/core/fetcher/index.d.mts +11 -0
- package/dist/esm/core/fetcher/index.mjs +6 -0
- package/dist/esm/core/fetcher/makeRequest.d.mts +1 -0
- package/dist/esm/core/fetcher/makeRequest.mjs +36 -0
- package/dist/esm/core/fetcher/requestWithRetries.mjs +64 -0
- package/dist/esm/core/fetcher/signals.d.mts +5 -0
- package/dist/esm/core/fetcher/signals.mjs +20 -0
- package/dist/esm/core/headers.d.mts +2 -0
- package/dist/esm/core/headers.mjs +27 -0
- package/dist/esm/core/index.d.mts +8 -0
- package/dist/esm/core/index.mjs +8 -0
- package/dist/esm/core/json.mjs +19 -0
- package/dist/esm/core/logging/exports.d.mts +18 -0
- package/dist/esm/core/logging/exports.mjs +9 -0
- package/dist/esm/core/logging/index.d.mts +1 -0
- package/dist/esm/core/logging/index.mjs +1 -0
- package/dist/esm/core/logging/logger.d.mts +126 -0
- package/dist/esm/core/logging/logger.mjs +138 -0
- package/dist/esm/core/pagination/Page.d.mts +33 -0
- package/dist/esm/core/pagination/Page.mjs +97 -0
- package/dist/esm/core/pagination/exports.d.mts +1 -0
- package/dist/esm/core/pagination/exports.mjs +1 -0
- package/dist/esm/core/pagination/index.d.mts +1 -0
- package/dist/esm/core/pagination/index.mjs +1 -0
- package/dist/esm/core/runtime/index.d.mts +1 -0
- package/dist/esm/core/runtime/index.mjs +1 -0
- package/dist/esm/core/runtime/runtime.mjs +100 -0
- package/dist/esm/core/url/encodePathParam.d.mts +1 -0
- package/dist/esm/core/url/encodePathParam.mjs +18 -0
- package/dist/esm/core/url/index.d.mts +3 -0
- package/dist/esm/core/url/index.mjs +3 -0
- package/dist/esm/core/url/join.d.mts +1 -0
- package/dist/esm/core/url/join.mjs +65 -0
- package/dist/esm/core/url/qs.d.mts +6 -0
- package/dist/esm/core/url/qs.mjs +61 -0
- package/dist/esm/core/utils/index.d.mts +1 -0
- package/dist/esm/core/utils/index.mjs +1 -0
- package/dist/esm/core/utils/setObjectProperty.mjs +39 -0
- package/dist/esm/environments.d.mts +6 -0
- package/dist/esm/environments.mjs +6 -0
- package/dist/esm/errors/IntercomError.d.mts +12 -0
- package/dist/esm/errors/IntercomError.mjs +24 -0
- package/dist/esm/errors/IntercomTimeoutError.d.mts +3 -0
- package/dist/esm/errors/IntercomTimeoutError.mjs +7 -0
- package/dist/esm/errors/handleNonStatusCodeError.d.mts +2 -0
- package/dist/esm/errors/handleNonStatusCodeError.mjs +29 -0
- package/dist/esm/errors/index.d.mts +2 -0
- package/dist/esm/errors/index.mjs +2 -0
- package/dist/esm/exports.d.mts +1 -0
- package/dist/esm/exports.mjs +1 -0
- package/dist/esm/index.d.mts +6 -0
- package/dist/esm/index.mjs +5 -0
- package/dist/esm/version.d.mts +1 -0
- package/dist/esm/version.mjs +1 -0
- package/package.json +51 -29
- package/reference.md +8341 -4140
- package/.gitattributes +0 -1
- package/Client.d.ts +0 -95
- package/Client.js +0 -117
- package/REPO_OWNER +0 -1
- package/api/errors/BadRequestError.d.ts +0 -8
- package/api/errors/BadRequestError.js +0 -52
- package/api/errors/ForbiddenError.d.ts +0 -9
- package/api/errors/ForbiddenError.js +0 -52
- package/api/errors/NotFoundError.d.ts +0 -8
- package/api/errors/NotFoundError.js +0 -52
- package/api/errors/UnauthorizedError.d.ts +0 -9
- package/api/errors/UnauthorizedError.js +0 -52
- package/api/errors/UnprocessableEntityError.d.ts +0 -8
- package/api/errors/UnprocessableEntityError.js +0 -52
- package/api/errors/index.d.ts +0 -5
- package/api/errors/index.js +0 -21
- package/api/index.d.ts +0 -4
- package/api/index.js +0 -19
- package/api/resources/admins/client/Client.d.ts +0 -114
- package/api/resources/admins/client/Client.js +0 -404
- package/api/resources/admins/client/index.d.ts +0 -1
- package/api/resources/admins/client/index.js +0 -17
- package/api/resources/admins/client/requests/ConfigureAwayAdminRequest.d.ts +0 -35
- package/api/resources/admins/client/requests/ConfigureAwayAdminRequest.js +0 -5
- package/api/resources/admins/client/requests/FindAdminRequest.d.ts +0 -15
- package/api/resources/admins/client/requests/FindAdminRequest.js +0 -5
- package/api/resources/admins/client/requests/ListAllActivityLogsRequest.d.ts +0 -20
- package/api/resources/admins/client/requests/ListAllActivityLogsRequest.js +0 -5
- package/api/resources/admins/client/requests/index.d.ts +0 -3
- package/api/resources/admins/index.d.ts +0 -2
- package/api/resources/admins/index.js +0 -18
- package/api/resources/admins/types/Admin.d.ts +0 -39
- package/api/resources/admins/types/Admin.js +0 -5
- package/api/resources/admins/types/index.d.ts +0 -1
- package/api/resources/admins/types/index.js +0 -17
- package/api/resources/aiAgent/index.d.ts +0 -1
- package/api/resources/aiAgent/index.js +0 -17
- package/api/resources/aiAgent/types/AiAgent.d.ts +0 -35
- package/api/resources/aiAgent/types/AiAgent.js +0 -16
- package/api/resources/aiAgent/types/index.d.ts +0 -1
- package/api/resources/aiAgent/types/index.js +0 -17
- package/api/resources/aiContentSource/index.d.ts +0 -1
- package/api/resources/aiContentSource/index.js +0 -17
- package/api/resources/aiContentSource/types/ContentSource.d.ts +0 -16
- package/api/resources/aiContentSource/types/ContentSource.js +0 -5
- package/api/resources/aiContentSource/types/index.d.ts +0 -1
- package/api/resources/aiContentSource/types/index.js +0 -17
- package/api/resources/articles/client/Client.d.ts +0 -160
- package/api/resources/articles/client/Client.js +0 -536
- package/api/resources/articles/client/index.d.ts +0 -1
- package/api/resources/articles/client/index.js +0 -17
- package/api/resources/articles/client/requests/CreateArticleRequest.d.ts +0 -70
- package/api/resources/articles/client/requests/CreateArticleRequest.js +0 -17
- package/api/resources/articles/client/requests/DeleteArticleRequest.d.ts +0 -15
- package/api/resources/articles/client/requests/DeleteArticleRequest.js +0 -5
- package/api/resources/articles/client/requests/FindArticleRequest.d.ts +0 -15
- package/api/resources/articles/client/requests/FindArticleRequest.js +0 -5
- package/api/resources/articles/client/requests/ListArticlesRequest.d.ts +0 -17
- package/api/resources/articles/client/requests/ListArticlesRequest.js +0 -5
- package/api/resources/articles/client/requests/SearchArticlesRequest.d.ts +0 -28
- package/api/resources/articles/client/requests/SearchArticlesRequest.js +0 -5
- package/api/resources/articles/client/requests/UpdateArticleRequest.d.ts +0 -58
- package/api/resources/articles/client/requests/UpdateArticleRequest.js +0 -17
- package/api/resources/articles/client/requests/index.d.ts +0 -6
- package/api/resources/articles/index.d.ts +0 -2
- package/api/resources/articles/index.js +0 -18
- package/api/resources/articles/types/Article.d.ts +0 -10
- package/api/resources/articles/types/Article.js +0 -5
- package/api/resources/articles/types/ArticleListItem.d.ts +0 -50
- package/api/resources/articles/types/ArticleListItem.js +0 -13
- package/api/resources/articles/types/ArticleSearchHighlights.d.ts +0 -60
- package/api/resources/articles/types/ArticleSearchHighlights.js +0 -29
- package/api/resources/articles/types/SearchArticlesResponse.d.ts +0 -27
- package/api/resources/articles/types/SearchArticlesResponse.js +0 -5
- package/api/resources/articles/types/index.d.ts +0 -4
- package/api/resources/articles/types/index.js +0 -20
- package/api/resources/companies/client/Client.d.ts +0 -274
- package/api/resources/companies/client/Client.js +0 -929
- package/api/resources/companies/client/index.d.ts +0 -1
- package/api/resources/companies/client/index.js +0 -17
- package/api/resources/companies/client/requests/AttachContactToCompanyRequest.d.ts +0 -30
- package/api/resources/companies/client/requests/AttachContactToCompanyRequest.js +0 -5
- package/api/resources/companies/client/requests/CreateOrUpdateCompanyRequest.d.ts +0 -34
- package/api/resources/companies/client/requests/CreateOrUpdateCompanyRequest.js +0 -5
- package/api/resources/companies/client/requests/DeleteCompanyRequest.d.ts +0 -15
- package/api/resources/companies/client/requests/DeleteCompanyRequest.js +0 -5
- package/api/resources/companies/client/requests/DetachContactFromCompanyRequest.d.ts +0 -20
- package/api/resources/companies/client/requests/DetachContactFromCompanyRequest.js +0 -5
- package/api/resources/companies/client/requests/FindCompanyRequest.d.ts +0 -15
- package/api/resources/companies/client/requests/FindCompanyRequest.js +0 -5
- package/api/resources/companies/client/requests/ListAttachedContactsRequest.d.ts +0 -23
- package/api/resources/companies/client/requests/ListAttachedContactsRequest.js +0 -5
- package/api/resources/companies/client/requests/ListCompaniesRequest.d.ts +0 -23
- package/api/resources/companies/client/requests/ListCompaniesRequest.js +0 -5
- package/api/resources/companies/client/requests/ListSegmentsAttachedToCompanyRequest.d.ts +0 -15
- package/api/resources/companies/client/requests/ListSegmentsAttachedToCompanyRequest.js +0 -5
- package/api/resources/companies/client/requests/RetrieveCompanyRequest.d.ts +0 -38
- package/api/resources/companies/client/requests/RetrieveCompanyRequest.js +0 -5
- package/api/resources/companies/client/requests/ScrollCompaniesRequest.d.ts +0 -13
- package/api/resources/companies/client/requests/ScrollCompaniesRequest.js +0 -5
- package/api/resources/companies/client/requests/UpdateCompanyRequest.d.ts +0 -15
- package/api/resources/companies/client/requests/UpdateCompanyRequest.js +0 -5
- package/api/resources/companies/client/requests/index.d.ts +0 -11
- package/api/resources/companies/index.d.ts +0 -2
- package/api/resources/companies/index.js +0 -18
- package/api/resources/companies/types/CompaniesRetrieveResponse.d.ts +0 -13
- package/api/resources/companies/types/CompaniesRetrieveResponse.js +0 -5
- package/api/resources/companies/types/Company.d.ts +0 -70
- package/api/resources/companies/types/Company.js +0 -5
- package/api/resources/companies/types/index.d.ts +0 -2
- package/api/resources/companies/types/index.js +0 -18
- package/api/resources/contacts/client/Client.d.ts +0 -396
- package/api/resources/contacts/client/Client.js +0 -1212
- package/api/resources/contacts/client/index.d.ts +0 -1
- package/api/resources/contacts/client/index.js +0 -17
- package/api/resources/contacts/client/requests/ArchiveContactRequest.d.ts +0 -15
- package/api/resources/contacts/client/requests/ArchiveContactRequest.js +0 -5
- package/api/resources/contacts/client/requests/AttachSubscriptionToContactRequest.d.ts +0 -35
- package/api/resources/contacts/client/requests/AttachSubscriptionToContactRequest.js +0 -5
- package/api/resources/contacts/client/requests/DeleteContactRequest.d.ts +0 -15
- package/api/resources/contacts/client/requests/DeleteContactRequest.js +0 -5
- package/api/resources/contacts/client/requests/DetachSubscriptionFromContactRequest.d.ts +0 -20
- package/api/resources/contacts/client/requests/DetachSubscriptionFromContactRequest.js +0 -5
- package/api/resources/contacts/client/requests/FindContactRequest.d.ts +0 -15
- package/api/resources/contacts/client/requests/FindContactRequest.js +0 -5
- package/api/resources/contacts/client/requests/ListAttachedCompaniesRequest.d.ts +0 -23
- package/api/resources/contacts/client/requests/ListAttachedCompaniesRequest.js +0 -5
- package/api/resources/contacts/client/requests/ListAttachedSubscriptionsRequest.d.ts +0 -15
- package/api/resources/contacts/client/requests/ListAttachedSubscriptionsRequest.js +0 -5
- package/api/resources/contacts/client/requests/ListContactsRequest.d.ts +0 -21
- package/api/resources/contacts/client/requests/ListContactsRequest.js +0 -5
- package/api/resources/contacts/client/requests/ListSegmentsAttachedToContactRequest.d.ts +0 -15
- package/api/resources/contacts/client/requests/ListSegmentsAttachedToContactRequest.js +0 -5
- package/api/resources/contacts/client/requests/ListTagsAttachedToContactRequest.d.ts +0 -15
- package/api/resources/contacts/client/requests/ListTagsAttachedToContactRequest.js +0 -5
- package/api/resources/contacts/client/requests/MergeContactsRequest.d.ts +0 -16
- package/api/resources/contacts/client/requests/MergeContactsRequest.js +0 -5
- package/api/resources/contacts/client/requests/UnarchiveContactRequest.d.ts +0 -15
- package/api/resources/contacts/client/requests/UnarchiveContactRequest.js +0 -5
- package/api/resources/contacts/client/requests/UpdateContactRequest.d.ts +0 -39
- package/api/resources/contacts/client/requests/UpdateContactRequest.js +0 -5
- package/api/resources/contacts/client/requests/index.d.ts +0 -13
- package/api/resources/contacts/index.d.ts +0 -2
- package/api/resources/contacts/index.js +0 -18
- package/api/resources/contacts/types/Contact.d.ts +0 -96
- package/api/resources/contacts/types/Contact.js +0 -5
- package/api/resources/contacts/types/index.d.ts +0 -1
- package/api/resources/contacts/types/index.js +0 -17
- package/api/resources/conversations/client/Client.d.ts +0 -513
- package/api/resources/conversations/client/Client.js +0 -1213
- package/api/resources/conversations/client/index.d.ts +0 -1
- package/api/resources/conversations/client/index.js +0 -17
- package/api/resources/conversations/client/requests/AttachContactToConversationRequest.d.ts +0 -44
- package/api/resources/conversations/client/requests/AttachContactToConversationRequest.js +0 -5
- package/api/resources/conversations/client/requests/AutoAssignConversationRequest.d.ts +0 -15
- package/api/resources/conversations/client/requests/AutoAssignConversationRequest.js +0 -5
- package/api/resources/conversations/client/requests/ConvertConversationToTicketRequest.d.ts +0 -26
- package/api/resources/conversations/client/requests/ConvertConversationToTicketRequest.js +0 -5
- package/api/resources/conversations/client/requests/CreateConversationRequest.d.ts +0 -48
- package/api/resources/conversations/client/requests/CreateConversationRequest.js +0 -17
- package/api/resources/conversations/client/requests/DetachContactFromConversationRequest.d.ts +0 -44
- package/api/resources/conversations/client/requests/DetachContactFromConversationRequest.js +0 -5
- package/api/resources/conversations/client/requests/FindConversationRequest.d.ts +0 -20
- package/api/resources/conversations/client/requests/FindConversationRequest.js +0 -5
- package/api/resources/conversations/client/requests/ListConversationsRequest.d.ts +0 -17
- package/api/resources/conversations/client/requests/ListConversationsRequest.js +0 -5
- package/api/resources/conversations/client/requests/ManageConversationPartsRequest.d.ts +0 -62
- package/api/resources/conversations/client/requests/ManageConversationPartsRequest.js +0 -5
- package/api/resources/conversations/client/requests/ReplyToConversationRequest.d.ts +0 -89
- package/api/resources/conversations/client/requests/ReplyToConversationRequest.js +0 -5
- package/api/resources/conversations/client/requests/UpdateConversationRequest.d.ts +0 -40
- package/api/resources/conversations/client/requests/UpdateConversationRequest.js +0 -5
- package/api/resources/conversations/client/requests/index.d.ts +0 -10
- package/api/resources/conversations/index.d.ts +0 -2
- package/api/resources/conversations/index.js +0 -18
- package/api/resources/conversations/types/Conversation.d.ts +0 -68
- package/api/resources/conversations/types/Conversation.js +0 -18
- package/api/resources/conversations/types/ConversationsManageRequestBody.d.ts +0 -19
- package/api/resources/conversations/types/ConversationsManageRequestBody.js +0 -5
- package/api/resources/conversations/types/index.d.ts +0 -2
- package/api/resources/conversations/types/index.js +0 -18
- package/api/resources/dataAttributes/client/Client.d.ts +0 -154
- package/api/resources/dataAttributes/client/Client.js +0 -363
- package/api/resources/dataAttributes/client/index.d.ts +0 -1
- package/api/resources/dataAttributes/client/index.js +0 -17
- package/api/resources/dataAttributes/client/requests/CreateDataAttributeRequest.d.ts +0 -84
- package/api/resources/dataAttributes/client/requests/CreateDataAttributeRequest.js +0 -21
- package/api/resources/dataAttributes/client/requests/ListDataAttributesRequest.d.ts +0 -18
- package/api/resources/dataAttributes/client/requests/ListDataAttributesRequest.js +0 -5
- package/api/resources/dataAttributes/client/requests/UpdateDataAttributeRequest.d.ts +0 -69
- package/api/resources/dataAttributes/client/requests/UpdateDataAttributeRequest.js +0 -5
- package/api/resources/dataAttributes/client/requests/index.d.ts +0 -3
- package/api/resources/dataAttributes/index.d.ts +0 -2
- package/api/resources/dataAttributes/index.js +0 -18
- package/api/resources/dataAttributes/types/DataAttribute.d.ts +0 -63
- package/api/resources/dataAttributes/types/DataAttribute.js +0 -20
- package/api/resources/dataAttributes/types/DataAttributesListRequestModel.d.ts +0 -9
- package/api/resources/dataAttributes/types/DataAttributesListRequestModel.js +0 -11
- package/api/resources/dataAttributes/types/index.d.ts +0 -2
- package/api/resources/dataAttributes/types/index.js +0 -18
- package/api/resources/dataEvents/index.d.ts +0 -1
- package/api/resources/dataEvents/index.js +0 -17
- package/api/resources/dataEvents/types/DataEvent.d.ts +0 -24
- package/api/resources/dataEvents/types/DataEvent.js +0 -5
- package/api/resources/dataEvents/types/index.d.ts +0 -1
- package/api/resources/dataEvents/types/index.js +0 -17
- package/api/resources/dataExport/client/Client.d.ts +0 -114
- package/api/resources/dataExport/client/Client.js +0 -321
- package/api/resources/dataExport/client/index.d.ts +0 -1
- package/api/resources/dataExport/client/index.js +0 -17
- package/api/resources/dataExport/client/requests/CancelDataExportRequest.d.ts +0 -15
- package/api/resources/dataExport/client/requests/CancelDataExportRequest.js +0 -5
- package/api/resources/dataExport/client/requests/CreateDataExportRequest.d.ts +0 -16
- package/api/resources/dataExport/client/requests/CreateDataExportRequest.js +0 -5
- package/api/resources/dataExport/client/requests/DownloadDataExportRequest.d.ts +0 -15
- package/api/resources/dataExport/client/requests/DownloadDataExportRequest.js +0 -5
- package/api/resources/dataExport/client/requests/FindDataExportRequest.d.ts +0 -15
- package/api/resources/dataExport/client/requests/FindDataExportRequest.js +0 -5
- package/api/resources/dataExport/client/requests/index.d.ts +0 -4
- package/api/resources/dataExport/index.d.ts +0 -2
- package/api/resources/dataExport/index.js +0 -18
- package/api/resources/dataExport/types/DataExport.d.ts +0 -30
- package/api/resources/dataExport/types/DataExport.js +0 -17
- package/api/resources/dataExport/types/index.d.ts +0 -1
- package/api/resources/dataExport/types/index.js +0 -17
- package/api/resources/events/client/Client.d.ts +0 -132
- package/api/resources/events/client/Client.js +0 -331
- package/api/resources/events/client/index.d.ts +0 -1
- package/api/resources/events/client/index.js +0 -17
- package/api/resources/events/client/requests/ListEventSummariesRequest.d.ts +0 -28
- package/api/resources/events/client/requests/ListEventSummariesRequest.js +0 -5
- package/api/resources/events/client/requests/ListEventsRequest.d.ts +0 -35
- package/api/resources/events/client/requests/ListEventsRequest.js +0 -5
- package/api/resources/events/client/requests/index.d.ts +0 -2
- package/api/resources/events/index.d.ts +0 -1
- package/api/resources/events/index.js +0 -17
- package/api/resources/helpCenter/index.d.ts +0 -1
- package/api/resources/helpCenter/index.js +0 -17
- package/api/resources/helpCenter/types/Collection.d.ts +0 -34
- package/api/resources/helpCenter/types/Collection.js +0 -5
- package/api/resources/helpCenter/types/HelpCenter.d.ts +0 -22
- package/api/resources/helpCenter/types/HelpCenter.js +0 -5
- package/api/resources/helpCenter/types/HelpCenterList.d.ts +0 -13
- package/api/resources/helpCenter/types/HelpCenterList.js +0 -5
- package/api/resources/helpCenter/types/index.d.ts +0 -3
- package/api/resources/helpCenter/types/index.js +0 -19
- package/api/resources/helpCenters/client/Client.d.ts +0 -65
- package/api/resources/helpCenters/client/Client.js +0 -223
- package/api/resources/helpCenters/client/index.d.ts +0 -1
- package/api/resources/helpCenters/client/index.js +0 -17
- package/api/resources/helpCenters/client/requests/FindHelpCenterRequest.d.ts +0 -15
- package/api/resources/helpCenters/client/requests/FindHelpCenterRequest.js +0 -5
- package/api/resources/helpCenters/client/requests/ListHelpCentersRequest.d.ts +0 -17
- package/api/resources/helpCenters/client/requests/ListHelpCentersRequest.js +0 -5
- package/api/resources/helpCenters/client/requests/index.d.ts +0 -2
- package/api/resources/helpCenters/index.d.ts +0 -2
- package/api/resources/helpCenters/index.js +0 -18
- package/api/resources/helpCenters/resources/collections/client/Client.d.ts +0 -119
- package/api/resources/helpCenters/resources/collections/client/Client.js +0 -434
- package/api/resources/helpCenters/resources/collections/client/index.d.ts +0 -1
- package/api/resources/helpCenters/resources/collections/client/index.js +0 -17
- package/api/resources/helpCenters/resources/collections/client/requests/CreateCollectionRequest.d.ts +0 -27
- package/api/resources/helpCenters/resources/collections/client/requests/CreateCollectionRequest.js +0 -5
- package/api/resources/helpCenters/resources/collections/client/requests/DeleteCollectionRequest.d.ts +0 -15
- package/api/resources/helpCenters/resources/collections/client/requests/DeleteCollectionRequest.js +0 -5
- package/api/resources/helpCenters/resources/collections/client/requests/FindCollectionRequest.d.ts +0 -15
- package/api/resources/helpCenters/resources/collections/client/requests/FindCollectionRequest.js +0 -5
- package/api/resources/helpCenters/resources/collections/client/requests/ListCollectionsRequest.d.ts +0 -17
- package/api/resources/helpCenters/resources/collections/client/requests/ListCollectionsRequest.js +0 -5
- package/api/resources/helpCenters/resources/collections/client/requests/UpdateCollectionRequest.d.ts +0 -30
- package/api/resources/helpCenters/resources/collections/client/requests/UpdateCollectionRequest.js +0 -5
- package/api/resources/helpCenters/resources/collections/client/requests/index.d.ts +0 -5
- package/api/resources/helpCenters/resources/collections/index.d.ts +0 -1
- package/api/resources/helpCenters/resources/collections/index.js +0 -17
- package/api/resources/helpCenters/resources/index.d.ts +0 -2
- package/api/resources/helpCenters/resources/index.js +0 -41
- package/api/resources/index.d.ts +0 -61
- package/api/resources/index.js +0 -100
- package/api/resources/messages/client/Client.d.ts +0 -130
- package/api/resources/messages/client/Client.js +0 -223
- package/api/resources/messages/index.d.ts +0 -2
- package/api/resources/messages/index.js +0 -18
- package/api/resources/messages/types/Message.d.ts +0 -34
- package/api/resources/messages/types/Message.js +0 -15
- package/api/resources/messages/types/index.d.ts +0 -1
- package/api/resources/messages/types/index.js +0 -17
- package/api/resources/news/client/Client.d.ts +0 -26
- package/api/resources/news/client/Client.js +0 -22
- package/api/resources/news/index.d.ts +0 -3
- package/api/resources/news/index.js +0 -19
- package/api/resources/news/resources/feeds/client/Client.d.ts +0 -76
- package/api/resources/news/resources/feeds/client/Client.js +0 -256
- package/api/resources/news/resources/feeds/client/index.d.ts +0 -1
- package/api/resources/news/resources/feeds/client/index.js +0 -17
- package/api/resources/news/resources/feeds/client/requests/FindNewsFeedRequest.d.ts +0 -15
- package/api/resources/news/resources/feeds/client/requests/FindNewsFeedRequest.js +0 -5
- package/api/resources/news/resources/feeds/client/requests/ListNewsFeedItemsRequest.d.ts +0 -15
- package/api/resources/news/resources/feeds/client/requests/ListNewsFeedItemsRequest.js +0 -5
- package/api/resources/news/resources/feeds/client/requests/index.d.ts +0 -2
- package/api/resources/news/resources/feeds/index.d.ts +0 -1
- package/api/resources/news/resources/feeds/index.js +0 -17
- package/api/resources/news/resources/index.d.ts +0 -4
- package/api/resources/news/resources/index.js +0 -43
- package/api/resources/news/resources/items/client/Client.d.ts +0 -134
- package/api/resources/news/resources/items/client/Client.js +0 -415
- package/api/resources/news/resources/items/client/index.d.ts +0 -1
- package/api/resources/news/resources/items/client/index.js +0 -17
- package/api/resources/news/resources/items/client/requests/DeleteNewsItemRequest.d.ts +0 -15
- package/api/resources/news/resources/items/client/requests/DeleteNewsItemRequest.js +0 -5
- package/api/resources/news/resources/items/client/requests/FindNewsItemRequest.d.ts +0 -15
- package/api/resources/news/resources/items/client/requests/FindNewsItemRequest.js +0 -5
- package/api/resources/news/resources/items/client/requests/UpdateNewsItemRequest.d.ts +0 -34
- package/api/resources/news/resources/items/client/requests/UpdateNewsItemRequest.js +0 -5
- package/api/resources/news/resources/items/client/requests/index.d.ts +0 -3
- package/api/resources/news/resources/items/index.d.ts +0 -1
- package/api/resources/news/resources/items/index.js +0 -17
- package/api/resources/news/types/NewsItem.d.ts +0 -47
- package/api/resources/news/types/NewsItem.js +0 -13
- package/api/resources/news/types/Newsfeed.d.ts +0 -20
- package/api/resources/news/types/Newsfeed.js +0 -5
- package/api/resources/news/types/NewsfeedAssignment.d.ts +0 -12
- package/api/resources/news/types/NewsfeedAssignment.js +0 -5
- package/api/resources/news/types/index.d.ts +0 -3
- package/api/resources/news/types/index.js +0 -19
- package/api/resources/notes/client/Client.d.ts +0 -84
- package/api/resources/notes/client/Client.js +0 -299
- package/api/resources/notes/client/index.d.ts +0 -1
- package/api/resources/notes/client/index.js +0 -17
- package/api/resources/notes/client/requests/CreateContactNoteRequest.d.ts +0 -35
- package/api/resources/notes/client/requests/CreateContactNoteRequest.js +0 -5
- package/api/resources/notes/client/requests/FindNoteRequest.d.ts +0 -15
- package/api/resources/notes/client/requests/FindNoteRequest.js +0 -5
- package/api/resources/notes/client/requests/ListContactNotesRequest.d.ts +0 -23
- package/api/resources/notes/client/requests/ListContactNotesRequest.js +0 -5
- package/api/resources/notes/client/requests/index.d.ts +0 -3
- package/api/resources/notes/index.d.ts +0 -2
- package/api/resources/notes/index.js +0 -18
- package/api/resources/notes/types/Note.d.ts +0 -32
- package/api/resources/notes/types/Note.js +0 -5
- package/api/resources/notes/types/index.d.ts +0 -1
- package/api/resources/notes/types/index.js +0 -17
- package/api/resources/phoneCallRedirects/client/Client.d.ts +0 -67
- package/api/resources/phoneCallRedirects/client/Client.js +0 -158
- package/api/resources/phoneCallRedirects/client/index.d.ts +0 -1
- package/api/resources/phoneCallRedirects/client/index.js +0 -17
- package/api/resources/phoneCallRedirects/client/requests/CreatePhoneCallRedirectRequest.d.ts +0 -46
- package/api/resources/phoneCallRedirects/client/requests/CreatePhoneCallRedirectRequest.js +0 -5
- package/api/resources/phoneCallRedirects/client/requests/index.d.ts +0 -1
- package/api/resources/phoneCallRedirects/index.d.ts +0 -1
- package/api/resources/phoneCallRedirects/index.js +0 -17
- package/api/resources/segments/client/Client.d.ts +0 -66
- package/api/resources/segments/client/Client.js +0 -207
- package/api/resources/segments/client/index.d.ts +0 -1
- package/api/resources/segments/client/index.js +0 -17
- package/api/resources/segments/client/requests/FindSegmentRequest.d.ts +0 -15
- package/api/resources/segments/client/requests/FindSegmentRequest.js +0 -5
- package/api/resources/segments/client/requests/ListSegmentsRequest.d.ts +0 -13
- package/api/resources/segments/client/requests/ListSegmentsRequest.js +0 -5
- package/api/resources/segments/client/requests/index.d.ts +0 -2
- package/api/resources/segments/index.d.ts +0 -2
- package/api/resources/segments/index.js +0 -18
- package/api/resources/segments/types/Segment.d.ts +0 -32
- package/api/resources/segments/types/Segment.js +0 -13
- package/api/resources/segments/types/index.d.ts +0 -1
- package/api/resources/segments/types/index.js +0 -17
- package/api/resources/subscriptionTypes/client/Client.d.ts +0 -49
- package/api/resources/subscriptionTypes/client/Client.js +0 -135
- package/api/resources/subscriptionTypes/index.d.ts +0 -2
- package/api/resources/subscriptionTypes/index.js +0 -18
- package/api/resources/subscriptionTypes/types/SubscriptionType.d.ts +0 -49
- package/api/resources/subscriptionTypes/types/SubscriptionType.js +0 -25
- package/api/resources/subscriptionTypes/types/index.d.ts +0 -1
- package/api/resources/subscriptionTypes/types/index.js +0 -17
- package/api/resources/tags/client/Client.d.ts +0 -245
- package/api/resources/tags/client/Client.js +0 -792
- package/api/resources/tags/client/index.d.ts +0 -1
- package/api/resources/tags/client/index.js +0 -17
- package/api/resources/tags/client/requests/DeleteTagRequest.d.ts +0 -15
- package/api/resources/tags/client/requests/DeleteTagRequest.js +0 -5
- package/api/resources/tags/client/requests/FindTagRequest.d.ts +0 -15
- package/api/resources/tags/client/requests/FindTagRequest.js +0 -5
- package/api/resources/tags/client/requests/TagContactRequest.d.ts +0 -30
- package/api/resources/tags/client/requests/TagContactRequest.js +0 -5
- package/api/resources/tags/client/requests/TagConversationRequest.d.ts +0 -28
- package/api/resources/tags/client/requests/TagConversationRequest.js +0 -5
- package/api/resources/tags/client/requests/TagTicketRequest.d.ts +0 -28
- package/api/resources/tags/client/requests/TagTicketRequest.js +0 -5
- package/api/resources/tags/client/requests/UntagContactRequest.d.ts +0 -20
- package/api/resources/tags/client/requests/UntagContactRequest.js +0 -5
- package/api/resources/tags/client/requests/UntagConversationRequest.d.ts +0 -37
- package/api/resources/tags/client/requests/UntagConversationRequest.js +0 -5
- package/api/resources/tags/client/requests/UntagTicketRequest.d.ts +0 -37
- package/api/resources/tags/client/requests/UntagTicketRequest.js +0 -5
- package/api/resources/tags/client/requests/index.d.ts +0 -8
- package/api/resources/tags/index.d.ts +0 -2
- package/api/resources/tags/index.js +0 -18
- package/api/resources/tags/types/Tag.d.ts +0 -18
- package/api/resources/tags/types/Tag.js +0 -5
- package/api/resources/tags/types/TagsCreateRequestBody.d.ts +0 -5
- package/api/resources/tags/types/TagsCreateRequestBody.js +0 -5
- package/api/resources/tags/types/index.d.ts +0 -2
- package/api/resources/tags/types/index.js +0 -18
- package/api/resources/teams/client/Client.d.ts +0 -65
- package/api/resources/teams/client/Client.js +0 -200
- package/api/resources/teams/client/index.d.ts +0 -1
- package/api/resources/teams/client/index.js +0 -17
- package/api/resources/teams/client/requests/FindTeamRequest.d.ts +0 -15
- package/api/resources/teams/client/requests/FindTeamRequest.js +0 -5
- package/api/resources/teams/client/requests/index.d.ts +0 -1
- package/api/resources/teams/index.d.ts +0 -2
- package/api/resources/teams/index.js +0 -18
- package/api/resources/teams/types/Team.d.ts +0 -18
- package/api/resources/teams/types/Team.js +0 -5
- package/api/resources/teams/types/index.d.ts +0 -1
- package/api/resources/teams/types/index.js +0 -17
- package/api/resources/ticketTypes/client/Client.d.ts +0 -110
- package/api/resources/ticketTypes/client/Client.js +0 -351
- package/api/resources/ticketTypes/client/index.d.ts +0 -1
- package/api/resources/ticketTypes/client/index.js +0 -17
- package/api/resources/ticketTypes/client/requests/CreateTicketTypeRequest.d.ts +0 -35
- package/api/resources/ticketTypes/client/requests/CreateTicketTypeRequest.js +0 -14
- package/api/resources/ticketTypes/client/requests/FindTicketTypeRequest.d.ts +0 -15
- package/api/resources/ticketTypes/client/requests/FindTicketTypeRequest.js +0 -5
- package/api/resources/ticketTypes/client/requests/UpdateTicketTypeRequest.d.ts +0 -39
- package/api/resources/ticketTypes/client/requests/UpdateTicketTypeRequest.js +0 -14
- package/api/resources/ticketTypes/client/requests/index.d.ts +0 -3
- package/api/resources/ticketTypes/index.d.ts +0 -2
- package/api/resources/ticketTypes/index.js +0 -18
- package/api/resources/ticketTypes/resources/attributes/client/Client.d.ts +0 -70
- package/api/resources/ticketTypes/resources/attributes/client/Client.js +0 -217
- package/api/resources/ticketTypes/resources/attributes/client/index.d.ts +0 -1
- package/api/resources/ticketTypes/resources/attributes/client/index.js +0 -17
- package/api/resources/ticketTypes/resources/attributes/client/requests/CreateTicketTypeAttributeRequest.d.ts +0 -54
- package/api/resources/ticketTypes/resources/attributes/client/requests/CreateTicketTypeAttributeRequest.js +0 -18
- package/api/resources/ticketTypes/resources/attributes/client/requests/UpdateTicketTypeAttributeRequest.d.ts +0 -41
- package/api/resources/ticketTypes/resources/attributes/client/requests/UpdateTicketTypeAttributeRequest.js +0 -5
- package/api/resources/ticketTypes/resources/attributes/client/requests/index.d.ts +0 -2
- package/api/resources/ticketTypes/resources/attributes/index.d.ts +0 -1
- package/api/resources/ticketTypes/resources/attributes/index.js +0 -17
- package/api/resources/ticketTypes/resources/index.d.ts +0 -2
- package/api/resources/ticketTypes/resources/index.js +0 -41
- package/api/resources/tickets/client/Client.d.ts +0 -273
- package/api/resources/tickets/client/Client.js +0 -573
- package/api/resources/tickets/client/index.d.ts +0 -1
- package/api/resources/tickets/client/index.js +0 -17
- package/api/resources/tickets/client/requests/FindTicketRequest.d.ts +0 -15
- package/api/resources/tickets/client/requests/FindTicketRequest.js +0 -5
- package/api/resources/tickets/client/requests/ReplyToTicketRequest.d.ts +0 -81
- package/api/resources/tickets/client/requests/ReplyToTicketRequest.js +0 -5
- package/api/resources/tickets/client/requests/UpdateTicketRequest.d.ts +0 -82
- package/api/resources/tickets/client/requests/UpdateTicketRequest.js +0 -14
- package/api/resources/tickets/client/requests/index.d.ts +0 -3
- package/api/resources/tickets/index.d.ts +0 -2
- package/api/resources/tickets/index.js +0 -18
- package/api/resources/tickets/types/Ticket.d.ts +0 -63
- package/api/resources/tickets/types/Ticket.js +0 -20
- package/api/resources/tickets/types/TicketContacts.d.ts +0 -13
- package/api/resources/tickets/types/TicketContacts.js +0 -5
- package/api/resources/tickets/types/TicketPart.d.ts +0 -56
- package/api/resources/tickets/types/TicketPart.js +0 -21
- package/api/resources/tickets/types/TicketType.d.ts +0 -41
- package/api/resources/tickets/types/TicketType.js +0 -14
- package/api/resources/tickets/types/TicketsReplyRequestBody.d.ts +0 -5
- package/api/resources/tickets/types/TicketsReplyRequestBody.js +0 -5
- package/api/resources/tickets/types/index.d.ts +0 -5
- package/api/resources/tickets/types/index.js +0 -21
- package/api/resources/unstable/client/Client.d.ts +0 -104
- package/api/resources/unstable/client/Client.js +0 -152
- package/api/resources/unstable/errors/BadRequestError.d.ts +0 -8
- package/api/resources/unstable/errors/BadRequestError.js +0 -52
- package/api/resources/unstable/errors/ForbiddenError.d.ts +0 -9
- package/api/resources/unstable/errors/ForbiddenError.js +0 -52
- package/api/resources/unstable/errors/InternalServerError.d.ts +0 -9
- package/api/resources/unstable/errors/InternalServerError.js +0 -52
- package/api/resources/unstable/errors/NotFoundError.d.ts +0 -8
- package/api/resources/unstable/errors/NotFoundError.js +0 -52
- package/api/resources/unstable/errors/TooManyRequestsError.d.ts +0 -9
- package/api/resources/unstable/errors/TooManyRequestsError.js +0 -52
- package/api/resources/unstable/errors/UnauthorizedError.d.ts +0 -9
- package/api/resources/unstable/errors/UnauthorizedError.js +0 -52
- package/api/resources/unstable/errors/UnprocessableEntityError.d.ts +0 -8
- package/api/resources/unstable/errors/UnprocessableEntityError.js +0 -52
- package/api/resources/unstable/errors/index.d.ts +0 -7
- package/api/resources/unstable/errors/index.js +0 -23
- package/api/resources/unstable/index.d.ts +0 -4
- package/api/resources/unstable/index.js +0 -20
- package/api/resources/unstable/resources/admins/client/Client.d.ts +0 -123
- package/api/resources/unstable/resources/admins/client/Client.js +0 -418
- package/api/resources/unstable/resources/admins/client/index.d.ts +0 -1
- package/api/resources/unstable/resources/admins/client/index.js +0 -17
- package/api/resources/unstable/resources/admins/client/requests/ListActivityLogsRequest.d.ts +0 -20
- package/api/resources/unstable/resources/admins/client/requests/ListActivityLogsRequest.js +0 -5
- package/api/resources/unstable/resources/admins/client/requests/RetrieveAdminRequest.d.ts +0 -15
- package/api/resources/unstable/resources/admins/client/requests/RetrieveAdminRequest.js +0 -5
- package/api/resources/unstable/resources/admins/client/requests/SetAwayAdminRequest.d.ts +0 -38
- package/api/resources/unstable/resources/admins/client/requests/SetAwayAdminRequest.js +0 -5
- package/api/resources/unstable/resources/admins/client/requests/index.d.ts +0 -3
- package/api/resources/unstable/resources/admins/index.d.ts +0 -2
- package/api/resources/unstable/resources/admins/index.js +0 -18
- package/api/resources/unstable/resources/admins/types/Admin.d.ts +0 -32
- package/api/resources/unstable/resources/admins/types/Admin.js +0 -5
- package/api/resources/unstable/resources/admins/types/index.d.ts +0 -1
- package/api/resources/unstable/resources/admins/types/index.js +0 -17
- package/api/resources/unstable/resources/aiAgent/index.d.ts +0 -1
- package/api/resources/unstable/resources/aiAgent/index.js +0 -17
- package/api/resources/unstable/resources/aiAgent/types/AiAgent.d.ts +0 -35
- package/api/resources/unstable/resources/aiAgent/types/AiAgent.js +0 -16
- package/api/resources/unstable/resources/aiAgent/types/index.d.ts +0 -1
- package/api/resources/unstable/resources/aiAgent/types/index.js +0 -17
- package/api/resources/unstable/resources/aiContent/client/Client.d.ts +0 -202
- package/api/resources/unstable/resources/aiContent/client/Client.js +0 -735
- package/api/resources/unstable/resources/aiContent/client/index.d.ts +0 -1
- package/api/resources/unstable/resources/aiContent/client/index.js +0 -17
- package/api/resources/unstable/resources/aiContent/client/requests/CreateContentImportSourceRequest.d.ts +0 -25
- package/api/resources/unstable/resources/aiContent/client/requests/CreateContentImportSourceRequest.js +0 -13
- package/api/resources/unstable/resources/aiContent/client/requests/CreateExternalPageRequest.d.ts +0 -29
- package/api/resources/unstable/resources/aiContent/client/requests/CreateExternalPageRequest.js +0 -5
- package/api/resources/unstable/resources/aiContent/client/requests/DeleteContentImportSourceRequest.d.ts +0 -15
- package/api/resources/unstable/resources/aiContent/client/requests/DeleteContentImportSourceRequest.js +0 -5
- package/api/resources/unstable/resources/aiContent/client/requests/DeleteExternalPageRequest.d.ts +0 -15
- package/api/resources/unstable/resources/aiContent/client/requests/DeleteExternalPageRequest.js +0 -5
- package/api/resources/unstable/resources/aiContent/client/requests/GetContentImportSourceRequest.d.ts +0 -15
- package/api/resources/unstable/resources/aiContent/client/requests/GetContentImportSourceRequest.js +0 -5
- package/api/resources/unstable/resources/aiContent/client/requests/GetExternalPageRequest.d.ts +0 -15
- package/api/resources/unstable/resources/aiContent/client/requests/GetExternalPageRequest.js +0 -5
- package/api/resources/unstable/resources/aiContent/client/requests/UpdateContentImportSourceRequest.d.ts +0 -42
- package/api/resources/unstable/resources/aiContent/client/requests/UpdateContentImportSourceRequest.js +0 -18
- package/api/resources/unstable/resources/aiContent/client/requests/UpdateExternalPageRequest.d.ts +0 -32
- package/api/resources/unstable/resources/aiContent/client/requests/UpdateExternalPageRequest.js +0 -5
- package/api/resources/unstable/resources/aiContent/client/requests/index.d.ts +0 -8
- package/api/resources/unstable/resources/aiContent/index.d.ts +0 -2
- package/api/resources/unstable/resources/aiContent/index.js +0 -18
- package/api/resources/unstable/resources/aiContent/types/ContentImportSource.d.ts +0 -43
- package/api/resources/unstable/resources/aiContent/types/ContentImportSource.js +0 -18
- package/api/resources/unstable/resources/aiContent/types/ContentImportSourcesList.d.ts +0 -16
- package/api/resources/unstable/resources/aiContent/types/ContentImportSourcesList.js +0 -5
- package/api/resources/unstable/resources/aiContent/types/ExternalPage.d.ts +0 -36
- package/api/resources/unstable/resources/aiContent/types/ExternalPage.js +0 -5
- package/api/resources/unstable/resources/aiContent/types/ExternalPagesList.d.ts +0 -16
- package/api/resources/unstable/resources/aiContent/types/ExternalPagesList.js +0 -5
- package/api/resources/unstable/resources/aiContent/types/index.d.ts +0 -4
- package/api/resources/unstable/resources/aiContent/types/index.js +0 -20
- package/api/resources/unstable/resources/aiContentSource/index.d.ts +0 -1
- package/api/resources/unstable/resources/aiContentSource/index.js +0 -17
- package/api/resources/unstable/resources/aiContentSource/types/ContentSource.d.ts +0 -29
- package/api/resources/unstable/resources/aiContentSource/types/ContentSource.js +0 -16
- package/api/resources/unstable/resources/aiContentSource/types/index.d.ts +0 -1
- package/api/resources/unstable/resources/aiContentSource/types/index.js +0 -17
- package/api/resources/unstable/resources/articles/client/Client.d.ts +0 -117
- package/api/resources/unstable/resources/articles/client/Client.js +0 -417
- package/api/resources/unstable/resources/articles/client/index.d.ts +0 -1
- package/api/resources/unstable/resources/articles/client/index.js +0 -17
- package/api/resources/unstable/resources/articles/client/requests/DeleteArticleRequest.d.ts +0 -15
- package/api/resources/unstable/resources/articles/client/requests/DeleteArticleRequest.js +0 -5
- package/api/resources/unstable/resources/articles/client/requests/RetrieveArticleRequest.d.ts +0 -15
- package/api/resources/unstable/resources/articles/client/requests/RetrieveArticleRequest.js +0 -5
- package/api/resources/unstable/resources/articles/client/requests/SearchArticlesRequest.d.ts +0 -28
- package/api/resources/unstable/resources/articles/client/requests/SearchArticlesRequest.js +0 -5
- package/api/resources/unstable/resources/articles/client/requests/index.d.ts +0 -3
- package/api/resources/unstable/resources/articles/index.d.ts +0 -2
- package/api/resources/unstable/resources/articles/index.js +0 -18
- package/api/resources/unstable/resources/articles/types/Article.d.ts +0 -10
- package/api/resources/unstable/resources/articles/types/Article.js +0 -5
- package/api/resources/unstable/resources/articles/types/ArticleListItem.d.ts +0 -50
- package/api/resources/unstable/resources/articles/types/ArticleListItem.js +0 -13
- package/api/resources/unstable/resources/articles/types/ArticleSearchHighlights.d.ts +0 -60
- package/api/resources/unstable/resources/articles/types/ArticleSearchHighlights.js +0 -29
- package/api/resources/unstable/resources/articles/types/ArticleSearchResponse.d.ts +0 -27
- package/api/resources/unstable/resources/articles/types/ArticleSearchResponse.js +0 -5
- package/api/resources/unstable/resources/articles/types/index.d.ts +0 -4
- package/api/resources/unstable/resources/articles/types/index.js +0 -20
- package/api/resources/unstable/resources/awayStatusReasons/client/Client.d.ts +0 -49
- package/api/resources/unstable/resources/awayStatusReasons/client/Client.js +0 -135
- package/api/resources/unstable/resources/awayStatusReasons/index.d.ts +0 -1
- package/api/resources/unstable/resources/awayStatusReasons/index.js +0 -17
- package/api/resources/unstable/resources/companies/client/Client.d.ts +0 -271
- package/api/resources/unstable/resources/companies/client/Client.js +0 -908
- package/api/resources/unstable/resources/companies/client/index.d.ts +0 -1
- package/api/resources/unstable/resources/companies/client/index.js +0 -17
- package/api/resources/unstable/resources/companies/client/requests/AttachContactToACompanyRequest.d.ts +0 -30
- package/api/resources/unstable/resources/companies/client/requests/AttachContactToACompanyRequest.js +0 -5
- package/api/resources/unstable/resources/companies/client/requests/DeleteCompanyRequest.d.ts +0 -15
- package/api/resources/unstable/resources/companies/client/requests/DeleteCompanyRequest.js +0 -5
- package/api/resources/unstable/resources/companies/client/requests/DetachContactFromACompanyRequest.d.ts +0 -20
- package/api/resources/unstable/resources/companies/client/requests/DetachContactFromACompanyRequest.js +0 -5
- package/api/resources/unstable/resources/companies/client/requests/ListAllCompaniesRequest.d.ts +0 -23
- package/api/resources/unstable/resources/companies/client/requests/ListAllCompaniesRequest.js +0 -5
- package/api/resources/unstable/resources/companies/client/requests/ListAttachedContactsRequest.d.ts +0 -15
- package/api/resources/unstable/resources/companies/client/requests/ListAttachedContactsRequest.js +0 -5
- package/api/resources/unstable/resources/companies/client/requests/ListAttachedSegmentsForCompaniesRequest.d.ts +0 -15
- package/api/resources/unstable/resources/companies/client/requests/ListAttachedSegmentsForCompaniesRequest.js +0 -5
- package/api/resources/unstable/resources/companies/client/requests/RetrieveACompanyByIdRequest.d.ts +0 -15
- package/api/resources/unstable/resources/companies/client/requests/RetrieveACompanyByIdRequest.js +0 -5
- package/api/resources/unstable/resources/companies/client/requests/RetrieveCompanyRequest.d.ts +0 -38
- package/api/resources/unstable/resources/companies/client/requests/RetrieveCompanyRequest.js +0 -5
- package/api/resources/unstable/resources/companies/client/requests/ScrollOverAllCompaniesRequest.d.ts +0 -13
- package/api/resources/unstable/resources/companies/client/requests/ScrollOverAllCompaniesRequest.js +0 -5
- package/api/resources/unstable/resources/companies/client/requests/UpdateCompanyRequest.d.ts +0 -15
- package/api/resources/unstable/resources/companies/client/requests/UpdateCompanyRequest.js +0 -5
- package/api/resources/unstable/resources/companies/client/requests/index.d.ts +0 -10
- package/api/resources/unstable/resources/companies/index.d.ts +0 -2
- package/api/resources/unstable/resources/companies/index.js +0 -18
- package/api/resources/unstable/resources/companies/types/Company.d.ts +0 -72
- package/api/resources/unstable/resources/companies/types/Company.js +0 -5
- package/api/resources/unstable/resources/companies/types/index.d.ts +0 -1
- package/api/resources/unstable/resources/companies/types/index.js +0 -17
- package/api/resources/unstable/resources/contacts/client/Client.d.ts +0 -395
- package/api/resources/unstable/resources/contacts/client/Client.js +0 -1165
- package/api/resources/unstable/resources/contacts/client/index.d.ts +0 -1
- package/api/resources/unstable/resources/contacts/client/index.js +0 -17
- package/api/resources/unstable/resources/contacts/client/requests/ArchiveContactRequest.d.ts +0 -15
- package/api/resources/unstable/resources/contacts/client/requests/ArchiveContactRequest.js +0 -5
- package/api/resources/unstable/resources/contacts/client/requests/BlockContactRequest.d.ts +0 -15
- package/api/resources/unstable/resources/contacts/client/requests/BlockContactRequest.js +0 -5
- package/api/resources/unstable/resources/contacts/client/requests/DeleteContactRequest.d.ts +0 -15
- package/api/resources/unstable/resources/contacts/client/requests/DeleteContactRequest.js +0 -5
- package/api/resources/unstable/resources/contacts/client/requests/ListCompaniesForAContactRequest.d.ts +0 -15
- package/api/resources/unstable/resources/contacts/client/requests/ListCompaniesForAContactRequest.js +0 -5
- package/api/resources/unstable/resources/contacts/client/requests/ListSegmentsForAContactRequest.d.ts +0 -15
- package/api/resources/unstable/resources/contacts/client/requests/ListSegmentsForAContactRequest.js +0 -5
- package/api/resources/unstable/resources/contacts/client/requests/ListSubscriptionsForAContactRequest.d.ts +0 -15
- package/api/resources/unstable/resources/contacts/client/requests/ListSubscriptionsForAContactRequest.js +0 -5
- package/api/resources/unstable/resources/contacts/client/requests/ListTagsForAContactRequest.d.ts +0 -15
- package/api/resources/unstable/resources/contacts/client/requests/ListTagsForAContactRequest.js +0 -5
- package/api/resources/unstable/resources/contacts/client/requests/MergeContactsRequest.d.ts +0 -16
- package/api/resources/unstable/resources/contacts/client/requests/MergeContactsRequest.js +0 -5
- package/api/resources/unstable/resources/contacts/client/requests/ShowContactByExternalIdRequest.d.ts +0 -15
- package/api/resources/unstable/resources/contacts/client/requests/ShowContactByExternalIdRequest.js +0 -5
- package/api/resources/unstable/resources/contacts/client/requests/ShowContactRequest.d.ts +0 -15
- package/api/resources/unstable/resources/contacts/client/requests/ShowContactRequest.js +0 -5
- package/api/resources/unstable/resources/contacts/client/requests/UnarchiveContactRequest.d.ts +0 -15
- package/api/resources/unstable/resources/contacts/client/requests/UnarchiveContactRequest.js +0 -5
- package/api/resources/unstable/resources/contacts/client/requests/UpdateContactRequest.d.ts +0 -49
- package/api/resources/unstable/resources/contacts/client/requests/UpdateContactRequest.js +0 -5
- package/api/resources/unstable/resources/contacts/client/requests/index.d.ts +0 -12
- package/api/resources/unstable/resources/contacts/index.d.ts +0 -2
- package/api/resources/unstable/resources/contacts/index.js +0 -18
- package/api/resources/unstable/resources/contacts/types/Contact.d.ts +0 -103
- package/api/resources/unstable/resources/contacts/types/Contact.js +0 -5
- package/api/resources/unstable/resources/contacts/types/CreateContactResponse.d.ts +0 -8
- package/api/resources/unstable/resources/contacts/types/CreateContactResponse.js +0 -5
- package/api/resources/unstable/resources/contacts/types/MergeContactResponse.d.ts +0 -8
- package/api/resources/unstable/resources/contacts/types/MergeContactResponse.js +0 -5
- package/api/resources/unstable/resources/contacts/types/ShowContactByExternalIdResponse.d.ts +0 -8
- package/api/resources/unstable/resources/contacts/types/ShowContactByExternalIdResponse.js +0 -5
- package/api/resources/unstable/resources/contacts/types/ShowContactResponse.d.ts +0 -8
- package/api/resources/unstable/resources/contacts/types/ShowContactResponse.js +0 -5
- package/api/resources/unstable/resources/contacts/types/UpdateContactResponse.d.ts +0 -8
- package/api/resources/unstable/resources/contacts/types/UpdateContactResponse.js +0 -5
- package/api/resources/unstable/resources/contacts/types/index.d.ts +0 -6
- package/api/resources/unstable/resources/contacts/types/index.js +0 -22
- package/api/resources/unstable/resources/conversations/client/Client.d.ts +0 -545
- package/api/resources/unstable/resources/conversations/client/Client.js +0 -1218
- package/api/resources/unstable/resources/conversations/client/index.d.ts +0 -1
- package/api/resources/unstable/resources/conversations/client/index.js +0 -17
- package/api/resources/unstable/resources/conversations/client/requests/AttachContactToConversationRequest.d.ts +0 -44
- package/api/resources/unstable/resources/conversations/client/requests/AttachContactToConversationRequest.js +0 -5
- package/api/resources/unstable/resources/conversations/client/requests/ConvertConversationToTicketRequest.d.ts +0 -26
- package/api/resources/unstable/resources/conversations/client/requests/ConvertConversationToTicketRequest.js +0 -5
- package/api/resources/unstable/resources/conversations/client/requests/CreateConversationRequest.d.ts +0 -48
- package/api/resources/unstable/resources/conversations/client/requests/CreateConversationRequest.js +0 -17
- package/api/resources/unstable/resources/conversations/client/requests/DeleteConversationRequest.d.ts +0 -15
- package/api/resources/unstable/resources/conversations/client/requests/DeleteConversationRequest.js +0 -5
- package/api/resources/unstable/resources/conversations/client/requests/DetachContactFromConversationRequest.d.ts +0 -44
- package/api/resources/unstable/resources/conversations/client/requests/DetachContactFromConversationRequest.js +0 -5
- package/api/resources/unstable/resources/conversations/client/requests/ListConversationsRequest.d.ts +0 -17
- package/api/resources/unstable/resources/conversations/client/requests/ListConversationsRequest.js +0 -5
- package/api/resources/unstable/resources/conversations/client/requests/ManageConversationRequest.d.ts +0 -62
- package/api/resources/unstable/resources/conversations/client/requests/ManageConversationRequest.js +0 -5
- package/api/resources/unstable/resources/conversations/client/requests/ReplyConversationRequest.d.ts +0 -77
- package/api/resources/unstable/resources/conversations/client/requests/ReplyConversationRequest.js +0 -5
- package/api/resources/unstable/resources/conversations/client/requests/RetrieveConversationRequest.d.ts +0 -20
- package/api/resources/unstable/resources/conversations/client/requests/RetrieveConversationRequest.js +0 -5
- package/api/resources/unstable/resources/conversations/client/requests/UpdateConversationRequest.d.ts +0 -53
- package/api/resources/unstable/resources/conversations/client/requests/UpdateConversationRequest.js +0 -5
- package/api/resources/unstable/resources/conversations/client/requests/index.d.ts +0 -10
- package/api/resources/unstable/resources/conversations/index.d.ts +0 -2
- package/api/resources/unstable/resources/conversations/index.js +0 -18
- package/api/resources/unstable/resources/conversations/types/Conversation.d.ts +0 -68
- package/api/resources/unstable/resources/conversations/types/Conversation.js +0 -18
- package/api/resources/unstable/resources/conversations/types/ManageConversationRequestBody.d.ts +0 -19
- package/api/resources/unstable/resources/conversations/types/ManageConversationRequestBody.js +0 -5
- package/api/resources/unstable/resources/conversations/types/index.d.ts +0 -2
- package/api/resources/unstable/resources/conversations/types/index.js +0 -18
- package/api/resources/unstable/resources/customChannelEvents/client/Client.d.ts +0 -144
- package/api/resources/unstable/resources/customChannelEvents/client/Client.js +0 -408
- package/api/resources/unstable/resources/customChannelEvents/client/index.d.ts +0 -1
- package/api/resources/unstable/resources/customChannelEvents/client/index.js +0 -17
- package/api/resources/unstable/resources/customChannelEvents/client/requests/NotifyAttributeCollectedRequest.d.ts +0 -24
- package/api/resources/unstable/resources/customChannelEvents/client/requests/NotifyAttributeCollectedRequest.js +0 -5
- package/api/resources/unstable/resources/customChannelEvents/client/requests/NotifyNewMessageRequest.d.ts +0 -22
- package/api/resources/unstable/resources/customChannelEvents/client/requests/NotifyNewMessageRequest.js +0 -5
- package/api/resources/unstable/resources/customChannelEvents/client/requests/NotifyQuickReplySelectedRequest.d.ts +0 -22
- package/api/resources/unstable/resources/customChannelEvents/client/requests/NotifyQuickReplySelectedRequest.js +0 -5
- package/api/resources/unstable/resources/customChannelEvents/client/requests/index.d.ts +0 -3
- package/api/resources/unstable/resources/customChannelEvents/index.d.ts +0 -1
- package/api/resources/unstable/resources/customChannelEvents/index.js +0 -17
- package/api/resources/unstable/resources/customObjectInstances/client/Client.d.ts +0 -131
- package/api/resources/unstable/resources/customObjectInstances/client/Client.js +0 -449
- package/api/resources/unstable/resources/customObjectInstances/client/index.d.ts +0 -1
- package/api/resources/unstable/resources/customObjectInstances/client/index.js +0 -17
- package/api/resources/unstable/resources/customObjectInstances/client/requests/CreateOrUpdateCustomObjectInstanceRequest.d.ts +0 -30
- package/api/resources/unstable/resources/customObjectInstances/client/requests/CreateOrUpdateCustomObjectInstanceRequest.js +0 -5
- package/api/resources/unstable/resources/customObjectInstances/client/requests/DeleteCustomObjectInstancesByExternalIdRequest.d.ts +0 -20
- package/api/resources/unstable/resources/customObjectInstances/client/requests/DeleteCustomObjectInstancesByExternalIdRequest.js +0 -5
- package/api/resources/unstable/resources/customObjectInstances/client/requests/DeleteCustomObjectInstancesByIdRequest.d.ts +0 -17
- package/api/resources/unstable/resources/customObjectInstances/client/requests/DeleteCustomObjectInstancesByIdRequest.js +0 -5
- package/api/resources/unstable/resources/customObjectInstances/client/requests/GetCustomObjectInstancesByExternalIdRequest.d.ts +0 -17
- package/api/resources/unstable/resources/customObjectInstances/client/requests/GetCustomObjectInstancesByExternalIdRequest.js +0 -5
- package/api/resources/unstable/resources/customObjectInstances/client/requests/GetCustomObjectInstancesByIdRequest.d.ts +0 -20
- package/api/resources/unstable/resources/customObjectInstances/client/requests/GetCustomObjectInstancesByIdRequest.js +0 -5
- package/api/resources/unstable/resources/customObjectInstances/client/requests/index.d.ts +0 -5
- package/api/resources/unstable/resources/customObjectInstances/index.d.ts +0 -2
- package/api/resources/unstable/resources/customObjectInstances/index.js +0 -18
- package/api/resources/unstable/resources/customObjectInstances/types/CustomObjectInstance.d.ts +0 -24
- package/api/resources/unstable/resources/customObjectInstances/types/CustomObjectInstance.js +0 -5
- package/api/resources/unstable/resources/customObjectInstances/types/index.d.ts +0 -1
- package/api/resources/unstable/resources/customObjectInstances/types/index.js +0 -17
- package/api/resources/unstable/resources/dataAttributes/client/Client.d.ts +0 -146
- package/api/resources/unstable/resources/dataAttributes/client/Client.js +0 -355
- package/api/resources/unstable/resources/dataAttributes/client/index.d.ts +0 -1
- package/api/resources/unstable/resources/dataAttributes/client/index.js +0 -17
- package/api/resources/unstable/resources/dataAttributes/client/requests/CreateDataAttributeRequest.d.ts +0 -84
- package/api/resources/unstable/resources/dataAttributes/client/requests/CreateDataAttributeRequest.js +0 -21
- package/api/resources/unstable/resources/dataAttributes/client/requests/LisDataAttributesRequest.d.ts +0 -18
- package/api/resources/unstable/resources/dataAttributes/client/requests/LisDataAttributesRequest.js +0 -5
- package/api/resources/unstable/resources/dataAttributes/client/requests/UpdateDataAttributeRequest.d.ts +0 -49
- package/api/resources/unstable/resources/dataAttributes/client/requests/UpdateDataAttributeRequest.js +0 -5
- package/api/resources/unstable/resources/dataAttributes/client/requests/index.d.ts +0 -3
- package/api/resources/unstable/resources/dataAttributes/index.d.ts +0 -2
- package/api/resources/unstable/resources/dataAttributes/index.js +0 -18
- package/api/resources/unstable/resources/dataAttributes/types/DataAttribute.d.ts +0 -63
- package/api/resources/unstable/resources/dataAttributes/types/DataAttribute.js +0 -20
- package/api/resources/unstable/resources/dataAttributes/types/LisDataAttributesRequestModel.d.ts +0 -9
- package/api/resources/unstable/resources/dataAttributes/types/LisDataAttributesRequestModel.js +0 -11
- package/api/resources/unstable/resources/dataAttributes/types/index.d.ts +0 -2
- package/api/resources/unstable/resources/dataAttributes/types/index.js +0 -18
- package/api/resources/unstable/resources/dataEvents/client/Client.d.ts +0 -136
- package/api/resources/unstable/resources/dataEvents/client/Client.js +0 -325
- package/api/resources/unstable/resources/dataEvents/client/index.d.ts +0 -1
- package/api/resources/unstable/resources/dataEvents/client/index.js +0 -17
- package/api/resources/unstable/resources/dataEvents/client/requests/CreateDataEventSummariesRequest.d.ts +0 -28
- package/api/resources/unstable/resources/dataEvents/client/requests/CreateDataEventSummariesRequest.js +0 -5
- package/api/resources/unstable/resources/dataEvents/client/requests/LisDataEventsRequest.d.ts +0 -24
- package/api/resources/unstable/resources/dataEvents/client/requests/LisDataEventsRequest.js +0 -5
- package/api/resources/unstable/resources/dataEvents/client/requests/index.d.ts +0 -2
- package/api/resources/unstable/resources/dataEvents/index.d.ts +0 -2
- package/api/resources/unstable/resources/dataEvents/index.js +0 -18
- package/api/resources/unstable/resources/dataEvents/types/DataEvent.d.ts +0 -24
- package/api/resources/unstable/resources/dataEvents/types/DataEvent.js +0 -5
- package/api/resources/unstable/resources/dataEvents/types/LisDataEventsRequestFilter.d.ts +0 -10
- package/api/resources/unstable/resources/dataEvents/types/LisDataEventsRequestFilter.js +0 -5
- package/api/resources/unstable/resources/dataEvents/types/index.d.ts +0 -2
- package/api/resources/unstable/resources/dataEvents/types/index.js +0 -18
- package/api/resources/unstable/resources/dataExport/client/Client.d.ts +0 -114
- package/api/resources/unstable/resources/dataExport/client/Client.js +0 -321
- package/api/resources/unstable/resources/dataExport/client/index.d.ts +0 -1
- package/api/resources/unstable/resources/dataExport/client/index.js +0 -17
- package/api/resources/unstable/resources/dataExport/client/requests/CancelDataExportRequest.d.ts +0 -15
- package/api/resources/unstable/resources/dataExport/client/requests/CancelDataExportRequest.js +0 -5
- package/api/resources/unstable/resources/dataExport/client/requests/CreateDataExportsRequest.d.ts +0 -16
- package/api/resources/unstable/resources/dataExport/client/requests/CreateDataExportsRequest.js +0 -5
- package/api/resources/unstable/resources/dataExport/client/requests/DownloadDataExportRequest.d.ts +0 -15
- package/api/resources/unstable/resources/dataExport/client/requests/DownloadDataExportRequest.js +0 -5
- package/api/resources/unstable/resources/dataExport/client/requests/GetDataExportRequest.d.ts +0 -15
- package/api/resources/unstable/resources/dataExport/client/requests/GetDataExportRequest.js +0 -5
- package/api/resources/unstable/resources/dataExport/client/requests/index.d.ts +0 -4
- package/api/resources/unstable/resources/dataExport/index.d.ts +0 -2
- package/api/resources/unstable/resources/dataExport/index.js +0 -18
- package/api/resources/unstable/resources/dataExport/types/DataExport.d.ts +0 -30
- package/api/resources/unstable/resources/dataExport/types/DataExport.js +0 -17
- package/api/resources/unstable/resources/dataExport/types/index.d.ts +0 -1
- package/api/resources/unstable/resources/dataExport/types/index.js +0 -17
- package/api/resources/unstable/resources/export/client/Client.d.ts +0 -60
- package/api/resources/unstable/resources/export/client/Client.js +0 -198
- package/api/resources/unstable/resources/export/client/index.d.ts +0 -1
- package/api/resources/unstable/resources/export/client/index.js +0 -17
- package/api/resources/unstable/resources/export/client/requests/PostExportReportingDataEnqueueRequest.d.ts +0 -18
- package/api/resources/unstable/resources/export/client/requests/PostExportReportingDataEnqueueRequest.js +0 -5
- package/api/resources/unstable/resources/export/client/requests/index.d.ts +0 -1
- package/api/resources/unstable/resources/export/index.d.ts +0 -2
- package/api/resources/unstable/resources/export/index.js +0 -18
- package/api/resources/unstable/resources/export/types/GetExportReportingDataGetDatasetsResponse.d.ts +0 -28
- package/api/resources/unstable/resources/export/types/GetExportReportingDataGetDatasetsResponse.js +0 -5
- package/api/resources/unstable/resources/export/types/PostExportReportingDataEnqueueResponse.d.ts +0 -9
- package/api/resources/unstable/resources/export/types/PostExportReportingDataEnqueueResponse.js +0 -5
- package/api/resources/unstable/resources/export/types/index.d.ts +0 -2
- package/api/resources/unstable/resources/export/types/index.js +0 -18
- package/api/resources/unstable/resources/helpCenter/client/Client.d.ts +0 -150
- package/api/resources/unstable/resources/helpCenter/client/Client.js +0 -542
- package/api/resources/unstable/resources/helpCenter/client/index.d.ts +0 -1
- package/api/resources/unstable/resources/helpCenter/client/index.js +0 -17
- package/api/resources/unstable/resources/helpCenter/client/requests/CreateCollectionRequest.d.ts +0 -27
- package/api/resources/unstable/resources/helpCenter/client/requests/CreateCollectionRequest.js +0 -5
- package/api/resources/unstable/resources/helpCenter/client/requests/DeleteCollectionRequest.d.ts +0 -15
- package/api/resources/unstable/resources/helpCenter/client/requests/DeleteCollectionRequest.js +0 -5
- package/api/resources/unstable/resources/helpCenter/client/requests/RetrieveCollectionRequest.d.ts +0 -15
- package/api/resources/unstable/resources/helpCenter/client/requests/RetrieveCollectionRequest.js +0 -5
- package/api/resources/unstable/resources/helpCenter/client/requests/RetrieveHelpCenterRequest.d.ts +0 -15
- package/api/resources/unstable/resources/helpCenter/client/requests/RetrieveHelpCenterRequest.js +0 -5
- package/api/resources/unstable/resources/helpCenter/client/requests/UpdateCollectionRequest.d.ts +0 -30
- package/api/resources/unstable/resources/helpCenter/client/requests/UpdateCollectionRequest.js +0 -5
- package/api/resources/unstable/resources/helpCenter/client/requests/index.d.ts +0 -5
- package/api/resources/unstable/resources/helpCenter/index.d.ts +0 -2
- package/api/resources/unstable/resources/helpCenter/index.js +0 -18
- package/api/resources/unstable/resources/helpCenter/types/Collection.d.ts +0 -34
- package/api/resources/unstable/resources/helpCenter/types/Collection.js +0 -5
- package/api/resources/unstable/resources/helpCenter/types/HelpCenter.d.ts +0 -22
- package/api/resources/unstable/resources/helpCenter/types/HelpCenter.js +0 -5
- package/api/resources/unstable/resources/helpCenter/types/HelpCenterList.d.ts +0 -13
- package/api/resources/unstable/resources/helpCenter/types/HelpCenterList.js +0 -5
- package/api/resources/unstable/resources/helpCenter/types/index.d.ts +0 -3
- package/api/resources/unstable/resources/helpCenter/types/index.js +0 -19
- package/api/resources/unstable/resources/index.d.ts +0 -78
- package/api/resources/unstable/resources/index.js +0 -117
- package/api/resources/unstable/resources/jobs/client/Client.d.ts +0 -53
- package/api/resources/unstable/resources/jobs/client/Client.js +0 -142
- package/api/resources/unstable/resources/jobs/client/index.d.ts +0 -1
- package/api/resources/unstable/resources/jobs/client/index.js +0 -17
- package/api/resources/unstable/resources/jobs/client/requests/JobsStatusRequest.d.ts +0 -15
- package/api/resources/unstable/resources/jobs/client/requests/JobsStatusRequest.js +0 -5
- package/api/resources/unstable/resources/jobs/client/requests/index.d.ts +0 -1
- package/api/resources/unstable/resources/jobs/index.d.ts +0 -2
- package/api/resources/unstable/resources/jobs/index.js +0 -18
- package/api/resources/unstable/resources/jobs/types/Jobs.d.ts +0 -33
- package/api/resources/unstable/resources/jobs/types/Jobs.js +0 -14
- package/api/resources/unstable/resources/jobs/types/index.d.ts +0 -1
- package/api/resources/unstable/resources/jobs/types/index.js +0 -17
- package/api/resources/unstable/resources/messages/client/Client.d.ts +0 -212
- package/api/resources/unstable/resources/messages/client/Client.js +0 -370
- package/api/resources/unstable/resources/messages/client/index.d.ts +0 -1
- package/api/resources/unstable/resources/messages/client/index.js +0 -17
- package/api/resources/unstable/resources/messages/client/requests/GetWhatsAppMessageStatusRequest.d.ts +0 -23
- package/api/resources/unstable/resources/messages/client/requests/GetWhatsAppMessageStatusRequest.js +0 -5
- package/api/resources/unstable/resources/messages/client/requests/index.d.ts +0 -1
- package/api/resources/unstable/resources/messages/index.d.ts +0 -2
- package/api/resources/unstable/resources/messages/index.js +0 -18
- package/api/resources/unstable/resources/messages/types/Message.d.ts +0 -35
- package/api/resources/unstable/resources/messages/types/Message.js +0 -16
- package/api/resources/unstable/resources/messages/types/index.d.ts +0 -1
- package/api/resources/unstable/resources/messages/types/index.js +0 -17
- package/api/resources/unstable/resources/news/client/Client.d.ts +0 -179
- package/api/resources/unstable/resources/news/client/Client.js +0 -600
- package/api/resources/unstable/resources/news/client/index.d.ts +0 -1
- package/api/resources/unstable/resources/news/client/index.js +0 -17
- package/api/resources/unstable/resources/news/client/requests/DeleteNewsItemRequest.d.ts +0 -15
- package/api/resources/unstable/resources/news/client/requests/DeleteNewsItemRequest.js +0 -5
- package/api/resources/unstable/resources/news/client/requests/ListLiveNewsfeedItemsRequest.d.ts +0 -15
- package/api/resources/unstable/resources/news/client/requests/ListLiveNewsfeedItemsRequest.js +0 -5
- package/api/resources/unstable/resources/news/client/requests/RetrieveNewsItemRequest.d.ts +0 -15
- package/api/resources/unstable/resources/news/client/requests/RetrieveNewsItemRequest.js +0 -5
- package/api/resources/unstable/resources/news/client/requests/RetrieveNewsfeedRequest.d.ts +0 -15
- package/api/resources/unstable/resources/news/client/requests/RetrieveNewsfeedRequest.js +0 -5
- package/api/resources/unstable/resources/news/client/requests/UpdateNewsItemRequest.d.ts +0 -34
- package/api/resources/unstable/resources/news/client/requests/UpdateNewsItemRequest.js +0 -5
- package/api/resources/unstable/resources/news/client/requests/index.d.ts +0 -5
- package/api/resources/unstable/resources/news/index.d.ts +0 -2
- package/api/resources/unstable/resources/news/index.js +0 -18
- package/api/resources/unstable/resources/news/types/NewsItem.d.ts +0 -45
- package/api/resources/unstable/resources/news/types/NewsItem.js +0 -13
- package/api/resources/unstable/resources/news/types/Newsfeed.d.ts +0 -18
- package/api/resources/unstable/resources/news/types/Newsfeed.js +0 -5
- package/api/resources/unstable/resources/news/types/NewsfeedAssignment.d.ts +0 -12
- package/api/resources/unstable/resources/news/types/NewsfeedAssignment.js +0 -5
- package/api/resources/unstable/resources/news/types/index.d.ts +0 -3
- package/api/resources/unstable/resources/news/types/index.js +0 -19
- package/api/resources/unstable/resources/notes/client/Client.d.ts +0 -102
- package/api/resources/unstable/resources/notes/client/Client.js +0 -297
- package/api/resources/unstable/resources/notes/client/index.d.ts +0 -1
- package/api/resources/unstable/resources/notes/client/index.js +0 -17
- package/api/resources/unstable/resources/notes/client/requests/CreateNoteRequest.d.ts +0 -40
- package/api/resources/unstable/resources/notes/client/requests/CreateNoteRequest.js +0 -5
- package/api/resources/unstable/resources/notes/client/requests/ListNotesRequest.d.ts +0 -15
- package/api/resources/unstable/resources/notes/client/requests/ListNotesRequest.js +0 -5
- package/api/resources/unstable/resources/notes/client/requests/RetrieveNoteRequest.d.ts +0 -15
- package/api/resources/unstable/resources/notes/client/requests/RetrieveNoteRequest.js +0 -5
- package/api/resources/unstable/resources/notes/client/requests/index.d.ts +0 -3
- package/api/resources/unstable/resources/notes/index.d.ts +0 -2
- package/api/resources/unstable/resources/notes/index.js +0 -18
- package/api/resources/unstable/resources/notes/types/Note.d.ts +0 -32
- package/api/resources/unstable/resources/notes/types/Note.js +0 -5
- package/api/resources/unstable/resources/notes/types/index.d.ts +0 -1
- package/api/resources/unstable/resources/notes/types/index.js +0 -17
- package/api/resources/unstable/resources/segments/client/Client.d.ts +0 -66
- package/api/resources/unstable/resources/segments/client/Client.js +0 -207
- package/api/resources/unstable/resources/segments/client/index.d.ts +0 -1
- package/api/resources/unstable/resources/segments/client/index.js +0 -17
- package/api/resources/unstable/resources/segments/client/requests/ListSegmentsRequest.d.ts +0 -13
- package/api/resources/unstable/resources/segments/client/requests/ListSegmentsRequest.js +0 -5
- package/api/resources/unstable/resources/segments/client/requests/RetrieveSegmentRequest.d.ts +0 -15
- package/api/resources/unstable/resources/segments/client/requests/RetrieveSegmentRequest.js +0 -5
- package/api/resources/unstable/resources/segments/client/requests/index.d.ts +0 -2
- package/api/resources/unstable/resources/segments/index.d.ts +0 -2
- package/api/resources/unstable/resources/segments/index.js +0 -18
- package/api/resources/unstable/resources/segments/types/Segment.d.ts +0 -32
- package/api/resources/unstable/resources/segments/types/Segment.js +0 -13
- package/api/resources/unstable/resources/segments/types/index.d.ts +0 -1
- package/api/resources/unstable/resources/segments/types/index.js +0 -17
- package/api/resources/unstable/resources/subscriptionTypes/client/Client.d.ts +0 -97
- package/api/resources/unstable/resources/subscriptionTypes/client/Client.js +0 -296
- package/api/resources/unstable/resources/subscriptionTypes/client/index.d.ts +0 -1
- package/api/resources/unstable/resources/subscriptionTypes/client/index.js +0 -17
- package/api/resources/unstable/resources/subscriptionTypes/client/requests/AttachSubscriptionTypeToContactRequest.d.ts +0 -35
- package/api/resources/unstable/resources/subscriptionTypes/client/requests/AttachSubscriptionTypeToContactRequest.js +0 -5
- package/api/resources/unstable/resources/subscriptionTypes/client/requests/DetachSubscriptionTypeToContactRequest.d.ts +0 -20
- package/api/resources/unstable/resources/subscriptionTypes/client/requests/DetachSubscriptionTypeToContactRequest.js +0 -5
- package/api/resources/unstable/resources/subscriptionTypes/client/requests/index.d.ts +0 -2
- package/api/resources/unstable/resources/subscriptionTypes/index.d.ts +0 -2
- package/api/resources/unstable/resources/subscriptionTypes/index.js +0 -18
- package/api/resources/unstable/resources/subscriptionTypes/types/SubscriptionType.d.ts +0 -49
- package/api/resources/unstable/resources/subscriptionTypes/types/SubscriptionType.js +0 -25
- package/api/resources/unstable/resources/subscriptionTypes/types/index.d.ts +0 -1
- package/api/resources/unstable/resources/subscriptionTypes/types/index.js +0 -17
- package/api/resources/unstable/resources/switch/client/Client.d.ts +0 -57
- package/api/resources/unstable/resources/switch/client/Client.js +0 -151
- package/api/resources/unstable/resources/switch/index.d.ts +0 -1
- package/api/resources/unstable/resources/switch/index.js +0 -17
- package/api/resources/unstable/resources/tags/client/Client.d.ts +0 -245
- package/api/resources/unstable/resources/tags/client/Client.js +0 -792
- package/api/resources/unstable/resources/tags/client/index.d.ts +0 -1
- package/api/resources/unstable/resources/tags/client/index.js +0 -17
- package/api/resources/unstable/resources/tags/client/requests/AttachTagToContactRequest.d.ts +0 -30
- package/api/resources/unstable/resources/tags/client/requests/AttachTagToContactRequest.js +0 -5
- package/api/resources/unstable/resources/tags/client/requests/AttachTagToConversationRequest.d.ts +0 -28
- package/api/resources/unstable/resources/tags/client/requests/AttachTagToConversationRequest.js +0 -5
- package/api/resources/unstable/resources/tags/client/requests/AttachTagToTicketRequest.d.ts +0 -28
- package/api/resources/unstable/resources/tags/client/requests/AttachTagToTicketRequest.js +0 -5
- package/api/resources/unstable/resources/tags/client/requests/DeleteTagRequest.d.ts +0 -15
- package/api/resources/unstable/resources/tags/client/requests/DeleteTagRequest.js +0 -5
- package/api/resources/unstable/resources/tags/client/requests/DetachTagFromContactRequest.d.ts +0 -20
- package/api/resources/unstable/resources/tags/client/requests/DetachTagFromContactRequest.js +0 -5
- package/api/resources/unstable/resources/tags/client/requests/DetachTagFromConversationRequest.d.ts +0 -37
- package/api/resources/unstable/resources/tags/client/requests/DetachTagFromConversationRequest.js +0 -5
- package/api/resources/unstable/resources/tags/client/requests/DetachTagFromTicketRequest.d.ts +0 -37
- package/api/resources/unstable/resources/tags/client/requests/DetachTagFromTicketRequest.js +0 -5
- package/api/resources/unstable/resources/tags/client/requests/FindTagRequest.d.ts +0 -15
- package/api/resources/unstable/resources/tags/client/requests/FindTagRequest.js +0 -5
- package/api/resources/unstable/resources/tags/client/requests/index.d.ts +0 -8
- package/api/resources/unstable/resources/tags/index.d.ts +0 -2
- package/api/resources/unstable/resources/tags/index.js +0 -18
- package/api/resources/unstable/resources/tags/types/CreateTagRequestBody.d.ts +0 -5
- package/api/resources/unstable/resources/tags/types/CreateTagRequestBody.js +0 -5
- package/api/resources/unstable/resources/tags/types/Tag.d.ts +0 -18
- package/api/resources/unstable/resources/tags/types/Tag.js +0 -5
- package/api/resources/unstable/resources/tags/types/TagBasic.d.ts +0 -14
- package/api/resources/unstable/resources/tags/types/TagBasic.js +0 -5
- package/api/resources/unstable/resources/tags/types/index.d.ts +0 -3
- package/api/resources/unstable/resources/tags/types/index.js +0 -19
- package/api/resources/unstable/resources/teams/client/Client.d.ts +0 -65
- package/api/resources/unstable/resources/teams/client/Client.js +0 -200
- package/api/resources/unstable/resources/teams/client/index.d.ts +0 -1
- package/api/resources/unstable/resources/teams/client/index.js +0 -17
- package/api/resources/unstable/resources/teams/client/requests/RetrieveTeamRequest.d.ts +0 -15
- package/api/resources/unstable/resources/teams/client/requests/RetrieveTeamRequest.js +0 -5
- package/api/resources/unstable/resources/teams/client/requests/index.d.ts +0 -1
- package/api/resources/unstable/resources/teams/index.d.ts +0 -2
- package/api/resources/unstable/resources/teams/index.js +0 -18
- package/api/resources/unstable/resources/teams/types/Team.d.ts +0 -18
- package/api/resources/unstable/resources/teams/types/Team.js +0 -5
- package/api/resources/unstable/resources/teams/types/index.d.ts +0 -1
- package/api/resources/unstable/resources/teams/types/index.js +0 -17
- package/api/resources/unstable/resources/ticketStates/client/Client.d.ts +0 -49
- package/api/resources/unstable/resources/ticketStates/client/Client.js +0 -135
- package/api/resources/unstable/resources/ticketStates/index.d.ts +0 -1
- package/api/resources/unstable/resources/ticketStates/index.js +0 -17
- package/api/resources/unstable/resources/ticketTypeAttributes/client/Client.d.ts +0 -73
- package/api/resources/unstable/resources/ticketTypeAttributes/client/Client.js +0 -226
- package/api/resources/unstable/resources/ticketTypeAttributes/client/index.d.ts +0 -1
- package/api/resources/unstable/resources/ticketTypeAttributes/client/index.js +0 -17
- package/api/resources/unstable/resources/ticketTypeAttributes/client/requests/CreateTicketTypeAttributeRequest.d.ts +0 -54
- package/api/resources/unstable/resources/ticketTypeAttributes/client/requests/CreateTicketTypeAttributeRequest.js +0 -18
- package/api/resources/unstable/resources/ticketTypeAttributes/client/requests/UpdateTicketTypeAttributeRequest.d.ts +0 -41
- package/api/resources/unstable/resources/ticketTypeAttributes/client/requests/UpdateTicketTypeAttributeRequest.js +0 -5
- package/api/resources/unstable/resources/ticketTypeAttributes/client/requests/index.d.ts +0 -2
- package/api/resources/unstable/resources/ticketTypeAttributes/index.d.ts +0 -1
- package/api/resources/unstable/resources/ticketTypeAttributes/index.js +0 -17
- package/api/resources/unstable/resources/ticketTypes/client/Client.d.ts +0 -83
- package/api/resources/unstable/resources/ticketTypes/client/Client.js +0 -269
- package/api/resources/unstable/resources/ticketTypes/client/index.d.ts +0 -1
- package/api/resources/unstable/resources/ticketTypes/client/index.js +0 -17
- package/api/resources/unstable/resources/ticketTypes/client/requests/GetTicketTypeRequest.d.ts +0 -15
- package/api/resources/unstable/resources/ticketTypes/client/requests/GetTicketTypeRequest.js +0 -5
- package/api/resources/unstable/resources/ticketTypes/client/requests/index.d.ts +0 -1
- package/api/resources/unstable/resources/ticketTypes/index.d.ts +0 -1
- package/api/resources/unstable/resources/ticketTypes/index.js +0 -17
- package/api/resources/unstable/resources/tickets/client/Client.d.ts +0 -277
- package/api/resources/unstable/resources/tickets/client/Client.js +0 -622
- package/api/resources/unstable/resources/tickets/client/index.d.ts +0 -1
- package/api/resources/unstable/resources/tickets/client/index.js +0 -17
- package/api/resources/unstable/resources/tickets/client/requests/DeleteTicketRequest.d.ts +0 -15
- package/api/resources/unstable/resources/tickets/client/requests/DeleteTicketRequest.js +0 -5
- package/api/resources/unstable/resources/tickets/client/requests/EnqueueCreateTicketRequest.d.ts +0 -17
- package/api/resources/unstable/resources/tickets/client/requests/EnqueueCreateTicketRequest.js +0 -5
- package/api/resources/unstable/resources/tickets/client/requests/GetTicketRequest.d.ts +0 -15
- package/api/resources/unstable/resources/tickets/client/requests/GetTicketRequest.js +0 -5
- package/api/resources/unstable/resources/tickets/client/requests/ReplyTicketRequest.d.ts +0 -59
- package/api/resources/unstable/resources/tickets/client/requests/ReplyTicketRequest.js +0 -5
- package/api/resources/unstable/resources/tickets/client/requests/UpdateTicketRequest.d.ts +0 -70
- package/api/resources/unstable/resources/tickets/client/requests/UpdateTicketRequest.js +0 -5
- package/api/resources/unstable/resources/tickets/client/requests/index.d.ts +0 -5
- package/api/resources/unstable/resources/tickets/index.d.ts +0 -2
- package/api/resources/unstable/resources/tickets/index.js +0 -18
- package/api/resources/unstable/resources/tickets/types/DeleteTicketResponse.d.ts +0 -14
- package/api/resources/unstable/resources/tickets/types/DeleteTicketResponse.js +0 -5
- package/api/resources/unstable/resources/tickets/types/ReplyTicketRequestBody.d.ts +0 -5
- package/api/resources/unstable/resources/tickets/types/ReplyTicketRequestBody.js +0 -5
- package/api/resources/unstable/resources/tickets/types/Ticket.d.ts +0 -48
- package/api/resources/unstable/resources/tickets/types/Ticket.js +0 -14
- package/api/resources/unstable/resources/tickets/types/TicketContacts.d.ts +0 -13
- package/api/resources/unstable/resources/tickets/types/TicketContacts.js +0 -5
- package/api/resources/unstable/resources/tickets/types/TicketPart.d.ts +0 -107
- package/api/resources/unstable/resources/tickets/types/TicketPart.js +0 -21
- package/api/resources/unstable/resources/tickets/types/TicketState.d.ts +0 -30
- package/api/resources/unstable/resources/tickets/types/TicketState.js +0 -15
- package/api/resources/unstable/resources/tickets/types/TicketStateDetailed.d.ts +0 -44
- package/api/resources/unstable/resources/tickets/types/TicketStateDetailed.js +0 -15
- package/api/resources/unstable/resources/tickets/types/TicketType.d.ts +0 -52
- package/api/resources/unstable/resources/tickets/types/TicketType.js +0 -14
- package/api/resources/unstable/resources/tickets/types/index.d.ts +0 -8
- package/api/resources/unstable/resources/tickets/types/index.js +0 -24
- package/api/resources/unstable/resources/visitors/client/Client.d.ts +0 -105
- package/api/resources/unstable/resources/visitors/client/Client.js +0 -299
- package/api/resources/unstable/resources/visitors/client/index.d.ts +0 -1
- package/api/resources/unstable/resources/visitors/client/index.js +0 -17
- package/api/resources/unstable/resources/visitors/client/requests/ConvertVisitorRequest.d.ts +0 -21
- package/api/resources/unstable/resources/visitors/client/requests/ConvertVisitorRequest.js +0 -5
- package/api/resources/unstable/resources/visitors/client/requests/RetrieveVisitorWithUserIdRequest.d.ts +0 -15
- package/api/resources/unstable/resources/visitors/client/requests/RetrieveVisitorWithUserIdRequest.js +0 -5
- package/api/resources/unstable/resources/visitors/client/requests/index.d.ts +0 -2
- package/api/resources/unstable/resources/visitors/index.d.ts +0 -1
- package/api/resources/unstable/resources/visitors/index.js +0 -17
- package/api/resources/unstable/types/ActivityLog.d.ts +0 -104
- package/api/resources/unstable/types/ActivityLog.js +0 -78
- package/api/resources/unstable/types/ActivityLogList.d.ts +0 -14
- package/api/resources/unstable/types/ActivityLogList.js +0 -5
- package/api/resources/unstable/types/ActivityLogMetadata.d.ts +0 -26
- package/api/resources/unstable/types/ActivityLogMetadata.js +0 -5
- package/api/resources/unstable/types/AddressableList.d.ts +0 -14
- package/api/resources/unstable/types/AddressableList.js +0 -5
- package/api/resources/unstable/types/AdminList.d.ts +0 -13
- package/api/resources/unstable/types/AdminList.js +0 -5
- package/api/resources/unstable/types/AdminPriorityLevel.d.ts +0 -12
- package/api/resources/unstable/types/AdminPriorityLevel.js +0 -5
- package/api/resources/unstable/types/AdminReplyConversationRequest.d.ts +0 -31
- package/api/resources/unstable/types/AdminReplyConversationRequest.js +0 -14
- package/api/resources/unstable/types/AdminReplyTicketRequest.d.ts +0 -37
- package/api/resources/unstable/types/AdminReplyTicketRequest.js +0 -14
- package/api/resources/unstable/types/AdminWithApp.d.ts +0 -44
- package/api/resources/unstable/types/AdminWithApp.js +0 -5
- package/api/resources/unstable/types/App.d.ts +0 -22
- package/api/resources/unstable/types/App.js +0 -5
- package/api/resources/unstable/types/ArticleContent.d.ts +0 -36
- package/api/resources/unstable/types/ArticleContent.js +0 -13
- package/api/resources/unstable/types/ArticleList.d.ts +0 -16
- package/api/resources/unstable/types/ArticleList.js +0 -5
- package/api/resources/unstable/types/ArticleStatistics.d.ts +0 -22
- package/api/resources/unstable/types/ArticleStatistics.js +0 -5
- package/api/resources/unstable/types/ArticleTranslatedContent.d.ts +0 -85
- package/api/resources/unstable/types/ArticleTranslatedContent.js +0 -5
- package/api/resources/unstable/types/AssignConversationRequest.d.ts +0 -22
- package/api/resources/unstable/types/AssignConversationRequest.js +0 -13
- package/api/resources/unstable/types/AwayStatusReason.d.ts +0 -20
- package/api/resources/unstable/types/AwayStatusReason.js +0 -5
- package/api/resources/unstable/types/CloseConversationRequest.d.ts +0 -13
- package/api/resources/unstable/types/CloseConversationRequest.js +0 -5
- package/api/resources/unstable/types/CollectionList.d.ts +0 -16
- package/api/resources/unstable/types/CollectionList.js +0 -5
- package/api/resources/unstable/types/CompanyAttachedContacts.d.ts +0 -16
- package/api/resources/unstable/types/CompanyAttachedContacts.js +0 -5
- package/api/resources/unstable/types/CompanyAttachedSegments.d.ts +0 -13
- package/api/resources/unstable/types/CompanyAttachedSegments.js +0 -5
- package/api/resources/unstable/types/CompanyData.d.ts +0 -14
- package/api/resources/unstable/types/CompanyData.js +0 -5
- package/api/resources/unstable/types/CompanyList.d.ts +0 -16
- package/api/resources/unstable/types/CompanyList.js +0 -5
- package/api/resources/unstable/types/CompanyScroll.d.ts +0 -17
- package/api/resources/unstable/types/CompanyScroll.js +0 -5
- package/api/resources/unstable/types/ContactArchived.d.ts +0 -11
- package/api/resources/unstable/types/ContactArchived.js +0 -5
- package/api/resources/unstable/types/ContactAttachedCompanies.d.ts +0 -16
- package/api/resources/unstable/types/ContactAttachedCompanies.js +0 -5
- package/api/resources/unstable/types/ContactBlocked.d.ts +0 -11
- package/api/resources/unstable/types/ContactBlocked.js +0 -5
- package/api/resources/unstable/types/ContactCompanies.d.ts +0 -17
- package/api/resources/unstable/types/ContactCompanies.js +0 -5
- package/api/resources/unstable/types/ContactDeleted.d.ts +0 -11
- package/api/resources/unstable/types/ContactDeleted.js +0 -5
- package/api/resources/unstable/types/ContactList.d.ts +0 -16
- package/api/resources/unstable/types/ContactList.js +0 -5
- package/api/resources/unstable/types/ContactLocation.d.ts +0 -16
- package/api/resources/unstable/types/ContactLocation.js +0 -5
- package/api/resources/unstable/types/ContactNotes.d.ts +0 -17
- package/api/resources/unstable/types/ContactNotes.js +0 -5
- package/api/resources/unstable/types/ContactReference.d.ts +0 -14
- package/api/resources/unstable/types/ContactReference.js +0 -5
- package/api/resources/unstable/types/ContactReplyBaseRequest.d.ts +0 -26
- package/api/resources/unstable/types/ContactReplyBaseRequest.js +0 -5
- package/api/resources/unstable/types/ContactReplyConversationRequest.d.ts +0 -5
- package/api/resources/unstable/types/ContactReplyConversationRequest.js +0 -5
- package/api/resources/unstable/types/ContactReplyEmailRequest.d.ts +0 -13
- package/api/resources/unstable/types/ContactReplyEmailRequest.js +0 -5
- package/api/resources/unstable/types/ContactReplyIntercomUserIdRequest.d.ts +0 -13
- package/api/resources/unstable/types/ContactReplyIntercomUserIdRequest.js +0 -5
- package/api/resources/unstable/types/ContactReplyTicketEmailRequest.d.ts +0 -11
- package/api/resources/unstable/types/ContactReplyTicketEmailRequest.js +0 -5
- package/api/resources/unstable/types/ContactReplyTicketIntercomUserIdRequest.d.ts +0 -11
- package/api/resources/unstable/types/ContactReplyTicketIntercomUserIdRequest.js +0 -5
- package/api/resources/unstable/types/ContactReplyTicketRequest.d.ts +0 -5
- package/api/resources/unstable/types/ContactReplyTicketRequest.js +0 -5
- package/api/resources/unstable/types/ContactReplyTicketUserIdRequest.d.ts +0 -11
- package/api/resources/unstable/types/ContactReplyTicketUserIdRequest.js +0 -5
- package/api/resources/unstable/types/ContactReplyUserIdRequest.d.ts +0 -13
- package/api/resources/unstable/types/ContactReplyUserIdRequest.js +0 -5
- package/api/resources/unstable/types/ContactSegments.d.ts +0 -13
- package/api/resources/unstable/types/ContactSegments.js +0 -5
- package/api/resources/unstable/types/ContactSocialProfiles.d.ts +0 -11
- package/api/resources/unstable/types/ContactSocialProfiles.js +0 -5
- package/api/resources/unstable/types/ContactSubscriptionTypes.d.ts +0 -17
- package/api/resources/unstable/types/ContactSubscriptionTypes.js +0 -5
- package/api/resources/unstable/types/ContactTags.d.ts +0 -17
- package/api/resources/unstable/types/ContactTags.js +0 -5
- package/api/resources/unstable/types/ContactUnarchived.d.ts +0 -11
- package/api/resources/unstable/types/ContactUnarchived.js +0 -5
- package/api/resources/unstable/types/ContentSourcesList.d.ts +0 -11
- package/api/resources/unstable/types/ContentSourcesList.js +0 -5
- package/api/resources/unstable/types/ConversationAttachmentFiles.d.ts +0 -14
- package/api/resources/unstable/types/ConversationAttachmentFiles.js +0 -5
- package/api/resources/unstable/types/ConversationAttributeUpdatedByAdmin.d.ts +0 -20
- package/api/resources/unstable/types/ConversationAttributeUpdatedByAdmin.js +0 -5
- package/api/resources/unstable/types/ConversationAttributeUpdatedByWorkflow.d.ts +0 -25
- package/api/resources/unstable/types/ConversationAttributeUpdatedByWorkflow.js +0 -5
- package/api/resources/unstable/types/ConversationContacts.d.ts +0 -13
- package/api/resources/unstable/types/ConversationContacts.js +0 -5
- package/api/resources/unstable/types/ConversationDeleted.d.ts +0 -14
- package/api/resources/unstable/types/ConversationDeleted.js +0 -5
- package/api/resources/unstable/types/ConversationFirstContactReply.d.ts +0 -14
- package/api/resources/unstable/types/ConversationFirstContactReply.js +0 -5
- package/api/resources/unstable/types/ConversationList.d.ts +0 -16
- package/api/resources/unstable/types/ConversationList.js +0 -5
- package/api/resources/unstable/types/ConversationPart.d.ts +0 -52
- package/api/resources/unstable/types/ConversationPart.js +0 -14
- package/api/resources/unstable/types/ConversationPartAuthor.d.ts +0 -20
- package/api/resources/unstable/types/ConversationPartAuthor.js +0 -5
- package/api/resources/unstable/types/ConversationPartMetadata.d.ts +0 -22
- package/api/resources/unstable/types/ConversationPartMetadata.js +0 -5
- package/api/resources/unstable/types/ConversationParts.d.ts +0 -15
- package/api/resources/unstable/types/ConversationParts.js +0 -5
- package/api/resources/unstable/types/ConversationRating.d.ts +0 -17
- package/api/resources/unstable/types/ConversationRating.js +0 -5
- package/api/resources/unstable/types/ConversationResponseTime.d.ts +0 -14
- package/api/resources/unstable/types/ConversationResponseTime.js +0 -5
- package/api/resources/unstable/types/ConversationSource.d.ts +0 -44
- package/api/resources/unstable/types/ConversationSource.js +0 -21
- package/api/resources/unstable/types/ConversationStatistics.d.ts +0 -53
- package/api/resources/unstable/types/ConversationStatistics.js +0 -5
- package/api/resources/unstable/types/ConversationTeammates.d.ts +0 -13
- package/api/resources/unstable/types/ConversationTeammates.js +0 -5
- package/api/resources/unstable/types/CreateOrUpdateTagRequest.d.ts +0 -12
- package/api/resources/unstable/types/CreateOrUpdateTagRequest.js +0 -5
- package/api/resources/unstable/types/CreateTicketReplyWithCommentRequest.d.ts +0 -5
- package/api/resources/unstable/types/CreateTicketReplyWithCommentRequest.js +0 -5
- package/api/resources/unstable/types/CreateTicketRequestBody.d.ts +0 -43
- package/api/resources/unstable/types/CreateTicketRequestBody.js +0 -5
- package/api/resources/unstable/types/CursorPages.d.ts +0 -19
- package/api/resources/unstable/types/CursorPages.js +0 -5
- package/api/resources/unstable/types/CustomActionFinished.d.ts +0 -27
- package/api/resources/unstable/types/CustomActionFinished.js +0 -16
- package/api/resources/unstable/types/CustomActionStarted.d.ts +0 -15
- package/api/resources/unstable/types/CustomActionStarted.js +0 -5
- package/api/resources/unstable/types/CustomAttributes.d.ts +0 -11
- package/api/resources/unstable/types/CustomAttributes.js +0 -5
- package/api/resources/unstable/types/CustomChannelAttribute.d.ts +0 -9
- package/api/resources/unstable/types/CustomChannelAttribute.js +0 -5
- package/api/resources/unstable/types/CustomChannelBaseEvent.d.ts +0 -11
- package/api/resources/unstable/types/CustomChannelBaseEvent.js +0 -5
- package/api/resources/unstable/types/CustomChannelContact.d.ts +0 -23
- package/api/resources/unstable/types/CustomChannelContact.js +0 -13
- package/api/resources/unstable/types/CustomChannelNotificationResponse.d.ts +0 -13
- package/api/resources/unstable/types/CustomChannelNotificationResponse.js +0 -5
- package/api/resources/unstable/types/CustomObjectInstanceDeleted.d.ts +0 -14
- package/api/resources/unstable/types/CustomObjectInstanceDeleted.js +0 -5
- package/api/resources/unstable/types/CustomObjectInstanceList.d.ts +0 -12
- package/api/resources/unstable/types/CustomObjectInstanceList.js +0 -5
- package/api/resources/unstable/types/CustomerRequest.d.ts +0 -10
- package/api/resources/unstable/types/CustomerRequest.js +0 -5
- package/api/resources/unstable/types/DataAttributeList.d.ts +0 -13
- package/api/resources/unstable/types/DataAttributeList.js +0 -5
- package/api/resources/unstable/types/DataEventList.d.ts +0 -24
- package/api/resources/unstable/types/DataEventList.js +0 -5
- package/api/resources/unstable/types/DataEventSummary.d.ts +0 -19
- package/api/resources/unstable/types/DataEventSummary.js +0 -5
- package/api/resources/unstable/types/DataEventSummaryItem.d.ts +0 -18
- package/api/resources/unstable/types/DataEventSummaryItem.js +0 -5
- package/api/resources/unstable/types/DataExportCsv.d.ts +0 -60
- package/api/resources/unstable/types/DataExportCsv.js +0 -5
- package/api/resources/unstable/types/Datetime.d.ts +0 -10
- package/api/resources/unstable/types/Datetime.js +0 -5
- package/api/resources/unstable/types/DeletedArticleObject.d.ts +0 -14
- package/api/resources/unstable/types/DeletedArticleObject.js +0 -5
- package/api/resources/unstable/types/DeletedCollectionObject.d.ts +0 -14
- package/api/resources/unstable/types/DeletedCollectionObject.js +0 -5
- package/api/resources/unstable/types/DeletedCompanyObject.d.ts +0 -14
- package/api/resources/unstable/types/DeletedCompanyObject.js +0 -5
- package/api/resources/unstable/types/DeletedObject.d.ts +0 -14
- package/api/resources/unstable/types/DeletedObject.js +0 -5
- package/api/resources/unstable/types/EmailAddressHeader.d.ts +0 -14
- package/api/resources/unstable/types/EmailAddressHeader.js +0 -5
- package/api/resources/unstable/types/EmailMessageMetadata.d.ts +0 -13
- package/api/resources/unstable/types/EmailMessageMetadata.js +0 -5
- package/api/resources/unstable/types/Error_.d.ts +0 -27
- package/api/resources/unstable/types/Error_.js +0 -5
- package/api/resources/unstable/types/EventDetails.d.ts +0 -5
- package/api/resources/unstable/types/EventDetails.js +0 -5
- package/api/resources/unstable/types/FileAttribute.d.ts +0 -21
- package/api/resources/unstable/types/FileAttribute.js +0 -5
- package/api/resources/unstable/types/GroupContent.d.ts +0 -14
- package/api/resources/unstable/types/GroupContent.js +0 -5
- package/api/resources/unstable/types/GroupTranslatedContent.d.ts +0 -85
- package/api/resources/unstable/types/GroupTranslatedContent.js +0 -5
- package/api/resources/unstable/types/IntercomVersion.d.ts +0 -27
- package/api/resources/unstable/types/IntercomVersion.js +0 -26
- package/api/resources/unstable/types/IntercomVersionUnstable.d.ts +0 -7
- package/api/resources/unstable/types/IntercomVersionUnstable.js +0 -5
- package/api/resources/unstable/types/LinkedObject.d.ts +0 -24
- package/api/resources/unstable/types/LinkedObject.js +0 -13
- package/api/resources/unstable/types/LinkedObjectList.d.ts +0 -17
- package/api/resources/unstable/types/LinkedObjectList.js +0 -5
- package/api/resources/unstable/types/MultipleFilterSearchRequest.d.ts +0 -29
- package/api/resources/unstable/types/MultipleFilterSearchRequest.js +0 -13
- package/api/resources/unstable/types/NewsItemRequest.d.ts +0 -35
- package/api/resources/unstable/types/NewsItemRequest.js +0 -13
- package/api/resources/unstable/types/NotFoundErrorBody.d.ts +0 -22
- package/api/resources/unstable/types/NotFoundErrorBody.js +0 -5
- package/api/resources/unstable/types/NoteList.d.ts +0 -16
- package/api/resources/unstable/types/NoteList.js +0 -5
- package/api/resources/unstable/types/OpenConversationRequest.d.ts +0 -10
- package/api/resources/unstable/types/OpenConversationRequest.js +0 -5
- package/api/resources/unstable/types/OperatorWorkflowEvent.d.ts +0 -22
- package/api/resources/unstable/types/OperatorWorkflowEvent.js +0 -5
- package/api/resources/unstable/types/PagesLink.d.ts +0 -16
- package/api/resources/unstable/types/PagesLink.js +0 -5
- package/api/resources/unstable/types/PaginatedResponse.d.ts +0 -26
- package/api/resources/unstable/types/PaginatedResponse.js +0 -13
- package/api/resources/unstable/types/PaginatedResponseDataItem.d.ts +0 -13
- package/api/resources/unstable/types/PaginatedResponseDataItem.js +0 -5
- package/api/resources/unstable/types/PartAttachment.d.ts +0 -22
- package/api/resources/unstable/types/PartAttachment.js +0 -5
- package/api/resources/unstable/types/PhoneSwitch.d.ts +0 -12
- package/api/resources/unstable/types/PhoneSwitch.js +0 -5
- package/api/resources/unstable/types/QuickReplyOption.d.ts +0 -9
- package/api/resources/unstable/types/QuickReplyOption.js +0 -5
- package/api/resources/unstable/types/Recipient.d.ts +0 -22
- package/api/resources/unstable/types/Recipient.js +0 -13
- package/api/resources/unstable/types/RedactConversationRequest.d.ts +0 -27
- package/api/resources/unstable/types/RedactConversationRequest.js +0 -5
- package/api/resources/unstable/types/Reference.d.ts +0 -12
- package/api/resources/unstable/types/Reference.js +0 -5
- package/api/resources/unstable/types/ReplyConversationRequestBody.d.ts +0 -5
- package/api/resources/unstable/types/ReplyConversationRequestBody.js +0 -5
- package/api/resources/unstable/types/SearchRequest.d.ts +0 -14
- package/api/resources/unstable/types/SearchRequest.js +0 -5
- package/api/resources/unstable/types/SegmentList.d.ts +0 -15
- package/api/resources/unstable/types/SegmentList.js +0 -5
- package/api/resources/unstable/types/SingleFilterSearchRequest.d.ts +0 -32
- package/api/resources/unstable/types/SingleFilterSearchRequest.js +0 -17
- package/api/resources/unstable/types/SlaApplied.d.ts +0 -35
- package/api/resources/unstable/types/SlaApplied.js +0 -15
- package/api/resources/unstable/types/SnoozeConversationRequest.d.ts +0 -12
- package/api/resources/unstable/types/SnoozeConversationRequest.js +0 -5
- package/api/resources/unstable/types/SocialProfile.d.ts +0 -14
- package/api/resources/unstable/types/SocialProfile.js +0 -5
- package/api/resources/unstable/types/StartingAfterPaging.d.ts +0 -9
- package/api/resources/unstable/types/StartingAfterPaging.js +0 -5
- package/api/resources/unstable/types/SubscriptionTypeList.d.ts +0 -13
- package/api/resources/unstable/types/SubscriptionTypeList.js +0 -5
- package/api/resources/unstable/types/TagCompanyRequest.d.ts +0 -23
- package/api/resources/unstable/types/TagCompanyRequest.js +0 -5
- package/api/resources/unstable/types/TagList.d.ts +0 -13
- package/api/resources/unstable/types/TagList.js +0 -5
- package/api/resources/unstable/types/TagMultipleUsersRequest.d.ts +0 -20
- package/api/resources/unstable/types/TagMultipleUsersRequest.js +0 -5
- package/api/resources/unstable/types/Tags.d.ts +0 -13
- package/api/resources/unstable/types/Tags.js +0 -5
- package/api/resources/unstable/types/TeamList.d.ts +0 -13
- package/api/resources/unstable/types/TeamList.js +0 -5
- package/api/resources/unstable/types/TeamPriorityLevel.d.ts +0 -12
- package/api/resources/unstable/types/TeamPriorityLevel.js +0 -5
- package/api/resources/unstable/types/TicketCustomAttributes.d.ts +0 -11
- package/api/resources/unstable/types/TicketCustomAttributes.js +0 -5
- package/api/resources/unstable/types/TicketList.d.ts +0 -16
- package/api/resources/unstable/types/TicketList.js +0 -5
- package/api/resources/unstable/types/TicketPartAuthor.d.ts +0 -28
- package/api/resources/unstable/types/TicketPartAuthor.js +0 -15
- package/api/resources/unstable/types/TicketParts.d.ts +0 -15
- package/api/resources/unstable/types/TicketParts.js +0 -5
- package/api/resources/unstable/types/TicketReply.d.ts +0 -37
- package/api/resources/unstable/types/TicketReply.js +0 -14
- package/api/resources/unstable/types/TicketRequestCustomAttributes.d.ts +0 -10
- package/api/resources/unstable/types/TicketRequestCustomAttributes.js +0 -5
- package/api/resources/unstable/types/TicketStateList.d.ts +0 -13
- package/api/resources/unstable/types/TicketStateList.js +0 -5
- package/api/resources/unstable/types/TicketTypeAttribute.d.ts +0 -42
- package/api/resources/unstable/types/TicketTypeAttribute.js +0 -5
- package/api/resources/unstable/types/TicketTypeAttributeList.d.ts +0 -13
- package/api/resources/unstable/types/TicketTypeAttributeList.js +0 -5
- package/api/resources/unstable/types/TicketTypeList.d.ts +0 -13
- package/api/resources/unstable/types/TicketTypeList.js +0 -5
- package/api/resources/unstable/types/Translation.d.ts +0 -14
- package/api/resources/unstable/types/Translation.js +0 -5
- package/api/resources/unstable/types/UntagCompanyRequest.d.ts +0 -25
- package/api/resources/unstable/types/UntagCompanyRequest.js +0 -5
- package/api/resources/unstable/types/UpdateArticleRequestBody.d.ts +0 -34
- package/api/resources/unstable/types/UpdateArticleRequestBody.js +0 -13
- package/api/resources/unstable/types/UpdateTicketTypeRequestBody.d.ts +0 -32
- package/api/resources/unstable/types/UpdateTicketTypeRequestBody.js +0 -14
- package/api/resources/unstable/types/Visitor.d.ts +0 -128
- package/api/resources/unstable/types/Visitor.js +0 -5
- package/api/resources/unstable/types/VisitorDeletedObject.d.ts +0 -14
- package/api/resources/unstable/types/VisitorDeletedObject.js +0 -5
- package/api/resources/unstable/types/WhatsappMessageStatusList.d.ts +0 -65
- package/api/resources/unstable/types/WhatsappMessageStatusList.js +0 -21
- package/api/resources/unstable/types/index.d.ts +0 -145
- package/api/resources/unstable/types/index.js +0 -161
- package/api/resources/visitors/client/Client.d.ts +0 -106
- package/api/resources/visitors/client/Client.js +0 -294
- package/api/resources/visitors/client/index.d.ts +0 -1
- package/api/resources/visitors/client/index.js +0 -17
- package/api/resources/visitors/client/requests/FindVisitorRequest.d.ts +0 -15
- package/api/resources/visitors/client/requests/FindVisitorRequest.js +0 -5
- package/api/resources/visitors/client/requests/MergeVisitorToContactRequest.d.ts +0 -46
- package/api/resources/visitors/client/requests/MergeVisitorToContactRequest.js +0 -5
- package/api/resources/visitors/client/requests/index.d.ts +0 -2
- package/api/resources/visitors/index.d.ts +0 -1
- package/api/resources/visitors/index.js +0 -17
- package/api/types/ActionComponent.d.ts +0 -16
- package/api/types/ActionComponent.js +0 -5
- package/api/types/ActivityLog.d.ts +0 -104
- package/api/types/ActivityLog.js +0 -78
- package/api/types/ActivityLogList.d.ts +0 -14
- package/api/types/ActivityLogList.js +0 -5
- package/api/types/ActivityLogMetadata.d.ts +0 -26
- package/api/types/ActivityLogMetadata.js +0 -5
- package/api/types/AddressableList.d.ts +0 -14
- package/api/types/AddressableList.js +0 -5
- package/api/types/AdminList.d.ts +0 -13
- package/api/types/AdminList.js +0 -5
- package/api/types/AdminPriorityLevel.d.ts +0 -12
- package/api/types/AdminPriorityLevel.js +0 -5
- package/api/types/AdminReplyConversationRequest.d.ts +0 -28
- package/api/types/AdminReplyConversationRequest.js +0 -13
- package/api/types/AdminReplyTicketRequest.d.ts +0 -37
- package/api/types/AdminReplyTicketRequest.js +0 -14
- package/api/types/AdminWithApp.d.ts +0 -44
- package/api/types/AdminWithApp.js +0 -5
- package/api/types/App.d.ts +0 -22
- package/api/types/App.js +0 -5
- package/api/types/ArticleContent.d.ts +0 -36
- package/api/types/ArticleContent.js +0 -13
- package/api/types/ArticleList.d.ts +0 -16
- package/api/types/ArticleList.js +0 -5
- package/api/types/ArticleStatistics.d.ts +0 -22
- package/api/types/ArticleStatistics.js +0 -5
- package/api/types/ArticleTranslatedContent.d.ts +0 -85
- package/api/types/ArticleTranslatedContent.js +0 -5
- package/api/types/AssignConversationRequest.d.ts +0 -22
- package/api/types/AssignConversationRequest.js +0 -13
- package/api/types/ButtonComponent.d.ts +0 -33
- package/api/types/ButtonComponent.js +0 -14
- package/api/types/CanvasObject.d.ts +0 -20
- package/api/types/CanvasObject.js +0 -5
- package/api/types/CheckboxComponent.d.ts +0 -36
- package/api/types/CheckboxComponent.js +0 -14
- package/api/types/CheckboxOption.d.ts +0 -16
- package/api/types/CheckboxOption.js +0 -5
- package/api/types/CloseConversationRequest.d.ts +0 -13
- package/api/types/CloseConversationRequest.js +0 -5
- package/api/types/CollectionList.d.ts +0 -16
- package/api/types/CollectionList.js +0 -5
- package/api/types/CompanyAttachedContacts.d.ts +0 -16
- package/api/types/CompanyAttachedContacts.js +0 -5
- package/api/types/CompanyAttachedSegments.d.ts +0 -13
- package/api/types/CompanyAttachedSegments.js +0 -5
- package/api/types/CompanyList.d.ts +0 -14
- package/api/types/CompanyList.js +0 -5
- package/api/types/CompanyScroll.d.ts +0 -17
- package/api/types/CompanyScroll.js +0 -5
- package/api/types/Component.d.ts +0 -43
- package/api/types/Component.js +0 -5
- package/api/types/ConfigureRequest.d.ts +0 -22
- package/api/types/ConfigureRequest.js +0 -5
- package/api/types/ConfigureResponse.d.ts +0 -12
- package/api/types/ConfigureResponse.js +0 -5
- package/api/types/ContactArchived.d.ts +0 -16
- package/api/types/ContactArchived.js +0 -5
- package/api/types/ContactAttachedCompanies.d.ts +0 -16
- package/api/types/ContactAttachedCompanies.js +0 -5
- package/api/types/ContactCompanies.d.ts +0 -19
- package/api/types/ContactCompanies.js +0 -5
- package/api/types/ContactCompany.d.ts +0 -14
- package/api/types/ContactCompany.js +0 -5
- package/api/types/ContactDeleted.d.ts +0 -16
- package/api/types/ContactDeleted.js +0 -5
- package/api/types/ContactList.d.ts +0 -16
- package/api/types/ContactList.js +0 -5
- package/api/types/ContactLocation.d.ts +0 -16
- package/api/types/ContactLocation.js +0 -5
- package/api/types/ContactNotes.d.ts +0 -17
- package/api/types/ContactNotes.js +0 -5
- package/api/types/ContactReference.d.ts +0 -14
- package/api/types/ContactReference.js +0 -5
- package/api/types/ContactReplyBaseRequest.d.ts +0 -13
- package/api/types/ContactReplyBaseRequest.js +0 -5
- package/api/types/ContactReplyConversationRequest.d.ts +0 -5
- package/api/types/ContactReplyConversationRequest.js +0 -5
- package/api/types/ContactReplyEmailRequest.d.ts +0 -13
- package/api/types/ContactReplyEmailRequest.js +0 -5
- package/api/types/ContactReplyIntercomUserIdRequest.d.ts +0 -13
- package/api/types/ContactReplyIntercomUserIdRequest.js +0 -5
- package/api/types/ContactReplyTicketEmailRequest.d.ts +0 -11
- package/api/types/ContactReplyTicketEmailRequest.js +0 -5
- package/api/types/ContactReplyTicketIntercomUserIdRequest.d.ts +0 -11
- package/api/types/ContactReplyTicketIntercomUserIdRequest.js +0 -5
- package/api/types/ContactReplyTicketRequest.d.ts +0 -5
- package/api/types/ContactReplyTicketRequest.js +0 -5
- package/api/types/ContactReplyTicketUserIdRequest.d.ts +0 -11
- package/api/types/ContactReplyTicketUserIdRequest.js +0 -5
- package/api/types/ContactReplyUserIdRequest.d.ts +0 -13
- package/api/types/ContactReplyUserIdRequest.js +0 -5
- package/api/types/ContactSegments.d.ts +0 -13
- package/api/types/ContactSegments.js +0 -5
- package/api/types/ContactSocialProfiles.d.ts +0 -11
- package/api/types/ContactSocialProfiles.js +0 -5
- package/api/types/ContactSubscriptionTypes.d.ts +0 -17
- package/api/types/ContactSubscriptionTypes.js +0 -5
- package/api/types/ContactTags.d.ts +0 -17
- package/api/types/ContactTags.js +0 -5
- package/api/types/ContactUnarchived.d.ts +0 -16
- package/api/types/ContactUnarchived.js +0 -5
- package/api/types/ContentObject.d.ts +0 -13
- package/api/types/ContentObject.js +0 -5
- package/api/types/ContentSourcesList.d.ts +0 -11
- package/api/types/ContentSourcesList.js +0 -5
- package/api/types/Context.d.ts +0 -34
- package/api/types/Context.js +0 -15
- package/api/types/ConversationAttachmentFiles.d.ts +0 -14
- package/api/types/ConversationAttachmentFiles.js +0 -5
- package/api/types/ConversationContacts.d.ts +0 -12
- package/api/types/ConversationContacts.js +0 -5
- package/api/types/ConversationFirstContactReply.d.ts +0 -14
- package/api/types/ConversationFirstContactReply.js +0 -5
- package/api/types/ConversationPart.d.ts +0 -32
- package/api/types/ConversationPart.js +0 -5
- package/api/types/ConversationPartAuthor.d.ts +0 -16
- package/api/types/ConversationPartAuthor.js +0 -5
- package/api/types/ConversationParts.d.ts +0 -15
- package/api/types/ConversationParts.js +0 -5
- package/api/types/ConversationRating.d.ts +0 -17
- package/api/types/ConversationRating.js +0 -5
- package/api/types/ConversationSource.d.ts +0 -44
- package/api/types/ConversationSource.js +0 -21
- package/api/types/ConversationStatistics.d.ts +0 -46
- package/api/types/ConversationStatistics.js +0 -5
- package/api/types/ConversationTeammates.d.ts +0 -13
- package/api/types/ConversationTeammates.js +0 -5
- package/api/types/CreateContactRequest.d.ts +0 -37
- package/api/types/CreateContactRequest.js +0 -5
- package/api/types/CreateContactRequestTwo.d.ts +0 -4
- package/api/types/CreateContactRequestTwo.js +0 -5
- package/api/types/CreateDataEventRequest.d.ts +0 -22
- package/api/types/CreateDataEventRequest.js +0 -5
- package/api/types/CreateDataEventRequestTwo.d.ts +0 -4
- package/api/types/CreateDataEventRequestTwo.js +0 -5
- package/api/types/CreateMessageRequest.d.ts +0 -104
- package/api/types/CreateMessageRequest.js +0 -29
- package/api/types/CreateMessageRequestTwo.d.ts +0 -4
- package/api/types/CreateMessageRequestTwo.js +0 -5
- package/api/types/CreateOrUpdateTagRequest.d.ts +0 -12
- package/api/types/CreateOrUpdateTagRequest.js +0 -5
- package/api/types/CreateTicketReplyWithCommentRequest.d.ts +0 -5
- package/api/types/CreateTicketReplyWithCommentRequest.js +0 -5
- package/api/types/CreateTicketRequest.d.ts +0 -30
- package/api/types/CreateTicketRequest.js +0 -5
- package/api/types/CurrentCanvas.d.ts +0 -11
- package/api/types/CurrentCanvas.js +0 -5
- package/api/types/CursorPages.d.ts +0 -19
- package/api/types/CursorPages.js +0 -5
- package/api/types/CustomAttributes.d.ts +0 -7
- package/api/types/CustomAttributes.js +0 -5
- package/api/types/CustomerRequest.d.ts +0 -10
- package/api/types/CustomerRequest.js +0 -5
- package/api/types/DataAttributeList.d.ts +0 -13
- package/api/types/DataAttributeList.js +0 -5
- package/api/types/DataEventList.d.ts +0 -24
- package/api/types/DataEventList.js +0 -5
- package/api/types/DataEventSummary.d.ts +0 -19
- package/api/types/DataEventSummary.js +0 -5
- package/api/types/DataEventSummaryItem.d.ts +0 -18
- package/api/types/DataEventSummaryItem.js +0 -5
- package/api/types/DataExportCsv.d.ts +0 -60
- package/api/types/DataExportCsv.js +0 -5
- package/api/types/DataTableComponent.d.ts +0 -11
- package/api/types/DataTableComponent.js +0 -5
- package/api/types/DataTableItem.d.ts +0 -14
- package/api/types/DataTableItem.js +0 -5
- package/api/types/DeletedArticleObject.d.ts +0 -14
- package/api/types/DeletedArticleObject.js +0 -5
- package/api/types/DeletedCollectionObject.d.ts +0 -14
- package/api/types/DeletedCollectionObject.js +0 -5
- package/api/types/DeletedCompanyObject.d.ts +0 -14
- package/api/types/DeletedCompanyObject.js +0 -5
- package/api/types/DeletedObject.d.ts +0 -14
- package/api/types/DeletedObject.js +0 -5
- package/api/types/DividerComponent.d.ts +0 -12
- package/api/types/DividerComponent.js +0 -5
- package/api/types/DropdownComponent.d.ts +0 -34
- package/api/types/DropdownComponent.js +0 -14
- package/api/types/DropdownOption.d.ts +0 -16
- package/api/types/DropdownOption.js +0 -5
- package/api/types/Error_.d.ts +0 -27
- package/api/types/Error_.js +0 -5
- package/api/types/Event.d.ts +0 -10
- package/api/types/Event.js +0 -5
- package/api/types/FileAttribute.d.ts +0 -21
- package/api/types/FileAttribute.js +0 -5
- package/api/types/GroupContent.d.ts +0 -14
- package/api/types/GroupContent.js +0 -5
- package/api/types/GroupTranslatedContent.d.ts +0 -85
- package/api/types/GroupTranslatedContent.js +0 -5
- package/api/types/ImageComponent.d.ts +0 -40
- package/api/types/ImageComponent.js +0 -15
- package/api/types/InitializeRequest.d.ts +0 -23
- package/api/types/InitializeRequest.js +0 -5
- package/api/types/InitializeResponse.d.ts +0 -11
- package/api/types/InitializeResponse.js +0 -5
- package/api/types/InputComponent.d.ts +0 -37
- package/api/types/InputComponent.js +0 -14
- package/api/types/LinkedObject.d.ts +0 -24
- package/api/types/LinkedObject.js +0 -13
- package/api/types/LinkedObjectList.d.ts +0 -17
- package/api/types/LinkedObjectList.js +0 -5
- package/api/types/ListComponent.d.ts +0 -23
- package/api/types/ListComponent.js +0 -5
- package/api/types/ListItem.d.ts +0 -25
- package/api/types/ListItem.js +0 -5
- package/api/types/ListItemWithImage.d.ts +0 -12
- package/api/types/ListItemWithImage.js +0 -5
- package/api/types/ListItemWithoutImage.d.ts +0 -12
- package/api/types/ListItemWithoutImage.js +0 -5
- package/api/types/LiveCanvasRequest.d.ts +0 -21
- package/api/types/LiveCanvasRequest.js +0 -5
- package/api/types/LiveCanvasResponse.d.ts +0 -11
- package/api/types/LiveCanvasResponse.js +0 -5
- package/api/types/Metadata.d.ts +0 -5
- package/api/types/Metadata.js +0 -5
- package/api/types/MultipleFilterSearchRequest.d.ts +0 -22
- package/api/types/MultipleFilterSearchRequest.js +0 -13
- package/api/types/MultipleOrSingleFilterSearchRequest.d.ts +0 -5
- package/api/types/MultipleOrSingleFilterSearchRequest.js +0 -5
- package/api/types/NewsItemRequest.d.ts +0 -35
- package/api/types/NewsItemRequest.js +0 -13
- package/api/types/NoteList.d.ts +0 -16
- package/api/types/NoteList.js +0 -5
- package/api/types/OffsetPages.d.ts +0 -14
- package/api/types/OffsetPages.js +0 -5
- package/api/types/OpenConversationRequest.d.ts +0 -10
- package/api/types/OpenConversationRequest.js +0 -5
- package/api/types/PagesLink.d.ts +0 -16
- package/api/types/PagesLink.js +0 -5
- package/api/types/PaginatedConversationResponse.d.ts +0 -16
- package/api/types/PaginatedConversationResponse.js +0 -5
- package/api/types/PaginatedNewsItemResponse.d.ts +0 -16
- package/api/types/PaginatedNewsItemResponse.js +0 -5
- package/api/types/PaginatedNewsfeedResponse.d.ts +0 -16
- package/api/types/PaginatedNewsfeedResponse.js +0 -5
- package/api/types/PartAttachment.d.ts +0 -22
- package/api/types/PartAttachment.js +0 -5
- package/api/types/PhoneSwitch.d.ts +0 -12
- package/api/types/PhoneSwitch.js +0 -5
- package/api/types/RedactConversationRequest.d.ts +0 -27
- package/api/types/RedactConversationRequest.js +0 -5
- package/api/types/Reference.d.ts +0 -12
- package/api/types/Reference.js +0 -5
- package/api/types/ReplyConversationRequest.d.ts +0 -5
- package/api/types/ReplyConversationRequest.js +0 -5
- package/api/types/ResultsResponse.d.ts +0 -10
- package/api/types/ResultsResponse.js +0 -5
- package/api/types/SearchRequest.d.ts +0 -14
- package/api/types/SearchRequest.js +0 -5
- package/api/types/SegmentList.d.ts +0 -15
- package/api/types/SegmentList.js +0 -5
- package/api/types/SheetActionComponent.d.ts +0 -12
- package/api/types/SheetActionComponent.js +0 -5
- package/api/types/SingleFilterSearchRequest.d.ts +0 -36
- package/api/types/SingleFilterSearchRequest.js +0 -21
- package/api/types/SingleSelectComponent.d.ts +0 -39
- package/api/types/SingleSelectComponent.js +0 -14
- package/api/types/SingleSelectOption.d.ts +0 -16
- package/api/types/SingleSelectOption.js +0 -5
- package/api/types/SlaApplied.d.ts +0 -35
- package/api/types/SlaApplied.js +0 -15
- package/api/types/SnoozeConversationRequest.d.ts +0 -12
- package/api/types/SnoozeConversationRequest.js +0 -5
- package/api/types/SocialProfile.d.ts +0 -14
- package/api/types/SocialProfile.js +0 -5
- package/api/types/SpacerComponent.d.ts +0 -25
- package/api/types/SpacerComponent.js +0 -16
- package/api/types/StartingAfterPaging.d.ts +0 -9
- package/api/types/StartingAfterPaging.js +0 -5
- package/api/types/SubmitActionComponent.d.ts +0 -8
- package/api/types/SubmitActionComponent.js +0 -5
- package/api/types/SubmitRequest.d.ts +0 -29
- package/api/types/SubmitRequest.js +0 -5
- package/api/types/SubmitResponse.d.ts +0 -23
- package/api/types/SubmitResponse.js +0 -5
- package/api/types/SubscriptionTypeList.d.ts +0 -13
- package/api/types/SubscriptionTypeList.js +0 -5
- package/api/types/TagCompanyRequest.d.ts +0 -23
- package/api/types/TagCompanyRequest.js +0 -5
- package/api/types/TagList.d.ts +0 -13
- package/api/types/TagList.js +0 -5
- package/api/types/TagMultipleUsersRequest.d.ts +0 -20
- package/api/types/TagMultipleUsersRequest.js +0 -5
- package/api/types/Tags.d.ts +0 -13
- package/api/types/Tags.js +0 -5
- package/api/types/TeamList.d.ts +0 -13
- package/api/types/TeamList.js +0 -5
- package/api/types/TeamPriorityLevel.d.ts +0 -12
- package/api/types/TeamPriorityLevel.js +0 -5
- package/api/types/TextAreaComponent.d.ts +0 -22
- package/api/types/TextAreaComponent.js +0 -5
- package/api/types/TextComponent.d.ts +0 -39
- package/api/types/TextComponent.js +0 -20
- package/api/types/TicketCustomAttributes.d.ts +0 -7
- package/api/types/TicketCustomAttributes.js +0 -5
- package/api/types/TicketList.d.ts +0 -16
- package/api/types/TicketList.js +0 -5
- package/api/types/TicketPartAuthor.d.ts +0 -28
- package/api/types/TicketPartAuthor.js +0 -15
- package/api/types/TicketParts.d.ts +0 -15
- package/api/types/TicketParts.js +0 -5
- package/api/types/TicketReply.d.ts +0 -37
- package/api/types/TicketReply.js +0 -14
- package/api/types/TicketRequestCustomAttributes.d.ts +0 -7
- package/api/types/TicketRequestCustomAttributes.js +0 -5
- package/api/types/TicketTypeAttribute.d.ts +0 -57
- package/api/types/TicketTypeAttribute.js +0 -18
- package/api/types/TicketTypeAttributeList.d.ts +0 -13
- package/api/types/TicketTypeAttributeList.js +0 -5
- package/api/types/TicketTypeList.d.ts +0 -13
- package/api/types/TicketTypeList.js +0 -5
- package/api/types/Translation.d.ts +0 -14
- package/api/types/Translation.js +0 -5
- package/api/types/UntagCompanyRequest.d.ts +0 -25
- package/api/types/UntagCompanyRequest.js +0 -5
- package/api/types/UpdateVisitorRequest.d.ts +0 -15
- package/api/types/UpdateVisitorRequest.js +0 -5
- package/api/types/UpdateVisitorRequestOne.d.ts +0 -4
- package/api/types/UpdateVisitorRequestOne.js +0 -5
- package/api/types/UrlActionComponent.d.ts +0 -10
- package/api/types/UrlActionComponent.js +0 -5
- package/api/types/Visitor.d.ts +0 -128
- package/api/types/Visitor.js +0 -5
- package/api/types/VisitorDeletedObject.d.ts +0 -14
- package/api/types/VisitorDeletedObject.js +0 -5
- package/api/types/index.d.ts +0 -165
- package/api/types/index.js +0 -181
- package/api/version.d.ts +0 -5
- package/api/version.js +0 -5
- package/core/auth/BasicAuth.js +0 -26
- package/core/auth/BearerToken.d.ts +0 -5
- package/core/auth/BearerToken.js +0 -15
- package/core/auth/index.d.ts +0 -2
- package/core/auth/index.js +0 -7
- package/core/fetcher/APIResponse.d.ts +0 -20
- package/core/fetcher/Fetcher.d.ts +0 -39
- package/core/fetcher/Fetcher.js +0 -107
- package/core/fetcher/HttpResponsePromise.d.ts +0 -58
- package/core/fetcher/RawResponse.js +0 -44
- package/core/fetcher/createRequestUrl.d.ts +0 -1
- package/core/fetcher/createRequestUrl.js +0 -12
- package/core/fetcher/getFetchFn.d.ts +0 -4
- package/core/fetcher/getFetchFn.js +0 -68
- package/core/fetcher/getRequestBody.d.ts +0 -7
- package/core/fetcher/getRequestBody.js +0 -23
- package/core/fetcher/getResponseBody.js +0 -54
- package/core/fetcher/index.d.ts +0 -8
- package/core/fetcher/index.js +0 -15
- package/core/fetcher/makeRequest.d.ts +0 -1
- package/core/fetcher/makeRequest.js +0 -42
- package/core/fetcher/requestWithRetries.js +0 -40
- package/core/fetcher/signals.d.ts +0 -11
- package/core/fetcher/signals.js +0 -36
- package/core/fetcher/stream-wrappers/Node18UniversalStreamWrapper.d.ts +0 -30
- package/core/fetcher/stream-wrappers/Node18UniversalStreamWrapper.js +0 -247
- package/core/fetcher/stream-wrappers/NodePre18StreamWrapper.d.ts +0 -21
- package/core/fetcher/stream-wrappers/NodePre18StreamWrapper.js +0 -126
- package/core/fetcher/stream-wrappers/UndiciStreamWrapper.d.ts +0 -31
- package/core/fetcher/stream-wrappers/UndiciStreamWrapper.js +0 -229
- package/core/fetcher/stream-wrappers/chooseStreamWrapper.d.ts +0 -18
- package/core/fetcher/stream-wrappers/chooseStreamWrapper.js +0 -59
- package/core/index.d.ts +0 -5
- package/core/index.js +0 -21
- package/core/pagination/Page.d.ts +0 -32
- package/core/pagination/Page.js +0 -100
- package/core/pagination/Pageable.d.ts +0 -14
- package/core/pagination/Pageable.js +0 -10
- package/core/pagination/index.d.ts +0 -2
- package/core/pagination/index.js +0 -7
- package/core/runtime/index.d.ts +0 -1
- package/core/runtime/index.js +0 -5
- package/core/runtime/runtime.js +0 -103
- package/core/utils/index.d.ts +0 -1
- package/core/utils/index.js +0 -5
- package/dist/Client.d.ts +0 -95
- package/dist/Client.js +0 -117
- package/dist/api/errors/BadRequestError.d.ts +0 -8
- package/dist/api/errors/BadRequestError.js +0 -52
- package/dist/api/errors/ForbiddenError.d.ts +0 -9
- package/dist/api/errors/ForbiddenError.js +0 -52
- package/dist/api/errors/NotFoundError.d.ts +0 -8
- package/dist/api/errors/NotFoundError.js +0 -52
- package/dist/api/errors/UnauthorizedError.d.ts +0 -9
- package/dist/api/errors/UnauthorizedError.js +0 -52
- package/dist/api/errors/UnprocessableEntityError.d.ts +0 -8
- package/dist/api/errors/UnprocessableEntityError.js +0 -52
- package/dist/api/errors/index.d.ts +0 -5
- package/dist/api/errors/index.js +0 -21
- package/dist/api/index.d.ts +0 -4
- package/dist/api/index.js +0 -19
- package/dist/api/resources/admins/client/Client.d.ts +0 -114
- package/dist/api/resources/admins/client/Client.js +0 -404
- package/dist/api/resources/admins/client/index.d.ts +0 -1
- package/dist/api/resources/admins/client/index.js +0 -17
- package/dist/api/resources/admins/client/requests/ConfigureAwayAdminRequest.d.ts +0 -35
- package/dist/api/resources/admins/client/requests/ConfigureAwayAdminRequest.js +0 -5
- package/dist/api/resources/admins/client/requests/FindAdminRequest.d.ts +0 -15
- package/dist/api/resources/admins/client/requests/FindAdminRequest.js +0 -5
- package/dist/api/resources/admins/client/requests/ListAllActivityLogsRequest.d.ts +0 -20
- package/dist/api/resources/admins/client/requests/ListAllActivityLogsRequest.js +0 -5
- package/dist/api/resources/admins/client/requests/index.d.ts +0 -3
- package/dist/api/resources/admins/index.d.ts +0 -2
- package/dist/api/resources/admins/index.js +0 -18
- package/dist/api/resources/admins/types/Admin.d.ts +0 -39
- package/dist/api/resources/admins/types/Admin.js +0 -5
- package/dist/api/resources/admins/types/index.d.ts +0 -1
- package/dist/api/resources/admins/types/index.js +0 -17
- package/dist/api/resources/aiAgent/index.d.ts +0 -1
- package/dist/api/resources/aiAgent/index.js +0 -17
- package/dist/api/resources/aiAgent/types/AiAgent.d.ts +0 -35
- package/dist/api/resources/aiAgent/types/AiAgent.js +0 -16
- package/dist/api/resources/aiAgent/types/index.d.ts +0 -1
- package/dist/api/resources/aiAgent/types/index.js +0 -17
- package/dist/api/resources/aiContentSource/index.d.ts +0 -1
- package/dist/api/resources/aiContentSource/index.js +0 -17
- package/dist/api/resources/aiContentSource/types/ContentSource.d.ts +0 -16
- package/dist/api/resources/aiContentSource/types/ContentSource.js +0 -5
- package/dist/api/resources/aiContentSource/types/index.d.ts +0 -1
- package/dist/api/resources/aiContentSource/types/index.js +0 -17
- package/dist/api/resources/articles/client/Client.d.ts +0 -160
- package/dist/api/resources/articles/client/Client.js +0 -536
- package/dist/api/resources/articles/client/index.d.ts +0 -1
- package/dist/api/resources/articles/client/index.js +0 -17
- package/dist/api/resources/articles/client/requests/CreateArticleRequest.d.ts +0 -70
- package/dist/api/resources/articles/client/requests/CreateArticleRequest.js +0 -17
- package/dist/api/resources/articles/client/requests/DeleteArticleRequest.d.ts +0 -15
- package/dist/api/resources/articles/client/requests/DeleteArticleRequest.js +0 -5
- package/dist/api/resources/articles/client/requests/FindArticleRequest.d.ts +0 -15
- package/dist/api/resources/articles/client/requests/FindArticleRequest.js +0 -5
- package/dist/api/resources/articles/client/requests/ListArticlesRequest.d.ts +0 -17
- package/dist/api/resources/articles/client/requests/ListArticlesRequest.js +0 -5
- package/dist/api/resources/articles/client/requests/SearchArticlesRequest.d.ts +0 -28
- package/dist/api/resources/articles/client/requests/SearchArticlesRequest.js +0 -5
- package/dist/api/resources/articles/client/requests/UpdateArticleRequest.d.ts +0 -58
- package/dist/api/resources/articles/client/requests/UpdateArticleRequest.js +0 -17
- package/dist/api/resources/articles/client/requests/index.d.ts +0 -6
- package/dist/api/resources/articles/index.d.ts +0 -2
- package/dist/api/resources/articles/index.js +0 -18
- package/dist/api/resources/articles/types/Article.d.ts +0 -10
- package/dist/api/resources/articles/types/Article.js +0 -5
- package/dist/api/resources/articles/types/ArticleListItem.d.ts +0 -50
- package/dist/api/resources/articles/types/ArticleListItem.js +0 -13
- package/dist/api/resources/articles/types/ArticleSearchHighlights.d.ts +0 -60
- package/dist/api/resources/articles/types/ArticleSearchHighlights.js +0 -29
- package/dist/api/resources/articles/types/SearchArticlesResponse.d.ts +0 -27
- package/dist/api/resources/articles/types/SearchArticlesResponse.js +0 -5
- package/dist/api/resources/articles/types/index.d.ts +0 -4
- package/dist/api/resources/articles/types/index.js +0 -20
- package/dist/api/resources/companies/client/Client.d.ts +0 -274
- package/dist/api/resources/companies/client/Client.js +0 -929
- package/dist/api/resources/companies/client/index.d.ts +0 -1
- package/dist/api/resources/companies/client/index.js +0 -17
- package/dist/api/resources/companies/client/requests/AttachContactToCompanyRequest.d.ts +0 -30
- package/dist/api/resources/companies/client/requests/AttachContactToCompanyRequest.js +0 -5
- package/dist/api/resources/companies/client/requests/CreateOrUpdateCompanyRequest.d.ts +0 -34
- package/dist/api/resources/companies/client/requests/CreateOrUpdateCompanyRequest.js +0 -5
- package/dist/api/resources/companies/client/requests/DeleteCompanyRequest.d.ts +0 -15
- package/dist/api/resources/companies/client/requests/DeleteCompanyRequest.js +0 -5
- package/dist/api/resources/companies/client/requests/DetachContactFromCompanyRequest.d.ts +0 -20
- package/dist/api/resources/companies/client/requests/DetachContactFromCompanyRequest.js +0 -5
- package/dist/api/resources/companies/client/requests/FindCompanyRequest.d.ts +0 -15
- package/dist/api/resources/companies/client/requests/FindCompanyRequest.js +0 -5
- package/dist/api/resources/companies/client/requests/ListAttachedContactsRequest.d.ts +0 -23
- package/dist/api/resources/companies/client/requests/ListAttachedContactsRequest.js +0 -5
- package/dist/api/resources/companies/client/requests/ListCompaniesRequest.d.ts +0 -23
- package/dist/api/resources/companies/client/requests/ListCompaniesRequest.js +0 -5
- package/dist/api/resources/companies/client/requests/ListSegmentsAttachedToCompanyRequest.d.ts +0 -15
- package/dist/api/resources/companies/client/requests/ListSegmentsAttachedToCompanyRequest.js +0 -5
- package/dist/api/resources/companies/client/requests/RetrieveCompanyRequest.d.ts +0 -38
- package/dist/api/resources/companies/client/requests/RetrieveCompanyRequest.js +0 -5
- package/dist/api/resources/companies/client/requests/ScrollCompaniesRequest.d.ts +0 -13
- package/dist/api/resources/companies/client/requests/ScrollCompaniesRequest.js +0 -5
- package/dist/api/resources/companies/client/requests/UpdateCompanyRequest.d.ts +0 -15
- package/dist/api/resources/companies/client/requests/UpdateCompanyRequest.js +0 -5
- package/dist/api/resources/companies/client/requests/index.d.ts +0 -11
- package/dist/api/resources/companies/index.d.ts +0 -2
- package/dist/api/resources/companies/index.js +0 -18
- package/dist/api/resources/companies/types/CompaniesRetrieveResponse.d.ts +0 -13
- package/dist/api/resources/companies/types/CompaniesRetrieveResponse.js +0 -5
- package/dist/api/resources/companies/types/Company.d.ts +0 -70
- package/dist/api/resources/companies/types/Company.js +0 -5
- package/dist/api/resources/companies/types/index.d.ts +0 -2
- package/dist/api/resources/companies/types/index.js +0 -18
- package/dist/api/resources/contacts/client/Client.d.ts +0 -396
- package/dist/api/resources/contacts/client/Client.js +0 -1212
- package/dist/api/resources/contacts/client/index.d.ts +0 -1
- package/dist/api/resources/contacts/client/index.js +0 -17
- package/dist/api/resources/contacts/client/requests/ArchiveContactRequest.d.ts +0 -15
- package/dist/api/resources/contacts/client/requests/ArchiveContactRequest.js +0 -5
- package/dist/api/resources/contacts/client/requests/AttachSubscriptionToContactRequest.d.ts +0 -35
- package/dist/api/resources/contacts/client/requests/AttachSubscriptionToContactRequest.js +0 -5
- package/dist/api/resources/contacts/client/requests/DeleteContactRequest.d.ts +0 -15
- package/dist/api/resources/contacts/client/requests/DeleteContactRequest.js +0 -5
- package/dist/api/resources/contacts/client/requests/DetachSubscriptionFromContactRequest.d.ts +0 -20
- package/dist/api/resources/contacts/client/requests/DetachSubscriptionFromContactRequest.js +0 -5
- package/dist/api/resources/contacts/client/requests/FindContactRequest.d.ts +0 -15
- package/dist/api/resources/contacts/client/requests/FindContactRequest.js +0 -5
- package/dist/api/resources/contacts/client/requests/ListAttachedCompaniesRequest.d.ts +0 -23
- package/dist/api/resources/contacts/client/requests/ListAttachedCompaniesRequest.js +0 -5
- package/dist/api/resources/contacts/client/requests/ListAttachedSubscriptionsRequest.d.ts +0 -15
- package/dist/api/resources/contacts/client/requests/ListAttachedSubscriptionsRequest.js +0 -5
- package/dist/api/resources/contacts/client/requests/ListContactsRequest.d.ts +0 -21
- package/dist/api/resources/contacts/client/requests/ListContactsRequest.js +0 -5
- package/dist/api/resources/contacts/client/requests/ListSegmentsAttachedToContactRequest.d.ts +0 -15
- package/dist/api/resources/contacts/client/requests/ListSegmentsAttachedToContactRequest.js +0 -5
- package/dist/api/resources/contacts/client/requests/ListTagsAttachedToContactRequest.d.ts +0 -15
- package/dist/api/resources/contacts/client/requests/ListTagsAttachedToContactRequest.js +0 -5
- package/dist/api/resources/contacts/client/requests/MergeContactsRequest.d.ts +0 -16
- package/dist/api/resources/contacts/client/requests/MergeContactsRequest.js +0 -5
- package/dist/api/resources/contacts/client/requests/UnarchiveContactRequest.d.ts +0 -15
- package/dist/api/resources/contacts/client/requests/UnarchiveContactRequest.js +0 -5
- package/dist/api/resources/contacts/client/requests/UpdateContactRequest.d.ts +0 -39
- package/dist/api/resources/contacts/client/requests/UpdateContactRequest.js +0 -5
- package/dist/api/resources/contacts/client/requests/index.d.ts +0 -13
- package/dist/api/resources/contacts/index.d.ts +0 -2
- package/dist/api/resources/contacts/index.js +0 -18
- package/dist/api/resources/contacts/types/Contact.d.ts +0 -96
- package/dist/api/resources/contacts/types/Contact.js +0 -5
- package/dist/api/resources/contacts/types/index.d.ts +0 -1
- package/dist/api/resources/contacts/types/index.js +0 -17
- package/dist/api/resources/conversations/client/Client.d.ts +0 -513
- package/dist/api/resources/conversations/client/Client.js +0 -1213
- package/dist/api/resources/conversations/client/index.d.ts +0 -1
- package/dist/api/resources/conversations/client/index.js +0 -17
- package/dist/api/resources/conversations/client/requests/AttachContactToConversationRequest.d.ts +0 -44
- package/dist/api/resources/conversations/client/requests/AttachContactToConversationRequest.js +0 -5
- package/dist/api/resources/conversations/client/requests/AutoAssignConversationRequest.d.ts +0 -15
- package/dist/api/resources/conversations/client/requests/AutoAssignConversationRequest.js +0 -5
- package/dist/api/resources/conversations/client/requests/ConvertConversationToTicketRequest.d.ts +0 -26
- package/dist/api/resources/conversations/client/requests/ConvertConversationToTicketRequest.js +0 -5
- package/dist/api/resources/conversations/client/requests/CreateConversationRequest.d.ts +0 -48
- package/dist/api/resources/conversations/client/requests/CreateConversationRequest.js +0 -17
- package/dist/api/resources/conversations/client/requests/DetachContactFromConversationRequest.d.ts +0 -44
- package/dist/api/resources/conversations/client/requests/DetachContactFromConversationRequest.js +0 -5
- package/dist/api/resources/conversations/client/requests/FindConversationRequest.d.ts +0 -20
- package/dist/api/resources/conversations/client/requests/FindConversationRequest.js +0 -5
- package/dist/api/resources/conversations/client/requests/ListConversationsRequest.d.ts +0 -17
- package/dist/api/resources/conversations/client/requests/ListConversationsRequest.js +0 -5
- package/dist/api/resources/conversations/client/requests/ManageConversationPartsRequest.d.ts +0 -62
- package/dist/api/resources/conversations/client/requests/ManageConversationPartsRequest.js +0 -5
- package/dist/api/resources/conversations/client/requests/ReplyToConversationRequest.d.ts +0 -89
- package/dist/api/resources/conversations/client/requests/ReplyToConversationRequest.js +0 -5
- package/dist/api/resources/conversations/client/requests/UpdateConversationRequest.d.ts +0 -40
- package/dist/api/resources/conversations/client/requests/UpdateConversationRequest.js +0 -5
- package/dist/api/resources/conversations/client/requests/index.d.ts +0 -10
- package/dist/api/resources/conversations/index.d.ts +0 -2
- package/dist/api/resources/conversations/index.js +0 -18
- package/dist/api/resources/conversations/types/Conversation.d.ts +0 -68
- package/dist/api/resources/conversations/types/Conversation.js +0 -18
- package/dist/api/resources/conversations/types/ConversationsManageRequestBody.d.ts +0 -19
- package/dist/api/resources/conversations/types/ConversationsManageRequestBody.js +0 -5
- package/dist/api/resources/conversations/types/index.d.ts +0 -2
- package/dist/api/resources/conversations/types/index.js +0 -18
- package/dist/api/resources/dataAttributes/client/Client.d.ts +0 -154
- package/dist/api/resources/dataAttributes/client/Client.js +0 -363
- package/dist/api/resources/dataAttributes/client/index.d.ts +0 -1
- package/dist/api/resources/dataAttributes/client/index.js +0 -17
- package/dist/api/resources/dataAttributes/client/requests/CreateDataAttributeRequest.d.ts +0 -84
- package/dist/api/resources/dataAttributes/client/requests/CreateDataAttributeRequest.js +0 -21
- package/dist/api/resources/dataAttributes/client/requests/ListDataAttributesRequest.d.ts +0 -18
- package/dist/api/resources/dataAttributes/client/requests/ListDataAttributesRequest.js +0 -5
- package/dist/api/resources/dataAttributes/client/requests/UpdateDataAttributeRequest.d.ts +0 -69
- package/dist/api/resources/dataAttributes/client/requests/UpdateDataAttributeRequest.js +0 -5
- package/dist/api/resources/dataAttributes/client/requests/index.d.ts +0 -3
- package/dist/api/resources/dataAttributes/index.d.ts +0 -2
- package/dist/api/resources/dataAttributes/index.js +0 -18
- package/dist/api/resources/dataAttributes/types/DataAttribute.d.ts +0 -63
- package/dist/api/resources/dataAttributes/types/DataAttribute.js +0 -20
- package/dist/api/resources/dataAttributes/types/DataAttributesListRequestModel.d.ts +0 -9
- package/dist/api/resources/dataAttributes/types/DataAttributesListRequestModel.js +0 -11
- package/dist/api/resources/dataAttributes/types/index.d.ts +0 -2
- package/dist/api/resources/dataAttributes/types/index.js +0 -18
- package/dist/api/resources/dataEvents/index.d.ts +0 -1
- package/dist/api/resources/dataEvents/index.js +0 -17
- package/dist/api/resources/dataEvents/types/DataEvent.d.ts +0 -24
- package/dist/api/resources/dataEvents/types/DataEvent.js +0 -5
- package/dist/api/resources/dataEvents/types/index.d.ts +0 -1
- package/dist/api/resources/dataEvents/types/index.js +0 -17
- package/dist/api/resources/dataExport/client/Client.d.ts +0 -114
- package/dist/api/resources/dataExport/client/Client.js +0 -321
- package/dist/api/resources/dataExport/client/index.d.ts +0 -1
- package/dist/api/resources/dataExport/client/index.js +0 -17
- package/dist/api/resources/dataExport/client/requests/CancelDataExportRequest.d.ts +0 -15
- package/dist/api/resources/dataExport/client/requests/CancelDataExportRequest.js +0 -5
- package/dist/api/resources/dataExport/client/requests/CreateDataExportRequest.d.ts +0 -16
- package/dist/api/resources/dataExport/client/requests/CreateDataExportRequest.js +0 -5
- package/dist/api/resources/dataExport/client/requests/DownloadDataExportRequest.d.ts +0 -15
- package/dist/api/resources/dataExport/client/requests/DownloadDataExportRequest.js +0 -5
- package/dist/api/resources/dataExport/client/requests/FindDataExportRequest.d.ts +0 -15
- package/dist/api/resources/dataExport/client/requests/FindDataExportRequest.js +0 -5
- package/dist/api/resources/dataExport/client/requests/index.d.ts +0 -4
- package/dist/api/resources/dataExport/index.d.ts +0 -2
- package/dist/api/resources/dataExport/index.js +0 -18
- package/dist/api/resources/dataExport/types/DataExport.d.ts +0 -30
- package/dist/api/resources/dataExport/types/DataExport.js +0 -17
- package/dist/api/resources/dataExport/types/index.d.ts +0 -1
- package/dist/api/resources/dataExport/types/index.js +0 -17
- package/dist/api/resources/events/client/Client.d.ts +0 -132
- package/dist/api/resources/events/client/Client.js +0 -331
- package/dist/api/resources/events/client/index.d.ts +0 -1
- package/dist/api/resources/events/client/index.js +0 -17
- package/dist/api/resources/events/client/requests/ListEventSummariesRequest.d.ts +0 -28
- package/dist/api/resources/events/client/requests/ListEventSummariesRequest.js +0 -5
- package/dist/api/resources/events/client/requests/ListEventsRequest.d.ts +0 -35
- package/dist/api/resources/events/client/requests/ListEventsRequest.js +0 -5
- package/dist/api/resources/events/client/requests/index.d.ts +0 -2
- package/dist/api/resources/events/index.d.ts +0 -1
- package/dist/api/resources/events/index.js +0 -17
- package/dist/api/resources/helpCenter/index.d.ts +0 -1
- package/dist/api/resources/helpCenter/index.js +0 -17
- package/dist/api/resources/helpCenter/types/Collection.d.ts +0 -34
- package/dist/api/resources/helpCenter/types/Collection.js +0 -5
- package/dist/api/resources/helpCenter/types/HelpCenter.d.ts +0 -22
- package/dist/api/resources/helpCenter/types/HelpCenter.js +0 -5
- package/dist/api/resources/helpCenter/types/HelpCenterList.d.ts +0 -13
- package/dist/api/resources/helpCenter/types/HelpCenterList.js +0 -5
- package/dist/api/resources/helpCenter/types/index.d.ts +0 -3
- package/dist/api/resources/helpCenter/types/index.js +0 -19
- package/dist/api/resources/helpCenters/client/Client.d.ts +0 -65
- package/dist/api/resources/helpCenters/client/Client.js +0 -223
- package/dist/api/resources/helpCenters/client/index.d.ts +0 -1
- package/dist/api/resources/helpCenters/client/index.js +0 -17
- package/dist/api/resources/helpCenters/client/requests/FindHelpCenterRequest.d.ts +0 -15
- package/dist/api/resources/helpCenters/client/requests/FindHelpCenterRequest.js +0 -5
- package/dist/api/resources/helpCenters/client/requests/ListHelpCentersRequest.d.ts +0 -17
- package/dist/api/resources/helpCenters/client/requests/ListHelpCentersRequest.js +0 -5
- package/dist/api/resources/helpCenters/client/requests/index.d.ts +0 -2
- package/dist/api/resources/helpCenters/index.d.ts +0 -2
- package/dist/api/resources/helpCenters/index.js +0 -18
- package/dist/api/resources/helpCenters/resources/collections/client/Client.d.ts +0 -119
- package/dist/api/resources/helpCenters/resources/collections/client/Client.js +0 -434
- package/dist/api/resources/helpCenters/resources/collections/client/index.d.ts +0 -1
- package/dist/api/resources/helpCenters/resources/collections/client/index.js +0 -17
- package/dist/api/resources/helpCenters/resources/collections/client/requests/CreateCollectionRequest.d.ts +0 -27
- package/dist/api/resources/helpCenters/resources/collections/client/requests/CreateCollectionRequest.js +0 -5
- package/dist/api/resources/helpCenters/resources/collections/client/requests/DeleteCollectionRequest.d.ts +0 -15
- package/dist/api/resources/helpCenters/resources/collections/client/requests/DeleteCollectionRequest.js +0 -5
- package/dist/api/resources/helpCenters/resources/collections/client/requests/FindCollectionRequest.d.ts +0 -15
- package/dist/api/resources/helpCenters/resources/collections/client/requests/FindCollectionRequest.js +0 -5
- package/dist/api/resources/helpCenters/resources/collections/client/requests/ListCollectionsRequest.d.ts +0 -17
- package/dist/api/resources/helpCenters/resources/collections/client/requests/ListCollectionsRequest.js +0 -5
- package/dist/api/resources/helpCenters/resources/collections/client/requests/UpdateCollectionRequest.d.ts +0 -30
- package/dist/api/resources/helpCenters/resources/collections/client/requests/UpdateCollectionRequest.js +0 -5
- package/dist/api/resources/helpCenters/resources/collections/client/requests/index.d.ts +0 -5
- package/dist/api/resources/helpCenters/resources/collections/index.d.ts +0 -1
- package/dist/api/resources/helpCenters/resources/collections/index.js +0 -17
- package/dist/api/resources/helpCenters/resources/index.d.ts +0 -2
- package/dist/api/resources/helpCenters/resources/index.js +0 -41
- package/dist/api/resources/index.d.ts +0 -61
- package/dist/api/resources/index.js +0 -100
- package/dist/api/resources/messages/client/Client.d.ts +0 -130
- package/dist/api/resources/messages/client/Client.js +0 -223
- package/dist/api/resources/messages/index.d.ts +0 -2
- package/dist/api/resources/messages/index.js +0 -18
- package/dist/api/resources/messages/types/Message.d.ts +0 -34
- package/dist/api/resources/messages/types/Message.js +0 -15
- package/dist/api/resources/messages/types/index.d.ts +0 -1
- package/dist/api/resources/messages/types/index.js +0 -17
- package/dist/api/resources/news/client/Client.d.ts +0 -26
- package/dist/api/resources/news/client/Client.js +0 -22
- package/dist/api/resources/news/index.d.ts +0 -3
- package/dist/api/resources/news/index.js +0 -19
- package/dist/api/resources/news/resources/feeds/client/Client.d.ts +0 -76
- package/dist/api/resources/news/resources/feeds/client/Client.js +0 -256
- package/dist/api/resources/news/resources/feeds/client/index.d.ts +0 -1
- package/dist/api/resources/news/resources/feeds/client/index.js +0 -17
- package/dist/api/resources/news/resources/feeds/client/requests/FindNewsFeedRequest.d.ts +0 -15
- package/dist/api/resources/news/resources/feeds/client/requests/FindNewsFeedRequest.js +0 -5
- package/dist/api/resources/news/resources/feeds/client/requests/ListNewsFeedItemsRequest.d.ts +0 -15
- package/dist/api/resources/news/resources/feeds/client/requests/ListNewsFeedItemsRequest.js +0 -5
- package/dist/api/resources/news/resources/feeds/client/requests/index.d.ts +0 -2
- package/dist/api/resources/news/resources/feeds/index.d.ts +0 -1
- package/dist/api/resources/news/resources/feeds/index.js +0 -17
- package/dist/api/resources/news/resources/index.d.ts +0 -4
- package/dist/api/resources/news/resources/index.js +0 -43
- package/dist/api/resources/news/resources/items/client/Client.d.ts +0 -134
- package/dist/api/resources/news/resources/items/client/Client.js +0 -415
- package/dist/api/resources/news/resources/items/client/index.d.ts +0 -1
- package/dist/api/resources/news/resources/items/client/index.js +0 -17
- package/dist/api/resources/news/resources/items/client/requests/DeleteNewsItemRequest.d.ts +0 -15
- package/dist/api/resources/news/resources/items/client/requests/DeleteNewsItemRequest.js +0 -5
- package/dist/api/resources/news/resources/items/client/requests/FindNewsItemRequest.d.ts +0 -15
- package/dist/api/resources/news/resources/items/client/requests/FindNewsItemRequest.js +0 -5
- package/dist/api/resources/news/resources/items/client/requests/UpdateNewsItemRequest.d.ts +0 -34
- package/dist/api/resources/news/resources/items/client/requests/UpdateNewsItemRequest.js +0 -5
- package/dist/api/resources/news/resources/items/client/requests/index.d.ts +0 -3
- package/dist/api/resources/news/resources/items/index.d.ts +0 -1
- package/dist/api/resources/news/resources/items/index.js +0 -17
- package/dist/api/resources/news/types/NewsItem.d.ts +0 -47
- package/dist/api/resources/news/types/NewsItem.js +0 -13
- package/dist/api/resources/news/types/Newsfeed.d.ts +0 -20
- package/dist/api/resources/news/types/Newsfeed.js +0 -5
- package/dist/api/resources/news/types/NewsfeedAssignment.d.ts +0 -12
- package/dist/api/resources/news/types/NewsfeedAssignment.js +0 -5
- package/dist/api/resources/news/types/index.d.ts +0 -3
- package/dist/api/resources/news/types/index.js +0 -19
- package/dist/api/resources/notes/client/Client.d.ts +0 -84
- package/dist/api/resources/notes/client/Client.js +0 -299
- package/dist/api/resources/notes/client/index.d.ts +0 -1
- package/dist/api/resources/notes/client/index.js +0 -17
- package/dist/api/resources/notes/client/requests/CreateContactNoteRequest.d.ts +0 -35
- package/dist/api/resources/notes/client/requests/CreateContactNoteRequest.js +0 -5
- package/dist/api/resources/notes/client/requests/FindNoteRequest.d.ts +0 -15
- package/dist/api/resources/notes/client/requests/FindNoteRequest.js +0 -5
- package/dist/api/resources/notes/client/requests/ListContactNotesRequest.d.ts +0 -23
- package/dist/api/resources/notes/client/requests/ListContactNotesRequest.js +0 -5
- package/dist/api/resources/notes/client/requests/index.d.ts +0 -3
- package/dist/api/resources/notes/index.d.ts +0 -2
- package/dist/api/resources/notes/index.js +0 -18
- package/dist/api/resources/notes/types/Note.d.ts +0 -32
- package/dist/api/resources/notes/types/Note.js +0 -5
- package/dist/api/resources/notes/types/index.d.ts +0 -1
- package/dist/api/resources/notes/types/index.js +0 -17
- package/dist/api/resources/phoneCallRedirects/client/Client.d.ts +0 -67
- package/dist/api/resources/phoneCallRedirects/client/Client.js +0 -158
- package/dist/api/resources/phoneCallRedirects/client/index.d.ts +0 -1
- package/dist/api/resources/phoneCallRedirects/client/index.js +0 -17
- package/dist/api/resources/phoneCallRedirects/client/requests/CreatePhoneCallRedirectRequest.d.ts +0 -46
- package/dist/api/resources/phoneCallRedirects/client/requests/CreatePhoneCallRedirectRequest.js +0 -5
- package/dist/api/resources/phoneCallRedirects/client/requests/index.d.ts +0 -1
- package/dist/api/resources/phoneCallRedirects/index.d.ts +0 -1
- package/dist/api/resources/phoneCallRedirects/index.js +0 -17
- package/dist/api/resources/segments/client/Client.d.ts +0 -66
- package/dist/api/resources/segments/client/Client.js +0 -207
- package/dist/api/resources/segments/client/index.d.ts +0 -1
- package/dist/api/resources/segments/client/index.js +0 -17
- package/dist/api/resources/segments/client/requests/FindSegmentRequest.d.ts +0 -15
- package/dist/api/resources/segments/client/requests/FindSegmentRequest.js +0 -5
- package/dist/api/resources/segments/client/requests/ListSegmentsRequest.d.ts +0 -13
- package/dist/api/resources/segments/client/requests/ListSegmentsRequest.js +0 -5
- package/dist/api/resources/segments/client/requests/index.d.ts +0 -2
- package/dist/api/resources/segments/index.d.ts +0 -2
- package/dist/api/resources/segments/index.js +0 -18
- package/dist/api/resources/segments/types/Segment.d.ts +0 -32
- package/dist/api/resources/segments/types/Segment.js +0 -13
- package/dist/api/resources/segments/types/index.d.ts +0 -1
- package/dist/api/resources/segments/types/index.js +0 -17
- package/dist/api/resources/subscriptionTypes/client/Client.d.ts +0 -49
- package/dist/api/resources/subscriptionTypes/client/Client.js +0 -135
- package/dist/api/resources/subscriptionTypes/client/index.js +0 -2
- package/dist/api/resources/subscriptionTypes/index.d.ts +0 -2
- package/dist/api/resources/subscriptionTypes/index.js +0 -18
- package/dist/api/resources/subscriptionTypes/types/SubscriptionType.d.ts +0 -49
- package/dist/api/resources/subscriptionTypes/types/SubscriptionType.js +0 -25
- package/dist/api/resources/subscriptionTypes/types/index.d.ts +0 -1
- package/dist/api/resources/subscriptionTypes/types/index.js +0 -17
- package/dist/api/resources/tags/client/Client.d.ts +0 -245
- package/dist/api/resources/tags/client/Client.js +0 -792
- package/dist/api/resources/tags/client/index.d.ts +0 -1
- package/dist/api/resources/tags/client/index.js +0 -17
- package/dist/api/resources/tags/client/requests/DeleteTagRequest.d.ts +0 -15
- package/dist/api/resources/tags/client/requests/DeleteTagRequest.js +0 -5
- package/dist/api/resources/tags/client/requests/FindTagRequest.d.ts +0 -15
- package/dist/api/resources/tags/client/requests/FindTagRequest.js +0 -5
- package/dist/api/resources/tags/client/requests/TagContactRequest.d.ts +0 -30
- package/dist/api/resources/tags/client/requests/TagContactRequest.js +0 -5
- package/dist/api/resources/tags/client/requests/TagConversationRequest.d.ts +0 -28
- package/dist/api/resources/tags/client/requests/TagConversationRequest.js +0 -5
- package/dist/api/resources/tags/client/requests/TagTicketRequest.d.ts +0 -28
- package/dist/api/resources/tags/client/requests/TagTicketRequest.js +0 -5
- package/dist/api/resources/tags/client/requests/UntagContactRequest.d.ts +0 -20
- package/dist/api/resources/tags/client/requests/UntagContactRequest.js +0 -5
- package/dist/api/resources/tags/client/requests/UntagConversationRequest.d.ts +0 -37
- package/dist/api/resources/tags/client/requests/UntagConversationRequest.js +0 -5
- package/dist/api/resources/tags/client/requests/UntagTicketRequest.d.ts +0 -37
- package/dist/api/resources/tags/client/requests/UntagTicketRequest.js +0 -5
- package/dist/api/resources/tags/client/requests/index.d.ts +0 -8
- package/dist/api/resources/tags/client/requests/index.js +0 -2
- package/dist/api/resources/tags/index.d.ts +0 -2
- package/dist/api/resources/tags/index.js +0 -18
- package/dist/api/resources/tags/types/Tag.d.ts +0 -18
- package/dist/api/resources/tags/types/Tag.js +0 -5
- package/dist/api/resources/tags/types/TagsCreateRequestBody.d.ts +0 -5
- package/dist/api/resources/tags/types/TagsCreateRequestBody.js +0 -5
- package/dist/api/resources/tags/types/index.d.ts +0 -2
- package/dist/api/resources/tags/types/index.js +0 -18
- package/dist/api/resources/teams/client/Client.d.ts +0 -65
- package/dist/api/resources/teams/client/Client.js +0 -200
- package/dist/api/resources/teams/client/index.d.ts +0 -1
- package/dist/api/resources/teams/client/index.js +0 -17
- package/dist/api/resources/teams/client/requests/FindTeamRequest.d.ts +0 -15
- package/dist/api/resources/teams/client/requests/FindTeamRequest.js +0 -5
- package/dist/api/resources/teams/client/requests/index.d.ts +0 -1
- package/dist/api/resources/teams/client/requests/index.js +0 -2
- package/dist/api/resources/teams/index.d.ts +0 -2
- package/dist/api/resources/teams/index.js +0 -18
- package/dist/api/resources/teams/types/Team.d.ts +0 -18
- package/dist/api/resources/teams/types/Team.js +0 -5
- package/dist/api/resources/teams/types/index.d.ts +0 -1
- package/dist/api/resources/teams/types/index.js +0 -17
- package/dist/api/resources/ticketTypes/client/Client.d.ts +0 -110
- package/dist/api/resources/ticketTypes/client/Client.js +0 -351
- package/dist/api/resources/ticketTypes/client/index.d.ts +0 -1
- package/dist/api/resources/ticketTypes/client/index.js +0 -17
- package/dist/api/resources/ticketTypes/client/requests/CreateTicketTypeRequest.d.ts +0 -35
- package/dist/api/resources/ticketTypes/client/requests/CreateTicketTypeRequest.js +0 -14
- package/dist/api/resources/ticketTypes/client/requests/FindTicketTypeRequest.d.ts +0 -15
- package/dist/api/resources/ticketTypes/client/requests/FindTicketTypeRequest.js +0 -5
- package/dist/api/resources/ticketTypes/client/requests/UpdateTicketTypeRequest.d.ts +0 -39
- package/dist/api/resources/ticketTypes/client/requests/UpdateTicketTypeRequest.js +0 -14
- package/dist/api/resources/ticketTypes/client/requests/index.d.ts +0 -3
- package/dist/api/resources/ticketTypes/client/requests/index.js +0 -2
- package/dist/api/resources/ticketTypes/index.d.ts +0 -2
- package/dist/api/resources/ticketTypes/index.js +0 -18
- package/dist/api/resources/ticketTypes/resources/attributes/client/Client.d.ts +0 -70
- package/dist/api/resources/ticketTypes/resources/attributes/client/Client.js +0 -217
- package/dist/api/resources/ticketTypes/resources/attributes/client/index.d.ts +0 -1
- package/dist/api/resources/ticketTypes/resources/attributes/client/index.js +0 -17
- package/dist/api/resources/ticketTypes/resources/attributes/client/requests/CreateTicketTypeAttributeRequest.d.ts +0 -54
- package/dist/api/resources/ticketTypes/resources/attributes/client/requests/CreateTicketTypeAttributeRequest.js +0 -18
- package/dist/api/resources/ticketTypes/resources/attributes/client/requests/UpdateTicketTypeAttributeRequest.d.ts +0 -41
- package/dist/api/resources/ticketTypes/resources/attributes/client/requests/UpdateTicketTypeAttributeRequest.js +0 -5
- package/dist/api/resources/ticketTypes/resources/attributes/client/requests/index.d.ts +0 -2
- package/dist/api/resources/ticketTypes/resources/attributes/client/requests/index.js +0 -2
- package/dist/api/resources/ticketTypes/resources/attributes/index.d.ts +0 -1
- package/dist/api/resources/ticketTypes/resources/attributes/index.js +0 -17
- package/dist/api/resources/ticketTypes/resources/index.d.ts +0 -2
- package/dist/api/resources/ticketTypes/resources/index.js +0 -41
- package/dist/api/resources/tickets/client/Client.d.ts +0 -273
- package/dist/api/resources/tickets/client/Client.js +0 -573
- package/dist/api/resources/tickets/client/index.d.ts +0 -1
- package/dist/api/resources/tickets/client/index.js +0 -17
- package/dist/api/resources/tickets/client/requests/FindTicketRequest.d.ts +0 -15
- package/dist/api/resources/tickets/client/requests/FindTicketRequest.js +0 -5
- package/dist/api/resources/tickets/client/requests/ReplyToTicketRequest.d.ts +0 -81
- package/dist/api/resources/tickets/client/requests/ReplyToTicketRequest.js +0 -5
- package/dist/api/resources/tickets/client/requests/UpdateTicketRequest.d.ts +0 -82
- package/dist/api/resources/tickets/client/requests/UpdateTicketRequest.js +0 -14
- package/dist/api/resources/tickets/client/requests/index.d.ts +0 -3
- package/dist/api/resources/tickets/client/requests/index.js +0 -2
- package/dist/api/resources/tickets/index.d.ts +0 -2
- package/dist/api/resources/tickets/index.js +0 -18
- package/dist/api/resources/tickets/types/Ticket.d.ts +0 -63
- package/dist/api/resources/tickets/types/Ticket.js +0 -20
- package/dist/api/resources/tickets/types/TicketContacts.d.ts +0 -13
- package/dist/api/resources/tickets/types/TicketContacts.js +0 -5
- package/dist/api/resources/tickets/types/TicketPart.d.ts +0 -56
- package/dist/api/resources/tickets/types/TicketPart.js +0 -21
- package/dist/api/resources/tickets/types/TicketType.d.ts +0 -41
- package/dist/api/resources/tickets/types/TicketType.js +0 -14
- package/dist/api/resources/tickets/types/TicketsReplyRequestBody.d.ts +0 -5
- package/dist/api/resources/tickets/types/TicketsReplyRequestBody.js +0 -5
- package/dist/api/resources/tickets/types/index.d.ts +0 -5
- package/dist/api/resources/tickets/types/index.js +0 -21
- package/dist/api/resources/unstable/client/Client.d.ts +0 -104
- package/dist/api/resources/unstable/client/Client.js +0 -152
- package/dist/api/resources/unstable/client/index.js +0 -2
- package/dist/api/resources/unstable/errors/BadRequestError.d.ts +0 -8
- package/dist/api/resources/unstable/errors/BadRequestError.js +0 -52
- package/dist/api/resources/unstable/errors/ForbiddenError.d.ts +0 -9
- package/dist/api/resources/unstable/errors/ForbiddenError.js +0 -52
- package/dist/api/resources/unstable/errors/InternalServerError.d.ts +0 -9
- package/dist/api/resources/unstable/errors/InternalServerError.js +0 -52
- package/dist/api/resources/unstable/errors/NotFoundError.d.ts +0 -8
- package/dist/api/resources/unstable/errors/NotFoundError.js +0 -52
- package/dist/api/resources/unstable/errors/TooManyRequestsError.d.ts +0 -9
- package/dist/api/resources/unstable/errors/TooManyRequestsError.js +0 -52
- package/dist/api/resources/unstable/errors/UnauthorizedError.d.ts +0 -9
- package/dist/api/resources/unstable/errors/UnauthorizedError.js +0 -52
- package/dist/api/resources/unstable/errors/UnprocessableEntityError.d.ts +0 -8
- package/dist/api/resources/unstable/errors/UnprocessableEntityError.js +0 -52
- package/dist/api/resources/unstable/errors/index.d.ts +0 -7
- package/dist/api/resources/unstable/errors/index.js +0 -23
- package/dist/api/resources/unstable/index.d.ts +0 -4
- package/dist/api/resources/unstable/index.js +0 -20
- package/dist/api/resources/unstable/resources/admins/client/Client.d.ts +0 -123
- package/dist/api/resources/unstable/resources/admins/client/Client.js +0 -418
- package/dist/api/resources/unstable/resources/admins/client/index.d.ts +0 -1
- package/dist/api/resources/unstable/resources/admins/client/index.js +0 -17
- package/dist/api/resources/unstable/resources/admins/client/requests/ListActivityLogsRequest.d.ts +0 -20
- package/dist/api/resources/unstable/resources/admins/client/requests/ListActivityLogsRequest.js +0 -5
- package/dist/api/resources/unstable/resources/admins/client/requests/RetrieveAdminRequest.d.ts +0 -15
- package/dist/api/resources/unstable/resources/admins/client/requests/RetrieveAdminRequest.js +0 -5
- package/dist/api/resources/unstable/resources/admins/client/requests/SetAwayAdminRequest.d.ts +0 -38
- package/dist/api/resources/unstable/resources/admins/client/requests/SetAwayAdminRequest.js +0 -5
- package/dist/api/resources/unstable/resources/admins/client/requests/index.d.ts +0 -3
- package/dist/api/resources/unstable/resources/admins/client/requests/index.js +0 -2
- package/dist/api/resources/unstable/resources/admins/index.d.ts +0 -2
- package/dist/api/resources/unstable/resources/admins/index.js +0 -18
- package/dist/api/resources/unstable/resources/admins/types/Admin.d.ts +0 -32
- package/dist/api/resources/unstable/resources/admins/types/Admin.js +0 -5
- package/dist/api/resources/unstable/resources/admins/types/index.d.ts +0 -1
- package/dist/api/resources/unstable/resources/admins/types/index.js +0 -17
- package/dist/api/resources/unstable/resources/aiAgent/index.d.ts +0 -1
- package/dist/api/resources/unstable/resources/aiAgent/index.js +0 -17
- package/dist/api/resources/unstable/resources/aiAgent/types/AiAgent.d.ts +0 -35
- package/dist/api/resources/unstable/resources/aiAgent/types/AiAgent.js +0 -16
- package/dist/api/resources/unstable/resources/aiAgent/types/index.d.ts +0 -1
- package/dist/api/resources/unstable/resources/aiAgent/types/index.js +0 -17
- package/dist/api/resources/unstable/resources/aiContent/client/Client.d.ts +0 -202
- package/dist/api/resources/unstable/resources/aiContent/client/Client.js +0 -735
- package/dist/api/resources/unstable/resources/aiContent/client/index.d.ts +0 -1
- package/dist/api/resources/unstable/resources/aiContent/client/index.js +0 -17
- package/dist/api/resources/unstable/resources/aiContent/client/requests/CreateContentImportSourceRequest.d.ts +0 -25
- package/dist/api/resources/unstable/resources/aiContent/client/requests/CreateContentImportSourceRequest.js +0 -13
- package/dist/api/resources/unstable/resources/aiContent/client/requests/CreateExternalPageRequest.d.ts +0 -29
- package/dist/api/resources/unstable/resources/aiContent/client/requests/CreateExternalPageRequest.js +0 -5
- package/dist/api/resources/unstable/resources/aiContent/client/requests/DeleteContentImportSourceRequest.d.ts +0 -15
- package/dist/api/resources/unstable/resources/aiContent/client/requests/DeleteContentImportSourceRequest.js +0 -5
- package/dist/api/resources/unstable/resources/aiContent/client/requests/DeleteExternalPageRequest.d.ts +0 -15
- package/dist/api/resources/unstable/resources/aiContent/client/requests/DeleteExternalPageRequest.js +0 -5
- package/dist/api/resources/unstable/resources/aiContent/client/requests/GetContentImportSourceRequest.d.ts +0 -15
- package/dist/api/resources/unstable/resources/aiContent/client/requests/GetContentImportSourceRequest.js +0 -5
- package/dist/api/resources/unstable/resources/aiContent/client/requests/GetExternalPageRequest.d.ts +0 -15
- package/dist/api/resources/unstable/resources/aiContent/client/requests/GetExternalPageRequest.js +0 -5
- package/dist/api/resources/unstable/resources/aiContent/client/requests/UpdateContentImportSourceRequest.d.ts +0 -42
- package/dist/api/resources/unstable/resources/aiContent/client/requests/UpdateContentImportSourceRequest.js +0 -18
- package/dist/api/resources/unstable/resources/aiContent/client/requests/UpdateExternalPageRequest.d.ts +0 -32
- package/dist/api/resources/unstable/resources/aiContent/client/requests/UpdateExternalPageRequest.js +0 -5
- package/dist/api/resources/unstable/resources/aiContent/client/requests/index.d.ts +0 -8
- package/dist/api/resources/unstable/resources/aiContent/client/requests/index.js +0 -2
- package/dist/api/resources/unstable/resources/aiContent/index.d.ts +0 -2
- package/dist/api/resources/unstable/resources/aiContent/index.js +0 -18
- package/dist/api/resources/unstable/resources/aiContent/types/ContentImportSource.d.ts +0 -43
- package/dist/api/resources/unstable/resources/aiContent/types/ContentImportSource.js +0 -18
- package/dist/api/resources/unstable/resources/aiContent/types/ContentImportSourcesList.d.ts +0 -16
- package/dist/api/resources/unstable/resources/aiContent/types/ContentImportSourcesList.js +0 -5
- package/dist/api/resources/unstable/resources/aiContent/types/ExternalPage.d.ts +0 -36
- package/dist/api/resources/unstable/resources/aiContent/types/ExternalPage.js +0 -5
- package/dist/api/resources/unstable/resources/aiContent/types/ExternalPagesList.d.ts +0 -16
- package/dist/api/resources/unstable/resources/aiContent/types/ExternalPagesList.js +0 -5
- package/dist/api/resources/unstable/resources/aiContent/types/index.d.ts +0 -4
- package/dist/api/resources/unstable/resources/aiContent/types/index.js +0 -20
- package/dist/api/resources/unstable/resources/aiContentSource/index.d.ts +0 -1
- package/dist/api/resources/unstable/resources/aiContentSource/index.js +0 -17
- package/dist/api/resources/unstable/resources/aiContentSource/types/ContentSource.d.ts +0 -29
- package/dist/api/resources/unstable/resources/aiContentSource/types/ContentSource.js +0 -16
- package/dist/api/resources/unstable/resources/aiContentSource/types/index.d.ts +0 -1
- package/dist/api/resources/unstable/resources/aiContentSource/types/index.js +0 -17
- package/dist/api/resources/unstable/resources/articles/client/Client.d.ts +0 -117
- package/dist/api/resources/unstable/resources/articles/client/Client.js +0 -417
- package/dist/api/resources/unstable/resources/articles/client/index.d.ts +0 -1
- package/dist/api/resources/unstable/resources/articles/client/index.js +0 -17
- package/dist/api/resources/unstable/resources/articles/client/requests/DeleteArticleRequest.d.ts +0 -15
- package/dist/api/resources/unstable/resources/articles/client/requests/DeleteArticleRequest.js +0 -5
- package/dist/api/resources/unstable/resources/articles/client/requests/RetrieveArticleRequest.d.ts +0 -15
- package/dist/api/resources/unstable/resources/articles/client/requests/RetrieveArticleRequest.js +0 -5
- package/dist/api/resources/unstable/resources/articles/client/requests/SearchArticlesRequest.d.ts +0 -28
- package/dist/api/resources/unstable/resources/articles/client/requests/SearchArticlesRequest.js +0 -5
- package/dist/api/resources/unstable/resources/articles/client/requests/index.d.ts +0 -3
- package/dist/api/resources/unstable/resources/articles/client/requests/index.js +0 -2
- package/dist/api/resources/unstable/resources/articles/index.d.ts +0 -2
- package/dist/api/resources/unstable/resources/articles/index.js +0 -18
- package/dist/api/resources/unstable/resources/articles/types/Article.d.ts +0 -10
- package/dist/api/resources/unstable/resources/articles/types/Article.js +0 -5
- package/dist/api/resources/unstable/resources/articles/types/ArticleListItem.d.ts +0 -50
- package/dist/api/resources/unstable/resources/articles/types/ArticleListItem.js +0 -13
- package/dist/api/resources/unstable/resources/articles/types/ArticleSearchHighlights.d.ts +0 -60
- package/dist/api/resources/unstable/resources/articles/types/ArticleSearchHighlights.js +0 -29
- package/dist/api/resources/unstable/resources/articles/types/ArticleSearchResponse.d.ts +0 -27
- package/dist/api/resources/unstable/resources/articles/types/ArticleSearchResponse.js +0 -5
- package/dist/api/resources/unstable/resources/articles/types/index.d.ts +0 -4
- package/dist/api/resources/unstable/resources/articles/types/index.js +0 -20
- package/dist/api/resources/unstable/resources/awayStatusReasons/client/Client.d.ts +0 -49
- package/dist/api/resources/unstable/resources/awayStatusReasons/client/Client.js +0 -135
- package/dist/api/resources/unstable/resources/awayStatusReasons/client/index.js +0 -2
- package/dist/api/resources/unstable/resources/awayStatusReasons/index.d.ts +0 -1
- package/dist/api/resources/unstable/resources/awayStatusReasons/index.js +0 -17
- package/dist/api/resources/unstable/resources/companies/client/Client.d.ts +0 -271
- package/dist/api/resources/unstable/resources/companies/client/Client.js +0 -908
- package/dist/api/resources/unstable/resources/companies/client/index.d.ts +0 -1
- package/dist/api/resources/unstable/resources/companies/client/index.js +0 -17
- package/dist/api/resources/unstable/resources/companies/client/requests/AttachContactToACompanyRequest.d.ts +0 -30
- package/dist/api/resources/unstable/resources/companies/client/requests/AttachContactToACompanyRequest.js +0 -5
- package/dist/api/resources/unstable/resources/companies/client/requests/DeleteCompanyRequest.d.ts +0 -15
- package/dist/api/resources/unstable/resources/companies/client/requests/DeleteCompanyRequest.js +0 -5
- package/dist/api/resources/unstable/resources/companies/client/requests/DetachContactFromACompanyRequest.d.ts +0 -20
- package/dist/api/resources/unstable/resources/companies/client/requests/DetachContactFromACompanyRequest.js +0 -5
- package/dist/api/resources/unstable/resources/companies/client/requests/ListAllCompaniesRequest.d.ts +0 -23
- package/dist/api/resources/unstable/resources/companies/client/requests/ListAllCompaniesRequest.js +0 -5
- package/dist/api/resources/unstable/resources/companies/client/requests/ListAttachedContactsRequest.d.ts +0 -15
- package/dist/api/resources/unstable/resources/companies/client/requests/ListAttachedContactsRequest.js +0 -5
- package/dist/api/resources/unstable/resources/companies/client/requests/ListAttachedSegmentsForCompaniesRequest.d.ts +0 -15
- package/dist/api/resources/unstable/resources/companies/client/requests/ListAttachedSegmentsForCompaniesRequest.js +0 -5
- package/dist/api/resources/unstable/resources/companies/client/requests/RetrieveACompanyByIdRequest.d.ts +0 -15
- package/dist/api/resources/unstable/resources/companies/client/requests/RetrieveACompanyByIdRequest.js +0 -5
- package/dist/api/resources/unstable/resources/companies/client/requests/RetrieveCompanyRequest.d.ts +0 -38
- package/dist/api/resources/unstable/resources/companies/client/requests/RetrieveCompanyRequest.js +0 -5
- package/dist/api/resources/unstable/resources/companies/client/requests/ScrollOverAllCompaniesRequest.d.ts +0 -13
- package/dist/api/resources/unstable/resources/companies/client/requests/ScrollOverAllCompaniesRequest.js +0 -5
- package/dist/api/resources/unstable/resources/companies/client/requests/UpdateCompanyRequest.d.ts +0 -15
- package/dist/api/resources/unstable/resources/companies/client/requests/UpdateCompanyRequest.js +0 -5
- package/dist/api/resources/unstable/resources/companies/client/requests/index.d.ts +0 -10
- package/dist/api/resources/unstable/resources/companies/client/requests/index.js +0 -2
- package/dist/api/resources/unstable/resources/companies/index.d.ts +0 -2
- package/dist/api/resources/unstable/resources/companies/index.js +0 -18
- package/dist/api/resources/unstable/resources/companies/types/Company.d.ts +0 -72
- package/dist/api/resources/unstable/resources/companies/types/Company.js +0 -5
- package/dist/api/resources/unstable/resources/companies/types/index.d.ts +0 -1
- package/dist/api/resources/unstable/resources/companies/types/index.js +0 -17
- package/dist/api/resources/unstable/resources/contacts/client/Client.d.ts +0 -395
- package/dist/api/resources/unstable/resources/contacts/client/Client.js +0 -1165
- package/dist/api/resources/unstable/resources/contacts/client/index.d.ts +0 -1
- package/dist/api/resources/unstable/resources/contacts/client/index.js +0 -17
- package/dist/api/resources/unstable/resources/contacts/client/requests/ArchiveContactRequest.d.ts +0 -15
- package/dist/api/resources/unstable/resources/contacts/client/requests/ArchiveContactRequest.js +0 -5
- package/dist/api/resources/unstable/resources/contacts/client/requests/BlockContactRequest.d.ts +0 -15
- package/dist/api/resources/unstable/resources/contacts/client/requests/BlockContactRequest.js +0 -5
- package/dist/api/resources/unstable/resources/contacts/client/requests/DeleteContactRequest.d.ts +0 -15
- package/dist/api/resources/unstable/resources/contacts/client/requests/DeleteContactRequest.js +0 -5
- package/dist/api/resources/unstable/resources/contacts/client/requests/ListCompaniesForAContactRequest.d.ts +0 -15
- package/dist/api/resources/unstable/resources/contacts/client/requests/ListCompaniesForAContactRequest.js +0 -5
- package/dist/api/resources/unstable/resources/contacts/client/requests/ListSegmentsForAContactRequest.d.ts +0 -15
- package/dist/api/resources/unstable/resources/contacts/client/requests/ListSegmentsForAContactRequest.js +0 -5
- package/dist/api/resources/unstable/resources/contacts/client/requests/ListSubscriptionsForAContactRequest.d.ts +0 -15
- package/dist/api/resources/unstable/resources/contacts/client/requests/ListSubscriptionsForAContactRequest.js +0 -5
- package/dist/api/resources/unstable/resources/contacts/client/requests/ListTagsForAContactRequest.d.ts +0 -15
- package/dist/api/resources/unstable/resources/contacts/client/requests/ListTagsForAContactRequest.js +0 -5
- package/dist/api/resources/unstable/resources/contacts/client/requests/MergeContactsRequest.d.ts +0 -16
- package/dist/api/resources/unstable/resources/contacts/client/requests/MergeContactsRequest.js +0 -5
- package/dist/api/resources/unstable/resources/contacts/client/requests/ShowContactByExternalIdRequest.d.ts +0 -15
- package/dist/api/resources/unstable/resources/contacts/client/requests/ShowContactByExternalIdRequest.js +0 -5
- package/dist/api/resources/unstable/resources/contacts/client/requests/ShowContactRequest.d.ts +0 -15
- package/dist/api/resources/unstable/resources/contacts/client/requests/ShowContactRequest.js +0 -5
- package/dist/api/resources/unstable/resources/contacts/client/requests/UnarchiveContactRequest.d.ts +0 -15
- package/dist/api/resources/unstable/resources/contacts/client/requests/UnarchiveContactRequest.js +0 -5
- package/dist/api/resources/unstable/resources/contacts/client/requests/UpdateContactRequest.d.ts +0 -49
- package/dist/api/resources/unstable/resources/contacts/client/requests/UpdateContactRequest.js +0 -5
- package/dist/api/resources/unstable/resources/contacts/client/requests/index.d.ts +0 -12
- package/dist/api/resources/unstable/resources/contacts/client/requests/index.js +0 -2
- package/dist/api/resources/unstable/resources/contacts/index.d.ts +0 -2
- package/dist/api/resources/unstable/resources/contacts/index.js +0 -18
- package/dist/api/resources/unstable/resources/contacts/types/Contact.d.ts +0 -103
- package/dist/api/resources/unstable/resources/contacts/types/Contact.js +0 -5
- package/dist/api/resources/unstable/resources/contacts/types/CreateContactResponse.d.ts +0 -8
- package/dist/api/resources/unstable/resources/contacts/types/CreateContactResponse.js +0 -5
- package/dist/api/resources/unstable/resources/contacts/types/MergeContactResponse.d.ts +0 -8
- package/dist/api/resources/unstable/resources/contacts/types/MergeContactResponse.js +0 -5
- package/dist/api/resources/unstable/resources/contacts/types/ShowContactByExternalIdResponse.d.ts +0 -8
- package/dist/api/resources/unstable/resources/contacts/types/ShowContactByExternalIdResponse.js +0 -5
- package/dist/api/resources/unstable/resources/contacts/types/ShowContactResponse.d.ts +0 -8
- package/dist/api/resources/unstable/resources/contacts/types/ShowContactResponse.js +0 -5
- package/dist/api/resources/unstable/resources/contacts/types/UpdateContactResponse.d.ts +0 -8
- package/dist/api/resources/unstable/resources/contacts/types/UpdateContactResponse.js +0 -5
- package/dist/api/resources/unstable/resources/contacts/types/index.d.ts +0 -6
- package/dist/api/resources/unstable/resources/contacts/types/index.js +0 -22
- package/dist/api/resources/unstable/resources/conversations/client/Client.d.ts +0 -545
- package/dist/api/resources/unstable/resources/conversations/client/Client.js +0 -1218
- package/dist/api/resources/unstable/resources/conversations/client/index.d.ts +0 -1
- package/dist/api/resources/unstable/resources/conversations/client/index.js +0 -17
- package/dist/api/resources/unstable/resources/conversations/client/requests/AttachContactToConversationRequest.d.ts +0 -44
- package/dist/api/resources/unstable/resources/conversations/client/requests/AttachContactToConversationRequest.js +0 -5
- package/dist/api/resources/unstable/resources/conversations/client/requests/ConvertConversationToTicketRequest.d.ts +0 -26
- package/dist/api/resources/unstable/resources/conversations/client/requests/ConvertConversationToTicketRequest.js +0 -5
- package/dist/api/resources/unstable/resources/conversations/client/requests/CreateConversationRequest.d.ts +0 -48
- package/dist/api/resources/unstable/resources/conversations/client/requests/CreateConversationRequest.js +0 -17
- package/dist/api/resources/unstable/resources/conversations/client/requests/DeleteConversationRequest.d.ts +0 -15
- package/dist/api/resources/unstable/resources/conversations/client/requests/DeleteConversationRequest.js +0 -5
- package/dist/api/resources/unstable/resources/conversations/client/requests/DetachContactFromConversationRequest.d.ts +0 -44
- package/dist/api/resources/unstable/resources/conversations/client/requests/DetachContactFromConversationRequest.js +0 -5
- package/dist/api/resources/unstable/resources/conversations/client/requests/ListConversationsRequest.d.ts +0 -17
- package/dist/api/resources/unstable/resources/conversations/client/requests/ListConversationsRequest.js +0 -5
- package/dist/api/resources/unstable/resources/conversations/client/requests/ManageConversationRequest.d.ts +0 -62
- package/dist/api/resources/unstable/resources/conversations/client/requests/ManageConversationRequest.js +0 -5
- package/dist/api/resources/unstable/resources/conversations/client/requests/ReplyConversationRequest.d.ts +0 -77
- package/dist/api/resources/unstable/resources/conversations/client/requests/ReplyConversationRequest.js +0 -5
- package/dist/api/resources/unstable/resources/conversations/client/requests/RetrieveConversationRequest.d.ts +0 -20
- package/dist/api/resources/unstable/resources/conversations/client/requests/RetrieveConversationRequest.js +0 -5
- package/dist/api/resources/unstable/resources/conversations/client/requests/UpdateConversationRequest.d.ts +0 -53
- package/dist/api/resources/unstable/resources/conversations/client/requests/UpdateConversationRequest.js +0 -5
- package/dist/api/resources/unstable/resources/conversations/client/requests/index.d.ts +0 -10
- package/dist/api/resources/unstable/resources/conversations/client/requests/index.js +0 -2
- package/dist/api/resources/unstable/resources/conversations/index.d.ts +0 -2
- package/dist/api/resources/unstable/resources/conversations/index.js +0 -18
- package/dist/api/resources/unstable/resources/conversations/types/Conversation.d.ts +0 -68
- package/dist/api/resources/unstable/resources/conversations/types/Conversation.js +0 -18
- package/dist/api/resources/unstable/resources/conversations/types/ManageConversationRequestBody.d.ts +0 -19
- package/dist/api/resources/unstable/resources/conversations/types/ManageConversationRequestBody.js +0 -5
- package/dist/api/resources/unstable/resources/conversations/types/index.d.ts +0 -2
- package/dist/api/resources/unstable/resources/conversations/types/index.js +0 -18
- package/dist/api/resources/unstable/resources/customChannelEvents/client/Client.d.ts +0 -144
- package/dist/api/resources/unstable/resources/customChannelEvents/client/Client.js +0 -408
- package/dist/api/resources/unstable/resources/customChannelEvents/client/index.d.ts +0 -1
- package/dist/api/resources/unstable/resources/customChannelEvents/client/index.js +0 -17
- package/dist/api/resources/unstable/resources/customChannelEvents/client/requests/NotifyAttributeCollectedRequest.d.ts +0 -24
- package/dist/api/resources/unstable/resources/customChannelEvents/client/requests/NotifyAttributeCollectedRequest.js +0 -5
- package/dist/api/resources/unstable/resources/customChannelEvents/client/requests/NotifyNewMessageRequest.d.ts +0 -22
- package/dist/api/resources/unstable/resources/customChannelEvents/client/requests/NotifyNewMessageRequest.js +0 -5
- package/dist/api/resources/unstable/resources/customChannelEvents/client/requests/NotifyQuickReplySelectedRequest.d.ts +0 -22
- package/dist/api/resources/unstable/resources/customChannelEvents/client/requests/NotifyQuickReplySelectedRequest.js +0 -5
- package/dist/api/resources/unstable/resources/customChannelEvents/client/requests/index.d.ts +0 -3
- package/dist/api/resources/unstable/resources/customChannelEvents/client/requests/index.js +0 -2
- package/dist/api/resources/unstable/resources/customChannelEvents/index.d.ts +0 -1
- package/dist/api/resources/unstable/resources/customChannelEvents/index.js +0 -17
- package/dist/api/resources/unstable/resources/customObjectInstances/client/Client.d.ts +0 -131
- package/dist/api/resources/unstable/resources/customObjectInstances/client/Client.js +0 -449
- package/dist/api/resources/unstable/resources/customObjectInstances/client/index.d.ts +0 -1
- package/dist/api/resources/unstable/resources/customObjectInstances/client/index.js +0 -17
- package/dist/api/resources/unstable/resources/customObjectInstances/client/requests/CreateOrUpdateCustomObjectInstanceRequest.d.ts +0 -30
- package/dist/api/resources/unstable/resources/customObjectInstances/client/requests/CreateOrUpdateCustomObjectInstanceRequest.js +0 -5
- package/dist/api/resources/unstable/resources/customObjectInstances/client/requests/DeleteCustomObjectInstancesByExternalIdRequest.d.ts +0 -20
- package/dist/api/resources/unstable/resources/customObjectInstances/client/requests/DeleteCustomObjectInstancesByExternalIdRequest.js +0 -5
- package/dist/api/resources/unstable/resources/customObjectInstances/client/requests/DeleteCustomObjectInstancesByIdRequest.d.ts +0 -17
- package/dist/api/resources/unstable/resources/customObjectInstances/client/requests/DeleteCustomObjectInstancesByIdRequest.js +0 -5
- package/dist/api/resources/unstable/resources/customObjectInstances/client/requests/GetCustomObjectInstancesByExternalIdRequest.d.ts +0 -17
- package/dist/api/resources/unstable/resources/customObjectInstances/client/requests/GetCustomObjectInstancesByExternalIdRequest.js +0 -5
- package/dist/api/resources/unstable/resources/customObjectInstances/client/requests/GetCustomObjectInstancesByIdRequest.d.ts +0 -20
- package/dist/api/resources/unstable/resources/customObjectInstances/client/requests/GetCustomObjectInstancesByIdRequest.js +0 -5
- package/dist/api/resources/unstable/resources/customObjectInstances/client/requests/index.d.ts +0 -5
- package/dist/api/resources/unstable/resources/customObjectInstances/client/requests/index.js +0 -2
- package/dist/api/resources/unstable/resources/customObjectInstances/index.d.ts +0 -2
- package/dist/api/resources/unstable/resources/customObjectInstances/index.js +0 -18
- package/dist/api/resources/unstable/resources/customObjectInstances/types/CustomObjectInstance.d.ts +0 -24
- package/dist/api/resources/unstable/resources/customObjectInstances/types/CustomObjectInstance.js +0 -5
- package/dist/api/resources/unstable/resources/customObjectInstances/types/index.d.ts +0 -1
- package/dist/api/resources/unstable/resources/customObjectInstances/types/index.js +0 -17
- package/dist/api/resources/unstable/resources/dataAttributes/client/Client.d.ts +0 -146
- package/dist/api/resources/unstable/resources/dataAttributes/client/Client.js +0 -355
- package/dist/api/resources/unstable/resources/dataAttributes/client/index.d.ts +0 -1
- package/dist/api/resources/unstable/resources/dataAttributes/client/index.js +0 -17
- package/dist/api/resources/unstable/resources/dataAttributes/client/requests/CreateDataAttributeRequest.d.ts +0 -84
- package/dist/api/resources/unstable/resources/dataAttributes/client/requests/CreateDataAttributeRequest.js +0 -21
- package/dist/api/resources/unstable/resources/dataAttributes/client/requests/LisDataAttributesRequest.d.ts +0 -18
- package/dist/api/resources/unstable/resources/dataAttributes/client/requests/LisDataAttributesRequest.js +0 -5
- package/dist/api/resources/unstable/resources/dataAttributes/client/requests/UpdateDataAttributeRequest.d.ts +0 -49
- package/dist/api/resources/unstable/resources/dataAttributes/client/requests/UpdateDataAttributeRequest.js +0 -5
- package/dist/api/resources/unstable/resources/dataAttributes/client/requests/index.d.ts +0 -3
- package/dist/api/resources/unstable/resources/dataAttributes/client/requests/index.js +0 -2
- package/dist/api/resources/unstable/resources/dataAttributes/index.d.ts +0 -2
- package/dist/api/resources/unstable/resources/dataAttributes/index.js +0 -18
- package/dist/api/resources/unstable/resources/dataAttributes/types/DataAttribute.d.ts +0 -63
- package/dist/api/resources/unstable/resources/dataAttributes/types/DataAttribute.js +0 -20
- package/dist/api/resources/unstable/resources/dataAttributes/types/LisDataAttributesRequestModel.d.ts +0 -9
- package/dist/api/resources/unstable/resources/dataAttributes/types/LisDataAttributesRequestModel.js +0 -11
- package/dist/api/resources/unstable/resources/dataAttributes/types/index.d.ts +0 -2
- package/dist/api/resources/unstable/resources/dataAttributes/types/index.js +0 -18
- package/dist/api/resources/unstable/resources/dataEvents/client/Client.d.ts +0 -136
- package/dist/api/resources/unstable/resources/dataEvents/client/Client.js +0 -325
- package/dist/api/resources/unstable/resources/dataEvents/client/index.d.ts +0 -1
- package/dist/api/resources/unstable/resources/dataEvents/client/index.js +0 -17
- package/dist/api/resources/unstable/resources/dataEvents/client/requests/CreateDataEventSummariesRequest.d.ts +0 -28
- package/dist/api/resources/unstable/resources/dataEvents/client/requests/CreateDataEventSummariesRequest.js +0 -5
- package/dist/api/resources/unstable/resources/dataEvents/client/requests/LisDataEventsRequest.d.ts +0 -24
- package/dist/api/resources/unstable/resources/dataEvents/client/requests/LisDataEventsRequest.js +0 -5
- package/dist/api/resources/unstable/resources/dataEvents/client/requests/index.d.ts +0 -2
- package/dist/api/resources/unstable/resources/dataEvents/client/requests/index.js +0 -2
- package/dist/api/resources/unstable/resources/dataEvents/index.d.ts +0 -2
- package/dist/api/resources/unstable/resources/dataEvents/index.js +0 -18
- package/dist/api/resources/unstable/resources/dataEvents/types/DataEvent.d.ts +0 -24
- package/dist/api/resources/unstable/resources/dataEvents/types/DataEvent.js +0 -5
- package/dist/api/resources/unstable/resources/dataEvents/types/LisDataEventsRequestFilter.d.ts +0 -10
- package/dist/api/resources/unstable/resources/dataEvents/types/LisDataEventsRequestFilter.js +0 -5
- package/dist/api/resources/unstable/resources/dataEvents/types/index.d.ts +0 -2
- package/dist/api/resources/unstable/resources/dataEvents/types/index.js +0 -18
- package/dist/api/resources/unstable/resources/dataExport/client/Client.d.ts +0 -114
- package/dist/api/resources/unstable/resources/dataExport/client/Client.js +0 -321
- package/dist/api/resources/unstable/resources/dataExport/client/index.d.ts +0 -1
- package/dist/api/resources/unstable/resources/dataExport/client/index.js +0 -17
- package/dist/api/resources/unstable/resources/dataExport/client/requests/CancelDataExportRequest.d.ts +0 -15
- package/dist/api/resources/unstable/resources/dataExport/client/requests/CancelDataExportRequest.js +0 -5
- package/dist/api/resources/unstable/resources/dataExport/client/requests/CreateDataExportsRequest.d.ts +0 -16
- package/dist/api/resources/unstable/resources/dataExport/client/requests/CreateDataExportsRequest.js +0 -5
- package/dist/api/resources/unstable/resources/dataExport/client/requests/DownloadDataExportRequest.d.ts +0 -15
- package/dist/api/resources/unstable/resources/dataExport/client/requests/DownloadDataExportRequest.js +0 -5
- package/dist/api/resources/unstable/resources/dataExport/client/requests/GetDataExportRequest.d.ts +0 -15
- package/dist/api/resources/unstable/resources/dataExport/client/requests/GetDataExportRequest.js +0 -5
- package/dist/api/resources/unstable/resources/dataExport/client/requests/index.d.ts +0 -4
- package/dist/api/resources/unstable/resources/dataExport/client/requests/index.js +0 -2
- package/dist/api/resources/unstable/resources/dataExport/index.d.ts +0 -2
- package/dist/api/resources/unstable/resources/dataExport/index.js +0 -18
- package/dist/api/resources/unstable/resources/dataExport/types/DataExport.d.ts +0 -30
- package/dist/api/resources/unstable/resources/dataExport/types/DataExport.js +0 -17
- package/dist/api/resources/unstable/resources/dataExport/types/index.d.ts +0 -1
- package/dist/api/resources/unstable/resources/dataExport/types/index.js +0 -17
- package/dist/api/resources/unstable/resources/export/client/Client.d.ts +0 -60
- package/dist/api/resources/unstable/resources/export/client/Client.js +0 -198
- package/dist/api/resources/unstable/resources/export/client/index.d.ts +0 -1
- package/dist/api/resources/unstable/resources/export/client/index.js +0 -17
- package/dist/api/resources/unstable/resources/export/client/requests/PostExportReportingDataEnqueueRequest.d.ts +0 -18
- package/dist/api/resources/unstable/resources/export/client/requests/PostExportReportingDataEnqueueRequest.js +0 -5
- package/dist/api/resources/unstable/resources/export/client/requests/index.d.ts +0 -1
- package/dist/api/resources/unstable/resources/export/client/requests/index.js +0 -2
- package/dist/api/resources/unstable/resources/export/index.d.ts +0 -2
- package/dist/api/resources/unstable/resources/export/index.js +0 -18
- package/dist/api/resources/unstable/resources/export/types/GetExportReportingDataGetDatasetsResponse.d.ts +0 -28
- package/dist/api/resources/unstable/resources/export/types/GetExportReportingDataGetDatasetsResponse.js +0 -5
- package/dist/api/resources/unstable/resources/export/types/PostExportReportingDataEnqueueResponse.d.ts +0 -9
- package/dist/api/resources/unstable/resources/export/types/PostExportReportingDataEnqueueResponse.js +0 -5
- package/dist/api/resources/unstable/resources/export/types/index.d.ts +0 -2
- package/dist/api/resources/unstable/resources/export/types/index.js +0 -18
- package/dist/api/resources/unstable/resources/helpCenter/client/Client.d.ts +0 -150
- package/dist/api/resources/unstable/resources/helpCenter/client/Client.js +0 -542
- package/dist/api/resources/unstable/resources/helpCenter/client/index.d.ts +0 -1
- package/dist/api/resources/unstable/resources/helpCenter/client/index.js +0 -17
- package/dist/api/resources/unstable/resources/helpCenter/client/requests/CreateCollectionRequest.d.ts +0 -27
- package/dist/api/resources/unstable/resources/helpCenter/client/requests/CreateCollectionRequest.js +0 -5
- package/dist/api/resources/unstable/resources/helpCenter/client/requests/DeleteCollectionRequest.d.ts +0 -15
- package/dist/api/resources/unstable/resources/helpCenter/client/requests/DeleteCollectionRequest.js +0 -5
- package/dist/api/resources/unstable/resources/helpCenter/client/requests/RetrieveCollectionRequest.d.ts +0 -15
- package/dist/api/resources/unstable/resources/helpCenter/client/requests/RetrieveCollectionRequest.js +0 -5
- package/dist/api/resources/unstable/resources/helpCenter/client/requests/RetrieveHelpCenterRequest.d.ts +0 -15
- package/dist/api/resources/unstable/resources/helpCenter/client/requests/RetrieveHelpCenterRequest.js +0 -5
- package/dist/api/resources/unstable/resources/helpCenter/client/requests/UpdateCollectionRequest.d.ts +0 -30
- package/dist/api/resources/unstable/resources/helpCenter/client/requests/UpdateCollectionRequest.js +0 -5
- package/dist/api/resources/unstable/resources/helpCenter/client/requests/index.d.ts +0 -5
- package/dist/api/resources/unstable/resources/helpCenter/client/requests/index.js +0 -2
- package/dist/api/resources/unstable/resources/helpCenter/index.d.ts +0 -2
- package/dist/api/resources/unstable/resources/helpCenter/index.js +0 -18
- package/dist/api/resources/unstable/resources/helpCenter/types/Collection.d.ts +0 -34
- package/dist/api/resources/unstable/resources/helpCenter/types/Collection.js +0 -5
- package/dist/api/resources/unstable/resources/helpCenter/types/HelpCenter.d.ts +0 -22
- package/dist/api/resources/unstable/resources/helpCenter/types/HelpCenter.js +0 -5
- package/dist/api/resources/unstable/resources/helpCenter/types/HelpCenterList.d.ts +0 -13
- package/dist/api/resources/unstable/resources/helpCenter/types/HelpCenterList.js +0 -5
- package/dist/api/resources/unstable/resources/helpCenter/types/index.d.ts +0 -3
- package/dist/api/resources/unstable/resources/helpCenter/types/index.js +0 -19
- package/dist/api/resources/unstable/resources/index.d.ts +0 -78
- package/dist/api/resources/unstable/resources/index.js +0 -117
- package/dist/api/resources/unstable/resources/jobs/client/Client.d.ts +0 -53
- package/dist/api/resources/unstable/resources/jobs/client/Client.js +0 -142
- package/dist/api/resources/unstable/resources/jobs/client/index.d.ts +0 -1
- package/dist/api/resources/unstable/resources/jobs/client/index.js +0 -17
- package/dist/api/resources/unstable/resources/jobs/client/requests/JobsStatusRequest.d.ts +0 -15
- package/dist/api/resources/unstable/resources/jobs/client/requests/JobsStatusRequest.js +0 -5
- package/dist/api/resources/unstable/resources/jobs/client/requests/index.d.ts +0 -1
- package/dist/api/resources/unstable/resources/jobs/client/requests/index.js +0 -2
- package/dist/api/resources/unstable/resources/jobs/index.d.ts +0 -2
- package/dist/api/resources/unstable/resources/jobs/index.js +0 -18
- package/dist/api/resources/unstable/resources/jobs/types/Jobs.d.ts +0 -33
- package/dist/api/resources/unstable/resources/jobs/types/Jobs.js +0 -14
- package/dist/api/resources/unstable/resources/jobs/types/index.d.ts +0 -1
- package/dist/api/resources/unstable/resources/jobs/types/index.js +0 -17
- package/dist/api/resources/unstable/resources/messages/client/Client.d.ts +0 -212
- package/dist/api/resources/unstable/resources/messages/client/Client.js +0 -370
- package/dist/api/resources/unstable/resources/messages/client/index.d.ts +0 -1
- package/dist/api/resources/unstable/resources/messages/client/index.js +0 -17
- package/dist/api/resources/unstable/resources/messages/client/requests/GetWhatsAppMessageStatusRequest.d.ts +0 -23
- package/dist/api/resources/unstable/resources/messages/client/requests/GetWhatsAppMessageStatusRequest.js +0 -5
- package/dist/api/resources/unstable/resources/messages/client/requests/index.d.ts +0 -1
- package/dist/api/resources/unstable/resources/messages/client/requests/index.js +0 -2
- package/dist/api/resources/unstable/resources/messages/index.d.ts +0 -2
- package/dist/api/resources/unstable/resources/messages/index.js +0 -18
- package/dist/api/resources/unstable/resources/messages/types/Message.d.ts +0 -35
- package/dist/api/resources/unstable/resources/messages/types/Message.js +0 -16
- package/dist/api/resources/unstable/resources/messages/types/index.d.ts +0 -1
- package/dist/api/resources/unstable/resources/messages/types/index.js +0 -17
- package/dist/api/resources/unstable/resources/news/client/Client.d.ts +0 -179
- package/dist/api/resources/unstable/resources/news/client/Client.js +0 -600
- package/dist/api/resources/unstable/resources/news/client/index.d.ts +0 -1
- package/dist/api/resources/unstable/resources/news/client/index.js +0 -17
- package/dist/api/resources/unstable/resources/news/client/requests/DeleteNewsItemRequest.d.ts +0 -15
- package/dist/api/resources/unstable/resources/news/client/requests/DeleteNewsItemRequest.js +0 -5
- package/dist/api/resources/unstable/resources/news/client/requests/ListLiveNewsfeedItemsRequest.d.ts +0 -15
- package/dist/api/resources/unstable/resources/news/client/requests/ListLiveNewsfeedItemsRequest.js +0 -5
- package/dist/api/resources/unstable/resources/news/client/requests/RetrieveNewsItemRequest.d.ts +0 -15
- package/dist/api/resources/unstable/resources/news/client/requests/RetrieveNewsItemRequest.js +0 -5
- package/dist/api/resources/unstable/resources/news/client/requests/RetrieveNewsfeedRequest.d.ts +0 -15
- package/dist/api/resources/unstable/resources/news/client/requests/RetrieveNewsfeedRequest.js +0 -5
- package/dist/api/resources/unstable/resources/news/client/requests/UpdateNewsItemRequest.d.ts +0 -34
- package/dist/api/resources/unstable/resources/news/client/requests/UpdateNewsItemRequest.js +0 -5
- package/dist/api/resources/unstable/resources/news/client/requests/index.d.ts +0 -5
- package/dist/api/resources/unstable/resources/news/client/requests/index.js +0 -2
- package/dist/api/resources/unstable/resources/news/index.d.ts +0 -2
- package/dist/api/resources/unstable/resources/news/index.js +0 -18
- package/dist/api/resources/unstable/resources/news/types/NewsItem.d.ts +0 -45
- package/dist/api/resources/unstable/resources/news/types/NewsItem.js +0 -13
- package/dist/api/resources/unstable/resources/news/types/Newsfeed.d.ts +0 -18
- package/dist/api/resources/unstable/resources/news/types/Newsfeed.js +0 -5
- package/dist/api/resources/unstable/resources/news/types/NewsfeedAssignment.d.ts +0 -12
- package/dist/api/resources/unstable/resources/news/types/NewsfeedAssignment.js +0 -5
- package/dist/api/resources/unstable/resources/news/types/index.d.ts +0 -3
- package/dist/api/resources/unstable/resources/news/types/index.js +0 -19
- package/dist/api/resources/unstable/resources/notes/client/Client.d.ts +0 -102
- package/dist/api/resources/unstable/resources/notes/client/Client.js +0 -297
- package/dist/api/resources/unstable/resources/notes/client/index.d.ts +0 -1
- package/dist/api/resources/unstable/resources/notes/client/index.js +0 -17
- package/dist/api/resources/unstable/resources/notes/client/requests/CreateNoteRequest.d.ts +0 -40
- package/dist/api/resources/unstable/resources/notes/client/requests/CreateNoteRequest.js +0 -5
- package/dist/api/resources/unstable/resources/notes/client/requests/ListNotesRequest.d.ts +0 -15
- package/dist/api/resources/unstable/resources/notes/client/requests/ListNotesRequest.js +0 -5
- package/dist/api/resources/unstable/resources/notes/client/requests/RetrieveNoteRequest.d.ts +0 -15
- package/dist/api/resources/unstable/resources/notes/client/requests/RetrieveNoteRequest.js +0 -5
- package/dist/api/resources/unstable/resources/notes/client/requests/index.d.ts +0 -3
- package/dist/api/resources/unstable/resources/notes/client/requests/index.js +0 -2
- package/dist/api/resources/unstable/resources/notes/index.d.ts +0 -2
- package/dist/api/resources/unstable/resources/notes/index.js +0 -18
- package/dist/api/resources/unstable/resources/notes/types/Note.d.ts +0 -32
- package/dist/api/resources/unstable/resources/notes/types/Note.js +0 -5
- package/dist/api/resources/unstable/resources/notes/types/index.d.ts +0 -1
- package/dist/api/resources/unstable/resources/notes/types/index.js +0 -17
- package/dist/api/resources/unstable/resources/segments/client/Client.d.ts +0 -66
- package/dist/api/resources/unstable/resources/segments/client/Client.js +0 -207
- package/dist/api/resources/unstable/resources/segments/client/index.d.ts +0 -1
- package/dist/api/resources/unstable/resources/segments/client/index.js +0 -17
- package/dist/api/resources/unstable/resources/segments/client/requests/ListSegmentsRequest.d.ts +0 -13
- package/dist/api/resources/unstable/resources/segments/client/requests/ListSegmentsRequest.js +0 -5
- package/dist/api/resources/unstable/resources/segments/client/requests/RetrieveSegmentRequest.d.ts +0 -15
- package/dist/api/resources/unstable/resources/segments/client/requests/RetrieveSegmentRequest.js +0 -5
- package/dist/api/resources/unstable/resources/segments/client/requests/index.d.ts +0 -2
- package/dist/api/resources/unstable/resources/segments/client/requests/index.js +0 -2
- package/dist/api/resources/unstable/resources/segments/index.d.ts +0 -2
- package/dist/api/resources/unstable/resources/segments/index.js +0 -18
- package/dist/api/resources/unstable/resources/segments/types/Segment.d.ts +0 -32
- package/dist/api/resources/unstable/resources/segments/types/Segment.js +0 -13
- package/dist/api/resources/unstable/resources/segments/types/index.d.ts +0 -1
- package/dist/api/resources/unstable/resources/segments/types/index.js +0 -17
- package/dist/api/resources/unstable/resources/subscriptionTypes/client/Client.d.ts +0 -97
- package/dist/api/resources/unstable/resources/subscriptionTypes/client/Client.js +0 -296
- package/dist/api/resources/unstable/resources/subscriptionTypes/client/index.d.ts +0 -1
- package/dist/api/resources/unstable/resources/subscriptionTypes/client/index.js +0 -17
- package/dist/api/resources/unstable/resources/subscriptionTypes/client/requests/AttachSubscriptionTypeToContactRequest.d.ts +0 -35
- package/dist/api/resources/unstable/resources/subscriptionTypes/client/requests/AttachSubscriptionTypeToContactRequest.js +0 -5
- package/dist/api/resources/unstable/resources/subscriptionTypes/client/requests/DetachSubscriptionTypeToContactRequest.d.ts +0 -20
- package/dist/api/resources/unstable/resources/subscriptionTypes/client/requests/DetachSubscriptionTypeToContactRequest.js +0 -5
- package/dist/api/resources/unstable/resources/subscriptionTypes/client/requests/index.d.ts +0 -2
- package/dist/api/resources/unstable/resources/subscriptionTypes/client/requests/index.js +0 -2
- package/dist/api/resources/unstable/resources/subscriptionTypes/index.d.ts +0 -2
- package/dist/api/resources/unstable/resources/subscriptionTypes/index.js +0 -18
- package/dist/api/resources/unstable/resources/subscriptionTypes/types/SubscriptionType.d.ts +0 -49
- package/dist/api/resources/unstable/resources/subscriptionTypes/types/SubscriptionType.js +0 -25
- package/dist/api/resources/unstable/resources/subscriptionTypes/types/index.d.ts +0 -1
- package/dist/api/resources/unstable/resources/subscriptionTypes/types/index.js +0 -17
- package/dist/api/resources/unstable/resources/switch/client/Client.d.ts +0 -57
- package/dist/api/resources/unstable/resources/switch/client/Client.js +0 -151
- package/dist/api/resources/unstable/resources/switch/client/index.js +0 -2
- package/dist/api/resources/unstable/resources/switch/index.d.ts +0 -1
- package/dist/api/resources/unstable/resources/switch/index.js +0 -17
- package/dist/api/resources/unstable/resources/tags/client/Client.d.ts +0 -245
- package/dist/api/resources/unstable/resources/tags/client/Client.js +0 -792
- package/dist/api/resources/unstable/resources/tags/client/index.d.ts +0 -1
- package/dist/api/resources/unstable/resources/tags/client/index.js +0 -17
- package/dist/api/resources/unstable/resources/tags/client/requests/AttachTagToContactRequest.d.ts +0 -30
- package/dist/api/resources/unstable/resources/tags/client/requests/AttachTagToContactRequest.js +0 -5
- package/dist/api/resources/unstable/resources/tags/client/requests/AttachTagToConversationRequest.d.ts +0 -28
- package/dist/api/resources/unstable/resources/tags/client/requests/AttachTagToConversationRequest.js +0 -5
- package/dist/api/resources/unstable/resources/tags/client/requests/AttachTagToTicketRequest.d.ts +0 -28
- package/dist/api/resources/unstable/resources/tags/client/requests/AttachTagToTicketRequest.js +0 -5
- package/dist/api/resources/unstable/resources/tags/client/requests/DeleteTagRequest.d.ts +0 -15
- package/dist/api/resources/unstable/resources/tags/client/requests/DeleteTagRequest.js +0 -5
- package/dist/api/resources/unstable/resources/tags/client/requests/DetachTagFromContactRequest.d.ts +0 -20
- package/dist/api/resources/unstable/resources/tags/client/requests/DetachTagFromContactRequest.js +0 -5
- package/dist/api/resources/unstable/resources/tags/client/requests/DetachTagFromConversationRequest.d.ts +0 -37
- package/dist/api/resources/unstable/resources/tags/client/requests/DetachTagFromConversationRequest.js +0 -5
- package/dist/api/resources/unstable/resources/tags/client/requests/DetachTagFromTicketRequest.d.ts +0 -37
- package/dist/api/resources/unstable/resources/tags/client/requests/DetachTagFromTicketRequest.js +0 -5
- package/dist/api/resources/unstable/resources/tags/client/requests/FindTagRequest.d.ts +0 -15
- package/dist/api/resources/unstable/resources/tags/client/requests/FindTagRequest.js +0 -5
- package/dist/api/resources/unstable/resources/tags/client/requests/index.d.ts +0 -8
- package/dist/api/resources/unstable/resources/tags/client/requests/index.js +0 -2
- package/dist/api/resources/unstable/resources/tags/index.d.ts +0 -2
- package/dist/api/resources/unstable/resources/tags/index.js +0 -18
- package/dist/api/resources/unstable/resources/tags/types/CreateTagRequestBody.d.ts +0 -5
- package/dist/api/resources/unstable/resources/tags/types/CreateTagRequestBody.js +0 -5
- package/dist/api/resources/unstable/resources/tags/types/Tag.d.ts +0 -18
- package/dist/api/resources/unstable/resources/tags/types/Tag.js +0 -5
- package/dist/api/resources/unstable/resources/tags/types/TagBasic.d.ts +0 -14
- package/dist/api/resources/unstable/resources/tags/types/TagBasic.js +0 -5
- package/dist/api/resources/unstable/resources/tags/types/index.d.ts +0 -3
- package/dist/api/resources/unstable/resources/tags/types/index.js +0 -19
- package/dist/api/resources/unstable/resources/teams/client/Client.d.ts +0 -65
- package/dist/api/resources/unstable/resources/teams/client/Client.js +0 -200
- package/dist/api/resources/unstable/resources/teams/client/index.d.ts +0 -1
- package/dist/api/resources/unstable/resources/teams/client/index.js +0 -17
- package/dist/api/resources/unstable/resources/teams/client/requests/RetrieveTeamRequest.d.ts +0 -15
- package/dist/api/resources/unstable/resources/teams/client/requests/RetrieveTeamRequest.js +0 -5
- package/dist/api/resources/unstable/resources/teams/client/requests/index.d.ts +0 -1
- package/dist/api/resources/unstable/resources/teams/client/requests/index.js +0 -2
- package/dist/api/resources/unstable/resources/teams/index.d.ts +0 -2
- package/dist/api/resources/unstable/resources/teams/index.js +0 -18
- package/dist/api/resources/unstable/resources/teams/types/Team.d.ts +0 -18
- package/dist/api/resources/unstable/resources/teams/types/Team.js +0 -5
- package/dist/api/resources/unstable/resources/teams/types/index.d.ts +0 -1
- package/dist/api/resources/unstable/resources/teams/types/index.js +0 -17
- package/dist/api/resources/unstable/resources/ticketStates/client/Client.d.ts +0 -49
- package/dist/api/resources/unstable/resources/ticketStates/client/Client.js +0 -135
- package/dist/api/resources/unstable/resources/ticketStates/client/index.js +0 -2
- package/dist/api/resources/unstable/resources/ticketStates/index.d.ts +0 -1
- package/dist/api/resources/unstable/resources/ticketStates/index.js +0 -17
- package/dist/api/resources/unstable/resources/ticketTypeAttributes/client/Client.d.ts +0 -73
- package/dist/api/resources/unstable/resources/ticketTypeAttributes/client/Client.js +0 -226
- package/dist/api/resources/unstable/resources/ticketTypeAttributes/client/index.d.ts +0 -1
- package/dist/api/resources/unstable/resources/ticketTypeAttributes/client/index.js +0 -17
- package/dist/api/resources/unstable/resources/ticketTypeAttributes/client/requests/CreateTicketTypeAttributeRequest.d.ts +0 -54
- package/dist/api/resources/unstable/resources/ticketTypeAttributes/client/requests/CreateTicketTypeAttributeRequest.js +0 -18
- package/dist/api/resources/unstable/resources/ticketTypeAttributes/client/requests/UpdateTicketTypeAttributeRequest.d.ts +0 -41
- package/dist/api/resources/unstable/resources/ticketTypeAttributes/client/requests/UpdateTicketTypeAttributeRequest.js +0 -5
- package/dist/api/resources/unstable/resources/ticketTypeAttributes/client/requests/index.d.ts +0 -2
- package/dist/api/resources/unstable/resources/ticketTypeAttributes/client/requests/index.js +0 -2
- package/dist/api/resources/unstable/resources/ticketTypeAttributes/index.d.ts +0 -1
- package/dist/api/resources/unstable/resources/ticketTypeAttributes/index.js +0 -17
- package/dist/api/resources/unstable/resources/ticketTypes/client/Client.d.ts +0 -83
- package/dist/api/resources/unstable/resources/ticketTypes/client/Client.js +0 -269
- package/dist/api/resources/unstable/resources/ticketTypes/client/index.d.ts +0 -1
- package/dist/api/resources/unstable/resources/ticketTypes/client/index.js +0 -17
- package/dist/api/resources/unstable/resources/ticketTypes/client/requests/GetTicketTypeRequest.d.ts +0 -15
- package/dist/api/resources/unstable/resources/ticketTypes/client/requests/GetTicketTypeRequest.js +0 -5
- package/dist/api/resources/unstable/resources/ticketTypes/client/requests/index.d.ts +0 -1
- package/dist/api/resources/unstable/resources/ticketTypes/client/requests/index.js +0 -2
- package/dist/api/resources/unstable/resources/ticketTypes/index.d.ts +0 -1
- package/dist/api/resources/unstable/resources/ticketTypes/index.js +0 -17
- package/dist/api/resources/unstable/resources/tickets/client/Client.d.ts +0 -277
- package/dist/api/resources/unstable/resources/tickets/client/Client.js +0 -622
- package/dist/api/resources/unstable/resources/tickets/client/index.d.ts +0 -1
- package/dist/api/resources/unstable/resources/tickets/client/index.js +0 -17
- package/dist/api/resources/unstable/resources/tickets/client/requests/DeleteTicketRequest.d.ts +0 -15
- package/dist/api/resources/unstable/resources/tickets/client/requests/DeleteTicketRequest.js +0 -5
- package/dist/api/resources/unstable/resources/tickets/client/requests/EnqueueCreateTicketRequest.d.ts +0 -17
- package/dist/api/resources/unstable/resources/tickets/client/requests/EnqueueCreateTicketRequest.js +0 -5
- package/dist/api/resources/unstable/resources/tickets/client/requests/GetTicketRequest.d.ts +0 -15
- package/dist/api/resources/unstable/resources/tickets/client/requests/GetTicketRequest.js +0 -5
- package/dist/api/resources/unstable/resources/tickets/client/requests/ReplyTicketRequest.d.ts +0 -59
- package/dist/api/resources/unstable/resources/tickets/client/requests/ReplyTicketRequest.js +0 -5
- package/dist/api/resources/unstable/resources/tickets/client/requests/UpdateTicketRequest.d.ts +0 -70
- package/dist/api/resources/unstable/resources/tickets/client/requests/UpdateTicketRequest.js +0 -5
- package/dist/api/resources/unstable/resources/tickets/client/requests/index.d.ts +0 -5
- package/dist/api/resources/unstable/resources/tickets/client/requests/index.js +0 -2
- package/dist/api/resources/unstable/resources/tickets/index.d.ts +0 -2
- package/dist/api/resources/unstable/resources/tickets/index.js +0 -18
- package/dist/api/resources/unstable/resources/tickets/types/DeleteTicketResponse.d.ts +0 -14
- package/dist/api/resources/unstable/resources/tickets/types/DeleteTicketResponse.js +0 -5
- package/dist/api/resources/unstable/resources/tickets/types/ReplyTicketRequestBody.d.ts +0 -5
- package/dist/api/resources/unstable/resources/tickets/types/ReplyTicketRequestBody.js +0 -5
- package/dist/api/resources/unstable/resources/tickets/types/Ticket.d.ts +0 -48
- package/dist/api/resources/unstable/resources/tickets/types/Ticket.js +0 -14
- package/dist/api/resources/unstable/resources/tickets/types/TicketContacts.d.ts +0 -13
- package/dist/api/resources/unstable/resources/tickets/types/TicketContacts.js +0 -5
- package/dist/api/resources/unstable/resources/tickets/types/TicketPart.d.ts +0 -107
- package/dist/api/resources/unstable/resources/tickets/types/TicketPart.js +0 -21
- package/dist/api/resources/unstable/resources/tickets/types/TicketState.d.ts +0 -30
- package/dist/api/resources/unstable/resources/tickets/types/TicketState.js +0 -15
- package/dist/api/resources/unstable/resources/tickets/types/TicketStateDetailed.d.ts +0 -44
- package/dist/api/resources/unstable/resources/tickets/types/TicketStateDetailed.js +0 -15
- package/dist/api/resources/unstable/resources/tickets/types/TicketType.d.ts +0 -52
- package/dist/api/resources/unstable/resources/tickets/types/TicketType.js +0 -14
- package/dist/api/resources/unstable/resources/tickets/types/index.d.ts +0 -8
- package/dist/api/resources/unstable/resources/tickets/types/index.js +0 -24
- package/dist/api/resources/unstable/resources/visitors/client/Client.d.ts +0 -105
- package/dist/api/resources/unstable/resources/visitors/client/Client.js +0 -299
- package/dist/api/resources/unstable/resources/visitors/client/index.d.ts +0 -1
- package/dist/api/resources/unstable/resources/visitors/client/index.js +0 -17
- package/dist/api/resources/unstable/resources/visitors/client/requests/ConvertVisitorRequest.d.ts +0 -21
- package/dist/api/resources/unstable/resources/visitors/client/requests/ConvertVisitorRequest.js +0 -5
- package/dist/api/resources/unstable/resources/visitors/client/requests/RetrieveVisitorWithUserIdRequest.d.ts +0 -15
- package/dist/api/resources/unstable/resources/visitors/client/requests/RetrieveVisitorWithUserIdRequest.js +0 -5
- package/dist/api/resources/unstable/resources/visitors/client/requests/index.d.ts +0 -2
- package/dist/api/resources/unstable/resources/visitors/client/requests/index.js +0 -2
- package/dist/api/resources/unstable/resources/visitors/index.d.ts +0 -1
- package/dist/api/resources/unstable/resources/visitors/index.js +0 -17
- package/dist/api/resources/unstable/types/ActivityLog.d.ts +0 -104
- package/dist/api/resources/unstable/types/ActivityLog.js +0 -78
- package/dist/api/resources/unstable/types/ActivityLogList.d.ts +0 -14
- package/dist/api/resources/unstable/types/ActivityLogList.js +0 -5
- package/dist/api/resources/unstable/types/ActivityLogMetadata.d.ts +0 -26
- package/dist/api/resources/unstable/types/ActivityLogMetadata.js +0 -5
- package/dist/api/resources/unstable/types/AddressableList.d.ts +0 -14
- package/dist/api/resources/unstable/types/AddressableList.js +0 -5
- package/dist/api/resources/unstable/types/AdminList.d.ts +0 -13
- package/dist/api/resources/unstable/types/AdminList.js +0 -5
- package/dist/api/resources/unstable/types/AdminPriorityLevel.d.ts +0 -12
- package/dist/api/resources/unstable/types/AdminPriorityLevel.js +0 -5
- package/dist/api/resources/unstable/types/AdminReplyConversationRequest.d.ts +0 -31
- package/dist/api/resources/unstable/types/AdminReplyConversationRequest.js +0 -14
- package/dist/api/resources/unstable/types/AdminReplyTicketRequest.d.ts +0 -37
- package/dist/api/resources/unstable/types/AdminReplyTicketRequest.js +0 -14
- package/dist/api/resources/unstable/types/AdminWithApp.d.ts +0 -44
- package/dist/api/resources/unstable/types/AdminWithApp.js +0 -5
- package/dist/api/resources/unstable/types/App.d.ts +0 -22
- package/dist/api/resources/unstable/types/App.js +0 -5
- package/dist/api/resources/unstable/types/ArticleContent.d.ts +0 -36
- package/dist/api/resources/unstable/types/ArticleContent.js +0 -13
- package/dist/api/resources/unstable/types/ArticleList.d.ts +0 -16
- package/dist/api/resources/unstable/types/ArticleList.js +0 -5
- package/dist/api/resources/unstable/types/ArticleStatistics.d.ts +0 -22
- package/dist/api/resources/unstable/types/ArticleStatistics.js +0 -5
- package/dist/api/resources/unstable/types/ArticleTranslatedContent.d.ts +0 -85
- package/dist/api/resources/unstable/types/ArticleTranslatedContent.js +0 -5
- package/dist/api/resources/unstable/types/AssignConversationRequest.d.ts +0 -22
- package/dist/api/resources/unstable/types/AssignConversationRequest.js +0 -13
- package/dist/api/resources/unstable/types/AwayStatusReason.d.ts +0 -20
- package/dist/api/resources/unstable/types/AwayStatusReason.js +0 -5
- package/dist/api/resources/unstable/types/CloseConversationRequest.d.ts +0 -13
- package/dist/api/resources/unstable/types/CloseConversationRequest.js +0 -5
- package/dist/api/resources/unstable/types/CollectionList.d.ts +0 -16
- package/dist/api/resources/unstable/types/CollectionList.js +0 -5
- package/dist/api/resources/unstable/types/CompanyAttachedContacts.d.ts +0 -16
- package/dist/api/resources/unstable/types/CompanyAttachedContacts.js +0 -5
- package/dist/api/resources/unstable/types/CompanyAttachedSegments.d.ts +0 -13
- package/dist/api/resources/unstable/types/CompanyAttachedSegments.js +0 -5
- package/dist/api/resources/unstable/types/CompanyData.d.ts +0 -14
- package/dist/api/resources/unstable/types/CompanyData.js +0 -5
- package/dist/api/resources/unstable/types/CompanyList.d.ts +0 -16
- package/dist/api/resources/unstable/types/CompanyList.js +0 -5
- package/dist/api/resources/unstable/types/CompanyScroll.d.ts +0 -17
- package/dist/api/resources/unstable/types/CompanyScroll.js +0 -5
- package/dist/api/resources/unstable/types/ContactArchived.d.ts +0 -11
- package/dist/api/resources/unstable/types/ContactArchived.js +0 -5
- package/dist/api/resources/unstable/types/ContactAttachedCompanies.d.ts +0 -16
- package/dist/api/resources/unstable/types/ContactAttachedCompanies.js +0 -5
- package/dist/api/resources/unstable/types/ContactBlocked.d.ts +0 -11
- package/dist/api/resources/unstable/types/ContactBlocked.js +0 -5
- package/dist/api/resources/unstable/types/ContactCompanies.d.ts +0 -17
- package/dist/api/resources/unstable/types/ContactCompanies.js +0 -5
- package/dist/api/resources/unstable/types/ContactDeleted.d.ts +0 -11
- package/dist/api/resources/unstable/types/ContactDeleted.js +0 -5
- package/dist/api/resources/unstable/types/ContactList.d.ts +0 -16
- package/dist/api/resources/unstable/types/ContactList.js +0 -5
- package/dist/api/resources/unstable/types/ContactLocation.d.ts +0 -16
- package/dist/api/resources/unstable/types/ContactLocation.js +0 -5
- package/dist/api/resources/unstable/types/ContactNotes.d.ts +0 -17
- package/dist/api/resources/unstable/types/ContactNotes.js +0 -5
- package/dist/api/resources/unstable/types/ContactReference.d.ts +0 -14
- package/dist/api/resources/unstable/types/ContactReference.js +0 -5
- package/dist/api/resources/unstable/types/ContactReplyBaseRequest.d.ts +0 -26
- package/dist/api/resources/unstable/types/ContactReplyBaseRequest.js +0 -5
- package/dist/api/resources/unstable/types/ContactReplyConversationRequest.d.ts +0 -5
- package/dist/api/resources/unstable/types/ContactReplyConversationRequest.js +0 -5
- package/dist/api/resources/unstable/types/ContactReplyEmailRequest.d.ts +0 -13
- package/dist/api/resources/unstable/types/ContactReplyEmailRequest.js +0 -5
- package/dist/api/resources/unstable/types/ContactReplyIntercomUserIdRequest.d.ts +0 -13
- package/dist/api/resources/unstable/types/ContactReplyIntercomUserIdRequest.js +0 -5
- package/dist/api/resources/unstable/types/ContactReplyTicketEmailRequest.d.ts +0 -11
- package/dist/api/resources/unstable/types/ContactReplyTicketEmailRequest.js +0 -5
- package/dist/api/resources/unstable/types/ContactReplyTicketIntercomUserIdRequest.d.ts +0 -11
- package/dist/api/resources/unstable/types/ContactReplyTicketIntercomUserIdRequest.js +0 -5
- package/dist/api/resources/unstable/types/ContactReplyTicketRequest.d.ts +0 -5
- package/dist/api/resources/unstable/types/ContactReplyTicketRequest.js +0 -5
- package/dist/api/resources/unstable/types/ContactReplyTicketUserIdRequest.d.ts +0 -11
- package/dist/api/resources/unstable/types/ContactReplyTicketUserIdRequest.js +0 -5
- package/dist/api/resources/unstable/types/ContactReplyUserIdRequest.d.ts +0 -13
- package/dist/api/resources/unstable/types/ContactReplyUserIdRequest.js +0 -5
- package/dist/api/resources/unstable/types/ContactSegments.d.ts +0 -13
- package/dist/api/resources/unstable/types/ContactSegments.js +0 -5
- package/dist/api/resources/unstable/types/ContactSocialProfiles.d.ts +0 -11
- package/dist/api/resources/unstable/types/ContactSocialProfiles.js +0 -5
- package/dist/api/resources/unstable/types/ContactSubscriptionTypes.d.ts +0 -17
- package/dist/api/resources/unstable/types/ContactSubscriptionTypes.js +0 -5
- package/dist/api/resources/unstable/types/ContactTags.d.ts +0 -17
- package/dist/api/resources/unstable/types/ContactTags.js +0 -5
- package/dist/api/resources/unstable/types/ContactUnarchived.d.ts +0 -11
- package/dist/api/resources/unstable/types/ContactUnarchived.js +0 -5
- package/dist/api/resources/unstable/types/ContentSourcesList.d.ts +0 -11
- package/dist/api/resources/unstable/types/ContentSourcesList.js +0 -5
- package/dist/api/resources/unstable/types/ConversationAttachmentFiles.d.ts +0 -14
- package/dist/api/resources/unstable/types/ConversationAttachmentFiles.js +0 -5
- package/dist/api/resources/unstable/types/ConversationAttributeUpdatedByAdmin.d.ts +0 -20
- package/dist/api/resources/unstable/types/ConversationAttributeUpdatedByAdmin.js +0 -5
- package/dist/api/resources/unstable/types/ConversationAttributeUpdatedByWorkflow.d.ts +0 -25
- package/dist/api/resources/unstable/types/ConversationAttributeUpdatedByWorkflow.js +0 -5
- package/dist/api/resources/unstable/types/ConversationContacts.d.ts +0 -13
- package/dist/api/resources/unstable/types/ConversationContacts.js +0 -5
- package/dist/api/resources/unstable/types/ConversationDeleted.d.ts +0 -14
- package/dist/api/resources/unstable/types/ConversationDeleted.js +0 -5
- package/dist/api/resources/unstable/types/ConversationFirstContactReply.d.ts +0 -14
- package/dist/api/resources/unstable/types/ConversationFirstContactReply.js +0 -5
- package/dist/api/resources/unstable/types/ConversationList.d.ts +0 -16
- package/dist/api/resources/unstable/types/ConversationList.js +0 -5
- package/dist/api/resources/unstable/types/ConversationPart.d.ts +0 -52
- package/dist/api/resources/unstable/types/ConversationPart.js +0 -14
- package/dist/api/resources/unstable/types/ConversationPartAuthor.d.ts +0 -20
- package/dist/api/resources/unstable/types/ConversationPartAuthor.js +0 -5
- package/dist/api/resources/unstable/types/ConversationPartMetadata.d.ts +0 -22
- package/dist/api/resources/unstable/types/ConversationPartMetadata.js +0 -5
- package/dist/api/resources/unstable/types/ConversationParts.d.ts +0 -15
- package/dist/api/resources/unstable/types/ConversationParts.js +0 -5
- package/dist/api/resources/unstable/types/ConversationRating.d.ts +0 -17
- package/dist/api/resources/unstable/types/ConversationRating.js +0 -5
- package/dist/api/resources/unstable/types/ConversationResponseTime.d.ts +0 -14
- package/dist/api/resources/unstable/types/ConversationResponseTime.js +0 -5
- package/dist/api/resources/unstable/types/ConversationSource.d.ts +0 -44
- package/dist/api/resources/unstable/types/ConversationSource.js +0 -21
- package/dist/api/resources/unstable/types/ConversationStatistics.d.ts +0 -53
- package/dist/api/resources/unstable/types/ConversationStatistics.js +0 -5
- package/dist/api/resources/unstable/types/ConversationTeammates.d.ts +0 -13
- package/dist/api/resources/unstable/types/ConversationTeammates.js +0 -5
- package/dist/api/resources/unstable/types/CreateOrUpdateTagRequest.d.ts +0 -12
- package/dist/api/resources/unstable/types/CreateOrUpdateTagRequest.js +0 -5
- package/dist/api/resources/unstable/types/CreateTicketReplyWithCommentRequest.d.ts +0 -5
- package/dist/api/resources/unstable/types/CreateTicketReplyWithCommentRequest.js +0 -5
- package/dist/api/resources/unstable/types/CreateTicketRequestBody.d.ts +0 -43
- package/dist/api/resources/unstable/types/CreateTicketRequestBody.js +0 -5
- package/dist/api/resources/unstable/types/CursorPages.d.ts +0 -19
- package/dist/api/resources/unstable/types/CursorPages.js +0 -5
- package/dist/api/resources/unstable/types/CustomActionFinished.d.ts +0 -27
- package/dist/api/resources/unstable/types/CustomActionFinished.js +0 -16
- package/dist/api/resources/unstable/types/CustomActionStarted.d.ts +0 -15
- package/dist/api/resources/unstable/types/CustomActionStarted.js +0 -5
- package/dist/api/resources/unstable/types/CustomAttributes.d.ts +0 -11
- package/dist/api/resources/unstable/types/CustomAttributes.js +0 -5
- package/dist/api/resources/unstable/types/CustomChannelAttribute.d.ts +0 -9
- package/dist/api/resources/unstable/types/CustomChannelAttribute.js +0 -5
- package/dist/api/resources/unstable/types/CustomChannelBaseEvent.d.ts +0 -11
- package/dist/api/resources/unstable/types/CustomChannelBaseEvent.js +0 -5
- package/dist/api/resources/unstable/types/CustomChannelContact.d.ts +0 -23
- package/dist/api/resources/unstable/types/CustomChannelContact.js +0 -13
- package/dist/api/resources/unstable/types/CustomChannelNotificationResponse.d.ts +0 -13
- package/dist/api/resources/unstable/types/CustomChannelNotificationResponse.js +0 -5
- package/dist/api/resources/unstable/types/CustomObjectInstanceDeleted.d.ts +0 -14
- package/dist/api/resources/unstable/types/CustomObjectInstanceDeleted.js +0 -5
- package/dist/api/resources/unstable/types/CustomObjectInstanceList.d.ts +0 -12
- package/dist/api/resources/unstable/types/CustomObjectInstanceList.js +0 -5
- package/dist/api/resources/unstable/types/CustomerRequest.d.ts +0 -10
- package/dist/api/resources/unstable/types/CustomerRequest.js +0 -5
- package/dist/api/resources/unstable/types/DataAttributeList.d.ts +0 -13
- package/dist/api/resources/unstable/types/DataAttributeList.js +0 -5
- package/dist/api/resources/unstable/types/DataEventList.d.ts +0 -24
- package/dist/api/resources/unstable/types/DataEventList.js +0 -5
- package/dist/api/resources/unstable/types/DataEventSummary.d.ts +0 -19
- package/dist/api/resources/unstable/types/DataEventSummary.js +0 -5
- package/dist/api/resources/unstable/types/DataEventSummaryItem.d.ts +0 -18
- package/dist/api/resources/unstable/types/DataEventSummaryItem.js +0 -5
- package/dist/api/resources/unstable/types/DataExportCsv.d.ts +0 -60
- package/dist/api/resources/unstable/types/DataExportCsv.js +0 -5
- package/dist/api/resources/unstable/types/Datetime.d.ts +0 -10
- package/dist/api/resources/unstable/types/Datetime.js +0 -5
- package/dist/api/resources/unstable/types/DeletedArticleObject.d.ts +0 -14
- package/dist/api/resources/unstable/types/DeletedArticleObject.js +0 -5
- package/dist/api/resources/unstable/types/DeletedCollectionObject.d.ts +0 -14
- package/dist/api/resources/unstable/types/DeletedCollectionObject.js +0 -5
- package/dist/api/resources/unstable/types/DeletedCompanyObject.d.ts +0 -14
- package/dist/api/resources/unstable/types/DeletedCompanyObject.js +0 -5
- package/dist/api/resources/unstable/types/DeletedObject.d.ts +0 -14
- package/dist/api/resources/unstable/types/DeletedObject.js +0 -5
- package/dist/api/resources/unstable/types/EmailAddressHeader.d.ts +0 -14
- package/dist/api/resources/unstable/types/EmailAddressHeader.js +0 -5
- package/dist/api/resources/unstable/types/EmailMessageMetadata.d.ts +0 -13
- package/dist/api/resources/unstable/types/EmailMessageMetadata.js +0 -5
- package/dist/api/resources/unstable/types/Error_.d.ts +0 -27
- package/dist/api/resources/unstable/types/Error_.js +0 -5
- package/dist/api/resources/unstable/types/EventDetails.d.ts +0 -5
- package/dist/api/resources/unstable/types/EventDetails.js +0 -5
- package/dist/api/resources/unstable/types/FileAttribute.d.ts +0 -21
- package/dist/api/resources/unstable/types/FileAttribute.js +0 -5
- package/dist/api/resources/unstable/types/GroupContent.d.ts +0 -14
- package/dist/api/resources/unstable/types/GroupContent.js +0 -5
- package/dist/api/resources/unstable/types/GroupTranslatedContent.d.ts +0 -85
- package/dist/api/resources/unstable/types/GroupTranslatedContent.js +0 -5
- package/dist/api/resources/unstable/types/IntercomVersion.d.ts +0 -27
- package/dist/api/resources/unstable/types/IntercomVersion.js +0 -26
- package/dist/api/resources/unstable/types/IntercomVersionUnstable.d.ts +0 -7
- package/dist/api/resources/unstable/types/IntercomVersionUnstable.js +0 -5
- package/dist/api/resources/unstable/types/LinkedObject.d.ts +0 -24
- package/dist/api/resources/unstable/types/LinkedObject.js +0 -13
- package/dist/api/resources/unstable/types/LinkedObjectList.d.ts +0 -17
- package/dist/api/resources/unstable/types/LinkedObjectList.js +0 -5
- package/dist/api/resources/unstable/types/MultipleFilterSearchRequest.d.ts +0 -29
- package/dist/api/resources/unstable/types/MultipleFilterSearchRequest.js +0 -13
- package/dist/api/resources/unstable/types/NewsItemRequest.d.ts +0 -35
- package/dist/api/resources/unstable/types/NewsItemRequest.js +0 -13
- package/dist/api/resources/unstable/types/NotFoundErrorBody.d.ts +0 -22
- package/dist/api/resources/unstable/types/NotFoundErrorBody.js +0 -5
- package/dist/api/resources/unstable/types/NoteList.d.ts +0 -16
- package/dist/api/resources/unstable/types/NoteList.js +0 -5
- package/dist/api/resources/unstable/types/OpenConversationRequest.d.ts +0 -10
- package/dist/api/resources/unstable/types/OpenConversationRequest.js +0 -5
- package/dist/api/resources/unstable/types/OperatorWorkflowEvent.d.ts +0 -22
- package/dist/api/resources/unstable/types/OperatorWorkflowEvent.js +0 -5
- package/dist/api/resources/unstable/types/PagesLink.d.ts +0 -16
- package/dist/api/resources/unstable/types/PagesLink.js +0 -5
- package/dist/api/resources/unstable/types/PaginatedResponse.d.ts +0 -26
- package/dist/api/resources/unstable/types/PaginatedResponse.js +0 -13
- package/dist/api/resources/unstable/types/PaginatedResponseDataItem.d.ts +0 -13
- package/dist/api/resources/unstable/types/PaginatedResponseDataItem.js +0 -5
- package/dist/api/resources/unstable/types/PartAttachment.d.ts +0 -22
- package/dist/api/resources/unstable/types/PartAttachment.js +0 -5
- package/dist/api/resources/unstable/types/PhoneSwitch.d.ts +0 -12
- package/dist/api/resources/unstable/types/PhoneSwitch.js +0 -5
- package/dist/api/resources/unstable/types/QuickReplyOption.d.ts +0 -9
- package/dist/api/resources/unstable/types/QuickReplyOption.js +0 -5
- package/dist/api/resources/unstable/types/Recipient.d.ts +0 -22
- package/dist/api/resources/unstable/types/Recipient.js +0 -13
- package/dist/api/resources/unstable/types/RedactConversationRequest.d.ts +0 -27
- package/dist/api/resources/unstable/types/RedactConversationRequest.js +0 -5
- package/dist/api/resources/unstable/types/Reference.d.ts +0 -12
- package/dist/api/resources/unstable/types/Reference.js +0 -5
- package/dist/api/resources/unstable/types/ReplyConversationRequestBody.d.ts +0 -5
- package/dist/api/resources/unstable/types/ReplyConversationRequestBody.js +0 -5
- package/dist/api/resources/unstable/types/SearchRequest.d.ts +0 -14
- package/dist/api/resources/unstable/types/SearchRequest.js +0 -5
- package/dist/api/resources/unstable/types/SegmentList.d.ts +0 -15
- package/dist/api/resources/unstable/types/SegmentList.js +0 -5
- package/dist/api/resources/unstable/types/SingleFilterSearchRequest.d.ts +0 -32
- package/dist/api/resources/unstable/types/SingleFilterSearchRequest.js +0 -17
- package/dist/api/resources/unstable/types/SlaApplied.d.ts +0 -35
- package/dist/api/resources/unstable/types/SlaApplied.js +0 -15
- package/dist/api/resources/unstable/types/SnoozeConversationRequest.d.ts +0 -12
- package/dist/api/resources/unstable/types/SnoozeConversationRequest.js +0 -5
- package/dist/api/resources/unstable/types/SocialProfile.d.ts +0 -14
- package/dist/api/resources/unstable/types/SocialProfile.js +0 -5
- package/dist/api/resources/unstable/types/StartingAfterPaging.d.ts +0 -9
- package/dist/api/resources/unstable/types/StartingAfterPaging.js +0 -5
- package/dist/api/resources/unstable/types/SubscriptionTypeList.d.ts +0 -13
- package/dist/api/resources/unstable/types/SubscriptionTypeList.js +0 -5
- package/dist/api/resources/unstable/types/TagCompanyRequest.d.ts +0 -23
- package/dist/api/resources/unstable/types/TagCompanyRequest.js +0 -5
- package/dist/api/resources/unstable/types/TagList.d.ts +0 -13
- package/dist/api/resources/unstable/types/TagList.js +0 -5
- package/dist/api/resources/unstable/types/TagMultipleUsersRequest.d.ts +0 -20
- package/dist/api/resources/unstable/types/TagMultipleUsersRequest.js +0 -5
- package/dist/api/resources/unstable/types/Tags.d.ts +0 -13
- package/dist/api/resources/unstable/types/Tags.js +0 -5
- package/dist/api/resources/unstable/types/TeamList.d.ts +0 -13
- package/dist/api/resources/unstable/types/TeamList.js +0 -5
- package/dist/api/resources/unstable/types/TeamPriorityLevel.d.ts +0 -12
- package/dist/api/resources/unstable/types/TeamPriorityLevel.js +0 -5
- package/dist/api/resources/unstable/types/TicketCustomAttributes.d.ts +0 -11
- package/dist/api/resources/unstable/types/TicketCustomAttributes.js +0 -5
- package/dist/api/resources/unstable/types/TicketList.d.ts +0 -16
- package/dist/api/resources/unstable/types/TicketList.js +0 -5
- package/dist/api/resources/unstable/types/TicketPartAuthor.d.ts +0 -28
- package/dist/api/resources/unstable/types/TicketPartAuthor.js +0 -15
- package/dist/api/resources/unstable/types/TicketParts.d.ts +0 -15
- package/dist/api/resources/unstable/types/TicketParts.js +0 -5
- package/dist/api/resources/unstable/types/TicketReply.d.ts +0 -37
- package/dist/api/resources/unstable/types/TicketReply.js +0 -14
- package/dist/api/resources/unstable/types/TicketRequestCustomAttributes.d.ts +0 -10
- package/dist/api/resources/unstable/types/TicketRequestCustomAttributes.js +0 -5
- package/dist/api/resources/unstable/types/TicketStateList.d.ts +0 -13
- package/dist/api/resources/unstable/types/TicketStateList.js +0 -5
- package/dist/api/resources/unstable/types/TicketTypeAttribute.d.ts +0 -42
- package/dist/api/resources/unstable/types/TicketTypeAttribute.js +0 -5
- package/dist/api/resources/unstable/types/TicketTypeAttributeList.d.ts +0 -13
- package/dist/api/resources/unstable/types/TicketTypeAttributeList.js +0 -5
- package/dist/api/resources/unstable/types/TicketTypeList.d.ts +0 -13
- package/dist/api/resources/unstable/types/TicketTypeList.js +0 -5
- package/dist/api/resources/unstable/types/Translation.d.ts +0 -14
- package/dist/api/resources/unstable/types/Translation.js +0 -5
- package/dist/api/resources/unstable/types/UntagCompanyRequest.d.ts +0 -25
- package/dist/api/resources/unstable/types/UntagCompanyRequest.js +0 -5
- package/dist/api/resources/unstable/types/UpdateArticleRequestBody.d.ts +0 -34
- package/dist/api/resources/unstable/types/UpdateArticleRequestBody.js +0 -13
- package/dist/api/resources/unstable/types/UpdateTicketTypeRequestBody.d.ts +0 -32
- package/dist/api/resources/unstable/types/UpdateTicketTypeRequestBody.js +0 -14
- package/dist/api/resources/unstable/types/Visitor.d.ts +0 -128
- package/dist/api/resources/unstable/types/Visitor.js +0 -5
- package/dist/api/resources/unstable/types/VisitorDeletedObject.d.ts +0 -14
- package/dist/api/resources/unstable/types/VisitorDeletedObject.js +0 -5
- package/dist/api/resources/unstable/types/WhatsappMessageStatusList.d.ts +0 -65
- package/dist/api/resources/unstable/types/WhatsappMessageStatusList.js +0 -21
- package/dist/api/resources/unstable/types/index.d.ts +0 -145
- package/dist/api/resources/unstable/types/index.js +0 -161
- package/dist/api/resources/visitors/client/Client.d.ts +0 -106
- package/dist/api/resources/visitors/client/Client.js +0 -294
- package/dist/api/resources/visitors/client/index.d.ts +0 -1
- package/dist/api/resources/visitors/client/index.js +0 -17
- package/dist/api/resources/visitors/client/requests/FindVisitorRequest.d.ts +0 -15
- package/dist/api/resources/visitors/client/requests/FindVisitorRequest.js +0 -5
- package/dist/api/resources/visitors/client/requests/MergeVisitorToContactRequest.d.ts +0 -46
- package/dist/api/resources/visitors/client/requests/MergeVisitorToContactRequest.js +0 -5
- package/dist/api/resources/visitors/client/requests/index.d.ts +0 -2
- package/dist/api/resources/visitors/client/requests/index.js +0 -2
- package/dist/api/resources/visitors/index.d.ts +0 -1
- package/dist/api/resources/visitors/index.js +0 -17
- package/dist/api/types/ActionComponent.d.ts +0 -16
- package/dist/api/types/ActionComponent.js +0 -5
- package/dist/api/types/ActivityLog.d.ts +0 -104
- package/dist/api/types/ActivityLog.js +0 -78
- package/dist/api/types/ActivityLogList.d.ts +0 -14
- package/dist/api/types/ActivityLogList.js +0 -5
- package/dist/api/types/ActivityLogMetadata.d.ts +0 -26
- package/dist/api/types/ActivityLogMetadata.js +0 -5
- package/dist/api/types/AddressableList.d.ts +0 -14
- package/dist/api/types/AddressableList.js +0 -5
- package/dist/api/types/AdminList.d.ts +0 -13
- package/dist/api/types/AdminList.js +0 -5
- package/dist/api/types/AdminPriorityLevel.d.ts +0 -12
- package/dist/api/types/AdminPriorityLevel.js +0 -5
- package/dist/api/types/AdminReplyConversationRequest.d.ts +0 -28
- package/dist/api/types/AdminReplyConversationRequest.js +0 -13
- package/dist/api/types/AdminReplyTicketRequest.d.ts +0 -37
- package/dist/api/types/AdminReplyTicketRequest.js +0 -14
- package/dist/api/types/AdminWithApp.d.ts +0 -44
- package/dist/api/types/AdminWithApp.js +0 -5
- package/dist/api/types/App.d.ts +0 -22
- package/dist/api/types/App.js +0 -5
- package/dist/api/types/ArticleContent.d.ts +0 -36
- package/dist/api/types/ArticleContent.js +0 -13
- package/dist/api/types/ArticleList.d.ts +0 -16
- package/dist/api/types/ArticleList.js +0 -5
- package/dist/api/types/ArticleStatistics.d.ts +0 -22
- package/dist/api/types/ArticleStatistics.js +0 -5
- package/dist/api/types/ArticleTranslatedContent.d.ts +0 -85
- package/dist/api/types/ArticleTranslatedContent.js +0 -5
- package/dist/api/types/AssignConversationRequest.d.ts +0 -22
- package/dist/api/types/AssignConversationRequest.js +0 -13
- package/dist/api/types/ButtonComponent.d.ts +0 -33
- package/dist/api/types/ButtonComponent.js +0 -14
- package/dist/api/types/CanvasObject.d.ts +0 -20
- package/dist/api/types/CanvasObject.js +0 -5
- package/dist/api/types/CheckboxComponent.d.ts +0 -36
- package/dist/api/types/CheckboxComponent.js +0 -14
- package/dist/api/types/CheckboxOption.d.ts +0 -16
- package/dist/api/types/CheckboxOption.js +0 -5
- package/dist/api/types/CloseConversationRequest.d.ts +0 -13
- package/dist/api/types/CloseConversationRequest.js +0 -5
- package/dist/api/types/CollectionList.d.ts +0 -16
- package/dist/api/types/CollectionList.js +0 -5
- package/dist/api/types/CompanyAttachedContacts.d.ts +0 -16
- package/dist/api/types/CompanyAttachedContacts.js +0 -5
- package/dist/api/types/CompanyAttachedSegments.d.ts +0 -13
- package/dist/api/types/CompanyAttachedSegments.js +0 -5
- package/dist/api/types/CompanyList.d.ts +0 -14
- package/dist/api/types/CompanyList.js +0 -5
- package/dist/api/types/CompanyScroll.d.ts +0 -17
- package/dist/api/types/CompanyScroll.js +0 -5
- package/dist/api/types/Component.d.ts +0 -43
- package/dist/api/types/Component.js +0 -5
- package/dist/api/types/ConfigureRequest.d.ts +0 -22
- package/dist/api/types/ConfigureRequest.js +0 -5
- package/dist/api/types/ConfigureResponse.d.ts +0 -12
- package/dist/api/types/ConfigureResponse.js +0 -5
- package/dist/api/types/ContactArchived.d.ts +0 -16
- package/dist/api/types/ContactArchived.js +0 -5
- package/dist/api/types/ContactAttachedCompanies.d.ts +0 -16
- package/dist/api/types/ContactAttachedCompanies.js +0 -5
- package/dist/api/types/ContactCompanies.d.ts +0 -19
- package/dist/api/types/ContactCompanies.js +0 -5
- package/dist/api/types/ContactCompany.d.ts +0 -14
- package/dist/api/types/ContactCompany.js +0 -5
- package/dist/api/types/ContactDeleted.d.ts +0 -16
- package/dist/api/types/ContactDeleted.js +0 -5
- package/dist/api/types/ContactList.d.ts +0 -16
- package/dist/api/types/ContactList.js +0 -5
- package/dist/api/types/ContactLocation.d.ts +0 -16
- package/dist/api/types/ContactLocation.js +0 -5
- package/dist/api/types/ContactNotes.d.ts +0 -17
- package/dist/api/types/ContactNotes.js +0 -5
- package/dist/api/types/ContactReference.d.ts +0 -14
- package/dist/api/types/ContactReference.js +0 -5
- package/dist/api/types/ContactReplyBaseRequest.d.ts +0 -13
- package/dist/api/types/ContactReplyBaseRequest.js +0 -5
- package/dist/api/types/ContactReplyConversationRequest.d.ts +0 -5
- package/dist/api/types/ContactReplyConversationRequest.js +0 -5
- package/dist/api/types/ContactReplyEmailRequest.d.ts +0 -13
- package/dist/api/types/ContactReplyEmailRequest.js +0 -5
- package/dist/api/types/ContactReplyIntercomUserIdRequest.d.ts +0 -13
- package/dist/api/types/ContactReplyIntercomUserIdRequest.js +0 -5
- package/dist/api/types/ContactReplyTicketEmailRequest.d.ts +0 -11
- package/dist/api/types/ContactReplyTicketEmailRequest.js +0 -5
- package/dist/api/types/ContactReplyTicketIntercomUserIdRequest.d.ts +0 -11
- package/dist/api/types/ContactReplyTicketIntercomUserIdRequest.js +0 -5
- package/dist/api/types/ContactReplyTicketRequest.d.ts +0 -5
- package/dist/api/types/ContactReplyTicketRequest.js +0 -5
- package/dist/api/types/ContactReplyTicketUserIdRequest.d.ts +0 -11
- package/dist/api/types/ContactReplyTicketUserIdRequest.js +0 -5
- package/dist/api/types/ContactReplyUserIdRequest.d.ts +0 -13
- package/dist/api/types/ContactReplyUserIdRequest.js +0 -5
- package/dist/api/types/ContactSegments.d.ts +0 -13
- package/dist/api/types/ContactSegments.js +0 -5
- package/dist/api/types/ContactSocialProfiles.d.ts +0 -11
- package/dist/api/types/ContactSocialProfiles.js +0 -5
- package/dist/api/types/ContactSubscriptionTypes.d.ts +0 -17
- package/dist/api/types/ContactSubscriptionTypes.js +0 -5
- package/dist/api/types/ContactTags.d.ts +0 -17
- package/dist/api/types/ContactTags.js +0 -5
- package/dist/api/types/ContactUnarchived.d.ts +0 -16
- package/dist/api/types/ContactUnarchived.js +0 -5
- package/dist/api/types/ContentObject.d.ts +0 -13
- package/dist/api/types/ContentObject.js +0 -5
- package/dist/api/types/ContentSourcesList.d.ts +0 -11
- package/dist/api/types/ContentSourcesList.js +0 -5
- package/dist/api/types/Context.d.ts +0 -34
- package/dist/api/types/Context.js +0 -15
- package/dist/api/types/ConversationAttachmentFiles.d.ts +0 -14
- package/dist/api/types/ConversationAttachmentFiles.js +0 -5
- package/dist/api/types/ConversationContacts.d.ts +0 -12
- package/dist/api/types/ConversationContacts.js +0 -5
- package/dist/api/types/ConversationFirstContactReply.d.ts +0 -14
- package/dist/api/types/ConversationFirstContactReply.js +0 -5
- package/dist/api/types/ConversationPart.d.ts +0 -32
- package/dist/api/types/ConversationPart.js +0 -5
- package/dist/api/types/ConversationPartAuthor.d.ts +0 -16
- package/dist/api/types/ConversationPartAuthor.js +0 -5
- package/dist/api/types/ConversationParts.d.ts +0 -15
- package/dist/api/types/ConversationParts.js +0 -5
- package/dist/api/types/ConversationRating.d.ts +0 -17
- package/dist/api/types/ConversationRating.js +0 -5
- package/dist/api/types/ConversationSource.d.ts +0 -44
- package/dist/api/types/ConversationSource.js +0 -21
- package/dist/api/types/ConversationStatistics.d.ts +0 -46
- package/dist/api/types/ConversationStatistics.js +0 -5
- package/dist/api/types/ConversationTeammates.d.ts +0 -13
- package/dist/api/types/ConversationTeammates.js +0 -5
- package/dist/api/types/CreateContactRequest.d.ts +0 -37
- package/dist/api/types/CreateContactRequest.js +0 -5
- package/dist/api/types/CreateContactRequestTwo.d.ts +0 -4
- package/dist/api/types/CreateContactRequestTwo.js +0 -5
- package/dist/api/types/CreateDataEventRequest.d.ts +0 -22
- package/dist/api/types/CreateDataEventRequest.js +0 -5
- package/dist/api/types/CreateDataEventRequestTwo.d.ts +0 -4
- package/dist/api/types/CreateDataEventRequestTwo.js +0 -5
- package/dist/api/types/CreateMessageRequest.d.ts +0 -104
- package/dist/api/types/CreateMessageRequest.js +0 -29
- package/dist/api/types/CreateMessageRequestTwo.d.ts +0 -4
- package/dist/api/types/CreateMessageRequestTwo.js +0 -5
- package/dist/api/types/CreateOrUpdateTagRequest.d.ts +0 -12
- package/dist/api/types/CreateOrUpdateTagRequest.js +0 -5
- package/dist/api/types/CreateTicketReplyWithCommentRequest.d.ts +0 -5
- package/dist/api/types/CreateTicketReplyWithCommentRequest.js +0 -5
- package/dist/api/types/CreateTicketRequest.d.ts +0 -30
- package/dist/api/types/CreateTicketRequest.js +0 -5
- package/dist/api/types/CurrentCanvas.d.ts +0 -11
- package/dist/api/types/CurrentCanvas.js +0 -5
- package/dist/api/types/CursorPages.d.ts +0 -19
- package/dist/api/types/CursorPages.js +0 -5
- package/dist/api/types/CustomAttributes.d.ts +0 -7
- package/dist/api/types/CustomAttributes.js +0 -5
- package/dist/api/types/CustomerRequest.d.ts +0 -10
- package/dist/api/types/CustomerRequest.js +0 -5
- package/dist/api/types/DataAttributeList.d.ts +0 -13
- package/dist/api/types/DataAttributeList.js +0 -5
- package/dist/api/types/DataEventList.d.ts +0 -24
- package/dist/api/types/DataEventList.js +0 -5
- package/dist/api/types/DataEventSummary.d.ts +0 -19
- package/dist/api/types/DataEventSummary.js +0 -5
- package/dist/api/types/DataEventSummaryItem.d.ts +0 -18
- package/dist/api/types/DataEventSummaryItem.js +0 -5
- package/dist/api/types/DataExportCsv.d.ts +0 -60
- package/dist/api/types/DataExportCsv.js +0 -5
- package/dist/api/types/DataTableComponent.d.ts +0 -11
- package/dist/api/types/DataTableComponent.js +0 -5
- package/dist/api/types/DataTableItem.d.ts +0 -14
- package/dist/api/types/DataTableItem.js +0 -5
- package/dist/api/types/DeletedArticleObject.d.ts +0 -14
- package/dist/api/types/DeletedArticleObject.js +0 -5
- package/dist/api/types/DeletedCollectionObject.d.ts +0 -14
- package/dist/api/types/DeletedCollectionObject.js +0 -5
- package/dist/api/types/DeletedCompanyObject.d.ts +0 -14
- package/dist/api/types/DeletedCompanyObject.js +0 -5
- package/dist/api/types/DeletedObject.d.ts +0 -14
- package/dist/api/types/DeletedObject.js +0 -5
- package/dist/api/types/DividerComponent.d.ts +0 -12
- package/dist/api/types/DividerComponent.js +0 -5
- package/dist/api/types/DropdownComponent.d.ts +0 -34
- package/dist/api/types/DropdownComponent.js +0 -14
- package/dist/api/types/DropdownOption.d.ts +0 -16
- package/dist/api/types/DropdownOption.js +0 -5
- package/dist/api/types/Error_.d.ts +0 -27
- package/dist/api/types/Error_.js +0 -5
- package/dist/api/types/Event.d.ts +0 -10
- package/dist/api/types/Event.js +0 -5
- package/dist/api/types/FileAttribute.d.ts +0 -21
- package/dist/api/types/FileAttribute.js +0 -5
- package/dist/api/types/GroupContent.d.ts +0 -14
- package/dist/api/types/GroupContent.js +0 -5
- package/dist/api/types/GroupTranslatedContent.d.ts +0 -85
- package/dist/api/types/GroupTranslatedContent.js +0 -5
- package/dist/api/types/ImageComponent.d.ts +0 -40
- package/dist/api/types/ImageComponent.js +0 -15
- package/dist/api/types/InitializeRequest.d.ts +0 -23
- package/dist/api/types/InitializeRequest.js +0 -5
- package/dist/api/types/InitializeResponse.d.ts +0 -11
- package/dist/api/types/InitializeResponse.js +0 -5
- package/dist/api/types/InputComponent.d.ts +0 -37
- package/dist/api/types/InputComponent.js +0 -14
- package/dist/api/types/LinkedObject.d.ts +0 -24
- package/dist/api/types/LinkedObject.js +0 -13
- package/dist/api/types/LinkedObjectList.d.ts +0 -17
- package/dist/api/types/LinkedObjectList.js +0 -5
- package/dist/api/types/ListComponent.d.ts +0 -23
- package/dist/api/types/ListComponent.js +0 -5
- package/dist/api/types/ListItem.d.ts +0 -25
- package/dist/api/types/ListItem.js +0 -5
- package/dist/api/types/ListItemWithImage.d.ts +0 -12
- package/dist/api/types/ListItemWithImage.js +0 -5
- package/dist/api/types/ListItemWithoutImage.d.ts +0 -12
- package/dist/api/types/ListItemWithoutImage.js +0 -5
- package/dist/api/types/LiveCanvasRequest.d.ts +0 -21
- package/dist/api/types/LiveCanvasRequest.js +0 -5
- package/dist/api/types/LiveCanvasResponse.d.ts +0 -11
- package/dist/api/types/LiveCanvasResponse.js +0 -5
- package/dist/api/types/Metadata.d.ts +0 -5
- package/dist/api/types/Metadata.js +0 -5
- package/dist/api/types/MultipleFilterSearchRequest.d.ts +0 -22
- package/dist/api/types/MultipleFilterSearchRequest.js +0 -13
- package/dist/api/types/MultipleOrSingleFilterSearchRequest.d.ts +0 -5
- package/dist/api/types/MultipleOrSingleFilterSearchRequest.js +0 -5
- package/dist/api/types/NewsItemRequest.d.ts +0 -35
- package/dist/api/types/NewsItemRequest.js +0 -13
- package/dist/api/types/NoteList.d.ts +0 -16
- package/dist/api/types/NoteList.js +0 -5
- package/dist/api/types/OffsetPages.d.ts +0 -14
- package/dist/api/types/OffsetPages.js +0 -5
- package/dist/api/types/OpenConversationRequest.d.ts +0 -10
- package/dist/api/types/OpenConversationRequest.js +0 -5
- package/dist/api/types/PagesLink.d.ts +0 -16
- package/dist/api/types/PagesLink.js +0 -5
- package/dist/api/types/PaginatedConversationResponse.d.ts +0 -16
- package/dist/api/types/PaginatedConversationResponse.js +0 -5
- package/dist/api/types/PaginatedNewsItemResponse.d.ts +0 -16
- package/dist/api/types/PaginatedNewsItemResponse.js +0 -5
- package/dist/api/types/PaginatedNewsfeedResponse.d.ts +0 -16
- package/dist/api/types/PaginatedNewsfeedResponse.js +0 -5
- package/dist/api/types/PartAttachment.d.ts +0 -22
- package/dist/api/types/PartAttachment.js +0 -5
- package/dist/api/types/PhoneSwitch.d.ts +0 -12
- package/dist/api/types/PhoneSwitch.js +0 -5
- package/dist/api/types/RedactConversationRequest.d.ts +0 -27
- package/dist/api/types/RedactConversationRequest.js +0 -5
- package/dist/api/types/Reference.d.ts +0 -12
- package/dist/api/types/Reference.js +0 -5
- package/dist/api/types/ReplyConversationRequest.d.ts +0 -5
- package/dist/api/types/ReplyConversationRequest.js +0 -5
- package/dist/api/types/ResultsResponse.d.ts +0 -10
- package/dist/api/types/ResultsResponse.js +0 -5
- package/dist/api/types/SearchRequest.d.ts +0 -14
- package/dist/api/types/SearchRequest.js +0 -5
- package/dist/api/types/SegmentList.d.ts +0 -15
- package/dist/api/types/SegmentList.js +0 -5
- package/dist/api/types/SheetActionComponent.d.ts +0 -12
- package/dist/api/types/SheetActionComponent.js +0 -5
- package/dist/api/types/SingleFilterSearchRequest.d.ts +0 -36
- package/dist/api/types/SingleFilterSearchRequest.js +0 -21
- package/dist/api/types/SingleSelectComponent.d.ts +0 -39
- package/dist/api/types/SingleSelectComponent.js +0 -14
- package/dist/api/types/SingleSelectOption.d.ts +0 -16
- package/dist/api/types/SingleSelectOption.js +0 -5
- package/dist/api/types/SlaApplied.d.ts +0 -35
- package/dist/api/types/SlaApplied.js +0 -15
- package/dist/api/types/SnoozeConversationRequest.d.ts +0 -12
- package/dist/api/types/SnoozeConversationRequest.js +0 -5
- package/dist/api/types/SocialProfile.d.ts +0 -14
- package/dist/api/types/SocialProfile.js +0 -5
- package/dist/api/types/SpacerComponent.d.ts +0 -25
- package/dist/api/types/SpacerComponent.js +0 -16
- package/dist/api/types/StartingAfterPaging.d.ts +0 -9
- package/dist/api/types/StartingAfterPaging.js +0 -5
- package/dist/api/types/SubmitActionComponent.d.ts +0 -8
- package/dist/api/types/SubmitActionComponent.js +0 -5
- package/dist/api/types/SubmitRequest.d.ts +0 -29
- package/dist/api/types/SubmitRequest.js +0 -5
- package/dist/api/types/SubmitResponse.d.ts +0 -23
- package/dist/api/types/SubmitResponse.js +0 -5
- package/dist/api/types/SubscriptionTypeList.d.ts +0 -13
- package/dist/api/types/SubscriptionTypeList.js +0 -5
- package/dist/api/types/TagCompanyRequest.d.ts +0 -23
- package/dist/api/types/TagCompanyRequest.js +0 -5
- package/dist/api/types/TagList.d.ts +0 -13
- package/dist/api/types/TagList.js +0 -5
- package/dist/api/types/TagMultipleUsersRequest.d.ts +0 -20
- package/dist/api/types/TagMultipleUsersRequest.js +0 -5
- package/dist/api/types/Tags.d.ts +0 -13
- package/dist/api/types/Tags.js +0 -5
- package/dist/api/types/TeamList.d.ts +0 -13
- package/dist/api/types/TeamList.js +0 -5
- package/dist/api/types/TeamPriorityLevel.d.ts +0 -12
- package/dist/api/types/TeamPriorityLevel.js +0 -5
- package/dist/api/types/TextAreaComponent.d.ts +0 -22
- package/dist/api/types/TextAreaComponent.js +0 -5
- package/dist/api/types/TextComponent.d.ts +0 -39
- package/dist/api/types/TextComponent.js +0 -20
- package/dist/api/types/TicketCustomAttributes.d.ts +0 -7
- package/dist/api/types/TicketCustomAttributes.js +0 -5
- package/dist/api/types/TicketList.d.ts +0 -16
- package/dist/api/types/TicketList.js +0 -5
- package/dist/api/types/TicketPartAuthor.d.ts +0 -28
- package/dist/api/types/TicketPartAuthor.js +0 -15
- package/dist/api/types/TicketParts.d.ts +0 -15
- package/dist/api/types/TicketParts.js +0 -5
- package/dist/api/types/TicketReply.d.ts +0 -37
- package/dist/api/types/TicketReply.js +0 -14
- package/dist/api/types/TicketRequestCustomAttributes.d.ts +0 -7
- package/dist/api/types/TicketRequestCustomAttributes.js +0 -5
- package/dist/api/types/TicketTypeAttribute.d.ts +0 -57
- package/dist/api/types/TicketTypeAttribute.js +0 -18
- package/dist/api/types/TicketTypeAttributeList.d.ts +0 -13
- package/dist/api/types/TicketTypeAttributeList.js +0 -5
- package/dist/api/types/TicketTypeList.d.ts +0 -13
- package/dist/api/types/TicketTypeList.js +0 -5
- package/dist/api/types/Translation.d.ts +0 -14
- package/dist/api/types/Translation.js +0 -5
- package/dist/api/types/UntagCompanyRequest.d.ts +0 -25
- package/dist/api/types/UntagCompanyRequest.js +0 -5
- package/dist/api/types/UpdateVisitorRequest.d.ts +0 -15
- package/dist/api/types/UpdateVisitorRequest.js +0 -5
- package/dist/api/types/UpdateVisitorRequestOne.d.ts +0 -4
- package/dist/api/types/UpdateVisitorRequestOne.js +0 -5
- package/dist/api/types/UrlActionComponent.d.ts +0 -10
- package/dist/api/types/UrlActionComponent.js +0 -5
- package/dist/api/types/Visitor.d.ts +0 -128
- package/dist/api/types/Visitor.js +0 -5
- package/dist/api/types/VisitorDeletedObject.d.ts +0 -14
- package/dist/api/types/VisitorDeletedObject.js +0 -5
- package/dist/api/types/index.d.ts +0 -165
- package/dist/api/types/index.js +0 -181
- package/dist/api/version.d.ts +0 -5
- package/dist/api/version.js +0 -5
- package/dist/core/auth/BasicAuth.js +0 -26
- package/dist/core/auth/BearerToken.d.ts +0 -5
- package/dist/core/auth/BearerToken.js +0 -15
- package/dist/core/auth/index.d.ts +0 -2
- package/dist/core/auth/index.js +0 -7
- package/dist/core/fetcher/APIResponse.d.ts +0 -20
- package/dist/core/fetcher/Fetcher.d.ts +0 -39
- package/dist/core/fetcher/Fetcher.js +0 -107
- package/dist/core/fetcher/Headers.js +0 -84
- package/dist/core/fetcher/HttpResponsePromise.d.ts +0 -58
- package/dist/core/fetcher/HttpResponsePromise.js +0 -103
- package/dist/core/fetcher/RawResponse.js +0 -44
- package/dist/core/fetcher/Supplier.js +0 -22
- package/dist/core/fetcher/createRequestUrl.d.ts +0 -1
- package/dist/core/fetcher/createRequestUrl.js +0 -12
- package/dist/core/fetcher/getFetchFn.d.ts +0 -4
- package/dist/core/fetcher/getFetchFn.js +0 -68
- package/dist/core/fetcher/getHeader.js +0 -11
- package/dist/core/fetcher/getRequestBody.d.ts +0 -7
- package/dist/core/fetcher/getRequestBody.js +0 -23
- package/dist/core/fetcher/getResponseBody.js +0 -54
- package/dist/core/fetcher/index.d.ts +0 -8
- package/dist/core/fetcher/index.js +0 -15
- package/dist/core/fetcher/makeRequest.d.ts +0 -1
- package/dist/core/fetcher/makeRequest.js +0 -42
- package/dist/core/fetcher/requestWithRetries.js +0 -40
- package/dist/core/fetcher/signals.d.ts +0 -11
- package/dist/core/fetcher/signals.js +0 -36
- package/dist/core/fetcher/stream-wrappers/Node18UniversalStreamWrapper.d.ts +0 -30
- package/dist/core/fetcher/stream-wrappers/Node18UniversalStreamWrapper.js +0 -247
- package/dist/core/fetcher/stream-wrappers/NodePre18StreamWrapper.d.ts +0 -21
- package/dist/core/fetcher/stream-wrappers/NodePre18StreamWrapper.js +0 -126
- package/dist/core/fetcher/stream-wrappers/UndiciStreamWrapper.d.ts +0 -31
- package/dist/core/fetcher/stream-wrappers/UndiciStreamWrapper.js +0 -229
- package/dist/core/fetcher/stream-wrappers/chooseStreamWrapper.d.ts +0 -18
- package/dist/core/fetcher/stream-wrappers/chooseStreamWrapper.js +0 -59
- package/dist/core/index.d.ts +0 -5
- package/dist/core/index.js +0 -21
- package/dist/core/json.js +0 -24
- package/dist/core/pagination/Page.d.ts +0 -32
- package/dist/core/pagination/Page.js +0 -100
- package/dist/core/pagination/Pageable.d.ts +0 -14
- package/dist/core/pagination/Pageable.js +0 -10
- package/dist/core/pagination/index.d.ts +0 -2
- package/dist/core/pagination/index.js +0 -7
- package/dist/core/runtime/index.d.ts +0 -1
- package/dist/core/runtime/index.js +0 -5
- package/dist/core/runtime/runtime.js +0 -103
- package/dist/core/utils/index.d.ts +0 -1
- package/dist/core/utils/index.js +0 -5
- package/dist/core/utils/setObjectProperty.js +0 -42
- package/dist/environments.d.ts +0 -9
- package/dist/environments.js +0 -11
- package/dist/errors/IntercomError.d.ts +0 -15
- package/dist/errors/IntercomError.js +0 -30
- package/dist/errors/IntercomTimeoutError.d.ts +0 -6
- package/dist/errors/IntercomTimeoutError.js +0 -13
- package/dist/errors/index.d.ts +0 -2
- package/dist/errors/index.js +0 -7
- package/dist/index.d.ts +0 -4
- package/dist/index.js +0 -44
- package/dist/version.d.ts +0 -1
- package/dist/version.js +0 -4
- package/environments.d.ts +0 -9
- package/environments.js +0 -11
- package/errors/IntercomError.d.ts +0 -15
- package/errors/IntercomError.js +0 -30
- package/errors/IntercomTimeoutError.d.ts +0 -6
- package/errors/IntercomTimeoutError.js +0 -13
- package/errors/index.d.ts +0 -2
- package/errors/index.js +0 -7
- package/index.d.ts +0 -4
- package/index.js +0 -44
- package/jest.config.mjs +0 -8
- package/scripts/rename-to-esm-files.js +0 -115
- package/version.d.ts +0 -1
- package/version.js +0 -4
- /package/{api → dist/cjs/api}/resources/admins/client/requests/index.js +0 -0
- /package/{api/resources/articles → dist/cjs/api/resources/aiContent}/client/requests/index.js +0 -0
- /package/{api/resources/companies → dist/cjs/api/resources/articles}/client/requests/index.js +0 -0
- /package/{api/resources/messages → dist/cjs/api/resources/awayStatusReasons}/client/index.d.ts +0 -0
- /package/{api/resources/contacts/client/requests → dist/cjs/api/resources/awayStatusReasons/client}/index.js +0 -0
- /package/{api/resources/conversations → dist/cjs/api/resources/calls}/client/requests/index.js +0 -0
- /package/{api/resources/dataAttributes → dist/cjs/api/resources/companies}/client/requests/index.js +0 -0
- /package/{api/resources/dataExport → dist/cjs/api/resources/contacts}/client/requests/index.js +0 -0
- /package/{api/resources/events → dist/cjs/api/resources/conversations}/client/requests/index.js +0 -0
- /package/{api/resources/helpCenters → dist/cjs/api/resources/customChannelEvents}/client/requests/index.js +0 -0
- /package/{api/resources/helpCenters/resources/collections → dist/cjs/api/resources/customObjectInstances}/client/requests/index.js +0 -0
- /package/{api/resources/messages/client → dist/cjs/api/resources/dataAttributes/client/requests}/index.js +0 -0
- /package/{api/resources/news/client → dist/cjs/api/resources/dataExport/client/requests}/index.js +0 -0
- /package/{api/resources/news/resources/feeds → dist/cjs/api/resources/events}/client/requests/index.js +0 -0
- /package/{api/resources/news/resources/items → dist/cjs/api/resources/export}/client/requests/index.js +0 -0
- /package/{api/resources/notes → dist/cjs/api/resources/helpCenters}/client/requests/index.js +0 -0
- /package/{api/resources/phoneCallRedirects → dist/cjs/api/resources/helpCenters/resources/collections}/client/requests/index.js +0 -0
- /package/{api/resources/segments → dist/cjs/api/resources/internalArticles}/client/requests/index.js +0 -0
- /package/{api/resources/subscriptionTypes/client → dist/cjs/api/resources/jobs/client/requests}/index.js +0 -0
- /package/{api/resources/news → dist/cjs/api/resources/messages}/client/index.d.ts +0 -0
- /package/{api/resources/tags/client/requests → dist/cjs/api/resources/messages/client}/index.js +0 -0
- /package/{api/resources/subscriptionTypes → dist/cjs/api/resources/news}/client/index.d.ts +0 -0
- /package/{api/resources/teams/client/requests → dist/cjs/api/resources/news/client}/index.js +0 -0
- /package/{api/resources/ticketTypes → dist/cjs/api/resources/news/resources/feeds}/client/requests/index.js +0 -0
- /package/{api/resources/ticketTypes/resources/attributes → dist/cjs/api/resources/news/resources/items}/client/requests/index.js +0 -0
- /package/{api/resources/tickets → dist/cjs/api/resources/notes}/client/requests/index.js +0 -0
- /package/{api/resources/unstable → dist/cjs/api/resources/phoneCallRedirects}/client/index.d.ts +0 -0
- /package/{api/resources/unstable → dist/cjs/api/resources/phoneCallRedirects}/client/index.js +0 -0
- /package/{api/resources/unstable/resources/admins → dist/cjs/api/resources/segments}/client/requests/index.js +0 -0
- /package/{api/resources/unstable/resources/awayStatusReasons → dist/cjs/api/resources/subscriptionTypes}/client/index.d.ts +0 -0
- /package/{api/resources/unstable/resources/aiContent/client/requests → dist/cjs/api/resources/subscriptionTypes/client}/index.js +0 -0
- /package/{api/resources/unstable/resources/articles → dist/cjs/api/resources/tags}/client/requests/index.js +0 -0
- /package/{api/resources/unstable/resources/awayStatusReasons/client → dist/cjs/api/resources/teams/client/requests}/index.js +0 -0
- /package/{api/resources/unstable/resources/switch → dist/cjs/api/resources/ticketStates}/client/index.d.ts +0 -0
- /package/{api/resources/unstable/resources/companies/client/requests → dist/cjs/api/resources/ticketStates/client}/index.js +0 -0
- /package/{api/resources/unstable/resources/contacts → dist/cjs/api/resources/ticketTypes}/client/requests/index.js +0 -0
- /package/{api/resources/unstable/resources/conversations → dist/cjs/api/resources/ticketTypes/resources/attributes}/client/requests/index.js +0 -0
- /package/{api/resources/unstable/resources/customChannelEvents → dist/cjs/api/resources/tickets}/client/requests/index.js +0 -0
- /package/{api/resources/unstable/resources/ticketStates → dist/cjs/api/resources/unstable}/client/index.d.ts +0 -0
- /package/{api/resources/unstable/resources/customObjectInstances/client/requests → dist/cjs/api/resources/unstable/client}/index.js +0 -0
- /package/{api/resources/unstable/resources/dataAttributes → dist/cjs/api/resources/unstable/resources/admins}/client/requests/index.js +0 -0
- /package/{api/resources/unstable/resources/dataEvents → dist/cjs/api/resources/unstable/resources/aiContent}/client/requests/index.js +0 -0
- /package/{api/resources/unstable/resources/dataExport → dist/cjs/api/resources/unstable/resources/articles}/client/requests/index.js +0 -0
- /package/dist/{api/resources/messages → cjs/api/resources/unstable/resources/awayStatusReasons}/client/index.d.ts +0 -0
- /package/{api/resources/unstable/resources/export/client/requests → dist/cjs/api/resources/unstable/resources/awayStatusReasons/client}/index.js +0 -0
- /package/{api/resources/unstable/resources/helpCenter → dist/cjs/api/resources/unstable/resources/brands}/client/requests/index.js +0 -0
- /package/{api/resources/unstable/resources/jobs → dist/cjs/api/resources/unstable/resources/calls}/client/requests/index.js +0 -0
- /package/{api/resources/unstable/resources/messages → dist/cjs/api/resources/unstable/resources/companies}/client/requests/index.js +0 -0
- /package/{api/resources/unstable/resources/news → dist/cjs/api/resources/unstable/resources/contacts}/client/requests/index.js +0 -0
- /package/{api/resources/unstable/resources/notes → dist/cjs/api/resources/unstable/resources/conversations}/client/requests/index.js +0 -0
- /package/{api/resources/unstable/resources/segments → dist/cjs/api/resources/unstable/resources/customChannelEvents}/client/requests/index.js +0 -0
- /package/{api/resources/unstable/resources/subscriptionTypes → dist/cjs/api/resources/unstable/resources/customObjectInstances}/client/requests/index.js +0 -0
- /package/{api/resources/unstable/resources/switch/client → dist/cjs/api/resources/unstable/resources/dataAttributes/client/requests}/index.js +0 -0
- /package/{api/resources/unstable/resources/tags → dist/cjs/api/resources/unstable/resources/dataEvents}/client/requests/index.js +0 -0
- /package/{api/resources/unstable/resources/teams → dist/cjs/api/resources/unstable/resources/dataExport}/client/requests/index.js +0 -0
- /package/{api/resources/unstable/resources/ticketStates/client → dist/cjs/api/resources/unstable/resources/emails/client/requests}/index.js +0 -0
- /package/{api/resources/unstable/resources/ticketTypeAttributes → dist/cjs/api/resources/unstable/resources/export}/client/requests/index.js +0 -0
- /package/{api/resources/unstable/resources/ticketTypes → dist/cjs/api/resources/unstable/resources/helpCenter}/client/requests/index.js +0 -0
- /package/{api/resources/unstable/resources/tickets → dist/cjs/api/resources/unstable/resources/internalArticles}/client/requests/index.js +0 -0
- /package/{api/resources/unstable/resources/visitors → dist/cjs/api/resources/unstable/resources/jobs}/client/requests/index.js +0 -0
- /package/{api/resources/visitors → dist/cjs/api/resources/unstable/resources/macros}/client/requests/index.js +0 -0
- /package/dist/{api/resources/admins → cjs/api/resources/unstable/resources/messages}/client/requests/index.js +0 -0
- /package/dist/{api/resources/articles → cjs/api/resources/unstable/resources/news}/client/requests/index.js +0 -0
- /package/dist/{api/resources/companies → cjs/api/resources/unstable/resources/notes}/client/requests/index.js +0 -0
- /package/dist/{api/resources/contacts → cjs/api/resources/unstable/resources/segments}/client/requests/index.js +0 -0
- /package/dist/{api/resources/conversations → cjs/api/resources/unstable/resources/subscriptionTypes}/client/requests/index.js +0 -0
- /package/dist/{api/resources/news → cjs/api/resources/unstable/resources/switch}/client/index.d.ts +0 -0
- /package/dist/{api/resources/dataAttributes/client/requests → cjs/api/resources/unstable/resources/switch/client}/index.js +0 -0
- /package/dist/{api/resources/dataExport → cjs/api/resources/unstable/resources/tags}/client/requests/index.js +0 -0
- /package/dist/{api/resources/events → cjs/api/resources/unstable/resources/teams}/client/requests/index.js +0 -0
- /package/dist/{api/resources/subscriptionTypes → cjs/api/resources/unstable/resources/ticketStates}/client/index.d.ts +0 -0
- /package/dist/{api/resources/helpCenters/client/requests → cjs/api/resources/unstable/resources/ticketStates/client}/index.js +0 -0
- /package/dist/{api/resources/helpCenters/resources/collections → cjs/api/resources/unstable/resources/ticketTypeAttributes}/client/requests/index.js +0 -0
- /package/dist/{api/resources/messages/client → cjs/api/resources/unstable/resources/ticketTypes/client/requests}/index.js +0 -0
- /package/dist/{api/resources/news/client → cjs/api/resources/unstable/resources/tickets/client/requests}/index.js +0 -0
- /package/dist/{api/resources/news/resources/feeds → cjs/api/resources/unstable/resources/visitors}/client/requests/index.js +0 -0
- /package/dist/{api/resources/news/resources/items → cjs/api/resources/visitors}/client/requests/index.js +0 -0
- /package/{core/fetcher/APIResponse.js → dist/cjs/core/auth/AuthProvider.js} +0 -0
- /package/dist/{api/resources/notes/client/requests/index.js → cjs/core/auth/AuthRequest.js} +0 -0
- /package/{core → dist/cjs/core}/auth/BasicAuth.d.ts +0 -0
- /package/dist/{core → cjs/core}/fetcher/APIResponse.js +0 -0
- /package/dist/{api/resources/phoneCallRedirects/client/requests/index.js → cjs/core/fetcher/EndpointMetadata.js} +0 -0
- /package/{core → dist/cjs/core}/fetcher/Headers.d.ts +0 -0
- /package/{core → dist/cjs/core}/fetcher/Headers.js +0 -0
- /package/{core → dist/cjs/core}/fetcher/HttpResponsePromise.js +0 -0
- /package/{core → dist/cjs/core}/fetcher/RawResponse.d.ts +0 -0
- /package/{core → dist/cjs/core}/fetcher/Supplier.d.ts +0 -0
- /package/{core → dist/cjs/core}/fetcher/Supplier.js +0 -0
- /package/{core → dist/cjs/core}/fetcher/getHeader.d.ts +0 -0
- /package/{core → dist/cjs/core}/fetcher/getHeader.js +0 -0
- /package/{core → dist/cjs/core}/fetcher/getResponseBody.d.ts +0 -0
- /package/{core → dist/cjs/core}/fetcher/requestWithRetries.d.ts +0 -0
- /package/{core → dist/cjs/core}/json.d.ts +0 -0
- /package/{core → dist/cjs/core}/json.js +0 -0
- /package/dist/{api/resources/segments/client/requests/index.js → cjs/core/pagination/exports.js} +0 -0
- /package/{core → dist/cjs/core}/runtime/runtime.d.ts +0 -0
- /package/{core → dist/cjs/core}/utils/setObjectProperty.d.ts +0 -0
- /package/{core → dist/cjs/core}/utils/setObjectProperty.js +0 -0
- /package/dist/{api/resources/unstable/client/index.d.ts → esm/api/resources/admins/client/requests/index.mjs} +0 -0
- /package/dist/{api/resources/unstable/resources/awayStatusReasons/client/index.d.ts → esm/api/resources/aiContent/client/requests/index.mjs} +0 -0
- /package/dist/{api/resources/unstable/resources/switch/client/index.d.ts → esm/api/resources/articles/client/requests/index.mjs} +0 -0
- /package/dist/{api/resources/unstable/resources/ticketStates/client/index.d.ts → esm/api/resources/awayStatusReasons/client/index.d.mts} +0 -0
- /package/dist/{core/auth/BasicAuth.d.ts → esm/core/auth/BasicAuth.d.mts} +0 -0
- /package/dist/{core/fetcher/Headers.d.ts → esm/core/fetcher/Headers.d.mts} +0 -0
- /package/dist/{core/fetcher/RawResponse.d.ts → esm/core/fetcher/RawResponse.d.mts} +0 -0
- /package/dist/{core/fetcher/Supplier.d.ts → esm/core/fetcher/Supplier.d.mts} +0 -0
- /package/dist/{core/fetcher/getHeader.d.ts → esm/core/fetcher/getHeader.d.mts} +0 -0
- /package/dist/{core/fetcher/getResponseBody.d.ts → esm/core/fetcher/getResponseBody.d.mts} +0 -0
- /package/dist/{core/fetcher/requestWithRetries.d.ts → esm/core/fetcher/requestWithRetries.d.mts} +0 -0
- /package/dist/{core/json.d.ts → esm/core/json.d.mts} +0 -0
- /package/dist/{core/runtime/runtime.d.ts → esm/core/runtime/runtime.d.mts} +0 -0
- /package/dist/{core/utils/setObjectProperty.d.ts → esm/core/utils/setObjectProperty.d.mts} +0 -0
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from "./requests";
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
-
if (k2 === undefined) k2 = k;
|
|
4
|
-
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
-
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
-
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
-
}
|
|
8
|
-
Object.defineProperty(o, k2, desc);
|
|
9
|
-
}) : (function(o, m, k, k2) {
|
|
10
|
-
if (k2 === undefined) k2 = k;
|
|
11
|
-
o[k2] = m[k];
|
|
12
|
-
}));
|
|
13
|
-
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
14
|
-
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
|
-
};
|
|
16
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
-
__exportStar(require("./requests"), exports);
|
|
@@ -1,30 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* This file was auto-generated by Fern from our API Definition.
|
|
3
|
-
*/
|
|
4
|
-
/**
|
|
5
|
-
* @example
|
|
6
|
-
* {
|
|
7
|
-
* contact_id: "contact_id",
|
|
8
|
-
* id: "667d608d8a68186f43bafd70"
|
|
9
|
-
* }
|
|
10
|
-
*
|
|
11
|
-
* @example
|
|
12
|
-
* {
|
|
13
|
-
* contact_id: "contact_id",
|
|
14
|
-
* id: "58a430d35458202d41b1e65b"
|
|
15
|
-
* }
|
|
16
|
-
*
|
|
17
|
-
* @example
|
|
18
|
-
* {
|
|
19
|
-
* contact_id: "contact_id",
|
|
20
|
-
* id: "123"
|
|
21
|
-
* }
|
|
22
|
-
*/
|
|
23
|
-
export interface AttachContactToCompanyRequest {
|
|
24
|
-
/**
|
|
25
|
-
* The unique identifier for the contact which is given by Intercom
|
|
26
|
-
*/
|
|
27
|
-
contact_id: string;
|
|
28
|
-
/** The unique identifier for the company which is given by Intercom */
|
|
29
|
-
id: string;
|
|
30
|
-
}
|
|
@@ -1,34 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* This file was auto-generated by Fern from our API Definition.
|
|
3
|
-
*/
|
|
4
|
-
/**
|
|
5
|
-
* @example
|
|
6
|
-
* {
|
|
7
|
-
* name: "my company",
|
|
8
|
-
* company_id: "company_remote_id",
|
|
9
|
-
* remote_created_at: 1374138000
|
|
10
|
-
* }
|
|
11
|
-
*
|
|
12
|
-
* @example
|
|
13
|
-
* {}
|
|
14
|
-
*/
|
|
15
|
-
export interface CreateOrUpdateCompanyRequest {
|
|
16
|
-
/** The name of the Company */
|
|
17
|
-
name?: string;
|
|
18
|
-
/** The company id you have defined for the company. Can't be updated */
|
|
19
|
-
company_id?: string;
|
|
20
|
-
/** The name of the plan you have associated with the company. */
|
|
21
|
-
plan?: string;
|
|
22
|
-
/** The number of employees in this company. */
|
|
23
|
-
size?: number;
|
|
24
|
-
/** The URL for this company's website. Please note that the value specified here is not validated. Accepts any string. */
|
|
25
|
-
website?: string;
|
|
26
|
-
/** The industry that this company operates in. */
|
|
27
|
-
industry?: string;
|
|
28
|
-
/** A hash of key/value pairs containing any other data about the company you want Intercom to store. */
|
|
29
|
-
custom_attributes?: Record<string, unknown>;
|
|
30
|
-
/** The time the company was created by you. */
|
|
31
|
-
remote_created_at?: number;
|
|
32
|
-
/** How much revenue the company generates for your business. Note that this will truncate floats. i.e. it only allow for whole integers, 155.98 will be truncated to 155. Note that this has an upper limit of 2**31-1 or 2147483647.. */
|
|
33
|
-
monthly_spend?: number;
|
|
34
|
-
}
|
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* This file was auto-generated by Fern from our API Definition.
|
|
3
|
-
*/
|
|
4
|
-
/**
|
|
5
|
-
* @example
|
|
6
|
-
* {
|
|
7
|
-
* company_id: "5f4d3c1c-7b1b-4d7d-a97e-6095715c6632"
|
|
8
|
-
* }
|
|
9
|
-
*/
|
|
10
|
-
export interface DeleteCompanyRequest {
|
|
11
|
-
/**
|
|
12
|
-
* The unique identifier for the company which is given by Intercom
|
|
13
|
-
*/
|
|
14
|
-
company_id: string;
|
|
15
|
-
}
|
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* This file was auto-generated by Fern from our API Definition.
|
|
3
|
-
*/
|
|
4
|
-
/**
|
|
5
|
-
* @example
|
|
6
|
-
* {
|
|
7
|
-
* contact_id: "58a430d35458202d41b1e65b",
|
|
8
|
-
* company_id: "58a430d35458202d41b1e65b"
|
|
9
|
-
* }
|
|
10
|
-
*/
|
|
11
|
-
export interface DetachContactFromCompanyRequest {
|
|
12
|
-
/**
|
|
13
|
-
* The unique identifier for the contact which is given by Intercom
|
|
14
|
-
*/
|
|
15
|
-
contact_id: string;
|
|
16
|
-
/**
|
|
17
|
-
* The unique identifier for the company which is given by Intercom
|
|
18
|
-
*/
|
|
19
|
-
company_id: string;
|
|
20
|
-
}
|
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* This file was auto-generated by Fern from our API Definition.
|
|
3
|
-
*/
|
|
4
|
-
/**
|
|
5
|
-
* @example
|
|
6
|
-
* {
|
|
7
|
-
* company_id: "5f4d3c1c-7b1b-4d7d-a97e-6095715c6632"
|
|
8
|
-
* }
|
|
9
|
-
*/
|
|
10
|
-
export interface FindCompanyRequest {
|
|
11
|
-
/**
|
|
12
|
-
* The unique identifier for the company which is given by Intercom
|
|
13
|
-
*/
|
|
14
|
-
company_id: string;
|
|
15
|
-
}
|
|
@@ -1,23 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* This file was auto-generated by Fern from our API Definition.
|
|
3
|
-
*/
|
|
4
|
-
/**
|
|
5
|
-
* @example
|
|
6
|
-
* {
|
|
7
|
-
* company_id: "5f4d3c1c-7b1b-4d7d-a97e-6095715c6632"
|
|
8
|
-
* }
|
|
9
|
-
*/
|
|
10
|
-
export interface ListAttachedContactsRequest {
|
|
11
|
-
/**
|
|
12
|
-
* The unique identifier for the company which is given by Intercom
|
|
13
|
-
*/
|
|
14
|
-
company_id: string;
|
|
15
|
-
/**
|
|
16
|
-
* The page of results to fetch. Defaults to first page
|
|
17
|
-
*/
|
|
18
|
-
page?: number;
|
|
19
|
-
/**
|
|
20
|
-
* How many results to return per page. Defaults to 15
|
|
21
|
-
*/
|
|
22
|
-
per_page?: number;
|
|
23
|
-
}
|
|
@@ -1,23 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* This file was auto-generated by Fern from our API Definition.
|
|
3
|
-
*/
|
|
4
|
-
/**
|
|
5
|
-
* @example
|
|
6
|
-
* {
|
|
7
|
-
* order: "desc"
|
|
8
|
-
* }
|
|
9
|
-
*/
|
|
10
|
-
export interface ListCompaniesRequest {
|
|
11
|
-
/**
|
|
12
|
-
* The page of results to fetch. Defaults to first page
|
|
13
|
-
*/
|
|
14
|
-
page?: number;
|
|
15
|
-
/**
|
|
16
|
-
* How many results to return per page. Defaults to 15
|
|
17
|
-
*/
|
|
18
|
-
per_page?: number;
|
|
19
|
-
/**
|
|
20
|
-
* `asc` or `desc`. Return the companies in ascending or descending order. Defaults to desc
|
|
21
|
-
*/
|
|
22
|
-
order?: string;
|
|
23
|
-
}
|
package/dist/api/resources/companies/client/requests/ListSegmentsAttachedToCompanyRequest.d.ts
DELETED
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* This file was auto-generated by Fern from our API Definition.
|
|
3
|
-
*/
|
|
4
|
-
/**
|
|
5
|
-
* @example
|
|
6
|
-
* {
|
|
7
|
-
* company_id: "5f4d3c1c-7b1b-4d7d-a97e-6095715c6632"
|
|
8
|
-
* }
|
|
9
|
-
*/
|
|
10
|
-
export interface ListSegmentsAttachedToCompanyRequest {
|
|
11
|
-
/**
|
|
12
|
-
* The unique identifier for the company which is given by Intercom
|
|
13
|
-
*/
|
|
14
|
-
company_id: string;
|
|
15
|
-
}
|
|
@@ -1,38 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* This file was auto-generated by Fern from our API Definition.
|
|
3
|
-
*/
|
|
4
|
-
/**
|
|
5
|
-
* @example
|
|
6
|
-
* {
|
|
7
|
-
* name: "my company",
|
|
8
|
-
* company_id: "12345",
|
|
9
|
-
* tag_id: "678910",
|
|
10
|
-
* segment_id: "98765"
|
|
11
|
-
* }
|
|
12
|
-
*/
|
|
13
|
-
export interface RetrieveCompanyRequest {
|
|
14
|
-
/**
|
|
15
|
-
* The `name` of the company to filter by.
|
|
16
|
-
*/
|
|
17
|
-
name?: string;
|
|
18
|
-
/**
|
|
19
|
-
* The `company_id` of the company to filter by.
|
|
20
|
-
*/
|
|
21
|
-
company_id?: string;
|
|
22
|
-
/**
|
|
23
|
-
* The `tag_id` of the company to filter by.
|
|
24
|
-
*/
|
|
25
|
-
tag_id?: string;
|
|
26
|
-
/**
|
|
27
|
-
* The `segment_id` of the company to filter by.
|
|
28
|
-
*/
|
|
29
|
-
segment_id?: string;
|
|
30
|
-
/**
|
|
31
|
-
* The page of results to fetch. Defaults to first page
|
|
32
|
-
*/
|
|
33
|
-
page?: number;
|
|
34
|
-
/**
|
|
35
|
-
* How many results to display per page. Defaults to 15
|
|
36
|
-
*/
|
|
37
|
-
per_page?: number;
|
|
38
|
-
}
|
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* This file was auto-generated by Fern from our API Definition.
|
|
3
|
-
*/
|
|
4
|
-
/**
|
|
5
|
-
* @example
|
|
6
|
-
* {
|
|
7
|
-
* company_id: "5f4d3c1c-7b1b-4d7d-a97e-6095715c6632"
|
|
8
|
-
* }
|
|
9
|
-
*/
|
|
10
|
-
export interface UpdateCompanyRequest {
|
|
11
|
-
/**
|
|
12
|
-
* The unique identifier for the company which is given by Intercom
|
|
13
|
-
*/
|
|
14
|
-
company_id: string;
|
|
15
|
-
}
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
export { type RetrieveCompanyRequest } from "./RetrieveCompanyRequest";
|
|
2
|
-
export { type CreateOrUpdateCompanyRequest } from "./CreateOrUpdateCompanyRequest";
|
|
3
|
-
export { type FindCompanyRequest } from "./FindCompanyRequest";
|
|
4
|
-
export { type UpdateCompanyRequest } from "./UpdateCompanyRequest";
|
|
5
|
-
export { type DeleteCompanyRequest } from "./DeleteCompanyRequest";
|
|
6
|
-
export { type ListAttachedContactsRequest } from "./ListAttachedContactsRequest";
|
|
7
|
-
export { type ListSegmentsAttachedToCompanyRequest } from "./ListSegmentsAttachedToCompanyRequest";
|
|
8
|
-
export { type ListCompaniesRequest } from "./ListCompaniesRequest";
|
|
9
|
-
export { type ScrollCompaniesRequest } from "./ScrollCompaniesRequest";
|
|
10
|
-
export { type AttachContactToCompanyRequest } from "./AttachContactToCompanyRequest";
|
|
11
|
-
export { type DetachContactFromCompanyRequest } from "./DetachContactFromCompanyRequest";
|
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
-
if (k2 === undefined) k2 = k;
|
|
4
|
-
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
-
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
-
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
-
}
|
|
8
|
-
Object.defineProperty(o, k2, desc);
|
|
9
|
-
}) : (function(o, m, k, k2) {
|
|
10
|
-
if (k2 === undefined) k2 = k;
|
|
11
|
-
o[k2] = m[k];
|
|
12
|
-
}));
|
|
13
|
-
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
14
|
-
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
|
-
};
|
|
16
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
-
__exportStar(require("./types"), exports);
|
|
18
|
-
__exportStar(require("./client"), exports);
|
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* This file was auto-generated by Fern from our API Definition.
|
|
3
|
-
*/
|
|
4
|
-
import * as Intercom from "../../../index";
|
|
5
|
-
export type CompaniesRetrieveResponse = Intercom.CompaniesRetrieveResponse.Company | Intercom.CompaniesRetrieveResponse.List;
|
|
6
|
-
export declare namespace CompaniesRetrieveResponse {
|
|
7
|
-
interface Company extends Intercom.Company {
|
|
8
|
-
type: "company";
|
|
9
|
-
}
|
|
10
|
-
interface List extends Intercom.CompanyList {
|
|
11
|
-
type: "list";
|
|
12
|
-
}
|
|
13
|
-
}
|
|
@@ -1,70 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* This file was auto-generated by Fern from our API Definition.
|
|
3
|
-
*/
|
|
4
|
-
import * as Intercom from "../../../index";
|
|
5
|
-
/**
|
|
6
|
-
* Companies allow you to represent organizations using your product. Each company will have its own description and be associated with contacts. You can fetch, create, update and list companies.
|
|
7
|
-
*/
|
|
8
|
-
export interface Company {
|
|
9
|
-
/** The Intercom defined id representing the company. */
|
|
10
|
-
id: string;
|
|
11
|
-
/** The name of the company. */
|
|
12
|
-
name: string;
|
|
13
|
-
/** The Intercom defined code of the workspace the company is associated to. */
|
|
14
|
-
app_id: string;
|
|
15
|
-
plan?: Company.Plan;
|
|
16
|
-
/** The company id you have defined for the company. */
|
|
17
|
-
company_id: string;
|
|
18
|
-
/** The time the company was created by you. */
|
|
19
|
-
remote_created_at: number;
|
|
20
|
-
/** The time the company was added in Intercom. */
|
|
21
|
-
created_at: number;
|
|
22
|
-
/** The last time the company was updated. */
|
|
23
|
-
updated_at: number;
|
|
24
|
-
/** The time the company last recorded making a request. */
|
|
25
|
-
last_request_at: number;
|
|
26
|
-
/** The number of employees in the company. */
|
|
27
|
-
size: number;
|
|
28
|
-
/** The URL for the company website. */
|
|
29
|
-
website: string;
|
|
30
|
-
/** The industry that the company operates in. */
|
|
31
|
-
industry: string;
|
|
32
|
-
/** How much revenue the company generates for your business. */
|
|
33
|
-
monthly_spend: number;
|
|
34
|
-
/** How many sessions the company has recorded. */
|
|
35
|
-
session_count: number;
|
|
36
|
-
/** The number of users in the company. */
|
|
37
|
-
user_count: number;
|
|
38
|
-
/** The custom attributes you have set on the company. */
|
|
39
|
-
custom_attributes?: Record<string, unknown>;
|
|
40
|
-
/** The list of tags associated with the company */
|
|
41
|
-
tags?: Company.Tags;
|
|
42
|
-
/** The list of segments associated with the company */
|
|
43
|
-
segments?: Company.Segments;
|
|
44
|
-
}
|
|
45
|
-
export declare namespace Company {
|
|
46
|
-
interface Plan {
|
|
47
|
-
/** Value is always "plan" */
|
|
48
|
-
type?: "plan";
|
|
49
|
-
/** The id of the plan */
|
|
50
|
-
id?: string;
|
|
51
|
-
/** The name of the plan */
|
|
52
|
-
name?: string;
|
|
53
|
-
}
|
|
54
|
-
/**
|
|
55
|
-
* The list of tags associated with the company
|
|
56
|
-
*/
|
|
57
|
-
interface Tags {
|
|
58
|
-
/** The type of the object */
|
|
59
|
-
type?: "tag.list";
|
|
60
|
-
tags?: unknown[];
|
|
61
|
-
}
|
|
62
|
-
/**
|
|
63
|
-
* The list of segments associated with the company
|
|
64
|
-
*/
|
|
65
|
-
interface Segments {
|
|
66
|
-
/** The type of the object */
|
|
67
|
-
type?: "segment.list";
|
|
68
|
-
segments?: Intercom.Segment[];
|
|
69
|
-
}
|
|
70
|
-
}
|
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
-
if (k2 === undefined) k2 = k;
|
|
4
|
-
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
-
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
-
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
-
}
|
|
8
|
-
Object.defineProperty(o, k2, desc);
|
|
9
|
-
}) : (function(o, m, k, k2) {
|
|
10
|
-
if (k2 === undefined) k2 = k;
|
|
11
|
-
o[k2] = m[k];
|
|
12
|
-
}));
|
|
13
|
-
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
14
|
-
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
|
-
};
|
|
16
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
-
__exportStar(require("./CompaniesRetrieveResponse"), exports);
|
|
18
|
-
__exportStar(require("./Company"), exports);
|