mavenagi 0.0.0-alpha.2 → 0.0.0-alpha.4
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 +15 -0
- package/README.md +63 -39
- package/api/resources/actions/client/Client.d.ts +123 -0
- package/api/resources/actions/client/Client.js +564 -0
- package/api/resources/actions/client/index.d.ts +1 -0
- package/api/resources/actions/client/index.js +1 -0
- package/api/resources/actions/index.d.ts +2 -0
- package/api/resources/actions/index.js +2 -0
- package/api/resources/actions/types/Action.d.ts +23 -0
- package/api/resources/actions/types/ActionParameter.d.ts +8 -0
- package/api/resources/actions/types/ActionSetBase.d.ts +9 -0
- package/api/resources/actions/types/ActionSetRequest.d.ts +6 -0
- package/api/resources/actions/types/ActionSetResponse.d.ts +6 -0
- package/api/resources/actions/types/ActionSetResponse.js +4 -0
- package/api/resources/actions/types/index.d.ts +5 -0
- package/api/resources/actions/types/index.js +5 -0
- package/api/resources/commons/errors/{AgentNotFoundError.d.ts → BadRequestError.d.ts} +1 -1
- package/api/resources/{conversation/errors/EmptyConversationError.js → commons/errors/BadRequestError.js} +3 -3
- package/{dist/api/resources/commons/errors/AgentNotFoundError.d.ts → api/resources/commons/errors/NotFoundError.d.ts} +1 -1
- package/{dist/api/resources/commons/errors/AgentNotFoundError.js → api/resources/commons/errors/NotFoundError.js} +3 -3
- package/{dist/api/resources/conversation/errors/EmptyConversationError.d.ts → api/resources/commons/errors/ServerError.d.ts} +1 -1
- package/api/resources/commons/errors/ServerError.js +14 -0
- package/api/resources/commons/errors/index.d.ts +3 -1
- package/api/resources/commons/errors/index.js +3 -1
- package/api/resources/commons/types/AppUser.d.ts +10 -0
- package/api/resources/commons/types/AppUser.js +4 -0
- package/api/resources/commons/types/AppUserIdentification.d.ts +8 -0
- package/api/resources/commons/types/AppUserIdentification.js +4 -0
- package/api/resources/commons/types/AppUserIdentifyingProperty.d.ts +9 -0
- package/api/resources/commons/types/AppUserIdentifyingProperty.js +4 -0
- package/api/resources/commons/types/AppUserIdentifyingPropertyType.d.ts +8 -0
- package/api/resources/commons/types/AppUserIdentifyingPropertyType.js +7 -0
- package/api/resources/commons/types/Feedback.d.ts +16 -0
- package/api/resources/commons/types/Feedback.js +4 -0
- package/api/resources/{conversation → commons}/types/FeedbackType.d.ts +3 -1
- package/{dist/api/resources/conversation → api/resources/commons}/types/FeedbackType.js +2 -0
- package/api/resources/commons/types/User.d.ts +1 -0
- package/api/resources/commons/types/index.d.ts +6 -0
- package/api/resources/commons/types/index.js +6 -0
- package/api/resources/conversation/client/Client.d.ts +69 -31
- package/api/resources/conversation/client/Client.js +223 -111
- package/api/resources/conversation/index.d.ts +0 -1
- package/api/resources/conversation/index.js +0 -1
- package/api/resources/conversation/types/ActionExecutionRequest.d.ts +10 -0
- package/api/resources/conversation/types/ActionExecutionRequest.js +4 -0
- package/api/resources/conversation/types/ActionExecutionResponse.d.ts +7 -0
- package/api/resources/conversation/types/ActionExecutionResponse.js +4 -0
- package/api/resources/conversation/types/AskRequest.d.ts +2 -0
- package/api/resources/conversation/types/BotActionFormResponse.d.ts +1 -0
- package/api/resources/conversation/types/Capability.d.ts +8 -0
- package/api/resources/conversation/types/Capability.js +7 -0
- package/api/resources/conversation/types/ConversationBase.d.ts +2 -0
- package/api/resources/conversation/types/FeedbackRequest.d.ts +1 -8
- package/api/resources/conversation/types/ResponseConfig.d.ts +12 -0
- package/api/resources/conversation/types/ResponseConfig.js +4 -0
- package/api/resources/conversation/types/ResponseLength.d.ts +9 -0
- package/api/resources/conversation/types/ResponseLength.js +8 -0
- package/api/resources/conversation/types/UserMessage.d.ts +1 -0
- package/api/resources/conversation/types/index.d.ts +5 -1
- package/api/resources/conversation/types/index.js +5 -1
- package/api/resources/index.d.ts +5 -2
- package/api/resources/index.js +5 -2
- package/api/resources/knowledge/client/Client.d.ts +52 -40
- package/api/resources/knowledge/client/Client.js +191 -129
- package/api/resources/knowledge/index.d.ts +0 -1
- package/api/resources/knowledge/index.js +0 -1
- package/api/resources/knowledge/types/{KnowledgeDocument.d.ts → BaseKnowledgeDocument.d.ts} +1 -3
- package/api/resources/knowledge/types/BaseKnowledgeDocument.js +4 -0
- package/api/resources/knowledge/types/KnowledgeBaseType.d.ts +1 -1
- package/api/resources/knowledge/types/KnowledgeBaseVersion.d.ts +1 -1
- package/api/resources/knowledge/types/KnowledgeDocumentContentType.d.ts +11 -0
- package/api/resources/knowledge/types/KnowledgeDocumentContentType.js +7 -0
- package/api/resources/knowledge/types/KnowledgeDocumentRequest.d.ts +9 -0
- package/api/resources/knowledge/types/KnowledgeDocumentRequest.js +4 -0
- package/api/resources/knowledge/types/KnowledgeDocumentResponse.d.ts +8 -0
- package/api/resources/knowledge/types/KnowledgeDocumentResponse.js +4 -0
- package/api/resources/knowledge/types/index.d.ts +4 -2
- package/api/resources/knowledge/types/index.js +4 -2
- package/api/resources/triggers/client/Client.d.ts +72 -0
- package/api/resources/triggers/client/Client.js +298 -0
- package/api/resources/triggers/client/index.d.ts +1 -0
- package/api/resources/triggers/client/index.js +1 -0
- package/api/resources/triggers/index.d.ts +2 -0
- package/api/resources/triggers/index.js +2 -0
- package/api/resources/triggers/types/EventTrigger.d.ts +12 -0
- package/api/resources/triggers/types/EventTrigger.js +4 -0
- package/api/resources/triggers/types/EventTriggerType.d.ts +8 -0
- package/api/resources/triggers/types/EventTriggerType.js +7 -0
- package/api/resources/triggers/types/index.d.ts +2 -0
- package/api/resources/triggers/types/index.js +2 -0
- package/api/resources/user/client/Client.d.ts +62 -0
- package/api/resources/user/client/Client.js +220 -0
- package/api/resources/user/client/index.d.ts +1 -0
- package/api/resources/user/client/index.js +1 -0
- package/api/resources/user/index.d.ts +1 -0
- package/api/resources/user/index.js +1 -0
- package/core/index.d.ts +1 -1
- package/core/index.js +1 -1
- package/dist/Client.d.ts +9 -0
- package/dist/Client.js +15 -0
- package/dist/api/resources/actions/client/Client.d.ts +123 -0
- package/dist/api/resources/actions/client/Client.js +564 -0
- package/dist/api/resources/actions/client/index.d.ts +1 -0
- package/dist/api/resources/actions/client/index.js +1 -0
- package/dist/api/resources/actions/index.d.ts +2 -0
- package/dist/api/resources/actions/index.js +2 -0
- package/dist/api/resources/actions/types/Action.d.ts +23 -0
- package/dist/api/resources/actions/types/Action.js +4 -0
- package/dist/api/resources/actions/types/ActionParameter.d.ts +8 -0
- package/dist/api/resources/actions/types/ActionParameter.js +4 -0
- package/dist/api/resources/actions/types/ActionSetBase.d.ts +9 -0
- package/dist/api/resources/actions/types/ActionSetBase.js +4 -0
- package/dist/api/resources/actions/types/ActionSetRequest.d.ts +6 -0
- package/dist/api/resources/actions/types/ActionSetRequest.js +4 -0
- package/dist/api/resources/actions/types/ActionSetResponse.d.ts +6 -0
- package/dist/api/resources/actions/types/ActionSetResponse.js +4 -0
- package/dist/api/resources/actions/types/index.d.ts +5 -0
- package/dist/api/resources/actions/types/index.js +5 -0
- package/{api/resources/conversation/errors/EmptyConversationError.d.ts → dist/api/resources/commons/errors/BadRequestError.d.ts} +1 -1
- package/dist/api/resources/{knowledge/errors/VersionInProgressError.js → commons/errors/BadRequestError.js} +3 -3
- package/dist/api/resources/commons/errors/NotFoundError.d.ts +8 -0
- package/{api/resources/commons/errors/AgentNotFoundError.js → dist/api/resources/commons/errors/NotFoundError.js} +3 -3
- package/dist/api/resources/commons/errors/ServerError.d.ts +8 -0
- package/dist/api/resources/commons/errors/ServerError.js +14 -0
- package/dist/api/resources/commons/errors/index.d.ts +3 -1
- package/dist/api/resources/commons/errors/index.js +3 -1
- package/dist/api/resources/commons/types/AppUser.d.ts +10 -0
- package/dist/api/resources/commons/types/AppUser.js +4 -0
- package/dist/api/resources/commons/types/AppUserIdentification.d.ts +8 -0
- package/dist/api/resources/commons/types/AppUserIdentification.js +4 -0
- package/dist/api/resources/commons/types/AppUserIdentifyingProperty.d.ts +9 -0
- package/dist/api/resources/commons/types/AppUserIdentifyingProperty.js +4 -0
- package/dist/api/resources/commons/types/AppUserIdentifyingPropertyType.d.ts +8 -0
- package/dist/api/resources/commons/types/AppUserIdentifyingPropertyType.js +7 -0
- package/dist/api/resources/commons/types/Feedback.d.ts +16 -0
- package/dist/api/resources/commons/types/Feedback.js +4 -0
- package/dist/api/resources/{conversation → commons}/types/FeedbackType.d.ts +3 -1
- package/{api/resources/conversation → dist/api/resources/commons}/types/FeedbackType.js +2 -0
- package/dist/api/resources/commons/types/User.d.ts +1 -0
- package/dist/api/resources/commons/types/index.d.ts +6 -0
- package/dist/api/resources/commons/types/index.js +6 -0
- package/dist/api/resources/conversation/client/Client.d.ts +69 -31
- package/dist/api/resources/conversation/client/Client.js +223 -111
- package/dist/api/resources/conversation/index.d.ts +0 -1
- package/dist/api/resources/conversation/index.js +0 -1
- package/dist/api/resources/conversation/types/ActionExecutionRequest.d.ts +10 -0
- package/dist/api/resources/conversation/types/ActionExecutionRequest.js +4 -0
- package/dist/api/resources/conversation/types/ActionExecutionResponse.d.ts +7 -0
- package/dist/api/resources/conversation/types/ActionExecutionResponse.js +4 -0
- package/dist/api/resources/conversation/types/AskRequest.d.ts +2 -0
- package/dist/api/resources/conversation/types/BotActionFormResponse.d.ts +1 -0
- package/dist/api/resources/conversation/types/Capability.d.ts +8 -0
- package/dist/api/resources/conversation/types/Capability.js +7 -0
- package/dist/api/resources/conversation/types/ConversationBase.d.ts +2 -0
- package/dist/api/resources/conversation/types/FeedbackRequest.d.ts +1 -8
- package/dist/api/resources/conversation/types/ResponseConfig.d.ts +12 -0
- package/dist/api/resources/conversation/types/ResponseConfig.js +4 -0
- package/dist/api/resources/conversation/types/ResponseLength.d.ts +9 -0
- package/dist/api/resources/conversation/types/ResponseLength.js +8 -0
- package/dist/api/resources/conversation/types/UserMessage.d.ts +1 -0
- package/dist/api/resources/conversation/types/index.d.ts +5 -1
- package/dist/api/resources/conversation/types/index.js +5 -1
- package/dist/api/resources/index.d.ts +5 -2
- package/dist/api/resources/index.js +5 -2
- package/dist/api/resources/knowledge/client/Client.d.ts +52 -40
- package/dist/api/resources/knowledge/client/Client.js +191 -129
- package/dist/api/resources/knowledge/index.d.ts +0 -1
- package/dist/api/resources/knowledge/index.js +0 -1
- package/dist/api/resources/knowledge/types/{KnowledgeDocument.d.ts → BaseKnowledgeDocument.d.ts} +1 -3
- package/dist/api/resources/knowledge/types/BaseKnowledgeDocument.js +4 -0
- package/dist/api/resources/knowledge/types/KnowledgeBaseType.d.ts +1 -1
- package/dist/api/resources/knowledge/types/KnowledgeBaseVersion.d.ts +1 -1
- package/dist/api/resources/knowledge/types/KnowledgeDocumentContentType.d.ts +11 -0
- package/dist/api/resources/knowledge/types/KnowledgeDocumentContentType.js +7 -0
- package/dist/api/resources/knowledge/types/KnowledgeDocumentRequest.d.ts +9 -0
- package/dist/api/resources/knowledge/types/KnowledgeDocumentRequest.js +4 -0
- package/dist/api/resources/knowledge/types/KnowledgeDocumentResponse.d.ts +8 -0
- package/dist/api/resources/knowledge/types/KnowledgeDocumentResponse.js +4 -0
- package/dist/api/resources/knowledge/types/index.d.ts +4 -2
- package/dist/api/resources/knowledge/types/index.js +4 -2
- package/dist/api/resources/triggers/client/Client.d.ts +72 -0
- package/dist/api/resources/triggers/client/Client.js +298 -0
- package/dist/api/resources/triggers/client/index.d.ts +1 -0
- package/dist/api/resources/triggers/client/index.js +1 -0
- package/dist/api/resources/triggers/index.d.ts +2 -0
- package/dist/api/resources/triggers/index.js +2 -0
- package/dist/api/resources/triggers/types/EventTrigger.d.ts +12 -0
- package/dist/api/resources/triggers/types/EventTrigger.js +4 -0
- package/dist/api/resources/triggers/types/EventTriggerType.d.ts +8 -0
- package/dist/api/resources/triggers/types/EventTriggerType.js +7 -0
- package/dist/api/resources/triggers/types/index.d.ts +2 -0
- package/dist/api/resources/triggers/types/index.js +2 -0
- package/dist/api/resources/user/client/Client.d.ts +62 -0
- package/dist/api/resources/user/client/Client.js +220 -0
- package/dist/api/resources/user/client/index.d.ts +1 -0
- package/dist/api/resources/user/client/index.js +1 -0
- package/dist/api/resources/user/index.d.ts +1 -0
- package/dist/api/resources/user/index.js +1 -0
- package/dist/core/index.d.ts +1 -1
- package/dist/core/index.js +1 -1
- 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/Action.d.ts +21 -0
- package/dist/serialization/resources/actions/types/Action.js +16 -0
- package/dist/serialization/resources/actions/types/ActionParameter.d.ts +14 -0
- package/dist/serialization/resources/actions/types/ActionParameter.js +9 -0
- package/dist/serialization/resources/{knowledge/types/IdBody.d.ts → actions/types/ActionSetBase.d.ts} +4 -3
- package/dist/serialization/resources/actions/types/ActionSetBase.js +8 -0
- package/dist/serialization/resources/actions/types/ActionSetRequest.d.ts +12 -0
- package/dist/serialization/resources/actions/types/ActionSetRequest.js +6 -0
- package/dist/serialization/resources/actions/types/ActionSetResponse.d.ts +12 -0
- package/dist/serialization/resources/actions/types/ActionSetResponse.js +6 -0
- package/dist/serialization/resources/actions/types/index.d.ts +5 -0
- package/dist/serialization/resources/actions/types/index.js +5 -0
- package/dist/serialization/resources/commons/types/AppUser.d.ts +15 -0
- package/dist/serialization/resources/commons/types/AppUser.js +10 -0
- package/dist/serialization/resources/commons/types/AppUserIdentification.d.ts +13 -0
- package/dist/serialization/resources/commons/types/AppUserIdentification.js +8 -0
- package/dist/serialization/resources/commons/types/AppUserIdentifyingProperty.d.ts +14 -0
- package/dist/serialization/resources/commons/types/AppUserIdentifyingProperty.js +9 -0
- package/dist/serialization/resources/commons/types/AppUserIdentifyingPropertyType.d.ts +10 -0
- package/dist/serialization/resources/{knowledge/types/IdBody.js → commons/types/AppUserIdentifyingPropertyType.js} +1 -3
- package/dist/serialization/resources/commons/types/Feedback.d.ts +17 -0
- package/dist/serialization/resources/commons/types/Feedback.js +12 -0
- package/dist/serialization/resources/{conversation → commons}/types/FeedbackType.d.ts +1 -1
- package/dist/serialization/resources/{conversation → commons}/types/FeedbackType.js +1 -1
- package/dist/serialization/resources/commons/types/User.d.ts +1 -0
- package/dist/serialization/resources/commons/types/User.js +1 -0
- package/dist/serialization/resources/commons/types/index.d.ts +6 -0
- package/dist/serialization/resources/commons/types/index.js +6 -0
- package/dist/serialization/resources/conversation/types/ActionExecutionRequest.d.ts +15 -0
- package/dist/serialization/resources/conversation/types/ActionExecutionRequest.js +10 -0
- package/dist/serialization/resources/conversation/types/ActionExecutionResponse.d.ts +12 -0
- package/dist/serialization/resources/conversation/types/ActionExecutionResponse.js +7 -0
- package/dist/serialization/resources/conversation/types/AskRequest.d.ts +2 -0
- package/dist/serialization/resources/conversation/types/AskRequest.js +2 -0
- package/dist/serialization/resources/conversation/types/BotActionFormResponse.d.ts +1 -0
- package/dist/serialization/resources/conversation/types/BotActionFormResponse.js +1 -0
- package/dist/serialization/resources/conversation/types/Capability.d.ts +10 -0
- package/{serialization/resources/knowledge/types/IdBody.js → dist/serialization/resources/conversation/types/Capability.js} +1 -3
- package/dist/serialization/resources/conversation/types/ConversationBase.d.ts +2 -0
- package/dist/serialization/resources/conversation/types/ConversationBase.js +2 -0
- package/dist/serialization/resources/conversation/types/FeedbackRequest.d.ts +2 -6
- package/dist/serialization/resources/conversation/types/FeedbackRequest.js +2 -7
- package/dist/serialization/resources/conversation/types/ResponseConfig.d.ts +16 -0
- package/dist/serialization/resources/conversation/types/ResponseConfig.js +11 -0
- package/dist/serialization/resources/conversation/types/ResponseLength.d.ts +10 -0
- package/dist/serialization/resources/conversation/types/ResponseLength.js +5 -0
- package/dist/serialization/resources/conversation/types/index.d.ts +5 -1
- package/dist/serialization/resources/conversation/types/index.js +5 -1
- package/dist/serialization/resources/index.d.ts +4 -0
- package/dist/serialization/resources/index.js +4 -0
- package/dist/serialization/resources/knowledge/types/{KnowledgeDocument.d.ts → BaseKnowledgeDocument.d.ts} +4 -5
- package/{serialization/resources/knowledge/types/KnowledgeDocument.js → dist/serialization/resources/knowledge/types/BaseKnowledgeDocument.js} +3 -4
- package/dist/serialization/resources/knowledge/types/KnowledgeDocumentContentType.d.ts +10 -0
- package/dist/serialization/resources/knowledge/types/KnowledgeDocumentContentType.js +5 -0
- package/dist/serialization/resources/knowledge/types/KnowledgeDocumentRequest.d.ts +15 -0
- package/dist/serialization/resources/knowledge/types/KnowledgeDocumentRequest.js +12 -0
- package/dist/serialization/resources/knowledge/types/KnowledgeDocumentResponse.d.ts +13 -0
- package/dist/serialization/resources/knowledge/types/KnowledgeDocumentResponse.js +10 -0
- package/dist/serialization/resources/knowledge/types/index.d.ts +4 -2
- package/dist/serialization/resources/knowledge/types/index.js +4 -2
- package/dist/serialization/resources/triggers/index.d.ts +1 -0
- package/dist/serialization/resources/triggers/index.js +1 -0
- package/dist/serialization/resources/triggers/types/EventTrigger.d.ts +15 -0
- package/dist/serialization/resources/triggers/types/EventTrigger.js +10 -0
- package/dist/serialization/resources/triggers/types/EventTriggerType.d.ts +10 -0
- package/dist/serialization/resources/triggers/types/EventTriggerType.js +5 -0
- package/dist/serialization/resources/triggers/types/index.d.ts +2 -0
- package/dist/serialization/resources/triggers/types/index.js +2 -0
- package/package.json +1 -1
- package/serialization/resources/actions/index.d.ts +1 -0
- package/serialization/resources/actions/index.js +1 -0
- package/serialization/resources/actions/types/Action.d.ts +21 -0
- package/serialization/resources/actions/types/Action.js +16 -0
- package/serialization/resources/actions/types/ActionParameter.d.ts +14 -0
- package/serialization/resources/actions/types/ActionParameter.js +9 -0
- package/serialization/resources/{knowledge/types/IdBody.d.ts → actions/types/ActionSetBase.d.ts} +4 -3
- package/serialization/resources/actions/types/ActionSetBase.js +8 -0
- package/serialization/resources/actions/types/ActionSetRequest.d.ts +12 -0
- package/serialization/resources/actions/types/ActionSetRequest.js +6 -0
- package/serialization/resources/actions/types/ActionSetResponse.d.ts +12 -0
- package/serialization/resources/actions/types/ActionSetResponse.js +6 -0
- package/serialization/resources/actions/types/index.d.ts +5 -0
- package/serialization/resources/actions/types/index.js +5 -0
- package/serialization/resources/commons/types/AppUser.d.ts +15 -0
- package/serialization/resources/commons/types/AppUser.js +10 -0
- package/serialization/resources/commons/types/AppUserIdentification.d.ts +13 -0
- package/serialization/resources/commons/types/AppUserIdentification.js +8 -0
- package/serialization/resources/commons/types/AppUserIdentifyingProperty.d.ts +14 -0
- package/serialization/resources/commons/types/AppUserIdentifyingProperty.js +9 -0
- package/serialization/resources/commons/types/AppUserIdentifyingPropertyType.d.ts +10 -0
- package/serialization/resources/commons/types/AppUserIdentifyingPropertyType.js +5 -0
- package/serialization/resources/commons/types/Feedback.d.ts +17 -0
- package/serialization/resources/commons/types/Feedback.js +12 -0
- package/serialization/resources/{conversation → commons}/types/FeedbackType.d.ts +1 -1
- package/serialization/resources/{conversation → commons}/types/FeedbackType.js +1 -1
- package/serialization/resources/commons/types/User.d.ts +1 -0
- package/serialization/resources/commons/types/User.js +1 -0
- package/serialization/resources/commons/types/index.d.ts +6 -0
- package/serialization/resources/commons/types/index.js +6 -0
- package/serialization/resources/conversation/types/ActionExecutionRequest.d.ts +15 -0
- package/serialization/resources/conversation/types/ActionExecutionRequest.js +10 -0
- package/serialization/resources/conversation/types/ActionExecutionResponse.d.ts +12 -0
- package/serialization/resources/conversation/types/ActionExecutionResponse.js +7 -0
- package/serialization/resources/conversation/types/AskRequest.d.ts +2 -0
- package/serialization/resources/conversation/types/AskRequest.js +2 -0
- package/serialization/resources/conversation/types/BotActionFormResponse.d.ts +1 -0
- package/serialization/resources/conversation/types/BotActionFormResponse.js +1 -0
- package/serialization/resources/conversation/types/Capability.d.ts +10 -0
- package/serialization/resources/conversation/types/Capability.js +5 -0
- package/serialization/resources/conversation/types/ConversationBase.d.ts +2 -0
- package/serialization/resources/conversation/types/ConversationBase.js +2 -0
- package/serialization/resources/conversation/types/FeedbackRequest.d.ts +2 -6
- package/serialization/resources/conversation/types/FeedbackRequest.js +2 -7
- package/serialization/resources/conversation/types/ResponseConfig.d.ts +16 -0
- package/serialization/resources/conversation/types/ResponseConfig.js +11 -0
- package/serialization/resources/conversation/types/ResponseLength.d.ts +10 -0
- package/serialization/resources/conversation/types/ResponseLength.js +5 -0
- package/serialization/resources/conversation/types/index.d.ts +5 -1
- package/serialization/resources/conversation/types/index.js +5 -1
- package/serialization/resources/index.d.ts +4 -0
- package/serialization/resources/index.js +4 -0
- package/serialization/resources/knowledge/types/{KnowledgeDocument.d.ts → BaseKnowledgeDocument.d.ts} +4 -5
- package/{dist/serialization/resources/knowledge/types/KnowledgeDocument.js → serialization/resources/knowledge/types/BaseKnowledgeDocument.js} +3 -4
- package/serialization/resources/knowledge/types/KnowledgeDocumentContentType.d.ts +10 -0
- package/serialization/resources/knowledge/types/KnowledgeDocumentContentType.js +5 -0
- package/serialization/resources/knowledge/types/KnowledgeDocumentRequest.d.ts +15 -0
- package/serialization/resources/knowledge/types/KnowledgeDocumentRequest.js +12 -0
- package/serialization/resources/knowledge/types/KnowledgeDocumentResponse.d.ts +13 -0
- package/serialization/resources/knowledge/types/KnowledgeDocumentResponse.js +10 -0
- package/serialization/resources/knowledge/types/index.d.ts +4 -2
- package/serialization/resources/knowledge/types/index.js +4 -2
- package/serialization/resources/triggers/index.d.ts +1 -0
- package/serialization/resources/triggers/index.js +1 -0
- package/serialization/resources/triggers/types/EventTrigger.d.ts +15 -0
- package/serialization/resources/triggers/types/EventTrigger.js +10 -0
- package/serialization/resources/triggers/types/EventTriggerType.d.ts +10 -0
- package/serialization/resources/triggers/types/EventTriggerType.js +5 -0
- package/serialization/resources/triggers/types/index.d.ts +2 -0
- package/serialization/resources/triggers/types/index.js +2 -0
- package/api/resources/conversation/errors/ConversationAlreadyExistsError.d.ts +0 -8
- package/api/resources/conversation/errors/ConversationAlreadyExistsError.js +0 -14
- package/api/resources/conversation/errors/ConversationMessageNotFoundError.d.ts +0 -8
- package/api/resources/conversation/errors/ConversationMessageNotFoundError.js +0 -14
- package/api/resources/conversation/errors/ConversationNotFoundError.d.ts +0 -8
- package/api/resources/conversation/errors/ConversationNotFoundError.js +0 -14
- package/api/resources/conversation/errors/InvalidConversationIdError.d.ts +0 -8
- package/api/resources/conversation/errors/InvalidConversationIdError.js +0 -14
- package/api/resources/conversation/errors/InvalidConversationMessageIdError.d.ts +0 -8
- package/api/resources/conversation/errors/InvalidConversationMessageIdError.js +0 -14
- package/api/resources/conversation/errors/InvalidFeedbackTypeError.d.ts +0 -8
- package/api/resources/conversation/errors/InvalidFeedbackTypeError.js +0 -14
- package/api/resources/conversation/errors/index.d.ts +0 -7
- package/api/resources/conversation/errors/index.js +0 -7
- package/api/resources/knowledge/errors/DocumentCreationError.d.ts +0 -7
- package/api/resources/knowledge/errors/DocumentCreationError.js +0 -13
- package/api/resources/knowledge/errors/DocumentNotFoundError.d.ts +0 -8
- package/api/resources/knowledge/errors/DocumentNotFoundError.js +0 -14
- package/api/resources/knowledge/errors/IneligibleKnowledgeBaseError.d.ts +0 -8
- package/api/resources/knowledge/errors/IneligibleKnowledgeBaseError.js +0 -14
- package/api/resources/knowledge/errors/KnowledgeBaseNotFoundError.d.ts +0 -8
- package/api/resources/knowledge/errors/KnowledgeBaseNotFoundError.js +0 -14
- package/api/resources/knowledge/errors/VersionInProgressError.d.ts +0 -8
- package/api/resources/knowledge/errors/VersionInProgressError.js +0 -14
- package/api/resources/knowledge/errors/VersionNotInProgressError.d.ts +0 -8
- package/api/resources/knowledge/errors/VersionNotInProgressError.js +0 -14
- package/api/resources/knowledge/errors/index.d.ts +0 -6
- package/api/resources/knowledge/errors/index.js +0 -6
- package/api/resources/knowledge/types/IdBody.d.ts +0 -6
- package/dist/api/resources/conversation/errors/ConversationAlreadyExistsError.d.ts +0 -8
- package/dist/api/resources/conversation/errors/ConversationAlreadyExistsError.js +0 -14
- package/dist/api/resources/conversation/errors/ConversationMessageNotFoundError.d.ts +0 -8
- package/dist/api/resources/conversation/errors/ConversationMessageNotFoundError.js +0 -14
- package/dist/api/resources/conversation/errors/ConversationNotFoundError.d.ts +0 -8
- package/dist/api/resources/conversation/errors/ConversationNotFoundError.js +0 -14
- package/dist/api/resources/conversation/errors/EmptyConversationError.js +0 -14
- package/dist/api/resources/conversation/errors/InvalidConversationIdError.d.ts +0 -8
- package/dist/api/resources/conversation/errors/InvalidConversationIdError.js +0 -14
- package/dist/api/resources/conversation/errors/InvalidConversationMessageIdError.d.ts +0 -8
- package/dist/api/resources/conversation/errors/InvalidConversationMessageIdError.js +0 -14
- package/dist/api/resources/conversation/errors/InvalidFeedbackTypeError.d.ts +0 -8
- package/dist/api/resources/conversation/errors/InvalidFeedbackTypeError.js +0 -14
- package/dist/api/resources/conversation/errors/index.d.ts +0 -7
- package/dist/api/resources/conversation/errors/index.js +0 -7
- package/dist/api/resources/knowledge/errors/DocumentCreationError.d.ts +0 -7
- package/dist/api/resources/knowledge/errors/DocumentCreationError.js +0 -13
- package/dist/api/resources/knowledge/errors/DocumentNotFoundError.d.ts +0 -8
- package/dist/api/resources/knowledge/errors/DocumentNotFoundError.js +0 -14
- package/dist/api/resources/knowledge/errors/IneligibleKnowledgeBaseError.d.ts +0 -8
- package/dist/api/resources/knowledge/errors/IneligibleKnowledgeBaseError.js +0 -14
- package/dist/api/resources/knowledge/errors/KnowledgeBaseNotFoundError.d.ts +0 -8
- package/dist/api/resources/knowledge/errors/KnowledgeBaseNotFoundError.js +0 -14
- package/dist/api/resources/knowledge/errors/VersionInProgressError.d.ts +0 -8
- package/dist/api/resources/knowledge/errors/VersionNotInProgressError.d.ts +0 -8
- package/dist/api/resources/knowledge/errors/VersionNotInProgressError.js +0 -14
- package/dist/api/resources/knowledge/errors/index.d.ts +0 -6
- package/dist/api/resources/knowledge/errors/index.js +0 -6
- package/dist/api/resources/knowledge/types/IdBody.d.ts +0 -6
- /package/api/resources/{knowledge/types/IdBody.js → actions/types/Action.js} +0 -0
- /package/api/resources/{knowledge/types/KnowledgeDocument.js → actions/types/ActionParameter.js} +0 -0
- /package/{dist/api/resources/knowledge/types/IdBody.js → api/resources/actions/types/ActionSetBase.js} +0 -0
- /package/{dist/api/resources/knowledge/types/KnowledgeDocument.js → api/resources/actions/types/ActionSetRequest.js} +0 -0
|
@@ -2,11 +2,4 @@
|
|
|
2
2
|
* This file was auto-generated by Fern from our API Definition.
|
|
3
3
|
*/
|
|
4
4
|
import * as MavenAGI from "../../../index";
|
|
5
|
-
export
|
|
6
|
-
/** The ID of the conversation message the feedback is about */
|
|
7
|
-
conversationMessageId: string;
|
|
8
|
-
/** The feedback text */
|
|
9
|
-
text: string;
|
|
10
|
-
/** The type of feedback */
|
|
11
|
-
type: MavenAGI.FeedbackType;
|
|
12
|
-
}
|
|
5
|
+
export declare type FeedbackRequest = MavenAGI.Feedback;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This file was auto-generated by Fern from our API Definition.
|
|
3
|
+
*/
|
|
4
|
+
import * as MavenAGI from "../../../index";
|
|
5
|
+
export interface ResponseConfig {
|
|
6
|
+
/** List of capabilities supported by the caller. Defaults to all */
|
|
7
|
+
capabilities?: MavenAGI.Capability[];
|
|
8
|
+
/** Whether the response is for an human agent (true) or an end user (false). Defaults to false. */
|
|
9
|
+
isCopilot?: boolean;
|
|
10
|
+
/** The desired response length. Defaults to ResponseLength.MEDIUM. */
|
|
11
|
+
responseLength?: MavenAGI.ResponseLength;
|
|
12
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This file was auto-generated by Fern from our API Definition.
|
|
3
|
+
*/
|
|
4
|
+
export declare type ResponseLength = "SHORT" | "MEDIUM" | "LONG";
|
|
5
|
+
export declare const ResponseLength: {
|
|
6
|
+
readonly Short: "SHORT";
|
|
7
|
+
readonly Medium: "MEDIUM";
|
|
8
|
+
readonly Long: "LONG";
|
|
9
|
+
};
|
|
@@ -1,4 +1,7 @@
|
|
|
1
1
|
export * from "./AskRequest";
|
|
2
|
+
export * from "./ResponseConfig";
|
|
3
|
+
export * from "./Capability";
|
|
4
|
+
export * from "./ResponseLength";
|
|
2
5
|
export * from "./GenerateMavenSuggestionsRequest";
|
|
3
6
|
export * from "./ConversationBase";
|
|
4
7
|
export * from "./ConversationResponse";
|
|
@@ -13,12 +16,13 @@ export * from "./BotResponse";
|
|
|
13
16
|
export * from "./BotTextResponse";
|
|
14
17
|
export * from "./BotActionFormResponse";
|
|
15
18
|
export * from "./ActionFormField";
|
|
19
|
+
export * from "./ActionExecutionRequest";
|
|
20
|
+
export * from "./ActionExecutionResponse";
|
|
16
21
|
export * from "./ConversationContext";
|
|
17
22
|
export * from "./ConversationMessageContext";
|
|
18
23
|
export * from "./UserConversationMessageType";
|
|
19
24
|
export * from "./BotConversationMessageType";
|
|
20
25
|
export * from "./FeedbackRequest";
|
|
21
|
-
export * from "./FeedbackType";
|
|
22
26
|
export * from "./StreamResponse";
|
|
23
27
|
export * from "./AskStreamTextEvent";
|
|
24
28
|
export * from "./AskStreamMetadataEvent";
|
|
@@ -1,4 +1,7 @@
|
|
|
1
1
|
export * from "./AskRequest";
|
|
2
|
+
export * from "./ResponseConfig";
|
|
3
|
+
export * from "./Capability";
|
|
4
|
+
export * from "./ResponseLength";
|
|
2
5
|
export * from "./GenerateMavenSuggestionsRequest";
|
|
3
6
|
export * from "./ConversationBase";
|
|
4
7
|
export * from "./ConversationResponse";
|
|
@@ -13,12 +16,13 @@ export * from "./BotResponse";
|
|
|
13
16
|
export * from "./BotTextResponse";
|
|
14
17
|
export * from "./BotActionFormResponse";
|
|
15
18
|
export * from "./ActionFormField";
|
|
19
|
+
export * from "./ActionExecutionRequest";
|
|
20
|
+
export * from "./ActionExecutionResponse";
|
|
16
21
|
export * from "./ConversationContext";
|
|
17
22
|
export * from "./ConversationMessageContext";
|
|
18
23
|
export * from "./UserConversationMessageType";
|
|
19
24
|
export * from "./BotConversationMessageType";
|
|
20
25
|
export * from "./FeedbackRequest";
|
|
21
|
-
export * from "./FeedbackType";
|
|
22
26
|
export * from "./StreamResponse";
|
|
23
27
|
export * from "./AskStreamTextEvent";
|
|
24
28
|
export * from "./AskStreamMetadataEvent";
|
package/api/resources/index.d.ts
CHANGED
|
@@ -1,9 +1,12 @@
|
|
|
1
|
+
export * as actions from "./actions";
|
|
2
|
+
export * from "./actions/types";
|
|
1
3
|
export * as commons from "./commons";
|
|
2
4
|
export * from "./commons/types";
|
|
3
5
|
export * as conversation from "./conversation";
|
|
4
6
|
export * from "./conversation/types";
|
|
5
7
|
export * as knowledge from "./knowledge";
|
|
6
8
|
export * from "./knowledge/types";
|
|
9
|
+
export * as triggers from "./triggers";
|
|
10
|
+
export * from "./triggers/types";
|
|
7
11
|
export * from "./commons/errors";
|
|
8
|
-
export * from "./
|
|
9
|
-
export * from "./knowledge/errors";
|
|
12
|
+
export * as user from "./user";
|
package/api/resources/index.js
CHANGED
|
@@ -1,9 +1,12 @@
|
|
|
1
|
+
export * as actions from "./actions";
|
|
2
|
+
export * from "./actions/types";
|
|
1
3
|
export * as commons from "./commons";
|
|
2
4
|
export * from "./commons/types";
|
|
3
5
|
export * as conversation from "./conversation";
|
|
4
6
|
export * from "./conversation/types";
|
|
5
7
|
export * as knowledge from "./knowledge";
|
|
6
8
|
export * from "./knowledge/types";
|
|
9
|
+
export * as triggers from "./triggers";
|
|
10
|
+
export * from "./triggers/types";
|
|
7
11
|
export * from "./commons/errors";
|
|
8
|
-
export * from "./
|
|
9
|
-
export * from "./knowledge/errors";
|
|
12
|
+
export * as user from "./user";
|
|
@@ -23,15 +23,17 @@ export declare class Knowledge {
|
|
|
23
23
|
protected readonly _options: Knowledge.Options;
|
|
24
24
|
constructor(_options: Knowledge.Options);
|
|
25
25
|
/**
|
|
26
|
-
* Create knowledge base
|
|
26
|
+
* Create a new knowledge base.
|
|
27
27
|
*
|
|
28
28
|
* @param {MavenAGI.KnowledgeBase} request
|
|
29
29
|
* @param {Knowledge.RequestOptions} requestOptions - Request-specific configuration.
|
|
30
30
|
*
|
|
31
|
-
* @throws {@link MavenAGI.
|
|
31
|
+
* @throws {@link MavenAGI.NotFoundError}
|
|
32
|
+
* @throws {@link MavenAGI.BadRequestError}
|
|
33
|
+
* @throws {@link MavenAGI.ServerError}
|
|
32
34
|
*
|
|
33
35
|
* @example
|
|
34
|
-
* await
|
|
36
|
+
* await client.knowledge.createKnowledgeBase({
|
|
35
37
|
* displayName: "string",
|
|
36
38
|
* type: MavenAGI.KnowledgeBaseType.Api,
|
|
37
39
|
* url: "string",
|
|
@@ -40,56 +42,67 @@ export declare class Knowledge {
|
|
|
40
42
|
*/
|
|
41
43
|
createKnowledgeBase(request: MavenAGI.KnowledgeBase, requestOptions?: Knowledge.RequestOptions): Promise<MavenAGI.KnowledgeBase>;
|
|
42
44
|
/**
|
|
43
|
-
*
|
|
45
|
+
* Get an existing knowledge base.
|
|
46
|
+
*
|
|
47
|
+
* @param {string} knowledgeBaseId - The ID of the knowledge base to get
|
|
48
|
+
* @param {Knowledge.RequestOptions} requestOptions - Request-specific configuration.
|
|
49
|
+
*
|
|
50
|
+
* @throws {@link MavenAGI.NotFoundError}
|
|
51
|
+
* @throws {@link MavenAGI.BadRequestError}
|
|
52
|
+
* @throws {@link MavenAGI.ServerError}
|
|
53
|
+
*
|
|
54
|
+
* @example
|
|
55
|
+
* await client.knowledge.getKnowledgeBase("string")
|
|
56
|
+
*/
|
|
57
|
+
getKnowledgeBase(knowledgeBaseId: string, requestOptions?: Knowledge.RequestOptions): Promise<MavenAGI.KnowledgeBase>;
|
|
58
|
+
/**
|
|
59
|
+
* Create a new knowledge base version. Only supported on API knowledge bases. Will throw an exception if there is an existing version in progress.
|
|
44
60
|
*
|
|
45
61
|
* @param {MavenAGI.KnowledgeBaseVersion} request
|
|
46
62
|
* @param {Knowledge.RequestOptions} requestOptions - Request-specific configuration.
|
|
47
63
|
*
|
|
48
|
-
* @throws {@link MavenAGI.
|
|
49
|
-
* @throws {@link MavenAGI.
|
|
50
|
-
* @throws {@link MavenAGI.
|
|
51
|
-
* @throws {@link MavenAGI.AgentNotFoundError}
|
|
64
|
+
* @throws {@link MavenAGI.NotFoundError}
|
|
65
|
+
* @throws {@link MavenAGI.BadRequestError}
|
|
66
|
+
* @throws {@link MavenAGI.ServerError}
|
|
52
67
|
*
|
|
53
68
|
* @example
|
|
54
|
-
* await
|
|
69
|
+
* await client.knowledge.createKnowledgeBaseVersion({
|
|
55
70
|
* knowledgeBaseId: "string",
|
|
56
71
|
* type: MavenAGI.KnowledgeBaseVersionType.Full
|
|
57
72
|
* })
|
|
58
73
|
*/
|
|
59
74
|
createKnowledgeBaseVersion(request: MavenAGI.KnowledgeBaseVersion, requestOptions?: Knowledge.RequestOptions): Promise<MavenAGI.KnowledgeBaseVersion>;
|
|
60
75
|
/**
|
|
61
|
-
* Finalize
|
|
76
|
+
* Finalize the latest knowledge base version. Required to indicate the version is complete. Will throw an exception if the latest version is not in progress.
|
|
62
77
|
*
|
|
63
78
|
* @param {MavenAGI.KnowledgeBaseId} request
|
|
64
79
|
* @param {Knowledge.RequestOptions} requestOptions - Request-specific configuration.
|
|
65
80
|
*
|
|
66
|
-
* @throws {@link MavenAGI.
|
|
67
|
-
* @throws {@link MavenAGI.
|
|
68
|
-
* @throws {@link MavenAGI.
|
|
69
|
-
* @throws {@link MavenAGI.AgentNotFoundError}
|
|
81
|
+
* @throws {@link MavenAGI.NotFoundError}
|
|
82
|
+
* @throws {@link MavenAGI.BadRequestError}
|
|
83
|
+
* @throws {@link MavenAGI.ServerError}
|
|
70
84
|
*
|
|
71
85
|
* @example
|
|
72
|
-
* await
|
|
86
|
+
* await client.knowledge.finalizeKnowledgeBaseVersion({
|
|
73
87
|
* knowledgeBaseId: "string"
|
|
74
88
|
* })
|
|
75
89
|
*/
|
|
76
90
|
finalizeKnowledgeBaseVersion(request: MavenAGI.KnowledgeBaseId, requestOptions?: Knowledge.RequestOptions): Promise<void>;
|
|
77
91
|
/**
|
|
78
|
-
* Create knowledge document
|
|
92
|
+
* Create knowledge document. Requires an existing knowledge base with an in progress version. Will throw an exception if the latest version is not in progress.
|
|
79
93
|
*
|
|
80
|
-
* @param {MavenAGI.
|
|
94
|
+
* @param {MavenAGI.KnowledgeDocumentRequest} request
|
|
81
95
|
* @param {Knowledge.RequestOptions} requestOptions - Request-specific configuration.
|
|
82
96
|
*
|
|
83
|
-
* @throws {@link MavenAGI.
|
|
84
|
-
* @throws {@link MavenAGI.
|
|
85
|
-
* @throws {@link MavenAGI.
|
|
86
|
-
* @throws {@link MavenAGI.DocumentCreationError}
|
|
87
|
-
* @throws {@link MavenAGI.AgentNotFoundError}
|
|
97
|
+
* @throws {@link MavenAGI.NotFoundError}
|
|
98
|
+
* @throws {@link MavenAGI.BadRequestError}
|
|
99
|
+
* @throws {@link MavenAGI.ServerError}
|
|
88
100
|
*
|
|
89
101
|
* @example
|
|
90
|
-
* await
|
|
91
|
-
*
|
|
102
|
+
* await client.knowledge.createKnowledgeDocument({
|
|
103
|
+
* contentType: MavenAGI.KnowledgeDocumentContentType.Html,
|
|
92
104
|
* content: "string",
|
|
105
|
+
* title: "string",
|
|
93
106
|
* url: "string",
|
|
94
107
|
* language: "string",
|
|
95
108
|
* createdAt: new Date("2024-01-15T09:30:00.000Z"),
|
|
@@ -99,22 +112,22 @@ export declare class Knowledge {
|
|
|
99
112
|
* documentId: "string"
|
|
100
113
|
* })
|
|
101
114
|
*/
|
|
102
|
-
createKnowledgeDocument(request: MavenAGI.
|
|
115
|
+
createKnowledgeDocument(request: MavenAGI.KnowledgeDocumentRequest, requestOptions?: Knowledge.RequestOptions): Promise<MavenAGI.KnowledgeDocumentResponse>;
|
|
103
116
|
/**
|
|
104
|
-
* Update knowledge document
|
|
117
|
+
* Update knowledge document. Requires an existing knowledge base with an in progress version of type PARTIAL. Will throw an exception if the latest version is not in progress.
|
|
105
118
|
*
|
|
106
|
-
* @param {MavenAGI.
|
|
119
|
+
* @param {MavenAGI.KnowledgeDocumentRequest} request
|
|
107
120
|
* @param {Knowledge.RequestOptions} requestOptions - Request-specific configuration.
|
|
108
121
|
*
|
|
109
|
-
* @throws {@link MavenAGI.
|
|
110
|
-
* @throws {@link MavenAGI.
|
|
111
|
-
* @throws {@link MavenAGI.
|
|
112
|
-
* @throws {@link MavenAGI.AgentNotFoundError}
|
|
122
|
+
* @throws {@link MavenAGI.NotFoundError}
|
|
123
|
+
* @throws {@link MavenAGI.BadRequestError}
|
|
124
|
+
* @throws {@link MavenAGI.ServerError}
|
|
113
125
|
*
|
|
114
126
|
* @example
|
|
115
|
-
* await
|
|
116
|
-
*
|
|
127
|
+
* await client.knowledge.updateKnowledgeDocument({
|
|
128
|
+
* contentType: MavenAGI.KnowledgeDocumentContentType.Html,
|
|
117
129
|
* content: "string",
|
|
130
|
+
* title: "string",
|
|
118
131
|
* url: "string",
|
|
119
132
|
* language: "string",
|
|
120
133
|
* createdAt: new Date("2024-01-15T09:30:00.000Z"),
|
|
@@ -124,20 +137,19 @@ export declare class Knowledge {
|
|
|
124
137
|
* documentId: "string"
|
|
125
138
|
* })
|
|
126
139
|
*/
|
|
127
|
-
updateKnowledgeDocument(request: MavenAGI.
|
|
140
|
+
updateKnowledgeDocument(request: MavenAGI.KnowledgeDocumentRequest, requestOptions?: Knowledge.RequestOptions): Promise<MavenAGI.KnowledgeDocumentResponse>;
|
|
128
141
|
/**
|
|
129
|
-
* Delete knowledge document
|
|
142
|
+
* Delete knowledge document. Requires an existing knowledge base with an in progress version of type PARTIAL. Will throw an exception if the latest version is not in progress.
|
|
130
143
|
*
|
|
131
144
|
* @param {MavenAGI.KnowledgeDocumentId} request
|
|
132
145
|
* @param {Knowledge.RequestOptions} requestOptions - Request-specific configuration.
|
|
133
146
|
*
|
|
134
|
-
* @throws {@link MavenAGI.
|
|
135
|
-
* @throws {@link MavenAGI.
|
|
136
|
-
* @throws {@link MavenAGI.
|
|
137
|
-
* @throws {@link MavenAGI.AgentNotFoundError}
|
|
147
|
+
* @throws {@link MavenAGI.NotFoundError}
|
|
148
|
+
* @throws {@link MavenAGI.BadRequestError}
|
|
149
|
+
* @throws {@link MavenAGI.ServerError}
|
|
138
150
|
*
|
|
139
151
|
* @example
|
|
140
|
-
* await
|
|
152
|
+
* await client.knowledge.deleteKnowledgeDocument({
|
|
141
153
|
* knowledgeBaseId: "string",
|
|
142
154
|
* documentId: "string"
|
|
143
155
|
* })
|