@wp-playground/blueprints 2.0.22 → 3.0.2
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/blueprint-schema-validator.js +2 -2
- package/blueprint-schema.json +2 -2
- package/index.cjs +75 -66
- package/index.cjs.map +1 -1
- package/index.d.ts +6 -5
- package/index.js +1234 -1219
- package/index.js.map +1 -1
- package/lib/resolve-remote-blueprint.d.ts +1 -1
- package/lib/steps/index.d.ts +1 -1
- package/lib/steps/install-plugin.d.ts +1 -1
- package/lib/steps/install-theme.d.ts +1 -1
- package/lib/steps/wp-cli.d.ts +1 -1
- package/lib/steps/write-files.d.ts +1 -1
- package/lib/types.d.ts +10 -0
- package/lib/{compile.d.ts → v1/compile.d.ts} +11 -8
- package/lib/{resources.d.ts → v1/resources.d.ts} +1 -1
- package/lib/{blueprint.d.ts → v1/types.d.ts} +4 -9
- package/lib/v2/blueprint-v2-declaration.d.ts +9 -4
- package/lib/v2/run-blueprint-v2.d.ts +3 -2
- package/lib/v2/wep-1-blueprint-v2-schema/appendix-A-blueprint-v2-schema.d.ts +1400 -0
- package/lib/v2/wep-1-blueprint-v2-schema/appendix-B-data-sources.d.ts +179 -0
- package/package.json +13 -13
package/index.d.ts
CHANGED
|
@@ -1,10 +1,11 @@
|
|
|
1
|
-
export type {
|
|
2
|
-
export {
|
|
3
|
-
export
|
|
4
|
-
export type {
|
|
1
|
+
export type { BlueprintV1, BlueprintV1Declaration, PHPConstants, } from './lib/v1/types';
|
|
2
|
+
export type { Blueprint, BlueprintBundle, BlueprintDeclaration, } from './lib/types';
|
|
3
|
+
export { getBlueprintDeclaration, isBlueprintBundle, compileBlueprintV1, runBlueprintV1Steps, compileBlueprintV1 as compileBlueprint, runBlueprintV1Steps as runBlueprintSteps, } from './lib/v1/compile';
|
|
4
|
+
export type { CompileBlueprintV1Options, CompiledBlueprintV1, CompiledV1Step, OnStepCompleted, } from './lib/v1/compile';
|
|
5
|
+
export type { CachedResource, CorePluginReference, CorePluginResource, CoreThemeReference, CoreThemeResource, FetchResource, FileReference, LiteralReference, LiteralResource, Resource, ResourceDecorator, ResourceTypes, SemaphoreResource, UrlReference, UrlResource, VFSReference, VFSResource, } from './lib/v1/resources';
|
|
5
6
|
export * from './lib/steps';
|
|
6
7
|
export * from './lib/steps/handlers';
|
|
7
|
-
export type { BlueprintV2Declaration,
|
|
8
|
+
export type { BlueprintV2, BlueprintV2Declaration, RawBlueprintV2Data, ParsedBlueprintV1orV2String as ParsedBlueprintV2String, } from './lib/v2/blueprint-v2-declaration';
|
|
8
9
|
export { getV2Runner } from './lib/v2/get-v2-runner';
|
|
9
10
|
export { runBlueprintV2 } from './lib/v2/run-blueprint-v2';
|
|
10
11
|
export type { BlueprintMessage } from './lib/v2/run-blueprint-v2';
|