@jskit-ai/agent-docs 0.1.177 → 0.1.179
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/guide/agent/app-setup/upgrading-jskit.md +15 -0
- package/guide/agent/framework/application-operations.md +13 -14
- package/package.json +1 -1
- package/patterns/feature-package/example/booking-engine/package.json +1 -1
- package/patterns/minimal-foundation/PATTERN.md +10 -0
- package/patterns/minimal-foundation/example/index.html +15 -1
- package/patterns/minimal-foundation/example/package.json +9 -8
- package/patterns/minimal-foundation/example/src/main.js +4 -0
- package/patterns/minimal-foundation/example/tests/e2e/startup.spec.ts +35 -0
- package/patterns/shell-foundation/PATTERN.md +10 -0
- package/patterns/shell-foundation/example/index.html +15 -1
- package/patterns/shell-foundation/example/package.json +10 -9
- package/patterns/shell-foundation/example/packages/main/package.json +1 -1
- package/patterns/shell-foundation/example/src/main.js +4 -0
- package/patterns/shell-foundation/example/tests/e2e/startup.spec.ts +35 -0
- package/reference/autogen/PATTERN_INDEX.md +35 -35
- package/skills/jskit/references/app-operations.md +13 -14
- package/skills/jskit/references/pattern-index.md +35 -35
- package/skills/jskit/references/patterns/app/minimal-foundation/PATTERN.md +10 -0
- package/skills/jskit/references/patterns/app/minimal-foundation/example/index.html +15 -1
- package/skills/jskit/references/patterns/app/minimal-foundation/example/package.json +9 -8
- package/skills/jskit/references/patterns/app/minimal-foundation/example/src/main.js +4 -0
- package/skills/jskit/references/patterns/app/minimal-foundation/example/tests/e2e/startup.spec.ts +35 -0
- package/skills/jskit/references/patterns/app/shell-foundation/PATTERN.md +10 -0
- package/skills/jskit/references/patterns/app/shell-foundation/example/index.html +15 -1
- package/skills/jskit/references/patterns/app/shell-foundation/example/package.json +10 -9
- package/skills/jskit/references/patterns/app/shell-foundation/example/packages/main/package.json +1 -1
- package/skills/jskit/references/patterns/app/shell-foundation/example/src/main.js +4 -0
- package/skills/jskit/references/patterns/app/shell-foundation/example/tests/e2e/startup.spec.ts +35 -0
- package/skills/jskit/references/patterns/auth/supabase-auth/example/package.json +1 -1
- package/skills/jskit/references/patterns/connectors/calendar-cli/example/package.json +4 -4
- package/skills/jskit/references/patterns/crud/json-api-resource-package/example/packages/books/package.json +2 -2
- package/skills/jskit/references/patterns/database/mysql-application/example/package.json +1 -1
- package/skills/jskit/references/patterns/database/postgres-application/example/package.json +1 -1
- package/skills/jskit/references/patterns/realtime/realtime-application/example/package.json +2 -2
- package/skills/jskit/references/patterns/server/feature-package/example/booking-engine/package.json +1 -1
- package/skills/jskit/references/patterns/users/user-administration-server/example/packages/users/package.json +2 -2
- package/skills/jskit/references/patterns/users/user-administration-server/example/packages/users-workspace/package.json +3 -3
|
@@ -9,8 +9,8 @@
|
|
|
9
9
|
"./shared": "./src/shared/index.js"
|
|
10
10
|
},
|
|
11
11
|
"dependencies": {
|
|
12
|
-
"@jskit-ai/crud-core": "0.1.
|
|
13
|
-
"@jskit-ai/resource-crud-core": "0.1.
|
|
12
|
+
"@jskit-ai/crud-core": "0.1.218",
|
|
13
|
+
"@jskit-ai/resource-crud-core": "0.1.149"
|
|
14
14
|
},
|
|
15
15
|
"jskit": {
|
|
16
16
|
"kind": "runtime",
|
|
@@ -9,9 +9,9 @@
|
|
|
9
9
|
"./shared": "./src/shared/index.js"
|
|
10
10
|
},
|
|
11
11
|
"dependencies": {
|
|
12
|
-
"@jskit-ai/crud-core": "0.1.
|
|
13
|
-
"@jskit-ai/resource-crud-core": "0.1.
|
|
14
|
-
"@jskit-ai/workspaces-core": "0.1.
|
|
12
|
+
"@jskit-ai/crud-core": "0.1.218",
|
|
13
|
+
"@jskit-ai/resource-crud-core": "0.1.149",
|
|
14
|
+
"@jskit-ai/workspaces-core": "0.1.185"
|
|
15
15
|
},
|
|
16
16
|
"jskit": {
|
|
17
17
|
"kind": "runtime",
|