mavenagi 1.0.10 → 1.0.12
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 +33 -18
- package/README.md +8 -41
- package/api/resources/actions/client/Client.js +3 -3
- package/api/resources/agents/client/Client.d.ts +86 -0
- package/api/resources/agents/client/Client.js +320 -0
- package/api/resources/agents/client/index.d.ts +1 -0
- package/api/resources/agents/client/index.js +2 -0
- package/api/resources/agents/index.d.ts +2 -0
- package/api/resources/agents/index.js +18 -0
- package/api/resources/agents/types/Agent.d.ts +14 -0
- package/api/resources/agents/types/AgentEnvironment.d.ts +9 -0
- package/api/resources/agents/types/AgentEnvironment.js +11 -0
- package/api/resources/agents/types/AgentField.d.ts +8 -0
- package/api/resources/agents/types/AgentField.js +10 -0
- package/api/resources/agents/types/AgentFilter.d.ts +8 -0
- package/api/resources/agents/types/AgentsSearchRequest.d.ts +8 -0
- package/api/resources/agents/types/AgentsSearchResponse.d.ts +7 -0
- package/api/resources/agents/types/index.d.ts +6 -0
- package/api/resources/agents/types/index.js +22 -0
- package/api/resources/analytics/client/Client.js +3 -3
- package/api/resources/appSettings/client/Client.d.ts +21 -0
- package/api/resources/appSettings/client/Client.js +91 -2
- package/api/resources/appSettings/client/index.d.ts +1 -1
- package/api/resources/appSettings/client/index.js +15 -0
- package/api/resources/appSettings/client/requests/SearchAppSettingsRequest.d.ts +15 -0
- package/api/resources/appSettings/client/requests/SearchAppSettingsRequest.js +5 -0
- package/api/resources/appSettings/client/requests/index.d.ts +1 -0
- package/api/resources/appSettings/client/requests/index.js +2 -0
- package/api/resources/appSettings/index.d.ts +1 -0
- package/api/resources/appSettings/index.js +1 -0
- package/api/resources/appSettings/types/AppSettings.d.ts +11 -0
- package/api/resources/appSettings/types/AppSettings.js +5 -0
- package/api/resources/appSettings/types/SearchAppSettingsResponse.d.ts +7 -0
- package/api/resources/appSettings/types/SearchAppSettingsResponse.js +5 -0
- package/api/resources/appSettings/types/index.d.ts +2 -0
- package/api/resources/appSettings/types/index.js +18 -0
- package/api/resources/commons/types/ActionFormField.d.ts +3 -3
- package/api/resources/commons/types/ActionParameter.d.ts +2 -0
- package/api/resources/commons/types/ActionParameterType.d.ts +2 -1
- package/api/resources/commons/types/ActionParameterType.js +1 -0
- package/api/resources/commons/types/AppPrecondition.d.ts +8 -0
- package/api/resources/commons/types/AppPrecondition.js +5 -0
- package/api/resources/commons/types/BotActionFormResponse.d.ts +7 -1
- package/api/resources/commons/types/ConversationAnalysis.d.ts +2 -0
- package/api/resources/commons/types/ConversationPrecondition.d.ts +4 -1
- package/api/resources/commons/types/ConversationResponse.d.ts +8 -1
- package/api/resources/commons/types/ConversationSummary.d.ts +27 -0
- package/api/resources/commons/types/EntityType.d.ts +3 -1
- package/api/resources/commons/types/EntityType.js +2 -0
- package/api/resources/commons/types/InboxItemDuplicateDocuments.d.ts +2 -0
- package/api/resources/commons/types/UserMessage.d.ts +2 -0
- package/api/resources/commons/types/index.d.ts +1 -3
- package/api/resources/commons/types/index.js +1 -3
- package/api/resources/conversation/client/Client.d.ts +2 -1
- package/api/resources/conversation/client/Client.js +15 -14
- package/api/resources/conversation/types/AskRequest.d.ts +4 -1
- package/api/resources/events/client/Client.d.ts +53 -0
- package/api/resources/events/client/Client.js +157 -0
- package/api/resources/events/client/index.d.ts +1 -0
- package/api/resources/events/client/index.js +2 -0
- package/api/resources/events/index.d.ts +2 -0
- package/api/resources/events/index.js +18 -0
- package/api/resources/events/types/BrowserInfo.d.ts +10 -0
- package/api/resources/events/types/BrowserInfo.js +5 -0
- package/api/resources/events/types/BrowserType.d.ts +12 -0
- package/api/resources/events/types/BrowserType.js +14 -0
- package/api/resources/events/types/ContextInfo.d.ts +6 -0
- package/api/resources/events/types/ContextInfo.js +5 -0
- package/api/resources/events/types/DeviceInfo.d.ts +10 -0
- package/api/resources/events/types/DeviceInfo.js +5 -0
- package/api/resources/events/types/DeviceType.d.ts +10 -0
- package/api/resources/events/types/DeviceType.js +12 -0
- package/api/resources/events/types/EventBaseNoId.d.ts +11 -0
- package/api/resources/events/types/EventBaseNoId.js +5 -0
- package/api/resources/events/types/EventField.d.ts +7 -0
- package/api/resources/events/types/EventField.js +9 -0
- package/api/resources/events/types/EventFilter.d.ts +13 -0
- package/api/resources/events/types/EventFilter.js +5 -0
- package/api/resources/events/types/EventResponse.d.ts +13 -0
- package/api/resources/events/types/EventResponse.js +5 -0
- package/api/resources/events/types/EventType.d.ts +8 -0
- package/api/resources/events/types/EventType.js +10 -0
- package/api/resources/events/types/EventsSearchRequest.d.ts +8 -0
- package/api/resources/events/types/EventsSearchRequest.js +5 -0
- package/api/resources/events/types/EventsSearchResponse.d.ts +8 -0
- package/api/resources/events/types/EventsSearchResponse.js +5 -0
- package/api/resources/events/types/FeedbackInfo.d.ts +12 -0
- package/api/resources/events/types/FeedbackInfo.js +5 -0
- package/api/resources/events/types/GeoInfo.d.ts +11 -0
- package/api/resources/events/types/GeoInfo.js +5 -0
- package/api/resources/events/types/IpInfo.d.ts +6 -0
- package/api/resources/events/types/IpInfo.js +5 -0
- package/api/resources/events/types/LanguageInfo.d.ts +6 -0
- package/api/resources/events/types/LanguageInfo.js +5 -0
- package/api/resources/events/types/NovelSystemEventNoId.d.ts +8 -0
- package/api/resources/events/types/NovelSystemEventNoId.js +5 -0
- package/api/resources/events/types/OsInfo.d.ts +9 -0
- package/api/resources/events/types/OsInfo.js +5 -0
- package/api/resources/events/types/OsType.d.ts +12 -0
- package/api/resources/events/types/OsType.js +14 -0
- package/api/resources/events/types/PageInfo.d.ts +10 -0
- package/api/resources/events/types/PageInfo.js +5 -0
- package/api/resources/events/types/SessionInfo.d.ts +9 -0
- package/api/resources/events/types/SessionInfo.js +5 -0
- package/api/resources/events/types/SourceInfo.d.ts +12 -0
- package/api/resources/events/types/SourceInfo.js +5 -0
- package/api/resources/events/types/SourceType.d.ts +9 -0
- package/api/resources/events/types/SourceType.js +11 -0
- package/api/resources/events/types/SurveyInfo.d.ts +7 -0
- package/api/resources/events/types/SurveyInfo.js +5 -0
- package/api/resources/events/types/SystemEvent.d.ts +8 -0
- package/api/resources/events/types/SystemEvent.js +5 -0
- package/api/resources/events/types/SystemEventName.d.ts +18 -0
- package/api/resources/events/types/SystemEventName.js +11 -0
- package/api/resources/events/types/UserEvent.d.ts +16 -0
- package/api/resources/events/types/UserEvent.js +5 -0
- package/api/resources/events/types/UserEventName.d.ts +22 -0
- package/api/resources/events/types/UserEventName.js +12 -0
- package/api/resources/events/types/UserInfo.d.ts +7 -0
- package/api/resources/events/types/UserInfo.js +5 -0
- package/api/resources/events/types/index.d.ts +29 -0
- package/api/resources/events/types/index.js +45 -0
- package/api/resources/inbox/client/Client.js +5 -5
- package/api/resources/index.d.ts +9 -1
- package/api/resources/index.js +10 -2
- package/api/resources/knowledge/client/Client.d.ts +42 -5
- package/api/resources/knowledge/client/Client.js +58 -13
- package/api/resources/knowledge/types/FinalizeKnowledgeBaseVersionRequest.d.ts +23 -0
- package/api/resources/knowledge/types/FinalizeKnowledgeBaseVersionRequest.js +5 -0
- package/api/resources/knowledge/types/KnowledgeBaseRequest.d.ts +2 -0
- package/api/resources/knowledge/types/KnowledgeBaseResponse.d.ts +6 -1
- package/api/resources/knowledge/types/KnowledgeBaseVersion.d.ts +15 -1
- package/api/resources/knowledge/types/KnowledgeBaseVersionFinalizeStatus.d.ts +11 -0
- package/api/resources/knowledge/types/KnowledgeBaseVersionFinalizeStatus.js +10 -0
- package/api/resources/knowledge/types/KnowledgeBaseVersionStatus.d.ts +12 -0
- package/api/resources/knowledge/types/KnowledgeBaseVersionStatus.js +11 -0
- package/api/resources/knowledge/types/KnowledgeDocumentRequest.d.ts +13 -1
- package/api/resources/knowledge/types/KnowledgeDocumentResponse.d.ts +6 -1
- package/api/resources/knowledge/types/index.d.ts +3 -0
- package/api/resources/knowledge/types/index.js +3 -0
- package/api/resources/organizations/client/Client.d.ts +147 -0
- package/api/resources/organizations/client/Client.js +317 -0
- package/api/resources/organizations/client/index.d.ts +1 -0
- package/api/resources/organizations/client/index.js +2 -0
- package/api/resources/organizations/index.d.ts +1 -0
- package/api/resources/organizations/index.js +17 -0
- package/api/resources/realtime/client/Client.d.ts +2 -0
- package/api/resources/realtime/client/Client.js +3 -0
- package/api/resources/realtime/types/AudioFormat.d.ts +8 -0
- package/api/resources/realtime/types/AudioFormat.js +10 -0
- package/api/resources/realtime/types/ControlEvent.d.ts +4 -1
- package/api/resources/realtime/types/MessageBase.d.ts +6 -0
- package/api/resources/realtime/types/MessageBase.js +5 -0
- package/api/resources/realtime/types/SubscribeEvent.d.ts +4 -1
- package/api/resources/realtime/types/index.d.ts +3 -1
- package/api/resources/realtime/types/index.js +3 -1
- package/api/resources/translations/client/Client.js +1 -1
- package/api/resources/triggers/client/Client.d.ts +29 -0
- package/api/resources/triggers/client/Client.js +170 -3
- package/api/resources/triggers/client/index.d.ts +1 -1
- package/api/resources/triggers/client/index.js +15 -0
- package/api/resources/triggers/client/requests/PartialUpdateRequest.d.ts +17 -0
- package/api/resources/triggers/client/requests/PartialUpdateRequest.js +5 -0
- package/api/resources/triggers/client/requests/index.d.ts +1 -0
- package/api/resources/triggers/client/requests/index.js +2 -0
- package/api/resources/triggers/types/EventTriggerBase.js +5 -0
- package/api/resources/{commons → triggers}/types/EventTriggerResponse.d.ts +4 -1
- package/api/resources/triggers/types/EventTriggerResponse.js +5 -0
- package/api/resources/triggers/types/EventTriggersSearchRequest.d.ts +8 -0
- package/api/resources/triggers/types/EventTriggersSearchRequest.js +5 -0
- package/api/resources/triggers/types/EventTriggersSearchResponse.d.ts +7 -0
- package/api/resources/triggers/types/EventTriggersSearchResponse.js +5 -0
- package/api/resources/triggers/types/TriggerField.d.ts +8 -0
- package/api/resources/triggers/types/TriggerField.js +10 -0
- package/api/resources/triggers/types/TriggerPartialUpdate.d.ts +7 -0
- package/api/resources/triggers/types/TriggerPartialUpdate.js +5 -0
- package/api/resources/triggers/types/index.d.ts +7 -0
- package/api/resources/triggers/types/index.js +7 -0
- package/api/resources/users/client/Client.js +3 -3
- package/dist/Client.d.ts +9 -0
- package/dist/Client.js +33 -18
- package/dist/api/resources/actions/client/Client.js +3 -3
- package/dist/api/resources/agents/client/Client.d.ts +86 -0
- package/dist/api/resources/agents/client/Client.js +320 -0
- package/dist/api/resources/agents/client/index.d.ts +1 -0
- package/dist/api/resources/agents/client/index.js +2 -0
- package/dist/api/resources/agents/index.d.ts +2 -0
- package/dist/api/resources/agents/index.js +18 -0
- package/dist/api/resources/agents/types/Agent.d.ts +14 -0
- package/dist/api/resources/agents/types/Agent.js +5 -0
- package/dist/api/resources/agents/types/AgentEnvironment.d.ts +9 -0
- package/dist/api/resources/agents/types/AgentEnvironment.js +11 -0
- package/dist/api/resources/agents/types/AgentField.d.ts +8 -0
- package/dist/api/resources/agents/types/AgentField.js +10 -0
- package/dist/api/resources/agents/types/AgentFilter.d.ts +8 -0
- package/dist/api/resources/agents/types/AgentFilter.js +5 -0
- package/dist/api/resources/agents/types/AgentsSearchRequest.d.ts +8 -0
- package/dist/api/resources/agents/types/AgentsSearchRequest.js +5 -0
- package/dist/api/resources/agents/types/AgentsSearchResponse.d.ts +7 -0
- package/dist/api/resources/agents/types/AgentsSearchResponse.js +5 -0
- package/dist/api/resources/agents/types/index.d.ts +6 -0
- package/dist/api/resources/agents/types/index.js +22 -0
- package/dist/api/resources/analytics/client/Client.js +3 -3
- package/dist/api/resources/appSettings/client/Client.d.ts +21 -0
- package/dist/api/resources/appSettings/client/Client.js +91 -2
- package/dist/api/resources/appSettings/client/index.d.ts +1 -1
- package/dist/api/resources/appSettings/client/index.js +15 -0
- package/dist/api/resources/appSettings/client/requests/SearchAppSettingsRequest.d.ts +15 -0
- package/dist/api/resources/appSettings/client/requests/SearchAppSettingsRequest.js +5 -0
- package/dist/api/resources/appSettings/client/requests/index.d.ts +1 -0
- package/dist/api/resources/appSettings/client/requests/index.js +2 -0
- package/dist/api/resources/appSettings/index.d.ts +1 -0
- package/dist/api/resources/appSettings/index.js +1 -0
- package/dist/api/resources/appSettings/types/AppSettings.d.ts +11 -0
- package/dist/api/resources/appSettings/types/AppSettings.js +5 -0
- package/dist/api/resources/appSettings/types/SearchAppSettingsResponse.d.ts +7 -0
- package/dist/api/resources/appSettings/types/SearchAppSettingsResponse.js +5 -0
- package/dist/api/resources/appSettings/types/index.d.ts +2 -0
- package/dist/api/resources/appSettings/types/index.js +18 -0
- package/dist/api/resources/commons/types/ActionFormField.d.ts +3 -3
- package/dist/api/resources/commons/types/ActionParameter.d.ts +2 -0
- package/dist/api/resources/commons/types/ActionParameterType.d.ts +2 -1
- package/dist/api/resources/commons/types/ActionParameterType.js +1 -0
- package/dist/api/resources/commons/types/AppPrecondition.d.ts +8 -0
- package/dist/api/resources/commons/types/AppPrecondition.js +5 -0
- package/dist/api/resources/commons/types/BotActionFormResponse.d.ts +7 -1
- package/dist/api/resources/commons/types/ConversationAnalysis.d.ts +2 -0
- package/dist/api/resources/commons/types/ConversationPrecondition.d.ts +4 -1
- package/dist/api/resources/commons/types/ConversationResponse.d.ts +8 -1
- package/dist/api/resources/commons/types/ConversationSummary.d.ts +27 -0
- package/dist/api/resources/commons/types/EntityType.d.ts +3 -1
- package/dist/api/resources/commons/types/EntityType.js +2 -0
- package/dist/api/resources/commons/types/InboxItemDuplicateDocuments.d.ts +2 -0
- package/dist/api/resources/commons/types/UserMessage.d.ts +2 -0
- package/dist/api/resources/commons/types/index.d.ts +1 -3
- package/dist/api/resources/commons/types/index.js +1 -3
- package/dist/api/resources/conversation/client/Client.d.ts +2 -1
- package/dist/api/resources/conversation/client/Client.js +15 -14
- package/dist/api/resources/conversation/types/AskRequest.d.ts +4 -1
- package/dist/api/resources/events/client/Client.d.ts +53 -0
- package/dist/api/resources/events/client/Client.js +157 -0
- package/dist/api/resources/events/client/index.d.ts +1 -0
- package/dist/api/resources/events/client/index.js +2 -0
- package/dist/api/resources/events/index.d.ts +2 -0
- package/dist/api/resources/events/index.js +18 -0
- package/dist/api/resources/events/types/BrowserInfo.d.ts +10 -0
- package/dist/api/resources/events/types/BrowserInfo.js +5 -0
- package/dist/api/resources/events/types/BrowserType.d.ts +12 -0
- package/dist/api/resources/events/types/BrowserType.js +14 -0
- package/dist/api/resources/events/types/ContextInfo.d.ts +6 -0
- package/dist/api/resources/events/types/ContextInfo.js +5 -0
- package/dist/api/resources/events/types/DeviceInfo.d.ts +10 -0
- package/dist/api/resources/events/types/DeviceInfo.js +5 -0
- package/dist/api/resources/events/types/DeviceType.d.ts +10 -0
- package/dist/api/resources/events/types/DeviceType.js +12 -0
- package/dist/api/resources/events/types/EventBaseNoId.d.ts +11 -0
- package/dist/api/resources/events/types/EventBaseNoId.js +5 -0
- package/dist/api/resources/events/types/EventField.d.ts +7 -0
- package/dist/api/resources/events/types/EventField.js +9 -0
- package/dist/api/resources/events/types/EventFilter.d.ts +13 -0
- package/dist/api/resources/events/types/EventFilter.js +5 -0
- package/dist/api/resources/events/types/EventResponse.d.ts +13 -0
- package/dist/api/resources/events/types/EventResponse.js +5 -0
- package/dist/api/resources/events/types/EventType.d.ts +8 -0
- package/dist/api/resources/events/types/EventType.js +10 -0
- package/dist/api/resources/events/types/EventsSearchRequest.d.ts +8 -0
- package/dist/api/resources/events/types/EventsSearchRequest.js +5 -0
- package/dist/api/resources/events/types/EventsSearchResponse.d.ts +8 -0
- package/dist/api/resources/events/types/EventsSearchResponse.js +5 -0
- package/dist/api/resources/events/types/FeedbackInfo.d.ts +12 -0
- package/dist/api/resources/events/types/FeedbackInfo.js +5 -0
- package/dist/api/resources/events/types/GeoInfo.d.ts +11 -0
- package/dist/api/resources/events/types/GeoInfo.js +5 -0
- package/dist/api/resources/events/types/IpInfo.d.ts +6 -0
- package/dist/api/resources/events/types/IpInfo.js +5 -0
- package/dist/api/resources/events/types/LanguageInfo.d.ts +6 -0
- package/dist/api/resources/events/types/LanguageInfo.js +5 -0
- package/dist/api/resources/events/types/NovelSystemEventNoId.d.ts +8 -0
- package/dist/api/resources/events/types/NovelSystemEventNoId.js +5 -0
- package/dist/api/resources/events/types/OsInfo.d.ts +9 -0
- package/dist/api/resources/events/types/OsInfo.js +5 -0
- package/dist/api/resources/events/types/OsType.d.ts +12 -0
- package/dist/api/resources/events/types/OsType.js +14 -0
- package/dist/api/resources/events/types/PageInfo.d.ts +10 -0
- package/dist/api/resources/events/types/PageInfo.js +5 -0
- package/dist/api/resources/events/types/SessionInfo.d.ts +9 -0
- package/dist/api/resources/events/types/SessionInfo.js +5 -0
- package/dist/api/resources/events/types/SourceInfo.d.ts +12 -0
- package/dist/api/resources/events/types/SourceInfo.js +5 -0
- package/dist/api/resources/events/types/SourceType.d.ts +9 -0
- package/dist/api/resources/events/types/SourceType.js +11 -0
- package/dist/api/resources/events/types/SurveyInfo.d.ts +7 -0
- package/dist/api/resources/events/types/SurveyInfo.js +5 -0
- package/dist/api/resources/events/types/SystemEvent.d.ts +8 -0
- package/dist/api/resources/events/types/SystemEvent.js +5 -0
- package/dist/api/resources/events/types/SystemEventName.d.ts +18 -0
- package/dist/api/resources/events/types/SystemEventName.js +11 -0
- package/dist/api/resources/events/types/UserEvent.d.ts +16 -0
- package/dist/api/resources/events/types/UserEvent.js +5 -0
- package/dist/api/resources/events/types/UserEventName.d.ts +22 -0
- package/dist/api/resources/events/types/UserEventName.js +12 -0
- package/dist/api/resources/events/types/UserInfo.d.ts +7 -0
- package/dist/api/resources/events/types/UserInfo.js +5 -0
- package/dist/api/resources/events/types/index.d.ts +29 -0
- package/dist/api/resources/events/types/index.js +45 -0
- package/dist/api/resources/inbox/client/Client.js +5 -5
- package/dist/api/resources/index.d.ts +9 -1
- package/dist/api/resources/index.js +10 -2
- package/dist/api/resources/knowledge/client/Client.d.ts +42 -5
- package/dist/api/resources/knowledge/client/Client.js +58 -13
- package/dist/api/resources/knowledge/types/FinalizeKnowledgeBaseVersionRequest.d.ts +23 -0
- package/dist/api/resources/knowledge/types/FinalizeKnowledgeBaseVersionRequest.js +5 -0
- package/dist/api/resources/knowledge/types/KnowledgeBaseRequest.d.ts +2 -0
- package/dist/api/resources/knowledge/types/KnowledgeBaseResponse.d.ts +6 -1
- package/dist/api/resources/knowledge/types/KnowledgeBaseVersion.d.ts +15 -1
- package/dist/api/resources/knowledge/types/KnowledgeBaseVersionFinalizeStatus.d.ts +11 -0
- package/dist/api/resources/knowledge/types/KnowledgeBaseVersionFinalizeStatus.js +10 -0
- package/dist/api/resources/knowledge/types/KnowledgeBaseVersionStatus.d.ts +12 -0
- package/dist/api/resources/knowledge/types/KnowledgeBaseVersionStatus.js +11 -0
- package/dist/api/resources/knowledge/types/KnowledgeDocumentRequest.d.ts +13 -1
- package/dist/api/resources/knowledge/types/KnowledgeDocumentResponse.d.ts +6 -1
- package/dist/api/resources/knowledge/types/index.d.ts +3 -0
- package/dist/api/resources/knowledge/types/index.js +3 -0
- package/dist/api/resources/organizations/client/Client.d.ts +147 -0
- package/dist/api/resources/organizations/client/Client.js +317 -0
- package/dist/api/resources/organizations/client/index.d.ts +1 -0
- package/dist/api/resources/organizations/client/index.js +2 -0
- package/dist/api/resources/organizations/index.d.ts +1 -0
- package/dist/api/resources/organizations/index.js +17 -0
- package/dist/api/resources/realtime/client/Client.d.ts +2 -0
- package/dist/api/resources/realtime/client/Client.js +3 -0
- package/dist/api/resources/realtime/types/AudioFormat.d.ts +8 -0
- package/dist/api/resources/realtime/types/AudioFormat.js +10 -0
- package/dist/api/resources/realtime/types/ControlEvent.d.ts +4 -1
- package/dist/api/resources/realtime/types/MessageBase.d.ts +6 -0
- package/dist/api/resources/realtime/types/MessageBase.js +5 -0
- package/dist/api/resources/realtime/types/SubscribeEvent.d.ts +4 -1
- package/dist/api/resources/realtime/types/index.d.ts +3 -1
- package/dist/api/resources/realtime/types/index.js +3 -1
- package/dist/api/resources/translations/client/Client.js +1 -1
- package/dist/api/resources/triggers/client/Client.d.ts +29 -0
- package/dist/api/resources/triggers/client/Client.js +170 -3
- package/dist/api/resources/triggers/client/index.d.ts +1 -1
- package/dist/api/resources/triggers/client/index.js +15 -0
- package/dist/api/resources/triggers/client/requests/PartialUpdateRequest.d.ts +17 -0
- package/dist/api/resources/triggers/client/requests/PartialUpdateRequest.js +5 -0
- package/dist/api/resources/triggers/client/requests/index.d.ts +1 -0
- package/dist/api/resources/triggers/client/requests/index.js +2 -0
- package/dist/api/resources/triggers/types/EventTriggerBase.js +5 -0
- package/dist/api/resources/{commons → triggers}/types/EventTriggerResponse.d.ts +4 -1
- package/dist/api/resources/triggers/types/EventTriggerResponse.js +5 -0
- package/dist/api/resources/triggers/types/EventTriggersSearchRequest.d.ts +8 -0
- package/dist/api/resources/triggers/types/EventTriggersSearchRequest.js +5 -0
- package/dist/api/resources/triggers/types/EventTriggersSearchResponse.d.ts +7 -0
- package/dist/api/resources/triggers/types/EventTriggersSearchResponse.js +5 -0
- package/dist/api/resources/triggers/types/TriggerField.d.ts +8 -0
- package/dist/api/resources/triggers/types/TriggerField.js +10 -0
- package/dist/api/resources/triggers/types/TriggerPartialUpdate.d.ts +7 -0
- package/dist/api/resources/triggers/types/TriggerPartialUpdate.js +5 -0
- package/dist/api/resources/triggers/types/index.d.ts +7 -0
- package/dist/api/resources/triggers/types/index.js +7 -0
- package/dist/api/resources/users/client/Client.js +3 -3
- package/dist/serialization/resources/agents/client/index.d.ts +1 -0
- package/dist/serialization/resources/agents/client/index.js +37 -0
- package/dist/serialization/resources/agents/client/list.d.ts +11 -0
- package/dist/serialization/resources/agents/client/list.js +42 -0
- package/dist/serialization/resources/agents/index.d.ts +2 -0
- package/dist/serialization/resources/agents/index.js +18 -0
- package/dist/serialization/resources/agents/types/Agent.d.ts +17 -0
- package/dist/serialization/resources/agents/types/Agent.js +48 -0
- package/dist/serialization/resources/agents/types/AgentEnvironment.d.ts +10 -0
- package/dist/serialization/resources/agents/types/AgentEnvironment.js +41 -0
- package/dist/serialization/resources/agents/types/AgentField.d.ts +10 -0
- package/dist/serialization/resources/agents/types/AgentField.js +41 -0
- package/dist/serialization/resources/agents/types/AgentFilter.d.ts +13 -0
- package/dist/serialization/resources/agents/types/AgentFilter.js +44 -0
- package/dist/serialization/resources/agents/types/AgentsSearchRequest.d.ts +16 -0
- package/dist/serialization/resources/agents/types/AgentsSearchRequest.js +49 -0
- package/dist/serialization/resources/agents/types/AgentsSearchResponse.d.ts +14 -0
- package/dist/serialization/resources/agents/types/AgentsSearchResponse.js +47 -0
- package/dist/serialization/resources/agents/types/index.d.ts +6 -0
- package/dist/serialization/resources/agents/types/index.js +22 -0
- package/dist/serialization/resources/appSettings/index.d.ts +1 -0
- package/dist/serialization/resources/appSettings/index.js +1 -0
- package/dist/serialization/resources/appSettings/types/AppSettings.d.ts +14 -0
- package/dist/serialization/resources/appSettings/types/AppSettings.js +45 -0
- package/dist/serialization/resources/appSettings/types/SearchAppSettingsResponse.d.ts +13 -0
- package/dist/serialization/resources/appSettings/types/SearchAppSettingsResponse.js +44 -0
- package/dist/serialization/resources/appSettings/types/index.d.ts +2 -0
- package/dist/serialization/resources/appSettings/types/index.js +18 -0
- package/dist/serialization/resources/commons/types/ActionParameter.d.ts +1 -0
- package/dist/serialization/resources/commons/types/ActionParameter.js +1 -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/AppPrecondition.d.ts +13 -0
- package/dist/serialization/resources/commons/types/AppPrecondition.js +46 -0
- package/dist/serialization/resources/commons/types/BotActionFormResponse.d.ts +2 -0
- package/dist/serialization/resources/commons/types/BotActionFormResponse.js +2 -0
- package/dist/serialization/resources/commons/types/ConversationAnalysis.d.ts +1 -0
- package/dist/serialization/resources/commons/types/ConversationAnalysis.js +1 -0
- package/dist/serialization/resources/commons/types/ConversationPrecondition.d.ts +5 -1
- package/dist/serialization/resources/commons/types/ConversationPrecondition.js +2 -0
- package/dist/serialization/resources/commons/types/ConversationSummary.d.ts +9 -0
- package/dist/serialization/resources/commons/types/ConversationSummary.js +9 -0
- package/dist/serialization/resources/commons/types/EntityType.d.ts +1 -1
- package/dist/serialization/resources/commons/types/EntityType.js +2 -0
- package/dist/serialization/resources/commons/types/InboxItemDuplicateDocuments.d.ts +1 -0
- package/dist/serialization/resources/commons/types/InboxItemDuplicateDocuments.js +1 -0
- package/dist/serialization/resources/commons/types/UserMessage.d.ts +1 -0
- package/dist/serialization/resources/commons/types/UserMessage.js +1 -0
- package/dist/serialization/resources/commons/types/index.d.ts +1 -3
- package/dist/serialization/resources/commons/types/index.js +1 -3
- package/dist/serialization/resources/conversation/types/AskRequest.d.ts +1 -0
- package/dist/serialization/resources/conversation/types/AskRequest.js +1 -0
- package/dist/serialization/resources/events/index.d.ts +1 -0
- package/dist/serialization/resources/events/index.js +17 -0
- package/dist/serialization/resources/events/types/BrowserInfo.d.ts +16 -0
- package/dist/serialization/resources/events/types/BrowserInfo.js +47 -0
- package/dist/serialization/resources/events/types/BrowserType.d.ts +10 -0
- package/dist/serialization/resources/events/types/BrowserType.js +41 -0
- package/dist/serialization/resources/events/types/ContextInfo.d.ts +12 -0
- package/dist/serialization/resources/events/types/ContextInfo.js +43 -0
- package/dist/serialization/resources/events/types/DeviceInfo.d.ts +17 -0
- package/dist/serialization/resources/events/types/DeviceInfo.js +48 -0
- package/dist/serialization/resources/events/types/DeviceType.d.ts +10 -0
- package/dist/serialization/resources/events/types/DeviceType.js +41 -0
- package/dist/serialization/resources/events/types/EventBaseNoId.d.ts +20 -0
- package/dist/serialization/resources/events/types/EventBaseNoId.js +51 -0
- package/dist/serialization/resources/events/types/EventField.d.ts +10 -0
- package/dist/serialization/resources/events/types/EventField.js +41 -0
- package/dist/serialization/resources/events/types/EventFilter.d.ts +22 -0
- package/dist/serialization/resources/events/types/EventFilter.js +53 -0
- package/dist/serialization/resources/events/types/EventResponse.d.ts +18 -0
- package/dist/serialization/resources/events/types/EventResponse.js +51 -0
- package/dist/serialization/resources/events/types/EventType.d.ts +10 -0
- package/dist/serialization/resources/events/types/EventType.js +41 -0
- package/dist/serialization/resources/events/types/EventsSearchRequest.d.ts +16 -0
- package/dist/serialization/resources/events/types/EventsSearchRequest.js +49 -0
- package/dist/serialization/resources/events/types/EventsSearchResponse.d.ts +14 -0
- package/dist/serialization/resources/events/types/EventsSearchResponse.js +47 -0
- package/dist/serialization/resources/events/types/FeedbackInfo.d.ts +15 -0
- package/dist/serialization/resources/events/types/FeedbackInfo.js +46 -0
- package/dist/serialization/resources/events/types/GeoInfo.d.ts +17 -0
- package/dist/serialization/resources/events/types/GeoInfo.js +48 -0
- package/dist/serialization/resources/events/types/IpInfo.d.ts +12 -0
- package/dist/serialization/resources/events/types/IpInfo.js +43 -0
- package/dist/serialization/resources/events/types/LanguageInfo.d.ts +12 -0
- package/dist/serialization/resources/events/types/LanguageInfo.js +43 -0
- package/dist/serialization/resources/events/types/NovelSystemEventNoId.d.ts +14 -0
- package/dist/serialization/resources/events/types/NovelSystemEventNoId.js +47 -0
- package/dist/serialization/resources/events/types/OsInfo.d.ts +15 -0
- package/dist/serialization/resources/events/types/OsInfo.js +46 -0
- package/dist/serialization/resources/events/types/OsType.d.ts +10 -0
- package/dist/serialization/resources/events/types/OsType.js +48 -0
- package/dist/serialization/resources/events/types/PageInfo.d.ts +16 -0
- package/dist/serialization/resources/events/types/PageInfo.js +47 -0
- package/dist/serialization/resources/events/types/SessionInfo.d.ts +15 -0
- package/dist/serialization/resources/events/types/SessionInfo.js +46 -0
- package/dist/serialization/resources/events/types/SourceInfo.d.ts +23 -0
- package/dist/serialization/resources/events/types/SourceInfo.js +54 -0
- package/dist/serialization/resources/events/types/SourceType.d.ts +10 -0
- package/dist/serialization/resources/events/types/SourceType.js +41 -0
- package/dist/serialization/resources/events/types/SurveyInfo.d.ts +13 -0
- package/dist/serialization/resources/events/types/SurveyInfo.js +44 -0
- package/dist/serialization/resources/events/types/SystemEvent.d.ts +14 -0
- package/dist/serialization/resources/events/types/SystemEvent.js +47 -0
- package/dist/serialization/resources/events/types/SystemEventName.d.ts +10 -0
- package/dist/serialization/resources/events/types/SystemEventName.js +41 -0
- package/dist/serialization/resources/events/types/UserEvent.d.ts +22 -0
- package/dist/serialization/resources/events/types/UserEvent.js +55 -0
- package/dist/serialization/resources/events/types/UserEventName.d.ts +10 -0
- package/dist/serialization/resources/events/types/UserEventName.js +41 -0
- package/dist/serialization/resources/events/types/UserInfo.d.ts +13 -0
- package/dist/serialization/resources/events/types/UserInfo.js +44 -0
- package/dist/serialization/resources/events/types/index.d.ts +29 -0
- package/dist/serialization/resources/events/types/index.js +45 -0
- package/dist/serialization/resources/index.d.ts +6 -1
- package/dist/serialization/resources/index.js +7 -2
- package/dist/serialization/resources/knowledge/types/FinalizeKnowledgeBaseVersionRequest.d.ts +16 -0
- package/dist/serialization/resources/knowledge/types/FinalizeKnowledgeBaseVersionRequest.js +47 -0
- package/dist/serialization/resources/knowledge/types/KnowledgeBaseRequest.d.ts +1 -0
- package/dist/serialization/resources/knowledge/types/KnowledgeBaseRequest.js +1 -0
- package/dist/serialization/resources/knowledge/types/KnowledgeBaseResponse.d.ts +1 -0
- package/dist/serialization/resources/knowledge/types/KnowledgeBaseResponse.js +1 -0
- package/dist/serialization/resources/knowledge/types/KnowledgeBaseVersion.d.ts +5 -0
- package/dist/serialization/resources/knowledge/types/KnowledgeBaseVersion.js +5 -0
- package/dist/serialization/resources/knowledge/types/KnowledgeBaseVersionFinalizeStatus.d.ts +10 -0
- package/dist/serialization/resources/knowledge/types/KnowledgeBaseVersionFinalizeStatus.js +41 -0
- package/dist/serialization/resources/knowledge/types/KnowledgeBaseVersionStatus.d.ts +10 -0
- package/dist/serialization/resources/knowledge/types/KnowledgeBaseVersionStatus.js +41 -0
- package/dist/serialization/resources/knowledge/types/KnowledgeDocumentRequest.d.ts +3 -0
- package/dist/serialization/resources/knowledge/types/KnowledgeDocumentRequest.js +3 -0
- package/dist/serialization/resources/knowledge/types/KnowledgeDocumentResponse.d.ts +1 -0
- package/dist/serialization/resources/knowledge/types/KnowledgeDocumentResponse.js +1 -0
- package/dist/serialization/resources/knowledge/types/index.d.ts +3 -0
- package/dist/serialization/resources/knowledge/types/index.js +3 -0
- package/dist/serialization/resources/realtime/types/AudioFormat.d.ts +10 -0
- package/dist/serialization/resources/realtime/types/AudioFormat.js +41 -0
- package/dist/serialization/resources/realtime/types/ControlEvent.d.ts +4 -1
- package/dist/serialization/resources/realtime/types/ControlEvent.js +7 -2
- package/dist/serialization/resources/realtime/types/MessageBase.d.ts +12 -0
- package/dist/serialization/resources/realtime/types/MessageBase.js +43 -0
- package/dist/serialization/resources/realtime/types/SubscribeEvent.d.ts +4 -1
- package/dist/serialization/resources/realtime/types/SubscribeEvent.js +1 -0
- package/dist/serialization/resources/realtime/types/index.d.ts +3 -1
- package/dist/serialization/resources/realtime/types/index.js +3 -1
- package/dist/serialization/resources/triggers/types/EventTriggerRequest.d.ts +1 -1
- package/dist/serialization/resources/triggers/types/EventTriggerRequest.js +1 -1
- package/dist/serialization/resources/{commons → triggers}/types/EventTriggerResponse.d.ts +2 -1
- package/{serialization/resources/commons → dist/serialization/resources/triggers}/types/EventTriggerResponse.js +2 -1
- package/dist/serialization/resources/triggers/types/EventTriggersSearchRequest.d.ts +14 -0
- package/dist/serialization/resources/triggers/types/EventTriggersSearchRequest.js +47 -0
- package/dist/serialization/resources/triggers/types/EventTriggersSearchResponse.d.ts +14 -0
- package/dist/serialization/resources/triggers/types/EventTriggersSearchResponse.js +47 -0
- package/dist/serialization/resources/triggers/types/TriggerField.d.ts +10 -0
- package/dist/serialization/resources/triggers/types/TriggerField.js +41 -0
- package/dist/serialization/resources/triggers/types/TriggerPartialUpdate.d.ts +12 -0
- package/dist/serialization/resources/triggers/types/TriggerPartialUpdate.js +43 -0
- package/dist/serialization/resources/triggers/types/index.d.ts +7 -0
- package/dist/serialization/resources/triggers/types/index.js +7 -0
- package/dist/version.d.ts +1 -1
- package/dist/version.js +1 -1
- package/package.json +1 -1
- package/reference.md +692 -10
- package/serialization/resources/agents/client/index.d.ts +1 -0
- package/serialization/resources/agents/client/index.js +37 -0
- package/serialization/resources/agents/client/list.d.ts +11 -0
- package/serialization/resources/agents/client/list.js +42 -0
- package/serialization/resources/agents/index.d.ts +2 -0
- package/serialization/resources/agents/index.js +18 -0
- package/serialization/resources/agents/types/Agent.d.ts +17 -0
- package/serialization/resources/agents/types/Agent.js +48 -0
- package/serialization/resources/agents/types/AgentEnvironment.d.ts +10 -0
- package/serialization/resources/agents/types/AgentEnvironment.js +41 -0
- package/serialization/resources/agents/types/AgentField.d.ts +10 -0
- package/serialization/resources/agents/types/AgentField.js +41 -0
- package/serialization/resources/agents/types/AgentFilter.d.ts +13 -0
- package/serialization/resources/agents/types/AgentFilter.js +44 -0
- package/serialization/resources/agents/types/AgentsSearchRequest.d.ts +16 -0
- package/serialization/resources/agents/types/AgentsSearchRequest.js +49 -0
- package/serialization/resources/agents/types/AgentsSearchResponse.d.ts +14 -0
- package/serialization/resources/agents/types/AgentsSearchResponse.js +47 -0
- package/serialization/resources/agents/types/index.d.ts +6 -0
- package/serialization/resources/agents/types/index.js +22 -0
- package/serialization/resources/appSettings/index.d.ts +1 -0
- package/serialization/resources/appSettings/index.js +1 -0
- package/serialization/resources/appSettings/types/AppSettings.d.ts +14 -0
- package/serialization/resources/appSettings/types/AppSettings.js +45 -0
- package/serialization/resources/appSettings/types/SearchAppSettingsResponse.d.ts +13 -0
- package/serialization/resources/appSettings/types/SearchAppSettingsResponse.js +44 -0
- package/serialization/resources/appSettings/types/index.d.ts +2 -0
- package/serialization/resources/appSettings/types/index.js +18 -0
- package/serialization/resources/commons/types/ActionParameter.d.ts +1 -0
- package/serialization/resources/commons/types/ActionParameter.js +1 -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/AppPrecondition.d.ts +13 -0
- package/serialization/resources/commons/types/AppPrecondition.js +46 -0
- package/serialization/resources/commons/types/BotActionFormResponse.d.ts +2 -0
- package/serialization/resources/commons/types/BotActionFormResponse.js +2 -0
- package/serialization/resources/commons/types/ConversationAnalysis.d.ts +1 -0
- package/serialization/resources/commons/types/ConversationAnalysis.js +1 -0
- package/serialization/resources/commons/types/ConversationPrecondition.d.ts +5 -1
- package/serialization/resources/commons/types/ConversationPrecondition.js +2 -0
- package/serialization/resources/commons/types/ConversationSummary.d.ts +9 -0
- package/serialization/resources/commons/types/ConversationSummary.js +9 -0
- package/serialization/resources/commons/types/EntityType.d.ts +1 -1
- package/serialization/resources/commons/types/EntityType.js +2 -0
- package/serialization/resources/commons/types/InboxItemDuplicateDocuments.d.ts +1 -0
- package/serialization/resources/commons/types/InboxItemDuplicateDocuments.js +1 -0
- package/serialization/resources/commons/types/UserMessage.d.ts +1 -0
- package/serialization/resources/commons/types/UserMessage.js +1 -0
- package/serialization/resources/commons/types/index.d.ts +1 -3
- package/serialization/resources/commons/types/index.js +1 -3
- package/serialization/resources/conversation/types/AskRequest.d.ts +1 -0
- package/serialization/resources/conversation/types/AskRequest.js +1 -0
- package/serialization/resources/events/index.d.ts +1 -0
- package/serialization/resources/events/index.js +17 -0
- package/serialization/resources/events/types/BrowserInfo.d.ts +16 -0
- package/serialization/resources/events/types/BrowserInfo.js +47 -0
- package/serialization/resources/events/types/BrowserType.d.ts +10 -0
- package/serialization/resources/events/types/BrowserType.js +41 -0
- package/serialization/resources/events/types/ContextInfo.d.ts +12 -0
- package/serialization/resources/events/types/ContextInfo.js +43 -0
- package/serialization/resources/events/types/DeviceInfo.d.ts +17 -0
- package/serialization/resources/events/types/DeviceInfo.js +48 -0
- package/serialization/resources/events/types/DeviceType.d.ts +10 -0
- package/serialization/resources/events/types/DeviceType.js +41 -0
- package/serialization/resources/events/types/EventBaseNoId.d.ts +20 -0
- package/serialization/resources/events/types/EventBaseNoId.js +51 -0
- package/serialization/resources/events/types/EventField.d.ts +10 -0
- package/serialization/resources/events/types/EventField.js +41 -0
- package/serialization/resources/events/types/EventFilter.d.ts +22 -0
- package/serialization/resources/events/types/EventFilter.js +53 -0
- package/serialization/resources/events/types/EventResponse.d.ts +18 -0
- package/serialization/resources/events/types/EventResponse.js +51 -0
- package/serialization/resources/events/types/EventType.d.ts +10 -0
- package/serialization/resources/events/types/EventType.js +41 -0
- package/serialization/resources/events/types/EventsSearchRequest.d.ts +16 -0
- package/serialization/resources/events/types/EventsSearchRequest.js +49 -0
- package/serialization/resources/events/types/EventsSearchResponse.d.ts +14 -0
- package/serialization/resources/events/types/EventsSearchResponse.js +47 -0
- package/serialization/resources/events/types/FeedbackInfo.d.ts +15 -0
- package/serialization/resources/events/types/FeedbackInfo.js +46 -0
- package/serialization/resources/events/types/GeoInfo.d.ts +17 -0
- package/serialization/resources/events/types/GeoInfo.js +48 -0
- package/serialization/resources/events/types/IpInfo.d.ts +12 -0
- package/serialization/resources/events/types/IpInfo.js +43 -0
- package/serialization/resources/events/types/LanguageInfo.d.ts +12 -0
- package/serialization/resources/events/types/LanguageInfo.js +43 -0
- package/serialization/resources/events/types/NovelSystemEventNoId.d.ts +14 -0
- package/serialization/resources/events/types/NovelSystemEventNoId.js +47 -0
- package/serialization/resources/events/types/OsInfo.d.ts +15 -0
- package/serialization/resources/events/types/OsInfo.js +46 -0
- package/serialization/resources/events/types/OsType.d.ts +10 -0
- package/serialization/resources/events/types/OsType.js +48 -0
- package/serialization/resources/events/types/PageInfo.d.ts +16 -0
- package/serialization/resources/events/types/PageInfo.js +47 -0
- package/serialization/resources/events/types/SessionInfo.d.ts +15 -0
- package/serialization/resources/events/types/SessionInfo.js +46 -0
- package/serialization/resources/events/types/SourceInfo.d.ts +23 -0
- package/serialization/resources/events/types/SourceInfo.js +54 -0
- package/serialization/resources/events/types/SourceType.d.ts +10 -0
- package/serialization/resources/events/types/SourceType.js +41 -0
- package/serialization/resources/events/types/SurveyInfo.d.ts +13 -0
- package/serialization/resources/events/types/SurveyInfo.js +44 -0
- package/serialization/resources/events/types/SystemEvent.d.ts +14 -0
- package/serialization/resources/events/types/SystemEvent.js +47 -0
- package/serialization/resources/events/types/SystemEventName.d.ts +10 -0
- package/serialization/resources/events/types/SystemEventName.js +41 -0
- package/serialization/resources/events/types/UserEvent.d.ts +22 -0
- package/serialization/resources/events/types/UserEvent.js +55 -0
- package/serialization/resources/events/types/UserEventName.d.ts +10 -0
- package/serialization/resources/events/types/UserEventName.js +41 -0
- package/serialization/resources/events/types/UserInfo.d.ts +13 -0
- package/serialization/resources/events/types/UserInfo.js +44 -0
- package/serialization/resources/events/types/index.d.ts +29 -0
- package/serialization/resources/events/types/index.js +45 -0
- package/serialization/resources/index.d.ts +6 -1
- package/serialization/resources/index.js +7 -2
- package/serialization/resources/knowledge/types/FinalizeKnowledgeBaseVersionRequest.d.ts +16 -0
- package/serialization/resources/knowledge/types/FinalizeKnowledgeBaseVersionRequest.js +47 -0
- package/serialization/resources/knowledge/types/KnowledgeBaseRequest.d.ts +1 -0
- package/serialization/resources/knowledge/types/KnowledgeBaseRequest.js +1 -0
- package/serialization/resources/knowledge/types/KnowledgeBaseResponse.d.ts +1 -0
- package/serialization/resources/knowledge/types/KnowledgeBaseResponse.js +1 -0
- package/serialization/resources/knowledge/types/KnowledgeBaseVersion.d.ts +5 -0
- package/serialization/resources/knowledge/types/KnowledgeBaseVersion.js +5 -0
- package/serialization/resources/knowledge/types/KnowledgeBaseVersionFinalizeStatus.d.ts +10 -0
- package/serialization/resources/knowledge/types/KnowledgeBaseVersionFinalizeStatus.js +41 -0
- package/serialization/resources/knowledge/types/KnowledgeBaseVersionStatus.d.ts +10 -0
- package/serialization/resources/knowledge/types/KnowledgeBaseVersionStatus.js +41 -0
- package/serialization/resources/knowledge/types/KnowledgeDocumentRequest.d.ts +3 -0
- package/serialization/resources/knowledge/types/KnowledgeDocumentRequest.js +3 -0
- package/serialization/resources/knowledge/types/KnowledgeDocumentResponse.d.ts +1 -0
- package/serialization/resources/knowledge/types/KnowledgeDocumentResponse.js +1 -0
- package/serialization/resources/knowledge/types/index.d.ts +3 -0
- package/serialization/resources/knowledge/types/index.js +3 -0
- package/serialization/resources/realtime/types/AudioFormat.d.ts +10 -0
- package/serialization/resources/realtime/types/AudioFormat.js +41 -0
- package/serialization/resources/realtime/types/ControlEvent.d.ts +4 -1
- package/serialization/resources/realtime/types/ControlEvent.js +7 -2
- package/serialization/resources/realtime/types/MessageBase.d.ts +12 -0
- package/serialization/resources/realtime/types/MessageBase.js +43 -0
- package/serialization/resources/realtime/types/SubscribeEvent.d.ts +4 -1
- package/serialization/resources/realtime/types/SubscribeEvent.js +1 -0
- package/serialization/resources/realtime/types/index.d.ts +3 -1
- package/serialization/resources/realtime/types/index.js +3 -1
- package/serialization/resources/triggers/types/EventTriggerRequest.d.ts +1 -1
- package/serialization/resources/triggers/types/EventTriggerRequest.js +1 -1
- package/serialization/resources/{commons → triggers}/types/EventTriggerResponse.d.ts +2 -1
- package/{dist/serialization/resources/commons → serialization/resources/triggers}/types/EventTriggerResponse.js +2 -1
- package/serialization/resources/triggers/types/EventTriggersSearchRequest.d.ts +14 -0
- package/serialization/resources/triggers/types/EventTriggersSearchRequest.js +47 -0
- package/serialization/resources/triggers/types/EventTriggersSearchResponse.d.ts +14 -0
- package/serialization/resources/triggers/types/EventTriggersSearchResponse.js +47 -0
- package/serialization/resources/triggers/types/TriggerField.d.ts +10 -0
- package/serialization/resources/triggers/types/TriggerField.js +41 -0
- package/serialization/resources/triggers/types/TriggerPartialUpdate.d.ts +12 -0
- package/serialization/resources/triggers/types/TriggerPartialUpdate.js +43 -0
- package/serialization/resources/triggers/types/index.d.ts +7 -0
- package/serialization/resources/triggers/types/index.js +7 -0
- package/version.d.ts +1 -1
- package/version.js +1 -1
- /package/api/resources/{commons/types/EventTriggerBase.js → agents/types/Agent.js} +0 -0
- /package/api/resources/{commons/types/EventTriggerResponse.js → agents/types/AgentFilter.js} +0 -0
- /package/{dist/api/resources/commons/types/EventTriggerBase.js → api/resources/agents/types/AgentsSearchRequest.js} +0 -0
- /package/{dist/api/resources/commons/types/EventTriggerResponse.js → api/resources/agents/types/AgentsSearchResponse.js} +0 -0
- /package/api/resources/{commons → triggers}/types/EventTriggerBase.d.ts +0 -0
- /package/api/resources/{commons → triggers}/types/EventTriggerType.d.ts +0 -0
- /package/api/resources/{commons → triggers}/types/EventTriggerType.js +0 -0
- /package/dist/api/resources/{commons → triggers}/types/EventTriggerBase.d.ts +0 -0
- /package/dist/api/resources/{commons → triggers}/types/EventTriggerType.d.ts +0 -0
- /package/dist/api/resources/{commons → triggers}/types/EventTriggerType.js +0 -0
- /package/dist/serialization/resources/{commons → triggers}/types/EventTriggerBase.d.ts +0 -0
- /package/dist/serialization/resources/{commons → triggers}/types/EventTriggerBase.js +0 -0
- /package/dist/serialization/resources/{commons → triggers}/types/EventTriggerType.d.ts +0 -0
- /package/dist/serialization/resources/{commons → triggers}/types/EventTriggerType.js +0 -0
- /package/serialization/resources/{commons → triggers}/types/EventTriggerBase.d.ts +0 -0
- /package/serialization/resources/{commons → triggers}/types/EventTriggerBase.js +0 -0
- /package/serialization/resources/{commons → triggers}/types/EventTriggerType.d.ts +0 -0
- /package/serialization/resources/{commons → triggers}/types/EventTriggerType.js +0 -0
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
14
|
+
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
|
+
};
|
|
16
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
+
__exportStar(require("./SearchAppSettingsResponse"), exports);
|
|
18
|
+
__exportStar(require("./AppSettings"), exports);
|
|
@@ -47,4 +47,5 @@ exports.ActionParameter = core.serialization.object({
|
|
|
47
47
|
required: core.serialization.boolean(),
|
|
48
48
|
type: ActionParameterType_1.ActionParameterType.optional(),
|
|
49
49
|
enumOptions: core.serialization.list(ActionEnumOption_1.ActionEnumOption).optional(),
|
|
50
|
+
schema: core.serialization.string().optional(),
|
|
50
51
|
});
|
|
@@ -6,5 +6,5 @@ import * as MavenAGI from "../../../../api/index";
|
|
|
6
6
|
import * as core from "../../../../core";
|
|
7
7
|
export declare const ActionParameterType: core.serialization.Schema<serializers.ActionParameterType.Raw, MavenAGI.ActionParameterType>;
|
|
8
8
|
export declare namespace ActionParameterType {
|
|
9
|
-
type Raw = "STRING" | "BOOLEAN" | "NUMBER";
|
|
9
|
+
type Raw = "STRING" | "BOOLEAN" | "NUMBER" | "SCHEMA";
|
|
10
10
|
}
|
|
@@ -38,4 +38,4 @@ var __importStar = (this && this.__importStar) || (function () {
|
|
|
38
38
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
39
39
|
exports.ActionParameterType = void 0;
|
|
40
40
|
const core = __importStar(require("../../../../core"));
|
|
41
|
-
exports.ActionParameterType = core.serialization.enum_(["STRING", "BOOLEAN", "NUMBER"]);
|
|
41
|
+
exports.ActionParameterType = core.serialization.enum_(["STRING", "BOOLEAN", "NUMBER", "SCHEMA"]);
|
|
@@ -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 { PreconditionBase } from "./PreconditionBase";
|
|
8
|
+
export declare const AppPrecondition: core.serialization.ObjectSchema<serializers.AppPrecondition.Raw, MavenAGI.AppPrecondition>;
|
|
9
|
+
export declare namespace AppPrecondition {
|
|
10
|
+
interface Raw extends PreconditionBase.Raw {
|
|
11
|
+
appId: string;
|
|
12
|
+
}
|
|
13
|
+
}
|
|
@@ -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.AppPrecondition = void 0;
|
|
40
|
+
const core = __importStar(require("../../../../core"));
|
|
41
|
+
const PreconditionBase_1 = require("./PreconditionBase");
|
|
42
|
+
exports.AppPrecondition = core.serialization
|
|
43
|
+
.object({
|
|
44
|
+
appId: core.serialization.string(),
|
|
45
|
+
})
|
|
46
|
+
.extend(PreconditionBase_1.PreconditionBase);
|
|
@@ -4,11 +4,13 @@
|
|
|
4
4
|
import * as serializers from "../../../index";
|
|
5
5
|
import * as MavenAGI from "../../../../api/index";
|
|
6
6
|
import * as core from "../../../../core";
|
|
7
|
+
import { EntityIdWithoutAgent } from "./EntityIdWithoutAgent";
|
|
7
8
|
import { ActionFormField } from "./ActionFormField";
|
|
8
9
|
export declare const BotActionFormResponse: core.serialization.ObjectSchema<serializers.BotActionFormResponse.Raw, MavenAGI.BotActionFormResponse>;
|
|
9
10
|
export declare namespace BotActionFormResponse {
|
|
10
11
|
interface Raw {
|
|
11
12
|
id: string;
|
|
13
|
+
actionId: EntityIdWithoutAgent.Raw;
|
|
12
14
|
formLabel: string;
|
|
13
15
|
fields: ActionFormField.Raw[];
|
|
14
16
|
submitLabel: string;
|
|
@@ -38,9 +38,11 @@ var __importStar = (this && this.__importStar) || (function () {
|
|
|
38
38
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
39
39
|
exports.BotActionFormResponse = void 0;
|
|
40
40
|
const core = __importStar(require("../../../../core"));
|
|
41
|
+
const EntityIdWithoutAgent_1 = require("./EntityIdWithoutAgent");
|
|
41
42
|
const ActionFormField_1 = require("./ActionFormField");
|
|
42
43
|
exports.BotActionFormResponse = core.serialization.object({
|
|
43
44
|
id: core.serialization.string(),
|
|
45
|
+
actionId: EntityIdWithoutAgent_1.EntityIdWithoutAgent,
|
|
44
46
|
formLabel: core.serialization.string(),
|
|
45
47
|
fields: core.serialization.list(ActionFormField_1.ActionFormField),
|
|
46
48
|
submitLabel: core.serialization.string(),
|
|
@@ -51,4 +51,5 @@ exports.ConversationAnalysis = core.serialization.object({
|
|
|
51
51
|
qualityReason: QualityReason_1.QualityReason.optional(),
|
|
52
52
|
resolvedByMaven: core.serialization.boolean().optional(),
|
|
53
53
|
primaryLanguage: core.serialization.string().optional(),
|
|
54
|
+
predictedNps: core.serialization.number().optional(),
|
|
54
55
|
});
|
|
@@ -8,9 +8,10 @@ import { TagsPrecondition } from "./TagsPrecondition";
|
|
|
8
8
|
import { MetadataPrecondition } from "./MetadataPrecondition";
|
|
9
9
|
import { ConversationExecutedActionPrecondition } from "./ConversationExecutedActionPrecondition";
|
|
10
10
|
import { ResponseConfigPrecondition } from "./ResponseConfigPrecondition";
|
|
11
|
+
import { AppPrecondition } from "./AppPrecondition";
|
|
11
12
|
export declare const ConversationPrecondition: core.serialization.Schema<serializers.ConversationPrecondition.Raw, MavenAGI.ConversationPrecondition>;
|
|
12
13
|
export declare namespace ConversationPrecondition {
|
|
13
|
-
type Raw = ConversationPrecondition.Tags | ConversationPrecondition.Metadata | ConversationPrecondition.ActionExecuted | ConversationPrecondition.ResponseConfig;
|
|
14
|
+
type Raw = ConversationPrecondition.Tags | ConversationPrecondition.Metadata | ConversationPrecondition.ActionExecuted | ConversationPrecondition.ResponseConfig | ConversationPrecondition.App;
|
|
14
15
|
interface Tags extends TagsPrecondition.Raw {
|
|
15
16
|
conversationPreconditionType: "tags";
|
|
16
17
|
}
|
|
@@ -23,4 +24,7 @@ export declare namespace ConversationPrecondition {
|
|
|
23
24
|
interface ResponseConfig extends ResponseConfigPrecondition.Raw {
|
|
24
25
|
conversationPreconditionType: "responseConfig";
|
|
25
26
|
}
|
|
27
|
+
interface App extends AppPrecondition.Raw {
|
|
28
|
+
conversationPreconditionType: "app";
|
|
29
|
+
}
|
|
26
30
|
}
|
|
@@ -42,12 +42,14 @@ const TagsPrecondition_1 = require("./TagsPrecondition");
|
|
|
42
42
|
const MetadataPrecondition_1 = require("./MetadataPrecondition");
|
|
43
43
|
const ConversationExecutedActionPrecondition_1 = require("./ConversationExecutedActionPrecondition");
|
|
44
44
|
const ResponseConfigPrecondition_1 = require("./ResponseConfigPrecondition");
|
|
45
|
+
const AppPrecondition_1 = require("./AppPrecondition");
|
|
45
46
|
exports.ConversationPrecondition = core.serialization
|
|
46
47
|
.union("conversationPreconditionType", {
|
|
47
48
|
tags: TagsPrecondition_1.TagsPrecondition,
|
|
48
49
|
metadata: MetadataPrecondition_1.MetadataPrecondition,
|
|
49
50
|
actionExecuted: ConversationExecutedActionPrecondition_1.ConversationExecutedActionPrecondition,
|
|
50
51
|
responseConfig: ResponseConfigPrecondition_1.ResponseConfigPrecondition,
|
|
52
|
+
app: AppPrecondition_1.AppPrecondition,
|
|
51
53
|
})
|
|
52
54
|
.transform({
|
|
53
55
|
transform: (value) => value,
|
|
@@ -10,5 +10,14 @@ export declare namespace ConversationSummary {
|
|
|
10
10
|
interface Raw {
|
|
11
11
|
actionIds: EntityIdWithoutAgent.Raw[];
|
|
12
12
|
incompleteActionIds: EntityIdWithoutAgent.Raw[];
|
|
13
|
+
insertCount: number;
|
|
14
|
+
thumbsUpCount: number;
|
|
15
|
+
thumbsDownCount: number;
|
|
16
|
+
userMessageCount: number;
|
|
17
|
+
handleTime?: number | null;
|
|
18
|
+
humanAgentResponseDelay?: number | null;
|
|
19
|
+
humanAgents: string[];
|
|
20
|
+
humanAgentsWithInserts: string[];
|
|
21
|
+
users: string[];
|
|
13
22
|
}
|
|
14
23
|
}
|
|
@@ -42,4 +42,13 @@ const EntityIdWithoutAgent_1 = require("./EntityIdWithoutAgent");
|
|
|
42
42
|
exports.ConversationSummary = core.serialization.object({
|
|
43
43
|
actionIds: core.serialization.list(EntityIdWithoutAgent_1.EntityIdWithoutAgent),
|
|
44
44
|
incompleteActionIds: core.serialization.list(EntityIdWithoutAgent_1.EntityIdWithoutAgent),
|
|
45
|
+
insertCount: core.serialization.number(),
|
|
46
|
+
thumbsUpCount: core.serialization.number(),
|
|
47
|
+
thumbsDownCount: core.serialization.number(),
|
|
48
|
+
userMessageCount: core.serialization.number(),
|
|
49
|
+
handleTime: core.serialization.number().optional(),
|
|
50
|
+
humanAgentResponseDelay: core.serialization.number().optional(),
|
|
51
|
+
humanAgents: core.serialization.list(core.serialization.string()),
|
|
52
|
+
humanAgentsWithInserts: core.serialization.list(core.serialization.string()),
|
|
53
|
+
users: core.serialization.list(core.serialization.string()),
|
|
45
54
|
});
|
|
@@ -6,5 +6,5 @@ import * as MavenAGI from "../../../../api/index";
|
|
|
6
6
|
import * as core from "../../../../core";
|
|
7
7
|
export declare const EntityType: core.serialization.Schema<serializers.EntityType.Raw, MavenAGI.EntityType>;
|
|
8
8
|
export declare namespace EntityType {
|
|
9
|
-
type Raw = "CONVERSATION" | "CONVERSATION_MESSAGE" | "KNOWLEDGE_BASE" | "KNOWLEDGE_DOCUMENT" | "ACTION" | "USER" | "EVENT" | "EVENT_TRIGGER" | "USER_PROFILE" | "FEEDBACK" | "INBOX_ITEM" | "INBOX_ITEM_FIX";
|
|
9
|
+
type Raw = "AGENT" | "CONVERSATION" | "CONVERSATION_MESSAGE" | "KNOWLEDGE_BASE" | "KNOWLEDGE_BASE_VERSION" | "KNOWLEDGE_DOCUMENT" | "ACTION" | "USER" | "EVENT" | "EVENT_TRIGGER" | "USER_PROFILE" | "FEEDBACK" | "INBOX_ITEM" | "INBOX_ITEM_FIX";
|
|
10
10
|
}
|
|
@@ -39,9 +39,11 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
39
39
|
exports.EntityType = void 0;
|
|
40
40
|
const core = __importStar(require("../../../../core"));
|
|
41
41
|
exports.EntityType = core.serialization.enum_([
|
|
42
|
+
"AGENT",
|
|
42
43
|
"CONVERSATION",
|
|
43
44
|
"CONVERSATION_MESSAGE",
|
|
44
45
|
"KNOWLEDGE_BASE",
|
|
46
|
+
"KNOWLEDGE_BASE_VERSION",
|
|
45
47
|
"KNOWLEDGE_DOCUMENT",
|
|
46
48
|
"ACTION",
|
|
47
49
|
"USER",
|
|
@@ -12,6 +12,7 @@ export declare namespace InboxItemDuplicateDocuments {
|
|
|
12
12
|
interface Raw extends InboxItemBase.Raw {
|
|
13
13
|
recommendedFixes: InboxItemFixDeactivateDocument.Raw[];
|
|
14
14
|
otherFixes: InboxItemFixDeactivateDocument.Raw[];
|
|
15
|
+
sourceDocument?: DocumentInformation.Raw | null;
|
|
15
16
|
documents: DocumentInformation.Raw[];
|
|
16
17
|
}
|
|
17
18
|
}
|
|
@@ -45,6 +45,7 @@ exports.InboxItemDuplicateDocuments = core.serialization
|
|
|
45
45
|
.object({
|
|
46
46
|
recommendedFixes: core.serialization.list(InboxItemFixDeactivateDocument_1.InboxItemFixDeactivateDocument),
|
|
47
47
|
otherFixes: core.serialization.list(InboxItemFixDeactivateDocument_1.InboxItemFixDeactivateDocument),
|
|
48
|
+
sourceDocument: DocumentInformation_1.DocumentInformation.optional(),
|
|
48
49
|
documents: core.serialization.list(DocumentInformation_1.DocumentInformation),
|
|
49
50
|
})
|
|
50
51
|
.extend(InboxItemBase_1.InboxItemBase);
|
|
@@ -46,5 +46,6 @@ exports.UserMessage = core.serialization
|
|
|
46
46
|
conversationMessageId: EntityId_1.EntityId,
|
|
47
47
|
language: core.serialization.string().optional(),
|
|
48
48
|
attachments: core.serialization.list(UserMessageAttachment_1.UserMessageAttachment),
|
|
49
|
+
userDisplayName: core.serialization.string().optional(),
|
|
49
50
|
})
|
|
50
51
|
.extend(UserMessageBase_1.UserMessageBase);
|
|
@@ -14,9 +14,6 @@ export * from "./UserData";
|
|
|
14
14
|
export * from "./VisibilityType";
|
|
15
15
|
export * from "./AppUserRequest";
|
|
16
16
|
export * from "./AppUserResponse";
|
|
17
|
-
export * from "./EventTriggerBase";
|
|
18
|
-
export * from "./EventTriggerResponse";
|
|
19
|
-
export * from "./EventTriggerType";
|
|
20
17
|
export * from "./Page";
|
|
21
18
|
export * from "./BasePaginatedRequest";
|
|
22
19
|
export * from "./ActionParameterType";
|
|
@@ -59,6 +56,7 @@ export * from "./PreconditionBase";
|
|
|
59
56
|
export * from "./MetadataPrecondition";
|
|
60
57
|
export * from "./ConversationPrecondition";
|
|
61
58
|
export * from "./ResponseConfigPrecondition";
|
|
59
|
+
export * from "./AppPrecondition";
|
|
62
60
|
export * from "./PreconditionGroupOperator";
|
|
63
61
|
export * from "./PreconditionGroup";
|
|
64
62
|
export * from "./TagsPrecondition";
|
|
@@ -30,9 +30,6 @@ __exportStar(require("./UserData"), exports);
|
|
|
30
30
|
__exportStar(require("./VisibilityType"), exports);
|
|
31
31
|
__exportStar(require("./AppUserRequest"), exports);
|
|
32
32
|
__exportStar(require("./AppUserResponse"), exports);
|
|
33
|
-
__exportStar(require("./EventTriggerBase"), exports);
|
|
34
|
-
__exportStar(require("./EventTriggerResponse"), exports);
|
|
35
|
-
__exportStar(require("./EventTriggerType"), exports);
|
|
36
33
|
__exportStar(require("./Page"), exports);
|
|
37
34
|
__exportStar(require("./BasePaginatedRequest"), exports);
|
|
38
35
|
__exportStar(require("./ActionParameterType"), exports);
|
|
@@ -75,6 +72,7 @@ __exportStar(require("./PreconditionBase"), exports);
|
|
|
75
72
|
__exportStar(require("./MetadataPrecondition"), exports);
|
|
76
73
|
__exportStar(require("./ConversationPrecondition"), exports);
|
|
77
74
|
__exportStar(require("./ResponseConfigPrecondition"), exports);
|
|
75
|
+
__exportStar(require("./AppPrecondition"), exports);
|
|
78
76
|
__exportStar(require("./PreconditionGroupOperator"), exports);
|
|
79
77
|
__exportStar(require("./PreconditionGroup"), exports);
|
|
80
78
|
__exportStar(require("./TagsPrecondition"), exports);
|
|
@@ -46,4 +46,5 @@ exports.AskRequest = core.serialization.object({
|
|
|
46
46
|
text: core.serialization.string(),
|
|
47
47
|
attachments: core.serialization.list(Attachment_1.Attachment).optional(),
|
|
48
48
|
transientData: core.serialization.record(core.serialization.string(), core.serialization.string()).optional(),
|
|
49
|
+
timezone: core.serialization.string().optional(),
|
|
49
50
|
});
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "./types";
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
14
|
+
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
|
+
};
|
|
16
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
+
__exportStar(require("./types"), exports);
|
|
@@ -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 { BrowserType } from "./BrowserType";
|
|
8
|
+
export declare const BrowserInfo: core.serialization.ObjectSchema<serializers.BrowserInfo.Raw, MavenAGI.BrowserInfo>;
|
|
9
|
+
export declare namespace BrowserInfo {
|
|
10
|
+
interface Raw {
|
|
11
|
+
type: BrowserType.Raw;
|
|
12
|
+
name?: string | null;
|
|
13
|
+
version?: string | null;
|
|
14
|
+
userAgent?: string | null;
|
|
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.BrowserInfo = void 0;
|
|
40
|
+
const core = __importStar(require("../../../../core"));
|
|
41
|
+
const BrowserType_1 = require("./BrowserType");
|
|
42
|
+
exports.BrowserInfo = core.serialization.object({
|
|
43
|
+
type: BrowserType_1.BrowserType,
|
|
44
|
+
name: core.serialization.string().optional(),
|
|
45
|
+
version: core.serialization.string().optional(),
|
|
46
|
+
userAgent: core.serialization.string().optional(),
|
|
47
|
+
});
|
|
@@ -0,0 +1,10 @@
|
|
|
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 BrowserType: core.serialization.Schema<serializers.BrowserType.Raw, MavenAGI.BrowserType>;
|
|
8
|
+
export declare namespace BrowserType {
|
|
9
|
+
type Raw = "CHROME" | "FIREFOX" | "SAFARI" | "OPERA" | "EDGE" | "OTHER";
|
|
10
|
+
}
|
|
@@ -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.BrowserType = void 0;
|
|
40
|
+
const core = __importStar(require("../../../../core"));
|
|
41
|
+
exports.BrowserType = core.serialization.enum_(["CHROME", "FIREFOX", "SAFARI", "OPERA", "EDGE", "OTHER"]);
|
|
@@ -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
|
+
export declare const ContextInfo: core.serialization.ObjectSchema<serializers.ContextInfo.Raw, MavenAGI.ContextInfo>;
|
|
8
|
+
export declare namespace ContextInfo {
|
|
9
|
+
interface Raw {
|
|
10
|
+
additionalData: Record<string, string>;
|
|
11
|
+
}
|
|
12
|
+
}
|
|
@@ -0,0 +1,43 @@
|
|
|
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.ContextInfo = void 0;
|
|
40
|
+
const core = __importStar(require("../../../../core"));
|
|
41
|
+
exports.ContextInfo = core.serialization.object({
|
|
42
|
+
additionalData: core.serialization.record(core.serialization.string(), core.serialization.string()),
|
|
43
|
+
});
|
|
@@ -0,0 +1,17 @@
|
|
|
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 { DeviceType } from "./DeviceType";
|
|
8
|
+
import { OsInfo } from "./OsInfo";
|
|
9
|
+
export declare const DeviceInfo: core.serialization.ObjectSchema<serializers.DeviceInfo.Raw, MavenAGI.DeviceInfo>;
|
|
10
|
+
export declare namespace DeviceInfo {
|
|
11
|
+
interface Raw {
|
|
12
|
+
type: DeviceType.Raw;
|
|
13
|
+
name?: string | null;
|
|
14
|
+
version?: string | null;
|
|
15
|
+
osInfo?: OsInfo.Raw | null;
|
|
16
|
+
}
|
|
17
|
+
}
|
|
@@ -0,0 +1,48 @@
|
|
|
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.DeviceInfo = void 0;
|
|
40
|
+
const core = __importStar(require("../../../../core"));
|
|
41
|
+
const DeviceType_1 = require("./DeviceType");
|
|
42
|
+
const OsInfo_1 = require("./OsInfo");
|
|
43
|
+
exports.DeviceInfo = core.serialization.object({
|
|
44
|
+
type: DeviceType_1.DeviceType,
|
|
45
|
+
name: core.serialization.string().optional(),
|
|
46
|
+
version: core.serialization.string().optional(),
|
|
47
|
+
osInfo: OsInfo_1.OsInfo.optional(),
|
|
48
|
+
});
|
|
@@ -0,0 +1,10 @@
|
|
|
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 DeviceType: core.serialization.Schema<serializers.DeviceType.Raw, MavenAGI.DeviceType>;
|
|
8
|
+
export declare namespace DeviceType {
|
|
9
|
+
type Raw = "DESKTOP" | "MOBILE" | "TABLET" | "OTHER";
|
|
10
|
+
}
|