@adobe/data 0.9.22 → 0.9.23
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/ecs/database/database.d.ts +1 -1
- package/dist/ecs/persistence-service/persistence-service.d.ts +1 -1
- package/dist/ecs/undo-redo-service/undo-redo-service.d.ts +1 -1
- package/dist/internal/data-view-32/data-view-32.d.ts +1 -5
- package/dist/internal/data-view-32/data-view-32.js +1 -0
- package/dist/internal/data-view-32/data-view-32.js.map +1 -1
- package/dist/service/agentic-service/action-error.d.ts +1 -0
- package/dist/service/agentic-service/action-error.js +3 -0
- package/dist/service/agentic-service/action-error.js.map +1 -0
- package/dist/service/agentic-service/action.d.ts +7 -0
- package/dist/service/agentic-service/action.js +3 -0
- package/dist/service/agentic-service/action.js.map +1 -0
- package/dist/service/agentic-service/agentic-service.d.ts +21 -0
- package/dist/service/agentic-service/agentic-service.js +3 -0
- package/dist/service/agentic-service/agentic-service.js.map +1 -0
- package/dist/service/agentic-service/create-from-config.d.ts +45 -0
- package/dist/service/agentic-service/create-from-config.js +85 -0
- package/dist/service/agentic-service/create-from-config.js.map +1 -0
- package/dist/service/agentic-service/create.d.ts +45 -0
- package/dist/service/agentic-service/create.interface-first-spike.type-test.d.ts +1 -0
- package/dist/service/agentic-service/create.interface-first-spike.type-test.js +119 -0
- package/dist/service/agentic-service/create.interface-first-spike.type-test.js.map +1 -0
- package/dist/service/agentic-service/create.js +85 -0
- package/dist/service/agentic-service/create.js.map +1 -0
- package/dist/service/agentic-service/create.test.d.ts +1 -0
- package/dist/service/agentic-service/create.test.js +542 -0
- package/dist/service/agentic-service/create.test.js.map +1 -0
- package/dist/service/agentic-service/create.type-test.d.ts +1 -0
- package/dist/service/agentic-service/create.type-test.js +121 -0
- package/dist/service/agentic-service/create.type-test.js.map +1 -0
- package/dist/service/agentic-service/index.d.ts +1 -0
- package/dist/service/agentic-service/index.js +3 -0
- package/dist/service/agentic-service/index.js.map +1 -0
- package/dist/service/agentic-service/public.d.ts +5 -0
- package/dist/service/agentic-service/public.js +3 -0
- package/dist/service/agentic-service/public.js.map +1 -0
- package/dist/service/agentic-service/state.d.ts +5 -0
- package/dist/service/agentic-service/state.js +3 -0
- package/dist/service/agentic-service/state.js.map +1 -0
- package/dist/service/dynamic-service/create.interface-first-spike.type-test.d.ts +1 -0
- package/dist/service/dynamic-service/create.interface-first-spike.type-test.js +118 -0
- package/dist/service/dynamic-service/create.interface-first-spike.type-test.js.map +1 -0
- package/dist/service/index.d.ts +1 -1
- package/dist/service/index.js +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/dist/typed-buffer/data-view-32.d.ts +5 -0
- package/dist/typed-buffer/data-view-32.js +3 -0
- package/dist/typed-buffer/data-view-32.js.map +1 -0
- package/dist/typed-buffer/index.d.ts +1 -1
- package/package.json +1 -1
|
@@ -0,0 +1,121 @@
|
|
|
1
|
+
// © 2026 Adobe. MIT License. See /LICENSE for details.
|
|
2
|
+
//
|
|
3
|
+
// Compile-time type checks for createFromConfig API.
|
|
4
|
+
import { Observe } from "../../observe/index.js";
|
|
5
|
+
import { create, } from "./create.js";
|
|
6
|
+
const iface = {
|
|
7
|
+
health: {
|
|
8
|
+
type: "number",
|
|
9
|
+
description: "Current health points",
|
|
10
|
+
},
|
|
11
|
+
stats: {
|
|
12
|
+
type: "object",
|
|
13
|
+
description: "Current player stats",
|
|
14
|
+
properties: {
|
|
15
|
+
hp: { type: "number" },
|
|
16
|
+
label: { type: "string" },
|
|
17
|
+
},
|
|
18
|
+
required: ["hp"],
|
|
19
|
+
additionalProperties: false,
|
|
20
|
+
},
|
|
21
|
+
heal: {
|
|
22
|
+
description: "Increase health by amount",
|
|
23
|
+
input: { type: "number" },
|
|
24
|
+
},
|
|
25
|
+
configure: {
|
|
26
|
+
description: "Configure stats",
|
|
27
|
+
input: {
|
|
28
|
+
type: "object",
|
|
29
|
+
properties: {
|
|
30
|
+
hp: { type: "number" },
|
|
31
|
+
label: { type: "string" },
|
|
32
|
+
},
|
|
33
|
+
required: ["hp"],
|
|
34
|
+
additionalProperties: false,
|
|
35
|
+
},
|
|
36
|
+
},
|
|
37
|
+
reset: {
|
|
38
|
+
description: "Reset values",
|
|
39
|
+
},
|
|
40
|
+
};
|
|
41
|
+
create({
|
|
42
|
+
description: "Player health and actions for agentic access",
|
|
43
|
+
declaration: iface,
|
|
44
|
+
implementation: {
|
|
45
|
+
health: Observe.fromConstant(42),
|
|
46
|
+
stats: Observe.fromConstant({ hp: 100, label: "ok" }),
|
|
47
|
+
heal: (input) => {
|
|
48
|
+
},
|
|
49
|
+
configure: (input) => {
|
|
50
|
+
},
|
|
51
|
+
reset: () => { },
|
|
52
|
+
},
|
|
53
|
+
conditional: {
|
|
54
|
+
health: Observe.fromConstant(true),
|
|
55
|
+
heal: Observe.fromConstant(false),
|
|
56
|
+
},
|
|
57
|
+
});
|
|
58
|
+
create({
|
|
59
|
+
description: "Player health and actions for agentic access",
|
|
60
|
+
declaration: iface,
|
|
61
|
+
implementation: {
|
|
62
|
+
// @ts-expect-error - health state requires Observe<number>
|
|
63
|
+
health: Observe.fromConstant("wrong"),
|
|
64
|
+
stats: Observe.fromConstant({ hp: 100 }),
|
|
65
|
+
heal: (input) => { },
|
|
66
|
+
configure: (input) => { },
|
|
67
|
+
reset: () => { },
|
|
68
|
+
},
|
|
69
|
+
});
|
|
70
|
+
create({
|
|
71
|
+
description: "Player health and actions for agentic access",
|
|
72
|
+
declaration: iface,
|
|
73
|
+
implementation: {
|
|
74
|
+
health: Observe.fromConstant(100),
|
|
75
|
+
stats: Observe.fromConstant({ hp: 100 }),
|
|
76
|
+
// @ts-expect-error - heal input schema requires number
|
|
77
|
+
heal: (input) => { },
|
|
78
|
+
configure: (input) => { },
|
|
79
|
+
reset: () => { },
|
|
80
|
+
},
|
|
81
|
+
});
|
|
82
|
+
create({
|
|
83
|
+
description: "Player health and actions for agentic access",
|
|
84
|
+
declaration: iface,
|
|
85
|
+
implementation: {
|
|
86
|
+
health: Observe.fromConstant(100),
|
|
87
|
+
stats: Observe.fromConstant({ hp: 100 }),
|
|
88
|
+
heal: (input) => { },
|
|
89
|
+
configure: (input) => { },
|
|
90
|
+
// @ts-expect-error - reset action has no input schema
|
|
91
|
+
reset: (input) => { },
|
|
92
|
+
},
|
|
93
|
+
});
|
|
94
|
+
create({
|
|
95
|
+
description: "Player health and actions for agentic access",
|
|
96
|
+
declaration: iface,
|
|
97
|
+
// @ts-expect-error - implementation must include every definition key
|
|
98
|
+
implementation: {
|
|
99
|
+
health: Observe.fromConstant(100),
|
|
100
|
+
stats: Observe.fromConstant({ hp: 100 }),
|
|
101
|
+
heal: (input) => { },
|
|
102
|
+
configure: (input) => { },
|
|
103
|
+
},
|
|
104
|
+
});
|
|
105
|
+
create({
|
|
106
|
+
description: "Player health and actions for agentic access",
|
|
107
|
+
declaration: iface,
|
|
108
|
+
implementation: {
|
|
109
|
+
health: Observe.fromConstant(100),
|
|
110
|
+
stats: Observe.fromConstant({ hp: 100 }),
|
|
111
|
+
heal: (input) => { },
|
|
112
|
+
configure: (input) => { },
|
|
113
|
+
reset: () => { },
|
|
114
|
+
},
|
|
115
|
+
conditional: {
|
|
116
|
+
health: Observe.fromConstant(true),
|
|
117
|
+
// @ts-expect-error - conditional values must be Observe<boolean>
|
|
118
|
+
heal: Observe.fromConstant(1),
|
|
119
|
+
},
|
|
120
|
+
});
|
|
121
|
+
//# sourceMappingURL=create.type-test.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"create.type-test.js","sourceRoot":"","sources":["../../../src/service/agentic-service/create.type-test.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * as AgenticService from "./public.js";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/service/agentic-service/index.ts"],"names":[],"mappings":"AAAA,uDAAuD;AAEvD,OAAO,KAAK,cAAc,MAAM,aAAa,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"public.js","sourceRoot":"","sources":["../../../src/service/agentic-service/public.ts"],"names":[],"mappings":"AAAA,uDAAuD;AAMvD,OAAO,EAAE,MAAM,EAAE,MAAM,aAAa,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"state.js","sourceRoot":"","sources":["../../../src/service/agentic-service/state.ts"],"names":[],"mappings":"AAAA,uDAAuD"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,118 @@
|
|
|
1
|
+
// © 2026 Adobe. MIT License. See /LICENSE for details.
|
|
2
|
+
import { Observe } from "../../observe/index.js";
|
|
3
|
+
const iface = {
|
|
4
|
+
health: {
|
|
5
|
+
type: "number",
|
|
6
|
+
description: "Current health points",
|
|
7
|
+
},
|
|
8
|
+
stats: {
|
|
9
|
+
type: "object",
|
|
10
|
+
description: "Current player stats",
|
|
11
|
+
properties: {
|
|
12
|
+
hp: { type: "number" },
|
|
13
|
+
label: { type: "string" },
|
|
14
|
+
},
|
|
15
|
+
required: ["hp"],
|
|
16
|
+
additionalProperties: false,
|
|
17
|
+
},
|
|
18
|
+
heal: {
|
|
19
|
+
description: "Increase health by amount",
|
|
20
|
+
input: { type: "number" },
|
|
21
|
+
},
|
|
22
|
+
configure: {
|
|
23
|
+
description: "Configure stats",
|
|
24
|
+
input: {
|
|
25
|
+
type: "object",
|
|
26
|
+
properties: {
|
|
27
|
+
hp: { type: "number" },
|
|
28
|
+
label: { type: "string" },
|
|
29
|
+
},
|
|
30
|
+
required: ["hp"],
|
|
31
|
+
additionalProperties: false,
|
|
32
|
+
},
|
|
33
|
+
},
|
|
34
|
+
reset: {
|
|
35
|
+
description: "Reset values",
|
|
36
|
+
},
|
|
37
|
+
};
|
|
38
|
+
create({
|
|
39
|
+
description: "Player health and actions for agentic access",
|
|
40
|
+
declaration: iface,
|
|
41
|
+
implementation: {
|
|
42
|
+
health: Observe.fromConstant(42),
|
|
43
|
+
stats: Observe.fromConstant({ hp: 100, label: "ok" }),
|
|
44
|
+
heal: (input) => {
|
|
45
|
+
},
|
|
46
|
+
configure: (input) => {
|
|
47
|
+
},
|
|
48
|
+
reset: () => { },
|
|
49
|
+
},
|
|
50
|
+
conditional: {
|
|
51
|
+
health: Observe.fromConstant(true),
|
|
52
|
+
heal: Observe.fromConstant(false),
|
|
53
|
+
},
|
|
54
|
+
});
|
|
55
|
+
create({
|
|
56
|
+
description: "Player health and actions for agentic access",
|
|
57
|
+
declaration: iface,
|
|
58
|
+
implementation: {
|
|
59
|
+
// @ts-expect-error - health state requires Observe<number>
|
|
60
|
+
health: Observe.fromConstant("wrong"),
|
|
61
|
+
stats: Observe.fromConstant({ hp: 100 }),
|
|
62
|
+
heal: (input) => { },
|
|
63
|
+
configure: (input) => { },
|
|
64
|
+
reset: () => { },
|
|
65
|
+
},
|
|
66
|
+
});
|
|
67
|
+
create({
|
|
68
|
+
description: "Player health and actions for agentic access",
|
|
69
|
+
declaration: iface,
|
|
70
|
+
implementation: {
|
|
71
|
+
health: Observe.fromConstant(100),
|
|
72
|
+
stats: Observe.fromConstant({ hp: 100 }),
|
|
73
|
+
// @ts-expect-error - heal input schema requires number
|
|
74
|
+
heal: (input) => { },
|
|
75
|
+
configure: (input) => { },
|
|
76
|
+
reset: () => { },
|
|
77
|
+
},
|
|
78
|
+
});
|
|
79
|
+
create({
|
|
80
|
+
description: "Player health and actions for agentic access",
|
|
81
|
+
declaration: iface,
|
|
82
|
+
implementation: {
|
|
83
|
+
health: Observe.fromConstant(100),
|
|
84
|
+
stats: Observe.fromConstant({ hp: 100 }),
|
|
85
|
+
heal: (input) => { },
|
|
86
|
+
configure: (input) => { },
|
|
87
|
+
// @ts-expect-error - reset action has no input schema
|
|
88
|
+
reset: (input) => { },
|
|
89
|
+
},
|
|
90
|
+
});
|
|
91
|
+
create({
|
|
92
|
+
description: "Player health and actions for agentic access",
|
|
93
|
+
declaration: iface,
|
|
94
|
+
// @ts-expect-error - implementation must include every definition key
|
|
95
|
+
implementation: {
|
|
96
|
+
health: Observe.fromConstant(100),
|
|
97
|
+
stats: Observe.fromConstant({ hp: 100 }),
|
|
98
|
+
heal: (input) => { },
|
|
99
|
+
configure: (input) => { },
|
|
100
|
+
},
|
|
101
|
+
});
|
|
102
|
+
create({
|
|
103
|
+
description: "Player health and actions for agentic access",
|
|
104
|
+
declaration: iface,
|
|
105
|
+
implementation: {
|
|
106
|
+
health: Observe.fromConstant(100),
|
|
107
|
+
stats: Observe.fromConstant({ hp: 100 }),
|
|
108
|
+
heal: (input) => { },
|
|
109
|
+
configure: (input) => { },
|
|
110
|
+
reset: () => { },
|
|
111
|
+
},
|
|
112
|
+
conditional: {
|
|
113
|
+
health: Observe.fromConstant(true),
|
|
114
|
+
// @ts-expect-error - conditional values must be Observe<boolean>
|
|
115
|
+
heal: Observe.fromConstant(1),
|
|
116
|
+
},
|
|
117
|
+
});
|
|
118
|
+
//# sourceMappingURL=create.interface-first-spike.type-test.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"create.interface-first-spike.type-test.js","sourceRoot":"","sources":["../../../src/service/dynamic-service/create.interface-first-spike.type-test.ts"],"names":[],"mappings":"AAAA,uDAAuD;AAEvD,OAAO,EAAE,OAAO,EAAE,MAAM,wBAAwB,CAAC;AAiEjD,MAAM,KAAK,GAAG;IACV,MAAM,EAAE;QACJ,IAAI,EAAE,QAAQ;QACd,WAAW,EAAE,uBAAuB;KACvC;IACD,KAAK,EAAE;QACH,IAAI,EAAE,QAAQ;QACd,WAAW,EAAE,sBAAsB;QACnC,UAAU,EAAE;YACR,EAAE,EAAE,EAAE,IAAI,EAAE,QAAQ,EAAE;YACtB,KAAK,EAAE,EAAE,IAAI,EAAE,QAAQ,EAAE;SAC5B;QACD,QAAQ,EAAE,CAAC,IAAI,CAAC;QAChB,oBAAoB,EAAE,KAAK;KAC9B;IACD,IAAI,EAAE;QACF,WAAW,EAAE,2BAA2B;QACxC,KAAK,EAAE,EAAE,IAAI,EAAE,QAAQ,EAAE;KAC5B;IACD,SAAS,EAAE;QACP,WAAW,EAAE,iBAAiB;QAC9B,KAAK,EAAE;YACH,IAAI,EAAE,QAAQ;YACd,UAAU,EAAE;gBACR,EAAE,EAAE,EAAE,IAAI,EAAE,QAAQ,EAAE;gBACtB,KAAK,EAAE,EAAE,IAAI,EAAE,QAAQ,EAAE;aAC5B;YACD,QAAQ,EAAE,CAAC,IAAI,CAAC;YAChB,oBAAoB,EAAE,KAAK;SAC9B;KACJ;IACD,KAAK,EAAE;QACH,WAAW,EAAE,cAAc;KAC9B;CACK,CAAC;AAEX,MAAM,CAAC;IACH,WAAW,EAAE,8CAA8C;IAC3D,WAAW,EAAE,KAAK;IAClB,cAAc,EAAE;QACZ,MAAM,EAAE,OAAO,CAAC,YAAY,CAAC,EAAE,CAAC;QAChC,KAAK,EAAE,OAAO,CAAC,YAAY,CAAC,EAAE,EAAE,EAAE,GAAG,EAAE,KAAK,EAAE,IAAI,EAAE,CAAC;QACrD,IAAI,EAAE,CAAC,KAAK,EAAE,EAAE;QAEhB,CAAC;QACD,SAAS,EAAE,CAAC,KAAK,EAAE,EAAE;QAErB,CAAC;QACD,KAAK,EAAE,GAAG,EAAE,GAAE,CAAC;KAClB;IACD,WAAW,EAAE;QACT,MAAM,EAAE,OAAO,CAAC,YAAY,CAAC,IAAI,CAAC;QAClC,IAAI,EAAE,OAAO,CAAC,YAAY,CAAC,KAAK,CAAC;KACpC;CACJ,CAAC,CAAC;AAEH,MAAM,CAAC;IACH,WAAW,EAAE,8CAA8C;IAC3D,WAAW,EAAE,KAAK;IAClB,cAAc,EAAE;QACZ,2DAA2D;QAC3D,MAAM,EAAE,OAAO,CAAC,YAAY,CAAC,OAAO,CAAC;QACrC,KAAK,EAAE,OAAO,CAAC,YAAY,CAAC,EAAE,EAAE,EAAE,GAAG,EAAE,CAAC;QACxC,IAAI,EAAE,CAAC,KAAK,EAAE,EAAE,GAAE,CAAC;QACnB,SAAS,EAAE,CAAC,KAAK,EAAE,EAAE,GAAE,CAAC;QACxB,KAAK,EAAE,GAAG,EAAE,GAAE,CAAC;KAClB;CACJ,CAAC,CAAC;AAEH,MAAM,CAAC;IACH,WAAW,EAAE,8CAA8C;IAC3D,WAAW,EAAE,KAAK;IAClB,cAAc,EAAE;QACZ,MAAM,EAAE,OAAO,CAAC,YAAY,CAAC,GAAG,CAAC;QACjC,KAAK,EAAE,OAAO,CAAC,YAAY,CAAC,EAAE,EAAE,EAAE,GAAG,EAAE,CAAC;QACxC,uDAAuD;QACvD,IAAI,EAAE,CAAC,KAAa,EAAE,EAAE,GAAE,CAAC;QAC3B,SAAS,EAAE,CAAC,KAAK,EAAE,EAAE,GAAE,CAAC;QACxB,KAAK,EAAE,GAAG,EAAE,GAAE,CAAC;KAClB;CACJ,CAAC,CAAC;AAEH,MAAM,CAAC;IACH,WAAW,EAAE,8CAA8C;IAC3D,WAAW,EAAE,KAAK;IAClB,cAAc,EAAE;QACZ,MAAM,EAAE,OAAO,CAAC,YAAY,CAAC,GAAG,CAAC;QACjC,KAAK,EAAE,OAAO,CAAC,YAAY,CAAC,EAAE,EAAE,EAAE,GAAG,EAAE,CAAC;QACxC,IAAI,EAAE,CAAC,KAAK,EAAE,EAAE,GAAE,CAAC;QACnB,SAAS,EAAE,CAAC,KAAK,EAAE,EAAE,GAAE,CAAC;QACxB,sDAAsD;QACtD,KAAK,EAAE,CAAC,KAAa,EAAE,EAAE,GAAE,CAAC;KAC/B;CACJ,CAAC,CAAC;AAEH,MAAM,CAAC;IACH,WAAW,EAAE,8CAA8C;IAC3D,WAAW,EAAE,KAAK;IAClB,sEAAsE;IACtE,cAAc,EAAE;QACZ,MAAM,EAAE,OAAO,CAAC,YAAY,CAAC,GAAG,CAAC;QACjC,KAAK,EAAE,OAAO,CAAC,YAAY,CAAC,EAAE,EAAE,EAAE,GAAG,EAAE,CAAC;QACxC,IAAI,EAAE,CAAC,KAAK,EAAE,EAAE,GAAE,CAAC;QACnB,SAAS,EAAE,CAAC,KAAK,EAAE,EAAE,GAAE,CAAC;KAC3B;CACJ,CAAC,CAAC;AAEH,MAAM,CAAC;IACH,WAAW,EAAE,8CAA8C;IAC3D,WAAW,EAAE,KAAK;IAClB,cAAc,EAAE;QACZ,MAAM,EAAE,OAAO,CAAC,YAAY,CAAC,GAAG,CAAC;QACjC,KAAK,EAAE,OAAO,CAAC,YAAY,CAAC,EAAE,EAAE,EAAE,GAAG,EAAE,CAAC;QACxC,IAAI,EAAE,CAAC,KAAK,EAAE,EAAE,GAAE,CAAC;QACnB,SAAS,EAAE,CAAC,KAAK,EAAE,EAAE,GAAE,CAAC;QACxB,KAAK,EAAE,GAAG,EAAE,GAAE,CAAC;KAClB;IACD,WAAW,EAAE;QACT,MAAM,EAAE,OAAO,CAAC,YAAY,CAAC,IAAI,CAAC;QAClC,iEAAiE;QACjE,IAAI,EAAE,OAAO,CAAC,YAAY,CAAC,CAAC,CAAC;KAChC;CACJ,CAAC,CAAC"}
|
package/dist/service/index.d.ts
CHANGED
|
@@ -3,4 +3,4 @@ export { isService } from './is-service.js';
|
|
|
3
3
|
export { type WithObservableActions, type ServiceActionMessages, type ServiceActionMessagesWithPrefix, addObservableActions } from './add-observable-actions.js';
|
|
4
4
|
export { type ErrorResult, type IntermediateResult, type SuccessResult, type FinalResult, type ProgressiveResult, isErrorResult, isIntermediateResult, isSuccessResult, ErrorResultSchema, IntermediateResultSchema, SuccessResultSchema, ProgressiveResultSchema } from './progressive-result.js';
|
|
5
5
|
export * from './async-data-service/index.js';
|
|
6
|
-
export * from './
|
|
6
|
+
export * from './agentic-service/index.js';
|
package/dist/service/index.js
CHANGED
|
@@ -3,5 +3,5 @@ export { isService } from './is-service.js';
|
|
|
3
3
|
export { addObservableActions } from './add-observable-actions.js';
|
|
4
4
|
export { isErrorResult, isIntermediateResult, isSuccessResult, ErrorResultSchema, IntermediateResultSchema, SuccessResultSchema, ProgressiveResultSchema } from './progressive-result.js';
|
|
5
5
|
export * from './async-data-service/index.js';
|
|
6
|
-
export * from './
|
|
6
|
+
export * from './agentic-service/index.js';
|
|
7
7
|
//# sourceMappingURL=index.js.map
|