@inkeep/agents-sdk 0.53.8 → 0.53.10
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.
|
@@ -10,7 +10,7 @@ import { AgentConfig, FunctionToolConfig, SubAgentConfig } from "./types.js";
|
|
|
10
10
|
import { Agent } from "./agent.js";
|
|
11
11
|
import { Project, ProjectConfig } from "./project.js";
|
|
12
12
|
import { StatusComponent as StatusComponent$1 } from "./status-component.js";
|
|
13
|
-
import { CredentialReferenceApiInsert, MCPToolConfig,
|
|
13
|
+
import { CredentialReferenceApiInsert, MCPToolConfig, ScheduledTriggerApiInsert, TriggerApiInsert } from "@inkeep/agents-core";
|
|
14
14
|
|
|
15
15
|
//#region src/builderFunctions.d.ts
|
|
16
16
|
|
|
@@ -408,7 +408,7 @@ declare function trigger(config: Omit<TriggerApiInsert, "id"> & {
|
|
|
408
408
|
* });
|
|
409
409
|
* ```
|
|
410
410
|
*/
|
|
411
|
-
declare function scheduledTrigger(config: Omit<
|
|
411
|
+
declare function scheduledTrigger(config: Omit<ScheduledTriggerApiInsert, "id"> & {
|
|
412
412
|
id?: string;
|
|
413
413
|
}): ScheduledTrigger;
|
|
414
414
|
//#endregion
|
|
@@ -1,13 +1,13 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { ScheduledTriggerApiInsert } from "@inkeep/agents-core";
|
|
2
2
|
|
|
3
3
|
//#region src/scheduled-trigger.d.ts
|
|
4
|
-
type ScheduledTriggerConfig = Omit<
|
|
4
|
+
type ScheduledTriggerConfig = Omit<ScheduledTriggerApiInsert, "id"> & {
|
|
5
5
|
id?: string;
|
|
6
6
|
};
|
|
7
7
|
interface ScheduledTriggerInterface {
|
|
8
8
|
getId(): string;
|
|
9
9
|
getName(): string;
|
|
10
|
-
getConfig(): Omit<
|
|
10
|
+
getConfig(): Omit<ScheduledTriggerApiInsert, "id"> & {
|
|
11
11
|
id: string;
|
|
12
12
|
};
|
|
13
13
|
with(config: Partial<ScheduledTriggerConfig>): ScheduledTrigger;
|
|
@@ -18,7 +18,7 @@ declare class ScheduledTrigger implements ScheduledTriggerInterface {
|
|
|
18
18
|
constructor(config: ScheduledTriggerConfig);
|
|
19
19
|
getId(): string;
|
|
20
20
|
getName(): string;
|
|
21
|
-
getConfig(): Omit<
|
|
21
|
+
getConfig(): Omit<ScheduledTriggerApiInsert, "id"> & {
|
|
22
22
|
id: string;
|
|
23
23
|
};
|
|
24
24
|
/**
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@inkeep/agents-sdk",
|
|
3
|
-
"version": "0.53.
|
|
3
|
+
"version": "0.53.10",
|
|
4
4
|
"description": "Agents SDK for building and managing agents in the Inkeep Agent Framework",
|
|
5
5
|
"types": "dist/index.d.ts",
|
|
6
6
|
"type": "module",
|
|
@@ -17,7 +17,7 @@
|
|
|
17
17
|
"js-yaml": "^4.1.0",
|
|
18
18
|
"typescript": "^5.3.3",
|
|
19
19
|
"zod": "^4.3.6",
|
|
20
|
-
"@inkeep/agents-core": "^0.53.
|
|
20
|
+
"@inkeep/agents-core": "^0.53.10"
|
|
21
21
|
},
|
|
22
22
|
"devDependencies": {
|
|
23
23
|
"@types/js-yaml": "^4.0.9",
|