@uipath/agent-sdk 1.199.0 → 1.201.0-preview.115
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/generated/src/models/ChannelType.d.ts +5 -5
- package/dist/generated/src/models/ContextRetrievalMode.d.ts +4 -4
- package/dist/generated/src/models/ContextType.d.ts +3 -3
- package/dist/generated/src/models/ConversationalDisplayMode.d.ts +3 -3
- package/dist/generated/src/models/GuardrailScope.d.ts +3 -3
- package/dist/generated/src/models/PropertyVariant.d.ts +3 -3
- package/dist/generated/src/models/RecipientType.d.ts +7 -7
- package/dist/generated/src/models/Role.d.ts +5 -5
- package/dist/generated/src/models/RuntimeType.d.ts +3 -3
- package/dist/generated/src/models/TaskTitleType.d.ts +2 -2
- package/dist/generated/src/models/TextTokenType.d.ts +3 -3
- package/dist/generated/src/models/ToolType.d.ts +13 -13
- package/dist/index.js +306 -18422
- package/dist/src/governance.d.ts +39 -4
- package/dist/src/index.d.ts +1 -1
- package/package.json +2 -2
|
@@ -14,11 +14,11 @@
|
|
|
14
14
|
* @export
|
|
15
15
|
*/
|
|
16
16
|
export declare const ChannelType: {
|
|
17
|
-
readonly Unknown:
|
|
18
|
-
readonly ActionCenter:
|
|
19
|
-
readonly Email:
|
|
20
|
-
readonly Slack:
|
|
21
|
-
readonly Teams:
|
|
17
|
+
readonly Unknown: 'Unknown';
|
|
18
|
+
readonly ActionCenter: 'ActionCenter';
|
|
19
|
+
readonly Email: 'Email';
|
|
20
|
+
readonly Slack: 'Slack';
|
|
21
|
+
readonly Teams: 'Teams';
|
|
22
22
|
};
|
|
23
23
|
export type ChannelType = typeof ChannelType[keyof typeof ChannelType];
|
|
24
24
|
export declare function instanceOfChannelType(value: any): boolean;
|
|
@@ -14,10 +14,10 @@
|
|
|
14
14
|
* @export
|
|
15
15
|
*/
|
|
16
16
|
export declare const ContextRetrievalMode: {
|
|
17
|
-
readonly Semantic:
|
|
18
|
-
readonly Structured:
|
|
19
|
-
readonly DeepRag:
|
|
20
|
-
readonly BatchTransform:
|
|
17
|
+
readonly Semantic: 'Semantic';
|
|
18
|
+
readonly Structured: 'Structured';
|
|
19
|
+
readonly DeepRag: 'DeepRAG';
|
|
20
|
+
readonly BatchTransform: 'BatchTransform';
|
|
21
21
|
};
|
|
22
22
|
export type ContextRetrievalMode = typeof ContextRetrievalMode[keyof typeof ContextRetrievalMode];
|
|
23
23
|
export declare function instanceOfContextRetrievalMode(value: any): boolean;
|
|
@@ -14,9 +14,9 @@
|
|
|
14
14
|
* @export
|
|
15
15
|
*/
|
|
16
16
|
export declare const ContextType: {
|
|
17
|
-
readonly Index:
|
|
18
|
-
readonly Attachments:
|
|
19
|
-
readonly DataFabricEntitySet:
|
|
17
|
+
readonly Index: 'Index';
|
|
18
|
+
readonly Attachments: 'Attachments';
|
|
19
|
+
readonly DataFabricEntitySet: 'DataFabricEntitySet';
|
|
20
20
|
};
|
|
21
21
|
export type ContextType = typeof ContextType[keyof typeof ContextType];
|
|
22
22
|
export declare function instanceOfContextType(value: any): boolean;
|
|
@@ -14,9 +14,9 @@
|
|
|
14
14
|
* @export
|
|
15
15
|
*/
|
|
16
16
|
export declare const ConversationalDisplayMode: {
|
|
17
|
-
readonly ToolNameOnly:
|
|
18
|
-
readonly InputsAndOutputs:
|
|
19
|
-
readonly FullTrace:
|
|
17
|
+
readonly ToolNameOnly: 'ToolNameOnly';
|
|
18
|
+
readonly InputsAndOutputs: 'InputsAndOutputs';
|
|
19
|
+
readonly FullTrace: 'FullTrace';
|
|
20
20
|
};
|
|
21
21
|
export type ConversationalDisplayMode = typeof ConversationalDisplayMode[keyof typeof ConversationalDisplayMode];
|
|
22
22
|
export declare function instanceOfConversationalDisplayMode(value: any): boolean;
|
|
@@ -14,9 +14,9 @@
|
|
|
14
14
|
* @export
|
|
15
15
|
*/
|
|
16
16
|
export declare const GuardrailScope: {
|
|
17
|
-
readonly Agent:
|
|
18
|
-
readonly Llm:
|
|
19
|
-
readonly Tool:
|
|
17
|
+
readonly Agent: 'Agent';
|
|
18
|
+
readonly Llm: 'Llm';
|
|
19
|
+
readonly Tool: 'Tool';
|
|
20
20
|
};
|
|
21
21
|
export type GuardrailScope = typeof GuardrailScope[keyof typeof GuardrailScope];
|
|
22
22
|
export declare function instanceOfGuardrailScope(value: any): boolean;
|
|
@@ -14,9 +14,9 @@
|
|
|
14
14
|
* @export
|
|
15
15
|
*/
|
|
16
16
|
export declare const PropertyVariant: {
|
|
17
|
-
readonly Static:
|
|
18
|
-
readonly Argument:
|
|
19
|
-
readonly Dynamic:
|
|
17
|
+
readonly Static: 'Static';
|
|
18
|
+
readonly Argument: 'Argument';
|
|
19
|
+
readonly Dynamic: 'Dynamic';
|
|
20
20
|
};
|
|
21
21
|
export type PropertyVariant = typeof PropertyVariant[keyof typeof PropertyVariant];
|
|
22
22
|
export declare function instanceOfPropertyVariant(value: any): boolean;
|
|
@@ -14,13 +14,13 @@
|
|
|
14
14
|
* @export
|
|
15
15
|
*/
|
|
16
16
|
export declare const RecipientType: {
|
|
17
|
-
readonly Unknown:
|
|
18
|
-
readonly UserId:
|
|
19
|
-
readonly GroupId:
|
|
20
|
-
readonly UserEmail:
|
|
21
|
-
readonly AssetUserEmail:
|
|
22
|
-
readonly StaticGroupName:
|
|
23
|
-
readonly AssetGroupName:
|
|
17
|
+
readonly Unknown: 'Unknown';
|
|
18
|
+
readonly UserId: 'UserId';
|
|
19
|
+
readonly GroupId: 'GroupId';
|
|
20
|
+
readonly UserEmail: 'UserEmail';
|
|
21
|
+
readonly AssetUserEmail: 'AssetUserEmail';
|
|
22
|
+
readonly StaticGroupName: 'StaticGroupName';
|
|
23
|
+
readonly AssetGroupName: 'AssetGroupName';
|
|
24
24
|
};
|
|
25
25
|
export type RecipientType = typeof RecipientType[keyof typeof RecipientType];
|
|
26
26
|
export declare function instanceOfRecipientType(value: any): boolean;
|
|
@@ -14,11 +14,11 @@
|
|
|
14
14
|
* @export
|
|
15
15
|
*/
|
|
16
16
|
export declare const Role: {
|
|
17
|
-
readonly Undefined:
|
|
18
|
-
readonly System:
|
|
19
|
-
readonly User:
|
|
20
|
-
readonly Tool:
|
|
21
|
-
readonly Assistant:
|
|
17
|
+
readonly Undefined: 'Undefined';
|
|
18
|
+
readonly System: 'System';
|
|
19
|
+
readonly User: 'User';
|
|
20
|
+
readonly Tool: 'Tool';
|
|
21
|
+
readonly Assistant: 'Assistant';
|
|
22
22
|
};
|
|
23
23
|
export type Role = typeof Role[keyof typeof Role];
|
|
24
24
|
export declare function instanceOfRole(value: any): boolean;
|
|
@@ -14,9 +14,9 @@
|
|
|
14
14
|
* @export
|
|
15
15
|
*/
|
|
16
16
|
export declare const RuntimeType: {
|
|
17
|
-
readonly Python:
|
|
18
|
-
readonly Unknown:
|
|
19
|
-
readonly Pythonagent:
|
|
17
|
+
readonly Python: 'python';
|
|
18
|
+
readonly Unknown: 'unknown';
|
|
19
|
+
readonly Pythonagent: 'pythonagent';
|
|
20
20
|
};
|
|
21
21
|
export type RuntimeType = typeof RuntimeType[keyof typeof RuntimeType];
|
|
22
22
|
export declare function instanceOfRuntimeType(value: any): boolean;
|
|
@@ -14,8 +14,8 @@
|
|
|
14
14
|
* @export
|
|
15
15
|
*/
|
|
16
16
|
export declare const TaskTitleType: {
|
|
17
|
-
readonly Dynamic:
|
|
18
|
-
readonly TextBuilder:
|
|
17
|
+
readonly Dynamic: 'Dynamic';
|
|
18
|
+
readonly TextBuilder: 'TextBuilder';
|
|
19
19
|
};
|
|
20
20
|
export type TaskTitleType = typeof TaskTitleType[keyof typeof TaskTitleType];
|
|
21
21
|
export declare function instanceOfTaskTitleType(value: any): boolean;
|
|
@@ -14,9 +14,9 @@
|
|
|
14
14
|
* @export
|
|
15
15
|
*/
|
|
16
16
|
export declare const TextTokenType: {
|
|
17
|
-
readonly SimpleText:
|
|
18
|
-
readonly Variable:
|
|
19
|
-
readonly Expression:
|
|
17
|
+
readonly SimpleText: 'SimpleText';
|
|
18
|
+
readonly Variable: 'Variable';
|
|
19
|
+
readonly Expression: 'Expression';
|
|
20
20
|
};
|
|
21
21
|
export type TextTokenType = typeof TextTokenType[keyof typeof TextTokenType];
|
|
22
22
|
export declare function instanceOfTextTokenType(value: any): boolean;
|
|
@@ -14,19 +14,19 @@
|
|
|
14
14
|
* @export
|
|
15
15
|
*/
|
|
16
16
|
export declare const ToolType: {
|
|
17
|
-
readonly Unknown:
|
|
18
|
-
readonly Process:
|
|
19
|
-
readonly Agent:
|
|
20
|
-
readonly Context:
|
|
21
|
-
readonly Escalation:
|
|
22
|
-
readonly Integration:
|
|
23
|
-
readonly Mock:
|
|
24
|
-
readonly Api:
|
|
25
|
-
readonly SimulatedTool:
|
|
26
|
-
readonly ProcessOrchestration:
|
|
27
|
-
readonly Mcp:
|
|
28
|
-
readonly Ixp:
|
|
29
|
-
readonly Internal:
|
|
17
|
+
readonly Unknown: 'Unknown';
|
|
18
|
+
readonly Process: 'Process';
|
|
19
|
+
readonly Agent: 'Agent';
|
|
20
|
+
readonly Context: 'Context';
|
|
21
|
+
readonly Escalation: 'Escalation';
|
|
22
|
+
readonly Integration: 'Integration';
|
|
23
|
+
readonly Mock: 'Mock';
|
|
24
|
+
readonly Api: 'Api';
|
|
25
|
+
readonly SimulatedTool: 'SimulatedTool';
|
|
26
|
+
readonly ProcessOrchestration: 'ProcessOrchestration';
|
|
27
|
+
readonly Mcp: 'Mcp';
|
|
28
|
+
readonly Ixp: 'Ixp';
|
|
29
|
+
readonly Internal: 'Internal';
|
|
30
30
|
};
|
|
31
31
|
export type ToolType = typeof ToolType[keyof typeof ToolType];
|
|
32
32
|
export declare function instanceOfToolType(value: any): boolean;
|