mavenagi 1.1.0 → 1.2.3
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/Client.d.ts +9 -0
- package/Client.js +39 -24
- package/README.md +9 -9
- package/api/resources/actions/client/Client.d.ts +34 -1
- package/api/resources/actions/client/Client.js +199 -4
- package/api/resources/actions/client/index.d.ts +1 -0
- package/api/resources/actions/client/index.js +15 -0
- package/api/resources/actions/client/requests/ActionGetRequest.d.ts +13 -0
- package/api/resources/actions/client/requests/ActionPatchRequest.d.ts +24 -0
- package/api/resources/actions/client/requests/index.d.ts +2 -0
- package/api/resources/actions/client/requests/index.js +2 -0
- package/api/resources/actions/types/ActionField.d.ts +11 -0
- package/api/resources/actions/types/ActionField.js +13 -0
- package/api/resources/actions/types/ActionFilter.d.ts +14 -0
- package/api/resources/actions/types/ActionsResponse.d.ts +8 -0
- package/api/resources/actions/types/ActionsSearchRequest.d.ts +8 -0
- package/api/resources/actions/types/index.d.ts +4 -0
- package/api/resources/actions/types/index.js +4 -0
- package/api/resources/agentCapabilities/client/Client.d.ts +85 -0
- package/api/resources/agentCapabilities/client/Client.js +349 -0
- package/api/resources/agentCapabilities/client/index.d.ts +1 -0
- package/api/resources/agentCapabilities/client/index.js +2 -0
- package/api/resources/agentCapabilities/index.d.ts +2 -0
- package/api/resources/agentCapabilities/index.js +18 -0
- package/api/resources/agentCapabilities/types/ActionCapability.d.ts +16 -0
- package/api/resources/agentCapabilities/types/AgentCapability.d.ts +13 -0
- package/api/resources/agentCapabilities/types/AgentCapabilityBase.d.ts +15 -0
- package/api/resources/agentCapabilities/types/AgentCapabilityField.d.ts +11 -0
- package/api/resources/agentCapabilities/types/AgentCapabilityField.js +13 -0
- package/api/resources/agentCapabilities/types/AgentCapabilityListRequest.d.ts +14 -0
- package/api/resources/agentCapabilities/types/AgentCapabilityType.d.ts +8 -0
- package/api/resources/agentCapabilities/types/AgentCapabilityType.js +10 -0
- package/api/resources/agentCapabilities/types/ListAgentCapabilitiesResponse.d.ts +8 -0
- package/api/resources/agentCapabilities/types/PatchAgentCapabilityRequest.d.ts +11 -0
- package/api/resources/agentCapabilities/types/TriggerCapability.d.ts +7 -0
- package/api/resources/agentCapabilities/types/TriggerType.d.ts +10 -0
- package/api/resources/agentCapabilities/types/TriggerType.js +12 -0
- package/api/resources/agentCapabilities/types/index.d.ts +10 -0
- package/api/resources/agentCapabilities/types/index.js +26 -0
- package/api/resources/agents/client/Client.d.ts +66 -0
- package/api/resources/agents/client/Client.js +289 -0
- package/api/resources/agents/types/Agent.d.ts +12 -0
- package/api/resources/agents/types/AgentPatchRequest.d.ts +14 -0
- package/api/resources/agents/types/CreateAgentRequest.d.ts +10 -0
- package/api/resources/agents/types/PiiCategory.d.ts +63 -0
- package/api/resources/agents/types/PiiCategory.js +65 -0
- package/api/resources/agents/types/index.d.ts +3 -0
- package/api/resources/agents/types/index.js +3 -0
- package/api/resources/analytics/client/Client.d.ts +25 -0
- package/api/resources/analytics/client/Client.js +103 -0
- package/api/resources/analytics/types/AgentUserAnalyticsRequest.d.ts +14 -0
- package/api/resources/analytics/types/AgentUserColumnDefinition.d.ts +8 -0
- package/api/resources/analytics/types/AgentUserCount.d.ts +8 -0
- package/api/resources/analytics/types/AgentUserMetric.d.ts +13 -0
- package/api/resources/analytics/types/AgentUserRow.d.ts +11 -0
- package/api/resources/analytics/types/AgentUserTableRequest.d.ts +30 -0
- package/api/resources/analytics/types/AgentUserTableResponse.d.ts +28 -0
- package/api/resources/analytics/types/ConversationAnalyticsRequest.d.ts +6 -0
- package/api/resources/analytics/types/FeedbackAnalyticsRequest.d.ts +6 -0
- package/api/resources/analytics/types/FieldValue.d.ts +1 -1
- package/api/resources/analytics/types/index.d.ts +7 -0
- package/api/resources/analytics/types/index.js +7 -0
- package/api/resources/assets/client/Client.d.ts +76 -0
- package/api/resources/assets/client/Client.js +257 -0
- package/api/resources/assets/client/index.d.ts +1 -0
- package/api/resources/assets/client/index.js +2 -0
- package/api/resources/assets/index.d.ts +2 -0
- package/api/resources/assets/index.js +18 -0
- package/api/resources/assets/types/CommitAssetUploadRequest.d.ts +7 -0
- package/api/resources/assets/types/InitiateAssetUploadRequest.d.ts +6 -0
- package/api/resources/assets/types/InitiateAssetUploadResponse.d.ts +12 -0
- package/api/resources/assets/types/index.d.ts +3 -0
- package/api/resources/assets/types/index.js +19 -0
- package/api/resources/commons/types/ActionExecutionParamValue.d.ts +14 -0
- package/api/resources/commons/types/ActionOAuthConfiguration.d.ts +12 -0
- package/api/resources/commons/types/ActionParameter.d.ts +20 -1
- package/api/resources/commons/types/ActionParameterType.d.ts +9 -1
- package/api/resources/commons/types/ActionParameterType.js +2 -0
- package/api/resources/commons/types/ActionResponse.d.ts +27 -1
- package/api/resources/commons/types/AttachmentRequest.d.ts +22 -0
- package/api/resources/commons/types/AttachmentResponse.d.ts +12 -0
- package/api/resources/commons/types/AttachmentStatus.d.ts +10 -0
- package/api/resources/commons/types/AttachmentStatus.js +12 -0
- package/api/resources/commons/types/BaseAttachment.d.ts +32 -0
- package/api/resources/commons/types/BaseConversationResponse.d.ts +11 -0
- package/api/resources/commons/types/BotLogic.d.ts +7 -0
- package/api/resources/commons/types/BotLogicActionExecutedDetail.d.ts +9 -0
- package/api/resources/commons/types/BotLogicActionItem.d.ts +8 -0
- package/api/resources/commons/types/BotLogicActionReviewedDetail.d.ts +8 -0
- package/api/resources/commons/types/BotLogicFormSubmissionItem.d.ts +6 -0
- package/api/resources/commons/types/BotLogicItem.d.ts +25 -0
- package/api/resources/commons/types/BotLogicKnowledgeDetail.d.ts +10 -0
- package/api/resources/commons/types/BotLogicKnowledgeItem.d.ts +8 -0
- package/api/resources/commons/types/BotLogicSafetyItem.d.ts +6 -0
- package/api/resources/commons/types/BotLogicSegmentsItem.d.ts +7 -0
- package/api/resources/commons/types/BotLogicUserItem.d.ts +6 -0
- package/api/resources/commons/types/BotMessage.d.ts +3 -1
- package/api/resources/commons/types/BotOAuthButtonResponse.d.ts +12 -0
- package/api/resources/commons/types/BotResponse.d.ts +4 -1
- package/api/resources/commons/types/Capability.d.ts +3 -1
- package/api/resources/commons/types/Capability.js +2 -0
- package/api/resources/commons/types/ConversationResponse.d.ts +14 -2
- package/api/resources/commons/types/DocumentInformation.d.ts +2 -0
- package/api/resources/commons/types/EntityResult.d.ts +8 -0
- package/api/resources/commons/types/EntityType.d.ts +2 -1
- package/api/resources/commons/types/EntityType.js +1 -0
- package/api/resources/commons/types/EventBaseNoId.d.ts +11 -0
- package/api/resources/commons/types/EventFilter.d.ts +14 -0
- package/api/resources/commons/types/EventRequest.d.ts +13 -0
- package/api/resources/commons/types/EventUserInfo.d.ts +7 -0
- package/api/resources/commons/types/EventUserInfoBase.d.ts +7 -0
- package/api/resources/commons/types/InboxItem.d.ts +1 -7
- package/api/resources/commons/types/InboxItemBase.d.ts +2 -0
- package/api/resources/commons/types/InboxItemDuplicateDocuments.d.ts +1 -1
- package/api/resources/commons/types/InboxItemFix.d.ts +1 -4
- package/api/resources/commons/types/InboxItemSeverity.d.ts +9 -0
- package/api/resources/commons/types/InboxItemSeverity.js +11 -0
- package/api/resources/commons/types/InboxItemType.d.ts +1 -9
- package/api/resources/commons/types/InboxItemType.js +0 -2
- package/api/resources/commons/types/LlmInclusionStatus.d.ts +9 -0
- package/api/resources/commons/types/LlmInclusionStatus.js +11 -0
- package/api/resources/commons/types/MessageStatus.d.ts +22 -0
- package/api/resources/commons/types/MessageStatus.js +14 -0
- package/api/resources/commons/types/NovelSystemEvent.d.ts +8 -0
- package/api/resources/commons/types/NovelSystemEventNoId.js +5 -0
- package/api/resources/commons/types/NovelUserEvent.d.ts +16 -0
- package/api/resources/commons/types/NovelUserEvent.js +5 -0
- package/api/resources/commons/types/OsInfo.js +5 -0
- package/api/resources/commons/types/PageInfo.js +5 -0
- package/api/resources/commons/types/QualityReason.d.ts +2 -1
- package/api/resources/commons/types/QualityReason.js +1 -0
- package/api/resources/commons/types/ResponseConfig.d.ts +7 -8
- package/api/resources/commons/types/ScopedEntity.d.ts +8 -0
- package/api/resources/commons/types/ScopedEntity.js +5 -0
- package/api/resources/commons/types/SessionInfo.js +5 -0
- package/api/resources/commons/types/SourceInfo.js +5 -0
- package/api/resources/commons/types/SurveyInfo.js +5 -0
- package/api/resources/commons/types/SystemEvent.js +5 -0
- package/api/resources/commons/types/UserEvent.d.ts +16 -0
- package/api/resources/commons/types/UserEvent.js +5 -0
- package/api/resources/commons/types/UserEventName.d.ts +26 -0
- package/api/resources/commons/types/UserEventName.js +13 -0
- package/api/resources/commons/types/UserMessage.d.ts +21 -1
- package/api/resources/commons/types/UserMessageResponseState.d.ts +9 -0
- package/api/resources/commons/types/UserMessageResponseState.js +11 -0
- package/api/resources/commons/types/index.d.ts +57 -7
- package/api/resources/commons/types/index.js +57 -7
- package/api/resources/conversation/client/Client.d.ts +75 -0
- package/api/resources/conversation/client/Client.js +324 -1
- package/api/resources/conversation/client/requests/ConversationGetRequest.d.ts +4 -0
- package/api/resources/conversation/types/ActionFormAttachment.d.ts +8 -0
- package/api/resources/conversation/types/ActionFormAttachment.js +5 -0
- package/api/resources/conversation/types/ActionFormRequestParamValue.d.ts +5 -0
- package/api/resources/conversation/types/ActionFormRequestParamValue.js +5 -0
- package/api/resources/conversation/types/AskObjectRequest.d.ts +8 -0
- package/api/resources/conversation/types/AskObjectRequest.js +5 -0
- package/api/resources/conversation/types/AskRequest.d.ts +5 -2
- package/api/resources/conversation/types/AskStreamOAuthButtonEvent.d.ts +6 -0
- package/api/resources/conversation/types/AskStreamOAuthButtonEvent.js +5 -0
- package/api/resources/conversation/types/ConversationField.d.ts +5 -1
- package/api/resources/conversation/types/ConversationField.js +4 -0
- package/api/resources/conversation/types/ConversationFilter.d.ts +27 -1
- package/api/resources/conversation/types/ConversationMessageRequest.d.ts +1 -1
- package/api/resources/conversation/types/ConversationPatchRequest.d.ts +20 -0
- package/api/resources/conversation/types/ConversationPatchRequest.js +5 -0
- package/api/resources/conversation/types/DeliverConversationMessageRequest.d.ts +10 -0
- package/api/resources/conversation/types/DeliverConversationMessageRequest.js +5 -0
- package/api/resources/conversation/types/DeliverMessageRequest.d.ts +13 -0
- package/api/resources/conversation/types/DeliverMessageRequest.js +5 -0
- package/api/resources/conversation/types/DeliverMessageResponse.d.ts +7 -0
- package/api/resources/conversation/types/DeliverMessageResponse.js +5 -0
- package/api/resources/conversation/types/DeliverUserMessageRequest.d.ts +10 -0
- package/api/resources/conversation/types/DeliverUserMessageRequest.js +5 -0
- package/api/resources/conversation/types/DeliveryStatus.d.ts +9 -0
- package/api/resources/conversation/types/DeliveryStatus.js +11 -0
- package/api/resources/conversation/types/NumericConversationField.d.ts +2 -1
- package/api/resources/conversation/types/NumericConversationField.js +1 -0
- package/api/resources/conversation/types/ObjectStreamResponse.d.ts +16 -0
- package/api/resources/conversation/types/ObjectStreamResponse.js +5 -0
- package/api/resources/conversation/types/StreamResponse.d.ts +4 -1
- package/api/resources/conversation/types/SubmitActionFormRequest.d.ts +2 -1
- package/api/resources/conversation/types/index.d.ts +11 -1
- package/api/resources/conversation/types/index.js +11 -1
- package/api/resources/events/client/Client.d.ts +26 -0
- package/api/resources/events/client/Client.js +104 -0
- package/api/resources/events/index.d.ts +0 -1
- package/api/resources/events/index.js +0 -1
- package/api/resources/inbox/client/Client.d.ts +10 -13
- package/api/resources/inbox/client/Client.js +17 -25
- package/api/resources/inbox/client/requests/InboxItemFixRequest.d.ts +1 -7
- package/api/resources/inbox/client/requests/InboxItemIgnoreRequest.d.ts +1 -7
- package/api/resources/inbox/client/requests/InboxItemRequest.d.ts +1 -7
- package/api/resources/inbox/types/AddDocumentFixRequest.d.ts +4 -1
- package/api/resources/inbox/types/ApplyFixesRequest.d.ts +12 -0
- package/api/resources/inbox/types/ApplyFixesRequest.js +5 -0
- package/api/resources/inbox/types/InboxFilter.d.ts +14 -0
- package/api/resources/inbox/types/InboxFilter.js +5 -0
- package/api/resources/inbox/types/InboxSearchRequest.d.ts +2 -13
- package/api/resources/inbox/types/InboxSearchResponse.d.ts +1 -1
- package/api/resources/inbox/types/index.d.ts +2 -2
- package/api/resources/inbox/types/index.js +2 -2
- package/api/resources/index.d.ts +14 -4
- package/api/resources/index.js +15 -5
- package/api/resources/knowledge/client/Client.d.ts +92 -37
- package/api/resources/knowledge/client/Client.js +438 -58
- package/api/resources/knowledge/client/index.d.ts +1 -0
- package/api/resources/knowledge/client/index.js +15 -0
- package/api/resources/knowledge/client/requests/KnowledgeBaseGetRequest.d.ts +13 -0
- package/api/resources/knowledge/client/requests/KnowledgeBaseGetRequest.js +5 -0
- package/api/resources/knowledge/client/requests/KnowledgeBasePatchRequest.d.ts +30 -0
- package/api/resources/knowledge/client/requests/KnowledgeBasePatchRequest.js +5 -0
- package/api/resources/knowledge/client/requests/KnowledgeBaseVersionsListRequest.d.ts +13 -0
- package/api/resources/knowledge/client/requests/KnowledgeBaseVersionsListRequest.js +5 -0
- package/api/resources/knowledge/client/requests/KnowledgeDocumentGetRequest.d.ts +15 -0
- package/api/resources/knowledge/client/requests/KnowledgeDocumentGetRequest.js +5 -0
- package/api/resources/knowledge/client/requests/index.d.ts +4 -0
- package/api/resources/knowledge/client/requests/index.js +2 -0
- package/api/resources/knowledge/types/KnowledgeBaseField.d.ts +8 -0
- package/api/resources/knowledge/types/KnowledgeBaseField.js +10 -0
- package/api/resources/knowledge/types/KnowledgeBaseFilter.d.ts +28 -0
- package/api/resources/knowledge/types/KnowledgeBaseFilter.js +5 -0
- package/api/resources/knowledge/types/KnowledgeBaseProperties.d.ts +1 -1
- package/api/resources/knowledge/types/KnowledgeBaseRefreshFrequency.d.ts +10 -0
- package/api/resources/knowledge/types/KnowledgeBaseRefreshFrequency.js +12 -0
- package/api/resources/knowledge/types/KnowledgeBaseResponse.d.ts +17 -1
- package/api/resources/knowledge/types/KnowledgeBaseSearchRequest.d.ts +8 -0
- package/api/resources/knowledge/types/KnowledgeBaseSearchRequest.js +5 -0
- package/api/resources/knowledge/types/KnowledgeBaseVersion.d.ts +1 -3
- package/api/resources/knowledge/types/KnowledgeBaseVersionRequest.d.ts +14 -0
- package/api/resources/knowledge/types/KnowledgeBaseVersionRequest.js +5 -0
- package/api/resources/knowledge/types/KnowledgeBaseVersionsListResponse.d.ts +8 -0
- package/api/resources/knowledge/types/KnowledgeBaseVersionsListResponse.js +5 -0
- package/api/resources/knowledge/types/KnowledgeBasesResponse.d.ts +8 -0
- package/api/resources/knowledge/types/KnowledgeBasesResponse.js +5 -0
- package/api/resources/knowledge/types/KnowledgeDeleteRequest.d.ts +18 -0
- package/api/resources/knowledge/types/KnowledgeDeleteRequest.js +5 -0
- package/api/resources/knowledge/types/KnowledgeDocumentField.d.ts +10 -0
- package/api/resources/knowledge/types/KnowledgeDocumentField.js +12 -0
- package/api/resources/knowledge/types/KnowledgeDocumentFilter.d.ts +34 -0
- package/api/resources/knowledge/types/KnowledgeDocumentFilter.js +5 -0
- package/api/resources/knowledge/types/KnowledgeDocumentResponse.d.ts +8 -3
- package/api/resources/knowledge/types/KnowledgeDocumentSearchRequest.d.ts +8 -0
- package/api/resources/knowledge/types/KnowledgeDocumentSearchRequest.js +5 -0
- package/api/resources/knowledge/types/KnowledgeDocumentSearchResponse.d.ts +13 -0
- package/api/resources/knowledge/types/KnowledgeDocumentSearchResponse.js +5 -0
- package/api/resources/knowledge/types/KnowledgeDocumentsResponse.d.ts +8 -0
- package/api/resources/knowledge/types/KnowledgeDocumentsResponse.js +5 -0
- package/api/resources/knowledge/types/index.d.ts +13 -0
- package/api/resources/knowledge/types/index.js +13 -0
- package/api/resources/organizations/client/Client.d.ts +78 -0
- package/api/resources/organizations/client/Client.js +376 -0
- package/api/resources/organizations/index.d.ts +1 -0
- package/api/resources/organizations/index.js +1 -0
- package/api/resources/organizations/types/BaseOrganization.d.ts +9 -0
- package/api/resources/organizations/types/BaseOrganization.js +5 -0
- package/api/resources/organizations/types/CreateOrganizationRequest.d.ts +6 -0
- package/api/resources/organizations/types/CreateOrganizationRequest.js +5 -0
- package/api/resources/organizations/types/Organization.d.ts +8 -0
- package/api/resources/organizations/types/Organization.js +5 -0
- package/api/resources/organizations/types/OrganizationPatchRequest.d.ts +9 -0
- package/api/resources/organizations/types/OrganizationPatchRequest.js +5 -0
- package/api/resources/organizations/types/index.d.ts +4 -0
- package/api/resources/organizations/types/index.js +20 -0
- package/api/resources/segments/client/Client.d.ts +120 -0
- package/api/resources/segments/client/Client.js +468 -0
- package/api/resources/segments/client/index.d.ts +2 -0
- package/api/resources/segments/client/index.js +17 -0
- package/api/resources/segments/client/requests/SegmentGetRequest.d.ts +13 -0
- package/api/resources/segments/client/requests/SegmentGetRequest.js +5 -0
- package/api/resources/segments/client/requests/index.d.ts +1 -0
- package/api/resources/segments/client/requests/index.js +2 -0
- package/api/resources/segments/index.d.ts +2 -0
- package/api/resources/segments/index.js +18 -0
- package/api/resources/segments/types/SegmentBase.d.ts +10 -0
- package/api/resources/segments/types/SegmentBase.js +5 -0
- package/api/resources/segments/types/SegmentField.d.ts +8 -0
- package/api/resources/segments/types/SegmentField.js +10 -0
- package/api/resources/segments/types/SegmentPatchRequest.d.ts +14 -0
- package/api/resources/segments/types/SegmentPatchRequest.js +5 -0
- package/api/resources/segments/types/SegmentRequest.d.ts +28 -0
- package/api/resources/segments/types/SegmentRequest.js +5 -0
- package/api/resources/segments/types/SegmentResponse.d.ts +39 -0
- package/api/resources/segments/types/SegmentResponse.js +5 -0
- package/api/resources/segments/types/SegmentStatus.d.ts +8 -0
- package/api/resources/segments/types/SegmentStatus.js +10 -0
- package/api/resources/segments/types/SegmentsSearchRequest.d.ts +8 -0
- package/api/resources/segments/types/SegmentsSearchRequest.js +5 -0
- package/api/resources/segments/types/SegmentsSearchResponse.d.ts +7 -0
- package/api/resources/segments/types/SegmentsSearchResponse.js +5 -0
- package/api/resources/segments/types/index.d.ts +8 -0
- package/api/resources/segments/types/index.js +24 -0
- package/api/resources/triggers/types/EventTriggerType.d.ts +2 -1
- package/api/resources/triggers/types/EventTriggerType.js +1 -0
- package/api/resources/users/client/Client.d.ts +38 -4
- package/api/resources/users/client/Client.js +191 -4
- package/api/resources/users/client/requests/UserDeleteRequest.d.ts +1 -1
- package/api/resources/users/client/requests/UserGetRequest.d.ts +1 -1
- package/api/resources/users/index.d.ts +1 -0
- package/api/resources/users/index.js +1 -0
- package/api/resources/users/types/AgentUser.d.ts +24 -0
- package/api/resources/users/types/AgentUser.js +5 -0
- package/api/resources/users/types/AgentUserField.d.ts +8 -0
- package/api/resources/users/types/AgentUserField.js +10 -0
- package/api/resources/users/types/AgentUserFilter.d.ts +17 -0
- package/api/resources/users/types/AgentUserFilter.js +5 -0
- package/api/resources/users/types/AgentUserSearchRequest.d.ts +8 -0
- package/api/resources/users/types/AgentUserSearchRequest.js +5 -0
- package/api/resources/users/types/AgentUserSearchResponse.d.ts +8 -0
- package/api/resources/users/types/AgentUserSearchResponse.js +5 -0
- package/api/resources/users/types/AppUserSummary.d.ts +12 -0
- package/api/resources/users/types/AppUserSummary.js +5 -0
- package/api/resources/users/types/index.d.ts +6 -0
- package/api/resources/users/types/index.js +22 -0
- package/dist/Client.d.ts +9 -0
- package/dist/Client.js +39 -24
- package/dist/api/resources/actions/client/Client.d.ts +34 -1
- package/dist/api/resources/actions/client/Client.js +199 -4
- package/dist/api/resources/actions/client/index.d.ts +1 -0
- package/dist/api/resources/actions/client/index.js +15 -0
- package/dist/api/resources/actions/client/requests/ActionGetRequest.d.ts +13 -0
- package/dist/api/resources/actions/client/requests/ActionGetRequest.js +5 -0
- package/dist/api/resources/actions/client/requests/ActionPatchRequest.d.ts +24 -0
- package/dist/api/resources/actions/client/requests/ActionPatchRequest.js +5 -0
- package/dist/api/resources/actions/client/requests/index.d.ts +2 -0
- package/dist/api/resources/actions/client/requests/index.js +2 -0
- package/dist/api/resources/actions/types/ActionField.d.ts +11 -0
- package/dist/api/resources/actions/types/ActionField.js +13 -0
- package/dist/api/resources/actions/types/ActionFilter.d.ts +14 -0
- package/dist/api/resources/actions/types/ActionFilter.js +5 -0
- package/dist/api/resources/actions/types/ActionsResponse.d.ts +8 -0
- package/dist/api/resources/actions/types/ActionsResponse.js +5 -0
- package/dist/api/resources/actions/types/ActionsSearchRequest.d.ts +8 -0
- package/dist/api/resources/actions/types/ActionsSearchRequest.js +5 -0
- package/dist/api/resources/actions/types/index.d.ts +4 -0
- package/dist/api/resources/actions/types/index.js +4 -0
- package/dist/api/resources/agentCapabilities/client/Client.d.ts +85 -0
- package/dist/api/resources/agentCapabilities/client/Client.js +349 -0
- package/dist/api/resources/agentCapabilities/client/index.d.ts +1 -0
- package/dist/api/resources/agentCapabilities/client/index.js +2 -0
- package/dist/api/resources/agentCapabilities/index.d.ts +2 -0
- package/dist/api/resources/agentCapabilities/index.js +18 -0
- package/dist/api/resources/agentCapabilities/types/ActionCapability.d.ts +16 -0
- package/dist/api/resources/agentCapabilities/types/ActionCapability.js +5 -0
- package/dist/api/resources/agentCapabilities/types/AgentCapability.d.ts +13 -0
- package/dist/api/resources/agentCapabilities/types/AgentCapability.js +5 -0
- package/dist/api/resources/agentCapabilities/types/AgentCapabilityBase.d.ts +15 -0
- package/dist/api/resources/agentCapabilities/types/AgentCapabilityBase.js +5 -0
- package/dist/api/resources/agentCapabilities/types/AgentCapabilityField.d.ts +11 -0
- package/dist/api/resources/agentCapabilities/types/AgentCapabilityField.js +13 -0
- package/dist/api/resources/agentCapabilities/types/AgentCapabilityListRequest.d.ts +14 -0
- package/dist/api/resources/agentCapabilities/types/AgentCapabilityListRequest.js +5 -0
- package/dist/api/resources/agentCapabilities/types/AgentCapabilityType.d.ts +8 -0
- package/dist/api/resources/agentCapabilities/types/AgentCapabilityType.js +10 -0
- package/dist/api/resources/agentCapabilities/types/ListAgentCapabilitiesResponse.d.ts +8 -0
- package/dist/api/resources/agentCapabilities/types/ListAgentCapabilitiesResponse.js +5 -0
- package/dist/api/resources/agentCapabilities/types/PatchAgentCapabilityRequest.d.ts +11 -0
- package/dist/api/resources/agentCapabilities/types/PatchAgentCapabilityRequest.js +5 -0
- package/dist/api/resources/agentCapabilities/types/TriggerCapability.d.ts +7 -0
- package/dist/api/resources/agentCapabilities/types/TriggerCapability.js +5 -0
- package/dist/api/resources/agentCapabilities/types/TriggerType.d.ts +10 -0
- package/dist/api/resources/agentCapabilities/types/TriggerType.js +12 -0
- package/dist/api/resources/agentCapabilities/types/index.d.ts +10 -0
- package/dist/api/resources/agentCapabilities/types/index.js +26 -0
- package/dist/api/resources/agents/client/Client.d.ts +66 -0
- package/dist/api/resources/agents/client/Client.js +289 -0
- package/dist/api/resources/agents/types/Agent.d.ts +12 -0
- package/dist/api/resources/agents/types/AgentPatchRequest.d.ts +14 -0
- package/dist/api/resources/agents/types/AgentPatchRequest.js +5 -0
- package/dist/api/resources/agents/types/CreateAgentRequest.d.ts +10 -0
- package/dist/api/resources/agents/types/CreateAgentRequest.js +5 -0
- package/dist/api/resources/agents/types/PiiCategory.d.ts +63 -0
- package/dist/api/resources/agents/types/PiiCategory.js +65 -0
- package/dist/api/resources/agents/types/index.d.ts +3 -0
- package/dist/api/resources/agents/types/index.js +3 -0
- package/dist/api/resources/analytics/client/Client.d.ts +25 -0
- package/dist/api/resources/analytics/client/Client.js +103 -0
- package/dist/api/resources/analytics/types/AgentUserAnalyticsRequest.d.ts +14 -0
- package/dist/api/resources/analytics/types/AgentUserAnalyticsRequest.js +5 -0
- package/dist/api/resources/analytics/types/AgentUserColumnDefinition.d.ts +8 -0
- package/dist/api/resources/analytics/types/AgentUserColumnDefinition.js +5 -0
- package/dist/api/resources/analytics/types/AgentUserCount.d.ts +8 -0
- package/dist/api/resources/analytics/types/AgentUserCount.js +5 -0
- package/dist/api/resources/analytics/types/AgentUserMetric.d.ts +13 -0
- package/dist/api/resources/analytics/types/AgentUserMetric.js +5 -0
- package/dist/api/resources/analytics/types/AgentUserRow.d.ts +11 -0
- package/dist/api/resources/analytics/types/AgentUserRow.js +5 -0
- package/dist/api/resources/analytics/types/AgentUserTableRequest.d.ts +30 -0
- package/dist/api/resources/analytics/types/AgentUserTableRequest.js +5 -0
- package/dist/api/resources/analytics/types/AgentUserTableResponse.d.ts +28 -0
- package/dist/api/resources/analytics/types/AgentUserTableResponse.js +5 -0
- package/dist/api/resources/analytics/types/ConversationAnalyticsRequest.d.ts +6 -0
- package/dist/api/resources/analytics/types/FeedbackAnalyticsRequest.d.ts +6 -0
- package/dist/api/resources/analytics/types/FieldValue.d.ts +1 -1
- package/dist/api/resources/analytics/types/index.d.ts +7 -0
- package/dist/api/resources/analytics/types/index.js +7 -0
- package/dist/api/resources/assets/client/Client.d.ts +76 -0
- package/dist/api/resources/assets/client/Client.js +257 -0
- package/dist/api/resources/assets/client/index.d.ts +1 -0
- package/dist/api/resources/assets/client/index.js +2 -0
- package/dist/api/resources/assets/index.d.ts +2 -0
- package/dist/api/resources/assets/index.js +18 -0
- package/dist/api/resources/assets/types/CommitAssetUploadRequest.d.ts +7 -0
- package/dist/api/resources/assets/types/CommitAssetUploadRequest.js +5 -0
- package/dist/api/resources/assets/types/InitiateAssetUploadRequest.d.ts +6 -0
- package/dist/api/resources/assets/types/InitiateAssetUploadRequest.js +5 -0
- package/dist/api/resources/assets/types/InitiateAssetUploadResponse.d.ts +12 -0
- package/dist/api/resources/assets/types/InitiateAssetUploadResponse.js +5 -0
- package/dist/api/resources/assets/types/index.d.ts +3 -0
- package/dist/api/resources/assets/types/index.js +19 -0
- package/dist/api/resources/commons/types/ActionExecutionParamValue.d.ts +14 -0
- package/dist/api/resources/commons/types/ActionExecutionParamValue.js +5 -0
- package/dist/api/resources/commons/types/ActionOAuthConfiguration.d.ts +12 -0
- package/dist/api/resources/commons/types/ActionOAuthConfiguration.js +5 -0
- package/dist/api/resources/commons/types/ActionParameter.d.ts +20 -1
- package/dist/api/resources/commons/types/ActionParameterType.d.ts +9 -1
- package/dist/api/resources/commons/types/ActionParameterType.js +2 -0
- package/dist/api/resources/commons/types/ActionResponse.d.ts +27 -1
- package/dist/api/resources/commons/types/AttachmentRequest.d.ts +22 -0
- package/dist/api/resources/commons/types/AttachmentRequest.js +5 -0
- package/dist/api/resources/commons/types/AttachmentResponse.d.ts +12 -0
- package/dist/api/resources/commons/types/AttachmentResponse.js +5 -0
- package/dist/api/resources/commons/types/AttachmentStatus.d.ts +10 -0
- package/dist/api/resources/commons/types/AttachmentStatus.js +12 -0
- package/dist/api/resources/commons/types/BaseAttachment.d.ts +32 -0
- package/dist/api/resources/commons/types/BaseAttachment.js +5 -0
- package/dist/api/resources/commons/types/BaseConversationResponse.d.ts +11 -0
- package/dist/api/resources/commons/types/BotLogic.d.ts +7 -0
- package/dist/api/resources/commons/types/BotLogic.js +5 -0
- package/dist/api/resources/commons/types/BotLogicActionExecutedDetail.d.ts +9 -0
- package/dist/api/resources/commons/types/BotLogicActionExecutedDetail.js +5 -0
- package/dist/api/resources/commons/types/BotLogicActionItem.d.ts +8 -0
- package/dist/api/resources/commons/types/BotLogicActionItem.js +5 -0
- package/dist/api/resources/commons/types/BotLogicActionReviewedDetail.d.ts +8 -0
- package/dist/api/resources/commons/types/BotLogicActionReviewedDetail.js +5 -0
- package/dist/api/resources/commons/types/BotLogicFormSubmissionItem.d.ts +6 -0
- package/dist/api/resources/commons/types/BotLogicFormSubmissionItem.js +5 -0
- package/dist/api/resources/commons/types/BotLogicItem.d.ts +25 -0
- package/dist/api/resources/commons/types/BotLogicItem.js +5 -0
- package/dist/api/resources/commons/types/BotLogicKnowledgeDetail.d.ts +10 -0
- package/dist/api/resources/commons/types/BotLogicKnowledgeDetail.js +5 -0
- package/dist/api/resources/commons/types/BotLogicKnowledgeItem.d.ts +8 -0
- package/dist/api/resources/commons/types/BotLogicKnowledgeItem.js +5 -0
- package/dist/api/resources/commons/types/BotLogicSafetyItem.d.ts +6 -0
- package/dist/api/resources/commons/types/BotLogicSafetyItem.js +5 -0
- package/dist/api/resources/commons/types/BotLogicSegmentsItem.d.ts +7 -0
- package/dist/api/resources/commons/types/BotLogicSegmentsItem.js +5 -0
- package/dist/api/resources/commons/types/BotLogicUserItem.d.ts +6 -0
- package/dist/api/resources/commons/types/BotLogicUserItem.js +5 -0
- package/dist/api/resources/commons/types/BotMessage.d.ts +3 -1
- package/dist/api/resources/commons/types/BotOAuthButtonResponse.d.ts +12 -0
- package/dist/api/resources/commons/types/BotOAuthButtonResponse.js +5 -0
- package/dist/api/resources/commons/types/BotResponse.d.ts +4 -1
- package/dist/api/resources/commons/types/BrowserInfo.js +5 -0
- package/dist/api/resources/commons/types/Capability.d.ts +3 -1
- package/dist/api/resources/commons/types/Capability.js +2 -0
- package/dist/api/resources/commons/types/ContextInfo.js +5 -0
- package/dist/api/resources/commons/types/ConversationResponse.d.ts +14 -2
- package/dist/api/resources/commons/types/DeviceInfo.js +5 -0
- package/dist/api/resources/commons/types/DocumentInformation.d.ts +2 -0
- package/dist/api/resources/commons/types/EntityResult.d.ts +8 -0
- package/dist/api/resources/commons/types/EntityResult.js +5 -0
- package/dist/api/resources/commons/types/EntityType.d.ts +2 -1
- package/dist/api/resources/commons/types/EntityType.js +1 -0
- package/dist/api/resources/commons/types/EventBaseNoId.d.ts +11 -0
- package/dist/api/resources/commons/types/EventBaseNoId.js +5 -0
- package/dist/api/resources/commons/types/EventFilter.d.ts +14 -0
- package/dist/api/resources/commons/types/EventFilter.js +5 -0
- package/dist/api/resources/commons/types/EventRequest.d.ts +13 -0
- package/dist/api/resources/commons/types/EventRequest.js +5 -0
- package/dist/api/resources/commons/types/EventResponse.js +5 -0
- package/dist/api/resources/commons/types/EventUserInfo.d.ts +7 -0
- package/dist/api/resources/commons/types/EventUserInfo.js +5 -0
- package/dist/api/resources/commons/types/EventUserInfoBase.d.ts +7 -0
- package/dist/api/resources/commons/types/EventUserInfoBase.js +5 -0
- package/dist/api/resources/commons/types/EventsSearchRequest.js +5 -0
- package/dist/api/resources/commons/types/EventsSearchResponse.js +5 -0
- package/dist/api/resources/commons/types/FeedbackInfo.js +5 -0
- package/dist/api/resources/commons/types/GeoInfo.js +5 -0
- package/dist/api/resources/commons/types/InboxItem.d.ts +1 -7
- package/dist/api/resources/commons/types/InboxItemBase.d.ts +2 -0
- package/dist/api/resources/commons/types/InboxItemDuplicateDocuments.d.ts +1 -1
- package/dist/api/resources/commons/types/InboxItemFix.d.ts +1 -4
- package/dist/api/resources/commons/types/InboxItemSeverity.d.ts +9 -0
- package/dist/api/resources/commons/types/InboxItemSeverity.js +11 -0
- package/dist/api/resources/commons/types/InboxItemType.d.ts +1 -9
- package/dist/api/resources/commons/types/InboxItemType.js +0 -2
- package/dist/api/resources/commons/types/IpInfo.js +5 -0
- package/dist/api/resources/commons/types/LanguageInfo.js +5 -0
- package/dist/api/resources/commons/types/LlmInclusionStatus.d.ts +9 -0
- package/dist/api/resources/commons/types/LlmInclusionStatus.js +11 -0
- package/dist/api/resources/commons/types/MessageStatus.d.ts +22 -0
- package/dist/api/resources/commons/types/MessageStatus.js +14 -0
- package/dist/api/resources/commons/types/NovelSystemEvent.d.ts +8 -0
- package/dist/api/resources/commons/types/NovelSystemEvent.js +5 -0
- package/dist/api/resources/commons/types/NovelSystemEventNoId.js +5 -0
- package/dist/api/resources/commons/types/NovelUserEvent.d.ts +16 -0
- package/dist/api/resources/commons/types/NovelUserEvent.js +5 -0
- package/dist/api/resources/commons/types/OsInfo.js +5 -0
- package/dist/api/resources/commons/types/PageInfo.js +5 -0
- package/dist/api/resources/commons/types/QualityReason.d.ts +2 -1
- package/dist/api/resources/commons/types/QualityReason.js +1 -0
- package/dist/api/resources/commons/types/ResponseConfig.d.ts +7 -8
- package/dist/api/resources/commons/types/ScopedEntity.d.ts +8 -0
- package/dist/api/resources/commons/types/ScopedEntity.js +5 -0
- package/dist/api/resources/commons/types/SessionInfo.js +5 -0
- package/dist/api/resources/commons/types/SourceInfo.js +5 -0
- package/dist/api/resources/commons/types/SurveyInfo.js +5 -0
- package/dist/api/resources/commons/types/SystemEvent.js +5 -0
- package/dist/api/resources/commons/types/UserEvent.d.ts +16 -0
- package/dist/api/resources/commons/types/UserEvent.js +5 -0
- package/dist/api/resources/commons/types/UserEventName.d.ts +26 -0
- package/dist/api/resources/commons/types/UserEventName.js +13 -0
- package/dist/api/resources/commons/types/UserMessage.d.ts +21 -1
- package/dist/api/resources/commons/types/UserMessageResponseState.d.ts +9 -0
- package/dist/api/resources/commons/types/UserMessageResponseState.js +11 -0
- package/dist/api/resources/commons/types/index.d.ts +57 -7
- package/dist/api/resources/commons/types/index.js +57 -7
- package/dist/api/resources/conversation/client/Client.d.ts +75 -0
- package/dist/api/resources/conversation/client/Client.js +324 -1
- package/dist/api/resources/conversation/client/requests/ConversationGetRequest.d.ts +4 -0
- package/dist/api/resources/conversation/types/ActionFormAttachment.d.ts +8 -0
- package/dist/api/resources/conversation/types/ActionFormAttachment.js +5 -0
- package/dist/api/resources/conversation/types/ActionFormRequestParamValue.d.ts +5 -0
- package/dist/api/resources/conversation/types/ActionFormRequestParamValue.js +5 -0
- package/dist/api/resources/conversation/types/AskObjectRequest.d.ts +8 -0
- package/dist/api/resources/conversation/types/AskObjectRequest.js +5 -0
- package/dist/api/resources/conversation/types/AskRequest.d.ts +5 -2
- package/dist/api/resources/conversation/types/AskStreamOAuthButtonEvent.d.ts +6 -0
- package/dist/api/resources/conversation/types/AskStreamOAuthButtonEvent.js +5 -0
- package/dist/api/resources/conversation/types/ConversationField.d.ts +5 -1
- package/dist/api/resources/conversation/types/ConversationField.js +4 -0
- package/dist/api/resources/conversation/types/ConversationFilter.d.ts +27 -1
- package/dist/api/resources/conversation/types/ConversationMessageRequest.d.ts +1 -1
- package/dist/api/resources/conversation/types/ConversationPatchRequest.d.ts +20 -0
- package/dist/api/resources/conversation/types/ConversationPatchRequest.js +5 -0
- package/dist/api/resources/conversation/types/DeliverConversationMessageRequest.d.ts +10 -0
- package/dist/api/resources/conversation/types/DeliverConversationMessageRequest.js +5 -0
- package/dist/api/resources/conversation/types/DeliverMessageRequest.d.ts +13 -0
- package/dist/api/resources/conversation/types/DeliverMessageRequest.js +5 -0
- package/dist/api/resources/conversation/types/DeliverMessageResponse.d.ts +7 -0
- package/dist/api/resources/conversation/types/DeliverMessageResponse.js +5 -0
- package/dist/api/resources/conversation/types/DeliverUserMessageRequest.d.ts +10 -0
- package/dist/api/resources/conversation/types/DeliverUserMessageRequest.js +5 -0
- package/dist/api/resources/conversation/types/DeliveryStatus.d.ts +9 -0
- package/dist/api/resources/conversation/types/DeliveryStatus.js +11 -0
- package/dist/api/resources/conversation/types/NumericConversationField.d.ts +2 -1
- package/dist/api/resources/conversation/types/NumericConversationField.js +1 -0
- package/dist/api/resources/conversation/types/ObjectStreamResponse.d.ts +16 -0
- package/dist/api/resources/conversation/types/ObjectStreamResponse.js +5 -0
- package/dist/api/resources/conversation/types/StreamResponse.d.ts +4 -1
- package/dist/api/resources/conversation/types/SubmitActionFormRequest.d.ts +2 -1
- package/dist/api/resources/conversation/types/index.d.ts +11 -1
- package/dist/api/resources/conversation/types/index.js +11 -1
- package/dist/api/resources/events/client/Client.d.ts +26 -0
- package/dist/api/resources/events/client/Client.js +104 -0
- package/dist/api/resources/events/index.d.ts +0 -1
- package/dist/api/resources/events/index.js +0 -1
- package/dist/api/resources/inbox/client/Client.d.ts +10 -13
- package/dist/api/resources/inbox/client/Client.js +17 -25
- package/dist/api/resources/inbox/client/requests/InboxItemFixRequest.d.ts +1 -7
- package/dist/api/resources/inbox/client/requests/InboxItemIgnoreRequest.d.ts +1 -7
- package/dist/api/resources/inbox/client/requests/InboxItemRequest.d.ts +1 -7
- package/dist/api/resources/inbox/types/AddDocumentFixRequest.d.ts +4 -1
- package/dist/api/resources/inbox/types/ApplyFixesRequest.d.ts +12 -0
- package/dist/api/resources/inbox/types/ApplyFixesRequest.js +5 -0
- package/dist/api/resources/inbox/types/InboxFilter.d.ts +14 -0
- package/dist/api/resources/inbox/types/InboxFilter.js +5 -0
- package/dist/api/resources/inbox/types/InboxSearchRequest.d.ts +2 -13
- package/dist/api/resources/inbox/types/InboxSearchResponse.d.ts +1 -1
- package/dist/api/resources/inbox/types/index.d.ts +2 -2
- package/dist/api/resources/inbox/types/index.js +2 -2
- package/dist/api/resources/index.d.ts +14 -4
- package/dist/api/resources/index.js +15 -5
- package/dist/api/resources/knowledge/client/Client.d.ts +92 -37
- package/dist/api/resources/knowledge/client/Client.js +438 -58
- package/dist/api/resources/knowledge/client/index.d.ts +1 -0
- package/dist/api/resources/knowledge/client/index.js +15 -0
- package/dist/api/resources/knowledge/client/requests/KnowledgeBaseGetRequest.d.ts +13 -0
- package/dist/api/resources/knowledge/client/requests/KnowledgeBaseGetRequest.js +5 -0
- package/dist/api/resources/knowledge/client/requests/KnowledgeBasePatchRequest.d.ts +30 -0
- package/dist/api/resources/knowledge/client/requests/KnowledgeBasePatchRequest.js +5 -0
- package/dist/api/resources/knowledge/client/requests/KnowledgeBaseVersionsListRequest.d.ts +13 -0
- package/dist/api/resources/knowledge/client/requests/KnowledgeBaseVersionsListRequest.js +5 -0
- package/dist/api/resources/knowledge/client/requests/KnowledgeDocumentGetRequest.d.ts +15 -0
- package/dist/api/resources/knowledge/client/requests/KnowledgeDocumentGetRequest.js +5 -0
- package/dist/api/resources/knowledge/client/requests/index.d.ts +4 -0
- package/dist/api/resources/knowledge/client/requests/index.js +2 -0
- package/dist/api/resources/knowledge/types/KnowledgeBaseField.d.ts +8 -0
- package/dist/api/resources/knowledge/types/KnowledgeBaseField.js +10 -0
- package/dist/api/resources/knowledge/types/KnowledgeBaseFilter.d.ts +28 -0
- package/dist/api/resources/knowledge/types/KnowledgeBaseFilter.js +5 -0
- package/dist/api/resources/knowledge/types/KnowledgeBaseProperties.d.ts +1 -1
- package/dist/api/resources/knowledge/types/KnowledgeBaseRefreshFrequency.d.ts +10 -0
- package/dist/api/resources/knowledge/types/KnowledgeBaseRefreshFrequency.js +12 -0
- package/dist/api/resources/knowledge/types/KnowledgeBaseResponse.d.ts +17 -1
- package/dist/api/resources/knowledge/types/KnowledgeBaseSearchRequest.d.ts +8 -0
- package/dist/api/resources/knowledge/types/KnowledgeBaseSearchRequest.js +5 -0
- package/dist/api/resources/knowledge/types/KnowledgeBaseVersion.d.ts +1 -3
- package/dist/api/resources/knowledge/types/KnowledgeBaseVersionRequest.d.ts +14 -0
- package/dist/api/resources/knowledge/types/KnowledgeBaseVersionRequest.js +5 -0
- package/dist/api/resources/knowledge/types/KnowledgeBaseVersionsListResponse.d.ts +8 -0
- package/dist/api/resources/knowledge/types/KnowledgeBaseVersionsListResponse.js +5 -0
- package/dist/api/resources/knowledge/types/KnowledgeBasesResponse.d.ts +8 -0
- package/dist/api/resources/knowledge/types/KnowledgeBasesResponse.js +5 -0
- package/dist/api/resources/knowledge/types/KnowledgeDeleteRequest.d.ts +18 -0
- package/dist/api/resources/knowledge/types/KnowledgeDeleteRequest.js +5 -0
- package/dist/api/resources/knowledge/types/KnowledgeDocumentField.d.ts +10 -0
- package/dist/api/resources/knowledge/types/KnowledgeDocumentField.js +12 -0
- package/dist/api/resources/knowledge/types/KnowledgeDocumentFilter.d.ts +34 -0
- package/dist/api/resources/knowledge/types/KnowledgeDocumentFilter.js +5 -0
- package/dist/api/resources/knowledge/types/KnowledgeDocumentResponse.d.ts +8 -3
- package/dist/api/resources/knowledge/types/KnowledgeDocumentSearchRequest.d.ts +8 -0
- package/dist/api/resources/knowledge/types/KnowledgeDocumentSearchRequest.js +5 -0
- package/dist/api/resources/knowledge/types/KnowledgeDocumentSearchResponse.d.ts +13 -0
- package/dist/api/resources/knowledge/types/KnowledgeDocumentSearchResponse.js +5 -0
- package/dist/api/resources/knowledge/types/KnowledgeDocumentsResponse.d.ts +8 -0
- package/dist/api/resources/knowledge/types/KnowledgeDocumentsResponse.js +5 -0
- package/dist/api/resources/knowledge/types/index.d.ts +13 -0
- package/dist/api/resources/knowledge/types/index.js +13 -0
- package/dist/api/resources/organizations/client/Client.d.ts +78 -0
- package/dist/api/resources/organizations/client/Client.js +376 -0
- package/dist/api/resources/organizations/index.d.ts +1 -0
- package/dist/api/resources/organizations/index.js +1 -0
- package/dist/api/resources/organizations/types/BaseOrganization.d.ts +9 -0
- package/dist/api/resources/organizations/types/BaseOrganization.js +5 -0
- package/dist/api/resources/organizations/types/CreateOrganizationRequest.d.ts +6 -0
- package/dist/api/resources/organizations/types/CreateOrganizationRequest.js +5 -0
- package/dist/api/resources/organizations/types/Organization.d.ts +8 -0
- package/dist/api/resources/organizations/types/Organization.js +5 -0
- package/dist/api/resources/organizations/types/OrganizationPatchRequest.d.ts +9 -0
- package/dist/api/resources/organizations/types/OrganizationPatchRequest.js +5 -0
- package/dist/api/resources/organizations/types/index.d.ts +4 -0
- package/dist/api/resources/organizations/types/index.js +20 -0
- package/dist/api/resources/segments/client/Client.d.ts +120 -0
- package/dist/api/resources/segments/client/Client.js +468 -0
- package/dist/api/resources/segments/client/index.d.ts +2 -0
- package/dist/api/resources/segments/client/index.js +17 -0
- package/dist/api/resources/segments/client/requests/SegmentGetRequest.d.ts +13 -0
- package/dist/api/resources/segments/client/requests/SegmentGetRequest.js +5 -0
- package/dist/api/resources/segments/client/requests/index.d.ts +1 -0
- package/dist/api/resources/segments/client/requests/index.js +2 -0
- package/dist/api/resources/segments/index.d.ts +2 -0
- package/dist/api/resources/segments/index.js +18 -0
- package/dist/api/resources/segments/types/SegmentBase.d.ts +10 -0
- package/dist/api/resources/segments/types/SegmentBase.js +5 -0
- package/dist/api/resources/segments/types/SegmentField.d.ts +8 -0
- package/dist/api/resources/segments/types/SegmentField.js +10 -0
- package/dist/api/resources/segments/types/SegmentPatchRequest.d.ts +14 -0
- package/dist/api/resources/segments/types/SegmentPatchRequest.js +5 -0
- package/dist/api/resources/segments/types/SegmentRequest.d.ts +28 -0
- package/dist/api/resources/segments/types/SegmentRequest.js +5 -0
- package/dist/api/resources/segments/types/SegmentResponse.d.ts +39 -0
- package/dist/api/resources/segments/types/SegmentResponse.js +5 -0
- package/dist/api/resources/segments/types/SegmentStatus.d.ts +8 -0
- package/dist/api/resources/segments/types/SegmentStatus.js +10 -0
- package/dist/api/resources/segments/types/SegmentsSearchRequest.d.ts +8 -0
- package/dist/api/resources/segments/types/SegmentsSearchRequest.js +5 -0
- package/dist/api/resources/segments/types/SegmentsSearchResponse.d.ts +7 -0
- package/dist/api/resources/segments/types/SegmentsSearchResponse.js +5 -0
- package/dist/api/resources/segments/types/index.d.ts +8 -0
- package/dist/api/resources/segments/types/index.js +24 -0
- package/dist/api/resources/triggers/types/EventTriggerType.d.ts +2 -1
- package/dist/api/resources/triggers/types/EventTriggerType.js +1 -0
- package/dist/api/resources/users/client/Client.d.ts +38 -4
- package/dist/api/resources/users/client/Client.js +191 -4
- package/dist/api/resources/users/client/requests/UserDeleteRequest.d.ts +1 -1
- package/dist/api/resources/users/client/requests/UserGetRequest.d.ts +1 -1
- package/dist/api/resources/users/index.d.ts +1 -0
- package/dist/api/resources/users/index.js +1 -0
- package/dist/api/resources/users/types/AgentUser.d.ts +24 -0
- package/dist/api/resources/users/types/AgentUser.js +5 -0
- package/dist/api/resources/users/types/AgentUserField.d.ts +8 -0
- package/dist/api/resources/users/types/AgentUserField.js +10 -0
- package/dist/api/resources/users/types/AgentUserFilter.d.ts +17 -0
- package/dist/api/resources/users/types/AgentUserFilter.js +5 -0
- package/dist/api/resources/users/types/AgentUserSearchRequest.d.ts +8 -0
- package/dist/api/resources/users/types/AgentUserSearchRequest.js +5 -0
- package/dist/api/resources/users/types/AgentUserSearchResponse.d.ts +8 -0
- package/dist/api/resources/users/types/AgentUserSearchResponse.js +5 -0
- package/dist/api/resources/users/types/AppUserSummary.d.ts +12 -0
- package/dist/api/resources/users/types/AppUserSummary.js +5 -0
- package/dist/api/resources/users/types/index.d.ts +6 -0
- package/dist/api/resources/users/types/index.js +22 -0
- package/dist/serialization/resources/actions/client/index.d.ts +1 -0
- package/dist/serialization/resources/actions/client/index.js +17 -0
- package/dist/serialization/resources/actions/client/requests/ActionPatchRequest.d.ts +17 -0
- package/dist/serialization/resources/actions/client/requests/ActionPatchRequest.js +48 -0
- package/dist/serialization/resources/actions/client/requests/index.d.ts +1 -0
- package/dist/serialization/resources/actions/client/requests/index.js +5 -0
- package/dist/serialization/resources/actions/index.d.ts +1 -0
- package/dist/serialization/resources/actions/index.js +1 -0
- package/dist/serialization/resources/actions/types/ActionField.d.ts +10 -0
- package/dist/serialization/resources/actions/types/ActionField.js +41 -0
- package/dist/serialization/resources/actions/types/ActionFilter.d.ts +16 -0
- package/dist/serialization/resources/actions/types/ActionFilter.js +47 -0
- package/dist/serialization/resources/actions/types/ActionsResponse.d.ts +14 -0
- package/dist/serialization/resources/actions/types/ActionsResponse.js +47 -0
- package/dist/serialization/resources/actions/types/ActionsSearchRequest.d.ts +16 -0
- package/dist/serialization/resources/actions/types/ActionsSearchRequest.js +49 -0
- package/dist/serialization/resources/actions/types/index.d.ts +4 -0
- package/dist/serialization/resources/actions/types/index.js +4 -0
- package/dist/serialization/resources/agentCapabilities/types/ActionCapability.d.ts +20 -0
- package/dist/serialization/resources/agentCapabilities/types/ActionCapability.js +54 -0
- package/dist/serialization/resources/agentCapabilities/types/AgentCapability.d.ts +18 -0
- package/dist/serialization/resources/agentCapabilities/types/AgentCapability.js +51 -0
- package/dist/serialization/resources/agentCapabilities/types/AgentCapabilityBase.d.ts +18 -0
- package/dist/serialization/resources/agentCapabilities/types/AgentCapabilityBase.js +49 -0
- package/dist/serialization/resources/agentCapabilities/types/AgentCapabilityField.d.ts +10 -0
- package/dist/serialization/resources/agentCapabilities/types/AgentCapabilityField.js +41 -0
- package/dist/serialization/resources/agentCapabilities/types/AgentCapabilityListRequest.d.ts +21 -0
- package/dist/serialization/resources/agentCapabilities/types/AgentCapabilityListRequest.js +54 -0
- package/dist/serialization/resources/agentCapabilities/types/AgentCapabilityType.d.ts +10 -0
- package/dist/serialization/resources/agentCapabilities/types/AgentCapabilityType.js +41 -0
- package/dist/serialization/resources/agentCapabilities/types/ListAgentCapabilitiesResponse.d.ts +15 -0
- package/dist/serialization/resources/agentCapabilities/types/ListAgentCapabilitiesResponse.js +48 -0
- package/dist/serialization/resources/agentCapabilities/types/PatchAgentCapabilityRequest.d.ts +14 -0
- package/dist/serialization/resources/agentCapabilities/types/PatchAgentCapabilityRequest.js +45 -0
- package/dist/serialization/resources/agentCapabilities/types/TriggerCapability.d.ts +14 -0
- package/dist/serialization/resources/agentCapabilities/types/TriggerCapability.js +47 -0
- package/dist/serialization/resources/agentCapabilities/types/TriggerType.d.ts +10 -0
- package/dist/serialization/resources/agentCapabilities/types/TriggerType.js +41 -0
- package/dist/serialization/resources/agentCapabilities/types/index.d.ts +10 -0
- package/dist/serialization/resources/agentCapabilities/types/index.js +26 -0
- package/dist/serialization/resources/agents/types/Agent.d.ts +3 -0
- package/dist/serialization/resources/agents/types/Agent.js +3 -0
- package/dist/serialization/resources/agents/types/AgentPatchRequest.d.ts +17 -0
- package/dist/serialization/resources/agents/types/AgentPatchRequest.js +48 -0
- package/dist/serialization/resources/agents/types/CreateAgentRequest.d.ts +14 -0
- package/dist/serialization/resources/agents/types/CreateAgentRequest.js +45 -0
- package/dist/serialization/resources/agents/types/PiiCategory.d.ts +10 -0
- package/dist/serialization/resources/agents/types/PiiCategory.js +99 -0
- package/dist/serialization/resources/agents/types/index.d.ts +3 -0
- package/dist/serialization/resources/agents/types/index.js +3 -0
- package/dist/serialization/resources/analytics/types/AgentUserAnalyticsRequest.d.ts +14 -0
- package/dist/serialization/resources/analytics/types/AgentUserAnalyticsRequest.js +45 -0
- package/dist/serialization/resources/analytics/types/AgentUserColumnDefinition.d.ts +14 -0
- package/dist/serialization/resources/analytics/types/AgentUserColumnDefinition.js +47 -0
- package/dist/serialization/resources/analytics/types/AgentUserCount.d.ts +11 -0
- package/dist/serialization/resources/analytics/types/AgentUserCount.js +41 -0
- package/dist/serialization/resources/analytics/types/AgentUserMetric.d.ts +14 -0
- package/dist/serialization/resources/analytics/types/AgentUserMetric.js +49 -0
- package/dist/serialization/resources/analytics/types/AgentUserRow.d.ts +15 -0
- package/dist/serialization/resources/analytics/types/AgentUserRow.js +48 -0
- package/dist/serialization/resources/analytics/types/AgentUserTableRequest.d.ts +16 -0
- package/dist/serialization/resources/analytics/types/AgentUserTableRequest.js +49 -0
- package/dist/serialization/resources/analytics/types/AgentUserTableResponse.d.ts +14 -0
- package/dist/serialization/resources/analytics/types/AgentUserTableResponse.js +47 -0
- package/dist/serialization/resources/analytics/types/ConversationAnalyticsRequest.d.ts +1 -0
- package/dist/serialization/resources/analytics/types/ConversationAnalyticsRequest.js +1 -0
- package/dist/serialization/resources/analytics/types/FeedbackAnalyticsRequest.d.ts +1 -0
- package/dist/serialization/resources/analytics/types/FeedbackAnalyticsRequest.js +1 -0
- package/dist/serialization/resources/analytics/types/FieldValue.d.ts +2 -2
- package/dist/serialization/resources/analytics/types/FieldValue.js +2 -2
- package/dist/serialization/resources/analytics/types/index.d.ts +7 -0
- package/dist/serialization/resources/analytics/types/index.js +7 -0
- package/dist/serialization/resources/assets/types/CommitAssetUploadRequest.d.ts +12 -0
- package/dist/serialization/resources/assets/types/CommitAssetUploadRequest.js +43 -0
- package/dist/serialization/resources/assets/types/InitiateAssetUploadRequest.d.ts +12 -0
- package/dist/serialization/resources/assets/types/InitiateAssetUploadRequest.js +42 -0
- package/dist/serialization/resources/assets/types/InitiateAssetUploadResponse.d.ts +15 -0
- package/dist/serialization/resources/assets/types/InitiateAssetUploadResponse.js +46 -0
- package/dist/serialization/resources/assets/types/index.d.ts +3 -0
- package/dist/serialization/resources/assets/types/index.js +19 -0
- package/dist/serialization/resources/commons/types/ActionExecutionParamValue.d.ts +18 -0
- package/dist/serialization/resources/commons/types/ActionExecutionParamValue.js +52 -0
- package/dist/serialization/resources/commons/types/ActionOAuthConfiguration.d.ts +18 -0
- package/dist/serialization/resources/commons/types/ActionOAuthConfiguration.js +49 -0
- package/dist/serialization/resources/commons/types/ActionParameter.d.ts +3 -0
- package/dist/serialization/resources/commons/types/ActionParameter.js +3 -0
- package/dist/serialization/resources/commons/types/ActionParameterType.d.ts +1 -1
- package/dist/serialization/resources/commons/types/ActionParameterType.js +1 -1
- package/dist/serialization/resources/commons/types/ActionResponse.d.ts +6 -0
- package/dist/serialization/resources/commons/types/ActionResponse.js +6 -0
- package/dist/serialization/resources/commons/types/AttachmentRequest.d.ts +15 -0
- package/dist/serialization/resources/commons/types/AttachmentRequest.js +48 -0
- package/dist/serialization/resources/commons/types/AttachmentResponse.d.ts +16 -0
- package/dist/serialization/resources/commons/types/AttachmentResponse.js +49 -0
- package/dist/serialization/resources/commons/types/AttachmentStatus.d.ts +10 -0
- package/dist/serialization/resources/commons/types/AttachmentStatus.js +41 -0
- package/dist/serialization/resources/commons/types/BaseAttachment.d.ts +13 -0
- package/dist/serialization/resources/commons/types/BaseAttachment.js +44 -0
- package/dist/serialization/resources/commons/types/BaseConversationResponse.d.ts +2 -0
- package/dist/serialization/resources/commons/types/BaseConversationResponse.js +2 -0
- package/dist/serialization/resources/commons/types/BotLogic.d.ts +13 -0
- package/dist/serialization/resources/commons/types/BotLogic.js +44 -0
- package/dist/serialization/resources/commons/types/BotLogicActionExecutedDetail.d.ts +16 -0
- package/dist/serialization/resources/commons/types/BotLogicActionExecutedDetail.js +49 -0
- package/dist/serialization/resources/commons/types/BotLogicActionItem.d.ts +15 -0
- package/dist/serialization/resources/commons/types/BotLogicActionItem.js +46 -0
- package/dist/serialization/resources/commons/types/BotLogicActionReviewedDetail.d.ts +14 -0
- package/dist/serialization/resources/commons/types/BotLogicActionReviewedDetail.js +45 -0
- package/dist/serialization/resources/commons/types/BotLogicFormSubmissionItem.d.ts +12 -0
- package/dist/serialization/resources/commons/types/BotLogicFormSubmissionItem.js +42 -0
- package/dist/serialization/resources/commons/types/BotLogicItem.d.ts +34 -0
- package/dist/serialization/resources/commons/types/BotLogicItem.js +59 -0
- package/dist/serialization/resources/commons/types/BotLogicKnowledgeDetail.d.ts +16 -0
- package/dist/serialization/resources/commons/types/BotLogicKnowledgeDetail.js +47 -0
- package/dist/serialization/resources/commons/types/BotLogicKnowledgeItem.d.ts +14 -0
- package/dist/serialization/resources/commons/types/BotLogicKnowledgeItem.js +45 -0
- package/dist/serialization/resources/commons/types/BotLogicSafetyItem.d.ts +12 -0
- package/dist/serialization/resources/commons/types/BotLogicSafetyItem.js +43 -0
- package/dist/serialization/resources/commons/types/BotLogicSegmentsItem.d.ts +13 -0
- package/dist/serialization/resources/commons/types/BotLogicSegmentsItem.js +44 -0
- package/dist/serialization/resources/commons/types/BotLogicUserItem.d.ts +12 -0
- package/dist/serialization/resources/commons/types/BotLogicUserItem.js +43 -0
- package/dist/serialization/resources/commons/types/BotMessage.d.ts +4 -2
- package/dist/serialization/resources/commons/types/BotMessage.js +4 -2
- package/dist/serialization/resources/commons/types/BotOAuthButtonResponse.d.ts +13 -0
- package/dist/serialization/resources/commons/types/BotOAuthButtonResponse.js +44 -0
- package/dist/serialization/resources/commons/types/BotResponse.d.ts +5 -1
- package/dist/serialization/resources/commons/types/BotResponse.js +2 -0
- package/dist/serialization/resources/commons/types/Capability.d.ts +1 -1
- package/dist/serialization/resources/commons/types/Capability.js +1 -1
- package/dist/serialization/resources/commons/types/ConversationResponse.d.ts +2 -0
- package/dist/serialization/resources/commons/types/ConversationResponse.js +2 -0
- package/dist/serialization/resources/commons/types/DocumentInformation.d.ts +1 -0
- package/dist/serialization/resources/commons/types/DocumentInformation.js +1 -0
- package/dist/serialization/resources/commons/types/EntityResult.d.ts +13 -0
- package/dist/serialization/resources/commons/types/EntityResult.js +46 -0
- package/dist/serialization/resources/commons/types/EntityType.d.ts +1 -1
- package/dist/serialization/resources/commons/types/EntityType.js +1 -0
- package/dist/serialization/resources/commons/types/EventBaseNoId.d.ts +20 -0
- package/dist/serialization/resources/commons/types/EventBaseNoId.js +51 -0
- package/dist/serialization/resources/commons/types/EventFilter.d.ts +23 -0
- package/dist/serialization/resources/commons/types/EventFilter.js +54 -0
- package/dist/serialization/resources/commons/types/EventRequest.d.ts +18 -0
- package/dist/serialization/resources/commons/types/EventRequest.js +51 -0
- package/dist/serialization/resources/commons/types/EventUserInfo.d.ts +13 -0
- package/dist/serialization/resources/commons/types/EventUserInfo.js +44 -0
- package/dist/serialization/resources/commons/types/EventUserInfoBase.d.ts +13 -0
- package/dist/serialization/resources/commons/types/EventUserInfoBase.js +44 -0
- package/dist/serialization/resources/commons/types/EventsSearchRequest.d.ts +16 -0
- package/dist/serialization/resources/commons/types/EventsSearchRequest.js +49 -0
- package/dist/serialization/resources/commons/types/EventsSearchResponse.d.ts +14 -0
- package/dist/serialization/resources/commons/types/EventsSearchResponse.js +47 -0
- package/dist/serialization/resources/commons/types/InboxItem.d.ts +1 -9
- package/dist/serialization/resources/commons/types/InboxItem.js +0 -4
- package/dist/serialization/resources/commons/types/InboxItemBase.d.ts +2 -0
- package/dist/serialization/resources/commons/types/InboxItemBase.js +2 -0
- package/dist/serialization/resources/commons/types/InboxItemDuplicateDocuments.d.ts +1 -1
- package/dist/serialization/resources/commons/types/InboxItemDuplicateDocuments.js +1 -1
- package/dist/serialization/resources/commons/types/InboxItemFix.d.ts +1 -5
- package/dist/serialization/resources/commons/types/InboxItemFix.js +0 -2
- package/dist/serialization/resources/commons/types/InboxItemSeverity.d.ts +10 -0
- package/dist/serialization/resources/commons/types/InboxItemSeverity.js +41 -0
- package/dist/serialization/resources/commons/types/InboxItemType.d.ts +1 -1
- package/dist/serialization/resources/commons/types/InboxItemType.js +1 -6
- package/dist/serialization/resources/commons/types/LlmInclusionStatus.d.ts +10 -0
- package/dist/serialization/resources/commons/types/LlmInclusionStatus.js +41 -0
- package/dist/serialization/resources/commons/types/MessageStatus.d.ts +10 -0
- package/dist/serialization/resources/commons/types/MessageStatus.js +41 -0
- package/dist/serialization/resources/commons/types/NovelSystemEvent.d.ts +14 -0
- package/dist/serialization/resources/commons/types/NovelSystemEvent.js +47 -0
- package/dist/serialization/resources/commons/types/NovelUserEvent.d.ts +22 -0
- package/dist/serialization/resources/commons/types/NovelUserEvent.js +55 -0
- package/dist/serialization/resources/commons/types/QualityReason.d.ts +1 -1
- package/dist/serialization/resources/commons/types/QualityReason.js +1 -0
- package/dist/serialization/resources/commons/types/ScopedEntity.d.ts +14 -0
- package/dist/serialization/resources/commons/types/ScopedEntity.js +45 -0
- package/dist/serialization/resources/commons/types/SystemEvent.d.ts +14 -0
- package/dist/serialization/resources/commons/types/SystemEvent.js +47 -0
- package/dist/serialization/resources/commons/types/UserEvent.d.ts +22 -0
- package/dist/serialization/resources/commons/types/UserEvent.js +55 -0
- package/dist/serialization/resources/commons/types/UserEventName.d.ts +10 -0
- package/dist/serialization/resources/commons/types/UserEventName.js +41 -0
- package/dist/serialization/resources/commons/types/UserMessage.d.ts +7 -2
- package/dist/serialization/resources/commons/types/UserMessage.js +7 -2
- package/dist/serialization/resources/commons/types/UserMessageResponseState.d.ts +10 -0
- package/dist/serialization/resources/commons/types/UserMessageResponseState.js +41 -0
- package/dist/serialization/resources/commons/types/index.d.ts +57 -7
- package/dist/serialization/resources/commons/types/index.js +57 -7
- package/dist/serialization/resources/conversation/types/ActionFormAttachment.d.ts +13 -0
- package/dist/serialization/resources/conversation/types/ActionFormAttachment.js +44 -0
- package/dist/serialization/resources/conversation/types/ActionFormRequestParamValue.d.ts +11 -0
- package/dist/serialization/resources/conversation/types/ActionFormRequestParamValue.js +42 -0
- package/dist/serialization/resources/conversation/types/AskObjectRequest.d.ts +13 -0
- package/dist/serialization/resources/conversation/types/AskObjectRequest.js +46 -0
- package/dist/serialization/resources/conversation/types/AskRequest.d.ts +2 -2
- package/dist/serialization/resources/conversation/types/AskRequest.js +2 -2
- package/dist/serialization/resources/conversation/types/AskStreamOAuthButtonEvent.d.ts +12 -0
- package/dist/serialization/resources/conversation/types/AskStreamOAuthButtonEvent.js +42 -0
- package/dist/serialization/resources/conversation/types/ConversationField.d.ts +1 -1
- package/dist/serialization/resources/conversation/types/ConversationField.js +4 -0
- package/dist/serialization/resources/conversation/types/ConversationFilter.d.ts +3 -0
- package/dist/serialization/resources/conversation/types/ConversationFilter.js +3 -0
- package/dist/serialization/resources/conversation/types/ConversationMessageRequest.d.ts +2 -2
- package/dist/serialization/resources/conversation/types/ConversationMessageRequest.js +2 -2
- package/dist/serialization/resources/conversation/types/ConversationPatchRequest.d.ts +16 -0
- package/dist/serialization/resources/conversation/types/ConversationPatchRequest.js +47 -0
- package/dist/serialization/resources/conversation/types/DeliverConversationMessageRequest.d.ts +15 -0
- package/dist/serialization/resources/conversation/types/DeliverConversationMessageRequest.js +46 -0
- package/dist/serialization/resources/conversation/types/DeliverMessageRequest.d.ts +18 -0
- package/dist/serialization/resources/conversation/types/DeliverMessageRequest.js +51 -0
- package/dist/serialization/resources/conversation/types/DeliverMessageResponse.d.ts +13 -0
- package/dist/serialization/resources/conversation/types/DeliverMessageResponse.js +44 -0
- package/dist/serialization/resources/conversation/types/DeliverUserMessageRequest.d.ts +15 -0
- package/dist/serialization/resources/conversation/types/DeliverUserMessageRequest.js +46 -0
- package/dist/serialization/resources/conversation/types/DeliveryStatus.d.ts +10 -0
- package/dist/serialization/resources/conversation/types/DeliveryStatus.js +41 -0
- package/dist/serialization/resources/conversation/types/NumericConversationField.d.ts +1 -1
- package/dist/serialization/resources/conversation/types/NumericConversationField.js +1 -0
- package/dist/serialization/resources/conversation/types/ObjectStreamResponse.d.ts +22 -0
- package/dist/serialization/resources/conversation/types/ObjectStreamResponse.js +53 -0
- package/dist/serialization/resources/conversation/types/StreamResponse.d.ts +5 -1
- package/dist/serialization/resources/conversation/types/StreamResponse.js +2 -0
- package/dist/serialization/resources/conversation/types/SubmitActionFormRequest.d.ts +2 -1
- package/dist/serialization/resources/conversation/types/SubmitActionFormRequest.js +2 -1
- package/dist/serialization/resources/conversation/types/index.d.ts +11 -1
- package/dist/serialization/resources/conversation/types/index.js +11 -1
- package/dist/serialization/resources/inbox/types/ApplyFixesRequest.d.ts +15 -0
- package/dist/serialization/resources/inbox/types/ApplyFixesRequest.js +46 -0
- package/dist/serialization/resources/inbox/types/InboxFilter.d.ts +17 -0
- package/dist/serialization/resources/inbox/types/InboxFilter.js +48 -0
- package/dist/serialization/resources/inbox/types/InboxSearchRequest.d.ts +4 -10
- package/dist/serialization/resources/inbox/types/InboxSearchRequest.js +4 -10
- package/dist/serialization/resources/inbox/types/InboxSearchResponse.d.ts +1 -1
- package/dist/serialization/resources/inbox/types/InboxSearchResponse.js +1 -1
- package/dist/serialization/resources/inbox/types/index.d.ts +2 -2
- package/dist/serialization/resources/inbox/types/index.js +2 -2
- package/dist/serialization/resources/index.d.ts +12 -2
- package/dist/serialization/resources/index.js +13 -3
- package/dist/serialization/resources/knowledge/client/index.d.ts +1 -0
- package/dist/serialization/resources/knowledge/client/index.js +17 -0
- package/dist/serialization/resources/knowledge/client/requests/KnowledgeBasePatchRequest.d.ts +21 -0
- package/dist/serialization/resources/knowledge/client/requests/KnowledgeBasePatchRequest.js +53 -0
- package/dist/serialization/resources/knowledge/client/requests/index.d.ts +1 -0
- package/dist/serialization/resources/knowledge/client/requests/index.js +5 -0
- package/dist/serialization/resources/knowledge/index.d.ts +1 -0
- package/dist/serialization/resources/knowledge/index.js +1 -0
- package/dist/serialization/resources/knowledge/types/KnowledgeBaseField.d.ts +10 -0
- package/dist/serialization/resources/knowledge/types/KnowledgeBaseField.js +41 -0
- package/dist/serialization/resources/knowledge/types/KnowledgeBaseFilter.d.ts +16 -0
- package/dist/serialization/resources/knowledge/types/KnowledgeBaseFilter.js +47 -0
- package/dist/serialization/resources/knowledge/types/KnowledgeBaseRefreshFrequency.d.ts +10 -0
- package/dist/serialization/resources/knowledge/types/KnowledgeBaseRefreshFrequency.js +41 -0
- package/dist/serialization/resources/knowledge/types/KnowledgeBaseResponse.d.ts +7 -0
- package/dist/serialization/resources/knowledge/types/KnowledgeBaseResponse.js +7 -0
- package/dist/serialization/resources/knowledge/types/KnowledgeBaseSearchRequest.d.ts +16 -0
- package/dist/serialization/resources/knowledge/types/KnowledgeBaseSearchRequest.js +49 -0
- package/dist/serialization/resources/knowledge/types/KnowledgeBaseVersion.d.ts +2 -3
- package/dist/serialization/resources/knowledge/types/KnowledgeBaseVersion.js +5 -4
- package/dist/serialization/resources/knowledge/types/KnowledgeBaseVersionRequest.d.ts +13 -0
- package/dist/serialization/resources/knowledge/types/KnowledgeBaseVersionRequest.js +44 -0
- package/dist/serialization/resources/knowledge/types/KnowledgeBaseVersionsListResponse.d.ts +13 -0
- package/dist/serialization/resources/knowledge/types/KnowledgeBaseVersionsListResponse.js +44 -0
- package/dist/serialization/resources/knowledge/types/KnowledgeBasesResponse.d.ts +14 -0
- package/dist/serialization/resources/knowledge/types/KnowledgeBasesResponse.js +47 -0
- package/dist/serialization/resources/knowledge/types/KnowledgeDeleteRequest.d.ts +13 -0
- package/dist/serialization/resources/knowledge/types/KnowledgeDeleteRequest.js +44 -0
- package/dist/serialization/resources/knowledge/types/KnowledgeDocumentField.d.ts +10 -0
- package/dist/serialization/resources/knowledge/types/KnowledgeDocumentField.js +41 -0
- package/dist/serialization/resources/knowledge/types/KnowledgeDocumentFilter.d.ts +18 -0
- package/dist/serialization/resources/knowledge/types/KnowledgeDocumentFilter.js +49 -0
- package/dist/serialization/resources/knowledge/types/KnowledgeDocumentResponse.d.ts +2 -4
- package/dist/serialization/resources/knowledge/types/KnowledgeDocumentResponse.js +2 -4
- package/dist/serialization/resources/knowledge/types/KnowledgeDocumentSearchRequest.d.ts +16 -0
- package/dist/serialization/resources/knowledge/types/KnowledgeDocumentSearchRequest.js +49 -0
- package/dist/serialization/resources/knowledge/types/KnowledgeDocumentSearchResponse.d.ts +15 -0
- package/dist/serialization/resources/knowledge/types/KnowledgeDocumentSearchResponse.js +48 -0
- package/dist/serialization/resources/knowledge/types/KnowledgeDocumentsResponse.d.ts +14 -0
- package/dist/serialization/resources/knowledge/types/KnowledgeDocumentsResponse.js +47 -0
- package/dist/serialization/resources/knowledge/types/index.d.ts +13 -0
- package/dist/serialization/resources/knowledge/types/index.js +13 -0
- package/dist/serialization/resources/organizations/index.d.ts +1 -0
- package/dist/serialization/resources/organizations/index.js +17 -0
- package/dist/serialization/resources/organizations/types/BaseOrganization.d.ts +13 -0
- package/dist/serialization/resources/organizations/types/BaseOrganization.js +44 -0
- package/dist/serialization/resources/organizations/types/CreateOrganizationRequest.d.ts +12 -0
- package/dist/serialization/resources/organizations/types/CreateOrganizationRequest.js +42 -0
- package/dist/serialization/resources/organizations/types/Organization.d.ts +14 -0
- package/dist/serialization/resources/organizations/types/Organization.js +47 -0
- package/dist/serialization/resources/organizations/types/OrganizationPatchRequest.d.ts +13 -0
- package/dist/serialization/resources/organizations/types/OrganizationPatchRequest.js +44 -0
- package/dist/serialization/resources/organizations/types/index.d.ts +4 -0
- package/dist/serialization/resources/organizations/types/index.js +20 -0
- package/dist/serialization/resources/segments/index.d.ts +1 -0
- package/dist/serialization/resources/segments/index.js +17 -0
- package/dist/serialization/resources/segments/types/SegmentBase.d.ts +13 -0
- package/dist/serialization/resources/segments/types/SegmentBase.js +45 -0
- package/dist/serialization/resources/segments/types/SegmentField.d.ts +10 -0
- package/dist/serialization/resources/segments/types/SegmentField.js +41 -0
- package/dist/serialization/resources/segments/types/SegmentPatchRequest.d.ts +16 -0
- package/dist/serialization/resources/segments/types/SegmentPatchRequest.js +48 -0
- package/dist/serialization/resources/segments/types/SegmentRequest.d.ts +14 -0
- package/dist/serialization/resources/segments/types/SegmentRequest.js +47 -0
- package/dist/serialization/resources/segments/types/SegmentResponse.d.ts +16 -0
- package/dist/serialization/resources/segments/types/SegmentResponse.js +49 -0
- package/dist/serialization/resources/segments/types/SegmentStatus.d.ts +10 -0
- package/dist/serialization/resources/segments/types/SegmentStatus.js +41 -0
- package/dist/serialization/resources/segments/types/SegmentsSearchRequest.d.ts +14 -0
- package/dist/serialization/resources/segments/types/SegmentsSearchRequest.js +47 -0
- package/dist/serialization/resources/segments/types/SegmentsSearchResponse.d.ts +14 -0
- package/dist/serialization/resources/segments/types/SegmentsSearchResponse.js +47 -0
- package/dist/serialization/resources/segments/types/index.d.ts +8 -0
- package/dist/serialization/resources/segments/types/index.js +24 -0
- package/dist/serialization/resources/triggers/types/EventTriggerType.d.ts +1 -1
- package/dist/serialization/resources/triggers/types/EventTriggerType.js +1 -1
- package/dist/serialization/resources/users/index.d.ts +1 -0
- package/dist/serialization/resources/users/index.js +17 -0
- package/dist/serialization/resources/users/types/AgentUser.d.ts +19 -0
- package/dist/serialization/resources/users/types/AgentUser.js +50 -0
- package/dist/serialization/resources/users/types/AgentUserField.d.ts +10 -0
- package/dist/serialization/resources/users/types/AgentUserField.js +41 -0
- package/dist/serialization/resources/users/types/AgentUserFilter.d.ts +14 -0
- package/dist/serialization/resources/users/types/AgentUserFilter.js +45 -0
- package/dist/serialization/resources/users/types/AgentUserSearchRequest.d.ts +16 -0
- package/dist/serialization/resources/users/types/AgentUserSearchRequest.js +49 -0
- package/dist/serialization/resources/users/types/AgentUserSearchResponse.d.ts +14 -0
- package/dist/serialization/resources/users/types/AgentUserSearchResponse.js +47 -0
- package/dist/serialization/resources/users/types/AppUserSummary.d.ts +16 -0
- package/dist/serialization/resources/users/types/AppUserSummary.js +47 -0
- package/dist/serialization/resources/users/types/index.d.ts +6 -0
- package/dist/serialization/resources/users/types/index.js +22 -0
- package/dist/version.d.ts +1 -1
- package/dist/version.js +1 -1
- package/package.json +1 -1
- package/reference.md +2803 -734
- package/serialization/resources/actions/client/index.d.ts +1 -0
- package/serialization/resources/actions/client/index.js +17 -0
- package/serialization/resources/actions/client/requests/ActionPatchRequest.d.ts +17 -0
- package/serialization/resources/actions/client/requests/ActionPatchRequest.js +48 -0
- package/serialization/resources/actions/client/requests/index.d.ts +1 -0
- package/serialization/resources/actions/client/requests/index.js +5 -0
- package/serialization/resources/actions/index.d.ts +1 -0
- package/serialization/resources/actions/index.js +1 -0
- package/serialization/resources/actions/types/ActionField.d.ts +10 -0
- package/serialization/resources/actions/types/ActionField.js +41 -0
- package/serialization/resources/actions/types/ActionFilter.d.ts +16 -0
- package/serialization/resources/actions/types/ActionFilter.js +47 -0
- package/serialization/resources/actions/types/ActionsResponse.d.ts +14 -0
- package/serialization/resources/actions/types/ActionsResponse.js +47 -0
- package/serialization/resources/actions/types/ActionsSearchRequest.d.ts +16 -0
- package/serialization/resources/actions/types/ActionsSearchRequest.js +49 -0
- package/serialization/resources/actions/types/index.d.ts +4 -0
- package/serialization/resources/actions/types/index.js +4 -0
- package/serialization/resources/agentCapabilities/index.d.ts +1 -0
- package/serialization/resources/agentCapabilities/index.js +17 -0
- package/serialization/resources/agentCapabilities/types/ActionCapability.d.ts +20 -0
- package/serialization/resources/agentCapabilities/types/ActionCapability.js +54 -0
- package/serialization/resources/agentCapabilities/types/AgentCapability.d.ts +18 -0
- package/serialization/resources/agentCapabilities/types/AgentCapability.js +51 -0
- package/serialization/resources/agentCapabilities/types/AgentCapabilityBase.d.ts +18 -0
- package/serialization/resources/agentCapabilities/types/AgentCapabilityBase.js +49 -0
- package/serialization/resources/agentCapabilities/types/AgentCapabilityField.d.ts +10 -0
- package/serialization/resources/agentCapabilities/types/AgentCapabilityField.js +41 -0
- package/serialization/resources/agentCapabilities/types/AgentCapabilityListRequest.d.ts +21 -0
- package/serialization/resources/agentCapabilities/types/AgentCapabilityListRequest.js +54 -0
- package/serialization/resources/agentCapabilities/types/AgentCapabilityType.d.ts +10 -0
- package/serialization/resources/agentCapabilities/types/AgentCapabilityType.js +41 -0
- package/serialization/resources/agentCapabilities/types/ListAgentCapabilitiesResponse.d.ts +15 -0
- package/serialization/resources/agentCapabilities/types/ListAgentCapabilitiesResponse.js +48 -0
- package/serialization/resources/agentCapabilities/types/PatchAgentCapabilityRequest.d.ts +14 -0
- package/serialization/resources/agentCapabilities/types/PatchAgentCapabilityRequest.js +45 -0
- package/serialization/resources/agentCapabilities/types/TriggerCapability.d.ts +14 -0
- package/serialization/resources/agentCapabilities/types/TriggerCapability.js +47 -0
- package/serialization/resources/agentCapabilities/types/TriggerType.d.ts +10 -0
- package/serialization/resources/agentCapabilities/types/TriggerType.js +41 -0
- package/serialization/resources/agentCapabilities/types/index.d.ts +10 -0
- package/serialization/resources/agentCapabilities/types/index.js +26 -0
- package/serialization/resources/agents/types/Agent.d.ts +3 -0
- package/serialization/resources/agents/types/Agent.js +3 -0
- package/serialization/resources/agents/types/AgentPatchRequest.d.ts +17 -0
- package/serialization/resources/agents/types/AgentPatchRequest.js +48 -0
- package/serialization/resources/agents/types/CreateAgentRequest.d.ts +14 -0
- package/serialization/resources/agents/types/CreateAgentRequest.js +45 -0
- package/serialization/resources/agents/types/PiiCategory.d.ts +10 -0
- package/serialization/resources/agents/types/PiiCategory.js +99 -0
- package/serialization/resources/agents/types/index.d.ts +3 -0
- package/serialization/resources/agents/types/index.js +3 -0
- package/serialization/resources/analytics/types/AgentUserAnalyticsRequest.d.ts +14 -0
- package/serialization/resources/analytics/types/AgentUserAnalyticsRequest.js +45 -0
- package/serialization/resources/analytics/types/AgentUserColumnDefinition.d.ts +14 -0
- package/serialization/resources/analytics/types/AgentUserColumnDefinition.js +47 -0
- package/serialization/resources/analytics/types/AgentUserCount.d.ts +11 -0
- package/serialization/resources/analytics/types/AgentUserCount.js +41 -0
- package/serialization/resources/analytics/types/AgentUserMetric.d.ts +14 -0
- package/serialization/resources/analytics/types/AgentUserMetric.js +49 -0
- package/serialization/resources/analytics/types/AgentUserRow.d.ts +15 -0
- package/serialization/resources/analytics/types/AgentUserRow.js +48 -0
- package/serialization/resources/analytics/types/AgentUserTableRequest.d.ts +16 -0
- package/serialization/resources/analytics/types/AgentUserTableRequest.js +49 -0
- package/serialization/resources/analytics/types/AgentUserTableResponse.d.ts +14 -0
- package/serialization/resources/analytics/types/AgentUserTableResponse.js +47 -0
- package/serialization/resources/analytics/types/ConversationAnalyticsRequest.d.ts +1 -0
- package/serialization/resources/analytics/types/ConversationAnalyticsRequest.js +1 -0
- package/serialization/resources/analytics/types/FeedbackAnalyticsRequest.d.ts +1 -0
- package/serialization/resources/analytics/types/FeedbackAnalyticsRequest.js +1 -0
- package/serialization/resources/analytics/types/FieldValue.d.ts +2 -2
- package/serialization/resources/analytics/types/FieldValue.js +2 -2
- package/serialization/resources/analytics/types/index.d.ts +7 -0
- package/serialization/resources/analytics/types/index.js +7 -0
- package/serialization/resources/assets/index.d.ts +1 -0
- package/serialization/resources/assets/index.js +17 -0
- package/serialization/resources/assets/types/CommitAssetUploadRequest.d.ts +12 -0
- package/serialization/resources/assets/types/CommitAssetUploadRequest.js +43 -0
- package/serialization/resources/assets/types/InitiateAssetUploadRequest.d.ts +12 -0
- package/serialization/resources/assets/types/InitiateAssetUploadRequest.js +42 -0
- package/serialization/resources/assets/types/InitiateAssetUploadResponse.d.ts +15 -0
- package/serialization/resources/assets/types/InitiateAssetUploadResponse.js +46 -0
- package/serialization/resources/assets/types/index.d.ts +3 -0
- package/serialization/resources/assets/types/index.js +19 -0
- package/serialization/resources/commons/types/ActionExecutionParamValue.d.ts +18 -0
- package/serialization/resources/commons/types/ActionExecutionParamValue.js +52 -0
- package/serialization/resources/commons/types/ActionOAuthConfiguration.d.ts +18 -0
- package/serialization/resources/commons/types/ActionOAuthConfiguration.js +49 -0
- package/serialization/resources/commons/types/ActionParameter.d.ts +3 -0
- package/serialization/resources/commons/types/ActionParameter.js +3 -0
- package/serialization/resources/commons/types/ActionParameterType.d.ts +1 -1
- package/serialization/resources/commons/types/ActionParameterType.js +1 -1
- package/serialization/resources/commons/types/ActionResponse.d.ts +6 -0
- package/serialization/resources/commons/types/ActionResponse.js +6 -0
- package/serialization/resources/commons/types/AttachmentRequest.d.ts +15 -0
- package/serialization/resources/commons/types/AttachmentRequest.js +48 -0
- package/serialization/resources/commons/types/AttachmentResponse.d.ts +16 -0
- package/serialization/resources/commons/types/AttachmentResponse.js +49 -0
- package/serialization/resources/commons/types/AttachmentStatus.d.ts +10 -0
- package/serialization/resources/commons/types/AttachmentStatus.js +41 -0
- package/serialization/resources/commons/types/BaseAttachment.d.ts +13 -0
- package/serialization/resources/commons/types/BaseAttachment.js +44 -0
- package/serialization/resources/commons/types/BaseConversationResponse.d.ts +2 -0
- package/serialization/resources/commons/types/BaseConversationResponse.js +2 -0
- package/serialization/resources/commons/types/BotLogic.d.ts +13 -0
- package/serialization/resources/commons/types/BotLogic.js +44 -0
- package/serialization/resources/commons/types/BotLogicActionExecutedDetail.d.ts +16 -0
- package/serialization/resources/commons/types/BotLogicActionExecutedDetail.js +49 -0
- package/serialization/resources/commons/types/BotLogicActionItem.d.ts +15 -0
- package/serialization/resources/commons/types/BotLogicActionItem.js +46 -0
- package/serialization/resources/commons/types/BotLogicActionReviewedDetail.d.ts +14 -0
- package/serialization/resources/commons/types/BotLogicActionReviewedDetail.js +45 -0
- package/serialization/resources/commons/types/BotLogicFormSubmissionItem.d.ts +12 -0
- package/serialization/resources/commons/types/BotLogicFormSubmissionItem.js +42 -0
- package/serialization/resources/commons/types/BotLogicItem.d.ts +34 -0
- package/serialization/resources/commons/types/BotLogicItem.js +59 -0
- package/serialization/resources/commons/types/BotLogicKnowledgeDetail.d.ts +16 -0
- package/serialization/resources/commons/types/BotLogicKnowledgeDetail.js +47 -0
- package/serialization/resources/commons/types/BotLogicKnowledgeItem.d.ts +14 -0
- package/serialization/resources/commons/types/BotLogicKnowledgeItem.js +45 -0
- package/serialization/resources/commons/types/BotLogicSafetyItem.d.ts +12 -0
- package/serialization/resources/commons/types/BotLogicSafetyItem.js +43 -0
- package/serialization/resources/commons/types/BotLogicSegmentsItem.d.ts +13 -0
- package/serialization/resources/commons/types/BotLogicSegmentsItem.js +44 -0
- package/serialization/resources/commons/types/BotLogicUserItem.d.ts +12 -0
- package/serialization/resources/commons/types/BotLogicUserItem.js +43 -0
- package/serialization/resources/commons/types/BotMessage.d.ts +4 -2
- package/serialization/resources/commons/types/BotMessage.js +4 -2
- package/serialization/resources/commons/types/BotOAuthButtonResponse.d.ts +13 -0
- package/serialization/resources/commons/types/BotOAuthButtonResponse.js +44 -0
- package/serialization/resources/commons/types/BotResponse.d.ts +5 -1
- package/serialization/resources/commons/types/BotResponse.js +2 -0
- package/serialization/resources/commons/types/Capability.d.ts +1 -1
- package/serialization/resources/commons/types/Capability.js +1 -1
- package/serialization/resources/commons/types/ConversationResponse.d.ts +2 -0
- package/serialization/resources/commons/types/ConversationResponse.js +2 -0
- package/serialization/resources/commons/types/DocumentInformation.d.ts +1 -0
- package/serialization/resources/commons/types/DocumentInformation.js +1 -0
- package/serialization/resources/commons/types/EntityResult.d.ts +13 -0
- package/serialization/resources/commons/types/EntityResult.js +46 -0
- package/serialization/resources/commons/types/EntityType.d.ts +1 -1
- package/serialization/resources/commons/types/EntityType.js +1 -0
- package/serialization/resources/commons/types/EventBaseNoId.d.ts +20 -0
- package/serialization/resources/commons/types/EventBaseNoId.js +51 -0
- package/serialization/resources/commons/types/EventFilter.d.ts +23 -0
- package/serialization/resources/commons/types/EventFilter.js +54 -0
- package/serialization/resources/commons/types/EventRequest.d.ts +18 -0
- package/serialization/resources/commons/types/EventRequest.js +51 -0
- package/serialization/resources/commons/types/EventUserInfo.d.ts +13 -0
- package/serialization/resources/commons/types/EventUserInfo.js +44 -0
- package/serialization/resources/commons/types/EventUserInfoBase.d.ts +13 -0
- package/serialization/resources/commons/types/EventUserInfoBase.js +44 -0
- package/serialization/resources/commons/types/EventsSearchRequest.d.ts +16 -0
- package/serialization/resources/commons/types/EventsSearchRequest.js +49 -0
- package/serialization/resources/commons/types/EventsSearchResponse.d.ts +14 -0
- package/serialization/resources/commons/types/EventsSearchResponse.js +47 -0
- package/serialization/resources/commons/types/InboxItem.d.ts +1 -9
- package/serialization/resources/commons/types/InboxItem.js +0 -4
- package/serialization/resources/commons/types/InboxItemBase.d.ts +2 -0
- package/serialization/resources/commons/types/InboxItemBase.js +2 -0
- package/serialization/resources/commons/types/InboxItemDuplicateDocuments.d.ts +1 -1
- package/serialization/resources/commons/types/InboxItemDuplicateDocuments.js +1 -1
- package/serialization/resources/commons/types/InboxItemFix.d.ts +1 -5
- package/serialization/resources/commons/types/InboxItemFix.js +0 -2
- package/serialization/resources/commons/types/InboxItemSeverity.d.ts +10 -0
- package/serialization/resources/commons/types/InboxItemSeverity.js +41 -0
- package/serialization/resources/commons/types/InboxItemType.d.ts +1 -1
- package/serialization/resources/commons/types/InboxItemType.js +1 -6
- package/serialization/resources/commons/types/LlmInclusionStatus.d.ts +10 -0
- package/serialization/resources/commons/types/LlmInclusionStatus.js +41 -0
- package/serialization/resources/commons/types/MessageStatus.d.ts +10 -0
- package/serialization/resources/commons/types/MessageStatus.js +41 -0
- package/serialization/resources/commons/types/NovelSystemEvent.d.ts +14 -0
- package/serialization/resources/commons/types/NovelSystemEvent.js +47 -0
- package/serialization/resources/commons/types/NovelUserEvent.d.ts +22 -0
- package/serialization/resources/commons/types/NovelUserEvent.js +55 -0
- package/serialization/resources/commons/types/QualityReason.d.ts +1 -1
- package/serialization/resources/commons/types/QualityReason.js +1 -0
- package/serialization/resources/commons/types/ScopedEntity.d.ts +14 -0
- package/serialization/resources/commons/types/ScopedEntity.js +45 -0
- package/serialization/resources/commons/types/SystemEvent.d.ts +14 -0
- package/serialization/resources/commons/types/SystemEvent.js +47 -0
- package/serialization/resources/commons/types/UserEvent.d.ts +22 -0
- package/serialization/resources/commons/types/UserEvent.js +55 -0
- package/serialization/resources/commons/types/UserEventName.d.ts +10 -0
- package/serialization/resources/commons/types/UserEventName.js +41 -0
- package/serialization/resources/commons/types/UserMessage.d.ts +7 -2
- package/serialization/resources/commons/types/UserMessage.js +7 -2
- package/serialization/resources/commons/types/UserMessageResponseState.d.ts +10 -0
- package/serialization/resources/commons/types/UserMessageResponseState.js +41 -0
- package/serialization/resources/commons/types/index.d.ts +57 -7
- package/serialization/resources/commons/types/index.js +57 -7
- package/serialization/resources/conversation/types/ActionFormAttachment.d.ts +13 -0
- package/serialization/resources/conversation/types/ActionFormAttachment.js +44 -0
- package/serialization/resources/conversation/types/ActionFormRequestParamValue.d.ts +11 -0
- package/serialization/resources/conversation/types/ActionFormRequestParamValue.js +42 -0
- package/serialization/resources/conversation/types/AskObjectRequest.d.ts +13 -0
- package/serialization/resources/conversation/types/AskObjectRequest.js +46 -0
- package/serialization/resources/conversation/types/AskRequest.d.ts +2 -2
- package/serialization/resources/conversation/types/AskRequest.js +2 -2
- package/serialization/resources/conversation/types/AskStreamOAuthButtonEvent.d.ts +12 -0
- package/serialization/resources/conversation/types/AskStreamOAuthButtonEvent.js +42 -0
- package/serialization/resources/conversation/types/ConversationField.d.ts +1 -1
- package/serialization/resources/conversation/types/ConversationField.js +4 -0
- package/serialization/resources/conversation/types/ConversationFilter.d.ts +3 -0
- package/serialization/resources/conversation/types/ConversationFilter.js +3 -0
- package/serialization/resources/conversation/types/ConversationMessageRequest.d.ts +2 -2
- package/serialization/resources/conversation/types/ConversationMessageRequest.js +2 -2
- package/serialization/resources/conversation/types/ConversationPatchRequest.d.ts +16 -0
- package/serialization/resources/conversation/types/ConversationPatchRequest.js +47 -0
- package/serialization/resources/conversation/types/DeliverConversationMessageRequest.d.ts +15 -0
- package/serialization/resources/conversation/types/DeliverConversationMessageRequest.js +46 -0
- package/serialization/resources/conversation/types/DeliverMessageRequest.d.ts +18 -0
- package/serialization/resources/conversation/types/DeliverMessageRequest.js +51 -0
- package/serialization/resources/conversation/types/DeliverMessageResponse.d.ts +13 -0
- package/serialization/resources/conversation/types/DeliverMessageResponse.js +44 -0
- package/serialization/resources/conversation/types/DeliverUserMessageRequest.d.ts +15 -0
- package/serialization/resources/conversation/types/DeliverUserMessageRequest.js +46 -0
- package/serialization/resources/conversation/types/DeliveryStatus.d.ts +10 -0
- package/serialization/resources/conversation/types/DeliveryStatus.js +41 -0
- package/serialization/resources/conversation/types/NumericConversationField.d.ts +1 -1
- package/serialization/resources/conversation/types/NumericConversationField.js +1 -0
- package/serialization/resources/conversation/types/ObjectStreamResponse.d.ts +22 -0
- package/serialization/resources/conversation/types/ObjectStreamResponse.js +53 -0
- package/serialization/resources/conversation/types/StreamResponse.d.ts +5 -1
- package/serialization/resources/conversation/types/StreamResponse.js +2 -0
- package/serialization/resources/conversation/types/SubmitActionFormRequest.d.ts +2 -1
- package/serialization/resources/conversation/types/SubmitActionFormRequest.js +2 -1
- package/serialization/resources/conversation/types/index.d.ts +11 -1
- package/serialization/resources/conversation/types/index.js +11 -1
- package/serialization/resources/inbox/types/ApplyFixesRequest.d.ts +15 -0
- package/serialization/resources/inbox/types/ApplyFixesRequest.js +46 -0
- package/serialization/resources/inbox/types/InboxFilter.d.ts +17 -0
- package/serialization/resources/inbox/types/InboxFilter.js +48 -0
- package/serialization/resources/inbox/types/InboxSearchRequest.d.ts +4 -10
- package/serialization/resources/inbox/types/InboxSearchRequest.js +4 -10
- package/serialization/resources/inbox/types/InboxSearchResponse.d.ts +1 -1
- package/serialization/resources/inbox/types/InboxSearchResponse.js +1 -1
- package/serialization/resources/inbox/types/index.d.ts +2 -2
- package/serialization/resources/inbox/types/index.js +2 -2
- package/serialization/resources/index.d.ts +12 -2
- package/serialization/resources/index.js +13 -3
- package/serialization/resources/knowledge/client/index.d.ts +1 -0
- package/serialization/resources/knowledge/client/index.js +17 -0
- package/serialization/resources/knowledge/client/requests/KnowledgeBasePatchRequest.d.ts +21 -0
- package/serialization/resources/knowledge/client/requests/KnowledgeBasePatchRequest.js +53 -0
- package/serialization/resources/knowledge/client/requests/index.d.ts +1 -0
- package/serialization/resources/knowledge/client/requests/index.js +5 -0
- package/serialization/resources/knowledge/index.d.ts +1 -0
- package/serialization/resources/knowledge/index.js +1 -0
- package/serialization/resources/knowledge/types/KnowledgeBaseField.d.ts +10 -0
- package/serialization/resources/knowledge/types/KnowledgeBaseField.js +41 -0
- package/serialization/resources/knowledge/types/KnowledgeBaseFilter.d.ts +16 -0
- package/serialization/resources/knowledge/types/KnowledgeBaseFilter.js +47 -0
- package/serialization/resources/knowledge/types/KnowledgeBaseRefreshFrequency.d.ts +10 -0
- package/serialization/resources/knowledge/types/KnowledgeBaseRefreshFrequency.js +41 -0
- package/serialization/resources/knowledge/types/KnowledgeBaseResponse.d.ts +7 -0
- package/serialization/resources/knowledge/types/KnowledgeBaseResponse.js +7 -0
- package/serialization/resources/knowledge/types/KnowledgeBaseSearchRequest.d.ts +16 -0
- package/serialization/resources/knowledge/types/KnowledgeBaseSearchRequest.js +49 -0
- package/serialization/resources/knowledge/types/KnowledgeBaseVersion.d.ts +2 -3
- package/serialization/resources/knowledge/types/KnowledgeBaseVersion.js +5 -4
- package/serialization/resources/knowledge/types/KnowledgeBaseVersionRequest.d.ts +13 -0
- package/serialization/resources/knowledge/types/KnowledgeBaseVersionRequest.js +44 -0
- package/serialization/resources/knowledge/types/KnowledgeBaseVersionsListResponse.d.ts +13 -0
- package/serialization/resources/knowledge/types/KnowledgeBaseVersionsListResponse.js +44 -0
- package/serialization/resources/knowledge/types/KnowledgeBasesResponse.d.ts +14 -0
- package/serialization/resources/knowledge/types/KnowledgeBasesResponse.js +47 -0
- package/serialization/resources/knowledge/types/KnowledgeDeleteRequest.d.ts +13 -0
- package/serialization/resources/knowledge/types/KnowledgeDeleteRequest.js +44 -0
- package/serialization/resources/knowledge/types/KnowledgeDocumentField.d.ts +10 -0
- package/serialization/resources/knowledge/types/KnowledgeDocumentField.js +41 -0
- package/serialization/resources/knowledge/types/KnowledgeDocumentFilter.d.ts +18 -0
- package/serialization/resources/knowledge/types/KnowledgeDocumentFilter.js +49 -0
- package/serialization/resources/knowledge/types/KnowledgeDocumentResponse.d.ts +2 -4
- package/serialization/resources/knowledge/types/KnowledgeDocumentResponse.js +2 -4
- package/serialization/resources/knowledge/types/KnowledgeDocumentSearchRequest.d.ts +16 -0
- package/serialization/resources/knowledge/types/KnowledgeDocumentSearchRequest.js +49 -0
- package/serialization/resources/knowledge/types/KnowledgeDocumentSearchResponse.d.ts +15 -0
- package/serialization/resources/knowledge/types/KnowledgeDocumentSearchResponse.js +48 -0
- package/serialization/resources/knowledge/types/KnowledgeDocumentsResponse.d.ts +14 -0
- package/serialization/resources/knowledge/types/KnowledgeDocumentsResponse.js +47 -0
- package/serialization/resources/knowledge/types/index.d.ts +13 -0
- package/serialization/resources/knowledge/types/index.js +13 -0
- package/serialization/resources/organizations/index.d.ts +1 -0
- package/serialization/resources/organizations/index.js +17 -0
- package/serialization/resources/organizations/types/BaseOrganization.d.ts +13 -0
- package/serialization/resources/organizations/types/BaseOrganization.js +44 -0
- package/serialization/resources/organizations/types/CreateOrganizationRequest.d.ts +12 -0
- package/serialization/resources/organizations/types/CreateOrganizationRequest.js +42 -0
- package/serialization/resources/organizations/types/Organization.d.ts +14 -0
- package/serialization/resources/organizations/types/Organization.js +47 -0
- package/serialization/resources/organizations/types/OrganizationPatchRequest.d.ts +13 -0
- package/serialization/resources/organizations/types/OrganizationPatchRequest.js +44 -0
- package/serialization/resources/organizations/types/index.d.ts +4 -0
- package/serialization/resources/organizations/types/index.js +20 -0
- package/serialization/resources/segments/index.d.ts +1 -0
- package/serialization/resources/segments/index.js +17 -0
- package/serialization/resources/segments/types/SegmentBase.d.ts +13 -0
- package/serialization/resources/segments/types/SegmentBase.js +45 -0
- package/serialization/resources/segments/types/SegmentField.d.ts +10 -0
- package/serialization/resources/segments/types/SegmentField.js +41 -0
- package/serialization/resources/segments/types/SegmentPatchRequest.d.ts +16 -0
- package/serialization/resources/segments/types/SegmentPatchRequest.js +48 -0
- package/serialization/resources/segments/types/SegmentRequest.d.ts +14 -0
- package/serialization/resources/segments/types/SegmentRequest.js +47 -0
- package/serialization/resources/segments/types/SegmentResponse.d.ts +16 -0
- package/serialization/resources/segments/types/SegmentResponse.js +49 -0
- package/serialization/resources/segments/types/SegmentStatus.d.ts +10 -0
- package/serialization/resources/segments/types/SegmentStatus.js +41 -0
- package/serialization/resources/segments/types/SegmentsSearchRequest.d.ts +14 -0
- package/serialization/resources/segments/types/SegmentsSearchRequest.js +47 -0
- package/serialization/resources/segments/types/SegmentsSearchResponse.d.ts +14 -0
- package/serialization/resources/segments/types/SegmentsSearchResponse.js +47 -0
- package/serialization/resources/segments/types/index.d.ts +8 -0
- package/serialization/resources/segments/types/index.js +24 -0
- package/serialization/resources/triggers/types/EventTriggerType.d.ts +1 -1
- package/serialization/resources/triggers/types/EventTriggerType.js +1 -1
- package/serialization/resources/users/index.d.ts +1 -0
- package/serialization/resources/users/index.js +17 -0
- package/serialization/resources/users/types/AgentUser.d.ts +19 -0
- package/serialization/resources/users/types/AgentUser.js +50 -0
- package/serialization/resources/users/types/AgentUserField.d.ts +10 -0
- package/serialization/resources/users/types/AgentUserField.js +41 -0
- package/serialization/resources/users/types/AgentUserFilter.d.ts +14 -0
- package/serialization/resources/users/types/AgentUserFilter.js +45 -0
- package/serialization/resources/users/types/AgentUserSearchRequest.d.ts +16 -0
- package/serialization/resources/users/types/AgentUserSearchRequest.js +49 -0
- package/serialization/resources/users/types/AgentUserSearchResponse.d.ts +14 -0
- package/serialization/resources/users/types/AgentUserSearchResponse.js +47 -0
- package/serialization/resources/users/types/AppUserSummary.d.ts +16 -0
- package/serialization/resources/users/types/AppUserSummary.js +47 -0
- package/serialization/resources/users/types/index.d.ts +6 -0
- package/serialization/resources/users/types/index.js +22 -0
- package/version.d.ts +1 -1
- package/version.js +1 -1
- package/api/resources/commons/types/BotMessageStatus.d.ts +0 -22
- package/api/resources/commons/types/BotMessageStatus.js +0 -14
- package/api/resources/commons/types/InboxItemDuplicateKnowledgeBase.d.ts +0 -12
- package/api/resources/commons/types/InboxItemFixDeactivateKnowledgeBase.d.ts +0 -8
- package/api/resources/commons/types/InboxItemFixType.d.ts +0 -14
- package/api/resources/commons/types/InboxItemFixType.js +0 -10
- package/api/resources/commons/types/InboxItemKnowledgeBaseAlert.d.ts +0 -10
- package/api/resources/commons/types/KnowledgeBaseInformation.d.ts +0 -8
- package/api/resources/commons/types/UserMessageAttachment.d.ts +0 -23
- package/api/resources/conversation/types/Attachment.d.ts +0 -26
- package/api/resources/events/types/EventBaseNoId.d.ts +0 -11
- package/api/resources/events/types/EventFilter.d.ts +0 -13
- package/api/resources/events/types/UserEvent.d.ts +0 -16
- package/api/resources/events/types/UserEventName.d.ts +0 -22
- package/api/resources/events/types/UserEventName.js +0 -12
- package/api/resources/events/types/UserInfo.d.ts +0 -7
- package/api/resources/events/types/index.d.ts +0 -29
- package/api/resources/events/types/index.js +0 -45
- package/api/resources/inbox/types/ApplyInboxItemFixRequest.d.ts +0 -11
- package/api/resources/inbox/types/BaseInboxSearchRequest.d.ts +0 -9
- package/dist/api/resources/commons/types/BotMessageStatus.d.ts +0 -22
- package/dist/api/resources/commons/types/BotMessageStatus.js +0 -14
- package/dist/api/resources/commons/types/InboxItemDuplicateKnowledgeBase.d.ts +0 -12
- package/dist/api/resources/commons/types/InboxItemFixDeactivateKnowledgeBase.d.ts +0 -8
- package/dist/api/resources/commons/types/InboxItemFixType.d.ts +0 -14
- package/dist/api/resources/commons/types/InboxItemFixType.js +0 -10
- package/dist/api/resources/commons/types/InboxItemKnowledgeBaseAlert.d.ts +0 -10
- package/dist/api/resources/commons/types/KnowledgeBaseInformation.d.ts +0 -8
- package/dist/api/resources/commons/types/UserMessageAttachment.d.ts +0 -23
- package/dist/api/resources/conversation/types/Attachment.d.ts +0 -26
- package/dist/api/resources/events/types/EventBaseNoId.d.ts +0 -11
- package/dist/api/resources/events/types/EventFilter.d.ts +0 -13
- package/dist/api/resources/events/types/UserEvent.d.ts +0 -16
- package/dist/api/resources/events/types/UserEventName.d.ts +0 -22
- package/dist/api/resources/events/types/UserEventName.js +0 -12
- package/dist/api/resources/events/types/UserInfo.d.ts +0 -7
- package/dist/api/resources/events/types/index.d.ts +0 -29
- package/dist/api/resources/events/types/index.js +0 -45
- package/dist/api/resources/inbox/types/ApplyInboxItemFixRequest.d.ts +0 -11
- package/dist/api/resources/inbox/types/BaseInboxSearchRequest.d.ts +0 -9
- package/dist/serialization/resources/commons/types/BotMessageStatus.d.ts +0 -10
- package/dist/serialization/resources/commons/types/BotMessageStatus.js +0 -41
- package/dist/serialization/resources/commons/types/InboxItemDuplicateKnowledgeBase.d.ts +0 -17
- package/dist/serialization/resources/commons/types/InboxItemDuplicateKnowledgeBase.js +0 -50
- package/dist/serialization/resources/commons/types/InboxItemFixDeactivateKnowledgeBase.d.ts +0 -14
- package/dist/serialization/resources/commons/types/InboxItemFixDeactivateKnowledgeBase.js +0 -47
- package/dist/serialization/resources/commons/types/InboxItemFixType.d.ts +0 -10
- package/dist/serialization/resources/commons/types/InboxItemFixType.js +0 -41
- package/dist/serialization/resources/commons/types/InboxItemKnowledgeBaseAlert.d.ts +0 -16
- package/dist/serialization/resources/commons/types/InboxItemKnowledgeBaseAlert.js +0 -49
- package/dist/serialization/resources/commons/types/KnowledgeBaseInformation.d.ts +0 -13
- package/dist/serialization/resources/commons/types/KnowledgeBaseInformation.js +0 -44
- package/dist/serialization/resources/commons/types/UserMessageAttachment.d.ts +0 -14
- package/dist/serialization/resources/commons/types/UserMessageAttachment.js +0 -45
- package/dist/serialization/resources/conversation/types/Attachment.d.ts +0 -14
- package/dist/serialization/resources/conversation/types/Attachment.js +0 -45
- package/dist/serialization/resources/events/types/EventBaseNoId.d.ts +0 -20
- package/dist/serialization/resources/events/types/EventBaseNoId.js +0 -51
- package/dist/serialization/resources/events/types/EventFilter.d.ts +0 -22
- package/dist/serialization/resources/events/types/EventFilter.js +0 -53
- package/dist/serialization/resources/events/types/EventsSearchRequest.d.ts +0 -16
- package/dist/serialization/resources/events/types/EventsSearchRequest.js +0 -49
- package/dist/serialization/resources/events/types/EventsSearchResponse.d.ts +0 -14
- package/dist/serialization/resources/events/types/EventsSearchResponse.js +0 -47
- package/dist/serialization/resources/events/types/SystemEvent.d.ts +0 -14
- package/dist/serialization/resources/events/types/SystemEvent.js +0 -47
- package/dist/serialization/resources/events/types/UserEvent.d.ts +0 -22
- package/dist/serialization/resources/events/types/UserEvent.js +0 -55
- package/dist/serialization/resources/events/types/UserEventName.d.ts +0 -10
- package/dist/serialization/resources/events/types/UserEventName.js +0 -41
- package/dist/serialization/resources/events/types/UserInfo.d.ts +0 -13
- package/dist/serialization/resources/events/types/UserInfo.js +0 -44
- package/dist/serialization/resources/events/types/index.d.ts +0 -29
- package/dist/serialization/resources/events/types/index.js +0 -45
- package/dist/serialization/resources/inbox/types/ApplyInboxItemFixRequest.d.ts +0 -16
- package/dist/serialization/resources/inbox/types/ApplyInboxItemFixRequest.js +0 -47
- package/dist/serialization/resources/inbox/types/BaseInboxSearchRequest.d.ts +0 -13
- package/dist/serialization/resources/inbox/types/BaseInboxSearchRequest.js +0 -44
- package/serialization/resources/commons/types/BotMessageStatus.d.ts +0 -10
- package/serialization/resources/commons/types/BotMessageStatus.js +0 -41
- package/serialization/resources/commons/types/InboxItemDuplicateKnowledgeBase.d.ts +0 -17
- package/serialization/resources/commons/types/InboxItemDuplicateKnowledgeBase.js +0 -50
- package/serialization/resources/commons/types/InboxItemFixDeactivateKnowledgeBase.d.ts +0 -14
- package/serialization/resources/commons/types/InboxItemFixDeactivateKnowledgeBase.js +0 -47
- package/serialization/resources/commons/types/InboxItemFixType.d.ts +0 -10
- package/serialization/resources/commons/types/InboxItemFixType.js +0 -41
- package/serialization/resources/commons/types/InboxItemKnowledgeBaseAlert.d.ts +0 -16
- package/serialization/resources/commons/types/InboxItemKnowledgeBaseAlert.js +0 -49
- package/serialization/resources/commons/types/KnowledgeBaseInformation.d.ts +0 -13
- package/serialization/resources/commons/types/KnowledgeBaseInformation.js +0 -44
- package/serialization/resources/commons/types/UserMessageAttachment.d.ts +0 -14
- package/serialization/resources/commons/types/UserMessageAttachment.js +0 -45
- package/serialization/resources/conversation/types/Attachment.d.ts +0 -14
- package/serialization/resources/conversation/types/Attachment.js +0 -45
- package/serialization/resources/events/types/EventBaseNoId.d.ts +0 -20
- package/serialization/resources/events/types/EventBaseNoId.js +0 -51
- package/serialization/resources/events/types/EventFilter.d.ts +0 -22
- package/serialization/resources/events/types/EventFilter.js +0 -53
- package/serialization/resources/events/types/EventsSearchRequest.d.ts +0 -16
- package/serialization/resources/events/types/EventsSearchRequest.js +0 -49
- package/serialization/resources/events/types/EventsSearchResponse.d.ts +0 -14
- package/serialization/resources/events/types/EventsSearchResponse.js +0 -47
- package/serialization/resources/events/types/SystemEvent.d.ts +0 -14
- package/serialization/resources/events/types/SystemEvent.js +0 -47
- package/serialization/resources/events/types/UserEvent.d.ts +0 -22
- package/serialization/resources/events/types/UserEvent.js +0 -55
- package/serialization/resources/events/types/UserEventName.d.ts +0 -10
- package/serialization/resources/events/types/UserEventName.js +0 -41
- package/serialization/resources/events/types/UserInfo.d.ts +0 -13
- package/serialization/resources/events/types/UserInfo.js +0 -44
- package/serialization/resources/events/types/index.d.ts +0 -29
- package/serialization/resources/events/types/index.js +0 -45
- package/serialization/resources/inbox/types/ApplyInboxItemFixRequest.d.ts +0 -16
- package/serialization/resources/inbox/types/ApplyInboxItemFixRequest.js +0 -47
- package/serialization/resources/inbox/types/BaseInboxSearchRequest.d.ts +0 -13
- package/serialization/resources/inbox/types/BaseInboxSearchRequest.js +0 -44
- /package/api/resources/{commons/types/InboxItemDuplicateKnowledgeBase.js → actions/client/requests/ActionGetRequest.js} +0 -0
- /package/api/resources/{commons/types/InboxItemFixDeactivateKnowledgeBase.js → actions/client/requests/ActionPatchRequest.js} +0 -0
- /package/api/resources/{commons/types/InboxItemKnowledgeBaseAlert.js → actions/types/ActionFilter.js} +0 -0
- /package/api/resources/{commons/types/KnowledgeBaseInformation.js → actions/types/ActionsResponse.js} +0 -0
- /package/api/resources/{commons/types/UserMessageAttachment.js → actions/types/ActionsSearchRequest.js} +0 -0
- /package/api/resources/{conversation/types/Attachment.js → agentCapabilities/types/ActionCapability.js} +0 -0
- /package/api/resources/{events/types/BrowserInfo.js → agentCapabilities/types/AgentCapability.js} +0 -0
- /package/api/resources/{events/types/ContextInfo.js → agentCapabilities/types/AgentCapabilityBase.js} +0 -0
- /package/api/resources/{events/types/DeviceInfo.js → agentCapabilities/types/AgentCapabilityListRequest.js} +0 -0
- /package/api/resources/{events/types/EventBaseNoId.js → agentCapabilities/types/ListAgentCapabilitiesResponse.js} +0 -0
- /package/api/resources/{events/types/EventFilter.js → agentCapabilities/types/PatchAgentCapabilityRequest.js} +0 -0
- /package/api/resources/{events/types/EventResponse.js → agentCapabilities/types/TriggerCapability.js} +0 -0
- /package/api/resources/{events/types/EventsSearchRequest.js → agents/types/AgentPatchRequest.js} +0 -0
- /package/api/resources/{events/types/EventsSearchResponse.js → agents/types/CreateAgentRequest.js} +0 -0
- /package/api/resources/{events/types/FeedbackInfo.js → analytics/types/AgentUserAnalyticsRequest.js} +0 -0
- /package/api/resources/{events/types/GeoInfo.js → analytics/types/AgentUserColumnDefinition.js} +0 -0
- /package/api/resources/{events/types/IpInfo.js → analytics/types/AgentUserCount.js} +0 -0
- /package/api/resources/{events/types/LanguageInfo.js → analytics/types/AgentUserMetric.js} +0 -0
- /package/api/resources/{events/types/NovelSystemEventNoId.js → analytics/types/AgentUserRow.js} +0 -0
- /package/api/resources/{events/types/OsInfo.js → analytics/types/AgentUserTableRequest.js} +0 -0
- /package/api/resources/{events/types/PageInfo.js → analytics/types/AgentUserTableResponse.js} +0 -0
- /package/api/resources/{events/types/SessionInfo.js → assets/types/CommitAssetUploadRequest.js} +0 -0
- /package/api/resources/{events/types/SourceInfo.js → assets/types/InitiateAssetUploadRequest.js} +0 -0
- /package/api/resources/{events/types/SurveyInfo.js → assets/types/InitiateAssetUploadResponse.js} +0 -0
- /package/api/resources/{events/types/SystemEvent.js → commons/types/ActionExecutionParamValue.js} +0 -0
- /package/api/resources/{events/types/UserEvent.js → commons/types/ActionOAuthConfiguration.js} +0 -0
- /package/api/resources/{events/types/UserInfo.js → commons/types/AttachmentRequest.js} +0 -0
- /package/api/resources/{inbox/types/ApplyInboxItemFixRequest.js → commons/types/AttachmentResponse.js} +0 -0
- /package/api/resources/{inbox/types/BaseInboxSearchRequest.js → commons/types/BaseAttachment.js} +0 -0
- /package/{dist/api/resources/commons/types/InboxItemDuplicateKnowledgeBase.js → api/resources/commons/types/BotLogic.js} +0 -0
- /package/{dist/api/resources/commons/types/InboxItemFixDeactivateKnowledgeBase.js → api/resources/commons/types/BotLogicActionExecutedDetail.js} +0 -0
- /package/{dist/api/resources/commons/types/InboxItemKnowledgeBaseAlert.js → api/resources/commons/types/BotLogicActionItem.js} +0 -0
- /package/{dist/api/resources/commons/types/KnowledgeBaseInformation.js → api/resources/commons/types/BotLogicActionReviewedDetail.js} +0 -0
- /package/{dist/api/resources/commons/types/UserMessageAttachment.js → api/resources/commons/types/BotLogicFormSubmissionItem.js} +0 -0
- /package/{dist/api/resources/conversation/types/Attachment.js → api/resources/commons/types/BotLogicItem.js} +0 -0
- /package/{dist/api/resources/events/types/BrowserInfo.js → api/resources/commons/types/BotLogicKnowledgeDetail.js} +0 -0
- /package/{dist/api/resources/events/types/ContextInfo.js → api/resources/commons/types/BotLogicKnowledgeItem.js} +0 -0
- /package/{dist/api/resources/events/types/DeviceInfo.js → api/resources/commons/types/BotLogicSafetyItem.js} +0 -0
- /package/{dist/api/resources/events/types/EventBaseNoId.js → api/resources/commons/types/BotLogicSegmentsItem.js} +0 -0
- /package/{dist/api/resources/events/types/EventFilter.js → api/resources/commons/types/BotLogicUserItem.js} +0 -0
- /package/{dist/api/resources/events/types/EventResponse.js → api/resources/commons/types/BotOAuthButtonResponse.js} +0 -0
- /package/api/resources/{events → commons}/types/BrowserInfo.d.ts +0 -0
- /package/{dist/api/resources/events/types/EventsSearchRequest.js → api/resources/commons/types/BrowserInfo.js} +0 -0
- /package/api/resources/{events → commons}/types/BrowserType.d.ts +0 -0
- /package/api/resources/{events → commons}/types/BrowserType.js +0 -0
- /package/api/resources/{events → commons}/types/ContextInfo.d.ts +0 -0
- /package/{dist/api/resources/events/types/EventsSearchResponse.js → api/resources/commons/types/ContextInfo.js} +0 -0
- /package/api/resources/{events → commons}/types/DeviceInfo.d.ts +0 -0
- /package/{dist/api/resources/events/types/FeedbackInfo.js → api/resources/commons/types/DeviceInfo.js} +0 -0
- /package/api/resources/{events → commons}/types/DeviceType.d.ts +0 -0
- /package/api/resources/{events → commons}/types/DeviceType.js +0 -0
- /package/{dist/api/resources/events/types/GeoInfo.js → api/resources/commons/types/EntityResult.js} +0 -0
- /package/{dist/api/resources/events/types/IpInfo.js → api/resources/commons/types/EventBaseNoId.js} +0 -0
- /package/api/resources/{events → commons}/types/EventField.d.ts +0 -0
- /package/api/resources/{events → commons}/types/EventField.js +0 -0
- /package/{dist/api/resources/events/types/LanguageInfo.js → api/resources/commons/types/EventFilter.js} +0 -0
- /package/{dist/api/resources/events/types/NovelSystemEventNoId.js → api/resources/commons/types/EventRequest.js} +0 -0
- /package/api/resources/{events → commons}/types/EventResponse.d.ts +0 -0
- /package/{dist/api/resources/events/types/OsInfo.js → api/resources/commons/types/EventResponse.js} +0 -0
- /package/api/resources/{events → commons}/types/EventType.d.ts +0 -0
- /package/api/resources/{events → commons}/types/EventType.js +0 -0
- /package/{dist/api/resources/events/types/PageInfo.js → api/resources/commons/types/EventUserInfo.js} +0 -0
- /package/{dist/api/resources/events/types/SessionInfo.js → api/resources/commons/types/EventUserInfoBase.js} +0 -0
- /package/api/resources/{events → commons}/types/EventsSearchRequest.d.ts +0 -0
- /package/{dist/api/resources/events/types/SourceInfo.js → api/resources/commons/types/EventsSearchRequest.js} +0 -0
- /package/api/resources/{events → commons}/types/EventsSearchResponse.d.ts +0 -0
- /package/{dist/api/resources/events/types/SurveyInfo.js → api/resources/commons/types/EventsSearchResponse.js} +0 -0
- /package/api/resources/{events → commons}/types/FeedbackInfo.d.ts +0 -0
- /package/{dist/api/resources/events/types/SystemEvent.js → api/resources/commons/types/FeedbackInfo.js} +0 -0
- /package/api/resources/{events → commons}/types/GeoInfo.d.ts +0 -0
- /package/{dist/api/resources/events/types/UserEvent.js → api/resources/commons/types/GeoInfo.js} +0 -0
- /package/api/resources/{events → commons}/types/IpInfo.d.ts +0 -0
- /package/{dist/api/resources/events/types/UserInfo.js → api/resources/commons/types/IpInfo.js} +0 -0
- /package/api/resources/{events → commons}/types/LanguageInfo.d.ts +0 -0
- /package/{dist/api/resources/inbox/types/ApplyInboxItemFixRequest.js → api/resources/commons/types/LanguageInfo.js} +0 -0
- /package/{dist/api/resources/inbox/types/BaseInboxSearchRequest.js → api/resources/commons/types/NovelSystemEvent.js} +0 -0
- /package/api/resources/{events → commons}/types/NovelSystemEventNoId.d.ts +0 -0
- /package/api/resources/{events → commons}/types/OsInfo.d.ts +0 -0
- /package/api/resources/{events → commons}/types/OsType.d.ts +0 -0
- /package/api/resources/{events → commons}/types/OsType.js +0 -0
- /package/api/resources/{events → commons}/types/PageInfo.d.ts +0 -0
- /package/api/resources/{events → commons}/types/SessionInfo.d.ts +0 -0
- /package/api/resources/{events → commons}/types/SourceInfo.d.ts +0 -0
- /package/api/resources/{events → commons}/types/SourceType.d.ts +0 -0
- /package/api/resources/{events → commons}/types/SourceType.js +0 -0
- /package/api/resources/{events → commons}/types/SurveyInfo.d.ts +0 -0
- /package/api/resources/{events → commons}/types/SystemEvent.d.ts +0 -0
- /package/api/resources/{events → commons}/types/SystemEventName.d.ts +0 -0
- /package/api/resources/{events → commons}/types/SystemEventName.js +0 -0
- /package/dist/api/resources/{events → commons}/types/BrowserInfo.d.ts +0 -0
- /package/dist/api/resources/{events → commons}/types/BrowserType.d.ts +0 -0
- /package/dist/api/resources/{events → commons}/types/BrowserType.js +0 -0
- /package/dist/api/resources/{events → commons}/types/ContextInfo.d.ts +0 -0
- /package/dist/api/resources/{events → commons}/types/DeviceInfo.d.ts +0 -0
- /package/dist/api/resources/{events → commons}/types/DeviceType.d.ts +0 -0
- /package/dist/api/resources/{events → commons}/types/DeviceType.js +0 -0
- /package/dist/api/resources/{events → commons}/types/EventField.d.ts +0 -0
- /package/dist/api/resources/{events → commons}/types/EventField.js +0 -0
- /package/dist/api/resources/{events → commons}/types/EventResponse.d.ts +0 -0
- /package/dist/api/resources/{events → commons}/types/EventType.d.ts +0 -0
- /package/dist/api/resources/{events → commons}/types/EventType.js +0 -0
- /package/dist/api/resources/{events → commons}/types/EventsSearchRequest.d.ts +0 -0
- /package/dist/api/resources/{events → commons}/types/EventsSearchResponse.d.ts +0 -0
- /package/dist/api/resources/{events → commons}/types/FeedbackInfo.d.ts +0 -0
- /package/dist/api/resources/{events → commons}/types/GeoInfo.d.ts +0 -0
- /package/dist/api/resources/{events → commons}/types/IpInfo.d.ts +0 -0
- /package/dist/api/resources/{events → commons}/types/LanguageInfo.d.ts +0 -0
- /package/dist/api/resources/{events → commons}/types/NovelSystemEventNoId.d.ts +0 -0
- /package/dist/api/resources/{events → commons}/types/OsInfo.d.ts +0 -0
- /package/dist/api/resources/{events → commons}/types/OsType.d.ts +0 -0
- /package/dist/api/resources/{events → commons}/types/OsType.js +0 -0
- /package/dist/api/resources/{events → commons}/types/PageInfo.d.ts +0 -0
- /package/dist/api/resources/{events → commons}/types/SessionInfo.d.ts +0 -0
- /package/dist/api/resources/{events → commons}/types/SourceInfo.d.ts +0 -0
- /package/dist/api/resources/{events → commons}/types/SourceType.d.ts +0 -0
- /package/dist/api/resources/{events → commons}/types/SourceType.js +0 -0
- /package/dist/api/resources/{events → commons}/types/SurveyInfo.d.ts +0 -0
- /package/dist/api/resources/{events → commons}/types/SystemEvent.d.ts +0 -0
- /package/dist/api/resources/{events → commons}/types/SystemEventName.d.ts +0 -0
- /package/dist/api/resources/{events → commons}/types/SystemEventName.js +0 -0
- /package/dist/serialization/resources/{events → agentCapabilities}/index.d.ts +0 -0
- /package/dist/serialization/resources/{events → agentCapabilities}/index.js +0 -0
- /package/{serialization/resources/events → dist/serialization/resources/assets}/index.d.ts +0 -0
- /package/{serialization/resources/events → dist/serialization/resources/assets}/index.js +0 -0
- /package/dist/serialization/resources/{events → commons}/types/BrowserInfo.d.ts +0 -0
- /package/dist/serialization/resources/{events → commons}/types/BrowserInfo.js +0 -0
- /package/dist/serialization/resources/{events → commons}/types/BrowserType.d.ts +0 -0
- /package/dist/serialization/resources/{events → commons}/types/BrowserType.js +0 -0
- /package/dist/serialization/resources/{events → commons}/types/ContextInfo.d.ts +0 -0
- /package/dist/serialization/resources/{events → commons}/types/ContextInfo.js +0 -0
- /package/dist/serialization/resources/{events → commons}/types/DeviceInfo.d.ts +0 -0
- /package/dist/serialization/resources/{events → commons}/types/DeviceInfo.js +0 -0
- /package/dist/serialization/resources/{events → commons}/types/DeviceType.d.ts +0 -0
- /package/dist/serialization/resources/{events → commons}/types/DeviceType.js +0 -0
- /package/dist/serialization/resources/{events → commons}/types/EventField.d.ts +0 -0
- /package/dist/serialization/resources/{events → commons}/types/EventField.js +0 -0
- /package/dist/serialization/resources/{events → commons}/types/EventResponse.d.ts +0 -0
- /package/dist/serialization/resources/{events → commons}/types/EventResponse.js +0 -0
- /package/dist/serialization/resources/{events → commons}/types/EventType.d.ts +0 -0
- /package/dist/serialization/resources/{events → commons}/types/EventType.js +0 -0
- /package/dist/serialization/resources/{events → commons}/types/FeedbackInfo.d.ts +0 -0
- /package/dist/serialization/resources/{events → commons}/types/FeedbackInfo.js +0 -0
- /package/dist/serialization/resources/{events → commons}/types/GeoInfo.d.ts +0 -0
- /package/dist/serialization/resources/{events → commons}/types/GeoInfo.js +0 -0
- /package/dist/serialization/resources/{events → commons}/types/IpInfo.d.ts +0 -0
- /package/dist/serialization/resources/{events → commons}/types/IpInfo.js +0 -0
- /package/dist/serialization/resources/{events → commons}/types/LanguageInfo.d.ts +0 -0
- /package/dist/serialization/resources/{events → commons}/types/LanguageInfo.js +0 -0
- /package/dist/serialization/resources/{events → commons}/types/NovelSystemEventNoId.d.ts +0 -0
- /package/dist/serialization/resources/{events → commons}/types/NovelSystemEventNoId.js +0 -0
- /package/dist/serialization/resources/{events → commons}/types/OsInfo.d.ts +0 -0
- /package/dist/serialization/resources/{events → commons}/types/OsInfo.js +0 -0
- /package/dist/serialization/resources/{events → commons}/types/OsType.d.ts +0 -0
- /package/dist/serialization/resources/{events → commons}/types/OsType.js +0 -0
- /package/dist/serialization/resources/{events → commons}/types/PageInfo.d.ts +0 -0
- /package/dist/serialization/resources/{events → commons}/types/PageInfo.js +0 -0
- /package/dist/serialization/resources/{events → commons}/types/SessionInfo.d.ts +0 -0
- /package/dist/serialization/resources/{events → commons}/types/SessionInfo.js +0 -0
- /package/dist/serialization/resources/{events → commons}/types/SourceInfo.d.ts +0 -0
- /package/dist/serialization/resources/{events → commons}/types/SourceInfo.js +0 -0
- /package/dist/serialization/resources/{events → commons}/types/SourceType.d.ts +0 -0
- /package/dist/serialization/resources/{events → commons}/types/SourceType.js +0 -0
- /package/dist/serialization/resources/{events → commons}/types/SurveyInfo.d.ts +0 -0
- /package/dist/serialization/resources/{events → commons}/types/SurveyInfo.js +0 -0
- /package/dist/serialization/resources/{events → commons}/types/SystemEventName.d.ts +0 -0
- /package/dist/serialization/resources/{events → commons}/types/SystemEventName.js +0 -0
- /package/serialization/resources/{events → commons}/types/BrowserInfo.d.ts +0 -0
- /package/serialization/resources/{events → commons}/types/BrowserInfo.js +0 -0
- /package/serialization/resources/{events → commons}/types/BrowserType.d.ts +0 -0
- /package/serialization/resources/{events → commons}/types/BrowserType.js +0 -0
- /package/serialization/resources/{events → commons}/types/ContextInfo.d.ts +0 -0
- /package/serialization/resources/{events → commons}/types/ContextInfo.js +0 -0
- /package/serialization/resources/{events → commons}/types/DeviceInfo.d.ts +0 -0
- /package/serialization/resources/{events → commons}/types/DeviceInfo.js +0 -0
- /package/serialization/resources/{events → commons}/types/DeviceType.d.ts +0 -0
- /package/serialization/resources/{events → commons}/types/DeviceType.js +0 -0
- /package/serialization/resources/{events → commons}/types/EventField.d.ts +0 -0
- /package/serialization/resources/{events → commons}/types/EventField.js +0 -0
- /package/serialization/resources/{events → commons}/types/EventResponse.d.ts +0 -0
- /package/serialization/resources/{events → commons}/types/EventResponse.js +0 -0
- /package/serialization/resources/{events → commons}/types/EventType.d.ts +0 -0
- /package/serialization/resources/{events → commons}/types/EventType.js +0 -0
- /package/serialization/resources/{events → commons}/types/FeedbackInfo.d.ts +0 -0
- /package/serialization/resources/{events → commons}/types/FeedbackInfo.js +0 -0
- /package/serialization/resources/{events → commons}/types/GeoInfo.d.ts +0 -0
- /package/serialization/resources/{events → commons}/types/GeoInfo.js +0 -0
- /package/serialization/resources/{events → commons}/types/IpInfo.d.ts +0 -0
- /package/serialization/resources/{events → commons}/types/IpInfo.js +0 -0
- /package/serialization/resources/{events → commons}/types/LanguageInfo.d.ts +0 -0
- /package/serialization/resources/{events → commons}/types/LanguageInfo.js +0 -0
- /package/serialization/resources/{events → commons}/types/NovelSystemEventNoId.d.ts +0 -0
- /package/serialization/resources/{events → commons}/types/NovelSystemEventNoId.js +0 -0
- /package/serialization/resources/{events → commons}/types/OsInfo.d.ts +0 -0
- /package/serialization/resources/{events → commons}/types/OsInfo.js +0 -0
- /package/serialization/resources/{events → commons}/types/OsType.d.ts +0 -0
- /package/serialization/resources/{events → commons}/types/OsType.js +0 -0
- /package/serialization/resources/{events → commons}/types/PageInfo.d.ts +0 -0
- /package/serialization/resources/{events → commons}/types/PageInfo.js +0 -0
- /package/serialization/resources/{events → commons}/types/SessionInfo.d.ts +0 -0
- /package/serialization/resources/{events → commons}/types/SessionInfo.js +0 -0
- /package/serialization/resources/{events → commons}/types/SourceInfo.d.ts +0 -0
- /package/serialization/resources/{events → commons}/types/SourceInfo.js +0 -0
- /package/serialization/resources/{events → commons}/types/SourceType.d.ts +0 -0
- /package/serialization/resources/{events → commons}/types/SourceType.js +0 -0
- /package/serialization/resources/{events → commons}/types/SurveyInfo.d.ts +0 -0
- /package/serialization/resources/{events → commons}/types/SurveyInfo.js +0 -0
- /package/serialization/resources/{events → commons}/types/SystemEventName.d.ts +0 -0
- /package/serialization/resources/{events → commons}/types/SystemEventName.js +0 -0
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* This file was auto-generated by Fern from our API Definition.
|
|
4
|
+
*/
|
|
5
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
6
|
+
if (k2 === undefined) k2 = k;
|
|
7
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
8
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
9
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
10
|
+
}
|
|
11
|
+
Object.defineProperty(o, k2, desc);
|
|
12
|
+
}) : (function(o, m, k, k2) {
|
|
13
|
+
if (k2 === undefined) k2 = k;
|
|
14
|
+
o[k2] = m[k];
|
|
15
|
+
}));
|
|
16
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
17
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
18
|
+
}) : function(o, v) {
|
|
19
|
+
o["default"] = v;
|
|
20
|
+
});
|
|
21
|
+
var __importStar = (this && this.__importStar) || (function () {
|
|
22
|
+
var ownKeys = function(o) {
|
|
23
|
+
ownKeys = Object.getOwnPropertyNames || function (o) {
|
|
24
|
+
var ar = [];
|
|
25
|
+
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
|
26
|
+
return ar;
|
|
27
|
+
};
|
|
28
|
+
return ownKeys(o);
|
|
29
|
+
};
|
|
30
|
+
return function (mod) {
|
|
31
|
+
if (mod && mod.__esModule) return mod;
|
|
32
|
+
var result = {};
|
|
33
|
+
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
|
34
|
+
__setModuleDefault(result, mod);
|
|
35
|
+
return result;
|
|
36
|
+
};
|
|
37
|
+
})();
|
|
38
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
39
|
+
exports.AttachmentStatus = void 0;
|
|
40
|
+
const core = __importStar(require("../../../../core"));
|
|
41
|
+
exports.AttachmentStatus = core.serialization.enum_(["PENDING", "PROCESSING", "ACCEPTED", "REJECTED"]);
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This file was auto-generated by Fern from our API Definition.
|
|
3
|
+
*/
|
|
4
|
+
import * as serializers from "../../../index";
|
|
5
|
+
import * as MavenAGI from "../../../../api/index";
|
|
6
|
+
import * as core from "../../../../core";
|
|
7
|
+
export declare const BaseAttachment: core.serialization.ObjectSchema<serializers.BaseAttachment.Raw, MavenAGI.BaseAttachment>;
|
|
8
|
+
export declare namespace BaseAttachment {
|
|
9
|
+
interface Raw {
|
|
10
|
+
type: string;
|
|
11
|
+
name?: string | null;
|
|
12
|
+
}
|
|
13
|
+
}
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* This file was auto-generated by Fern from our API Definition.
|
|
4
|
+
*/
|
|
5
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
6
|
+
if (k2 === undefined) k2 = k;
|
|
7
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
8
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
9
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
10
|
+
}
|
|
11
|
+
Object.defineProperty(o, k2, desc);
|
|
12
|
+
}) : (function(o, m, k, k2) {
|
|
13
|
+
if (k2 === undefined) k2 = k;
|
|
14
|
+
o[k2] = m[k];
|
|
15
|
+
}));
|
|
16
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
17
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
18
|
+
}) : function(o, v) {
|
|
19
|
+
o["default"] = v;
|
|
20
|
+
});
|
|
21
|
+
var __importStar = (this && this.__importStar) || (function () {
|
|
22
|
+
var ownKeys = function(o) {
|
|
23
|
+
ownKeys = Object.getOwnPropertyNames || function (o) {
|
|
24
|
+
var ar = [];
|
|
25
|
+
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
|
26
|
+
return ar;
|
|
27
|
+
};
|
|
28
|
+
return ownKeys(o);
|
|
29
|
+
};
|
|
30
|
+
return function (mod) {
|
|
31
|
+
if (mod && mod.__esModule) return mod;
|
|
32
|
+
var result = {};
|
|
33
|
+
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
|
34
|
+
__setModuleDefault(result, mod);
|
|
35
|
+
return result;
|
|
36
|
+
};
|
|
37
|
+
})();
|
|
38
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
39
|
+
exports.BaseAttachment = void 0;
|
|
40
|
+
const core = __importStar(require("../../../../core"));
|
|
41
|
+
exports.BaseAttachment = core.serialization.object({
|
|
42
|
+
type: core.serialization.string(),
|
|
43
|
+
name: core.serialization.string().optional(),
|
|
44
|
+
});
|
|
@@ -55,4 +55,6 @@ exports.BaseConversationResponse = core.serialization.object({
|
|
|
55
55
|
analysis: ConversationAnalysis_1.ConversationAnalysis,
|
|
56
56
|
summary: ConversationSummary_1.ConversationSummary,
|
|
57
57
|
deleted: core.serialization.boolean(),
|
|
58
|
+
open: core.serialization.boolean(),
|
|
59
|
+
llmEnabled: core.serialization.boolean(),
|
|
58
60
|
});
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This file was auto-generated by Fern from our API Definition.
|
|
3
|
+
*/
|
|
4
|
+
import * as serializers from "../../../index";
|
|
5
|
+
import * as MavenAGI from "../../../../api/index";
|
|
6
|
+
import * as core from "../../../../core";
|
|
7
|
+
import { BotLogicItem } from "./BotLogicItem";
|
|
8
|
+
export declare const BotLogic: core.serialization.ObjectSchema<serializers.BotLogic.Raw, MavenAGI.BotLogic>;
|
|
9
|
+
export declare namespace BotLogic {
|
|
10
|
+
interface Raw {
|
|
11
|
+
items: BotLogicItem.Raw[];
|
|
12
|
+
}
|
|
13
|
+
}
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* This file was auto-generated by Fern from our API Definition.
|
|
4
|
+
*/
|
|
5
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
6
|
+
if (k2 === undefined) k2 = k;
|
|
7
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
8
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
9
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
10
|
+
}
|
|
11
|
+
Object.defineProperty(o, k2, desc);
|
|
12
|
+
}) : (function(o, m, k, k2) {
|
|
13
|
+
if (k2 === undefined) k2 = k;
|
|
14
|
+
o[k2] = m[k];
|
|
15
|
+
}));
|
|
16
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
17
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
18
|
+
}) : function(o, v) {
|
|
19
|
+
o["default"] = v;
|
|
20
|
+
});
|
|
21
|
+
var __importStar = (this && this.__importStar) || (function () {
|
|
22
|
+
var ownKeys = function(o) {
|
|
23
|
+
ownKeys = Object.getOwnPropertyNames || function (o) {
|
|
24
|
+
var ar = [];
|
|
25
|
+
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
|
26
|
+
return ar;
|
|
27
|
+
};
|
|
28
|
+
return ownKeys(o);
|
|
29
|
+
};
|
|
30
|
+
return function (mod) {
|
|
31
|
+
if (mod && mod.__esModule) return mod;
|
|
32
|
+
var result = {};
|
|
33
|
+
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
|
34
|
+
__setModuleDefault(result, mod);
|
|
35
|
+
return result;
|
|
36
|
+
};
|
|
37
|
+
})();
|
|
38
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
39
|
+
exports.BotLogic = void 0;
|
|
40
|
+
const core = __importStar(require("../../../../core"));
|
|
41
|
+
const BotLogicItem_1 = require("./BotLogicItem");
|
|
42
|
+
exports.BotLogic = core.serialization.object({
|
|
43
|
+
items: core.serialization.list(BotLogicItem_1.BotLogicItem),
|
|
44
|
+
});
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This file was auto-generated by Fern from our API Definition.
|
|
3
|
+
*/
|
|
4
|
+
import * as serializers from "../../../index";
|
|
5
|
+
import * as MavenAGI from "../../../../api/index";
|
|
6
|
+
import * as core from "../../../../core";
|
|
7
|
+
import { ActionExecutionParamValue } from "./ActionExecutionParamValue";
|
|
8
|
+
import { BotLogicActionReviewedDetail } from "./BotLogicActionReviewedDetail";
|
|
9
|
+
export declare const BotLogicActionExecutedDetail: core.serialization.ObjectSchema<serializers.BotLogicActionExecutedDetail.Raw, MavenAGI.BotLogicActionExecutedDetail>;
|
|
10
|
+
export declare namespace BotLogicActionExecutedDetail {
|
|
11
|
+
interface Raw extends BotLogicActionReviewedDetail.Raw {
|
|
12
|
+
actionParameters: Record<string, ActionExecutionParamValue.Raw>;
|
|
13
|
+
executionResult?: string | null;
|
|
14
|
+
executionError?: string | null;
|
|
15
|
+
}
|
|
16
|
+
}
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* This file was auto-generated by Fern from our API Definition.
|
|
4
|
+
*/
|
|
5
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
6
|
+
if (k2 === undefined) k2 = k;
|
|
7
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
8
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
9
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
10
|
+
}
|
|
11
|
+
Object.defineProperty(o, k2, desc);
|
|
12
|
+
}) : (function(o, m, k, k2) {
|
|
13
|
+
if (k2 === undefined) k2 = k;
|
|
14
|
+
o[k2] = m[k];
|
|
15
|
+
}));
|
|
16
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
17
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
18
|
+
}) : function(o, v) {
|
|
19
|
+
o["default"] = v;
|
|
20
|
+
});
|
|
21
|
+
var __importStar = (this && this.__importStar) || (function () {
|
|
22
|
+
var ownKeys = function(o) {
|
|
23
|
+
ownKeys = Object.getOwnPropertyNames || function (o) {
|
|
24
|
+
var ar = [];
|
|
25
|
+
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
|
26
|
+
return ar;
|
|
27
|
+
};
|
|
28
|
+
return ownKeys(o);
|
|
29
|
+
};
|
|
30
|
+
return function (mod) {
|
|
31
|
+
if (mod && mod.__esModule) return mod;
|
|
32
|
+
var result = {};
|
|
33
|
+
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
|
34
|
+
__setModuleDefault(result, mod);
|
|
35
|
+
return result;
|
|
36
|
+
};
|
|
37
|
+
})();
|
|
38
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
39
|
+
exports.BotLogicActionExecutedDetail = void 0;
|
|
40
|
+
const core = __importStar(require("../../../../core"));
|
|
41
|
+
const ActionExecutionParamValue_1 = require("./ActionExecutionParamValue");
|
|
42
|
+
const BotLogicActionReviewedDetail_1 = require("./BotLogicActionReviewedDetail");
|
|
43
|
+
exports.BotLogicActionExecutedDetail = core.serialization
|
|
44
|
+
.object({
|
|
45
|
+
actionParameters: core.serialization.record(core.serialization.string(), ActionExecutionParamValue_1.ActionExecutionParamValue),
|
|
46
|
+
executionResult: core.serialization.string().optional(),
|
|
47
|
+
executionError: core.serialization.string().optional(),
|
|
48
|
+
})
|
|
49
|
+
.extend(BotLogicActionReviewedDetail_1.BotLogicActionReviewedDetail);
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This file was auto-generated by Fern from our API Definition.
|
|
3
|
+
*/
|
|
4
|
+
import * as serializers from "../../../index";
|
|
5
|
+
import * as MavenAGI from "../../../../api/index";
|
|
6
|
+
import * as core from "../../../../core";
|
|
7
|
+
import { BotLogicActionReviewedDetail } from "./BotLogicActionReviewedDetail";
|
|
8
|
+
import { BotLogicActionExecutedDetail } from "./BotLogicActionExecutedDetail";
|
|
9
|
+
export declare const BotLogicActionItem: core.serialization.ObjectSchema<serializers.BotLogicActionItem.Raw, MavenAGI.BotLogicActionItem>;
|
|
10
|
+
export declare namespace BotLogicActionItem {
|
|
11
|
+
interface Raw {
|
|
12
|
+
actionsReviewed: BotLogicActionReviewedDetail.Raw[];
|
|
13
|
+
actionsExecuted: BotLogicActionExecutedDetail.Raw[];
|
|
14
|
+
}
|
|
15
|
+
}
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* This file was auto-generated by Fern from our API Definition.
|
|
4
|
+
*/
|
|
5
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
6
|
+
if (k2 === undefined) k2 = k;
|
|
7
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
8
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
9
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
10
|
+
}
|
|
11
|
+
Object.defineProperty(o, k2, desc);
|
|
12
|
+
}) : (function(o, m, k, k2) {
|
|
13
|
+
if (k2 === undefined) k2 = k;
|
|
14
|
+
o[k2] = m[k];
|
|
15
|
+
}));
|
|
16
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
17
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
18
|
+
}) : function(o, v) {
|
|
19
|
+
o["default"] = v;
|
|
20
|
+
});
|
|
21
|
+
var __importStar = (this && this.__importStar) || (function () {
|
|
22
|
+
var ownKeys = function(o) {
|
|
23
|
+
ownKeys = Object.getOwnPropertyNames || function (o) {
|
|
24
|
+
var ar = [];
|
|
25
|
+
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
|
26
|
+
return ar;
|
|
27
|
+
};
|
|
28
|
+
return ownKeys(o);
|
|
29
|
+
};
|
|
30
|
+
return function (mod) {
|
|
31
|
+
if (mod && mod.__esModule) return mod;
|
|
32
|
+
var result = {};
|
|
33
|
+
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
|
34
|
+
__setModuleDefault(result, mod);
|
|
35
|
+
return result;
|
|
36
|
+
};
|
|
37
|
+
})();
|
|
38
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
39
|
+
exports.BotLogicActionItem = void 0;
|
|
40
|
+
const core = __importStar(require("../../../../core"));
|
|
41
|
+
const BotLogicActionReviewedDetail_1 = require("./BotLogicActionReviewedDetail");
|
|
42
|
+
const BotLogicActionExecutedDetail_1 = require("./BotLogicActionExecutedDetail");
|
|
43
|
+
exports.BotLogicActionItem = core.serialization.object({
|
|
44
|
+
actionsReviewed: core.serialization.list(BotLogicActionReviewedDetail_1.BotLogicActionReviewedDetail),
|
|
45
|
+
actionsExecuted: core.serialization.list(BotLogicActionExecutedDetail_1.BotLogicActionExecutedDetail),
|
|
46
|
+
});
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This file was auto-generated by Fern from our API Definition.
|
|
3
|
+
*/
|
|
4
|
+
import * as serializers from "../../../index";
|
|
5
|
+
import * as MavenAGI from "../../../../api/index";
|
|
6
|
+
import * as core from "../../../../core";
|
|
7
|
+
import { EntityIdWithoutAgent } from "./EntityIdWithoutAgent";
|
|
8
|
+
export declare const BotLogicActionReviewedDetail: core.serialization.ObjectSchema<serializers.BotLogicActionReviewedDetail.Raw, MavenAGI.BotLogicActionReviewedDetail>;
|
|
9
|
+
export declare namespace BotLogicActionReviewedDetail {
|
|
10
|
+
interface Raw {
|
|
11
|
+
actionId: EntityIdWithoutAgent.Raw;
|
|
12
|
+
actionName: string;
|
|
13
|
+
}
|
|
14
|
+
}
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* This file was auto-generated by Fern from our API Definition.
|
|
4
|
+
*/
|
|
5
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
6
|
+
if (k2 === undefined) k2 = k;
|
|
7
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
8
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
9
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
10
|
+
}
|
|
11
|
+
Object.defineProperty(o, k2, desc);
|
|
12
|
+
}) : (function(o, m, k, k2) {
|
|
13
|
+
if (k2 === undefined) k2 = k;
|
|
14
|
+
o[k2] = m[k];
|
|
15
|
+
}));
|
|
16
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
17
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
18
|
+
}) : function(o, v) {
|
|
19
|
+
o["default"] = v;
|
|
20
|
+
});
|
|
21
|
+
var __importStar = (this && this.__importStar) || (function () {
|
|
22
|
+
var ownKeys = function(o) {
|
|
23
|
+
ownKeys = Object.getOwnPropertyNames || function (o) {
|
|
24
|
+
var ar = [];
|
|
25
|
+
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
|
26
|
+
return ar;
|
|
27
|
+
};
|
|
28
|
+
return ownKeys(o);
|
|
29
|
+
};
|
|
30
|
+
return function (mod) {
|
|
31
|
+
if (mod && mod.__esModule) return mod;
|
|
32
|
+
var result = {};
|
|
33
|
+
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
|
34
|
+
__setModuleDefault(result, mod);
|
|
35
|
+
return result;
|
|
36
|
+
};
|
|
37
|
+
})();
|
|
38
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
39
|
+
exports.BotLogicActionReviewedDetail = void 0;
|
|
40
|
+
const core = __importStar(require("../../../../core"));
|
|
41
|
+
const EntityIdWithoutAgent_1 = require("./EntityIdWithoutAgent");
|
|
42
|
+
exports.BotLogicActionReviewedDetail = core.serialization.object({
|
|
43
|
+
actionId: EntityIdWithoutAgent_1.EntityIdWithoutAgent,
|
|
44
|
+
actionName: core.serialization.string(),
|
|
45
|
+
});
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This file was auto-generated by Fern from our API Definition.
|
|
3
|
+
*/
|
|
4
|
+
import * as serializers from "../../../index";
|
|
5
|
+
import * as MavenAGI from "../../../../api/index";
|
|
6
|
+
import * as core from "../../../../core";
|
|
7
|
+
import { BotLogicActionExecutedDetail } from "./BotLogicActionExecutedDetail";
|
|
8
|
+
export declare const BotLogicFormSubmissionItem: core.serialization.ObjectSchema<serializers.BotLogicFormSubmissionItem.Raw, MavenAGI.BotLogicFormSubmissionItem>;
|
|
9
|
+
export declare namespace BotLogicFormSubmissionItem {
|
|
10
|
+
interface Raw extends BotLogicActionExecutedDetail.Raw {
|
|
11
|
+
}
|
|
12
|
+
}
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* This file was auto-generated by Fern from our API Definition.
|
|
4
|
+
*/
|
|
5
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
6
|
+
if (k2 === undefined) k2 = k;
|
|
7
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
8
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
9
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
10
|
+
}
|
|
11
|
+
Object.defineProperty(o, k2, desc);
|
|
12
|
+
}) : (function(o, m, k, k2) {
|
|
13
|
+
if (k2 === undefined) k2 = k;
|
|
14
|
+
o[k2] = m[k];
|
|
15
|
+
}));
|
|
16
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
17
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
18
|
+
}) : function(o, v) {
|
|
19
|
+
o["default"] = v;
|
|
20
|
+
});
|
|
21
|
+
var __importStar = (this && this.__importStar) || (function () {
|
|
22
|
+
var ownKeys = function(o) {
|
|
23
|
+
ownKeys = Object.getOwnPropertyNames || function (o) {
|
|
24
|
+
var ar = [];
|
|
25
|
+
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
|
26
|
+
return ar;
|
|
27
|
+
};
|
|
28
|
+
return ownKeys(o);
|
|
29
|
+
};
|
|
30
|
+
return function (mod) {
|
|
31
|
+
if (mod && mod.__esModule) return mod;
|
|
32
|
+
var result = {};
|
|
33
|
+
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
|
34
|
+
__setModuleDefault(result, mod);
|
|
35
|
+
return result;
|
|
36
|
+
};
|
|
37
|
+
})();
|
|
38
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
39
|
+
exports.BotLogicFormSubmissionItem = void 0;
|
|
40
|
+
const core = __importStar(require("../../../../core"));
|
|
41
|
+
const BotLogicActionExecutedDetail_1 = require("./BotLogicActionExecutedDetail");
|
|
42
|
+
exports.BotLogicFormSubmissionItem = core.serialization.object({}).extend(BotLogicActionExecutedDetail_1.BotLogicActionExecutedDetail);
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This file was auto-generated by Fern from our API Definition.
|
|
3
|
+
*/
|
|
4
|
+
import * as serializers from "../../../index";
|
|
5
|
+
import * as MavenAGI from "../../../../api/index";
|
|
6
|
+
import * as core from "../../../../core";
|
|
7
|
+
import { BotLogicKnowledgeItem } from "./BotLogicKnowledgeItem";
|
|
8
|
+
import { BotLogicActionItem } from "./BotLogicActionItem";
|
|
9
|
+
import { BotLogicFormSubmissionItem } from "./BotLogicFormSubmissionItem";
|
|
10
|
+
import { BotLogicSafetyItem } from "./BotLogicSafetyItem";
|
|
11
|
+
import { BotLogicUserItem } from "./BotLogicUserItem";
|
|
12
|
+
import { BotLogicSegmentsItem } from "./BotLogicSegmentsItem";
|
|
13
|
+
export declare const BotLogicItem: core.serialization.Schema<serializers.BotLogicItem.Raw, MavenAGI.BotLogicItem>;
|
|
14
|
+
export declare namespace BotLogicItem {
|
|
15
|
+
type Raw = BotLogicItem.Knowledge | BotLogicItem.Actions | BotLogicItem.Form | BotLogicItem.Safety | BotLogicItem.User | BotLogicItem.Segments;
|
|
16
|
+
interface Knowledge extends BotLogicKnowledgeItem.Raw {
|
|
17
|
+
type: "knowledge";
|
|
18
|
+
}
|
|
19
|
+
interface Actions extends BotLogicActionItem.Raw {
|
|
20
|
+
type: "actions";
|
|
21
|
+
}
|
|
22
|
+
interface Form extends BotLogicFormSubmissionItem.Raw {
|
|
23
|
+
type: "form";
|
|
24
|
+
}
|
|
25
|
+
interface Safety extends BotLogicSafetyItem.Raw {
|
|
26
|
+
type: "safety";
|
|
27
|
+
}
|
|
28
|
+
interface User extends BotLogicUserItem.Raw {
|
|
29
|
+
type: "user";
|
|
30
|
+
}
|
|
31
|
+
interface Segments extends BotLogicSegmentsItem.Raw {
|
|
32
|
+
type: "segments";
|
|
33
|
+
}
|
|
34
|
+
}
|
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* This file was auto-generated by Fern from our API Definition.
|
|
4
|
+
*/
|
|
5
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
6
|
+
if (k2 === undefined) k2 = k;
|
|
7
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
8
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
9
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
10
|
+
}
|
|
11
|
+
Object.defineProperty(o, k2, desc);
|
|
12
|
+
}) : (function(o, m, k, k2) {
|
|
13
|
+
if (k2 === undefined) k2 = k;
|
|
14
|
+
o[k2] = m[k];
|
|
15
|
+
}));
|
|
16
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
17
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
18
|
+
}) : function(o, v) {
|
|
19
|
+
o["default"] = v;
|
|
20
|
+
});
|
|
21
|
+
var __importStar = (this && this.__importStar) || (function () {
|
|
22
|
+
var ownKeys = function(o) {
|
|
23
|
+
ownKeys = Object.getOwnPropertyNames || function (o) {
|
|
24
|
+
var ar = [];
|
|
25
|
+
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
|
26
|
+
return ar;
|
|
27
|
+
};
|
|
28
|
+
return ownKeys(o);
|
|
29
|
+
};
|
|
30
|
+
return function (mod) {
|
|
31
|
+
if (mod && mod.__esModule) return mod;
|
|
32
|
+
var result = {};
|
|
33
|
+
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
|
34
|
+
__setModuleDefault(result, mod);
|
|
35
|
+
return result;
|
|
36
|
+
};
|
|
37
|
+
})();
|
|
38
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
39
|
+
exports.BotLogicItem = void 0;
|
|
40
|
+
const core = __importStar(require("../../../../core"));
|
|
41
|
+
const BotLogicKnowledgeItem_1 = require("./BotLogicKnowledgeItem");
|
|
42
|
+
const BotLogicActionItem_1 = require("./BotLogicActionItem");
|
|
43
|
+
const BotLogicFormSubmissionItem_1 = require("./BotLogicFormSubmissionItem");
|
|
44
|
+
const BotLogicSafetyItem_1 = require("./BotLogicSafetyItem");
|
|
45
|
+
const BotLogicUserItem_1 = require("./BotLogicUserItem");
|
|
46
|
+
const BotLogicSegmentsItem_1 = require("./BotLogicSegmentsItem");
|
|
47
|
+
exports.BotLogicItem = core.serialization
|
|
48
|
+
.union("type", {
|
|
49
|
+
knowledge: BotLogicKnowledgeItem_1.BotLogicKnowledgeItem,
|
|
50
|
+
actions: BotLogicActionItem_1.BotLogicActionItem,
|
|
51
|
+
form: BotLogicFormSubmissionItem_1.BotLogicFormSubmissionItem,
|
|
52
|
+
safety: BotLogicSafetyItem_1.BotLogicSafetyItem,
|
|
53
|
+
user: BotLogicUserItem_1.BotLogicUserItem,
|
|
54
|
+
segments: BotLogicSegmentsItem_1.BotLogicSegmentsItem,
|
|
55
|
+
})
|
|
56
|
+
.transform({
|
|
57
|
+
transform: (value) => value,
|
|
58
|
+
untransform: (value) => value,
|
|
59
|
+
});
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This file was auto-generated by Fern from our API Definition.
|
|
3
|
+
*/
|
|
4
|
+
import * as serializers from "../../../index";
|
|
5
|
+
import * as MavenAGI from "../../../../api/index";
|
|
6
|
+
import * as core from "../../../../core";
|
|
7
|
+
import { EntityIdWithoutAgent } from "./EntityIdWithoutAgent";
|
|
8
|
+
export declare const BotLogicKnowledgeDetail: core.serialization.ObjectSchema<serializers.BotLogicKnowledgeDetail.Raw, MavenAGI.BotLogicKnowledgeDetail>;
|
|
9
|
+
export declare namespace BotLogicKnowledgeDetail {
|
|
10
|
+
interface Raw {
|
|
11
|
+
knowledgeBaseId: EntityIdWithoutAgent.Raw;
|
|
12
|
+
documentId: EntityIdWithoutAgent.Raw;
|
|
13
|
+
documentName: string;
|
|
14
|
+
documentExcerpt: string;
|
|
15
|
+
}
|
|
16
|
+
}
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* This file was auto-generated by Fern from our API Definition.
|
|
4
|
+
*/
|
|
5
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
6
|
+
if (k2 === undefined) k2 = k;
|
|
7
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
8
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
9
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
10
|
+
}
|
|
11
|
+
Object.defineProperty(o, k2, desc);
|
|
12
|
+
}) : (function(o, m, k, k2) {
|
|
13
|
+
if (k2 === undefined) k2 = k;
|
|
14
|
+
o[k2] = m[k];
|
|
15
|
+
}));
|
|
16
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
17
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
18
|
+
}) : function(o, v) {
|
|
19
|
+
o["default"] = v;
|
|
20
|
+
});
|
|
21
|
+
var __importStar = (this && this.__importStar) || (function () {
|
|
22
|
+
var ownKeys = function(o) {
|
|
23
|
+
ownKeys = Object.getOwnPropertyNames || function (o) {
|
|
24
|
+
var ar = [];
|
|
25
|
+
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
|
26
|
+
return ar;
|
|
27
|
+
};
|
|
28
|
+
return ownKeys(o);
|
|
29
|
+
};
|
|
30
|
+
return function (mod) {
|
|
31
|
+
if (mod && mod.__esModule) return mod;
|
|
32
|
+
var result = {};
|
|
33
|
+
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
|
34
|
+
__setModuleDefault(result, mod);
|
|
35
|
+
return result;
|
|
36
|
+
};
|
|
37
|
+
})();
|
|
38
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
39
|
+
exports.BotLogicKnowledgeDetail = void 0;
|
|
40
|
+
const core = __importStar(require("../../../../core"));
|
|
41
|
+
const EntityIdWithoutAgent_1 = require("./EntityIdWithoutAgent");
|
|
42
|
+
exports.BotLogicKnowledgeDetail = core.serialization.object({
|
|
43
|
+
knowledgeBaseId: EntityIdWithoutAgent_1.EntityIdWithoutAgent,
|
|
44
|
+
documentId: EntityIdWithoutAgent_1.EntityIdWithoutAgent,
|
|
45
|
+
documentName: core.serialization.string(),
|
|
46
|
+
documentExcerpt: core.serialization.string(),
|
|
47
|
+
});
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This file was auto-generated by Fern from our API Definition.
|
|
3
|
+
*/
|
|
4
|
+
import * as serializers from "../../../index";
|
|
5
|
+
import * as MavenAGI from "../../../../api/index";
|
|
6
|
+
import * as core from "../../../../core";
|
|
7
|
+
import { BotLogicKnowledgeDetail } from "./BotLogicKnowledgeDetail";
|
|
8
|
+
export declare const BotLogicKnowledgeItem: core.serialization.ObjectSchema<serializers.BotLogicKnowledgeItem.Raw, MavenAGI.BotLogicKnowledgeItem>;
|
|
9
|
+
export declare namespace BotLogicKnowledgeItem {
|
|
10
|
+
interface Raw {
|
|
11
|
+
knowledgeReviewed: BotLogicKnowledgeDetail.Raw[];
|
|
12
|
+
knowledgeUtilized: BotLogicKnowledgeDetail.Raw[];
|
|
13
|
+
}
|
|
14
|
+
}
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* This file was auto-generated by Fern from our API Definition.
|
|
4
|
+
*/
|
|
5
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
6
|
+
if (k2 === undefined) k2 = k;
|
|
7
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
8
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
9
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
10
|
+
}
|
|
11
|
+
Object.defineProperty(o, k2, desc);
|
|
12
|
+
}) : (function(o, m, k, k2) {
|
|
13
|
+
if (k2 === undefined) k2 = k;
|
|
14
|
+
o[k2] = m[k];
|
|
15
|
+
}));
|
|
16
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
17
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
18
|
+
}) : function(o, v) {
|
|
19
|
+
o["default"] = v;
|
|
20
|
+
});
|
|
21
|
+
var __importStar = (this && this.__importStar) || (function () {
|
|
22
|
+
var ownKeys = function(o) {
|
|
23
|
+
ownKeys = Object.getOwnPropertyNames || function (o) {
|
|
24
|
+
var ar = [];
|
|
25
|
+
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
|
26
|
+
return ar;
|
|
27
|
+
};
|
|
28
|
+
return ownKeys(o);
|
|
29
|
+
};
|
|
30
|
+
return function (mod) {
|
|
31
|
+
if (mod && mod.__esModule) return mod;
|
|
32
|
+
var result = {};
|
|
33
|
+
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
|
34
|
+
__setModuleDefault(result, mod);
|
|
35
|
+
return result;
|
|
36
|
+
};
|
|
37
|
+
})();
|
|
38
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
39
|
+
exports.BotLogicKnowledgeItem = void 0;
|
|
40
|
+
const core = __importStar(require("../../../../core"));
|
|
41
|
+
const BotLogicKnowledgeDetail_1 = require("./BotLogicKnowledgeDetail");
|
|
42
|
+
exports.BotLogicKnowledgeItem = core.serialization.object({
|
|
43
|
+
knowledgeReviewed: core.serialization.list(BotLogicKnowledgeDetail_1.BotLogicKnowledgeDetail),
|
|
44
|
+
knowledgeUtilized: core.serialization.list(BotLogicKnowledgeDetail_1.BotLogicKnowledgeDetail),
|
|
45
|
+
});
|