@wildix/wilma-agents-client 1.0.1 → 1.0.2

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.
Files changed (72) hide show
  1. package/dist-cjs/WilmaAgents.js +12 -20
  2. package/dist-cjs/commands/{DeleteGuardrailCommand.js → CreateAgentDeploymentCommand.js} +6 -6
  3. package/dist-cjs/commands/{ExecuteAgentCommand.js → DeleteAgentDeploymentCommand.js} +6 -6
  4. package/dist-cjs/commands/{CreateGuardrailCommand.js → GetAgentDeploymentCommand.js} +6 -6
  5. package/dist-cjs/commands/{DeleteAgentAliasCommand.js → ListAgentDeploymentsCommand.js} +6 -6
  6. package/dist-cjs/commands/RestoreAgentVersionToDraftCommand.js +20 -0
  7. package/dist-cjs/commands/UpdateAgentDeploymentCommand.js +20 -0
  8. package/dist-cjs/commands/index.js +6 -10
  9. package/dist-cjs/models/enums.js +36 -81
  10. package/dist-cjs/models/errors.js +51 -36
  11. package/dist-cjs/schemas/schemas_0.js +358 -539
  12. package/dist-es/WilmaAgents.js +12 -20
  13. package/dist-es/commands/{DeleteAgentAliasCommand.js → CreateAgentDeploymentCommand.js} +5 -5
  14. package/dist-es/commands/{ExecuteAgentCommand.js → DeleteAgentDeploymentCommand.js} +5 -5
  15. package/dist-es/commands/{CreateGuardrailCommand.js → GetAgentDeploymentCommand.js} +5 -5
  16. package/dist-es/commands/{DeleteGuardrailCommand.js → ListAgentDeploymentsCommand.js} +5 -5
  17. package/dist-es/commands/RestoreAgentVersionToDraftCommand.js +16 -0
  18. package/dist-es/commands/UpdateAgentDeploymentCommand.js +16 -0
  19. package/dist-es/commands/index.js +6 -10
  20. package/dist-es/models/enums.js +35 -80
  21. package/dist-es/models/errors.js +42 -28
  22. package/dist-es/schemas/schemas_0.js +356 -536
  23. package/dist-types/WilmaAgents.d.ts +42 -71
  24. package/dist-types/WilmaAgentsClient.d.ts +16 -19
  25. package/dist-types/commands/CompareAgentVersionsCommand.d.ts +5 -5
  26. package/dist-types/commands/CreateAgentApiKeyCommand.d.ts +1 -3
  27. package/dist-types/commands/CreateAgentCommand.d.ts +451 -324
  28. package/dist-types/commands/CreateAgentDeploymentCommand.d.ts +116 -0
  29. package/dist-types/commands/DeleteAgentApiKeyCommand.d.ts +1 -3
  30. package/dist-types/commands/DeleteAgentCommand.d.ts +5 -4
  31. package/dist-types/commands/DeleteAgentDeploymentCommand.d.ts +83 -0
  32. package/dist-types/commands/GetAgentCommand.d.ts +237 -170
  33. package/dist-types/commands/GetAgentDeploymentCommand.d.ts +106 -0
  34. package/dist-types/commands/GetAgentVersionCommand.d.ts +219 -158
  35. package/dist-types/commands/ListAgentApiKeysCommand.d.ts +1 -3
  36. package/dist-types/commands/ListAgentDeploymentsCommand.d.ts +105 -0
  37. package/dist-types/commands/ListAgentVersionsCommand.d.ts +8 -7
  38. package/dist-types/commands/ListAgentsCommand.d.ts +241 -174
  39. package/dist-types/commands/ListAgentsNamesCommand.d.ts +6 -8
  40. package/dist-types/commands/PublishAgentVersionCommand.d.ts +221 -159
  41. package/dist-types/commands/RestoreAgentVersionToDraftCommand.d.ts +460 -0
  42. package/dist-types/commands/UpdateAgentCommand.d.ts +451 -324
  43. package/dist-types/commands/UpdateAgentDeploymentCommand.d.ts +120 -0
  44. package/dist-types/commands/index.d.ts +6 -10
  45. package/dist-types/index.d.ts +8 -7
  46. package/dist-types/models/enums.d.ts +126 -161
  47. package/dist-types/models/errors.d.ts +35 -22
  48. package/dist-types/models/models_0.d.ts +695 -741
  49. package/dist-types/schemas/schemas_0.d.ts +41 -61
  50. package/package.json +2 -2
  51. package/dist-cjs/commands/GetGuardrailCommand.js +0 -20
  52. package/dist-cjs/commands/ListAgentAliasesCommand.js +0 -20
  53. package/dist-cjs/commands/ListAuditRecordsCommand.js +0 -20
  54. package/dist-cjs/commands/ListGuardrailsCommand.js +0 -20
  55. package/dist-cjs/commands/PutAgentAliasCommand.js +0 -20
  56. package/dist-cjs/commands/UpdateGuardrailCommand.js +0 -20
  57. package/dist-es/commands/GetGuardrailCommand.js +0 -16
  58. package/dist-es/commands/ListAgentAliasesCommand.js +0 -16
  59. package/dist-es/commands/ListAuditRecordsCommand.js +0 -16
  60. package/dist-es/commands/ListGuardrailsCommand.js +0 -16
  61. package/dist-es/commands/PutAgentAliasCommand.js +0 -16
  62. package/dist-es/commands/UpdateGuardrailCommand.js +0 -16
  63. package/dist-types/commands/CreateGuardrailCommand.d.ts +0 -172
  64. package/dist-types/commands/DeleteAgentAliasCommand.d.ts +0 -82
  65. package/dist-types/commands/DeleteGuardrailCommand.d.ts +0 -80
  66. package/dist-types/commands/ExecuteAgentCommand.d.ts +0 -112
  67. package/dist-types/commands/GetGuardrailCommand.d.ts +0 -135
  68. package/dist-types/commands/ListAgentAliasesCommand.d.ts +0 -99
  69. package/dist-types/commands/ListAuditRecordsCommand.d.ts +0 -109
  70. package/dist-types/commands/ListGuardrailsCommand.d.ts +0 -137
  71. package/dist-types/commands/PutAgentAliasCommand.d.ts +0 -107
  72. package/dist-types/commands/UpdateGuardrailCommand.d.ts +0 -175
@@ -1,54 +1,62 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.AssistantChannelSettings$ = exports.ApiChannelSettings$ = exports.AgentWebSearchCapability$ = exports.AgentWebhookEngine$ = exports.AgentWebFetchCapability$ = exports.AgentVersionInfo$ = exports.AgentVersionChange$ = exports.AgentVersion$ = exports.AgentVercelSandboxOptions$ = exports.AgentVariable$ = exports.AgentTransferCapability$ = exports.AgentToolVariablePredefinedHandler$ = exports.AgentToolVariableGuidedHandler$ = exports.AgentToolVariableAutoHandler$ = exports.AgentToolVariable$ = exports.AgentTool$ = exports.AgentSuggestionsCapability$ = exports.AgentSqsEngine$ = exports.AgentSnapshotSandboxOptions$ = exports.AgentMcpServerCapability$ = exports.AgentLlmEngine$ = exports.AgentKnowledgeBase$ = exports.AgentInfo$ = exports.AgentHandoverCapability$ = exports.AgentGrant$ = exports.AgentFunctionTool$ = exports.AgentExecutionResult$ = exports.AgentExecutionError$ = exports.AgentDelegationCapability$ = exports.AgentDefinitionSnapshot$ = exports.AgentChannels$ = exports.AgentCallCapability$ = exports.AgentApiKey$ = exports.AgentAliasRoute$ = exports.AgentAlias$ = exports.AgentAccess$ = exports.Agent$ = exports.Actor$ = exports.errorTypeRegistries = exports.RevisionConflictException$ = exports.NothingToPublishException$ = exports.GuardrailNotFoundException$ = exports.GuardrailInUseException$ = exports.AgentVersionNotFoundException$ = exports.AgentNotFoundException$ = exports.AgentNonUniqueNameException$ = exports.AgentApiKeyNotFoundException$ = exports.AgentAliasNotFoundException$ = exports.ValidationException$ = exports.WilmaAgentsServiceException$ = void 0;
4
- exports.PublishAgentVersionInput$ = exports.ListGuardrailsOutput$ = exports.ListGuardrailsInput$ = exports.ListAuditRecordsOutput$ = exports.ListAuditRecordsInput$ = exports.ListAgentVersionsOutput$ = exports.ListAgentVersionsInput$ = exports.ListAgentsOutput$ = exports.ListAgentsNamesOutput$ = exports.ListAgentsNamesInput$ = exports.ListAgentsInput$ = exports.ListAgentApiKeysOutput$ = exports.ListAgentApiKeysInput$ = exports.ListAgentAliasesOutput$ = exports.ListAgentAliasesInput$ = exports.GuardrailWordPolicy$ = exports.GuardrailTopicPolicy$ = exports.GuardrailTopic$ = exports.GuardrailPiiPolicy$ = exports.GuardrailPiiEntity$ = exports.GuardrailContentPolicy$ = exports.GuardrailContentFilter$ = exports.Guardrail$ = exports.GetGuardrailOutput$ = exports.GetGuardrailInput$ = exports.GetAgentVersionOutput$ = exports.GetAgentVersionInput$ = exports.GetAgentOutput$ = exports.GetAgentInput$ = exports.FunctionWebhookIntegration$ = exports.ExecuteAgentOutput$ = exports.ExecuteAgentInput$ = exports.DeleteGuardrailOutput$ = exports.DeleteGuardrailInput$ = exports.DeleteAgentOutput$ = exports.DeleteAgentInput$ = exports.DeleteAgentApiKeyOutput$ = exports.DeleteAgentApiKeyInput$ = exports.DeleteAgentAliasOutput$ = exports.DeleteAgentAliasInput$ = exports.CreateGuardrailOutput$ = exports.CreateGuardrailInput$ = exports.CreateAgentOutput$ = exports.CreateAgentInput$ = exports.CreateAgentApiKeyOutput$ = exports.CreateAgentApiKeyInput$ = exports.CompareAgentVersionsOutput$ = exports.CompareAgentVersionsInput$ = exports.ChatChannelSettings$ = exports.AuditRecord$ = void 0;
5
- exports.PublishAgentVersion$ = exports.ListGuardrails$ = exports.ListAuditRecords$ = exports.ListAgentVersions$ = exports.ListAgentsNames$ = exports.ListAgents$ = exports.ListAgentApiKeys$ = exports.ListAgentAliases$ = exports.GetGuardrail$ = exports.GetAgentVersion$ = exports.GetAgent$ = exports.ExecuteAgent$ = exports.DeleteGuardrail$ = exports.DeleteAgentApiKey$ = exports.DeleteAgentAlias$ = exports.DeleteAgent$ = exports.CreateGuardrail$ = exports.CreateAgentApiKey$ = exports.CreateAgent$ = exports.CompareAgentVersions$ = exports.WebhookAuthorization$ = exports.VoiceTerminateAction$ = exports.FunctionIntegration$ = exports.AgentToolVariableHandler$ = exports.AgentSandboxCapability$ = exports.AgentGrantPrincipal$ = exports.AgentEngine$ = exports.AgentCapability$ = exports.AgentFile$ = exports.WebSearchUserLocation$ = exports.WebhookHeader$ = exports.WebhookAuthorizationOAuth$ = exports.WebhookAuthorizationBearer$ = exports.WebhookAuthorizationBasic$ = exports.VoiceTransferTarget$ = exports.VoiceTerminateHangupAction$ = exports.VoiceSynthesisSettings$ = exports.VoiceSilenceTimeoutSettings$ = exports.VoiceMaxDurationSettings$ = exports.VoiceInterruptionSettings$ = exports.VoiceEndCallSettings$ = exports.VoiceChannelSettings$ = exports.VoiceCallerMetadataSettings$ = exports.UpdateGuardrailOutput$ = exports.UpdateGuardrailInput$ = exports.UpdateAgentOutput$ = exports.UpdateAgentInput$ = exports.PutAgentAliasOutput$ = exports.PutAgentAliasInput$ = exports.PublishAgentVersionOutput$ = void 0;
6
- exports.UpdateGuardrail$ = exports.UpdateAgent$ = exports.PutAgentAlias$ = void 0;
7
- const _A = "Actor";
3
+ exports.AgentVersionChange$ = exports.AgentVersion$ = exports.AgentVercelSandboxOptions$ = exports.AgentVariable$ = exports.AgentTransferPipeline$ = exports.AgentTransferCapability$ = exports.AgentToolVariablesAnnotation$ = exports.AgentToolVariablePredefinedHandler$ = exports.AgentToolVariableGuidedHandler$ = exports.AgentToolVariableAutoHandler$ = exports.AgentToolVariable$ = exports.AgentToolTagAnnotation$ = exports.AgentToolResultAnnotation$ = exports.AgentToolPipeline$ = exports.AgentToolCommentAnnotation$ = exports.AgentToolApproval$ = exports.AgentTool$ = exports.AgentSuggestionsCapability$ = exports.AgentSqsEngine$ = exports.AgentSnapshotSandboxOptions$ = exports.AgentSettings$ = exports.AgentKnowledgeBase$ = exports.AgentInfo$ = exports.AgentHangupPipeline$ = exports.AgentHangupCapability$ = exports.AgentHandoverPipeline$ = exports.AgentHandoverCapability$ = exports.AgentDeploymentRoute$ = exports.AgentDeployment$ = exports.AgentDelegationCapability$ = exports.AgentDefinitionSnapshot$ = exports.AgentChannels$ = exports.AgentCallCapability$ = exports.AgentApiKey$ = exports.AgentAiEngine$ = exports.AgentAccess$ = exports.Agent$ = exports.errorTypeRegistries = exports.RevisionConflictException$ = exports.NothingToPublishException$ = exports.AgentVersionNotFoundException$ = exports.AgentNotFoundException$ = exports.AgentNonUniqueNameException$ = exports.AgentInUseException$ = exports.AgentDeploymentNotFoundException$ = exports.AgentDeploymentNonUniqueNameException$ = exports.AgentDeploymentInUseException$ = exports.AgentApiKeyNotFoundException$ = exports.ValidationException$ = exports.WilmaAgentsServiceException$ = void 0;
4
+ exports.VoiceInterruptionSettings$ = exports.VoiceEndCallSettings$ = exports.VoiceChannelSettings$ = exports.VoiceCallerMetadataSettings$ = exports.UpdateAgentOutput$ = exports.UpdateAgentInput$ = exports.UpdateAgentDeploymentOutput$ = exports.UpdateAgentDeploymentInput$ = exports.RestoreAgentVersionToDraftOutput$ = exports.RestoreAgentVersionToDraftInput$ = exports.PublishAgentVersionOutput$ = exports.PublishAgentVersionInput$ = exports.ListAgentVersionsOutput$ = exports.ListAgentVersionsInput$ = exports.ListAgentsOutput$ = exports.ListAgentsNamesOutput$ = exports.ListAgentsNamesInput$ = exports.ListAgentsInput$ = exports.ListAgentDeploymentsOutput$ = exports.ListAgentDeploymentsInput$ = exports.ListAgentApiKeysOutput$ = exports.ListAgentApiKeysInput$ = exports.GetAgentVersionOutput$ = exports.GetAgentVersionInput$ = exports.GetAgentOutput$ = exports.GetAgentInput$ = exports.GetAgentDeploymentOutput$ = exports.GetAgentDeploymentInput$ = exports.DeleteAgentOutput$ = exports.DeleteAgentInput$ = exports.DeleteAgentDeploymentOutput$ = exports.DeleteAgentDeploymentInput$ = exports.DeleteAgentApiKeyOutput$ = exports.DeleteAgentApiKeyInput$ = exports.CreateAgentOutput$ = exports.CreateAgentInput$ = exports.CreateAgentDeploymentOutput$ = exports.CreateAgentDeploymentInput$ = exports.CreateAgentApiKeyOutput$ = exports.CreateAgentApiKeyInput$ = exports.CompareAgentVersionsOutput$ = exports.CompareAgentVersionsInput$ = exports.ChatChannelSettings$ = exports.AutonomousChannelSettings$ = exports.AssistantChannelSettings$ = exports.AgentWebSearchCapability$ = exports.AgentWebhookEngine$ = exports.AgentWebFetchCapability$ = exports.AgentWaitCapability$ = exports.AgentVersionInfo$ = void 0;
5
+ exports.UpdateAgentDeployment$ = exports.UpdateAgent$ = exports.RestoreAgentVersionToDraft$ = exports.PublishAgentVersion$ = exports.ListAgentVersions$ = exports.ListAgentsNames$ = exports.ListAgents$ = exports.ListAgentDeployments$ = exports.ListAgentApiKeys$ = exports.GetAgentVersion$ = exports.GetAgentDeployment$ = exports.GetAgent$ = exports.DeleteAgentDeployment$ = exports.DeleteAgentApiKey$ = exports.DeleteAgent$ = exports.CreateAgentDeployment$ = exports.CreateAgentApiKey$ = exports.CreateAgent$ = exports.CompareAgentVersions$ = exports.VoiceTerminateAction$ = exports.AgentToolVariableHandler$ = exports.AgentToolAnnotation$ = exports.AgentSandboxCapability$ = exports.AgentGrantPrincipal$ = exports.AgentEngine$ = exports.AgentCapability$ = exports.AgentSkillReference$ = exports.Actor$ = exports.WebSearchUserLocation$ = exports.VoiceTransferTarget$ = exports.VoiceTerminateHangupAction$ = exports.VoiceSilenceTimeoutSettings$ = exports.VoiceMaxDurationSettings$ = void 0;
6
+ const _A = "Agent";
8
7
  const _AA = "AgentAccess";
