@adobe/data 0.9.42 → 0.9.43

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@adobe/data",
3
- "version": "0.9.42",
3
+ "version": "0.9.43",
4
4
  "description": "Adobe data oriented programming library",
5
5
  "type": "module",
6
6
  "sideEffects": false,
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@adobe/data-lit",
3
- "version": "0.9.42",
3
+ "version": "0.9.43",
4
4
  "description": "Adobe data Lit bindings - hooks, elements, decorators",
5
5
  "type": "module",
6
6
  "private": false,
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "data-lit-tictactoe",
3
- "version": "0.9.42",
3
+ "version": "0.9.43",
4
4
  "description": "Tic-Tac-Toe sample - Lit web components with @adobe/data-lit and AgenticService",
5
5
  "type": "module",
6
6
  "private": true,
@@ -109,9 +109,9 @@ const createTictactoeRootAgentService = (
109
109
 
110
110
  export const agentPlugin = Database.Plugin.create({
111
111
  extends: tictactoePlugin,
112
- services: (db: TictactoeDatabase) => ({
113
- agent: createTictactoeRootAgentService(db),
114
- agentX: createTictactoeAgentService(db, "X"),
115
- agentO: createTictactoeAgentService(db, "O"),
116
- }),
112
+ services: {
113
+ agent: (db): AgenticService => createTictactoeRootAgentService(db),
114
+ agentX: (db): AgenticService => createTictactoeAgentService(db, "X"),
115
+ agentO: (db): AgenticService => createTictactoeAgentService(db, "O"),
116
+ },
117
117
  });
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@adobe/data-react",
3
- "version": "0.9.42",
3
+ "version": "0.9.43",
4
4
  "description": "Adobe data React bindings — hooks and context for ECS database",
5
5
  "type": "module",
6
6
  "private": false,
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "data-react-hello",
3
- "version": "0.9.42",
3
+ "version": "0.9.43",
4
4
  "description": "Hello World sample - click counter using @adobe/data-react",
5
5
  "type": "module",
6
6
  "private": true,
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "data-react-pixie",
3
- "version": "0.9.42",
3
+ "version": "0.9.43",
4
4
  "description": "PixiJS React sample - ECS sprites (bunny, fox) with @adobe/data-react",
5
5
  "type": "module",
6
6
  "private": true,