@wildix/wim-wilma-client 0.0.12 → 3.1.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/dist-cjs/Wilma.js +25 -3
- package/dist-cjs/WilmaClient.js +34 -26
- package/dist-cjs/auth/httpAuthExtensionConfiguration.js +43 -0
- package/dist-cjs/auth/httpAuthSchemeProvider.js +52 -0
- package/dist-cjs/commands/CreateAgentCommand.js +10 -11
- package/dist-cjs/commands/CreateGuidelineCommand.js +10 -11
- package/dist-cjs/commands/CreateGuidelinesDirectoryCommand.js +10 -11
- package/dist-cjs/commands/CreateSkillCommand.js +20 -0
- package/dist-cjs/commands/CreateSkillFileUploadCommand.js +20 -0
- package/dist-cjs/commands/DeleteAgentCommand.js +10 -11
- package/dist-cjs/commands/DeleteChatCommand.js +10 -11
- package/dist-cjs/commands/DeleteFileCommand.js +20 -0
- package/dist-cjs/commands/DeleteGuidelineCommand.js +10 -11
- package/dist-cjs/commands/DeleteGuidelinesDirectoryCommand.js +10 -11
- package/dist-cjs/commands/DeleteSkillCommand.js +20 -0
- package/dist-cjs/commands/DeleteSkillFileCommand.js +20 -0
- package/dist-cjs/commands/DislikeAnswerCommand.js +10 -11
- package/dist-cjs/commands/DownloadFileCommand.js +20 -0
- package/dist-cjs/commands/ExecuteAgentCommand.js +10 -11
- package/dist-cjs/commands/GetAgentCommand.js +10 -11
- package/dist-cjs/commands/GetChatCommand.js +10 -11
- package/dist-cjs/commands/GetFileCommand.js +20 -0
- package/dist-cjs/commands/GetGuidelineCommand.js +10 -11
- package/dist-cjs/commands/GetOrganizationSettingsCommand.js +10 -11
- package/dist-cjs/commands/GetSettingsCommand.js +10 -11
- package/dist-cjs/commands/GetSkillCommand.js +20 -0
- package/dist-cjs/commands/GetSkillFileDownloadCommand.js +20 -0
- package/dist-cjs/commands/LikeAnswerCommand.js +10 -11
- package/dist-cjs/commands/ListAgentFeedbacksCommand.js +10 -11
- package/dist-cjs/commands/ListAgentsCommand.js +10 -11
- package/dist-cjs/commands/ListAgentsNamesCommand.js +10 -11
- package/dist-cjs/commands/ListChatsCommand.js +10 -11
- package/dist-cjs/commands/ListFeedbacksCommand.js +10 -11
- package/dist-cjs/commands/ListGuidelinesCommand.js +10 -11
- package/dist-cjs/commands/ListGuidelinesDirectoriesCommand.js +10 -11
- package/dist-cjs/commands/ListGuidelinesNamesCommand.js +10 -11
- package/dist-cjs/commands/ListSkillsCommand.js +20 -0
- package/dist-cjs/commands/PatchOrganizationSettingsCommand.js +10 -11
- package/dist-cjs/commands/PatchSettingsCommand.js +10 -11
- package/dist-cjs/commands/UpdateAgentCommand.js +10 -11
- package/dist-cjs/commands/UpdateGuidelineAccessCommand.js +10 -11
- package/dist-cjs/commands/UpdateGuidelineCommand.js +10 -11
- package/dist-cjs/commands/UpdateGuidelinesDirectoryCommand.js +10 -11
- package/dist-cjs/commands/UpdateSkillCommand.js +20 -0
- package/dist-cjs/commands/index.js +12 -1
- package/dist-cjs/endpoint/EndpointParameters.js +16 -0
- package/dist-cjs/endpoint/bdd.js +28 -0
- package/dist-cjs/endpoint/endpointResolver.js +16 -0
- package/dist-cjs/index.js +4 -1
- package/dist-cjs/models/WilmaServiceException.js +3 -3
- package/dist-cjs/models/enums.js +45 -0
- package/dist-cjs/models/errors.js +43 -0
- package/dist-cjs/models/models_0.js +0 -96
- package/dist-cjs/runtimeConfig.browser.js +11 -11
- package/dist-cjs/runtimeConfig.js +22 -18
- package/dist-cjs/runtimeConfig.shared.js +30 -10
- package/dist-cjs/runtimeExtensions.js +6 -5
- package/dist-cjs/schemas/schemas_0.js +1110 -0
- package/dist-es/Wilma.js +27 -5
- package/dist-es/WilmaClient.js +30 -22
- package/dist-es/auth/httpAuthExtensionConfiguration.js +38 -0
- package/dist-es/auth/httpAuthSchemeProvider.js +46 -0
- package/dist-es/commands/CreateAgentCommand.js +9 -10
- package/dist-es/commands/CreateGuidelineCommand.js +9 -10
- package/dist-es/commands/CreateGuidelinesDirectoryCommand.js +9 -10
- package/dist-es/commands/CreateSkillCommand.js +16 -0
- package/dist-es/commands/CreateSkillFileUploadCommand.js +16 -0
- package/dist-es/commands/DeleteAgentCommand.js +9 -10
- package/dist-es/commands/DeleteChatCommand.js +9 -10
- package/dist-es/commands/DeleteFileCommand.js +16 -0
- package/dist-es/commands/DeleteGuidelineCommand.js +9 -10
- package/dist-es/commands/DeleteGuidelinesDirectoryCommand.js +9 -10
- package/dist-es/commands/DeleteSkillCommand.js +16 -0
- package/dist-es/commands/DeleteSkillFileCommand.js +16 -0
- package/dist-es/commands/DislikeAnswerCommand.js +9 -10
- package/dist-es/commands/DownloadFileCommand.js +16 -0
- package/dist-es/commands/ExecuteAgentCommand.js +9 -10
- package/dist-es/commands/GetAgentCommand.js +9 -10
- package/dist-es/commands/GetChatCommand.js +9 -10
- package/dist-es/commands/GetFileCommand.js +16 -0
- package/dist-es/commands/GetGuidelineCommand.js +9 -10
- package/dist-es/commands/GetOrganizationSettingsCommand.js +9 -10
- package/dist-es/commands/GetSettingsCommand.js +9 -10
- package/dist-es/commands/GetSkillCommand.js +16 -0
- package/dist-es/commands/GetSkillFileDownloadCommand.js +16 -0
- package/dist-es/commands/LikeAnswerCommand.js +9 -10
- package/dist-es/commands/ListAgentFeedbacksCommand.js +9 -10
- package/dist-es/commands/ListAgentsCommand.js +9 -10
- package/dist-es/commands/ListAgentsNamesCommand.js +9 -10
- package/dist-es/commands/ListChatsCommand.js +9 -10
- package/dist-es/commands/ListFeedbacksCommand.js +9 -10
- package/dist-es/commands/ListGuidelinesCommand.js +9 -10
- package/dist-es/commands/ListGuidelinesDirectoriesCommand.js +9 -10
- package/dist-es/commands/ListGuidelinesNamesCommand.js +9 -10
- package/dist-es/commands/ListSkillsCommand.js +16 -0
- package/dist-es/commands/PatchOrganizationSettingsCommand.js +9 -10
- package/dist-es/commands/PatchSettingsCommand.js +9 -10
- package/dist-es/commands/UpdateAgentCommand.js +9 -10
- package/dist-es/commands/UpdateGuidelineAccessCommand.js +9 -10
- package/dist-es/commands/UpdateGuidelineCommand.js +9 -10
- package/dist-es/commands/UpdateGuidelinesDirectoryCommand.js +9 -10
- package/dist-es/commands/UpdateSkillCommand.js +16 -0
- package/dist-es/commands/index.js +12 -1
- package/dist-es/endpoint/EndpointParameters.js +12 -0
- package/dist-es/endpoint/bdd.js +25 -0
- package/dist-es/endpoint/endpointResolver.js +12 -0
- package/dist-es/index.js +4 -1
- package/dist-es/models/WilmaServiceException.js +1 -1
- package/dist-es/models/enums.js +42 -0
- package/dist-es/models/errors.js +37 -0
- package/dist-es/models/models_0.js +1 -92
- package/dist-es/runtimeConfig.browser.js +7 -7
- package/dist-es/runtimeConfig.js +17 -13
- package/dist-es/runtimeConfig.shared.js +24 -4
- package/dist-es/runtimeExtensions.js +6 -5
- package/dist-es/schemas/schemas_0.js +1104 -0
- package/dist-types/Wilma.d.ts +108 -30
- package/dist-types/WilmaClient.d.ts +72 -43
- package/dist-types/auth/httpAuthExtensionConfiguration.d.ts +29 -0
- package/dist-types/auth/httpAuthSchemeProvider.d.ts +81 -0
- package/dist-types/commands/CreateAgentCommand.d.ts +103 -7
- package/dist-types/commands/CreateGuidelineCommand.d.ts +11 -7
- package/dist-types/commands/CreateGuidelinesDirectoryCommand.d.ts +11 -7
- package/dist-types/commands/CreateSkillCommand.d.ts +103 -0
- package/dist-types/commands/CreateSkillFileUploadCommand.d.ts +99 -0
- package/dist-types/commands/DeleteAgentCommand.d.ts +11 -7
- package/dist-types/commands/DeleteChatCommand.d.ts +11 -7
- package/dist-types/commands/DeleteFileCommand.d.ts +80 -0
- package/dist-types/commands/DeleteGuidelineCommand.d.ts +11 -7
- package/dist-types/commands/DeleteGuidelinesDirectoryCommand.d.ts +11 -7
- package/dist-types/commands/DeleteSkillCommand.d.ts +80 -0
- package/dist-types/commands/DeleteSkillFileCommand.d.ts +83 -0
- package/dist-types/commands/DislikeAnswerCommand.d.ts +11 -7
- package/dist-types/commands/DownloadFileCommand.d.ts +95 -0
- package/dist-types/commands/ExecuteAgentCommand.d.ts +28 -7
- package/dist-types/commands/GetAgentCommand.d.ts +57 -7
- package/dist-types/commands/GetChatCommand.d.ts +11 -7
- package/dist-types/commands/GetFileCommand.d.ts +93 -0
- package/dist-types/commands/GetGuidelineCommand.d.ts +11 -7
- package/dist-types/commands/GetOrganizationSettingsCommand.d.ts +11 -7
- package/dist-types/commands/GetSettingsCommand.d.ts +11 -7
- package/dist-types/commands/GetSkillCommand.d.ts +103 -0
- package/dist-types/commands/GetSkillFileDownloadCommand.d.ts +86 -0
- package/dist-types/commands/LikeAnswerCommand.d.ts +11 -7
- package/dist-types/commands/ListAgentFeedbacksCommand.d.ts +11 -7
- package/dist-types/commands/ListAgentsCommand.d.ts +57 -7
- package/dist-types/commands/ListAgentsNamesCommand.d.ts +11 -7
- package/dist-types/commands/ListChatsCommand.d.ts +11 -7
- package/dist-types/commands/ListFeedbacksCommand.d.ts +11 -7
- package/dist-types/commands/ListGuidelinesCommand.d.ts +11 -7
- package/dist-types/commands/ListGuidelinesDirectoriesCommand.d.ts +11 -7
- package/dist-types/commands/ListGuidelinesNamesCommand.d.ts +11 -7
- package/dist-types/commands/ListSkillsCommand.d.ts +92 -0
- package/dist-types/commands/PatchOrganizationSettingsCommand.d.ts +11 -7
- package/dist-types/commands/PatchSettingsCommand.d.ts +11 -7
- package/dist-types/commands/UpdateAgentCommand.d.ts +103 -7
- package/dist-types/commands/UpdateGuidelineAccessCommand.d.ts +11 -7
- package/dist-types/commands/UpdateGuidelineCommand.d.ts +11 -7
- package/dist-types/commands/UpdateGuidelinesDirectoryCommand.d.ts +11 -7
- package/dist-types/commands/UpdateSkillCommand.d.ts +106 -0
- package/dist-types/commands/index.d.ts +12 -1
- package/dist-types/endpoint/EndpointParameters.d.ts +41 -0
- package/dist-types/endpoint/bdd.d.ts +2 -0
- package/dist-types/endpoint/endpointResolver.d.ts +8 -0
- package/dist-types/extensionConfiguration.d.ts +4 -3
- package/dist-types/index.d.ts +5 -1
- package/dist-types/models/WilmaServiceException.d.ts +1 -1
- package/dist-types/models/enums.d.ts +129 -0
- package/dist-types/models/errors.d.ts +35 -0
- package/dist-types/models/models_0.d.ts +628 -153
- package/dist-types/runtimeConfig.browser.d.ts +35 -16
- package/dist-types/runtimeConfig.d.ts +34 -15
- package/dist-types/runtimeConfig.native.d.ts +36 -17
- package/dist-types/runtimeConfig.shared.d.ts +20 -3
- package/dist-types/runtimeExtensions.d.ts +1 -1
- package/dist-types/schemas/schemas_0.d.ts +172 -0
- package/package.json +14 -40
- package/dist-cjs/models/index.js +0 -4
- package/dist-cjs/protocols/Aws_restJson1.js +0 -1127
- package/dist-es/models/index.js +0 -1
- package/dist-es/protocols/Aws_restJson1.js +0 -1065
- package/dist-types/models/index.d.ts +0 -1
- package/dist-types/protocols/Aws_restJson1.d.ts +0 -263
|
@@ -0,0 +1,1110 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.DownloadFileInput$ = exports.DislikeAnswerOutput$ = exports.DislikeAnswerInput$ = exports.DeleteSkillOutput$ = exports.DeleteSkillInput$ = exports.DeleteSkillFileOutput$ = exports.DeleteSkillFileInput$ = exports.DeleteGuidelinesDirectoryOutput$ = exports.DeleteGuidelinesDirectoryInput$ = exports.DeleteGuidelineOutput$ = exports.DeleteGuidelineInput$ = exports.DeleteFileOutput$ = exports.DeleteFileInput$ = exports.DeleteChatOutput$ = exports.DeleteChatInput$ = exports.DeleteAgentOutput$ = exports.DeleteAgentInput$ = exports.CreateSkillOutput$ = exports.CreateSkillInput$ = exports.CreateSkillFileUploadOutput$ = exports.CreateSkillFileUploadInput$ = exports.CreateGuidelinesDirectoryOutput$ = exports.CreateGuidelinesDirectoryInput$ = exports.CreateGuidelineOutput$ = exports.CreateGuidelineInput$ = exports.CreateAgentOutput$ = exports.CreateAgentInput$ = exports.ChatHistory$ = exports.ChatFeedback$ = exports.Chat$ = exports.AgentWebSearchCapability$ = exports.AgentWebFetchCapability$ = exports.AgentVercelSandboxOptions$ = exports.AgentVariable$ = exports.AgentToolVariablePredefinedHandler$ = exports.AgentToolVariableGuidedHandler$ = exports.AgentToolVariableAutoHandler$ = exports.AgentToolVariable$ = exports.AgentTool$ = exports.AgentKnowledgeBase$ = exports.AgentInfo$ = exports.AgentExecutionResult$ = exports.AgentExecutionError$ = exports.AgentCallCapability$ = exports.Agent$ = exports.errorTypeRegistries = exports.ValidationException$ = exports.NotFoundException$ = exports.ForbiddenException$ = exports.WilmaServiceException$ = void 0;
|
|
4
|
+
exports.PatchSettingsOutput$ = exports.PatchSettingsInput$ = exports.PatchOrganizationSettingsOutput$ = exports.PatchOrganizationSettingsInput$ = exports.OrganizationToolIntegration$ = exports.OrganizationKnowledgeBaseIntegration$ = exports.OrganizationGuidelineIntegration$ = exports.OrganizationAgentIntegration$ = exports.ListSkillsOutput$ = exports.ListSkillsInput$ = exports.ListGuidelinesOutput$ = exports.ListGuidelinesNamesOutput$ = exports.ListGuidelinesNamesInput$ = exports.ListGuidelinesInput$ = exports.ListGuidelinesDirectoriesOutput$ = exports.ListGuidelinesDirectoriesInput$ = exports.ListFeedbacksOutput$ = exports.ListFeedbacksInput$ = exports.ListChatsOutput$ = exports.ListChatsInput$ = exports.ListAgentsOutput$ = exports.ListAgentsNamesOutput$ = exports.ListAgentsNamesInput$ = exports.ListAgentsInput$ = exports.ListAgentFeedbacksOutput$ = exports.ListAgentFeedbacksInput$ = exports.LikeAnswerOutput$ = exports.LikeAnswerInput$ = exports.GuidelineInfo$ = exports.GuidelineDirectoryInfo$ = exports.Guideline$ = exports.GetSkillOutput$ = exports.GetSkillInput$ = exports.GetSkillFileDownloadOutput$ = exports.GetSkillFileDownloadInput$ = exports.GetSettingsOutput$ = exports.GetSettingsInput$ = exports.GetOrganizationSettingsOutput$ = exports.GetOrganizationSettingsInput$ = exports.GetGuidelineOutput$ = exports.GetGuidelineInput$ = exports.GetFileOutput$ = exports.GetFileInput$ = exports.GetChatOutput$ = exports.GetChatInput$ = exports.GetAgentOutput$ = exports.GetAgentInput$ = exports.ExecuteAgentOutput$ = exports.ExecuteAgentInput$ = exports.DownloadFileOutput$ = void 0;
|
|
5
|
+
exports.ListAgentFeedbacks$ = exports.LikeAnswer$ = exports.GetSkillFileDownload$ = exports.GetSkill$ = exports.GetSettings$ = exports.GetOrganizationSettings$ = exports.GetGuideline$ = exports.GetFile$ = exports.GetChat$ = exports.GetAgent$ = exports.ExecuteAgent$ = exports.DownloadFile$ = exports.DislikeAnswer$ = exports.DeleteSkillFile$ = exports.DeleteSkill$ = exports.DeleteGuidelinesDirectory$ = exports.DeleteGuideline$ = exports.DeleteFile$ = exports.DeleteChat$ = exports.DeleteAgent$ = exports.CreateSkillFileUpload$ = exports.CreateSkill$ = exports.CreateGuidelinesDirectory$ = exports.CreateGuideline$ = exports.CreateAgent$ = exports.WilmaGrantPrincipal$ = exports.AgentToolVariableHandler$ = exports.AgentSandboxCapability$ = exports.AgentCapability$ = exports.WilmaGrant$ = exports.WilmaFile$ = exports.WilmaAccess$ = exports.WebSearchUserLocation$ = exports.UserStyleSettings$ = exports.UserIntegrationsSettings$ = exports.UserGuidelinesSettings$ = exports.UserAboutSettings$ = exports.UpdateSkillOutput$ = exports.UpdateSkillInput$ = exports.UpdateGuidelinesDirectoryOutput$ = exports.UpdateGuidelinesDirectoryInput$ = exports.UpdateGuidelineOutput$ = exports.UpdateGuidelineInput$ = exports.UpdateGuidelineAccessOutput$ = exports.UpdateGuidelineAccessInput$ = exports.UpdateAgentOutput$ = exports.UpdateAgentInput$ = exports.SkillInfo$ = exports.SkillFile$ = exports.Skill$ = void 0;
|
|
6
|
+
exports.UpdateSkill$ = exports.UpdateGuidelinesDirectory$ = exports.UpdateGuidelineAccess$ = exports.UpdateGuideline$ = exports.UpdateAgent$ = exports.PatchSettings$ = exports.PatchOrganizationSettings$ = exports.ListSkills$ = exports.ListGuidelinesNames$ = exports.ListGuidelinesDirectories$ = exports.ListGuidelines$ = exports.ListFeedbacks$ = exports.ListChats$ = exports.ListAgentsNames$ = exports.ListAgents$ = void 0;
|
|
7
|
+
const _A = "Agent";
|
|
8
|
+
const _AC = "AgentCapability";
|
|
9
|
+
const _ACC = "AgentCallCapability";
|
|
10
|
+
const _ACL = "AgentCapabilitiesList";
|
|
11
|
+
const _AEE = "AgentExecutionError";
|
|
12
|
+
const _AER = "AgentExecutionResult";
|
|
13
|
+
const _AI = "AgentInfo";
|
|
14
|
+
const _AIL = "AgentsInfoList";
|
|
15
|
+
const _AKB = "AgentKnowledgeBase";
|
|
16
|
+
const _AL = "AgentsList";
|
|
17
|
+
const _ASC = "AgentSandboxCapability";
|
|
18
|
+
const _AT = "AgentTool";
|
|
19
|
+
const _ATV = "AgentToolVariable";
|
|
20
|
+
const _ATVAH = "AgentToolVariableAutoHandler";
|
|
21
|
+
const _ATVGH = "AgentToolVariableGuidedHandler";
|
|
22
|
+
const _ATVH = "AgentToolVariableHandler";
|
|
23
|
+
const _ATVL = "AgentToolVariablesList";
|
|
24
|
+
const _ATVPH = "AgentToolVariablePredefinedHandler";
|
|
25
|
+
const _AV = "AgentVariable";
|
|
26
|
+
const _AVL = "AgentVariablesList";
|
|
27
|
+
const _AVSO = "AgentVercelSandboxOptions";
|
|
28
|
+
const _AWFC = "AgentWebFetchCapability";
|
|
29
|
+
const _AWSC = "AgentWebSearchCapability";
|
|
30
|
+
const _C = "Chat";
|
|
31
|
+
const _CA = "CreateAgent";
|
|
32
|
+
const _CAI = "CreateAgentInput";
|
|
33
|
+
const _CAO = "CreateAgentOutput";
|
|
34
|
+
const _CF = "ChatFeedback";
|
|
35
|
+
const _CFL = "ChatFeedbacksList";
|
|
36
|
+
const _CG = "CreateGuideline";
|
|
37
|
+
const _CGD = "CreateGuidelinesDirectory";
|
|
38
|
+
const _CGDI = "CreateGuidelinesDirectoryInput";
|
|
39
|
+
const _CGDO = "CreateGuidelinesDirectoryOutput";
|
|
40
|
+
const _CGI = "CreateGuidelineInput";
|
|
41
|
+
const _CGO = "CreateGuidelineOutput";
|
|
42
|
+
const _CH = "ChatHistory";
|
|
43
|
+
const _CL = "ChatsList";
|
|
44
|
+
const _CS = "CreateSkill";
|
|
45
|
+
const _CSFU = "CreateSkillFileUpload";
|
|
46
|
+
const _CSFUI = "CreateSkillFileUploadInput";
|
|
47
|
+
const _CSFUO = "CreateSkillFileUploadOutput";
|
|
48
|
+
const _CSI = "CreateSkillInput";
|
|
49
|
+
const _CSO = "CreateSkillOutput";
|
|
50
|
+
const _DA = "DeleteAgent";
|
|
51
|
+
const _DAI = "DeleteAgentInput";
|
|
52
|
+
const _DAIi = "DislikeAnswerInput";
|
|
53
|
+
const _DAO = "DeleteAgentOutput";
|
|
54
|
+
const _DAOi = "DislikeAnswerOutput";
|
|
55
|
+
const _DAi = "DislikeAnswer";
|
|
56
|
+
const _DC = "DeleteChat";
|
|
57
|
+
const _DCI = "DeleteChatInput";
|
|
58
|
+
const _DCO = "DeleteChatOutput";
|
|
59
|
+
const _DF = "DeleteFile";
|
|
60
|
+
const _DFI = "DeleteFileInput";
|
|
61
|
+
const _DFIo = "DownloadFileInput";
|
|
62
|
+
const _DFO = "DeleteFileOutput";
|
|
63
|
+
const _DFOo = "DownloadFileOutput";
|
|
64
|
+
const _DFo = "DownloadFile";
|
|
65
|
+
const _DG = "DeleteGuideline";
|
|
66
|
+
const _DGD = "DeleteGuidelinesDirectory";
|
|
67
|
+
const _DGDI = "DeleteGuidelinesDirectoryInput";
|
|
68
|
+
const _DGDO = "DeleteGuidelinesDirectoryOutput";
|
|
69
|
+
const _DGI = "DeleteGuidelineInput";
|
|
70
|
+
const _DGO = "DeleteGuidelineOutput";
|
|
71
|
+
const _DS = "DeleteSkill";
|
|
72
|
+
const _DSF = "DeleteSkillFile";
|
|
73
|
+
const _DSFI = "DeleteSkillFileInput";
|
|
74
|
+
const _DSFO = "DeleteSkillFileOutput";
|
|
75
|
+
const _DSI = "DeleteSkillInput";
|
|
76
|
+
const _DSO = "DeleteSkillOutput";
|
|
77
|
+
const _EA = "ExecuteAgent";
|
|
78
|
+
const _EAI = "ExecuteAgentInput";
|
|
79
|
+
const _EAO = "ExecuteAgentOutput";
|
|
80
|
+
const _FE = "ForbiddenException";
|
|
81
|
+
const _G = "Guideline";
|
|
82
|
+
const _GA = "GetAgent";
|
|
83
|
+
const _GAI = "GetAgentInput";
|
|
84
|
+
const _GAO = "GetAgentOutput";
|
|
85
|
+
const _GC = "GetChat";
|
|
86
|
+
const _GCI = "GetChatInput";
|
|
87
|
+
const _GCO = "GetChatOutput";
|
|
88
|
+
const _GDI = "GuidelineDirectoryInfo";
|
|
89
|
+
const _GDL = "GuidelineDirectoriesList";
|
|
90
|
+
const _GF = "GetFile";
|
|
91
|
+
const _GFI = "GetFileInput";
|
|
92
|
+
const _GFO = "GetFileOutput";
|
|
93
|
+
const _GG = "GetGuideline";
|
|
94
|
+
const _GGI = "GetGuidelineInput";
|
|
95
|
+
const _GGO = "GetGuidelineOutput";
|
|
96
|
+
const _GI = "GuidelineInfo";
|
|
97
|
+
const _GIL = "GuidelinesInfoList";
|
|
98
|
+
const _GL = "GuidelinesList";
|
|
99
|
+
const _GOS = "GetOrganizationSettings";
|
|
100
|
+
const _GOSI = "GetOrganizationSettingsInput";
|
|
101
|
+
const _GOSO = "GetOrganizationSettingsOutput";
|
|
102
|
+
const _GS = "GetSettings";
|
|
103
|
+
const _GSFD = "GetSkillFileDownload";
|
|
104
|
+
const _GSFDI = "GetSkillFileDownloadInput";
|
|
105
|
+
const _GSFDO = "GetSkillFileDownloadOutput";
|
|
106
|
+
const _GSI = "GetSettingsInput";
|
|
107
|
+
const _GSIe = "GetSkillInput";
|
|
108
|
+
const _GSO = "GetSettingsOutput";
|
|
109
|
+
const _GSOe = "GetSkillOutput";
|
|
110
|
+
const _GSe = "GetSkill";
|
|
111
|
+
const _LA = "LikeAnswer";
|
|
112
|
+
const _LAF = "ListAgentFeedbacks";
|
|
113
|
+
const _LAFI = "ListAgentFeedbacksInput";
|
|
114
|
+
const _LAFO = "ListAgentFeedbacksOutput";
|
|
115
|
+
const _LAI = "LikeAnswerInput";
|
|
116
|
+
const _LAIi = "ListAgentsInput";
|
|
117
|
+
const _LAN = "ListAgentsNames";
|
|
118
|
+
const _LANI = "ListAgentsNamesInput";
|
|
119
|
+
const _LANO = "ListAgentsNamesOutput";
|
|
120
|
+
const _LAO = "LikeAnswerOutput";
|
|
121
|
+
const _LAOi = "ListAgentsOutput";
|
|
122
|
+
const _LAi = "ListAgents";
|
|
123
|
+
const _LC = "ListChats";
|
|
124
|
+
const _LCI = "ListChatsInput";
|
|
125
|
+
const _LCO = "ListChatsOutput";
|
|
126
|
+
const _LF = "ListFeedbacks";
|
|
127
|
+
const _LFI = "ListFeedbacksInput";
|
|
128
|
+
const _LFO = "ListFeedbacksOutput";
|
|
129
|
+
const _LG = "ListGuidelines";
|
|
130
|
+
const _LGD = "ListGuidelinesDirectories";
|
|
131
|
+
const _LGDI = "ListGuidelinesDirectoriesInput";
|
|
132
|
+
const _LGDO = "ListGuidelinesDirectoriesOutput";
|
|
133
|
+
const _LGI = "ListGuidelinesInput";
|
|
134
|
+
const _LGN = "ListGuidelinesNames";
|
|
135
|
+
const _LGNI = "ListGuidelinesNamesInput";
|
|
136
|
+
const _LGNO = "ListGuidelinesNamesOutput";
|
|
137
|
+
const _LGO = "ListGuidelinesOutput";
|
|
138
|
+
const _LS = "ListSkills";
|
|
139
|
+
const _LSI = "ListSkillsInput";
|
|
140
|
+
const _LSO = "ListSkillsOutput";
|
|
141
|
+
const _NFE = "NotFoundException";
|
|
142
|
+
const _OAI = "OrganizationAgentIntegration";
|
|
143
|
+
const _OAIL = "OrganizationAgentIntegrationList";
|
|
144
|
+
const _OGI = "OrganizationGuidelineIntegration";
|
|
145
|
+
const _OGIL = "OrganizationGuidelineIntegrationList";
|
|
146
|
+
const _OKBI = "OrganizationKnowledgeBaseIntegration";
|
|
147
|
+
const _OKBIL = "OrganizationKnowledgeBaseIntegrationList";
|
|
148
|
+
const _OTI = "OrganizationToolIntegration";
|
|
149
|
+
const _OTIL = "OrganizationToolIntegrationList";
|
|
150
|
+
const _POS = "PatchOrganizationSettings";
|
|
151
|
+
const _POSI = "PatchOrganizationSettingsInput";
|
|
152
|
+
const _POSO = "PatchOrganizationSettingsOutput";
|
|
153
|
+
const _PS = "PatchSettings";
|
|
154
|
+
const _PSI = "PatchSettingsInput";
|
|
155
|
+
const _PSO = "PatchSettingsOutput";
|
|
156
|
+
const _S = "Skill";
|
|
157
|
+
const _SF = "SkillFile";
|
|
158
|
+
const _SFL = "SkillFilesList";
|
|
159
|
+
const _SI = "SkillInfo";
|
|
160
|
+
const _SIL = "SkillsInfoList";
|
|
161
|
+
const _UA = "UpdateAgent";
|
|
162
|
+
const _UAI = "UpdateAgentInput";
|
|
163
|
+
const _UAO = "UpdateAgentOutput";
|
|
164
|
+
const _UAS = "UserAboutSettings";
|
|
165
|
+
const _UG = "UpdateGuideline";
|
|
166
|
+
const _UGA = "UpdateGuidelineAccess";
|
|
167
|
+
const _UGAI = "UpdateGuidelineAccessInput";
|
|
168
|
+
const _UGAO = "UpdateGuidelineAccessOutput";
|
|
169
|
+
const _UGD = "UpdateGuidelinesDirectory";
|
|
170
|
+
const _UGDI = "UpdateGuidelinesDirectoryInput";
|
|
171
|
+
const _UGDO = "UpdateGuidelinesDirectoryOutput";
|
|
172
|
+
const _UGI = "UpdateGuidelineInput";
|
|
173
|
+
const _UGO = "UpdateGuidelineOutput";
|
|
174
|
+
const _UGS = "UserGuidelinesSettings";
|
|
175
|
+
const _UIS = "UserIntegrationsSettings";
|
|
176
|
+
const _US = "UpdateSkill";
|
|
177
|
+
const _USI = "UpdateSkillInput";
|
|
178
|
+
const _USO = "UpdateSkillOutput";
|
|
179
|
+
const _USS = "UserStyleSettings";
|
|
180
|
+
const _VE = "ValidationException";
|
|
181
|
+
const _WA = "WilmaAccess";
|
|
182
|
+
const _WF = "WilmaFile";
|
|
183
|
+
const _WFL = "WilmaFileList";
|
|
184
|
+
const _WG = "WilmaGrant";
|
|
185
|
+
const _WGL = "WilmaGrantList";
|
|
186
|
+
const _WGP = "WilmaGrantPrincipal";
|
|
187
|
+
const _WSUL = "WebSearchUserLocation";
|
|
188
|
+
const _a = "agent";
|
|
189
|
+
const _aD = "allowedDomains";
|
|
190
|
+
const _aI = "agentId";
|
|
191
|
+
const _ab = "about";
|
|
192
|
+
const _ac = "access";
|
|
193
|
+
const _ag = "agents";
|
|
194
|
+
const _au = "auto";
|
|
195
|
+
const _c = "client";
|
|
196
|
+
const _cA = "createdAt";
|
|
197
|
+
const _cB = "createdBy";
|
|
198
|
+
const _cBN = "createdByName";
|
|
199
|
+
const _cI = "chatId";
|
|
200
|
+
const _cP = "currentPath";
|
|
201
|
+
const _cS = "contextSize";
|
|
202
|
+
const _cT = "contentType";
|
|
203
|
+
const _ca = "category";
|
|
204
|
+
const _cap = "capabilities";
|
|
205
|
+
const _ch = "checksum";
|
|
206
|
+
const _cha = "chat";
|
|
207
|
+
const _chat = "chats";
|
|
208
|
+
const _ci = "city";
|
|
209
|
+
const _co = "company";
|
|
210
|
+
const _con = "content";
|
|
211
|
+
const _cou = "country";
|
|
212
|
+
const _d = "description";
|
|
213
|
+
const _da = "data";
|
|
214
|
+
const _di = "directory";
|
|
215
|
+
const _dir = "directories";
|
|
216
|
+
const _dis = "disabled";
|
|
217
|
+
const _e = "error";
|
|
218
|
+
const _eA = "expiresAt";
|
|
219
|
+
const _eSK = "exclusiveStartKey";
|
|
220
|
+
const _ex = "executable";
|
|
221
|
+
const _f = "files";
|
|
222
|
+
const _fC = "fileCount";
|
|
223
|
+
const _fI = "fileId";
|
|
224
|
+
const _fe = "feedbacks";
|
|
225
|
+
const _fi = "file";
|
|
226
|
+
const _g = "guidelines";
|
|
227
|
+
const _gI = "guidelineId";
|
|
228
|
+
const _gIr = "groupId";
|
|
229
|
+
const _gS = "guidelinesSettings";
|
|
230
|
+
const _gr = "grants";
|
|
231
|
+
const _gu = "guideline";
|
|
232
|
+
const _gui = "guided";
|
|
233
|
+
const _h = "handler";
|
|
234
|
+
const _hE = "httpError";
|
|
235
|
+
const _hQ = "httpQuery";
|
|
236
|
+
const _hi = "history";
|
|
237
|
+
const _ht = "http";
|
|
238
|
+
const _i = "instructions";
|
|
239
|
+
const _id = "id";
|
|
240
|
+
const _in = "integrations";
|
|
241
|
+
const _k = "kind";
|
|
242
|
+
const _kB = "knowledgeBases";
|
|
243
|
+
const _kBI = "knowledgeBaseId";
|
|
244
|
+
const _kb = "kb";
|
|
245
|
+
const _lEK = "lastEvaluatedKey";
|
|
246
|
+
const _m = "message";
|
|
247
|
+
const _mI = "messageId";
|
|
248
|
+
const _me = "mentions";
|
|
249
|
+
const _mes = "messages";
|
|
250
|
+
const _mo = "model";
|
|
251
|
+
const _n = "name";
|
|
252
|
+
const _nP = "newPath";
|
|
253
|
+
const _ne = "network";
|
|
254
|
+
const _o = "output";
|
|
255
|
+
const _op = "optional";
|
|
256
|
+
const _opt = "options";
|
|
257
|
+
const _p = "path";
|
|
258
|
+
const _pAI = "parentAgentId";
|
|
259
|
+
const _pSI = "parentSessionId";
|
|
260
|
+
const _pe = "permission";
|
|
261
|
+
const _pr = "principal";
|
|
262
|
+
const _pre = "predefined";
|
|
263
|
+
const _r = "result";
|
|
264
|
+
const _re = "region";
|
|
265
|
+
const _s = "smithy.ts.sdk.synthetic.wildix.wim.wilma";
|
|
266
|
+
const _sI = "skillId";
|
|
267
|
+
const _sIe = "sessionId";
|
|
268
|
+
const _sa = "sandbox";
|
|
269
|
+
const _sc = "score";
|
|
270
|
+
const _sco = "scope";
|
|
271
|
+
const _se = "service";
|
|
272
|
+
const _si = "size";
|
|
273
|
+
const _sk = "skills";
|
|
274
|
+
const _ski = "skill";
|
|
275
|
+
const _st = "style";
|
|
276
|
+
const _t = "type";
|
|
277
|
+
const _tI = "toolId";
|
|
278
|
+
const _ta = "target";
|
|
279
|
+
const _te = "text";
|
|
280
|
+
const _ti = "title";
|
|
281
|
+
const _tim = "timezone";
|
|
282
|
+
const _to = "tools";
|
|
283
|
+
const _ton = "tone";
|
|
284
|
+
const _too = "tool";
|
|
285
|
+
const _u = "user";
|
|
286
|
+
const _uA = "updatedAt";
|
|
287
|
+
const _uI = "userId";
|
|
288
|
+
const _uL = "userLocation";
|
|
289
|
+
const _uU = "uploadUrl";
|
|
290
|
+
const _ur = "url";
|
|
291
|
+
const _v = "variables";
|
|
292
|
+
const _vc = "vcpus";
|
|
293
|
+
const _ve = "version";
|
|
294
|
+
const _ver = "vercel";
|
|
295
|
+
const _vi = "visibility";
|
|
296
|
+
const _wF = "webFetch";
|
|
297
|
+
const _wS = "webSearch";
|
|
298
|
+
const n0 = "smithy.framework";
|
|
299
|
+
const n1 = "wildix.wim.wilma";
|
|
300
|
+
const schema_1 = require("@smithy/core/schema");
|
|
301
|
+
const errors_1 = require("../models/errors");
|
|
302
|
+
const WilmaServiceException_1 = require("../models/WilmaServiceException");
|
|
303
|
+
const _s_registry = schema_1.TypeRegistry.for(_s);
|
|
304
|
+
exports.WilmaServiceException$ = [-3, _s, "WilmaServiceException", 0, [], []];
|
|
305
|
+
_s_registry.registerError(exports.WilmaServiceException$, WilmaServiceException_1.WilmaServiceException);
|
|
306
|
+
const n0_registry = schema_1.TypeRegistry.for(n0);
|
|
307
|
+
exports.ForbiddenException$ = [-3, n0, _FE,
|
|
308
|
+
{ [_e]: _c, [_hE]: 403 },
|
|
309
|
+
[_m],
|
|
310
|
+
[0], 1
|
|
311
|
+
];
|
|
312
|
+
n0_registry.registerError(exports.ForbiddenException$, errors_1.ForbiddenException);
|
|
313
|
+
exports.NotFoundException$ = [-3, n0, _NFE,
|
|
314
|
+
{ [_e]: _c, [_hE]: 404 },
|
|
315
|
+
[_m],
|
|
316
|
+
[0], 1
|
|
317
|
+
];
|
|
318
|
+
n0_registry.registerError(exports.NotFoundException$, errors_1.NotFoundException);
|
|
319
|
+
exports.ValidationException$ = [-3, n0, _VE,
|
|
320
|
+
{ [_e]: _c, [_hE]: 400 },
|
|
321
|
+
[_m],
|
|
322
|
+
[0], 1
|
|
323
|
+
];
|
|
324
|
+
n0_registry.registerError(exports.ValidationException$, errors_1.ValidationException);
|
|
325
|
+
exports.errorTypeRegistries = [
|
|
326
|
+
_s_registry,
|
|
327
|
+
n0_registry,
|
|
328
|
+
];
|
|
329
|
+
exports.Agent$ = [3, n1, _A,
|
|
330
|
+
0,
|
|
331
|
+
[_n, _i, _id, _cA, _ca, _g, _sk, _v, _cap, _mo, _uA],
|
|
332
|
+
[0, 0, 0, 0, 0, 64 | 0, 64 | 0, () => AgentVariablesList, () => AgentCapabilitiesList, 0, 0], 4
|
|
333
|
+
];
|
|
334
|
+
exports.AgentCallCapability$ = [3, n1, _ACC,
|
|
335
|
+
0,
|
|
336
|
+
[_aI, _v],
|
|
337
|
+
[0, () => AgentToolVariablesList], 1
|
|
338
|
+
];
|
|
339
|
+
exports.AgentExecutionError$ = [3, n1, _AEE,
|
|
340
|
+
0,
|
|
341
|
+
[_m],
|
|
342
|
+
[0], 1
|
|
343
|
+
];
|
|
344
|
+
exports.AgentExecutionResult$ = [3, n1, _AER,
|
|
345
|
+
0,
|
|
346
|
+
[_o, _e, _f],
|
|
347
|
+
[15, () => exports.AgentExecutionError$, () => WilmaFileList], 2
|
|
348
|
+
];
|
|
349
|
+
exports.AgentInfo$ = [3, n1, _AI,
|
|
350
|
+
0,
|
|
351
|
+
[_id, _n, _mo, _ca],
|
|
352
|
+
[0, 0, 0, 0], 2
|
|
353
|
+
];
|
|
354
|
+
exports.AgentKnowledgeBase$ = [3, n1, _AKB,
|
|
355
|
+
0,
|
|
356
|
+
[_kBI, _i],
|
|
357
|
+
[0, 0]
|
|
358
|
+
];
|
|
359
|
+
exports.AgentTool$ = [3, n1, _AT,
|
|
360
|
+
0,
|
|
361
|
+
[_id, _v],
|
|
362
|
+
[0, () => AgentToolVariablesList], 1
|
|
363
|
+
];
|
|
364
|
+
exports.AgentToolVariable$ = [3, n1, _ATV,
|
|
365
|
+
0,
|
|
366
|
+
[_n, _h],
|
|
367
|
+
[0, () => exports.AgentToolVariableHandler$], 1
|
|
368
|
+
];
|
|
369
|
+
exports.AgentToolVariableAutoHandler$ = [3, n1, _ATVAH,
|
|
370
|
+
0,
|
|
371
|
+
[],
|
|
372
|
+
[]
|
|
373
|
+
];
|
|
374
|
+
exports.AgentToolVariableGuidedHandler$ = [3, n1, _ATVGH,
|
|
375
|
+
0,
|
|
376
|
+
[_d],
|
|
377
|
+
[0], 1
|
|
378
|
+
];
|
|
379
|
+
exports.AgentToolVariablePredefinedHandler$ = [3, n1, _ATVPH,
|
|
380
|
+
0,
|
|
381
|
+
[_d],
|
|
382
|
+
[0], 1
|
|
383
|
+
];
|
|
384
|
+
exports.AgentVariable$ = [3, n1, _AV,
|
|
385
|
+
0,
|
|
386
|
+
[_n, _t, _op],
|
|
387
|
+
[0, 0, 2], 3
|
|
388
|
+
];
|
|
389
|
+
exports.AgentVercelSandboxOptions$ = [3, n1, _AVSO,
|
|
390
|
+
0,
|
|
391
|
+
[_vc, _ne, _aD],
|
|
392
|
+
[1, 0, 64 | 0]
|
|
393
|
+
];
|
|
394
|
+
exports.AgentWebFetchCapability$ = [3, n1, _AWFC,
|
|
395
|
+
0,
|
|
396
|
+
[_aD],
|
|
397
|
+
[64 | 0]
|
|
398
|
+
];
|
|
399
|
+
exports.AgentWebSearchCapability$ = [3, n1, _AWSC,
|
|
400
|
+
0,
|
|
401
|
+
[_cS, _aD, _uL],
|
|
402
|
+
[0, 64 | 0, () => exports.WebSearchUserLocation$]
|
|
403
|
+
];
|
|
404
|
+
exports.Chat$ = [3, n1, _C,
|
|
405
|
+
0,
|
|
406
|
+
[_id, _cA, _aI, _ti, _ta, _opt, _me, _uA],
|
|
407
|
+
[0, 0, 0, 0, 0, 15, 15, 0], 2
|
|
408
|
+
];
|
|
409
|
+
exports.ChatFeedback$ = [3, n1, _CF,
|
|
410
|
+
0,
|
|
411
|
+
[_id, _te, _sc, _cA],
|
|
412
|
+
[0, 0, 0, 0], 4
|
|
413
|
+
];
|
|
414
|
+
exports.ChatHistory$ = [3, n1, _CH,
|
|
415
|
+
0,
|
|
416
|
+
[_ve, _mes, _me],
|
|
417
|
+
[0, 64 | 15, 64 | 15], 2
|
|
418
|
+
];
|
|
419
|
+
exports.CreateAgentInput$ = [3, n1, _CAI,
|
|
420
|
+
0,
|
|
421
|
+
[_n, _i, _ca, _g, _sk, _v, _cap, _mo, _co],
|
|
422
|
+
[0, 0, 0, 64 | 0, 64 | 0, () => AgentVariablesList, () => AgentCapabilitiesList, 0, [0, { [_hQ]: _co }]], 2
|
|
423
|
+
];
|
|
424
|
+
exports.CreateAgentOutput$ = [3, n1, _CAO,
|
|
425
|
+
0,
|
|
426
|
+
[_a],
|
|
427
|
+
[() => exports.Agent$], 1
|
|
428
|
+
];
|
|
429
|
+
exports.CreateGuidelineInput$ = [3, n1, _CGI,
|
|
430
|
+
0,
|
|
431
|
+
[_n, _d, _con, _sco, _di, _co, _u, _ac],
|
|
432
|
+
[0, 0, 0, 0, 0, [0, { [_hQ]: _co }], [0, { [_hQ]: _u }], () => exports.WilmaAccess$], 4
|
|
433
|
+
];
|
|
434
|
+
exports.CreateGuidelineOutput$ = [3, n1, _CGO,
|
|
435
|
+
0,
|
|
436
|
+
[_gu],
|
|
437
|
+
[() => exports.Guideline$], 1
|
|
438
|
+
];
|
|
439
|
+
exports.CreateGuidelinesDirectoryInput$ = [3, n1, _CGDI,
|
|
440
|
+
0,
|
|
441
|
+
[_p, _co, _u],
|
|
442
|
+
[0, [0, { [_hQ]: _co }], [0, { [_hQ]: _u }]], 1
|
|
443
|
+
];
|
|
444
|
+
exports.CreateGuidelinesDirectoryOutput$ = [3, n1, _CGDO,
|
|
445
|
+
0,
|
|
446
|
+
[_di],
|
|
447
|
+
[() => exports.GuidelineDirectoryInfo$], 1
|
|
448
|
+
];
|
|
449
|
+
exports.CreateSkillFileUploadInput$ = [3, n1, _CSFUI,
|
|
450
|
+
0,
|
|
451
|
+
[_sI, _p, _k, _si, _ch, _co, _u, _cT, _ex],
|
|
452
|
+
[[0, 1], 0, 0, 1, 0, [0, { [_hQ]: _co }], [0, { [_hQ]: _u }], 0, 2], 5
|
|
453
|
+
];
|
|
454
|
+
exports.CreateSkillFileUploadOutput$ = [3, n1, _CSFUO,
|
|
455
|
+
0,
|
|
456
|
+
[_fi, _uU, _eA],
|
|
457
|
+
[() => exports.SkillFile$, 0, 0], 3
|
|
458
|
+
];
|
|
459
|
+
exports.CreateSkillInput$ = [3, n1, _CSI,
|
|
460
|
+
0,
|
|
461
|
+
[_n, _d, _con, _co, _u],
|
|
462
|
+
[0, 0, 0, [0, { [_hQ]: _co }], [0, { [_hQ]: _u }]], 3
|
|
463
|
+
];
|
|
464
|
+
exports.CreateSkillOutput$ = [3, n1, _CSO,
|
|
465
|
+
0,
|
|
466
|
+
[_ski],
|
|
467
|
+
[() => exports.Skill$], 1
|
|
468
|
+
];
|
|
469
|
+
exports.DeleteAgentInput$ = [3, n1, _DAI,
|
|
470
|
+
0,
|
|
471
|
+
[_aI, _co],
|
|
472
|
+
[[0, 1], [0, { [_hQ]: _co }]], 1
|
|
473
|
+
];
|
|
474
|
+
exports.DeleteAgentOutput$ = [3, n1, _DAO,
|
|
475
|
+
0,
|
|
476
|
+
[],
|
|
477
|
+
[]
|
|
478
|
+
];
|
|
479
|
+
exports.DeleteChatInput$ = [3, n1, _DCI,
|
|
480
|
+
0,
|
|
481
|
+
[_cI, _co, _u],
|
|
482
|
+
[[0, 1], [0, { [_hQ]: _co }], [0, { [_hQ]: _u }]], 1
|
|
483
|
+
];
|
|
484
|
+
exports.DeleteChatOutput$ = [3, n1, _DCO,
|
|
485
|
+
0,
|
|
486
|
+
[],
|
|
487
|
+
[]
|
|
488
|
+
];
|
|
489
|
+
exports.DeleteFileInput$ = [3, n1, _DFI,
|
|
490
|
+
0,
|
|
491
|
+
[_fI, _co, _u],
|
|
492
|
+
[[0, 1], [0, { [_hQ]: _co }], [0, { [_hQ]: _u }]], 1
|
|
493
|
+
];
|
|
494
|
+
exports.DeleteFileOutput$ = [3, n1, _DFO,
|
|
495
|
+
0,
|
|
496
|
+
[],
|
|
497
|
+
[]
|
|
498
|
+
];
|
|
499
|
+
exports.DeleteGuidelineInput$ = [3, n1, _DGI,
|
|
500
|
+
0,
|
|
501
|
+
[_gI, _co, _u],
|
|
502
|
+
[[0, 1], [0, { [_hQ]: _co }], [0, { [_hQ]: _u }]], 1
|
|
503
|
+
];
|
|
504
|
+
exports.DeleteGuidelineOutput$ = [3, n1, _DGO,
|
|
505
|
+
0,
|
|
506
|
+
[],
|
|
507
|
+
[]
|
|
508
|
+
];
|
|
509
|
+
exports.DeleteGuidelinesDirectoryInput$ = [3, n1, _DGDI,
|
|
510
|
+
0,
|
|
511
|
+
[_p, _co, _u],
|
|
512
|
+
[[0, { [_hQ]: _p }], [0, { [_hQ]: _co }], [0, { [_hQ]: _u }]], 1
|
|
513
|
+
];
|
|
514
|
+
exports.DeleteGuidelinesDirectoryOutput$ = [3, n1, _DGDO,
|
|
515
|
+
0,
|
|
516
|
+
[],
|
|
517
|
+
[]
|
|
518
|
+
];
|
|
519
|
+
exports.DeleteSkillFileInput$ = [3, n1, _DSFI,
|
|
520
|
+
0,
|
|
521
|
+
[_sI, _p, _co, _u],
|
|
522
|
+
[[0, 1], [0, 1], [0, { [_hQ]: _co }], [0, { [_hQ]: _u }]], 2
|
|
523
|
+
];
|
|
524
|
+
exports.DeleteSkillFileOutput$ = [3, n1, _DSFO,
|
|
525
|
+
0,
|
|
526
|
+
[],
|
|
527
|
+
[]
|
|
528
|
+
];
|
|
529
|
+
exports.DeleteSkillInput$ = [3, n1, _DSI,
|
|
530
|
+
0,
|
|
531
|
+
[_sI, _co, _u],
|
|
532
|
+
[[0, 1], [0, { [_hQ]: _co }], [0, { [_hQ]: _u }]], 1
|
|
533
|
+
];
|
|
534
|
+
exports.DeleteSkillOutput$ = [3, n1, _DSO,
|
|
535
|
+
0,
|
|
536
|
+
[],
|
|
537
|
+
[]
|
|
538
|
+
];
|
|
539
|
+
exports.DislikeAnswerInput$ = [3, n1, _DAIi,
|
|
540
|
+
0,
|
|
541
|
+
[_cI, _mI, _te, _co, _u],
|
|
542
|
+
[0, 0, 0, [0, { [_hQ]: _co }], [0, { [_hQ]: _u }]], 3
|
|
543
|
+
];
|
|
544
|
+
exports.DislikeAnswerOutput$ = [3, n1, _DAOi,
|
|
545
|
+
0,
|
|
546
|
+
[],
|
|
547
|
+
[]
|
|
548
|
+
];
|
|
549
|
+
exports.DownloadFileInput$ = [3, n1, _DFIo,
|
|
550
|
+
0,
|
|
551
|
+
[_fI, _co, _u],
|
|
552
|
+
[[0, 1], [0, { [_hQ]: _co }], [0, { [_hQ]: _u }]], 1
|
|
553
|
+
];
|
|
554
|
+
exports.DownloadFileOutput$ = [3, n1, _DFOo,
|
|
555
|
+
0,
|
|
556
|
+
[_ur, _eA, _fi],
|
|
557
|
+
[0, 0, () => exports.WilmaFile$], 3
|
|
558
|
+
];
|
|
559
|
+
exports.ExecuteAgentInput$ = [3, n1, _EAI,
|
|
560
|
+
0,
|
|
561
|
+
[_aI, _co, _da, _v, _se, _u, _pAI, _pSI, _f],
|
|
562
|
+
[[0, 1], [0, { [_hQ]: _co }], 0, 15, 0, 0, 0, 0, 64 | 0], 1
|
|
563
|
+
];
|
|
564
|
+
exports.ExecuteAgentOutput$ = [3, n1, _EAO,
|
|
565
|
+
0,
|
|
566
|
+
[_r],
|
|
567
|
+
[() => exports.AgentExecutionResult$], 1
|
|
568
|
+
];
|
|
569
|
+
exports.GetAgentInput$ = [3, n1, _GAI,
|
|
570
|
+
0,
|
|
571
|
+
[_aI, _co],
|
|
572
|
+
[[0, 1], [0, { [_hQ]: _co }]], 1
|
|
573
|
+
];
|
|
574
|
+
exports.GetAgentOutput$ = [3, n1, _GAO,
|
|
575
|
+
0,
|
|
576
|
+
[_a],
|
|
577
|
+
[() => exports.Agent$], 1
|
|
578
|
+
];
|
|
579
|
+
exports.GetChatInput$ = [3, n1, _GCI,
|
|
580
|
+
0,
|
|
581
|
+
[_cI, _co, _u],
|
|
582
|
+
[[0, 1], [0, { [_hQ]: _co }], [0, { [_hQ]: _u }]], 1
|
|
583
|
+
];
|
|
584
|
+
exports.GetChatOutput$ = [3, n1, _GCO,
|
|
585
|
+
0,
|
|
586
|
+
[_cha, _hi],
|
|
587
|
+
[() => exports.Chat$, () => exports.ChatHistory$], 2
|
|
588
|
+
];
|
|
589
|
+
exports.GetFileInput$ = [3, n1, _GFI,
|
|
590
|
+
0,
|
|
591
|
+
[_fI, _co, _u],
|
|
592
|
+
[[0, 1], [0, { [_hQ]: _co }], [0, { [_hQ]: _u }]], 1
|
|
593
|
+
];
|
|
594
|
+
exports.GetFileOutput$ = [3, n1, _GFO,
|
|
595
|
+
0,
|
|
596
|
+
[_fi],
|
|
597
|
+
[() => exports.WilmaFile$], 1
|
|
598
|
+
];
|
|
599
|
+
exports.GetGuidelineInput$ = [3, n1, _GGI,
|
|
600
|
+
0,
|
|
601
|
+
[_gI, _co, _u],
|
|
602
|
+
[[0, 1], [0, { [_hQ]: _co }], [0, { [_hQ]: _u }]], 1
|
|
603
|
+
];
|
|
604
|
+
exports.GetGuidelineOutput$ = [3, n1, _GGO,
|
|
605
|
+
0,
|
|
606
|
+
[_gu],
|
|
607
|
+
[() => exports.Guideline$], 1
|
|
608
|
+
];
|
|
609
|
+
exports.GetOrganizationSettingsInput$ = [3, n1, _GOSI,
|
|
610
|
+
0,
|
|
611
|
+
[_co],
|
|
612
|
+
[[0, { [_hQ]: _co }]]
|
|
613
|
+
];
|
|
614
|
+
exports.GetOrganizationSettingsOutput$ = [3, n1, _GOSO,
|
|
615
|
+
0,
|
|
616
|
+
[_ag, _to, _kB, _g],
|
|
617
|
+
[() => OrganizationAgentIntegrationList, () => OrganizationToolIntegrationList, () => OrganizationKnowledgeBaseIntegrationList, () => OrganizationGuidelineIntegrationList]
|
|
618
|
+
];
|
|
619
|
+
exports.GetSettingsInput$ = [3, n1, _GSI,
|
|
620
|
+
0,
|
|
621
|
+
[_co, _u],
|
|
622
|
+
[[0, { [_hQ]: _co }], [0, { [_hQ]: _u }]]
|
|
623
|
+
];
|
|
624
|
+
exports.GetSettingsOutput$ = [3, n1, _GSO,
|
|
625
|
+
0,
|
|
626
|
+
[_st, _ab, _ag, _g, _gS, _in],
|
|
627
|
+
[() => exports.UserStyleSettings$, () => exports.UserAboutSettings$, () => AgentsInfoList, () => GuidelinesList, () => exports.UserGuidelinesSettings$, () => exports.UserIntegrationsSettings$]
|
|
628
|
+
];
|
|
629
|
+
exports.GetSkillFileDownloadInput$ = [3, n1, _GSFDI,
|
|
630
|
+
0,
|
|
631
|
+
[_sI, _p, _co, _u],
|
|
632
|
+
[[0, 1], [0, 1], [0, { [_hQ]: _co }], [0, { [_hQ]: _u }]], 2
|
|
633
|
+
];
|
|
634
|
+
exports.GetSkillFileDownloadOutput$ = [3, n1, _GSFDO,
|
|
635
|
+
0,
|
|
636
|
+
[_ur, _eA],
|
|
637
|
+
[0, 0], 2
|
|
638
|
+
];
|
|
639
|
+
exports.GetSkillInput$ = [3, n1, _GSIe,
|
|
640
|
+
0,
|
|
641
|
+
[_sI, _co, _u],
|
|
642
|
+
[[0, 1], [0, { [_hQ]: _co }], [0, { [_hQ]: _u }]], 1
|
|
643
|
+
];
|
|
644
|
+
exports.GetSkillOutput$ = [3, n1, _GSOe,
|
|
645
|
+
0,
|
|
646
|
+
[_ski],
|
|
647
|
+
[() => exports.Skill$], 1
|
|
648
|
+
];
|
|
649
|
+
exports.Guideline$ = [3, n1, _G,
|
|
650
|
+
0,
|
|
651
|
+
[_n, _d, _con, _id, _cA, _cB, _cBN, _sco, _di, _uA, _ac],
|
|
652
|
+
[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, () => exports.WilmaAccess$], 8
|
|
653
|
+
];
|
|
654
|
+
exports.GuidelineDirectoryInfo$ = [3, n1, _GDI,
|
|
655
|
+
0,
|
|
656
|
+
[_p],
|
|
657
|
+
[0], 1
|
|
658
|
+
];
|
|
659
|
+
exports.GuidelineInfo$ = [3, n1, _GI,
|
|
660
|
+
0,
|
|
661
|
+
[_n, _d, _id, _cA, _cB, _cBN, _sco, _di, _uA, _ac],
|
|
662
|
+
[0, 0, 0, 0, 0, 0, 0, 0, 0, () => exports.WilmaAccess$], 7
|
|
663
|
+
];
|
|
664
|
+
exports.LikeAnswerInput$ = [3, n1, _LAI,
|
|
665
|
+
0,
|
|
666
|
+
[_cI, _mI, _te, _co, _u],
|
|
667
|
+
[0, 0, 0, [0, { [_hQ]: _co }], [0, { [_hQ]: _u }]], 3
|
|
668
|
+
];
|
|
669
|
+
exports.LikeAnswerOutput$ = [3, n1, _LAO,
|
|
670
|
+
0,
|
|
671
|
+
[],
|
|
672
|
+
[]
|
|
673
|
+
];
|
|
674
|
+
exports.ListAgentFeedbacksInput$ = [3, n1, _LAFI,
|
|
675
|
+
0,
|
|
676
|
+
[_aI, _co, _eSK],
|
|
677
|
+
[[0, 1], [0, { [_hQ]: _co }], [0, { [_hQ]: _eSK }]], 1
|
|
678
|
+
];
|
|
679
|
+
exports.ListAgentFeedbacksOutput$ = [3, n1, _LAFO,
|
|
680
|
+
0,
|
|
681
|
+
[_fe, _lEK],
|
|
682
|
+
[() => ChatFeedbacksList, 0], 1
|
|
683
|
+
];
|
|
684
|
+
exports.ListAgentsInput$ = [3, n1, _LAIi,
|
|
685
|
+
0,
|
|
686
|
+
[_co],
|
|
687
|
+
[[0, { [_hQ]: _co }]]
|
|
688
|
+
];
|
|
689
|
+
exports.ListAgentsNamesInput$ = [3, n1, _LANI,
|
|
690
|
+
0,
|
|
691
|
+
[_co],
|
|
692
|
+
[[0, { [_hQ]: _co }]]
|
|
693
|
+
];
|
|
694
|
+
exports.ListAgentsNamesOutput$ = [3, n1, _LANO,
|
|
695
|
+
0,
|
|
696
|
+
[_ag],
|
|
697
|
+
[() => AgentsInfoList], 1
|
|
698
|
+
];
|
|
699
|
+
exports.ListAgentsOutput$ = [3, n1, _LAOi,
|
|
700
|
+
0,
|
|
701
|
+
[_ag],
|
|
702
|
+
[() => AgentsList], 1
|
|
703
|
+
];
|
|
704
|
+
exports.ListChatsInput$ = [3, n1, _LCI,
|
|
705
|
+
0,
|
|
706
|
+
[_co, _u, _eSK],
|
|
707
|
+
[[0, { [_hQ]: _co }], [0, { [_hQ]: _u }], [0, { [_hQ]: _eSK }]]
|
|
708
|
+
];
|
|
709
|
+
exports.ListChatsOutput$ = [3, n1, _LCO,
|
|
710
|
+
0,
|
|
711
|
+
[_chat, _lEK],
|
|
712
|
+
[() => ChatsList, 0], 1
|
|
713
|
+
];
|
|
714
|
+
exports.ListFeedbacksInput$ = [3, n1, _LFI,
|
|
715
|
+
0,
|
|
716
|
+
[_co, _eSK],
|
|
717
|
+
[[0, { [_hQ]: _co }], [0, { [_hQ]: _eSK }]]
|
|
718
|
+
];
|
|
719
|
+
exports.ListFeedbacksOutput$ = [3, n1, _LFO,
|
|
720
|
+
0,
|
|
721
|
+
[_fe, _lEK],
|
|
722
|
+
[() => ChatFeedbacksList, 0], 1
|
|
723
|
+
];
|
|
724
|
+
exports.ListGuidelinesDirectoriesInput$ = [3, n1, _LGDI,
|
|
725
|
+
0,
|
|
726
|
+
[_co, _u],
|
|
727
|
+
[[0, { [_hQ]: _co }], [0, { [_hQ]: _u }]]
|
|
728
|
+
];
|
|
729
|
+
exports.ListGuidelinesDirectoriesOutput$ = [3, n1, _LGDO,
|
|
730
|
+
0,
|
|
731
|
+
[_dir],
|
|
732
|
+
[() => GuidelineDirectoriesList], 1
|
|
733
|
+
];
|
|
734
|
+
exports.ListGuidelinesInput$ = [3, n1, _LGI,
|
|
735
|
+
0,
|
|
736
|
+
[_co, _u],
|
|
737
|
+
[[0, { [_hQ]: _co }], [0, { [_hQ]: _u }]]
|
|
738
|
+
];
|
|
739
|
+
exports.ListGuidelinesNamesInput$ = [3, n1, _LGNI,
|
|
740
|
+
0,
|
|
741
|
+
[_co, _u],
|
|
742
|
+
[[0, { [_hQ]: _co }], [0, { [_hQ]: _u }]]
|
|
743
|
+
];
|
|
744
|
+
exports.ListGuidelinesNamesOutput$ = [3, n1, _LGNO,
|
|
745
|
+
0,
|
|
746
|
+
[_g],
|
|
747
|
+
[() => GuidelinesInfoList], 1
|
|
748
|
+
];
|
|
749
|
+
exports.ListGuidelinesOutput$ = [3, n1, _LGO,
|
|
750
|
+
0,
|
|
751
|
+
[_g],
|
|
752
|
+
[() => GuidelinesList], 1
|
|
753
|
+
];
|
|
754
|
+
exports.ListSkillsInput$ = [3, n1, _LSI,
|
|
755
|
+
0,
|
|
756
|
+
[_co, _u],
|
|
757
|
+
[[0, { [_hQ]: _co }], [0, { [_hQ]: _u }]]
|
|
758
|
+
];
|
|
759
|
+
exports.ListSkillsOutput$ = [3, n1, _LSO,
|
|
760
|
+
0,
|
|
761
|
+
[_sk],
|
|
762
|
+
[() => SkillsInfoList], 1
|
|
763
|
+
];
|
|
764
|
+
exports.OrganizationAgentIntegration$ = [3, n1, _OAI,
|
|
765
|
+
0,
|
|
766
|
+
[_aI, _ac],
|
|
767
|
+
[0, () => exports.WilmaAccess$], 1
|
|
768
|
+
];
|
|
769
|
+
exports.OrganizationGuidelineIntegration$ = [3, n1, _OGI,
|
|
770
|
+
0,
|
|
771
|
+
[_gI, _ac],
|
|
772
|
+
[0, () => exports.WilmaAccess$], 1
|
|
773
|
+
];
|
|
774
|
+
exports.OrganizationKnowledgeBaseIntegration$ = [3, n1, _OKBI,
|
|
775
|
+
0,
|
|
776
|
+
[_kBI, _ac],
|
|
777
|
+
[0, () => exports.WilmaAccess$], 1
|
|
778
|
+
];
|
|
779
|
+
exports.OrganizationToolIntegration$ = [3, n1, _OTI,
|
|
780
|
+
0,
|
|
781
|
+
[_tI, _ac],
|
|
782
|
+
[0, () => exports.WilmaAccess$], 1
|
|
783
|
+
];
|
|
784
|
+
exports.PatchOrganizationSettingsInput$ = [3, n1, _POSI,
|
|
785
|
+
0,
|
|
786
|
+
[_co, _ag, _to, _kB, _g],
|
|
787
|
+
[[0, { [_hQ]: _co }], () => OrganizationAgentIntegrationList, () => OrganizationToolIntegrationList, () => OrganizationKnowledgeBaseIntegrationList, () => OrganizationGuidelineIntegrationList]
|
|
788
|
+
];
|
|
789
|
+
exports.PatchOrganizationSettingsOutput$ = [3, n1, _POSO,
|
|
790
|
+
0,
|
|
791
|
+
[_ag, _to, _kB, _g],
|
|
792
|
+
[() => OrganizationAgentIntegrationList, () => OrganizationToolIntegrationList, () => OrganizationKnowledgeBaseIntegrationList, () => OrganizationGuidelineIntegrationList]
|
|
793
|
+
];
|
|
794
|
+
exports.PatchSettingsInput$ = [3, n1, _PSI,
|
|
795
|
+
0,
|
|
796
|
+
[_co, _u, _st, _ab, _g, _in],
|
|
797
|
+
[[0, { [_hQ]: _co }], [0, { [_hQ]: _u }], () => exports.UserStyleSettings$, () => exports.UserAboutSettings$, () => exports.UserGuidelinesSettings$, () => exports.UserIntegrationsSettings$]
|
|
798
|
+
];
|
|
799
|
+
exports.PatchSettingsOutput$ = [3, n1, _PSO,
|
|
800
|
+
0,
|
|
801
|
+
[_st, _ab, _ag, _g, _gS, _in],
|
|
802
|
+
[() => exports.UserStyleSettings$, () => exports.UserAboutSettings$, () => AgentsInfoList, () => GuidelinesList, () => exports.UserGuidelinesSettings$, () => exports.UserIntegrationsSettings$]
|
|
803
|
+
];
|
|
804
|
+
exports.Skill$ = [3, n1, _S,
|
|
805
|
+
0,
|
|
806
|
+
[_n, _d, _con, _id, _cA, _cB, _cBN, _uA, _f],
|
|
807
|
+
[0, 0, 0, 0, 0, 0, 0, 0, () => SkillFilesList], 7
|
|
808
|
+
];
|
|
809
|
+
exports.SkillFile$ = [3, n1, _SF,
|
|
810
|
+
0,
|
|
811
|
+
[_p, _k, _cT, _ex, _si, _ch],
|
|
812
|
+
[0, 0, 0, 2, 1, 0], 2
|
|
813
|
+
];
|
|
814
|
+
exports.SkillInfo$ = [3, n1, _SI,
|
|
815
|
+
0,
|
|
816
|
+
[_id, _cA, _cB, _cBN, _n, _d, _uA, _fC],
|
|
817
|
+
[0, 0, 0, 0, 0, 0, 0, 1], 6
|
|
818
|
+
];
|
|
819
|
+
exports.UpdateAgentInput$ = [3, n1, _UAI,
|
|
820
|
+
0,
|
|
821
|
+
[_n, _i, _aI, _ca, _g, _sk, _v, _cap, _mo, _co],
|
|
822
|
+
[0, 0, [0, 1], 0, 64 | 0, 64 | 0, () => AgentVariablesList, () => AgentCapabilitiesList, 0, [0, { [_hQ]: _co }]], 3
|
|
823
|
+
];
|
|
824
|
+
exports.UpdateAgentOutput$ = [3, n1, _UAO,
|
|
825
|
+
0,
|
|
826
|
+
[_a],
|
|
827
|
+
[() => exports.Agent$], 1
|
|
828
|
+
];
|
|
829
|
+
exports.UpdateGuidelineAccessInput$ = [3, n1, _UGAI,
|
|
830
|
+
0,
|
|
831
|
+
[_gI, _ac, _co, _u],
|
|
832
|
+
[[0, 1], () => exports.WilmaAccess$, [0, { [_hQ]: _co }], [0, { [_hQ]: _u }]], 2
|
|
833
|
+
];
|
|
834
|
+
exports.UpdateGuidelineAccessOutput$ = [3, n1, _UGAO,
|
|
835
|
+
0,
|
|
836
|
+
[_gu],
|
|
837
|
+
[() => exports.Guideline$], 1
|
|
838
|
+
];
|
|
839
|
+
exports.UpdateGuidelineInput$ = [3, n1, _UGI,
|
|
840
|
+
0,
|
|
841
|
+
[_n, _d, _con, _gI, _di, _co, _u],
|
|
842
|
+
[0, 0, 0, [0, 1], 0, [0, { [_hQ]: _co }], [0, { [_hQ]: _u }]], 4
|
|
843
|
+
];
|
|
844
|
+
exports.UpdateGuidelineOutput$ = [3, n1, _UGO,
|
|
845
|
+
0,
|
|
846
|
+
[_gu],
|
|
847
|
+
[() => exports.Guideline$], 1
|
|
848
|
+
];
|
|
849
|
+
exports.UpdateGuidelinesDirectoryInput$ = [3, n1, _UGDI,
|
|
850
|
+
0,
|
|
851
|
+
[_cP, _nP, _co, _u],
|
|
852
|
+
[0, 0, [0, { [_hQ]: _co }], [0, { [_hQ]: _u }]], 2
|
|
853
|
+
];
|
|
854
|
+
exports.UpdateGuidelinesDirectoryOutput$ = [3, n1, _UGDO,
|
|
855
|
+
0,
|
|
856
|
+
[_di],
|
|
857
|
+
[() => exports.GuidelineDirectoryInfo$], 1
|
|
858
|
+
];
|
|
859
|
+
exports.UpdateSkillInput$ = [3, n1, _USI,
|
|
860
|
+
0,
|
|
861
|
+
[_n, _d, _con, _sI, _co, _u],
|
|
862
|
+
[0, 0, 0, [0, 1], [0, { [_hQ]: _co }], [0, { [_hQ]: _u }]], 4
|
|
863
|
+
];
|
|
864
|
+
exports.UpdateSkillOutput$ = [3, n1, _USO,
|
|
865
|
+
0,
|
|
866
|
+
[_ski],
|
|
867
|
+
[() => exports.Skill$], 1
|
|
868
|
+
];
|
|
869
|
+
exports.UserAboutSettings$ = [3, n1, _UAS,
|
|
870
|
+
0,
|
|
871
|
+
[_d],
|
|
872
|
+
[0]
|
|
873
|
+
];
|
|
874
|
+
exports.UserGuidelinesSettings$ = [3, n1, _UGS,
|
|
875
|
+
0,
|
|
876
|
+
[_dis],
|
|
877
|
+
[64 | 0]
|
|
878
|
+
];
|
|
879
|
+
exports.UserIntegrationsSettings$ = [3, n1, _UIS,
|
|
880
|
+
0,
|
|
881
|
+
[_dis],
|
|
882
|
+
[64 | 0]
|
|
883
|
+
];
|
|
884
|
+
exports.UserStyleSettings$ = [3, n1, _USS,
|
|
885
|
+
0,
|
|
886
|
+
[_ton],
|
|
887
|
+
[0]
|
|
888
|
+
];
|
|
889
|
+
exports.WebSearchUserLocation$ = [3, n1, _WSUL,
|
|
890
|
+
0,
|
|
891
|
+
[_cou, _re, _ci, _tim],
|
|
892
|
+
[0, 0, 0, 0]
|
|
893
|
+
];
|
|
894
|
+
exports.WilmaAccess$ = [3, n1, _WA,
|
|
895
|
+
0,
|
|
896
|
+
[_vi, _gr],
|
|
897
|
+
[0, () => WilmaGrantList]
|
|
898
|
+
];
|
|
899
|
+
exports.WilmaFile$ = [3, n1, _WF,
|
|
900
|
+
0,
|
|
901
|
+
[_id, _n, _cA, _cT, _si, _sco, _aI, _sIe],
|
|
902
|
+
[0, 0, 0, 0, 1, 0, 0, 0], 3
|
|
903
|
+
];
|
|
904
|
+
exports.WilmaGrant$ = [3, n1, _WG,
|
|
905
|
+
0,
|
|
906
|
+
[_pe, _pr],
|
|
907
|
+
[0, () => exports.WilmaGrantPrincipal$], 2
|
|
908
|
+
];
|
|
909
|
+
var AgentCapabilitiesList = [1, n1, _ACL,
|
|
910
|
+
0, () => exports.AgentCapability$
|
|
911
|
+
];
|
|
912
|
+
var AgentGuidelinesList = 64 | 0;
|
|
913
|
+
var AgentsInfoList = [1, n1, _AIL,
|
|
914
|
+
0, () => exports.AgentInfo$
|
|
915
|
+
];
|
|
916
|
+
var AgentSkillsList = 64 | 0;
|
|
917
|
+
var AgentsList = [1, n1, _AL,
|
|
918
|
+
0, () => exports.Agent$
|
|
919
|
+
];
|
|
920
|
+
var AgentToolVariablesList = [1, n1, _ATVL,
|
|
921
|
+
0, () => exports.AgentToolVariable$
|
|
922
|
+
];
|
|
923
|
+
var AgentVariablesList = [1, n1, _AVL,
|
|
924
|
+
0, () => exports.AgentVariable$
|
|
925
|
+
];
|
|
926
|
+
var ChatFeedbacksList = [1, n1, _CFL,
|
|
927
|
+
0, () => exports.ChatFeedback$
|
|
928
|
+
];
|
|
929
|
+
var ChatMentionsList = 64 | 15;
|
|
930
|
+
var ChatMessagesList = 64 | 15;
|
|
931
|
+
var ChatsList = [1, n1, _CL,
|
|
932
|
+
0, () => exports.Chat$
|
|
933
|
+
];
|
|
934
|
+
var FileIdList = 64 | 0;
|
|
935
|
+
var GuidelineDirectoriesList = [1, n1, _GDL,
|
|
936
|
+
0, () => exports.GuidelineDirectoryInfo$
|
|
937
|
+
];
|
|
938
|
+
var GuidelineIdList = 64 | 0;
|
|
939
|
+
var GuidelinesInfoList = [1, n1, _GIL,
|
|
940
|
+
0, () => exports.GuidelineInfo$
|
|
941
|
+
];
|
|
942
|
+
var GuidelinesList = [1, n1, _GL,
|
|
943
|
+
0, () => exports.Guideline$
|
|
944
|
+
];
|
|
945
|
+
var OrganizationAgentIntegrationList = [1, n1, _OAIL,
|
|
946
|
+
0, () => exports.OrganizationAgentIntegration$
|
|
947
|
+
];
|
|
948
|
+
var OrganizationGuidelineIntegrationList = [1, n1, _OGIL,
|
|
949
|
+
0, () => exports.OrganizationGuidelineIntegration$
|
|
950
|
+
];
|
|
951
|
+
var OrganizationKnowledgeBaseIntegrationList = [1, n1, _OKBIL,
|
|
952
|
+
0, () => exports.OrganizationKnowledgeBaseIntegration$
|
|
953
|
+
];
|
|
954
|
+
var OrganizationToolIntegrationList = [1, n1, _OTIL,
|
|
955
|
+
0, () => exports.OrganizationToolIntegration$
|
|
956
|
+
];
|
|
957
|
+
var SandboxDomainList = 64 | 0;
|
|
958
|
+
var SkillFilesList = [1, n1, _SFL,
|
|
959
|
+
0, () => exports.SkillFile$
|
|
960
|
+
];
|
|
961
|
+
var SkillsInfoList = [1, n1, _SIL,
|
|
962
|
+
0, () => exports.SkillInfo$
|
|
963
|
+
];
|
|
964
|
+
var UserIntegrationIdList = 64 | 0;
|
|
965
|
+
var WilmaFileList = [1, n1, _WFL,
|
|
966
|
+
0, () => exports.WilmaFile$
|
|
967
|
+
];
|
|
968
|
+
var WilmaGrantList = [1, n1, _WGL,
|
|
969
|
+
0, () => exports.WilmaGrant$
|
|
970
|
+
];
|
|
971
|
+
exports.AgentCapability$ = [4, n1, _AC,
|
|
972
|
+
0,
|
|
973
|
+
[_too, _kb, _sa, _wS, _wF, _a],
|
|
974
|
+
[() => exports.AgentTool$, () => exports.AgentKnowledgeBase$, () => exports.AgentSandboxCapability$, () => exports.AgentWebSearchCapability$, () => exports.AgentWebFetchCapability$, () => exports.AgentCallCapability$]
|
|
975
|
+
];
|
|
976
|
+
exports.AgentSandboxCapability$ = [4, n1, _ASC,
|
|
977
|
+
0,
|
|
978
|
+
[_ver],
|
|
979
|
+
[() => exports.AgentVercelSandboxOptions$]
|
|
980
|
+
];
|
|
981
|
+
exports.AgentToolVariableHandler$ = [4, n1, _ATVH,
|
|
982
|
+
0,
|
|
983
|
+
[_au, _gui, _pre],
|
|
984
|
+
[() => exports.AgentToolVariableAutoHandler$, () => exports.AgentToolVariableGuidedHandler$, () => exports.AgentToolVariablePredefinedHandler$]
|
|
985
|
+
];
|
|
986
|
+
exports.WilmaGrantPrincipal$ = [4, n1, _WGP,
|
|
987
|
+
0,
|
|
988
|
+
[_uI, _gIr],
|
|
989
|
+
[0, 0]
|
|
990
|
+
];
|
|
991
|
+
exports.CreateAgent$ = [9, n1, _CA,
|
|
992
|
+
{ [_ht]: ["POST", "/v1/wilma/agents/agents", 200] }, () => exports.CreateAgentInput$, () => exports.CreateAgentOutput$
|
|
993
|
+
];
|
|
994
|
+
exports.CreateGuideline$ = [9, n1, _CG,
|
|
995
|
+
{ [_ht]: ["POST", "/v1/wilma/guidelines", 200] }, () => exports.CreateGuidelineInput$, () => exports.CreateGuidelineOutput$
|
|
996
|
+
];
|
|
997
|
+
exports.CreateGuidelinesDirectory$ = [9, n1, _CGD,
|
|
998
|
+
{ [_ht]: ["POST", "/v1/wilma/guidelines-directories", 200] }, () => exports.CreateGuidelinesDirectoryInput$, () => exports.CreateGuidelinesDirectoryOutput$
|
|
999
|
+
];
|
|
1000
|
+
exports.CreateSkill$ = [9, n1, _CS,
|
|
1001
|
+
{ [_ht]: ["POST", "/v1/wilma/skills", 200] }, () => exports.CreateSkillInput$, () => exports.CreateSkillOutput$
|
|
1002
|
+
];
|
|
1003
|
+
exports.CreateSkillFileUpload$ = [9, n1, _CSFU,
|
|
1004
|
+
{ [_ht]: ["POST", "/v1/wilma/skills/{skillId}/files", 200] }, () => exports.CreateSkillFileUploadInput$, () => exports.CreateSkillFileUploadOutput$
|
|
1005
|
+
];
|
|
1006
|
+
exports.DeleteAgent$ = [9, n1, _DA,
|
|
1007
|
+
{ [_ht]: ["DELETE", "/v1/wilma/agents/{agentId}", 200] }, () => exports.DeleteAgentInput$, () => exports.DeleteAgentOutput$
|
|
1008
|
+
];
|
|
1009
|
+
exports.DeleteChat$ = [9, n1, _DC,
|
|
1010
|
+
{ [_ht]: ["DELETE", "/v1/wilma/chats/{chatId}", 200] }, () => exports.DeleteChatInput$, () => exports.DeleteChatOutput$
|
|
1011
|
+
];
|
|
1012
|
+
exports.DeleteFile$ = [9, n1, _DF,
|
|
1013
|
+
{ [_ht]: ["DELETE", "/v1/wilma/files/{fileId}", 200] }, () => exports.DeleteFileInput$, () => exports.DeleteFileOutput$
|
|
1014
|
+
];
|
|
1015
|
+
exports.DeleteGuideline$ = [9, n1, _DG,
|
|
1016
|
+
{ [_ht]: ["DELETE", "/v1/wilma/guidelines/{guidelineId}", 200] }, () => exports.DeleteGuidelineInput$, () => exports.DeleteGuidelineOutput$
|
|
1017
|
+
];
|
|
1018
|
+
exports.DeleteGuidelinesDirectory$ = [9, n1, _DGD,
|
|
1019
|
+
{ [_ht]: ["DELETE", "/v1/wilma/guidelines-directories", 200] }, () => exports.DeleteGuidelinesDirectoryInput$, () => exports.DeleteGuidelinesDirectoryOutput$
|
|
1020
|
+
];
|
|
1021
|
+
exports.DeleteSkill$ = [9, n1, _DS,
|
|
1022
|
+
{ [_ht]: ["DELETE", "/v1/wilma/skills/{skillId}", 200] }, () => exports.DeleteSkillInput$, () => exports.DeleteSkillOutput$
|
|
1023
|
+
];
|
|
1024
|
+
exports.DeleteSkillFile$ = [9, n1, _DSF,
|
|
1025
|
+
{ [_ht]: ["DELETE", "/v1/wilma/skills/{skillId}/files/{path+}", 200] }, () => exports.DeleteSkillFileInput$, () => exports.DeleteSkillFileOutput$
|
|
1026
|
+
];
|
|
1027
|
+
exports.DislikeAnswer$ = [9, n1, _DAi,
|
|
1028
|
+
{ [_ht]: ["POST", "/v1/wilma/dislike", 200] }, () => exports.DislikeAnswerInput$, () => exports.DislikeAnswerOutput$
|
|
1029
|
+
];
|
|
1030
|
+
exports.DownloadFile$ = [9, n1, _DFo,
|
|
1031
|
+
{ [_ht]: ["GET", "/v1/wilma/files/{fileId}/download", 200] }, () => exports.DownloadFileInput$, () => exports.DownloadFileOutput$
|
|
1032
|
+
];
|
|
1033
|
+
exports.ExecuteAgent$ = [9, n1, _EA,
|
|
1034
|
+
{ [_ht]: ["POST", "/v1/wilma/agents/agents/{agentId}/execute", 200] }, () => exports.ExecuteAgentInput$, () => exports.ExecuteAgentOutput$
|
|
1035
|
+
];
|
|
1036
|
+
exports.GetAgent$ = [9, n1, _GA,
|
|
1037
|
+
{ [_ht]: ["GET", "/v1/wilma/agents/agents/{agentId}", 200] }, () => exports.GetAgentInput$, () => exports.GetAgentOutput$
|
|
1038
|
+
];
|
|
1039
|
+
exports.GetChat$ = [9, n1, _GC,
|
|
1040
|
+
{ [_ht]: ["GET", "/v1/wilma/chats/{chatId}", 200] }, () => exports.GetChatInput$, () => exports.GetChatOutput$
|
|
1041
|
+
];
|
|
1042
|
+
exports.GetFile$ = [9, n1, _GF,
|
|
1043
|
+
{ [_ht]: ["GET", "/v1/wilma/files/{fileId}", 200] }, () => exports.GetFileInput$, () => exports.GetFileOutput$
|
|
1044
|
+
];
|
|
1045
|
+
exports.GetGuideline$ = [9, n1, _GG,
|
|
1046
|
+
{ [_ht]: ["GET", "/v1/wilma/guidelines/{guidelineId}", 200] }, () => exports.GetGuidelineInput$, () => exports.GetGuidelineOutput$
|
|
1047
|
+
];
|
|
1048
|
+
exports.GetOrganizationSettings$ = [9, n1, _GOS,
|
|
1049
|
+
{ [_ht]: ["GET", "/v1/wilma/settings/organization", 200] }, () => exports.GetOrganizationSettingsInput$, () => exports.GetOrganizationSettingsOutput$
|
|
1050
|
+
];
|
|
1051
|
+
exports.GetSettings$ = [9, n1, _GS,
|
|
1052
|
+
{ [_ht]: ["GET", "/v1/wilma/settings", 200] }, () => exports.GetSettingsInput$, () => exports.GetSettingsOutput$
|
|
1053
|
+
];
|
|
1054
|
+
exports.GetSkill$ = [9, n1, _GSe,
|
|
1055
|
+
{ [_ht]: ["GET", "/v1/wilma/skills/{skillId}", 200] }, () => exports.GetSkillInput$, () => exports.GetSkillOutput$
|
|
1056
|
+
];
|
|
1057
|
+
exports.GetSkillFileDownload$ = [9, n1, _GSFD,
|
|
1058
|
+
{ [_ht]: ["GET", "/v1/wilma/skills/{skillId}/files/{path+}", 200] }, () => exports.GetSkillFileDownloadInput$, () => exports.GetSkillFileDownloadOutput$
|
|
1059
|
+
];
|
|
1060
|
+
exports.LikeAnswer$ = [9, n1, _LA,
|
|
1061
|
+
{ [_ht]: ["POST", "/v1/wilma/like", 200] }, () => exports.LikeAnswerInput$, () => exports.LikeAnswerOutput$
|
|
1062
|
+
];
|
|
1063
|
+
exports.ListAgentFeedbacks$ = [9, n1, _LAF,
|
|
1064
|
+
{ [_ht]: ["GET", "/v1/wilma/agents/{agentId}/feedbacks", 200] }, () => exports.ListAgentFeedbacksInput$, () => exports.ListAgentFeedbacksOutput$
|
|
1065
|
+
];
|
|
1066
|
+
exports.ListAgents$ = [9, n1, _LAi,
|
|
1067
|
+
{ [_ht]: ["GET", "/v1/wilma/agents", 200] }, () => exports.ListAgentsInput$, () => exports.ListAgentsOutput$
|
|
1068
|
+
];
|
|
1069
|
+
exports.ListAgentsNames$ = [9, n1, _LAN,
|
|
1070
|
+
{ [_ht]: ["GET", "/v1/wilma/agents-names", 200] }, () => exports.ListAgentsNamesInput$, () => exports.ListAgentsNamesOutput$
|
|
1071
|
+
];
|
|
1072
|
+
exports.ListChats$ = [9, n1, _LC,
|
|
1073
|
+
{ [_ht]: ["GET", "/v1/wilma/chats", 200] }, () => exports.ListChatsInput$, () => exports.ListChatsOutput$
|
|
1074
|
+
];
|
|
1075
|
+
exports.ListFeedbacks$ = [9, n1, _LF,
|
|
1076
|
+
{ [_ht]: ["GET", "/v1/wilma/feedbacks", 200] }, () => exports.ListFeedbacksInput$, () => exports.ListFeedbacksOutput$
|
|
1077
|
+
];
|
|
1078
|
+
exports.ListGuidelines$ = [9, n1, _LG,
|
|
1079
|
+
{ [_ht]: ["GET", "/v1/wilma/guidelines", 200] }, () => exports.ListGuidelinesInput$, () => exports.ListGuidelinesOutput$
|
|
1080
|
+
];
|
|
1081
|
+
exports.ListGuidelinesDirectories$ = [9, n1, _LGD,
|
|
1082
|
+
{ [_ht]: ["GET", "/v1/wilma/guidelines-directories", 200] }, () => exports.ListGuidelinesDirectoriesInput$, () => exports.ListGuidelinesDirectoriesOutput$
|
|
1083
|
+
];
|
|
1084
|
+
exports.ListGuidelinesNames$ = [9, n1, _LGN,
|
|
1085
|
+
{ [_ht]: ["GET", "/v1/wilma/guidelines-names", 200] }, () => exports.ListGuidelinesNamesInput$, () => exports.ListGuidelinesNamesOutput$
|
|
1086
|
+
];
|
|
1087
|
+
exports.ListSkills$ = [9, n1, _LS,
|
|
1088
|
+
{ [_ht]: ["GET", "/v1/wilma/skills", 200] }, () => exports.ListSkillsInput$, () => exports.ListSkillsOutput$
|
|
1089
|
+
];
|
|
1090
|
+
exports.PatchOrganizationSettings$ = [9, n1, _POS,
|
|
1091
|
+
{ [_ht]: ["PATCH", "/v1/wilma/settings/organization", 200] }, () => exports.PatchOrganizationSettingsInput$, () => exports.PatchOrganizationSettingsOutput$
|
|
1092
|
+
];
|
|
1093
|
+
exports.PatchSettings$ = [9, n1, _PS,
|
|
1094
|
+
{ [_ht]: ["PATCH", "/v1/wilma/settings", 200] }, () => exports.PatchSettingsInput$, () => exports.PatchSettingsOutput$
|
|
1095
|
+
];
|
|
1096
|
+
exports.UpdateAgent$ = [9, n1, _UA,
|
|
1097
|
+
{ [_ht]: ["PUT", "/v1/wilma/agents/{agentId}", 200] }, () => exports.UpdateAgentInput$, () => exports.UpdateAgentOutput$
|
|
1098
|
+
];
|
|
1099
|
+
exports.UpdateGuideline$ = [9, n1, _UG,
|
|
1100
|
+
{ [_ht]: ["PUT", "/v1/wilma/guidelines/{guidelineId}", 200] }, () => exports.UpdateGuidelineInput$, () => exports.UpdateGuidelineOutput$
|
|
1101
|
+
];
|
|
1102
|
+
exports.UpdateGuidelineAccess$ = [9, n1, _UGA,
|
|
1103
|
+
{ [_ht]: ["PATCH", "/v1/wilma/guidelines/{guidelineId}/access", 200] }, () => exports.UpdateGuidelineAccessInput$, () => exports.UpdateGuidelineAccessOutput$
|
|
1104
|
+
];
|
|
1105
|
+
exports.UpdateGuidelinesDirectory$ = [9, n1, _UGD,
|
|
1106
|
+
{ [_ht]: ["PUT", "/v1/wilma/guidelines-directories", 200] }, () => exports.UpdateGuidelinesDirectoryInput$, () => exports.UpdateGuidelinesDirectoryOutput$
|
|
1107
|
+
];
|
|
1108
|
+
exports.UpdateSkill$ = [9, n1, _US,
|
|
1109
|
+
{ [_ht]: ["PUT", "/v1/wilma/skills/{skillId}", 200] }, () => exports.UpdateSkillInput$, () => exports.UpdateSkillOutput$
|
|
1110
|
+
];
|