8
+ const _AAE = "AgentAiEngine";
9
9
  const _AAK = "AgentApiKey";
10
10
  const _AAKL = "AgentApiKeysList";
11
11
  const _AAKNFE = "AgentApiKeyNotFoundException";
12
- const _AAL = "AgentAliasesList";
13
- const _AANFE = "AgentAliasNotFoundException";
14
- const _AAR = "AgentAliasRoute";
15
- const _AARL = "AgentAliasRoutesList";
16
- const _AAg = "AgentAlias";
17
12
  const _AC = "AgentChannels";
18
13
  const _ACC = "AgentCallCapability";
19
14
  const _ACL = "AgentCapabilitiesList";
20
- const _ACS = "ApiChannelSettings";
21
- const _ACSs = "AssistantChannelSettings";
15
+ const _ACS = "AssistantChannelSettings";
16
+ const _ACSu = "AutonomousChannelSettings";
22
17
  const _ACg = "AgentCapability";
18
+ const _AD = "AgentDeployment";
23
19
  const _ADC = "AgentDelegationCapability";
20
+ const _ADIUE = "AgentDeploymentInUseException";
21
+ const _ADL = "AgentDeploymentsList";
22
+ const _ADNFE = "AgentDeploymentNotFoundException";
23
+ const _ADNUNE = "AgentDeploymentNonUniqueNameException";
24
+ const _ADR = "AgentDeploymentRoute";
25
+ const _ADRL = "AgentDeploymentRoutesList";
24
26
  const _ADS = "AgentDefinitionSnapshot";
25
27
  const _AE = "AgentEngine";
26
- const _AEE = "AgentExecutionError";
27
- const _AER = "AgentExecutionResult";
28
- const _AF = "AgentFile";
29
- const _AFL = "AgentFileList";
30
- const _AFT = "AgentFunctionTool";
31
- const _AG = "AgentGrant";
32
- const _AGL = "AgentGrantList";
33
28
  const _AGP = "AgentGrantPrincipal";
29
+ const _AGPL = "AgentGrantPrincipalList";
34
30
  const _AHC = "AgentHandoverCapability";
31
+ const _AHCg = "AgentHangupCapability";
32
+ const _AHP = "AgentHandoverPipeline";
33
+ const _AHPg = "AgentHangupPipeline";
35
34
  const _AI = "AgentInfo";
36
35
  const _AIL = "AgentsInfoList";
36
+ const _AIUE = "AgentInUseException";
37
37
  const _AKB = "AgentKnowledgeBase";
38
38
  const _AL = "AgentsList";
39
- const _ALE = "AgentLlmEngine";
40
- const _AMSC = "AgentMcpServerCapability";
41
39
  const _ANFE = "AgentNotFoundException";
42
40
  const _ANUNE = "AgentNonUniqueNameException";
43
- const _AR = "AuditRecord";
44
- const _ARL = "AuditRecordsList";
41
+ const _AS = "AgentSettings";
45
42
  const _ASC = "AgentSuggestionsCapability";
46
43
  const _ASCg = "AgentSandboxCapability";
47
44
  const _ASE = "AgentSqsEngine";
45
+ const _ASL = "AgentSkillsList";
46
+ const _ASR = "AgentSkillReference";
48
47
  const _ASSO = "AgentSnapshotSandboxOptions";
49
48
  const _AT = "AgentTool";
49
+ const _ATA = "AgentToolApproval";
50
+ const _ATAL = "AgentToolAnnotationsList";
51
+ const _ATAg = "AgentToolAnnotation";
50
52
  const _ATC = "AgentTransferCapability";
53
+ const _ATCA = "AgentToolCommentAnnotation";
54
+ const _ATP = "AgentToolPipeline";
55
+ const _ATPg = "AgentTransferPipeline";
56
+ const _ATRA = "AgentToolResultAnnotation";
57
+ const _ATTA = "AgentToolTagAnnotation";
51
58
  const _ATV = "AgentToolVariable";
59
+ const _ATVA = "AgentToolVariablesAnnotation";
52
60
  const _ATVAH = "AgentToolVariableAutoHandler";
53
61
  const _ATVGH = "AgentToolVariableGuidedHandler";
54
62
  const _ATVH = "AgentToolVariableHandler";
@@ -63,155 +71,111 @@ const _AVL = "AgentVariablesList";
63
71
  const _AVNFE = "AgentVersionNotFoundException";
64
72
  const _AVSO = "AgentVercelSandboxOptions";
65
73
  const _AVg = "AgentVersion";
74
+ const _AWC = "AgentWaitCapability";
66
75
  const _AWE = "AgentWebhookEngine";
67
76
  const _AWFC = "AgentWebFetchCapability";
68
77
  const _AWSC = "AgentWebSearchCapability";
69
- const _Ag = "Agent";
78
+ const _Ac = "Actor";
70
79
  const _CA = "CreateAgent";
71
80
  const _CAAK = "CreateAgentApiKey";
72
81
  const _CAAKI = "CreateAgentApiKeyInput";
73
82
  const _CAAKO = "CreateAgentApiKeyOutput";
83
+ const _CAD = "CreateAgentDeployment";
84
+ const _CADI = "CreateAgentDeploymentInput";
85
+ const _CADO = "CreateAgentDeploymentOutput";
74
86
  const _CAI = "CreateAgentInput";
75
87
  const _CAO = "CreateAgentOutput";
76
88
  const _CAV = "CompareAgentVersions";
77
89
  const _CAVI = "CompareAgentVersionsInput";
78
90
  const _CAVO = "CompareAgentVersionsOutput";
79
91
  const _CCS = "ChatChannelSettings";
80
- const _CG = "CreateGuardrail";
81
- const _CGI = "CreateGuardrailInput";
82
- const _CGO = "CreateGuardrailOutput";
83
92
  const _DA = "DeleteAgent";
84
- const _DAA = "DeleteAgentAlias";
85
- const _DAAI = "DeleteAgentAliasInput";
86
93
  const _DAAK = "DeleteAgentApiKey";
87
94
  const _DAAKI = "DeleteAgentApiKeyInput";
88
95
  const _DAAKO = "DeleteAgentApiKeyOutput";
89
- const _DAAO = "DeleteAgentAliasOutput";
96
+ const _DAD = "DeleteAgentDeployment";
97
+ const _DADI = "DeleteAgentDeploymentInput";
98
+ const _DADO = "DeleteAgentDeploymentOutput";
90
99
  const _DAI = "DeleteAgentInput";
91
100
  const _DAO = "DeleteAgentOutput";
92
- const _DG = "DeleteGuardrail";
93
- const _DGI = "DeleteGuardrailInput";
94
- const _DGO = "DeleteGuardrailOutput";
95
- const _EA = "ExecuteAgent";
96
- const _EAI = "ExecuteAgentInput";
97
- const _EAO = "ExecuteAgentOutput";
98
- const _FI = "FunctionIntegration";
99
- const _FWI = "FunctionWebhookIntegration";
100
- const _G = "Guardrail";
101
101
  const _GA = "GetAgent";
