@or-sdk/agents 4.21.1-beta.4182.0 → 4.21.1-beta.4184.0

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.
@@ -9,15 +9,80 @@ export declare class Agents extends Base {
9
9
  constructor(params: AgentsConfig);
10
10
  private makeRequest;
11
11
  parseError(err: unknown): Error;
12
+ /**
13
+ * Create a new agent.
14
+ * @param params - The agent creation parameters.
15
+ * @param options - The API call options.
16
+ * @returns The created agent.
17
+ */
12
18
  createAgent(params: CreateAgent, options?: CallOptions): Promise<Agent>;
19
+ /**
20
+ * Find agents with optional pagination and query.
21
+ * @param params - Optional find parameters.
22
+ * @param options - The API call options.
23
+ * @returns An array of agents.
24
+ */
13
25
  findAgents(params?: FindAgentsOptions, options?: CallOptions): Promise<List<Agent>>;
26
+ /**
27
+ * Get an agent by its ID.
28
+ * @param agentId - The ID of the agent to retrieve.
29
+ * @param options - The API call options.
30
+ * @returns The retrieved agent.
31
+ */
14
32
  getAgent(agentId: string, params?: GetAgentParams, options?: CallOptions): Promise<Agent>;
33
+ /**
34
+ * Get an agent by its ID.
35
+ * @param agentId - The ID of the agent to retrieve.
36
+ * @param options - The API call options.
37
+ * @returns The retrieved agent.
38
+ */
15
39
  getAgentVersions(agentId: string, options?: CallOptions): Promise<AgentVersion[]>;
40
+ /**
41
+ * Update an agent by its ID.
42
+ * @param agentId - The ID of the agent to update.
43
+ * @param params - The update agent parameters.
44
+ * @param options - The API call options.
45
+ * @returns The updated agent.
46
+ */
16
47
  updateAgent(agentId: string, params: UpdateAgent, options?: CallOptions): Promise<Agent>;
48
+ /**
49
+ * Delete an agent by its ID.
50
+ * @param agentId - The ID of the agent to delete.
51
+ * @param options - The API call options.
52
+ * @returns The deleted agent.
53
+ */
17
54
  deleteAgent(agentId: string, options?: CallOptions): Promise<Agent>;
55
+ /**
56
+ * Releases agent's development version by ID.
57
+ * @param agentId - The ID of the agent to delete.
58
+ * @param data - The release label and notes.
59
+ * @param options - The API call options.
60
+ */
18
61
  releaseAgent(agentId: string, data: ReleaseVersion, options?: CallOptions): Promise<void>;
62
+ /**
63
+ * Set an agent action.
64
+ * @param agentId - The ID of the agent to delete.
65
+ * @param params - Set action params.
66
+ * @param options - The API call options.
67
+ * @returns The deleted agent.
68
+ */
19
69
  setAgentAction(agentId: string, params: AgentAction, options?: CallOptions): Promise<AgentAction>;
70
+ /**
71
+ * Delete an agent action.
72
+ * @param agentId - The ID of the agent to delete.
73
+ * @param actionName - Set action params.
74
+ * @param options - The API call options.
75
+ * @returns The deleted agent.
76
+ */
20
77
  deleteAgentAction(agentId: string, actionName: string, options?: CallOptions): Promise<AgentAction>;
78
+ /**
79
+ * Retrieves a list of agent executions for a given agent.
80
+ *
81
+ * @param agentId - The ID of the agent.
82
+ * @param params - Optional parameters for pagination (size, from etc).
83
+ * @param options - Optional call options.
84
+ * @returns A promise that resolves to an array of objects.
85
+ */
21
86
  getAgentExecutionList(agentId: string, params?: {
22
87
  size?: number;
23
88
  from?: number;
@@ -31,38 +96,169 @@ export declare class Agents extends Base {
31
96
  to?: Date;
32
97
  };
33
98
  }, options?: CallOptions): Promise<ExecutionList>;
99
+ /**
100
+ * Retrieves the execution details of a specific agent.
101
+ *
102
+ * @param agentId - The ID of the agent.
103
+ * @param executionId - The ID of the execution.
104
+ * @param options - Additional options for the API call.
105
+ * @returns A Promise that resolves to the AgentExecutionHistory object representing the execution details.
106
+ */
34
107
  getAgentExecution(agentId: string, executionId: string, params?: {
35
108
  orderBy?: string;
36
109
  order?: 'ASC' | 'DESC';
37
110
  }, options?: CallOptions): Promise<Execution>;
111
+ /**
112
+ * Partially updates an execution belonging to an agent.
113
+ *
114
+ * This method performs a PATCH request and updates only the provided fields.
115
+ * Currently, the API supports patching the `summary` field.
116
+ *
117
+ * @param agentId - The ID of the agent that owns the execution.
118
+ * @param executionId - The ID of the execution to patch.
119
+ * @param patch - Partial execution data to update (currently: `summary`).
120
+ * @param options - Optional request options.
121
+ * @returns A promise that resolves when the patch operation completes.
122
+ */
38
123
  patchAgentExecution(agentId: string, executionId: string, patch: {
39
124
  summary?: string;
40
125
  }, options?: CallOptions): Promise<unknown>;
126
+ /**
127
+ * Deletes an agent execution.
128
+ * @param agentId - The ID of the agent.
129
+ * @param executionId - The ID of the execution.
130
+ * @param options - Optional call options.
131
+ * @returns A promise that resolves to the deleted agent action.
132
+ */
41
133
  deleteAgentExecution(agentId: string, executionId: string, options?: CallOptions): Promise<unknown>;
134
+ /**
135
+ * Runs an agent with the specified agent ID and parameters.
136
+ *
137
+ * @param agentId - The ID of the agent to run.
138
+ * @param executionId - The execution ID of the agent to run.
139
+ * @param params - The parameters for running the agent.
140
+ * @param options - The optional call options.
141
+ * @returns A promise that resolves to the response of running the agent.
142
+ */
42
143
  runAgent(agentId: string, executionId: string, params: RunAgentParams, options?: CallOptions): Promise<RunAgentResponse>;
144
+ /**
145
+ * Set the session ID.
146
+ * @param sessionId - The session ID to set.
147
+ * @returns The session ID.
148
+ */
43
149
  setSessionId(sessionId: string): string;
150
+ /**
151
+ * Find agents with optional pagination and query.
152
+ * @param params - Optional find parameters.
153
+ * @param options - The API call options.
154
+ * @returns An array of agents.
155
+ */
44
156
  findTemplates(params?: FindTemplatesOptions, options?: CallOptions): Promise<List<Partial<Template>>>;
157
+ /**
158
+ * Get a template by its ID.
159
+ * @param templateId - The ID of the template to retrieve.
160
+ * @param options - The API call options.
161
+ * @returns The retrieved template.
162
+ */
45
163
  getTemplate(templateId: string, options?: CallOptions): Promise<Template>;
164
+ /**
165
+ * Create a new template.
166
+ * @param params - The template creation parameters.
167
+ * @param options - The API call options.
168
+ * @returns The created template.
169
+ */
46
170
  createTemplate(params: CreateTemplateParams, options?: CallOptions): Promise<Template>;
171
+ /**
172
+ * Delete a template by its ID.
173
+ * @param templateId - The ID of the template to update.
174
+ * @param params - The update template parameters.
175
+ * @param options - The API call options.
176
+ * @returns The updated template.
177
+ */
47
178
  deleteTemplate(templateId: string, options?: CallOptions): Promise<Template>;
179
+ /**
180
+ * Get markdown for passed url
181
+ * @param url - The web page url.
182
+ * @param question - The question to search.
183
+ * @param options - The API call options.
184
+ * @returns The markdown page passages.
185
+ */
48
186
  htmlToPassages(url: string, question: string, options?: CallOptions): Promise<string[]>;
187
+ /**
188
+ * Creates one or multiple agent test cases by sending a POST request to the 'agents/testing' endpoint.
189
+ *
190
+ * @param cases - A single test case or an array of test cases to be created.
191
+ * @returns A promise that resolves to an array of created test cases.
192
+ */
49
193
  createAgentTestCase(cases: CreateTestCase | CreateTestCase[]): Promise<TestCase | TestCase[]>;
194
+ /**
195
+ * Updates an existing agent test case with the specified parameters.
196
+ *
197
+ * @param testCaseId - The unique identifier of the test case to update.
198
+ * @param params - The updated test case data.
199
+ * @param options - Optional call options for the request.
200
+ * @returns A promise that resolves to the updated test case.
201
+ */
50
202
  updateAgentTestCase(testCaseId: string, params: Partial<CreateTestCase>, options?: CallOptions): Promise<TestCase>;
203
+ /**
204
+ * Deletes a specific agent test case by its ID.
205
+ *
206
+ * @param testCaseId - The unique identifier of the test case to delete.
207
+ * @param options - Optional call options to customize the request.
208
+ * @returns A promise that resolves to the deleted test case object.
209
+ */
51
210
  deleteAgentTestCase(testCaseId: string, options?: CallOptions): Promise<TestCase>;
211
+ /**
212
+ * Fetches the test cases for a specific agent version.
213
+ *
214
+ * @param agentId - The unique identifier of the agent.
215
+ * @param agentVersionId - The unique identifier of the agent version.
216
+ * @param params - Optional query parameters to include in the request.
217
+ * @param options - Optional call options for the request.
218
+ * @returns A promise that resolves to an array of test cases.
219
+ */
52
220
  fetchAgentTestCases(params: {
53
221
  agentId: string;
54
222
  agentVersionId: string;
55
223
  }, options?: CallOptions): Promise<TestCase[]>;
224
+ /**
225
+ * Executes a set of test cases for a specific agent and its version.
226
+ *
227
+ * @param data - The input data required to run the test cases.
228
+ * @param data.agentId - The unique identifier of the agent.
229
+ * @param data.agentVersionId - The unique identifier of the agent's version.
230
+ * @param data.testCaseIds - An array of test case IDs to be executed.
231
+ * @returns A promise that resolves to an array of `TestCase` objects representing the results of the executed test cases.
232
+ */
56
233
  runAgentTestCase(data: {
57
234
  agentId: string;
58
235
  agentVersionId: string;
59
236
  testCaseIds: string[];
60
237
  }): Promise<TestCase[]>;
238
+ /**
239
+ * Terminates one or more agent test cases for a specific agent and version.
240
+ *
241
+ * @param data - An object containing the following properties:
242
+ * - agentId: The unique identifier of the agent.
243
+ * - agentVersionId: The unique identifier of the agent version.
244
+ * - testCaseIds: An array of test case IDs to terminate.
245
+ * @returns A promise that resolves to an array of terminated `TestCase` objects.
246
+ */
61
247
  terminateAgentTestCase(data: {
62
248
  agentId: string;
63
249
  agentVersionId: string;
64
250
  testCaseIds: string[];
65
251
  }): Promise<TestCase[]>;
252
+ /**
253
+ *
254
+ * @param agentId Id of an agent to configure
255
+ * @param agentVersionId VersionId of the agent
256
+ * @param executionId ExecutionId to create a session
257
+ * @param flowId FlowId from where session was created
258
+ * @param overrides Overrides to merge
259
+ * @param option Call options
260
+ * @returns Configured agent
261
+ */
66
262
  configureAgent(agentId: string, agentVersionId: string, executionId: string, flowId: string, overrides: Partial<Agent>, options?: CallOptions): Promise<Agent>;
67
263
  createResponse(requestBody: OpenAI.Responses.ResponseCreateParamsNonStreaming & Record<string, unknown>): Promise<OpenAI.Responses.Response & {
68
264
  _request_id?: string | null;
@@ -1 +1 @@
1
- {"version":3,"file":"Agents.d.ts","sourceRoot":"","sources":["../../src/Agents.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"Agents.d.ts","sourceRoot":"","sources":["../../src/Agents.ts"],"names":[],"mappings":"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"}
@@ -2,84 +2,271 @@ import { List, OrderDirection, Token } from '@or-sdk/base';
2
2
  import type { Bot } from '@or-sdk/bots';
3
3
  import type { Flow } from '@or-sdk/deployer';
4
4
  export declare enum ActivityKind {
5
+ /** An observation made by the agent. */
5
6
  Observation = "OBSERVATION",
7
+ /** A thought process of the agent. */
6
8
  Thought = "THOUGHT",
9
+ /** An action taken by the agent. */
7
10
  Action = "ACTION"
8
11
  }
12
+ /**
13
+ * Represents an activity performed by the agent, such as an observation, thought, or action.
14
+ */
9
15
  export type AgentActivity = {
16
+ /**
17
+ * The input or content of the activity.
18
+ */
10
19
  input: string;
20
+ /**
21
+ * The kind of activity.
22
+ */
11
23
  kind: ActivityKind;
12
24
  };
25
+ /**
26
+ * Defines call options for asynchronous operations, including the ability to cancel them.
27
+ */
13
28
  export type CallOptions = {
29
+ /**
30
+ * An optional AbortSignal to cancel the request.
31
+ */
14
32
  signal?: AbortSignal;
15
33
  };
34
+ /**
35
+ * Configuration options required for initializing agents, including authentication and service URLs.
36
+ */
16
37
  export type AgentsConfig = {
38
+ /**
39
+ * Authentication token for service access.
40
+ */
17
41
  token: Token;
42
+ /**
43
+ * Optional URL for the OneReach service discovery API.
44
+ */
18
45
  discoveryUrl?: string;
46
+ /**
47
+ * Optional account ID for making cross-account requests. This is typically required for super admin users.
48
+ */
19
49
  accountId?: string;
50
+ /**
51
+ * Optional URL of the OneReach lookup API.
52
+ */
20
53
  serviceUrl?: string;
54
+ /**
55
+ * Optional feature name for the agent. Defaults to 'master' if not provided.
56
+ */
21
57
  feature?: string;
58
+ /**
59
+ * Flow SessionID (Used for correct tracking)
60
+ */
22
61
  sessionId?: string;
62
+ /**
63
+ * Flow beginningSessionId (Used for correct tracking)
64
+ */
23
65
  beginningSessionId?: string;
24
66
  };
67
+ /**
68
+ * Options for configuring the behavior and output of the agent's underlying language model.
69
+ */
25
70
  export type AgentModelOptions = {
71
+ /**
72
+ * Controls the randomness of the output. Higher values may lead to more creative responses.
73
+ */
26
74
  temperature: number;
75
+ /**
76
+ * The maximum length of the output generated by the language model.
77
+ */
27
78
  maxTokens: number;
79
+ /**
80
+ * Adjusts the likelihood of the model repeating the same line of thinking.
81
+ */
28
82
  frequencyPenalty: number;
83
+ /**
84
+ * Discourages the model from using tokens already present in the text.
85
+ */
29
86
  presencePenalty: number;
87
+ /**
88
+ * Specifies the name of the large language model to use.
89
+ */
30
90
  modelName: string;
91
+ /**
92
+ * Specifies the name of the provider to use for the agent.
93
+ */
31
94
  provider: string;
95
+ /**
96
+ * Specifies the name of the token to use for the agent.
97
+ */
32
98
  tokenName?: string;
99
+ /**
100
+ * Specifies the API type to use for the agent.
101
+ */
33
102
  apiType?: APIType;
103
+ /**
104
+ * Specifies the guardrail identifier to use for the agent.
105
+ */
34
106
  guardrailIdentifier?: string;
35
107
  };
108
+ /**
109
+ * Describes an example of how an agent action could be used, including a description and relevant activities.
110
+ */
36
111
  export type ActionExample = {
112
+ /**
113
+ * A brief description of what the example demonstrates.
114
+ */
37
115
  description: string;
116
+ /**
117
+ * A series of activities associated with the example.
118
+ */
38
119
  activities: AgentActivity[];
39
120
  };
121
+ /**
122
+ * Defines an action that an agent can perform, including querying and mutation operations.
123
+ */
40
124
  export type AgentAction = {
125
+ /**
126
+ * The name of the action.
127
+ */
41
128
  name: string;
129
+ /**
130
+ * A detailed description of the action.
131
+ */
42
132
  description: string;
133
+ /**
134
+ * The type definitions associated with the action, described in a schema language.
135
+ */
43
136
  typeDefs: string;
44
137
  typeDefsCodeMode?: boolean;
138
+ /**
139
+ * Optional examples that illustrate how the action can be used.
140
+ */
45
141
  examples?: ActionExample[];
142
+ /**
143
+ * Allow to disable the action.
144
+ */
46
145
  disabled?: boolean;
146
+ /**
147
+ * Json example of input and result of the action in JSON format
148
+ */
47
149
  outputExample: {
48
150
  result: Record<string, unknown>;
49
151
  input: Record<string, unknown>;
50
152
  };
51
153
  };
154
+ /**
155
+ * Represents a digital agent capable of performing actions and processing information based on a given model.
156
+ */
52
157
  export type Agent = {
158
+ /**
159
+ * Unique identifier for the agent.
160
+ */
53
161
  id: string;
162
+ /**
163
+ * The account ID associated with the agent.
164
+ */
54
165
  accountId: string;
166
+ /**
167
+ * The name of the agent, which must start with a capital letter.
168
+ */
55
169
  name: string;
170
+ /**
171
+ * Optional description of the agent's purpose and capabilities.
172
+ */
56
173
  description: string;
174
+ /**
175
+ * URL to an image representing the agent.
176
+ */
57
177
  image: string;
178
+ /**
179
+ * Optional metadata associated with the agent.
180
+ */
58
181
  meta?: Record<string, unknown>;
182
+ /**
183
+ * A list of actions the agent is capable of performing.
184
+ */
59
185
  actions: AgentAction[];
186
+ /**
187
+ * The readonly definitions associated with the all the actions, described in a schema language.
188
+ */
60
189
  typeDefs: string;
190
+ /**
191
+ * A description of the objective or goal the agent is designed to achieve.
192
+ */
61
193
  objective: string;
194
+ /**
195
+ * Configuration options for the agent's model, affecting performance and output.
196
+ */
62
197
  model: AgentModelOptions;
198
+ /**
199
+ * The date and time when the agent was created.
200
+ */
63
201
  createdAt: string | Date;
202
+ /**
203
+ * The date and time when the agent was last updated.
204
+ */
64
205
  updatedAt: string | Date;
206
+ /**
207
+ * A starter history of historical interactions or activities for the agent, which can influence its behavior.
208
+ */
65
209
  starterHistory: AgentActivity[];
210
+ /**
211
+ * Knowledge lookup collections
212
+ */
66
213
  collections?: {
67
214
  id: string;
68
215
  name: string;
69
216
  }[];
217
+ /**
218
+ * Allow to use web search
219
+ */
70
220
  webSearch?: boolean;
221
+ /**
222
+ * Scenario Graph source
223
+ */
71
224
  scenarioGraphSource: ScenarioGraph;
225
+ /**
226
+ * Scenario Graph code in GraphViz
227
+ */
72
228
  scenarioGraphCode: string;
229
+ /**
230
+ * Agent's memory definitions
231
+ */
73
232
  memoryDefs: string;
74
233
  memoryCodeMode: boolean;
234
+ /**
235
+ * Agent's memory example in JSON format, generated from memoryDefs
236
+ */
75
237
  memoryExample: Record<string, unknown>;
238
+ /**
239
+ * Agent version's release notes
240
+ */
76
241
  releaseNotes?: string;
242
+ /**
243
+ * Agent version's release date
244
+ */
77
245
  releasedAt?: string | Date;
246
+ /**
247
+ * Agent version's date of creation
248
+ */
78
249
  versionCreatedAt: string | Date;
250
+ /**
251
+ * Agent version's ID
252
+ */
79
253
  versionId: string;
254
+ /**
255
+ * Agent version's label
256
+ */
80
257
  versionLabel: string;
258
+ /**
259
+ * Agent version's date of update
260
+ */
81
261
  versionUpdatedAt: string | Date;
262
+ /**
263
+ * List of available agent versions meta info
264
+ */
82
265
  versions: VersionMeta[];
266
+ /**
267
+ * Collaboration agents
268
+ * version ID is optional for use the latest development version
269
+ */
83
270
  collaborationAgents: {
84
271
  id: string;
85
272
  name: string;
@@ -87,82 +274,244 @@ export type Agent = {
87
274
  flowId?: string;
88
275
  disabled: boolean;
89
276
  }[];
277
+ /**
278
+ * Collaboration definitions
279
+ */
90
280
  collaborationDefs: string;
281
+ /**
282
+ * Collaboration example in JSON format, generated from collaborationDefs
283
+ */
91
284
  collaborationExample: {
92
285
  result: Record<string, unknown>;
93
286
  input: Record<string, unknown>;
94
287
  };
288
+ /**
289
+ * The maximum number of iterations the agent can perform.
290
+ */
95
291
  maxIterations?: number;
292
+ /**
293
+ * The maximum number of retries for actions.
294
+ */
96
295
  maxRetries?: number;
296
+ /**
297
+ * The maximum number of activities present in LLM prompt.
298
+ */
97
299
  historyLength?: number;
98
300
  };
99
301
  export type VersionMeta = {
302
+ /**
303
+ * Agent version's release date
304
+ */
100
305
  releasedAt?: string | Date;
306
+ /**
307
+ * Agent version's release notes
308
+ */
101
309
  releaseNotes?: string;
310
+ /**
311
+ * Agent version's date of update
312
+ */
102
313
  updatedBy: string;
314
+ /**
315
+ * Agent version's ID
316
+ */
103
317
  versionId: string;
318
+ /**
319
+ * Agent version's label
320
+ */
104
321
  versionLabel: string;
322
+ /**
323
+ * Agent version's date of update
324
+ */
105
325
  versionUpdatedAt: string | Date;
106
326
  };
327
+ /**
328
+ * Defines the properties that can be modified when updating an existing agent.
329
+ */
107
330
  export type UpdateAgent = Partial<Omit<Agent, 'id' | 'createdAt' | 'updatedAt' | 'accountId' | 'typeDefs'>>;
331
+ /**
332
+ * Defines the properties required to create a new agent, excluding those automatically assigned upon creation.
333
+ */
108
334
  export type CreateAgent = Pick<Agent, 'name'> & UpdateAgent;
335
+ /**
336
+ * Options for querying the list of agents, including search parameters and pagination controls.
337
+ */
109
338
  export type FindAgentsOptions = {
339
+ /**
340
+ * Pagination offset for retrieving a subset of agents.
341
+ */
110
342
  from?: number;
343
+ /**
344
+ * Maximum number of agents to retrieve per page.
345
+ */
111
346
  size?: number;
347
+ /**
348
+ * Text query for searching agents by name, description, or other attributes.
349
+ */
112
350
  query?: string | {
113
351
  meta: Record<string, unknown>;
114
352
  };
353
+ /**
354
+ * The property name by which to order the results.
355
+ */
115
356
  orderProperty?: string;
357
+ /**
358
+ * The direction in which to order the results, either ascending or descending.
359
+ */
116
360
  orderDirection?: OrderDirection;
117
361
  };
362
+ /**
363
+ * Represents a list of executions, including metadata for pagination and record retrieval.
364
+ */
118
365
  export type ExecutionList = List<{
366
+ /**
367
+ * Unique identifier for the agent execution.
368
+ */
119
369
  id: string;
370
+ /**
371
+ * Summary from first user message
372
+ */
120
373
  summary?: string;
374
+ /**
375
+ * Flow ID
376
+ */
121
377
  flowId?: string;
378
+ /**
379
+ * Agent ID
380
+ */
122
381
  agentId: string;
382
+ /**
383
+ * Used completion tokens
384
+ */
123
385
  totalCompletionTokens: number;
386
+ /**
387
+ * Used prompt tokens
388
+ */
124
389
  totalPromptTokens: number;
390
+ /**
391
+ * Created date
392
+ */
125
393
  createdAt: string;
394
+ /**
395
+ * Updated date
396
+ */
126
397
  updatedAt: string;
127
398
  }>;
128
399
  export type Execution = {
129
400
  history: (AgentActivity & {
401
+ /**
402
+ * Sequence number of the activity in the execution.
403
+ */
130
404
  id?: number;
405
+ /**
406
+ * Created date
407
+ */
131
408
  createdAt: string;
409
+ /**
410
+ * Updated date
411
+ */
132
412
  updatedAt: string;
413
+ /**
414
+ * Agent overrides
415
+ */
133
416
  overrides: Partial<Agent> & {
134
417
  memory: Record<string, unknown>;
135
418
  task: Record<string, unknown>;
136
419
  };
420
+ /**
421
+ * Model params
422
+ */
137
423
  model: Partial<AgentModelOptions>;
138
424
  })[];
425
+ /**
426
+ * Used completion tokens
427
+ */
139
428
  totalCompletionTokens: number;
429
+ /**
430
+ * Used prompt tokens
431
+ */
140
432
  totalPromptTokens: number;
433
+ /**
434
+ * Flow ID
435
+ */
141
436
  flowId?: string;
142
437
  };
438
+ /**
439
+ * Parameters for running an agent, including optional agent properties and execution context.
440
+ */
143
441
  export type RunAgentParams = Partial<Agent> & {
442
+ /**
443
+ * A list of activities or events that have occurred prior to running the agent, influencing its behavior.
444
+ */
144
445
  history: AgentActivity[];
446
+ /**
447
+ * Optional identifier for the event triggering the agent execution.
448
+ */
145
449
  eventId?: string;
450
+ /**
451
+ * Optional objective or goal for the agent to achieve during execution.
452
+ */
146
453
  objective?: string;
454
+ /**
455
+ * Optional version ID of the agent to run.
456
+ */
147
457
  versionId?: string;
458
+ /**
459
+ * Optional context for the agent execution.
460
+ */
148
461
  memory?: Record<string, unknown>;
462
+ /**
463
+ * Optional context for collaboration.
464
+ */
149
465
  task?: Record<string, unknown>;
150
466
  };
467
+ /**
468
+ * Response from running an agent, including execution results and metadata.
469
+ */
151
470
  export type RunAgentResponse = {
471
+ /**
472
+ * Results of the agent execution, organized by action name and containing input data.
473
+ */
152
474
  results: {
475
+ /**
476
+ * Data generated by the agent execution, keyed by action name.
477
+ */
153
478
  data: {
154
479
  [actionName: string]: {
480
+ /**
481
+ * Name of the action performed by the agent.
482
+ */
155
483
  action: string;
484
+ /**
485
+ * Input data provided to the agent for the action.
486
+ */
156
487
  input: object;
157
488
  };
158
489
  };
159
490
  };
491
+ /**
492
+ * Unique identifier for the agent execution.
493
+ */
160
494
  executionId: string;
495
+ /**
496
+ * Optional identifier for the event triggering the agent execution.
497
+ */
161
498
  eventId?: string;
499
+ /**
500
+ * All history of run agent during execution
501
+ **/
162
502
  history: Execution['history'];
163
503
  };
504
+ /**
505
+ * Defines the type of API to use for agent interactions.
506
+ */
164
507
  export declare enum APIType {
508
+ /**
509
+ * Use the Responses API.
510
+ */
165
511
  Responses = "Responses",
512
+ /**
513
+ * Use the ChatCompletion API.
514
+ */
166
515
  ChatCompletion = "ChatCompletion"
167
516
  }
168
517
  export declare enum TemplateTypeEnum {
@@ -180,14 +529,29 @@ export type Template = {
180
529
  type: TemplateTypeEnum;
181
530
  version: string;
182
531
  data: {
532
+ /**
533
+ * Original request that was used to create the template
534
+ */
183
535
  originalRequest: CreateTemplateParams;
536
+ /**
537
+ * Agent that was used to create the template
538
+ */
184
539
  agent: Agent;
540
+ /**
541
+ * Auxiliary agents that were used to create the template
542
+ */
185
543
  auxiliaryAgents: Agent[];
544
+ /**
545
+ * Bots that were used to create the template
546
+ */
186
547
  bots: {
187
548
  id: string;
188
549
  bot: Bot;
189
550
  flows: Flow[];
190
551
  }[];
552
+ /**
553
+ * Lookups that were used to create the template
554
+ */
191
555
  lookup: {
192
556
  collectionId: string;
193
557
  collection: Record<string, unknown>;
@@ -197,6 +561,9 @@ export type Template = {
197
561
  passages: Record<string, unknown>[];
198
562
  }[];
199
563
  }[];
564
+ /**
565
+ * Postgres data that was used to create the template
566
+ */
200
567
  postgres: {
201
568
  sql: string;
202
569
  data: Record<string, unknown>[];
@@ -207,19 +574,50 @@ export type Template = {
207
574
  };
208
575
  };
209
576
  export type CreateTemplateParams = {
577
+ /**
578
+ * Agent ID from sandbox account
579
+ * all data must be created in sandbox account
580
+ */
210
581
  agentId: string;
582
+ /**
583
+ * Agent version ID
584
+ */
211
585
  agentVersionId?: string;
586
+ /**
587
+ * Auxiliary agents IDs
588
+ */
212
589
  auxiliaryAgentsIds: {
213
590
  id: string;
214
591
  versionId?: string;
215
592
  }[];
593
+ /**
594
+ * Bot IDs
595
+ */
216
596
  botIds: string[];
597
+ /**
598
+ * Flow IDs
599
+ */
217
600
  flowIds?: string[];
601
+ /**
602
+ * Collection IDs
603
+ */
218
604
  collectionIds?: string[];
605
+ /**
606
+ * Document IDs
607
+ */
219
608
  documentIds?: string[];
609
+ /**
610
+ * Postgres data
611
+ */
220
612
  postgres: Template['data']['postgres'];
613
+ /**
614
+ * Template type
615
+ */
221
616
  type: TemplateTypeEnum;
222
617
  };
618
+ /**
619
+ * Represents a node in a scenario graph.
620
+ */
223
621
  export type Node = {
224
622
  id: string;
225
623
  label: string;
@@ -235,6 +633,9 @@ export type Node = {
235
633
  y: number;
236
634
  };
237
635
  };
636
+ /**
637
+ * Represents a connection between two nodes in a scenario graph.
638
+ */
238
639
  export type Connection = {
239
640
  id: string;
240
641
  source: string;
@@ -242,40 +643,110 @@ export type Connection = {
242
643
  target: string;
243
644
  targetInput: string;
244
645
  };
646
+ /**
647
+ * Represents a scenario graph, consisting of nodes and connections.
648
+ */
245
649
  export type ScenarioGraph = {
246
650
  nodes?: Node[];
247
651
  connections?: Connection[];
248
652
  };
653
+ /**
654
+ * Represents required meta information for the version to be released
655
+ */
249
656
  export type ReleaseVersion = {
657
+ /**
658
+ * Released version label
659
+ */
250
660
  label: string;
661
+ /**
662
+ * Release notes
663
+ */
251
664
  notes: string;
252
665
  };
253
666
  export type GetAgentParams = {
667
+ /**
668
+ * Id of agent version, if absent, development version will be used.
669
+ */
254
670
  versionId?: string;
671
+ /**
672
+ * Available accounts to switch to if agent is found there
673
+ */
255
674
  availableAccounts?: string[];
256
675
  };
257
676
  export type AgentVersion = {
677
+ /**
678
+ * Agent version's ID
679
+ */
258
680
  versionId: string;
681
+ /**
682
+ * Agent version's release date
683
+ */
259
684
  releasedAt: string | null;
685
+ /**
686
+ * Agent version's label
687
+ */
260
688
  versionLabel: string;
689
+ /**
690
+ * Release notes for the agent version
691
+ */
261
692
  releaseNotes: string;
693
+ /**
694
+ * Agent version's date of creation
695
+ */
262
696
  versionUpdatedAt: string;
697
+ /**
698
+ * Updated by user
699
+ */
263
700
  updatedBy: string | null;
264
701
  };
265
702
  export type TestCase = {
703
+ /**
704
+ * Unique identifier for the test case.
705
+ */
266
706
  id: string;
707
+ /**
708
+ * Created date
709
+ */
267
710
  updatedAt?: Date;
711
+ /**
712
+ * Updated date
713
+ */
268
714
  createdAt?: Date;
715
+ /**
716
+ * The ID of the agent associated with the test case.
717
+ */
269
718
  agentId: string;
719
+ /**
720
+ * The ID of the agent version associated with the test case.
721
+ */
270
722
  agentVersionId: string;
723
+ /**
724
+ * estimated history example
725
+ */
271
726
  steps: AgentActivity[];
727
+ /**
728
+ * short summary of the test case
729
+ */
272
730
  summary: string;
731
+ /**
732
+ * detailed description of the test case
733
+ */
273
734
  description: string;
735
+ /**
736
+ * number of retries for the test case
737
+ */
274
738
  retries: number;
739
+ /**
740
+ * context for the test case
741
+ * this context will be used to run the test case
742
+ */
275
743
  context?: {
276
744
  memory?: Record<string, unknown>;
277
745
  task?: Record<string, unknown>;
278
746
  };
747
+ /**
748
+ * The expected output of the test case.
749
+ */
279
750
  testResults?: TestResult[];
280
751
  };
281
752
  export type CreateTestCase = Omit<TestCase, 'id' | 'createdAt' | 'updatedAt' | 'testResults'>;
@@ -290,13 +761,41 @@ export declare enum TestResultVerdict {
290
761
  TERMINATED = "TERMINATED"
291
762
  }
292
763
  export type TestResult = {
764
+ /**
765
+ * Unique identifier for the test result.
766
+ */
293
767
  id: string;
768
+ /**
769
+ * The ID of the test case associated with the test result.
770
+ */
294
771
  testCaseId: string;
772
+ /**
773
+ * Created date
774
+ */
295
775
  updatedAt?: Date;
776
+ /**
777
+ * Updated date
778
+ */
296
779
  createdAt?: Date;
780
+ /**
781
+ * execution ID of the test case
782
+ */
297
783
  executionId?: string;
784
+ /**
785
+ * Current status of the test result.
786
+ * Possible values include 'PENDING', 'PASSED', and 'FAILED'.
787
+ * 'PENDING' indicates that the test case is still running.
788
+ * 'PASSED' indicates that the test case has passed successfully.
789
+ * 'FAILED' indicates that the test case has failed.
790
+ */
298
791
  status: TestResultVerdict;
792
+ /**
793
+ * Prompt that will be used for agent improvements based on testing results.
794
+ */
299
795
  improvePrompt?: string;
796
+ /**
797
+ * The expected output of the test case.
798
+ */
300
799
  result?: {
301
800
  executions: {
302
801
  executionId: string;
@@ -314,6 +813,9 @@ export type TestResult = {
314
813
  overallVerdict: TestResultVerdict;
315
814
  overallScore: number;
316
815
  };
816
+ /**
817
+ * The actual output of the test case.
818
+ */
317
819
  error?: Record<string, unknown>;
318
820
  };
319
821
  //# sourceMappingURL=types.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../src/types.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,IAAI,EAAE,cAAc,EAAE,KAAK,EAAE,MAAM,cAAc,CAAC;AAC3D,OAAO,KAAK,EAAE,GAAG,EAAE,MAAM,cAAc,CAAC;AACxC,OAAO,KAAK,EAAE,IAAI,EAAE,MAAM,kBAAkB,CAAC;AAG7C,MAAM,CAAC,OAAO,MAAM,YAAY;IAE9B,WAAW,gBAAgB;IAE3B,OAAO,YAAY;IAEnB,MAAM,WAAW;CAClB;AAKD,MAAM,MAAM,aAAa,GAAG;IAI1B,KAAK,EAAE,MAAM,CAAC;IAKd,IAAI,EAAE,YAAY,CAAC;CACpB,CAAA;AAKD,MAAM,MAAM,WAAW,GAAG;IAIxB,MAAM,CAAC,EAAE,WAAW,CAAC;CACtB,CAAC;AAKF,MAAM,MAAM,YAAY,GAAG;IAIzB,KAAK,EAAE,KAAK,CAAC;IAKb,YAAY,CAAC,EAAE,MAAM,CAAC;IAKtB,SAAS,CAAC,EAAE,MAAM,CAAC;IAKnB,UAAU,CAAC,EAAE,MAAM,CAAC;IAKpB,OAAO,CAAC,EAAE,MAAM,CAAC;IAKjB,SAAS,CAAC,EAAE,MAAM,CAAC;IAKnB,kBAAkB,CAAC,EAAE,MAAM,CAAC;CAC7B,CAAC;AAKF,MAAM,MAAM,iBAAiB,GAAG;IAI9B,WAAW,EAAE,MAAM,CAAC;IAKpB,SAAS,EAAE,MAAM,CAAC;IAKlB,gBAAgB,EAAE,MAAM,CAAC;IAKzB,eAAe,EAAE,MAAM,CAAC;IAKxB,SAAS,EAAE,MAAM,CAAC;IAKlB,QAAQ,EAAE,MAAM,CAAC;IAKjB,SAAS,CAAC,EAAE,MAAM,CAAC;IAKnB,OAAO,CAAC,EAAE,OAAO,CAAC;IAKlB,mBAAmB,CAAC,EAAE,MAAM,CAAC;CAC9B,CAAC;AAKF,MAAM,MAAM,aAAa,GAAG;IAI1B,WAAW,EAAE,MAAM,CAAC;IAKpB,UAAU,EAAE,aAAa,EAAE,CAAC;CAC7B,CAAC;AAKF,MAAM,MAAM,WAAW,GAAG;IAIxB,IAAI,EAAE,MAAM,CAAC;IAKb,WAAW,EAAE,MAAM,CAAC;IAKpB,QAAQ,EAAE,MAAM,CAAC;IACjB,gBAAgB,CAAC,EAAE,OAAO,CAAC;IAK3B,QAAQ,CAAC,EAAE,aAAa,EAAE,CAAC;IAK3B,QAAQ,CAAC,EAAE,OAAO,CAAC;IAKnB,aAAa,EAAE;QACb,MAAM,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAAC;QAChC,KAAK,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAAC;KAChC,CAAC;CACH,CAAC;AAKF,MAAM,MAAM,KAAK,GAAG;IAIlB,EAAE,EAAE,MAAM,CAAC;IAKX,SAAS,EAAE,MAAM,CAAC;IAKlB,IAAI,EAAE,MAAM,CAAC;IAKb,WAAW,EAAE,MAAM,CAAC;IAKpB,KAAK,EAAE,MAAM,CAAC;IAKd,IAAI,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAAC;IAK/B,OAAO,EAAE,WAAW,EAAE,CAAC;IAKvB,QAAQ,EAAE,MAAM,CAAC;IAKjB,SAAS,EAAE,MAAM,CAAC;IAKlB,KAAK,EAAE,iBAAiB,CAAC;IAKzB,SAAS,EAAE,MAAM,GAAG,IAAI,CAAC;IAKzB,SAAS,EAAE,MAAM,GAAG,IAAI,CAAC;IAKzB,cAAc,EAAE,aAAa,EAAE,CAAC;IAKhC,WAAW,CAAC,EAAE;QAAE,EAAE,EAAE,MAAM,CAAC;QAAC,IAAI,EAAE,MAAM,CAAC;KAAE,EAAE,CAAC;IAK9C,SAAS,CAAC,EAAE,OAAO,CAAC;IAKpB,mBAAmB,EAAE,aAAa,CAAC;IAKnC,iBAAiB,EAAE,MAAM,CAAC;IAK1B,UAAU,EAAE,MAAM,CAAC;IACnB,cAAc,EAAE,OAAO,CAAC;IAKxB,aAAa,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAAC;IAKvC,YAAY,CAAC,EAAE,MAAM,CAAC;IAKtB,UAAU,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAK3B,gBAAgB,EAAE,MAAM,GAAG,IAAI,CAAC;IAKhC,SAAS,EAAE,MAAM,CAAC;IAKlB,YAAY,EAAE,MAAM,CAAC;IAKrB,gBAAgB,EAAE,MAAM,GAAG,IAAI,CAAC;IAKhC,QAAQ,EAAE,WAAW,EAAE,CAAC;IAMxB,mBAAmB,EAAE;QAAE,EAAE,EAAE,MAAM,CAAC;QAAC,IAAI,EAAE,MAAM,CAAC;QAAC,SAAS,CAAC,EAAE,MAAM,CAAC;QAAC,MAAM,CAAC,EAAE,MAAM,CAAC;QAAC,QAAQ,EAAE,OAAO,CAAC;KAAE,EAAE,CAAC;IAK7G,iBAAiB,EAAE,MAAM,CAAC;IAK1B,oBAAoB,EAAE;QACpB,MAAM,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAAC;QAChC,KAAK,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAAC;KAChC,CAAC;IAKF,aAAa,CAAC,EAAE,MAAM,CAAC;IAKvB,UAAU,CAAC,EAAE,MAAM,CAAC;IAKpB,aAAa,CAAC,EAAE,MAAM,CAAC;CACxB,CAAC;AAEF,MAAM,MAAM,WAAW,GAAG;IAIxB,UAAU,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAK3B,YAAY,CAAC,EAAE,MAAM,CAAC;IAKtB,SAAS,EAAE,MAAM,CAAC;IAKlB,SAAS,EAAE,MAAM,CAAC;IAKlB,YAAY,EAAE,MAAM,CAAC;IAKrB,gBAAgB,EAAE,MAAM,GAAG,IAAI,CAAC;CACjC,CAAC;AAKF,MAAM,MAAM,WAAW,GAAG,OAAO,CAAC,IAAI,CACpC,KAAK,EACL,IAAI,GAAG,WAAW,GAAG,WAAW,GAAG,WAAW,GAAG,UAAU,CAC5D,CAAC,CAAC;AAKH,MAAM,MAAM,WAAW,GAAG,IAAI,CAAC,KAAK,EAAE,MAAM,CAAC,GAAG,WAAW,CAAC;AAK5D,MAAM,MAAM,iBAAiB,GAAG;IAI9B,IAAI,CAAC,EAAE,MAAM,CAAC;IAKd,IAAI,CAAC,EAAE,MAAM,CAAC;IAKd,KAAK,CAAC,EAAE,MAAM,GAAG;QAAE,IAAI,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAAC;KAAE,CAAC;IAKpD,aAAa,CAAC,EAAE,MAAM,CAAC;IAKvB,cAAc,CAAC,EAAE,cAAc,CAAC;CACjC,CAAC;AAKF,MAAM,MAAM,aAAa,GAAG,IAAI,CAAC;IAK/B,EAAE,EAAE,MAAM,CAAC;IAKX,OAAO,CAAC,EAAE,MAAM,CAAC;IAKjB,MAAM,CAAC,EAAE,MAAM,CAAC;IAKhB,OAAO,EAAE,MAAM,CAAC;IAKhB,qBAAqB,EAAE,MAAM,CAAC;IAK9B,iBAAiB,EAAE,MAAM,CAAC;IAK1B,SAAS,EAAE,MAAM,CAAC;IAKlB,SAAS,EAAE,MAAM,CAAC;CACnB,CAAC,CAAC;AAEH,MAAM,MAAM,SAAS,GAAG;IACtB,OAAO,EAAE,CAAC,aAAa,GAAG;QAIxB,EAAE,CAAC,EAAE,MAAM,CAAC;QAKZ,SAAS,EAAE,MAAM,CAAC;QAKlB,SAAS,EAAE,MAAM,CAAC;QAKlB,SAAS,EAAE,OAAO,CAAC,KAAK,CAAC,GAAG;YAC1B,MAAM,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAAC;YAChC,IAAI,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAAC;SAC/B,CAAC;QAKF,KAAK,EAAE,OAAO,CAAC,iBAAiB,CAAC,CAAC;KACnC,CAAC,EAAE,CAAC;IAKL,qBAAqB,EAAE,MAAM,CAAC;IAK9B,iBAAiB,EAAE,MAAM,CAAC;IAK1B,MAAM,CAAC,EAAE,MAAM,CAAC;CACjB,CAAC;AAKF,MAAM,MAAM,cAAc,GAAG,OAAO,CAAC,KAAK,CAAC,GAAG;IAI5C,OAAO,EAAE,aAAa,EAAE,CAAC;IAIzB,OAAO,CAAC,EAAE,MAAM,CAAC;IAIjB,SAAS,CAAC,EAAE,MAAM,CAAC;IAKnB,SAAS,CAAC,EAAE,MAAM,CAAC;IAKnB,MAAM,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAAC;IAKjC,IAAI,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAAC;CAChC,CAAC;AAKF,MAAM,MAAM,gBAAgB,GAAG;IAI7B,OAAO,EAAE;QAIP,IAAI,EAAE;YACJ,CAAC,UAAU,EAAE,MAAM,GAAG;gBAIpB,MAAM,EAAE,MAAM,CAAC;gBAIf,KAAK,EAAE,MAAM,CAAC;aACf,CAAC;SACH,CAAC;KACH,CAAC;IAIF,WAAW,EAAE,MAAM,CAAC;IAIpB,OAAO,CAAC,EAAE,MAAM,CAAC;IAKjB,OAAO,EAAE,SAAS,CAAC,SAAS,CAAC,CAAC;CAC/B,CAAC;AAKF,oBAAY,OAAO;IAIjB,SAAS,cAAc;IAIvB,cAAc,mBAAmB;CAClC;AAED,oBAAY,gBAAgB;IAC1B,KAAK,UAAU;CAChB;AAED,MAAM,MAAM,oBAAoB,GAAG,iBAAiB,GAAG;IAAE,IAAI,CAAC,EAAE,gBAAgB,CAAC;CAAE,CAAC;AAEpF,MAAM,MAAM,QAAQ,GAAG;IACrB,EAAE,EAAE,MAAM,CAAC;IACX,OAAO,EAAE,MAAM,CAAC;IAChB,IAAI,EAAE,MAAM,CAAC;IACb,WAAW,EAAE,MAAM,CAAC;IACpB,KAAK,EAAE,MAAM,CAAC;IACd,IAAI,EAAE,gBAAgB,CAAC;IACvB,OAAO,EAAE,MAAM,CAAC;IAChB,IAAI,EAAE;QAIJ,eAAe,EAAE,oBAAoB,CAAC;QAItC,KAAK,EAAE,KAAK,CAAC;QAIb,eAAe,EAAE,KAAK,EAAE,CAAC;QAIzB,IAAI,EAAE;YACJ,EAAE,EAAE,MAAM,CAAC;YACX,GAAG,EAAE,GAAG,CAAC;YACT,KAAK,EAAE,IAAI,EAAE,CAAC;SACf,EAAE,CAAC;QAIJ,MAAM,EAAE;YACN,YAAY,EAAE,MAAM,CAAC;YACrB,UAAU,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAAC;YACpC,SAAS,EAAE;gBACT,UAAU,EAAE,MAAM,CAAC;gBACnB,QAAQ,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAAC;gBAClC,QAAQ,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,EAAE,CAAC;aACrC,EAAE,CAAC;SACL,EAAE,CAAC;QAIJ,QAAQ,EAAE;YACR,GAAG,EAAE,MAAM,CAAC;YACZ,IAAI,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,EAAE,CAAC;YAChC,QAAQ,EAAE,MAAM,CAAC;YACjB,MAAM,EAAE,MAAM,CAAC;YACf,KAAK,EAAE,MAAM,CAAC;SACf,EAAE,CAAC;KACL,CAAC;CACH,CAAC;AAEF,MAAM,MAAM,oBAAoB,GAAG;IAKjC,OAAO,EAAE,MAAM,CAAC;IAKhB,cAAc,CAAC,EAAE,MAAM,CAAC;IAKxB,kBAAkB,EAAE;QAAE,EAAE,EAAE,MAAM,CAAC;QAAC,SAAS,CAAC,EAAE,MAAM,CAAC;KAAE,EAAE,CAAC;IAK1D,MAAM,EAAE,MAAM,EAAE,CAAC;IAMjB,OAAO,CAAC,EAAE,MAAM,EAAE,CAAC;IAKnB,aAAa,CAAC,EAAE,MAAM,EAAE,CAAC;IAKzB,WAAW,CAAC,EAAE,MAAM,EAAE,CAAC;IAKvB,QAAQ,EAAE,QAAQ,CAAC,MAAM,CAAC,CAAC,UAAU,CAAC,CAAC;IAMvC,IAAI,EAAE,gBAAgB,CAAC;CACxB,CAAA;AAMD,MAAM,MAAM,IAAI,GAAG;IACjB,EAAE,EAAE,MAAM,CAAC;IAEX,KAAK,EAAE,MAAM,CAAC;IAEd,UAAU,CAAC,EAAE,MAAM,CAAC;IAEpB,IAAI,EAAE,MAAM,CAAC;IAEb,MAAM,EAAE,MAAM,CAAC;IAEf,KAAK,EAAE,MAAM,CAAC;IAEd,MAAM,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,CAAC;IAE/B,OAAO,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,CAAC;IAEhC,QAAQ,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,CAAC;IAEjC,QAAQ,CAAC,EAAE;QAAE,CAAC,EAAE,MAAM,CAAC;QAAC,CAAC,EAAE,MAAM,CAAC;KAAE,CAAC;CACtC,CAAC;AAKF,MAAM,MAAM,UAAU,GAAG;IACvB,EAAE,EAAE,MAAM,CAAC;IAEX,MAAM,EAAE,MAAM,CAAC;IAEf,YAAY,EAAE,MAAM,CAAC;IAErB,MAAM,EAAE,MAAM,CAAC;IAEf,WAAW,EAAE,MAAM,CAAC;CACrB,CAAC;AAKF,MAAM,MAAM,aAAa,GAAG;IAC1B,KAAK,CAAC,EAAE,IAAI,EAAE,CAAC;IACf,WAAW,CAAC,EAAE,UAAU,EAAE,CAAC;CAC5B,CAAC;AAKF,MAAM,MAAM,cAAc,GAAG;IAI3B,KAAK,EAAE,MAAM,CAAC;IAKd,KAAK,EAAE,MAAM,CAAC;CACf,CAAC;AAEF,MAAM,MAAM,cAAc,GAAG;IAI3B,SAAS,CAAC,EAAE,MAAM,CAAC;IAKnB,iBAAiB,CAAC,EAAE,MAAM,EAAE,CAAC;CAC9B,CAAC;AAEF,MAAM,MAAM,YAAY,GAAG;IAIzB,SAAS,EAAE,MAAM,CAAC;IAIlB,UAAU,EAAE,MAAM,GAAG,IAAI,CAAC;IAI1B,YAAY,EAAE,MAAM,CAAC;IAIrB,YAAY,EAAE,MAAM,CAAC;IAIrB,gBAAgB,EAAE,MAAM,CAAC;IAIzB,SAAS,EAAE,MAAM,GAAG,IAAI,CAAC;CAC1B,CAAC;AAEF,MAAM,MAAM,QAAQ,GAAG;IAIrB,EAAE,EAAE,MAAM,CAAC;IAKX,SAAS,CAAC,EAAE,IAAI,CAAC;IAKjB,SAAS,CAAC,EAAE,IAAI,CAAC;IAKjB,OAAO,EAAE,MAAM,CAAC;IAKhB,cAAc,EAAE,MAAM,CAAC;IAKvB,KAAK,EAAE,aAAa,EAAE,CAAC;IAKvB,OAAO,EAAE,MAAM,CAAC;IAKhB,WAAW,EAAE,MAAM,CAAC;IAKpB,OAAO,EAAE,MAAM,CAAC;IAMhB,OAAO,CAAC,EAAE;QACR,MAAM,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAAC;QACjC,IAAI,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAAC;KAChC,CAAC;IAKF,WAAW,CAAC,EAAE,UAAU,EAAE,CAAC;CAC5B,CAAC;AAEF,MAAM,MAAM,cAAc,GAAG,IAAI,CAAC,QAAQ,EAAE,IAAI,GAAG,WAAW,GAAG,WAAW,GAAG,aAAa,CAAC,CAAC;AAE9F,oBAAY,iBAAiB;IAC3B,OAAO,YAAY;IACnB,OAAO,YAAY;IACnB,MAAM,WAAW;IACjB,MAAM,WAAW;IACjB,OAAO,YAAY;IACnB,OAAO,YAAY;IACnB,OAAO,YAAY;IACnB,UAAU,eAAe;CAC1B;AAED,MAAM,MAAM,UAAU,GAAG;IAIvB,EAAE,EAAE,MAAM,CAAC;IAKX,UAAU,EAAE,MAAM,CAAC;IAKnB,SAAS,CAAC,EAAE,IAAI,CAAC;IAKjB,SAAS,CAAC,EAAE,IAAI,CAAC;IAKjB,WAAW,CAAC,EAAE,MAAM,CAAC;IASrB,MAAM,EAAE,iBAAiB,CAAC;IAK1B,aAAa,CAAC,EAAE,MAAM,CAAC;IAKvB,MAAM,CAAC,EAAE;QAMP,UAAU,EAAE;YACV,WAAW,EAAE,MAAM,CAAC;YACpB,KAAK,CAAC,EAAE,MAAM,CAAC;YACf,KAAK,EAAE;gBACL,kBAAkB,EAAE,MAAM,CAAC;gBAC3B,OAAO,EAAE,iBAAiB,CAAC;gBAC3B,SAAS,EAAE,MAAM,CAAC;gBAClB,KAAK,EAAE,MAAM,CAAC;aACf,EAAE,CAAC;YAIJ,cAAc,EAAE,iBAAiB,CAAC;YAClC,YAAY,EAAE,MAAM,CAAC;YACrB,SAAS,CAAC,EAAE,MAAM,CAAA;SACnB,EAAE,CAAC;QAMJ,cAAc,EAAE,iBAAiB,CAAC;QAClC,YAAY,EAAE,MAAM,CAAC;KACtB,CAAC;IAKF,KAAK,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAAC;CACjC,CAAC"}
1
+ {"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../src/types.ts"],"names":[],"mappings":"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"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@or-sdk/agents",
3
- "version": "4.21.1-beta.4182.0",
3
+ "version": "4.21.1-beta.4184.0",
4
4
  "license": "Apache-2.0",
5
5
  "main": "dist/cjs/index.js",
6
6
  "module": "dist/esm/index.js",
@@ -21,9 +21,9 @@
21
21
  "dependencies": {
22
22
  "@graphql-tools/merge": "^9.0.7",
23
23
  "@graphql-tools/schema": "^10.0.6",
24
- "@or-sdk/base": "^0.44.3-beta.4182.0",
25
- "@or-sdk/bots": "^1.6.4-beta.4182.0",
26
- "@or-sdk/deployer": "^1.7.4-beta.4182.0",
24
+ "@or-sdk/base": "^0.44.3-beta.4184.0",
25
+ "@or-sdk/bots": "^1.6.4-beta.4184.0",
26
+ "@or-sdk/deployer": "^1.7.4-beta.4184.0",
27
27
  "dedent": "^1.5.1",
28
28
  "graphql": "^16.8.1",
29
29
  "graphql-tag": "^2.12.6",