ppio-sandbox 2.1.0-a1 → 2.1.0-a2
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/dist/{chunk-DK2SM7GJ.mjs → chunk-46KYZWWN.mjs} +12 -4
- package/dist/{chunk-DK2SM7GJ.mjs.map → chunk-46KYZWWN.mjs.map} +1 -1
- package/dist/{chunk-ICJIMK3T.mjs → chunk-T5IKSUZH.mjs} +2 -2
- package/dist/{chunk-MBVL2SQD.mjs → chunk-X3M4KXDB.mjs} +2 -2
- package/dist/code-interpreter.d.mts +2 -2
- package/dist/code-interpreter.d.ts +2 -2
- package/dist/code-interpreter.js +15 -1
- package/dist/code-interpreter.js.map +1 -1
- package/dist/code-interpreter.mjs +12 -2
- package/dist/code-interpreter.mjs.map +1 -1
- package/dist/desktop.d.mts +1 -1
- package/dist/desktop.d.ts +1 -1
- package/dist/desktop.js +15 -1
- package/dist/desktop.js.map +1 -1
- package/dist/desktop.mjs +12 -2
- package/dist/{index-C38xrMAF.d.mts → index-CRwaZUdl.d.mts} +32 -1
- package/dist/{index-C38xrMAF.d.ts → index-CRwaZUdl.d.ts} +32 -1
- package/dist/index.d.mts +2 -2
- package/dist/index.d.ts +2 -2
- package/dist/index.js +15 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +11 -1
- package/dist/sandbox-JYRR7FR5.mjs +8 -0
- package/dist/sandbox-V324H2RC.mjs +8 -0
- package/package.json +1 -1
- package/dist/sandbox-6D6OVWZQ.mjs +0 -8
- package/dist/sandbox-U2N6U4D2.mjs +0 -8
- /package/dist/{chunk-ICJIMK3T.mjs.map → chunk-T5IKSUZH.mjs.map} +0 -0
- /package/dist/{chunk-MBVL2SQD.mjs.map → chunk-X3M4KXDB.mjs.map} +0 -0
- /package/dist/{sandbox-6D6OVWZQ.mjs.map → sandbox-JYRR7FR5.mjs.map} +0 -0
- /package/dist/{sandbox-U2N6U4D2.mjs.map → sandbox-V324H2RC.mjs.map} +0 -0
|
@@ -60,7 +60,7 @@ import createClient from "openapi-fetch";
|
|
|
60
60
|
import platform2 from "platform";
|
|
61
61
|
|
|
62
62
|
// package.json
|
|
63
|
-
var version = "2.1.0-
|
|
63
|
+
var version = "2.1.0-a2";
|
|
64
64
|
|
|
65
65
|
// src/core/utils.ts
|
|
66
66
|
import platform from "platform";
|
|
@@ -5918,6 +5918,9 @@ function effectiveStartCmd(entrypoint, cmd) {
|
|
|
5918
5918
|
function shellQuoteArg(value) {
|
|
5919
5919
|
return /^[A-Za-z0-9_./:@%+=,-]+$/.test(value) ? value : `'${value.replace(/'/g, `'\\''`)}'`;
|
|
5920
5920
|
}
|
|
5921
|
+
function clearImageConfigCache() {
|
|
5922
|
+
CACHE.clear();
|
|
5923
|
+
}
|
|
5921
5924
|
|
|
5922
5925
|
// src/core/template/index.ts
|
|
5923
5926
|
var TemplateApi = class {
|
|
@@ -7684,12 +7687,12 @@ var PPIO = class {
|
|
|
7684
7687
|
this.secret = new SecretNamespace(opts);
|
|
7685
7688
|
this.codeInterpreter = new RuntimeSandboxNamespace(
|
|
7686
7689
|
opts,
|
|
7687
|
-
() => import("./sandbox-
|
|
7690
|
+
() => import("./sandbox-JYRR7FR5.mjs")
|
|
7688
7691
|
);
|
|
7689
7692
|
this.code_interpreter = this.codeInterpreter;
|
|
7690
7693
|
this.desktop = new RuntimeSandboxNamespace(
|
|
7691
7694
|
opts,
|
|
7692
|
-
() => import("./sandbox-
|
|
7695
|
+
() => import("./sandbox-V324H2RC.mjs")
|
|
7693
7696
|
);
|
|
7694
7697
|
}
|
|
7695
7698
|
async create(templateOrOpts, opts) {
|
|
@@ -7753,6 +7756,11 @@ export {
|
|
|
7753
7756
|
waitForProcess,
|
|
7754
7757
|
waitForFile,
|
|
7755
7758
|
waitForTimeout,
|
|
7759
|
+
unsupportedBase,
|
|
7760
|
+
parseImageRef,
|
|
7761
|
+
fetchImageConfig,
|
|
7762
|
+
effectiveStartCmd,
|
|
7763
|
+
clearImageConfigCache,
|
|
7756
7764
|
TemplateApi,
|
|
7757
7765
|
TemplatePaginator,
|
|
7758
7766
|
TemplateBase,
|
|
@@ -7762,4 +7770,4 @@ export {
|
|
|
7762
7770
|
ALL_TRAFFIC,
|
|
7763
7771
|
core_default
|
|
7764
7772
|
};
|
|
7765
|
-
//# sourceMappingURL=chunk-
|
|
7773
|
+
//# sourceMappingURL=chunk-46KYZWWN.mjs.map
|