@adobe/data 0.9.34 → 0.9.35
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/LICENSE +21 -0
- package/dist/README.md +296 -0
- package/dist/package.json +183 -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 +8 -8
- 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 +3 -5
- package/dist/service/agentic-service/create.js.map +1 -1
- package/dist/service/agentic-service/create.test.js +131 -31
- package/dist/service/agentic-service/create.test.js.map +1 -1
- package/dist/service/agentic-service/create.type-test.js +21 -18
- package/dist/service/agentic-service/create.type-test.js.map +1 -1
- 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/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/tsconfig.tsbuildinfo +1 -1
- package/package.json +1 -1
- package/dist/ecs/database/observe-select-deep.d.ts +0 -23
- package/dist/ecs/database/observe-select-deep.js +0 -15
- package/dist/ecs/database/observe-select-deep.js.map +0 -1
- package/dist/ecs/database/observe-select-deep.type-test.js +0 -111
- package/dist/ecs/database/observe-select-deep.type-test.js.map +0 -1
- package/dist/service/agentic-service/link.d.ts +0 -15
- package/dist/service/agentic-service/link.js +0 -3
- package/dist/service/agentic-service/link.js.map +0 -1
- package/dist/service/dynamic-service/semantic-service.d.ts +0 -19
- package/dist/service/dynamic-service/semantic-service.js +0 -2
- package/dist/service/dynamic-service/semantic-service.js.map +0 -1
- package/dist/service/semantic-service/semantic-service.d.ts +0 -19
- package/dist/service/semantic-service/semantic-service.js +0 -2
- package/dist/service/semantic-service/semantic-service.js.map +0 -1
- /package/dist/{ecs/database/observe-select-deep.type-test.d.ts → service/agentic-service/create.interface-first-spike.type-test.d.ts} +0 -0
|
@@ -25,24 +25,27 @@ const iface = {
|
|
|
25
25
|
heal: {
|
|
26
26
|
type: "action",
|
|
27
27
|
description: "Increase health by amount",
|
|
28
|
-
|
|
28
|
+
parameters: [{ type: "number" }],
|
|
29
29
|
},
|
|
30
30
|
configure: {
|
|
31
31
|
type: "action",
|
|
32
32
|
description: "Configure stats",
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
33
|
+
parameters: [
|
|
34
|
+
{
|
|
35
|
+
type: "object",
|
|
36
|
+
properties: {
|
|
37
|
+
hp: { type: "number" },
|
|
38
|
+
label: { type: "string" },
|
|
39
|
+
},
|
|
40
|
+
required: ["hp"],
|
|
41
|
+
additionalProperties: false,
|
|
38
42
|
},
|
|
39
|
-
|
|
40
|
-
additionalProperties: false,
|
|
41
|
-
},
|
|
43
|
+
],
|
|
42
44
|
},
|
|
43
45
|
reset: {
|
|
44
46
|
type: "action",
|
|
45
47
|
description: "Reset values",
|
|
48
|
+
parameters: [],
|
|
46
49
|
},
|
|
47
50
|
};
|
|
48
51
|
create({
|
|
@@ -67,8 +70,8 @@ create({
|
|
|
67
70
|
// @ts-expect-error - health state requires Observe<number>
|
|
68
71
|
health: Observe.fromConstant("wrong"),
|
|
69
72
|
stats: Observe.fromConstant({ hp: 100 }),
|
|
70
|
-
heal: (
|
|
71
|
-
configure: (
|
|
73
|
+
heal: () => { },
|
|
74
|
+
configure: () => { },
|
|
72
75
|
reset: () => { },
|
|
73
76
|
},
|
|
74
77
|
});
|
|
@@ -79,7 +82,7 @@ create({
|
|
|
79
82
|
stats: Observe.fromConstant({ hp: 100 }),
|
|
80
83
|
// @ts-expect-error - heal input schema requires number
|
|
81
84
|
heal: (input) => { },
|
|
82
|
-
configure: (
|
|
85
|
+
configure: () => { },
|
|
83
86
|
reset: () => { },
|
|
84
87
|
},
|
|
85
88
|
});
|
|
@@ -88,8 +91,8 @@ create({
|
|
|
88
91
|
implementation: {
|
|
89
92
|
health: Observe.fromConstant(100),
|
|
90
93
|
stats: Observe.fromConstant({ hp: 100 }),
|
|
91
|
-
heal: (
|
|
92
|
-
configure: (
|
|
94
|
+
heal: () => { },
|
|
95
|
+
configure: () => { },
|
|
93
96
|
reset: () => { },
|
|
94
97
|
},
|
|
95
98
|
});
|
|
@@ -99,8 +102,8 @@ create({
|
|
|
99
102
|
implementation: {
|
|
100
103
|
health: Observe.fromConstant(100),
|
|
101
104
|
stats: Observe.fromConstant({ hp: 100 }),
|
|
102
|
-
heal: (
|
|
103
|
-
configure: (
|
|
105
|
+
heal: () => { },
|
|
106
|
+
configure: () => { },
|
|
104
107
|
},
|
|
105
108
|
});
|
|
106
109
|
create({
|
|
@@ -108,8 +111,8 @@ create({
|
|
|
108
111
|
implementation: {
|
|
109
112
|
health: Observe.fromConstant(100),
|
|
110
113
|
stats: Observe.fromConstant({ hp: 100 }),
|
|
111
|
-
heal: (
|
|
112
|
-
configure: (
|
|
114
|
+
heal: () => { },
|
|
115
|
+
configure: () => { },
|
|
113
116
|
reset: () => { },
|
|
114
117
|
},
|
|
115
118
|
conditional: {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"create.type-test.js","sourceRoot":"","sources":["../../../src/service/agentic-service/create.type-test.ts"],"names":[],"mappings":"AAAA,uDAAuD;AACvD,EAAE;AACF,2CAA2C;AAE3C,OAAO,EAAE,OAAO,EAAE,MAAM,wBAAwB,CAAC;AACjD,OAAO,EACH,MAAM,GAET,MAAM,aAAa,CAAC;
|
|
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
|
+
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":"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"}
|