@forgeailab/spark-schema 0.2.0 → 0.3.0
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 +6 -1
- package/src/capabilities.ts +2 -2
package/package.json
CHANGED
|
@@ -1,7 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@forgeailab/spark-schema",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.3.0",
|
|
4
4
|
"description": "Shared Zod schemas + TOML parsers for spark pack and template manifests.",
|
|
5
|
+
"repository": {
|
|
6
|
+
"type": "git",
|
|
7
|
+
"url": "git+https://github.com/ForgeAILab/spark.git",
|
|
8
|
+
"directory": "packages/spark-schema"
|
|
9
|
+
},
|
|
5
10
|
"type": "module",
|
|
6
11
|
"publishConfig": {
|
|
7
12
|
"access": "public"
|
package/src/capabilities.ts
CHANGED
|
@@ -13,7 +13,7 @@ export const PACK_CAPABILITY_VALUES = [
|
|
|
13
13
|
'ai-sdk',
|
|
14
14
|
'blob-storage',
|
|
15
15
|
'analytics',
|
|
16
|
-
'
|
|
16
|
+
'data-api',
|
|
17
17
|
] as const;
|
|
18
18
|
|
|
19
19
|
export const TEMPLATE_CAPABILITY_VALUES = ['static', 'server', 'react', 'native', 'vue', 'svelte', 'mdx-content', 'edge-runtime'] as const;
|
|
@@ -38,7 +38,7 @@ export const EXCLUSIVE_CAPABILITIES: ReadonlySet<PackCapability> = new Set<PackC
|
|
|
38
38
|
'auth',
|
|
39
39
|
'payments',
|
|
40
40
|
'ui-kit',
|
|
41
|
-
'
|
|
41
|
+
'data-api',
|
|
42
42
|
]);
|
|
43
43
|
|
|
44
44
|
export const NON_EXCLUSIVE_CAPABILITIES: ReadonlySet<PackCapability> = new Set<PackCapability>([
|