@q1k-oss/behaviour-tree-workflows 0.0.3 → 0.0.4

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/index.cjs CHANGED
@@ -3651,7 +3651,8 @@ var PIECE_EXPORT_NAMES = {
3651
3651
  "@activepieces/piece-discord": "discord",
3652
3652
  "@activepieces/piece-notion": "notion",
3653
3653
  "@activepieces/piece-github": "github",
3654
- "@activepieces/piece-http": "http"
3654
+ "@activepieces/piece-http": "http",
3655
+ "@activepieces/piece-shopify": "shopify"
3655
3656
  };
3656
3657
  async function loadPiece(packageName) {
3657
3658
  if (pieceCache.has(packageName)) {
package/dist/index.js CHANGED
@@ -3509,7 +3509,8 @@ var PIECE_EXPORT_NAMES = {
3509
3509
  "@activepieces/piece-discord": "discord",
3510
3510
  "@activepieces/piece-notion": "notion",
3511
3511
  "@activepieces/piece-github": "github",
3512
- "@activepieces/piece-http": "http"
3512
+ "@activepieces/piece-http": "http",
3513
+ "@activepieces/piece-shopify": "shopify"
3513
3514
  };
3514
3515
  async function loadPiece(packageName) {
3515
3516
  if (pieceCache.has(packageName)) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@q1k-oss/behaviour-tree-workflows",
3
- "version": "0.0.3",
3
+ "version": "0.0.4",
4
4
  "description": "Behavior tree library for TypeScript — 30+ production-ready nodes, YAML workflows, Temporal integration, and built-in observability",
5
5
  "type": "module",
6
6
  "main": "./dist/index.cjs",
@@ -30,7 +30,9 @@
30
30
  },
31
31
  "typesVersions": {
32
32
  "*": {
33
- "ai-sdk": ["./dist/ai-sdk/index.d.ts"]
33
+ "ai-sdk": [
34
+ "./dist/ai-sdk/index.d.ts"
35
+ ]
34
36
  }
35
37
  },
36
38
  "files": [
@@ -61,6 +63,7 @@
61
63
  },
62
64
  "dependencies": {
63
65
  "@activepieces/piece-google-sheets": "^0.14.0",
66
+ "@activepieces/piece-shopify": "^0.2.4",
64
67
  "@activepieces/pieces-framework": "^0.23.0",
65
68
  "@temporalio/activity": "^1.10.0",
66
69
  "@temporalio/workflow": "^1.10.0",
@@ -68,18 +71,28 @@
68
71
  "zod": "^4.2.1"
69
72
  },
70
73
  "peerDependencies": {
71
- "ai": ">=4.0.0",
72
74
  "@ai-sdk/anthropic": ">=1.0.0",
73
- "@ai-sdk/openai": ">=1.0.0",
74
75
  "@ai-sdk/google": ">=1.0.0",
76
+ "@ai-sdk/openai": ">=1.0.0",
77
+ "ai": ">=4.0.0",
75
78
  "ollama-ai-provider": ">=1.0.0"
76
79
  },
77
80
  "peerDependenciesMeta": {
78
- "ai": { "optional": true },
79
- "@ai-sdk/anthropic": { "optional": true },
80
- "@ai-sdk/openai": { "optional": true },
81
- "@ai-sdk/google": { "optional": true },
82
- "ollama-ai-provider": { "optional": true }
81
+ "ai": {
82
+ "optional": true
83
+ },
84
+ "@ai-sdk/anthropic": {
85
+ "optional": true
86
+ },
87
+ "@ai-sdk/openai": {
88
+ "optional": true
89
+ },
90
+ "@ai-sdk/google": {
91
+ "optional": true
92
+ },
93
+ "ollama-ai-provider": {
94
+ "optional": true
95
+ }
83
96
  },
84
97
  "devDependencies": {
85
98
  "@ai-sdk/anthropic": "^3.0.44",