@goodboyjs/schema 1.0.0 → 1.0.1
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/generated/ts/index.d.ts
CHANGED
|
@@ -23,9 +23,9 @@ export interface GoodBoySkillManifest {
|
|
|
23
23
|
*/
|
|
24
24
|
license: string;
|
|
25
25
|
/**
|
|
26
|
-
* GoodBoy manifest schema version
|
|
26
|
+
* GoodBoy manifest schema version, semver-shaped (v1.x only). CLIs tolerate a newer minor than they know, stripping unknown top-level fields with a warning; a newer major is rejected. See manifest.ts.
|
|
27
27
|
*/
|
|
28
|
-
schema_version:
|
|
28
|
+
schema_version: string;
|
|
29
29
|
/**
|
|
30
30
|
* Maturity signal for registry display and filtering
|
|
31
31
|
*/
|
package/package.json
CHANGED
package/src/manifest.schema.json
CHANGED
|
@@ -42,8 +42,9 @@
|
|
|
42
42
|
},
|
|
43
43
|
"schema_version": {
|
|
44
44
|
"type": "string",
|
|
45
|
-
"
|
|
46
|
-
"
|
|
45
|
+
"pattern": "^1\\.\\d+\\.\\d+$",
|
|
46
|
+
"maxLength": 32,
|
|
47
|
+
"description": "GoodBoy manifest schema version, semver-shaped (v1.x only). CLIs tolerate a newer minor than they know, stripping unknown top-level fields with a warning; a newer major is rejected. See manifest.ts."
|
|
47
48
|
},
|
|
48
49
|
"status": {
|
|
49
50
|
"type": "string",
|
|
@@ -42,8 +42,9 @@
|
|
|
42
42
|
},
|
|
43
43
|
"schema_version": {
|
|
44
44
|
"type": "string",
|
|
45
|
-
"
|
|
46
|
-
"
|
|
45
|
+
"pattern": "^1\\.\\d+\\.\\d+$",
|
|
46
|
+
"maxLength": 32,
|
|
47
|
+
"description": "GoodBoy manifest schema version, semver-shaped (v1.x only). CLIs tolerate a newer minor than they know, stripping unknown top-level fields with a warning; a newer major is rejected. See manifest.ts."
|
|
47
48
|
},
|
|
48
49
|
"status": {
|
|
49
50
|
"type": "string",
|