wp-typia 0.23.1 → 0.24.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/README.md +1 -0
- package/bin/routing-metadata.generated.js +7 -0
- package/dist-bunli/.bunli/commands.gen.js +9465 -7615
- package/dist-bunli/{cli-epsczb1c.js → cli-0v407aag.js} +1 -1
- package/dist-bunli/{cli-y7w3pybs.js → cli-74y6z3yx.js} +978 -944
- package/dist-bunli/{cli-add-xjaaa01x.js → cli-add-nmdraf20.js} +8694 -7854
- package/dist-bunli/{cli-43mx1vfb.js → cli-bajwv85z.js} +2 -1
- package/dist-bunli/{cli-ymecd15q.js → cli-cwjdzq6n.js} +45 -6
- package/dist-bunli/{cli-doctor-19e8313m.js → cli-doctor-pcss6ecx.js} +98 -12
- package/dist-bunli/{cli-init-2b4yn2cc.js → cli-init-he7vm7kc.js} +3 -3
- package/dist-bunli/{cli-scaffold-4tjw4jk5.js → cli-scaffold-an2k0fnm.js} +6 -6
- package/dist-bunli/{cli-nvs5atj1.js → cli-sw06c521.js} +1 -1
- package/dist-bunli/{cli-k5q5v8g6.js → cli-v0nnagb3.js} +1331 -893
- package/dist-bunli/{cli-fp16mntv.js → cli-y0a8nztv.js} +9 -4
- package/dist-bunli/cli-z48frc8t.js +229 -0
- package/dist-bunli/cli.js +3 -3
- package/dist-bunli/{command-list-vme7dr5v.js → command-list-xaw5agks.js} +170 -29
- package/dist-bunli/{migrations-pb5vvtdp.js → migrations-z7f4kxba.js} +3 -3
- package/dist-bunli/node-cli.js +259 -69
- package/package.json +2 -2
- package/dist-bunli/cli-j8et6jvr.js +0 -123
package/README.md
CHANGED
|
@@ -40,6 +40,7 @@ Configuration files:
|
|
|
40
40
|
- `--config <path>` is an explicit override loaded after the default sources, relative to the current working directory unless absolute
|
|
41
41
|
- config files use a strict schema: unknown keys are errors rather than warnings or stripped values, so typos fail near the source config file
|
|
42
42
|
- object values are deep-merged, while arrays such as `mcp.schemaSources` replace earlier arrays instead of concatenating
|
|
43
|
+
- projects can declare block API compatibility intent with `wordpress.minVersion`, `wordpress.testedVersions`, `compatibility.strict`, and `compatibility.allowUnknownFutureKeys`; future Supports, Variations, and Bindings helpers use those values for version-aware diagnostics
|
|
43
44
|
|
|
44
45
|
Compatibility notes:
|
|
45
46
|
|
|
@@ -29,10 +29,12 @@ export const longValueOptions = Object.freeze([
|
|
|
29
29
|
'--format',
|
|
30
30
|
'--from',
|
|
31
31
|
'--from-migration-version',
|
|
32
|
+
'--from-post-meta',
|
|
32
33
|
'--id',
|
|
33
34
|
'--inner-blocks-preset',
|
|
34
35
|
'--iterations',
|
|
35
36
|
'--meta-key',
|
|
37
|
+
'--meta-path',
|
|
36
38
|
'--method',
|
|
37
39
|
'--methods',
|
|
38
40
|
'--migration-version',
|
|
@@ -44,23 +46,28 @@ export const longValueOptions = Object.freeze([
|
|
|
44
46
|
'--persistence-policy',
|
|
45
47
|
'--php-prefix',
|
|
46
48
|
'--position',
|
|
49
|
+
'--post-meta',
|
|
47
50
|
'--post-type',
|
|
48
51
|
'--profile',
|
|
49
52
|
'--query-post-type',
|
|
50
53
|
'--query-type',
|
|
51
54
|
'--response-type',
|
|
52
55
|
'--route-pattern',
|
|
56
|
+
'--scope',
|
|
53
57
|
'--secret-field',
|
|
54
58
|
'--secret-has-value-field',
|
|
55
59
|
'--secret-masked-response-field',
|
|
56
60
|
'--secret-preserve-on-empty',
|
|
57
61
|
'--secret-state-field',
|
|
62
|
+
'--section-role',
|
|
58
63
|
'--seed',
|
|
59
64
|
'--service',
|
|
60
65
|
'--slot',
|
|
61
66
|
'--source',
|
|
67
|
+
'--tags',
|
|
62
68
|
'--template',
|
|
63
69
|
'--text-domain',
|
|
70
|
+
'--thumbnail-url',
|
|
64
71
|
'--to',
|
|
65
72
|
'--to-migration-version',
|
|
66
73
|
'--type',
|