@adobe/data 0.9.26 → 0.9.28
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/create-plugin.test.js +22 -0
- package/dist/ecs/database/create-plugin.test.js.map +1 -1
- package/dist/ecs/database/create-plugin.type-test.js +78 -0
- package/dist/ecs/database/create-plugin.type-test.js.map +1 -1
- package/dist/ecs/database/database.d.ts +7 -2
- package/dist/ecs/database/database.js.map +1 -1
- package/dist/ecs/database/observe-select-deep.d.ts +23 -0
- package/dist/ecs/database/observe-select-deep.js +15 -0
- package/dist/ecs/database/observe-select-deep.js.map +1 -0
- package/dist/ecs/database/observe-select-deep.type-test.js +111 -0
- package/dist/ecs/database/observe-select-deep.type-test.js.map +1 -0
- package/dist/functions/serialization/codec.d.ts +2 -2
- package/dist/functions/serialization/register-typed-array-codecs.js.map +1 -1
- package/dist/functions/serialization/serialize-to-blobs.js.map +1 -1
- package/dist/functions/serialization/serialize-to-json.js.map +1 -1
- package/dist/functions/serialization/serialize.d.ts +2 -2
- package/dist/functions/serialization/serialize.js.map +1 -1
- package/dist/service/agentic-service/create.d.ts +1 -1
- package/dist/service/agentic-service/public.d.ts +0 -1
- package/dist/service/agentic-service/public.js.map +1 -1
- package/dist/service/dynamic-service/semantic-service.d.ts +19 -0
- package/dist/service/dynamic-service/semantic-service.js +2 -0
- package/dist/service/dynamic-service/semantic-service.js.map +1 -0
- package/dist/service/semantic-service/semantic-service.d.ts +19 -0
- package/dist/service/semantic-service/semantic-service.js +2 -0
- package/dist/service/semantic-service/semantic-service.js.map +1 -0
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/dist/typed-buffer/register-typed-buffer-codecs.js.map +1 -1
- package/package.json +1 -1
- package/dist/LICENSE +0 -21
- package/dist/README.md +0 -296
- package/dist/package.json +0 -183
- package/dist/service/agentic-service/create-from-config.d.ts +0 -45
- package/dist/service/agentic-service/create-from-config.js +0 -85
- package/dist/service/agentic-service/create-from-config.js.map +0 -1
- package/dist/service/agentic-service/create.interface-first-spike.type-test.js +0 -119
- package/dist/service/agentic-service/create.interface-first-spike.type-test.js.map +0 -1
- package/dist/service/agentic-service/index.d.ts +0 -1
- package/dist/service/agentic-service/index.js +0 -3
- package/dist/service/agentic-service/index.js.map +0 -1
- package/dist/service/dynamic-service/create.interface-first-spike.type-test.d.ts +0 -1
- package/dist/service/dynamic-service/create.interface-first-spike.type-test.js +0 -118
- package/dist/service/dynamic-service/create.interface-first-spike.type-test.js.map +0 -1
- /package/dist/{service/agentic-service/create.interface-first-spike.type-test.d.ts → ecs/database/observe-select-deep.type-test.d.ts} +0 -0
|
@@ -1,119 +0,0 @@
|
|
|
1
|
-
// © 2026 Adobe. MIT License. See /LICENSE for details.
|
|
2
|
-
import { Observe } from "../../observe/index.js";
|
|
3
|
-
import { createFromConfig, } from "./create-from-config.js";
|
|
4
|
-
const iface = {
|
|
5
|
-
health: {
|
|
6
|
-
type: "number",
|
|
7
|
-
description: "Current health points",
|
|
8
|
-
},
|
|
9
|
-
stats: {
|
|
10
|
-
type: "object",
|
|
11
|
-
description: "Current player stats",
|
|
12
|
-
properties: {
|
|
13
|
-
hp: { type: "number" },
|
|
14
|
-
label: { type: "string" },
|
|
15
|
-
},
|
|
16
|
-
required: ["hp"],
|
|
17
|
-
additionalProperties: false,
|
|
18
|
-
},
|
|
19
|
-
heal: {
|
|
20
|
-
description: "Increase health by amount",
|
|
21
|
-
input: { type: "number" },
|
|
22
|
-
},
|
|
23
|
-
configure: {
|
|
24
|
-
description: "Configure stats",
|
|
25
|
-
input: {
|
|
26
|
-
type: "object",
|
|
27
|
-
properties: {
|
|
28
|
-
hp: { type: "number" },
|
|
29
|
-
label: { type: "string" },
|
|
30
|
-
},
|
|
31
|
-
required: ["hp"],
|
|
32
|
-
additionalProperties: false,
|
|
33
|
-
},
|
|
34
|
-
},
|
|
35
|
-
reset: {
|
|
36
|
-
description: "Reset values",
|
|
37
|
-
},
|
|
38
|
-
};
|
|
39
|
-
createFromConfig({
|
|
40
|
-
description: "Player health and actions for agentic access",
|
|
41
|
-
declaration: iface,
|
|
42
|
-
implementation: {
|
|
43
|
-
health: Observe.fromConstant(42),
|
|
44
|
-
stats: Observe.fromConstant({ hp: 100, label: "ok" }),
|
|
45
|
-
heal: (input) => {
|
|
46
|
-
},
|
|
47
|
-
configure: (input) => {
|
|
48
|
-
},
|
|
49
|
-
reset: () => { },
|
|
50
|
-
},
|
|
51
|
-
conditional: {
|
|
52
|
-
health: Observe.fromConstant(true),
|
|
53
|
-
heal: Observe.fromConstant(false),
|
|
54
|
-
},
|
|
55
|
-
});
|
|
56
|
-
createFromConfig({
|
|
57
|
-
description: "Player health and actions for agentic access",
|
|
58
|
-
declaration: iface,
|
|
59
|
-
implementation: {
|
|
60
|
-
// @ts-expect-error - health state requires Observe<number>
|
|
61
|
-
health: Observe.fromConstant("wrong"),
|
|
62
|
-
stats: Observe.fromConstant({ hp: 100 }),
|
|
63
|
-
heal: (input) => { },
|
|
64
|
-
configure: (input) => { },
|
|
65
|
-
reset: () => { },
|
|
66
|
-
},
|
|
67
|
-
});
|
|
68
|
-
createFromConfig({
|
|
69
|
-
description: "Player health and actions for agentic access",
|
|
70
|
-
declaration: iface,
|
|
71
|
-
implementation: {
|
|
72
|
-
health: Observe.fromConstant(100),
|
|
73
|
-
stats: Observe.fromConstant({ hp: 100 }),
|
|
74
|
-
// @ts-expect-error - heal input schema requires number
|
|
75
|
-
heal: (input) => { },
|
|
76
|
-
configure: (input) => { },
|
|
77
|
-
reset: () => { },
|
|
78
|
-
},
|
|
79
|
-
});
|
|
80
|
-
createFromConfig({
|
|
81
|
-
description: "Player health and actions for agentic access",
|
|
82
|
-
declaration: iface,
|
|
83
|
-
implementation: {
|
|
84
|
-
health: Observe.fromConstant(100),
|
|
85
|
-
stats: Observe.fromConstant({ hp: 100 }),
|
|
86
|
-
heal: (input) => { },
|
|
87
|
-
configure: (input) => { },
|
|
88
|
-
// @ts-expect-error - reset action has no input schema
|
|
89
|
-
reset: (input) => { },
|
|
90
|
-
},
|
|
91
|
-
});
|
|
92
|
-
createFromConfig({
|
|
93
|
-
description: "Player health and actions for agentic access",
|
|
94
|
-
declaration: iface,
|
|
95
|
-
// @ts-expect-error - implementation must include every definition key
|
|
96
|
-
implementation: {
|
|
97
|
-
health: Observe.fromConstant(100),
|
|
98
|
-
stats: Observe.fromConstant({ hp: 100 }),
|
|
99
|
-
heal: (input) => { },
|
|
100
|
-
configure: (input) => { },
|
|
101
|
-
},
|
|
102
|
-
});
|
|
103
|
-
createFromConfig({
|
|
104
|
-
description: "Player health and actions for agentic access",
|
|
105
|
-
declaration: iface,
|
|
106
|
-
implementation: {
|
|
107
|
-
health: Observe.fromConstant(100),
|
|
108
|
-
stats: Observe.fromConstant({ hp: 100 }),
|
|
109
|
-
heal: (input) => { },
|
|
110
|
-
configure: (input) => { },
|
|
111
|
-
reset: () => { },
|
|
112
|
-
},
|
|
113
|
-
conditional: {
|
|
114
|
-
health: Observe.fromConstant(true),
|
|
115
|
-
// @ts-expect-error - conditional values must be Observe<boolean>
|
|
116
|
-
heal: Observe.fromConstant(1),
|
|
117
|
-
},
|
|
118
|
-
});
|
|
119
|
-
//# sourceMappingURL=create.interface-first-spike.type-test.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"create.interface-first-spike.type-test.js","sourceRoot":"","sources":["../../../src/service/agentic-service/create.interface-first-spike.type-test.ts"],"names":[],"mappings":"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"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * as AgenticService from "./public.js";
|
|
@@ -1 +0,0 @@
|
|
|
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"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|
|
@@ -1,118 +0,0 @@
|
|
|
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
|
|
@@ -1 +0,0 @@
|
|
|
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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"}
|