@adobe/data 0.9.22 → 0.9.24

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.
Files changed (50) hide show
  1. package/dist/ecs/database/database.d.ts +1 -1
  2. package/dist/ecs/persistence-service/persistence-service.d.ts +1 -1
  3. package/dist/ecs/undo-redo-service/undo-redo-service.d.ts +1 -1
  4. package/dist/internal/data-view-32/data-view-32.d.ts +1 -5
  5. package/dist/internal/data-view-32/data-view-32.js +1 -0
  6. package/dist/internal/data-view-32/data-view-32.js.map +1 -1
  7. package/dist/service/agentic-service/action-error.d.ts +1 -0
  8. package/dist/service/agentic-service/action-error.js +3 -0
  9. package/dist/service/agentic-service/action-error.js.map +1 -0
  10. package/dist/service/agentic-service/action.d.ts +7 -0
  11. package/dist/service/agentic-service/action.js +3 -0
  12. package/dist/service/agentic-service/action.js.map +1 -0
  13. package/dist/service/agentic-service/agentic-service.d.ts +21 -0
  14. package/dist/service/agentic-service/agentic-service.js +3 -0
  15. package/dist/service/agentic-service/agentic-service.js.map +1 -0
  16. package/dist/service/agentic-service/create-from-config.d.ts +45 -0
  17. package/dist/service/agentic-service/create-from-config.js +85 -0
  18. package/dist/service/agentic-service/create-from-config.js.map +1 -0
  19. package/dist/service/agentic-service/create.d.ts +45 -0
  20. package/dist/service/agentic-service/create.interface-first-spike.type-test.d.ts +1 -0
  21. package/dist/service/agentic-service/create.interface-first-spike.type-test.js +119 -0
  22. package/dist/service/agentic-service/create.interface-first-spike.type-test.js.map +1 -0
  23. package/dist/service/agentic-service/create.js +85 -0
  24. package/dist/service/agentic-service/create.js.map +1 -0
  25. package/dist/service/agentic-service/create.test.d.ts +1 -0
  26. package/dist/service/agentic-service/create.test.js +542 -0
  27. package/dist/service/agentic-service/create.test.js.map +1 -0
  28. package/dist/service/agentic-service/create.type-test.d.ts +1 -0
  29. package/dist/service/agentic-service/create.type-test.js +121 -0
  30. package/dist/service/agentic-service/create.type-test.js.map +1 -0
  31. package/dist/service/agentic-service/index.d.ts +1 -0
  32. package/dist/service/agentic-service/index.js +3 -0
  33. package/dist/service/agentic-service/index.js.map +1 -0
  34. package/dist/service/agentic-service/public.d.ts +5 -0
  35. package/dist/service/agentic-service/public.js +3 -0
  36. package/dist/service/agentic-service/public.js.map +1 -0
  37. package/dist/service/agentic-service/state.d.ts +5 -0
  38. package/dist/service/agentic-service/state.js +3 -0
  39. package/dist/service/agentic-service/state.js.map +1 -0
  40. package/dist/service/dynamic-service/create.interface-first-spike.type-test.d.ts +1 -0
  41. package/dist/service/dynamic-service/create.interface-first-spike.type-test.js +118 -0
  42. package/dist/service/dynamic-service/create.interface-first-spike.type-test.js.map +1 -0
  43. package/dist/service/index.d.ts +1 -1
  44. package/dist/service/index.js +1 -1
  45. package/dist/tsconfig.tsbuildinfo +1 -1
  46. package/dist/typed-buffer/data-view-32.d.ts +5 -0
  47. package/dist/typed-buffer/data-view-32.js +3 -0
  48. package/dist/typed-buffer/data-view-32.js.map +1 -0
  49. package/dist/typed-buffer/index.d.ts +1 -1
  50. 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 create 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
+ interface: 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
+ interface: 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
+ interface: 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
+ interface: 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
+ interface: 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
+ interface: 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,3 @@
1
+ // © 2026 Adobe. MIT License. See /LICENSE for details.
2
+ export * as AgenticService from "./public.js";
3
+ //# sourceMappingURL=index.js.map
@@ -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,5 @@
1
+ export { type ActionError, type ActionError as Error } from "./action-error.js";
2
+ export { type Action } from "./action.js";
3
+ export { type AgenticService } from "./agentic-service.js";
4
+ export { type State } from "./state.js";
5
+ export { create } from "./create.js";
@@ -0,0 +1,3 @@
1
+ // © 2026 Adobe. MIT License. See /LICENSE for details.
2
+ export { create } from "./create.js";
3
+ //# sourceMappingURL=public.js.map
@@ -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,5 @@
1
+ import { Schema } from "../../schema/index.js";
2
+ export type State<S extends Schema = Schema> = {
3
+ schema: S;
4
+ value: Schema.ToType<S>;
5
+ };
@@ -0,0 +1,3 @@
1
+ // © 2026 Adobe. MIT License. See /LICENSE for details.
2
+ export {};
3
+ //# sourceMappingURL=state.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"state.js","sourceRoot":"","sources":["../../../src/service/agentic-service/state.ts"],"names":[],"mappings":"AAAA,uDAAuD"}
@@ -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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"}
@@ -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 './dynamic-service/index.js';
6
+ export * from './agentic-service/index.js';
@@ -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 './dynamic-service/index.js';
6
+ export * from './agentic-service/index.js';
7
7
  //# sourceMappingURL=index.js.map