102
+ const _GAD = "GetAgentDeployment";
103
+ const _GADI = "GetAgentDeploymentInput";
104
+ const _GADO = "GetAgentDeploymentOutput";
102
105
  const _GAI = "GetAgentInput";
103
106
  const _GAO = "GetAgentOutput";
104
107
  const _GAV = "GetAgentVersion";
105
108
  const _GAVI = "GetAgentVersionInput";
106
109
  const _GAVO = "GetAgentVersionOutput";
107
- const _GCF = "GuardrailContentFilter";
108
- const _GCFL = "GuardrailContentFiltersList";
109
- const _GCP = "GuardrailContentPolicy";
110
- const _GG = "GetGuardrail";
111
- const _GGI = "GetGuardrailInput";
112
- const _GGO = "GetGuardrailOutput";
113
- const _GIUE = "GuardrailInUseException";
114
- const _GL = "GuardrailsList";
115
- const _GNFE = "GuardrailNotFoundException";
116
- const _GPE = "GuardrailPiiEntity";
117
- const _GPEL = "GuardrailPiiEntitiesList";
118
- const _GPP = "GuardrailPiiPolicy";
119
- const _GT = "GuardrailTopic";
120
- const _GTL = "GuardrailTopicsList";
121
- const _GTP = "GuardrailTopicPolicy";
122
- const _GWP = "GuardrailWordPolicy";
123
110
  const _LA = "ListAgents";
124
- const _LAA = "ListAgentAliases";
125
- const _LAAI = "ListAgentAliasesInput";
126
111
  const _LAAK = "ListAgentApiKeys";
127
112
  const _LAAKI = "ListAgentApiKeysInput";
128
113
  const _LAAKO = "ListAgentApiKeysOutput";
129
- const _LAAO = "ListAgentAliasesOutput";
114
+ const _LAD = "ListAgentDeployments";
115
+ const _LADI = "ListAgentDeploymentsInput";
116
+ const _LADO = "ListAgentDeploymentsOutput";
130
117
  const _LAI = "ListAgentsInput";
131
118
  const _LAN = "ListAgentsNames";
132
119
  const _LANI = "ListAgentsNamesInput";
133
120
  const _LANO = "ListAgentsNamesOutput";
134
121
  const _LAO = "ListAgentsOutput";
135
- const _LAR = "ListAuditRecords";
136
- const _LARI = "ListAuditRecordsInput";
137
- const _LARO = "ListAuditRecordsOutput";
138
122
  const _LAV = "ListAgentVersions";
139
123
  const _LAVI = "ListAgentVersionsInput";
140
124
  const _LAVO = "ListAgentVersionsOutput";
141
- const _LG = "ListGuardrails";
142
- const _LGI = "ListGuardrailsInput";
143
- const _LGO = "ListGuardrailsOutput";
144
125
  const _NTPE = "NothingToPublishException";
145
- const _PAA = "PutAgentAlias";
146
- const _PAAI = "PutAgentAliasInput";
147
- const _PAAO = "PutAgentAliasOutput";
148
126
  const _PAV = "PublishAgentVersion";
149
127
  const _PAVI = "PublishAgentVersionInput";
150
128
  const _PAVO = "PublishAgentVersionOutput";
129
+ const _RAVTD = "RestoreAgentVersionToDraft";
130
+ const _RAVTDI = "RestoreAgentVersionToDraftInput";
131
+ const _RAVTDO = "RestoreAgentVersionToDraftOutput";
151
132
  const _RCE = "RevisionConflictException";
152
133
  const _UA = "UpdateAgent";
134
+ const _UAD = "UpdateAgentDeployment";
135
+ const _UADI = "UpdateAgentDeploymentInput";
136
+ const _UADO = "UpdateAgentDeploymentOutput";
153
137
  const _UAI = "UpdateAgentInput";
154
138
  const _UAO = "UpdateAgentOutput";
155
- const _UG = "UpdateGuardrail";
156
- const _UGI = "UpdateGuardrailInput";
157
- const _UGO = "UpdateGuardrailOutput";
158
139
  const _VCMS = "VoiceCallerMetadataSettings";
159
140
  const _VCS = "VoiceChannelSettings";
160
141
  const _VE = "ValidationException";
161
142
  const _VECS = "VoiceEndCallSettings";
162
143
  const _VIS = "VoiceInterruptionSettings";
163
144
  const _VMDS = "VoiceMaxDurationSettings";
164
- const _VSS = "VoiceSynthesisSettings";
165
145
  const _VSTS = "VoiceSilenceTimeoutSettings";
166
146
  const _VTA = "VoiceTerminateAction";
167
147
  const _VTHA = "VoiceTerminateHangupAction";
168
148
  const _VTT = "VoiceTransferTarget";
169
- const _VTTL = "VoiceTransferTargetsList";
170
- const _WA = "WebhookAuthorization";
171
- const _WAB = "WebhookAuthorizationBasic";
172
- const _WABe = "WebhookAuthorizationBearer";
173
- const _WAOA = "WebhookAuthorizationOAuth";
174
- const _WH = "WebhookHeader";
175
- const _WHL = "WebhookHeadersList";
176
149
  const _WSUL = "WebSearchUserLocation";
177
150
  const _a = "access";
178
- const _aD = "allowedDomains";
151
+ const _aD = "agentDeployment";
152
+ const _aDl = "allowedDomains";
179
153
  const _aI = "agentId";
180
- const _aIc = "actorId";
181
- const _aN = "aliasName";
182
- const _aT = "allowedTools";
183
- const _ac = "actor";
184
- const _act = "action";
154
+ const _aOF = "applyOnFailure";
155
+ const _aOS = "applyOnSuccess";
156
+ const _aV = "agentVersion";
157
+ const _ac = "action";
185
158
  const _af = "after";
186
- const _ag = "agents";
187
- const _age = "agent";
188
- const _al = "aliases";
189
- const _ali = "alias";
190
- const _ap = "api";
159
+ const _ag = "agent";
160
+ const _age = "agents";
161
+ const _ai = "ai";
162
+ const _an = "annotations";
163
+ const _ap = "approval";
191
164
  const _as = "assistant";
192
- const _asy = "async";
193
- const _au = "authorization";
165
+ const _au = "autonomous";
194
166
  const _aut = "auto";
195
167
  const _b = "before";
196
- const _bIM = "blockedInputMessage";
197
- const _bOM = "blockedOutputMessage";
198
- const _bW = "blockedWords";
199
- const _ba = "basic";
200
- const _be = "bearer";
168
+ const _bOV = "basedOnVersion";
201
169
  const _c = "client";
202
170
  const _cA = "createdAt";
203
171
  const _cB = "createdBy";
204
172
  const _cC = "callerCompany";
205
173
  const _cE = "callerEmail";
206
- const _cI = "clientId";
207
174
  const _cM = "callerMetadata";
208
175
  const _cN = "callerName";
209
176
  const _cNa = "callerNumber";
210
- const _cP = "contentPolicy";
211
177
  const _cR = "currentRevision";
212
178
  const _cS = "contextSize";
213
- const _cSl = "clientSecret";
214
- const _cT = "contentType";
215
179
  const _ca = "category";
216
180
  const _cap = "capabilities";
217
181
  const _ch = "channels";
@@ -220,49 +184,41 @@ const _chan = "changelog";
220
184
  const _chang = "changes";
221
185
  const _chann = "channel";
222
186
  const _ci = "city";
223
- const _co = "code";
187
+ const _co = "context";
224
188
  const _com = "company";
225
- const _con = "context";
189
+ const _comm = "comment";
226
190
  const _cou = "country";
191
+ const _cu = "cursor";
227
192
  const _d = "description";
228
- const _de = "definition";
229
- const _def = "default";
193
+ const _dBV = "draftBaseVersion";
194
+ const _dN = "deploymentName";
195
+ const _de = "deployments";
196
+ const _def = "definition";
197
+ const _defa = "default";
230
198
  const _del = "delegation";
199
+ const _dep = "deployment";
231
200
  const _di = "discoverable";
232
201
  const _e = "error";
233
202
  const _eA = "expiresAt";
234
203
  const _eC = "endCall";
235
- const _eT = "entityType";
236
- const _eU = "endpointUrl";
237
204
  const _en = "engine";
238
205
  const _ena = "enabled";
239
- const _ent = "entities";
240
- const _ex = "examples";
241
- const _ext = "extension";
242
- const _f = "files";
243
- const _fi = "filters";
244
- const _fr = "from";
245
- const _fu = "function";
246
- const _g = "guardrails";
247
- const _gI = "guardrailId";
248
- const _gIr = "groupId";
249
- const _gr = "grants";
250
- const _gre = "greeting";
251
- const _gu = "guardrail";
252
- const _gui = "guided";
206
+ const _ex = "extension";
207
+ const _f = "from";
208
+ const _fD = "fromDraft";
209
+ const _g = "grants";
210
+ const _gI = "groupId";
211
+ const _gr = "greeting";
212
+ const _gu = "guided";
253
213
  const _h = "handler";
254
214
  const _hE = "httpError";
255
215
  const _hQ = "httpQuery";
256
216
  const _ha = "handover";
257
217
  const _han = "hangup";
258
- const _he = "headers";
259
218
  const _ht = "http";
260
219
  const _i = "id";
261
- const _iS = "inputStrength";
262
220
  const _in = "instructions";
263
- const _inp = "input";
264
- const _int = "integration";
265
- const _inte = "interruptions";
221
+ const _int = "interruptions";
266
222
  const _k = "key";
267
223
  const _kBI = "knowledgeBaseId";
268
224
  const _kI = "keyId";
@@ -271,103 +227,79 @@ const _ke = "keys";
271
227
  const _l = "limit";
272
228
  const _lUA = "lastUsedAt";
273
229
  const _lV = "latestVersion";
274
- const _la = "language";
275
- const _ll = "llm";
276
230
  const _m = "message";
277
231
  const _mD = "maxDuration";
278
232
  const _mW = "minWords";
279
- const _mc = "mcp";
280
- const _me = "method";
281
233
  const _mo = "model";
282
234
  const _n = "name";
283
- const _nT = "nextToken";
235
+ const _nC = "nextCursor";
284
236
  const _ne = "network";
285
- const _o = "output";
286
- const _oS = "outputStrength";
287
- const _oa = "oauth";
288
- const _op = "optional";
237
+ const _o = "optional";
289
238
  const _p = "picture";
290
239
  const _pA = "publishedAt";
291
- const _pAI = "parentAgentId";
292
240
  const _pB = "publishedBy";
293
241
  const _pGI = "pbxGroupId";
294
- const _pP = "piiPolicy";
295
- const _pTI = "parentTraceId";
296
- const _pa = "parameters";
297
- const _pas = "password";
298
- const _pat = "path";
299
- const _patt = "pattern";
300
- const _pe = "permission";
242
+ const _pa = "path";
243
+ const _pe = "percentage";
301
244
  const _ph = "phrases";
245
+ const _pi = "pipeline";
302
246
  const _pr = "prefix";
303
247
  const _pre = "predefined";
304
- const _pri = "principal";
305
- const _pro = "profanity";
306
- const _prov = "provider";
248
+ const _pro = "prompt";
307
249
  const _r = "revision";
308
- const _rI = "resourceId";
309
- const _rIe = "requestId";
310
- const _rT = "resourceType";
311
- const _re = "result";
312
- const _rec = "records";
313
- const _reg = "region";
250
+ const _re = "region";
251
+ const _res = "result";
314
252
  const _ro = "routing";
315
253
  const _s = "smithy.ts.sdk.synthetic.wildix.wilma.agents";
316
254
  const _sI = "snapshotId";
317
- const _sIe = "sessionId";
255
+ const _sM = "startMessage";
318
256
  const _sT = "silenceTimeout";
257
+ const _sV = "skillVersion";
319
258
  const _sa = "sandbox";
320
- const _sc = "scope";
321
- const _se = "secret";
259
+ const _se = "settings";
322
260
  const _sea = "search";
323
- const _sec = "seconds";
324
- const _si = "size";
261
+ const _sec = "secret";
262
+ const _seco = "seconds";
263
+ const _seq = "sequence";
264
+ const _ser = "service";
265
+ const _si = "silent";
325
266
  const _sk = "skills";
326
267
  const _sn = "snapshot";
327
- const _sp = "speed";
328
268
  const _sq = "sqs";
329
269
  const _st = "status";
330
270
  const _su = "suggestions";
331
- const _sy = "synthesis";
332
271
  const _t = "type";
