@wp-playground/client 3.0.22 → 3.0.30
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/blueprints-Gs5fAvvo.cjs +1 -0
- package/blueprints-pMn3V9MZ.js +4 -0
- package/index.cjs +424 -175
- package/index.d.ts +5 -0
- package/index.js +8252 -7422
- package/package.json +2 -2
- package/blueprints-DY7omvFh.cjs +0 -1
- package/blueprints-Dg6flSLH.js +0 -4
package/index.d.ts
CHANGED
|
@@ -53,6 +53,11 @@ export interface StartPlaygroundOptions {
|
|
|
53
53
|
* your Blueprint to replace all cross-origin URLs with the proxy URL.
|
|
54
54
|
*/
|
|
55
55
|
corsProxy?: string;
|
|
56
|
+
/**
|
|
57
|
+
* Additional headers to pass to git operations.
|
|
58
|
+
* A function that returns headers based on the URL being accessed.
|
|
59
|
+
*/
|
|
60
|
+
gitAdditionalHeadersCallback?: (url: string) => Record<string, string>;
|
|
56
61
|
/**
|
|
57
62
|
* The version of the SQLite driver to use.
|
|
58
63
|
* Defaults to the latest development version.
|