333
- const _tI = "traceId";
334
- const _tP = "topicPolicy";
272
+ const _tD = "toDraft";
335
273
  const _tZ = "timeZone";
336
- const _ta = "targets";
274
+ const _ta = "tag";
337
275
  const _ti = "timeout";
338
- const _tim = "timestamp";
339
- const _time = "time";
340
- const _timez = "timezone";
276
+ const _tim = "time";
277
+ const _time = "timezone";
341
278
  const _to = "to";
342
- const _tok = "token";
343
279
  const _too = "tool";
344
- const _top = "topics";
345
280
  const _tr = "transfer";
346
281
  const _u = "url";
347
282
  const _uA = "updatedAt";
348
283
  const _uB = "updatedBy";
349
284
  const _uI = "userId";
350
285
  const _uL = "userLocation";
351
- const _us = "user";
352
- const _use = "username";
353
286
  const _v = "visibility";
354
- const _vI = "voiceId";
355
287
  const _va = "variables";
356
288
  const _val = "value";
289
+ const _var = "variant";
357
290
  const _vc = "vcpus";
358
291
  const _ve = "version";
359
292
  const _ver = "versions";
360
293
  const _verc = "vercel";
361
294
  const _vo = "voice";
362
- const _w = "weight";
295
+ const _w = "wait";
363
296
  const _wF = "webFetch";
364
- const _wM = "welcomeMessage";
365
- const _wP = "wordPolicy";
366
297
  const _wS = "webSearch";
367
298
  const _we = "webhook";
368
299
  const n0 = "smithy.framework";
369
300
  const n1 = "wildix.wilma.agents";
370
- const n2 = "wildix.wilma.sessions";
301
+ const n2 = "wildix.wilma.common";
302
+ const n3 = "wildix.wilma.skills";
371
303
  const schema_1 = require("@smithy/core/schema");
372
304
  const errors_1 = require("../models/errors");
373
305
  const WilmaAgentsServiceException_1 = require("../models/WilmaAgentsServiceException");
@@ -376,95 +308,93 @@ exports.WilmaAgentsServiceException$ = [-3, _s, "WilmaAgentsServiceException", 0
376
308
  _s_registry.registerError(exports.WilmaAgentsServiceException$, WilmaAgentsServiceException_1.WilmaAgentsServiceException);
377
309
  const n0_registry = schema_1.TypeRegistry.for(n0);
378
310
  const n1_registry = schema_1.TypeRegistry.for(n1);
311
+ const n2_registry = schema_1.TypeRegistry.for(n2);
379
312
  exports.ValidationException$ = [-3, n0, _VE,
380
313
  { [_e]: _c, [_hE]: 400 },
381
314
  [_m],
382
315
  [0], 1
383
316
  ];
384
317
  n0_registry.registerError(exports.ValidationException$, errors_1.ValidationException);
385
- exports.AgentAliasNotFoundException$ = [-3, n1, _AANFE,
318
+ exports.AgentApiKeyNotFoundException$ = [-3, n1, _AAKNFE,
386
319
  { [_e]: _c, [_hE]: 404 },
387
320
  [_m, _t],
388
321
  [0, 0], 1
389
322
  ];
390
- n1_registry.registerError(exports.AgentAliasNotFoundException$, errors_1.AgentAliasNotFoundException);
391
- exports.AgentApiKeyNotFoundException$ = [-3, n1, _AAKNFE,
392
- { [_e]: _c, [_hE]: 404 },
323
+ n1_registry.registerError(exports.AgentApiKeyNotFoundException$, errors_1.AgentApiKeyNotFoundException);
324
+ exports.AgentDeploymentInUseException$ = [-3, n1, _ADIUE,
325
+ { [_e]: _c, [_hE]: 409 },
393
326
  [_m, _t],
394
327
  [0, 0], 1
395
328
  ];
396
- n1_registry.registerError(exports.AgentApiKeyNotFoundException$, errors_1.AgentApiKeyNotFoundException);
397
- exports.AgentNonUniqueNameException$ = [-3, n1, _ANUNE,
329
+ n1_registry.registerError(exports.AgentDeploymentInUseException$, errors_1.AgentDeploymentInUseException);
330
+ exports.AgentDeploymentNonUniqueNameException$ = [-3, n1, _ADNUNE,
398
331
  { [_e]: _c, [_hE]: 409 },
399
332
  [_m, _t],
400
333
  [0, 0], 1
401
334
  ];
402
- n1_registry.registerError(exports.AgentNonUniqueNameException$, errors_1.AgentNonUniqueNameException);
403
- exports.AgentNotFoundException$ = [-3, n1, _ANFE,
335
+ n1_registry.registerError(exports.AgentDeploymentNonUniqueNameException$, errors_1.AgentDeploymentNonUniqueNameException);
336
+ exports.AgentDeploymentNotFoundException$ = [-3, n1, _ADNFE,
404
337
  { [_e]: _c, [_hE]: 404 },
405
338
  [_m, _t],
406
339
  [0, 0], 1
407
340
  ];
408
- n1_registry.registerError(exports.AgentNotFoundException$, errors_1.AgentNotFoundException);
409
- exports.AgentVersionNotFoundException$ = [-3, n1, _AVNFE,
410
- { [_e]: _c, [_hE]: 404 },
341
+ n1_registry.registerError(exports.AgentDeploymentNotFoundException$, errors_1.AgentDeploymentNotFoundException);
342
+ exports.AgentInUseException$ = [-3, n1, _AIUE,
343
+ { [_e]: _c, [_hE]: 409 },
411
344
  [_m, _t],
412
345
  [0, 0], 1
413
346
  ];
414
- n1_registry.registerError(exports.AgentVersionNotFoundException$, errors_1.AgentVersionNotFoundException);
415
- exports.GuardrailInUseException$ = [-3, n1, _GIUE,
347
+ n1_registry.registerError(exports.AgentInUseException$, errors_1.AgentInUseException);
348
+ exports.AgentNonUniqueNameException$ = [-3, n1, _ANUNE,
416
349
  { [_e]: _c, [_hE]: 409 },
417
350
  [_m, _t],
418
351
  [0, 0], 1
419
352
  ];
420
- n1_registry.registerError(exports.GuardrailInUseException$, errors_1.GuardrailInUseException);
421
- exports.GuardrailNotFoundException$ = [-3, n1, _GNFE,
353
+ n1_registry.registerError(exports.AgentNonUniqueNameException$, errors_1.AgentNonUniqueNameException);
354
+ exports.AgentNotFoundException$ = [-3, n1, _ANFE,
355
+ { [_e]: _c, [_hE]: 404 },
356
+ [_m, _t],
357
+ [0, 0], 1
358
+ ];
359
+ n1_registry.registerError(exports.AgentNotFoundException$, errors_1.AgentNotFoundException);
360
+ exports.AgentVersionNotFoundException$ = [-3, n1, _AVNFE,
422
361
  { [_e]: _c, [_hE]: 404 },
423
362
  [_m, _t],
424
363
  [0, 0], 1
425
364
  ];
426
- n1_registry.registerError(exports.GuardrailNotFoundException$, errors_1.GuardrailNotFoundException);
427
- exports.NothingToPublishException$ = [-3, n1, _NTPE,
365
+ n1_registry.registerError(exports.AgentVersionNotFoundException$, errors_1.AgentVersionNotFoundException);
366
+ exports.NothingToPublishException$ = [-3, n2, _NTPE,
428
367
  { [_e]: _c, [_hE]: 409 },
429
368
  [_m, _t],
430
369
  [0, 0], 1
431
370
  ];
432
- n1_registry.registerError(exports.NothingToPublishException$, errors_1.NothingToPublishException);
433
- exports.RevisionConflictException$ = [-3, n1, _RCE,
371
+ n2_registry.registerError(exports.NothingToPublishException$, errors_1.NothingToPublishException);
372
+ exports.RevisionConflictException$ = [-3, n2, _RCE,
434
373
  { [_e]: _c, [_hE]: 409 },
435
374
  [_m, _t, _cR],
436
375
  [0, 0, 1], 1
437
376
  ];
438
- n1_registry.registerError(exports.RevisionConflictException$, errors_1.RevisionConflictException);
377
+ n2_registry.registerError(exports.RevisionConflictException$, errors_1.RevisionConflictException);
439
378
  exports.errorTypeRegistries = [
440
379
  _s_registry,
441
380
  n0_registry,
442
381
  n1_registry,
382
+ n2_registry,
443
383
  ];
444
- exports.Actor$ = [3, n1, _A,
384
+ exports.Agent$ = [3, n1, _A,
445
385
  0,
446
- [_t, _i, _n],
447
- [0, 0, 0], 2
448
- ];
449
- exports.Agent$ = [3, n1, _Ag,
450
- 0,
451
- [_n, _en, _cA, _cB, _i, _st, _r, _d, _ca, _p, _ch, _g, _a, _uA, _uB, _lV, _al],
452
- [0, () => exports.AgentEngine$, 0, () => exports.Actor$, 0, 0, 1, 0, 0, 0, () => exports.AgentChannels$, 64 | 0, () => exports.AgentAccess$, 0, () => exports.Actor$, 1, () => AgentAliasesList], 7
386
+ [_n, _ch, _en, _cA, _cB, _i, _st, _r, _d, _ca, _p, _se, _a, _uA, _uB, _lV, _dBV, _de],
387
+ [0, () => exports.AgentChannels$, () => exports.AgentEngine$, 0, () => exports.Actor$, 0, 0, 1, 0, 0, 0, () => exports.AgentSettings$, () => exports.AgentAccess$, 0, () => exports.Actor$, 0, 0, () => AgentDeploymentsList], 8
453
388
  ];
454
389
  exports.AgentAccess$ = [3, n1, _AA,
455
390
  0,
456
- [_v, _gr],
457
- [0, () => AgentGrantList]
458
- ];
459
- exports.AgentAlias$ = [3, n1, _AAg,
460
- 0,
461
- [_n, _aI, _ro, _uA, _uB, _d],
462
- [0, 0, () => AgentAliasRoutesList, 0, () => exports.Actor$, 0], 5
391
+ [_v, _g],
392
+ [0, () => AgentGrantPrincipalList]
463
393
  ];
464
- exports.AgentAliasRoute$ = [3, n1, _AAR,
394
+ exports.AgentAiEngine$ = [3, n1, _AAE,
465
395
  0,
466
- [_ve, _w],
467
- [1, 1], 2
396
+ [_in, _mo, _sk, _cap, _va],
397
+ [0, 0, () => AgentSkillsList, () => AgentCapabilitiesList, () => AgentVariablesList], 1
468
398
  ];
469
399
  exports.AgentApiKey$ = [3, n1, _AAK,
470
400
  0,
@@ -473,88 +403,113 @@ exports.AgentApiKey$ = [3, n1, _AAK,
473
403
  ];
474
404
  exports.AgentCallCapability$ = [3, n1, _ACC,
475
405
  0,
476
- [_aI, _va],
477
- [0, () => AgentToolVariablesList], 1
406
+ [_aI, _aV, _aD, _a, _va],
407
+ [0, 0, 0, () => exports.AgentAccess$, () => AgentToolVariablesList], 1
478
408
  ];
479
409
  exports.AgentChannels$ = [3, n1, _AC,
480
410
  0,
481
- [_as, _cha, _vo, _ap],
482
- [() => exports.AssistantChannelSettings$, () => exports.ChatChannelSettings$, () => exports.VoiceChannelSettings$, () => exports.ApiChannelSettings$]
411
+ [_vo, _cha, _as, _au],
412
+ [() => exports.VoiceChannelSettings$, () => exports.ChatChannelSettings$, () => exports.AssistantChannelSettings$, () => exports.AutonomousChannelSettings$]
483
413
  ];
484
414
  exports.AgentDefinitionSnapshot$ = [3, n1, _ADS,
485
415
  0,
486
- [_n, _en, _d, _ca, _p, _ch, _g, _a],
487
- [0, () => exports.AgentEngine$, 0, 0, 0, () => exports.AgentChannels$, 64 | 0, () => exports.AgentAccess$], 2
416
+ [_n, _ch, _en, _d, _ca, _p, _se, _a],
417
+ [0, () => exports.AgentChannels$, () => exports.AgentEngine$, 0, 0, 0, () => exports.AgentSettings$, () => exports.AgentAccess$], 3
488
418
  ];
489
419
  exports.AgentDelegationCapability$ = [3, n1, _ADC,
490
420
  0,
491
- [_ag, _in],
492
- [64 | 0, 0]
421
+ [_i, _n, _d, _aV, _aD, _an],
422
+ [0, 0, 0, 0, 0, () => AgentToolAnnotationsList], 1
493
423
  ];
494
- exports.AgentExecutionError$ = [3, n1, _AEE,
424
+ exports.AgentDeployment$ = [3, n1, _AD,
495
425
  0,
496
- [_m, _co],
497
- [0, 0], 1
426
+ [_cA, _cB, _aI, _n, _st, _ro, _r, _uA, _uB, _d],
427
+ [0, () => exports.Actor$, 0, 0, 0, () => AgentDeploymentRoutesList, 1, 0, () => exports.Actor$, 0], 7
498
428
  ];
499
- exports.AgentExecutionResult$ = [3, n1, _AER,
429
+ exports.AgentDeploymentRoute$ = [3, n1, _ADR,
500
430
  0,
501
- [_o, _e, _f, _tI],
502
- [15, () => exports.AgentExecutionError$, () => AgentFileList, 0]
431
+ [_ve, _pe],
432
+ [0, 1], 2
503
433
  ];
504
- exports.AgentFunctionTool$ = [3, n1, _AFT,
434
+ exports.AgentHandoverCapability$ = [3, n1, _AHC,
505
435
  0,
506
- [_n, _d, _pa, _int],
507
- [0, 0, 15, () => exports.FunctionIntegration$], 1
436
+ [_n, _d, _var, _ag, _aV, _aD, _ser, _si, _pi, _an],
437
+ [0, 0, 0, 0, 0, 0, 0, 2, () => exports.AgentHandoverPipeline$, () => AgentToolAnnotationsList]
508
438
  ];
509
- exports.AgentGrant$ = [3, n1, _AG,
439
+ exports.AgentHandoverPipeline$ = [3, n1, _AHP,
510
440
  0,
511
- [_pe, _pri],
512
- [0, () => exports.AgentGrantPrincipal$], 2
441
+ [_t, _in],
442
+ [0, 0]
513
443
  ];
514
- exports.AgentHandoverCapability$ = [3, n1, _AHC,
444
+ exports.AgentHangupCapability$ = [3, n1, _AHCg,
515
445
  0,
516
- [_in, _m],
446
+ [_n, _d, _pi, _an],
447
+ [0, 0, () => exports.AgentHangupPipeline$, () => AgentToolAnnotationsList]
448
+ ];
449
+ exports.AgentHangupPipeline$ = [3, n1, _AHPg,
450
+ 0,
451
+ [_t, _in],
517
452
  [0, 0]
518
453
  ];
519
454
  exports.AgentInfo$ = [3, n1, _AI,
520
455
  0,
521
- [_i, _n, _st, _ca, _ch, _lV],
522
- [0, 0, 0, 0, 64 | 0, 1], 3
456
+ [_i, _n, _st, _ch, _ca, _lV],
457
+ [0, 0, 0, 64 | 0, 0, 0], 4
523
458
  ];
524
459
  exports.AgentKnowledgeBase$ = [3, n1, _AKB,
525
460
  0,
526
- [_kBI, _in],
527
- [0, 0]
528
- ];
529
- exports.AgentLlmEngine$ = [3, n1, _ALE,
530
- 0,
531
- [_in, _mo, _sk, _cap, _va],
532
- [0, 0, 64 | 0, () => AgentCapabilitiesList, () => AgentVariablesList], 1
461
+ [_kBI, _in, _an],
462
+ [0, 0, () => AgentToolAnnotationsList]
533
463
  ];
534
- exports.AgentMcpServerCapability$ = [3, n1, _AMSC,
464
+ exports.AgentSettings$ = [3, n1, _AS,
535
465
  0,
536
- [_u, _au, _aT],
537
- [0, () => exports.WebhookAuthorization$, 64 | 0], 1
466
+ [_pGI],
467
+ [0]
538
468
  ];
539
469
  exports.AgentSnapshotSandboxOptions$ = [3, n1, _ASSO,
540
470
  0,
541
- [_sI, _ne, _aD, _vc],
471
+ [_sI, _ne, _aDl, _vc],
542
472
  [0, 0, 64 | 0, 1], 1
543
473
  ];
544
474
  exports.AgentSqsEngine$ = [3, n1, _ASE,
545
475
  0,
546
- [_u, _k, _se],
476
+ [_u, _k, _sec],
547
477
  [0, 0, 0], 3
548
478
  ];
549
479
  exports.AgentSuggestionsCapability$ = [3, n1, _ASC,
480
+ 0,
481
+ [_n, _an],
482
+ [0, () => AgentToolAnnotationsList]
483
+ ];
484
+ exports.AgentTool$ = [3, n1, _AT,
485
+ 0,
486
+ [_i, _va, _sM, _pi, _ap, _an],
487
+ [0, () => AgentToolVariablesList, 0, () => exports.AgentToolPipeline$, () => exports.AgentToolApproval$, () => AgentToolAnnotationsList], 1
488
+ ];
489
+ exports.AgentToolApproval$ = [3, n1, _ATA,
490
+ 0,
491
+ [_pro],
492
+ [0]
493
+ ];
494
+ exports.AgentToolCommentAnnotation$ = [3, n1, _ATCA,
495
+ 0,
496
+ [_val, _aOS, _aOF],
497
+ [0, 2, 2]
498
+ ];
499
+ exports.AgentToolPipeline$ = [3, n1, _ATP,
500
+ 0,
501
+ [_t, _in],
502
+ [0, 0]
503
+ ];
504
+ exports.AgentToolResultAnnotation$ = [3, n1, _ATRA,
550
505
  0,
551
506
  [],
552
507
  []
553
508
  ];
554
- exports.AgentTool$ = [3, n1, _AT,
509
+ exports.AgentToolTagAnnotation$ = [3, n1, _ATTA,
555
510
  0,
556
- [_i, _va],
557
- [0, () => AgentToolVariablesList], 1
511
+ [_val, _aOS, _aOF],
512
+ [0, 2, 2]
558
513
  ];
559
514
  exports.AgentToolVariable$ = [3, n1, _ATV,
560
515
  0,
@@ -573,78 +528,88 @@ exports.AgentToolVariableGuidedHandler$ = [3, n1, _ATVGH,
573
528
  ];
574
529
  exports.AgentToolVariablePredefinedHandler$ = [3, n1, _ATVPH,
575
530
  0,
576
- [_d],
531
+ [_val],
577
532
  [0], 1
578
533
  ];
534
+ exports.AgentToolVariablesAnnotation$ = [3, n1, _ATVA,
535
+ 0,
536
+ [],
537
+ []
538
+ ];
579
539
  exports.AgentTransferCapability$ = [3, n1, _ATC,
580
540
  0,
581
- [_ta, _in],
582
- [() => VoiceTransferTargetsList, 0], 1
541
+ [_n, _d, _var, _co, _ex, _pi, _an],
542
+ [0, 0, 0, 0, 0, () => exports.AgentTransferPipeline$, () => AgentToolAnnotationsList]
543
+ ];
544
+ exports.AgentTransferPipeline$ = [3, n1, _ATPg,
545
+ 0,
546
+ [_t, _in],
547
+ [0, 0]
583
548
  ];
584
549
  exports.AgentVariable$ = [3, n1, _AV,
585
550
  0,
586
- [_n, _t, _op, _d],
551
+ [_n, _t, _o, _d],
587
552
  [0, 0, 2, 0], 3
588
553
  ];
589
554
  exports.AgentVercelSandboxOptions$ = [3, n1, _AVSO,
590
555
  0,
591
- [_vc, _ne, _aD],
556
+ [_vc, _ne, _aDl],
592
557
  [1, 0, 64 | 0]
593
558
  ];
594
559
  exports.AgentVersion$ = [3, n1, _AVg,
595
560
  0,
596
- [_aI, _ve, _de, _pA, _pB, _chan],
597
- [0, 1, () => exports.AgentDefinitionSnapshot$, 0, () => exports.Actor$, 0], 5
561
+ [_aI, _ve, _seq, _def, _pA, _pB, _bOV, _n, _chan],
562
+ [0, 0, 1, () => exports.AgentDefinitionSnapshot$, 0, () => exports.Actor$, 0, 0, 0], 6
598
563
  ];
599
564
  exports.AgentVersionChange$ = [3, n1, _AVC,
600
565
  0,
601
- [_pat, _b, _af],
566
+ [_pa, _b, _af],
602
567
  [0, 15, 15], 1
603
568
  ];
604
569
  exports.AgentVersionInfo$ = [3, n1, _AVI,
605
570
  0,
606
- [_aI, _ve, _pA, _pB, _chan, _al],
607
- [0, 1, 0, () => exports.Actor$, 0, 64 | 0], 4
571
+ [_aI, _ve, _seq, _pA, _pB, _bOV, _n, _chan, _de],
572
+ [0, 0, 1, 0, () => exports.Actor$, 0, 0, 0, 64 | 0], 5
573
+ ];
574
+ exports.AgentWaitCapability$ = [3, n1, _AWC,
575
+ 0,
576
+ [_n, _d, _m, _an],
577
+ [0, 0, 0, () => AgentToolAnnotationsList]
608
578
  ];
609
579
  exports.AgentWebFetchCapability$ = [3, n1, _AWFC,
610
580
  0,
611
- [_aD],
581
+ [_aDl],
612
582
  [64 | 0]
613
583
  ];
614
584
  exports.AgentWebhookEngine$ = [3, n1, _AWE,
615
585
  0,
616
- [_u, _se, _ti],
586
+ [_u, _sec, _ti],
617
587
  [0, 0, 1], 2
618
588
  ];
619
589
  exports.AgentWebSearchCapability$ = [3, n1, _AWSC,
620
590
  0,
621
- [_cS, _aD, _uL],
591
+ [_cS, _aDl, _uL],
622
592
  [0, 64 | 0, () => exports.WebSearchUserLocation$]
623
593
  ];
624
- exports.ApiChannelSettings$ = [3, n1, _ACS,
625
- 0,
626
- [_ena],
627
- [2], 1
628
- ];
629
- exports.AssistantChannelSettings$ = [3, n1, _ACSs,
594
+ exports.AssistantChannelSettings$ = [3, n1, _ACS,
630
595
  0,
631
- [_ena, _def],
632
- [2, 2], 1
596
+ [_defa],
597
+ [2]
633
598
  ];
634
- exports.AuditRecord$ = [3, n1, _AR,
599
+ exports.AutonomousChannelSettings$ = [3, n1, _ACSu,
635
600
  0,
636
- [_i, _tim, _ac, _act, _rT, _rI, _aI, _chang, _rIe],
637
- [0, 0, () => exports.Actor$, 0, 0, 0, 0, () => AgentVersionChangesList, 0], 6
601
+ [],
602
+ []
638
603
  ];
639
604
  exports.ChatChannelSettings$ = [3, n1, _CCS,
640
605
  0,
641
- [_ena, _di, _pGI, _wM],
642
- [2, 2, 0, 0], 1
606
+ [_di],
607
+ [2]
643
608
  ];
644
609
  exports.CompareAgentVersionsInput$ = [3, n1, _CAVI,
645
610
  0,
646
- [_aI, _fr, _to, _com],
647
- [[0, 1], [1, { [_hQ]: _fr }], [1, { [_hQ]: _to }], [0, { [_hQ]: _com }]], 3
611
+ [_aI, _com, _f, _fD, _to, _tD],
612
+ [[0, 1], [0, { [_hQ]: _com }], [0, { [_hQ]: _f }], [2, { [_hQ]: _fD }], [0, { [_hQ]: _to }], [2, { [_hQ]: _tD }]], 1
648
613
  ];
649
614
  exports.CompareAgentVersionsOutput$ = [3, n1, _CAVO,
650
615
  0,
@@ -658,45 +623,45 @@ exports.CreateAgentApiKeyInput$ = [3, n1, _CAAKI,
658
623
  ];
659
624
  exports.CreateAgentApiKeyOutput$ = [3, n1, _CAAKO,
660
625
  0,
661
- [_k, _se],
626
+ [_k, _sec],
662
627
  [() => exports.AgentApiKey$, 0], 2
663
628
  ];
664
- exports.CreateAgentInput$ = [3, n1, _CAI,
629
+ exports.CreateAgentDeploymentInput$ = [3, n1, _CADI,
665
630
  0,
666
- [_n, _en, _d, _ca, _p, _ch, _g, _a, _com],
667
- [0, () => exports.AgentEngine$, 0, 0, 0, () => exports.AgentChannels$, 64 | 0, () => exports.AgentAccess$, [0, { [_hQ]: _com }]], 2
631
+ [_aI, _n, _st, _ro, _com, _d],
632
+ [[0, 1], 0, 0, () => AgentDeploymentRoutesList, [0, { [_hQ]: _com }], 0], 4
668
633
  ];
669
- exports.CreateAgentOutput$ = [3, n1, _CAO,
634
+ exports.CreateAgentDeploymentOutput$ = [3, n1, _CADO,
670
635
  0,
671
- [_age],
672
- [() => exports.Agent$], 1
636
+ [_dep],
637
+ [() => exports.AgentDeployment$], 1
673
638
  ];
674
- exports.CreateGuardrailInput$ = [3, n1, _CGI,
639
+ exports.CreateAgentInput$ = [3, n1, _CAI,
675
640
  0,
676
- [_n, _d, _tP, _cP, _wP, _pP, _bIM, _bOM, _com],
677
- [0, 0, () => exports.GuardrailTopicPolicy$, () => exports.GuardrailContentPolicy$, () => exports.GuardrailWordPolicy$, () => exports.GuardrailPiiPolicy$, 0, 0, [0, { [_hQ]: _com }]], 1
641
+ [_n, _ch, _en, _d, _ca, _p, _se, _a, _com],
642
+ [0, () => exports.AgentChannels$, () => exports.AgentEngine$, 0, 0, 0, () => exports.AgentSettings$, () => exports.AgentAccess$, [0, { [_hQ]: _com }]], 3
678
643
  ];
679
- exports.CreateGuardrailOutput$ = [3, n1, _CGO,
644
+ exports.CreateAgentOutput$ = [3, n1, _CAO,
680
645
  0,
681
- [_gu],
682
- [() => exports.Guardrail$], 1
646
+ [_ag],
647
+ [() => exports.Agent$], 1
683
648
  ];
684
- exports.DeleteAgentAliasInput$ = [3, n1, _DAAI,
649
+ exports.DeleteAgentApiKeyInput$ = [3, n1, _DAAKI,
685
650
  0,
686
- [_aI, _aN, _com],
651
+ [_aI, _kI, _com],
687
652
  [[0, 1], [0, 1], [0, { [_hQ]: _com }]], 2
688
653
  ];
689
- exports.DeleteAgentAliasOutput$ = [3, n1, _DAAO,
654
+ exports.DeleteAgentApiKeyOutput$ = [3, n1, _DAAKO,
690
655
  0,
691
656
  [],
692
657
  []
693
658
  ];
694
- exports.DeleteAgentApiKeyInput$ = [3, n1, _DAAKI,
659
+ exports.DeleteAgentDeploymentInput$ = [3, n1, _DADI,
695
660
  0,
696
- [_aI, _kI, _com],
661
+ [_aI, _dN, _com],
697
662
  [[0, 1], [0, 1], [0, { [_hQ]: _com }]], 2
698
663
  ];
699
- exports.DeleteAgentApiKeyOutput$ = [3, n1, _DAAKO,
664
+ exports.DeleteAgentDeploymentOutput$ = [3, n1, _DADO,
700
665
  0,
701
666
  [],
702
667
  []
@@ -711,30 +676,15 @@ exports.DeleteAgentOutput$ = [3, n1, _DAO,
711
676
  [],
712
677
  []
713
678
  ];
714
- exports.DeleteGuardrailInput$ = [3, n1, _DGI,
715
- 0,
716
- [_gI, _com],
717
- [[0, 1], [0, { [_hQ]: _com }]], 1
718
- ];
719
- exports.DeleteGuardrailOutput$ = [3, n1, _DGO,
679
+ exports.GetAgentDeploymentInput$ = [3, n1, _GADI,
720
680
  0,
721
- [],
722
- []
723
- ];
724
- exports.ExecuteAgentInput$ = [3, n1, _EAI,
725
- 0,
726
- [_aI, _inp, _com, _va, _ali, _ve, _us, _pAI, _pTI, _f],
727
- [[0, 1], 0, [0, { [_hQ]: _com }], 15, 0, 1, 0, 0, 0, 64 | 0], 2
728
- ];
729
- exports.ExecuteAgentOutput$ = [3, n1, _EAO,
730
- 0,
731
- [_re],
732
- [() => exports.AgentExecutionResult$], 1
681
+ [_aI, _dN, _com],
682
+ [[0, 1], [0, 1], [0, { [_hQ]: _com }]], 2
733
683
  ];
734
- exports.FunctionWebhookIntegration$ = [3, n1, _FWI,
684
+ exports.GetAgentDeploymentOutput$ = [3, n1, _GADO,
735
685
  0,
736
- [_u, _me, _asy, _au, _he, _ti, _pa],
737
- [0, 0, 2, () => exports.WebhookAuthorization$, () => WebhookHeadersList, 1, 15], 1
686
+ [_dep],
687
+ [() => exports.AgentDeployment$], 1
738
688
  ];
739
689
  exports.GetAgentInput$ = [3, n1, _GAI,
740
690
  0,
@@ -743,93 +693,43 @@ exports.GetAgentInput$ = [3, n1, _GAI,
743
693
  ];
744
694
  exports.GetAgentOutput$ = [3, n1, _GAO,
745
695
  0,
746
- [_age],
696
+ [_ag],
747
697
  [() => exports.Agent$], 1
748
698
  ];
749
699
  exports.GetAgentVersionInput$ = [3, n1, _GAVI,
750
700
  0,
751
701
  [_aI, _ve, _com],
752
- [[0, 1], [1, 1], [0, { [_hQ]: _com }]], 2
702
+ [[0, 1], [0, 1], [0, { [_hQ]: _com }]], 2
753
703
  ];
754
704
  exports.GetAgentVersionOutput$ = [3, n1, _GAVO,
755
705
  0,
756
706
  [_ve],
757
707
  [() => exports.AgentVersion$], 1
758
708
  ];
759
- exports.GetGuardrailInput$ = [3, n1, _GGI,
760
- 0,
761
- [_gI, _com],
762
- [[0, 1], [0, { [_hQ]: _com }]], 1
763
- ];
764
- exports.GetGuardrailOutput$ = [3, n1, _GGO,
765
- 0,
766
- [_gu],
767
- [() => exports.Guardrail$], 1
768
- ];
769
- exports.Guardrail$ = [3, n1, _G,
770
- 0,
771
- [_n, _cA, _cB, _i, _d, _tP, _cP, _wP, _pP, _bIM, _bOM, _uA, _uB],
772
- [0, 0, () => exports.Actor$, 0, 0, () => exports.GuardrailTopicPolicy$, () => exports.GuardrailContentPolicy$, () => exports.GuardrailWordPolicy$, () => exports.GuardrailPiiPolicy$, 0, 0, 0, () => exports.Actor$], 4
773
- ];
774
- exports.GuardrailContentFilter$ = [3, n1, _GCF,
775
- 0,
776
- [_ca, _iS, _oS],
777
- [0, 0, 0], 1
778
- ];
779
- exports.GuardrailContentPolicy$ = [3, n1, _GCP,
780
- 0,
781
- [_fi],
782
- [() => GuardrailContentFiltersList], 1
783
- ];
784
- exports.GuardrailPiiEntity$ = [3, n1, _GPE,
785
- 0,
786
- [_eT, _act, _patt],
787
- [0, 0, 0], 2
788
- ];
789
- exports.GuardrailPiiPolicy$ = [3, n1, _GPP,
790
- 0,
791
- [_ent],
792
- [() => GuardrailPiiEntitiesList], 1
793
- ];
794
- exports.GuardrailTopic$ = [3, n1, _GT,
795
- 0,
796
- [_n, _de, _act, _ex],
797
- [0, 0, 0, 64 | 0], 3
798
- ];
799
- exports.GuardrailTopicPolicy$ = [3, n1, _GTP,
800
- 0,
801
- [_top],
802
- [() => GuardrailTopicsList], 1
803
- ];
804
- exports.GuardrailWordPolicy$ = [3, n1, _GWP,
805
- 0,
806
- [_bW, _pro],
807
- [64 | 0, 2]
808
- ];
809
- exports.ListAgentAliasesInput$ = [3, n1, _LAAI,
709
+ exports.ListAgentApiKeysInput$ = [3, n1, _LAAKI,
810
710
  0,
811
711
  [_aI, _com],
812
712
  [[0, 1], [0, { [_hQ]: _com }]], 1
813
713
  ];
814
- exports.ListAgentAliasesOutput$ = [3, n1, _LAAO,
714
+ exports.ListAgentApiKeysOutput$ = [3, n1, _LAAKO,
815
715
  0,
816
- [_al],
817
- [() => AgentAliasesList], 1
716
+ [_ke],
717
+ [() => AgentApiKeysList], 1
818
718
  ];
819
- exports.ListAgentApiKeysInput$ = [3, n1, _LAAKI,
719
+ exports.ListAgentDeploymentsInput$ = [3, n1, _LADI,
820
720
  0,
821
721
  [_aI, _com],
822
722
  [[0, 1], [0, { [_hQ]: _com }]], 1
823
723
  ];
824
- exports.ListAgentApiKeysOutput$ = [3, n1, _LAAKO,
724
+ exports.ListAgentDeploymentsOutput$ = [3, n1, _LADO,
825
725
  0,
826
- [_ke],
827
- [() => AgentApiKeysList], 1
726
+ [_de],
727
+ [() => AgentDeploymentsList], 1
828
728
  ];
829
729
  exports.ListAgentsInput$ = [3, n1, _LAI,
830
730
  0,
831
- [_com, _chann, _st, _sea, _l, _nT],
832
- [[0, { [_hQ]: _com }], [0, { [_hQ]: _chann }], [0, { [_hQ]: _st }], [0, { [_hQ]: _sea }], [1, { [_hQ]: _l }], [0, { [_hQ]: _nT }]]
731
+ [_com, _chann, _st, _sea, _l, _cu],
732
+ [[0, { [_hQ]: _com }], [0, { [_hQ]: _chann }], [0, { [_hQ]: _st }], [0, { [_hQ]: _sea }], [1, { [_hQ]: _l }], [0, { [_hQ]: _cu }]]
833
733
  ];
834
734
  exports.ListAgentsNamesInput$ = [3, n1, _LANI,
835
735
  0,
@@ -838,93 +738,73 @@ exports.ListAgentsNamesInput$ = [3, n1, _LANI,
838
738
  ];
839
739
  exports.ListAgentsNamesOutput$ = [3, n1, _LANO,
840
740
  0,
841
- [_ag],
741
+ [_age],
842
742
  [() => AgentsInfoList], 1
843
743
  ];
844
744
  exports.ListAgentsOutput$ = [3, n1, _LAO,
845
745
  0,
846
- [_ag, _nT],
746
+ [_age, _nC],
847
747
  [() => AgentsList, 0], 1
848
748
  ];
849
749
  exports.ListAgentVersionsInput$ = [3, n1, _LAVI,
850
750
  0,
851
- [_aI, _com, _l, _nT],
852
- [[0, 1], [0, { [_hQ]: _com }], [1, { [_hQ]: _l }], [0, { [_hQ]: _nT }]], 1
751
+ [_aI, _com, _l, _cu],
752
+ [[0, 1], [0, { [_hQ]: _com }], [1, { [_hQ]: _l }], [0, { [_hQ]: _cu }]], 1
853
753
  ];
854
754
  exports.ListAgentVersionsOutput$ = [3, n1, _LAVO,
855
755
  0,
856
- [_ver, _nT],
756
+ [_ver, _nC],
857
757
  [() => AgentVersionInfoList, 0], 1
858
758
  ];
859
- exports.ListAuditRecordsInput$ = [3, n1, _LARI,
860
- 0,
861
- [_com, _aI, _rT, _act, _aIc, _fr, _to, _l, _nT],
862
- [[0, { [_hQ]: _com }], [0, { [_hQ]: _aI }], [0, { [_hQ]: _rT }], [0, { [_hQ]: _act }], [0, { [_hQ]: _aIc }], [0, { [_hQ]: _fr }], [0, { [_hQ]: _to }], [1, { [_hQ]: _l }], [0, { [_hQ]: _nT }]]
863
- ];
864
- exports.ListAuditRecordsOutput$ = [3, n1, _LARO,
865
- 0,
866
- [_rec, _nT],
867
- [() => AuditRecordsList, 0], 1
868
- ];
869
- exports.ListGuardrailsInput$ = [3, n1, _LGI,
870
- 0,
871
- [_com, _l, _nT],
872
- [[0, { [_hQ]: _com }], [1, { [_hQ]: _l }], [0, { [_hQ]: _nT }]]
873
- ];
874
- exports.ListGuardrailsOutput$ = [3, n1, _LGO,
875
- 0,
876
- [_g, _nT],
877
- [() => GuardrailsList, 0], 1
878
- ];
879
759
  exports.PublishAgentVersionInput$ = [3, n1, _PAVI,
880
760
  0,
881
- [_aI, _com, _chan, _r],
882
- [[0, 1], [0, { [_hQ]: _com }], 0, 1], 1
761
+ [_aI, _r, _com, _chan, _n],
762
+ [[0, 1], 1, [0, { [_hQ]: _com }], 0, 0], 2
883
763
  ];
884
764
  exports.PublishAgentVersionOutput$ = [3, n1, _PAVO,
885
765
  0,
886
766
  [_ve],
887
767
  [() => exports.AgentVersion$], 1
888
768
  ];
889
- exports.PutAgentAliasInput$ = [3, n1, _PAAI,
769
+ exports.RestoreAgentVersionToDraftInput$ = [3, n1, _RAVTDI,
890
770
  0,
891
- [_aI, _aN, _ro, _com, _d],
892
- [[0, 1], [0, 1], () => AgentAliasRoutesList, [0, { [_hQ]: _com }], 0], 3
771
+ [_aI, _ve, _r, _com],
772
+ [[0, 1], [0, 1], 1, [0, { [_hQ]: _com }]], 3
893
773
  ];
894
- exports.PutAgentAliasOutput$ = [3, n1, _PAAO,
774
+ exports.RestoreAgentVersionToDraftOutput$ = [3, n1, _RAVTDO,
895
775
  0,
896
- [_ali],
897
- [() => exports.AgentAlias$], 1
776
+ [_ag],
777
+ [() => exports.Agent$], 1
898
778
  ];
899
- exports.UpdateAgentInput$ = [3, n1, _UAI,
779
+ exports.UpdateAgentDeploymentInput$ = [3, n1, _UADI,
900
780
  0,
901
- [_n, _en, _aI, _d, _ca, _p, _ch, _g, _a, _com, _r],
902
- [0, () => exports.AgentEngine$, [0, 1], 0, 0, 0, () => exports.AgentChannels$, 64 | 0, () => exports.AgentAccess$, [0, { [_hQ]: _com }], 1], 3
781
+ [_aI, _dN, _st, _ro, _r, _com, _d],
782
+ [[0, 1], [0, 1], 0, () => AgentDeploymentRoutesList, 1, [0, { [_hQ]: _com }], 0], 5
903
783
  ];
904
- exports.UpdateAgentOutput$ = [3, n1, _UAO,
784
+ exports.UpdateAgentDeploymentOutput$ = [3, n1, _UADO,
905
785
  0,
906
- [_age],
907
- [() => exports.Agent$], 1
786
+ [_dep],
787
+ [() => exports.AgentDeployment$], 1
908
788
  ];
909
- exports.UpdateGuardrailInput$ = [3, n1, _UGI,
789
+ exports.UpdateAgentInput$ = [3, n1, _UAI,
910
790
  0,
911
- [_n, _gI, _d, _tP, _cP, _wP, _pP, _bIM, _bOM, _com],
912
- [0, [0, 1], 0, () => exports.GuardrailTopicPolicy$, () => exports.GuardrailContentPolicy$, () => exports.GuardrailWordPolicy$, () => exports.GuardrailPiiPolicy$, 0, 0, [0, { [_hQ]: _com }]], 2
791
+ [_n, _ch, _en, _aI, _r, _d, _ca, _p, _se, _a, _com],
792
+ [0, () => exports.AgentChannels$, () => exports.AgentEngine$, [0, 1], 1, 0, 0, 0, () => exports.AgentSettings$, () => exports.AgentAccess$, [0, { [_hQ]: _com }]], 5
913
793
  ];
914
- exports.UpdateGuardrailOutput$ = [3, n1, _UGO,
794
+ exports.UpdateAgentOutput$ = [3, n1, _UAO,
915
795
  0,
916
- [_gu],
917
- [() => exports.Guardrail$], 1
796
+ [_ag],
797
+ [() => exports.Agent$], 1
918
798
  ];
919
799
  exports.VoiceCallerMetadataSettings$ = [3, n1, _VCMS,
920
800
  0,
921
- [_cN, _cNa, _cE, _cC, _time, _tZ],
801
+ [_cN, _cNa, _cE, _cC, _tim, _tZ],
922
802
  [2, 2, 2, 2, 2, 0]
923
803
  ];
924
804
  exports.VoiceChannelSettings$ = [3, n1, _VCS,
925
805
  0,
926
- [_ena, _la, _sy, _gre, _inte, _sT, _mD, _eC, _cM],
927
- [2, 0, () => exports.VoiceSynthesisSettings$, 0, () => exports.VoiceInterruptionSettings$, () => exports.VoiceSilenceTimeoutSettings$, () => exports.VoiceMaxDurationSettings$, () => exports.VoiceEndCallSettings$, () => exports.VoiceCallerMetadataSettings$], 3
806
+ [_gr, _int, _sT, _mD, _eC, _cM],
807
+ [0, () => exports.VoiceInterruptionSettings$, () => exports.VoiceSilenceTimeoutSettings$, () => exports.VoiceMaxDurationSettings$, () => exports.VoiceEndCallSettings$, () => exports.VoiceCallerMetadataSettings$]
928
808
  ];
929
809
  exports.VoiceEndCallSettings$ = [3, n1, _VECS,
930
810
  0,
@@ -938,19 +818,14 @@ exports.VoiceInterruptionSettings$ = [3, n1, _VIS,
938
818
  ];
939
819
  exports.VoiceMaxDurationSettings$ = [3, n1, _VMDS,
940
820
  0,
941
- [_sec, _act],
821
+ [_seco, _ac],
942
822
  [1, () => exports.VoiceTerminateAction$], 2
943
823
  ];
944
824
  exports.VoiceSilenceTimeoutSettings$ = [3, n1, _VSTS,
945
825
  0,
946
- [_sec, _act],
826
+ [_seco, _ac],
947
827
  [1, () => exports.VoiceTerminateAction$], 2
948
828
  ];
949
- exports.VoiceSynthesisSettings$ = [3, n1, _VSS,
950
- 0,
951
- [_prov, _vI, _sp],
952
- [0, 0, 1], 2
953
- ];
954
829
  exports.VoiceTerminateHangupAction$ = [3, n1, _VTHA,
955
830
  0,
956
831
  [_m],
@@ -958,44 +833,23 @@ exports.VoiceTerminateHangupAction$ = [3, n1, _VTHA,
958
833
  ];
959
834
  exports.VoiceTransferTarget$ = [3, n1, _VTT,
960
835
  0,
961
- [_n, _con, _ext, _d],
962
- [0, 0, 0, 0], 3
963
- ];
964
- exports.WebhookAuthorizationBasic$ = [3, n1, _WAB,
965
- 0,
966
- [_use, _pas],
967
- [0, 0], 2
968
- ];
969
- exports.WebhookAuthorizationBearer$ = [3, n1, _WABe,
970
- 0,
971
- [_tok],
972
- [0], 1
973
- ];
974
- exports.WebhookAuthorizationOAuth$ = [3, n1, _WAOA,
975
- 0,
976
- [_cI, _cSl, _eU, _sc],
836
+ [_n, _co, _ex, _d],
977
837
  [0, 0, 0, 0], 3
978
838
  ];
979
- exports.WebhookHeader$ = [3, n1, _WH,
980
- 0,
981
- [_n, _val],
982
- [0, 0], 2
983
- ];
984
839
  exports.WebSearchUserLocation$ = [3, n1, _WSUL,
985
840
  0,
986
- [_cou, _reg, _ci, _timez],
841
+ [_cou, _re, _ci, _time],
987
842
  [0, 0, 0, 0]
988
843
  ];
989
- exports.AgentFile$ = [3, n2, _AF,
844
+ exports.Actor$ = [3, n2, _Ac,
990
845
  0,
991
- [_i, _n, _cA, _cT, _si, _sc, _aI, _sIe],
992
- [0, 0, 0, 0, 1, 0, 0, 0], 3
993
- ];
994
- var AgentAliasesList = [1, n1, _AAL,
995
- 0, () => exports.AgentAlias$
846
+ [_t, _i, _n],
847
+ [0, 0, 0], 2
996
848
  ];
997
- var AgentAliasRoutesList = [1, n1, _AARL,
998
- 0, () => exports.AgentAliasRoute$
849
+ exports.AgentSkillReference$ = [3, n3, _ASR,
850
+ 0,
851
+ [_i, _sV, _a],
852
+ [0, 0, () => exports.AgentAccess$], 1
999
853
  ];
1000
854
  var AgentApiKeysList = [1, n1, _AAKL,
1001
855
  0, () => exports.AgentApiKey$
@@ -1003,16 +857,25 @@ var AgentApiKeysList = [1, n1, _AAKL,
1003
857
  var AgentCapabilitiesList = [1, n1, _ACL,
1004
858
  0, () => exports.AgentCapability$
1005
859
  ];
1006
- var AgentGrantList = [1, n1, _AGL,
1007
- 0, () => exports.AgentGrant$
860
+ var AgentDeploymentNamesList = 64 | 0;
861
+ var AgentDeploymentRoutesList = [1, n1, _ADRL,
862
+ 0, () => exports.AgentDeploymentRoute$
863
+ ];
864
+ var AgentDeploymentsList = [1, n1, _ADL,
865
+ 0, () => exports.AgentDeployment$
866
+ ];
867
+ var AgentGrantPrincipalList = [1, n1, _AGPL,
868
+ 0, () => exports.AgentGrantPrincipal$
1008
869
  ];
1009
- var AgentIdList = 64 | 0;
1010
870
  var AgentsInfoList = [1, n1, _AIL,
1011
871
  0, () => exports.AgentInfo$
1012
872
  ];
1013
873
  var AgentsList = [1, n1, _AL,
1014
874
  0, () => exports.Agent$
1015
875
  ];
876
+ var AgentToolAnnotationsList = [1, n1, _ATAL,
877
+ 0, () => exports.AgentToolAnnotation$
878
+ ];
1016
879
  var AgentToolVariablesList = [1, n1, _ATVL,
1017
880
  0, () => exports.AgentToolVariable$
1018
881
  ];
@@ -1025,51 +888,24 @@ var AgentVersionChangesList = [1, n1, _AVCL,
1025
888
  var AgentVersionInfoList = [1, n1, _AVIL,
1026
889
  0, () => exports.AgentVersionInfo$
1027
890
  ];
1028
- var AliasNamesList = 64 | 0;
1029
- var AuditRecordsList = [1, n1, _ARL,
1030
- 0, () => exports.AuditRecord$
1031
- ];
1032
891
  var ChannelTypeList = 64 | 0;
1033
892
  var DomainNameList = 64 | 0;
1034
- var FunctionNameList = 64 | 0;
1035
- var GuardrailContentFiltersList = [1, n1, _GCFL,
1036
- 0, () => exports.GuardrailContentFilter$
1037
- ];
1038
- var GuardrailIdList = 64 | 0;
1039
- var GuardrailPhrasesList = 64 | 0;
1040
- var GuardrailPiiEntitiesList = [1, n1, _GPEL,
1041
- 0, () => exports.GuardrailPiiEntity$
1042
- ];
1043
- var GuardrailsList = [1, n1, _GL,
1044
- 0, () => exports.Guardrail$
1045
- ];
1046
- var GuardrailTopicsList = [1, n1, _GTL,
1047
- 0, () => exports.GuardrailTopic$
893
+ var AgentSkillsList = [1, n3, _ASL,
894
+ 0, () => exports.AgentSkillReference$
1048
895
  ];
1049
- var VoiceTransferTargetsList = [1, n1, _VTTL,
1050
- 0, () => exports.VoiceTransferTarget$
1051
- ];
1052
- var WebhookHeadersList = [1, n1, _WHL,
1053
- 0, () => exports.WebhookHeader$
1054
- ];
1055
- var AgentFileList = [1, n2, _AFL,
1056
- 0, () => exports.AgentFile$
1057
- ];
1058
- var FileIdList = 64 | 0;
1059
- var AgentSkillsList = 64 | 0;
1060
896
  exports.AgentCapability$ = [4, n1, _ACg,
1061
897
  0,
1062
- [_too, _fu, _kb, _sa, _wS, _wF, _age, _mc, _ha, _del, _tr, _su],
1063
- [() => exports.AgentTool$, () => exports.AgentFunctionTool$, () => exports.AgentKnowledgeBase$, () => exports.AgentSandboxCapability$, () => exports.AgentWebSearchCapability$, () => exports.AgentWebFetchCapability$, () => exports.AgentCallCapability$, () => exports.AgentMcpServerCapability$, () => exports.AgentHandoverCapability$, () => exports.AgentDelegationCapability$, () => exports.AgentTransferCapability$, () => exports.AgentSuggestionsCapability$]
898
+ [_too, _kb, _sa, _wS, _wF, _ag, _ha, _del, _tr, _su, _han, _w],
899
+ [() => exports.AgentTool$, () => exports.AgentKnowledgeBase$, () => exports.AgentSandboxCapability$, () => exports.AgentWebSearchCapability$, () => exports.AgentWebFetchCapability$, () => exports.AgentCallCapability$, () => exports.AgentHandoverCapability$, () => exports.AgentDelegationCapability$, () => exports.AgentTransferCapability$, () => exports.AgentSuggestionsCapability$, () => exports.AgentHangupCapability$, () => exports.AgentWaitCapability$]
1064
900
  ];
1065
901
  exports.AgentEngine$ = [4, n1, _AE,
1066
902
  0,
1067
- [_ll, _we, _sq],
1068
- [() => exports.AgentLlmEngine$, () => exports.AgentWebhookEngine$, () => exports.AgentSqsEngine$]
903
+ [_ai, _we, _sq],
904
+ [() => exports.AgentAiEngine$, () => exports.AgentWebhookEngine$, () => exports.AgentSqsEngine$]
1069
905
  ];
1070
906
  exports.AgentGrantPrincipal$ = [4, n1, _AGP,
1071
907
  0,
1072
- [_uI, _gIr],
908
+ [_uI, _gI],
1073
909
  [0, 0]
1074
910
  ];
1075
911
  exports.AgentSandboxCapability$ = [4, n1, _ASCg,
@@ -1077,26 +913,21 @@ exports.AgentSandboxCapability$ = [4, n1, _ASCg,
1077
913
  [_verc, _sn],
1078
914
  [() => exports.AgentVercelSandboxOptions$, () => exports.AgentSnapshotSandboxOptions$]
1079
915
  ];
1080
- exports.AgentToolVariableHandler$ = [4, n1, _ATVH,
916
+ exports.AgentToolAnnotation$ = [4, n1, _ATAg,
1081
917
  0,
1082
- [_aut, _gui, _pre],
1083
- [() => exports.AgentToolVariableAutoHandler$, () => exports.AgentToolVariableGuidedHandler$, () => exports.AgentToolVariablePredefinedHandler$]
918
+ [_ta, _comm, _va, _res],
919
+ [() => exports.AgentToolTagAnnotation$, () => exports.AgentToolCommentAnnotation$, () => exports.AgentToolVariablesAnnotation$, () => exports.AgentToolResultAnnotation$]
1084
920
  ];
1085
- exports.FunctionIntegration$ = [4, n1, _FI,
921
+ exports.AgentToolVariableHandler$ = [4, n1, _ATVH,
1086
922
  0,
1087
- [_we],
1088
- [() => exports.FunctionWebhookIntegration$]
923
+ [_aut, _gu, _pre],
924
+ [() => exports.AgentToolVariableAutoHandler$, () => exports.AgentToolVariableGuidedHandler$, () => exports.AgentToolVariablePredefinedHandler$]
1089
925
  ];
1090
926
  exports.VoiceTerminateAction$ = [4, n1, _VTA,
1091
927
  0,
1092
928
  [_han, _tr],
1093
929
  [() => exports.VoiceTerminateHangupAction$, () => exports.VoiceTransferTarget$]
1094
930
  ];
1095
- exports.WebhookAuthorization$ = [4, n1, _WA,
1096
- 0,
1097
- [_be, _ba, _oa],
1098
- [() => exports.WebhookAuthorizationBearer$, () => exports.WebhookAuthorizationBasic$, () => exports.WebhookAuthorizationOAuth$]
1099
- ];
1100
931
  exports.CompareAgentVersions$ = [9, n1, _CAV,
1101
932
  { [_ht]: ["GET", "/v1/agents/agents/{agentId}/versions/compare", 200] }, () => exports.CompareAgentVersionsInput$, () => exports.CompareAgentVersionsOutput$
1102
933
  ];
@@ -1106,39 +937,33 @@ exports.CreateAgent$ = [9, n1, _CA,
1106
937
  exports.CreateAgentApiKey$ = [9, n1, _CAAK,
1107
938
  { [_ht]: ["POST", "/v1/agents/agents/{agentId}/keys", 200] }, () => exports.CreateAgentApiKeyInput$, () => exports.CreateAgentApiKeyOutput$
1108
939
  ];
1109
- exports.CreateGuardrail$ = [9, n1, _CG,
1110
- { [_ht]: ["POST", "/v1/agents/guardrails", 200] }, () => exports.CreateGuardrailInput$, () => exports.CreateGuardrailOutput$
940
+ exports.CreateAgentDeployment$ = [9, n1, _CAD,
941
+ { [_ht]: ["POST", "/v1/agents/agents/{agentId}/deployments", 200] }, () => exports.CreateAgentDeploymentInput$, () => exports.CreateAgentDeploymentOutput$
1111
942
  ];
1112
943
  exports.DeleteAgent$ = [9, n1, _DA,
1113
944
  { [_ht]: ["DELETE", "/v1/agents/agents/{agentId}", 200] }, () => exports.DeleteAgentInput$, () => exports.DeleteAgentOutput$
1114
945
  ];
1115
- exports.DeleteAgentAlias$ = [9, n1, _DAA,
1116
- { [_ht]: ["DELETE", "/v1/agents/agents/{agentId}/aliases/{aliasName}", 200] }, () => exports.DeleteAgentAliasInput$, () => exports.DeleteAgentAliasOutput$
1117
- ];
1118
946
  exports.DeleteAgentApiKey$ = [9, n1, _DAAK,
1119
947
  { [_ht]: ["DELETE", "/v1/agents/agents/{agentId}/keys/{keyId}", 200] }, () => exports.DeleteAgentApiKeyInput$, () => exports.DeleteAgentApiKeyOutput$
1120
948
  ];
1121
- exports.DeleteGuardrail$ = [9, n1, _DG,
1122
- { [_ht]: ["DELETE", "/v1/agents/guardrails/{guardrailId}", 200] }, () => exports.DeleteGuardrailInput$, () => exports.DeleteGuardrailOutput$
1123
- ];
1124
- exports.ExecuteAgent$ = [9, n1, _EA,
1125
- { [_ht]: ["POST", "/v1/agents/agents/{agentId}/execute", 200] }, () => exports.ExecuteAgentInput$, () => exports.ExecuteAgentOutput$
949
+ exports.DeleteAgentDeployment$ = [9, n1, _DAD,
950
+ { [_ht]: ["DELETE", "/v1/agents/agents/{agentId}/deployments/{deploymentName}", 200] }, () => exports.DeleteAgentDeploymentInput$, () => exports.DeleteAgentDeploymentOutput$
1126
951
  ];
1127
952
  exports.GetAgent$ = [9, n1, _GA,
1128
953
  { [_ht]: ["GET", "/v1/agents/agents/{agentId}", 200] }, () => exports.GetAgentInput$, () => exports.GetAgentOutput$
1129
954
  ];
955
+ exports.GetAgentDeployment$ = [9, n1, _GAD,
956
+ { [_ht]: ["GET", "/v1/agents/agents/{agentId}/deployments/{deploymentName}", 200] }, () => exports.GetAgentDeploymentInput$, () => exports.GetAgentDeploymentOutput$
957
+ ];
1130
958
  exports.GetAgentVersion$ = [9, n1, _GAV,
1131
959
  { [_ht]: ["GET", "/v1/agents/agents/{agentId}/versions/{version}", 200] }, () => exports.GetAgentVersionInput$, () => exports.GetAgentVersionOutput$
1132
960
  ];
1133
- exports.GetGuardrail$ = [9, n1, _GG,
1134
- { [_ht]: ["GET", "/v1/agents/guardrails/{guardrailId}", 200] }, () => exports.GetGuardrailInput$, () => exports.GetGuardrailOutput$
1135
- ];
1136
- exports.ListAgentAliases$ = [9, n1, _LAA,
1137
- { [_ht]: ["GET", "/v1/agents/agents/{agentId}/aliases", 200] }, () => exports.ListAgentAliasesInput$, () => exports.ListAgentAliasesOutput$
1138
- ];
1139
961
  exports.ListAgentApiKeys$ = [9, n1, _LAAK,
1140
962
  { [_ht]: ["GET", "/v1/agents/agents/{agentId}/keys", 200] }, () => exports.ListAgentApiKeysInput$, () => exports.ListAgentApiKeysOutput$
1141
963
  ];
964
+ exports.ListAgentDeployments$ = [9, n1, _LAD,
965
+ { [_ht]: ["GET", "/v1/agents/agents/{agentId}/deployments", 200] }, () => exports.ListAgentDeploymentsInput$, () => exports.ListAgentDeploymentsOutput$
966
+ ];
1142
967
  exports.ListAgents$ = [9, n1, _LA,
1143
968
  { [_ht]: ["GET", "/v1/agents/agents", 200] }, () => exports.ListAgentsInput$, () => exports.ListAgentsOutput$
1144
969
  ];
@@ -1148,21 +973,15 @@ exports.ListAgentsNames$ = [9, n1, _LAN,
1148
973
  exports.ListAgentVersions$ = [9, n1, _LAV,
1149
974
  { [_ht]: ["GET", "/v1/agents/agents/{agentId}/versions", 200] }, () => exports.ListAgentVersionsInput$, () => exports.ListAgentVersionsOutput$
1150
975
  ];
1151
- exports.ListAuditRecords$ = [9, n1, _LAR,
1152
- { [_ht]: ["GET", "/v1/agents/audit", 200] }, () => exports.ListAuditRecordsInput$, () => exports.ListAuditRecordsOutput$
1153
- ];
1154
- exports.ListGuardrails$ = [9, n1, _LG,
1155
- { [_ht]: ["GET", "/v1/agents/guardrails", 200] }, () => exports.ListGuardrailsInput$, () => exports.ListGuardrailsOutput$
1156
- ];
1157
976
  exports.PublishAgentVersion$ = [9, n1, _PAV,
1158
977
  { [_ht]: ["POST", "/v1/agents/agents/{agentId}/versions", 200] }, () => exports.PublishAgentVersionInput$, () => exports.PublishAgentVersionOutput$
1159
978
  ];
1160
- exports.PutAgentAlias$ = [9, n1, _PAA,
1161
- { [_ht]: ["PUT", "/v1/agents/agents/{agentId}/aliases/{aliasName}", 200] }, () => exports.PutAgentAliasInput$, () => exports.PutAgentAliasOutput$
979
+ exports.RestoreAgentVersionToDraft$ = [9, n1, _RAVTD,
980
+ { [_ht]: ["POST", "/v1/agents/agents/{agentId}/versions/{version}/draft", 200] }, () => exports.RestoreAgentVersionToDraftInput$, () => exports.RestoreAgentVersionToDraftOutput$
1162
981
  ];
1163
982
  exports.UpdateAgent$ = [9, n1, _UA,
1164
983
  { [_ht]: ["PUT", "/v1/agents/agents/{agentId}", 200] }, () => exports.UpdateAgentInput$, () => exports.UpdateAgentOutput$
1165
984
  ];
1166
- exports.UpdateGuardrail$ = [9, n1, _UG,
1167
- { [_ht]: ["PUT", "/v1/agents/guardrails/{guardrailId}", 200] }, () => exports.UpdateGuardrailInput$, () => exports.UpdateGuardrailOutput$
985
+ exports.UpdateAgentDeployment$ = [9, n1, _UAD,
986
+ { [_ht]: ["PUT", "/v1/agents/agents/{agentId}/deployments/{deploymentName}", 200] }, () => exports.UpdateAgentDeploymentInput$, () => exports.UpdateAgentDeploymentOutput$
1168
987
  ];