@zuplo/cli 1.80.0 → 1.82.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/dist/cli.js +23 -21
- package/dist/cmds/convert.js +2 -2
- package/dist/cmds/delete.js +2 -2
- package/dist/cmds/deploy.js +2 -2
- package/dist/cmds/dev.js +2 -2
- package/dist/cmds/editor.js +2 -2
- package/dist/cmds/link.js +2 -2
- package/dist/cmds/list.js +2 -2
- package/dist/cmds/login.js +2 -2
- package/dist/cmds/project/index.js +2 -2
- package/dist/cmds/project/update.js +2 -2
- package/dist/cmds/test.js +2 -2
- package/dist/cmds/tunnel/create.js +2 -2
- package/dist/cmds/tunnel/delete.js +2 -2
- package/dist/cmds/tunnel/describe.js +2 -2
- package/dist/cmds/tunnel/index.js +2 -2
- package/dist/cmds/tunnel/list.js +2 -2
- package/dist/cmds/tunnel/rotate-token.js +2 -2
- package/dist/cmds/tunnel/services/describe.js +2 -2
- package/dist/cmds/tunnel/services/index.js +2 -2
- package/dist/cmds/tunnel/services/update.js +2 -2
- package/dist/cmds/variable/create.js +2 -2
- package/dist/cmds/variable/index.js +2 -2
- package/dist/cmds/variable/update.js +2 -2
- package/dist/common/alias.js +2 -2
- package/dist/common/analytics/lib.js +2 -2
- package/dist/common/api/lib.js +2 -2
- package/dist/common/constants.js +2 -2
- package/dist/common/deno-utils/locator.js +2 -2
- package/dist/common/handler.js +2 -2
- package/dist/common/logger.js +2 -2
- package/dist/common/machine-id/lib.js +2 -2
- package/dist/common/middleware/user-configuration.js +2 -2
- package/dist/common/middleware/user-identification.js +2 -2
- package/dist/common/models.js +2 -2
- package/dist/common/output.js +2 -2
- package/dist/common/settings.js +2 -2
- package/dist/common/upgraders/lib.js +2 -2
- package/dist/common/upgraders/package-json-upgrader.js +2 -2
- package/dist/common/upgraders/vscode-settings-json-upgrader.js +2 -2
- package/dist/common/validators/file-system-validator.js +2 -2
- package/dist/common/validators/lib.js +2 -2
- package/dist/common/validators/login-state-validator.js +2 -2
- package/dist/common/validators/project-name-validator.js +2 -2
- package/dist/common/xdg/lib.js +2 -2
- package/dist/convert/engine.js +2 -2
- package/dist/convert/handler.js +2 -2
- package/dist/convert/routes.generated.js +2 -2
- package/dist/delete/handler.js +2 -2
- package/dist/delete/poll-deployment.js +2 -2
- package/dist/deploy/archive.js +2 -2
- package/dist/deploy/file-upload.js +2 -2
- package/dist/deploy/handler.js +2 -2
- package/dist/deploy/poll-deployment.js +2 -2
- package/dist/dev/handler.js +22 -3
- package/dist/editor/assets/index-03352ce7.js +42 -42
- package/dist/editor/handler.js +2 -2
- package/dist/editor/index.html +8 -4
- package/dist/editor/server/cors-plugin.js +2 -2
- package/dist/editor/server/server.js +20 -7
- package/dist/editor/server/xfs.js +2 -2
- package/dist/link/handler.js +2 -2
- package/dist/link/populate.js +2 -2
- package/dist/list/handler.js +2 -2
- package/dist/login/handler.js +2 -2
- package/dist/login/server.js +2 -2
- package/dist/project/update/handler.js +2 -2
- package/dist/test/esbuild-config.js +2 -2
- package/dist/test/esbuild-plugins/deno-test-prep-plugin.js +2 -2
- package/dist/test/handler.js +2 -2
- package/dist/test/invoke-test.js +2 -2
- package/dist/tunnel/create/handler.js +2 -2
- package/dist/tunnel/delete/handler.js +2 -2
- package/dist/tunnel/delete/poll-teardown-operation.js +2 -2
- package/dist/tunnel/describe/handler.js +2 -2
- package/dist/tunnel/list/handler.js +2 -2
- package/dist/tunnel/models.js +2 -2
- package/dist/tunnel/rotate-token/handler.js +2 -2
- package/dist/tunnel/services/describe/handler.js +2 -2
- package/dist/tunnel/services/update/handler.js +2 -2
- package/dist/tunnel/services/update/poll-provisioning-operations.js +2 -2
- package/dist/variable/create/handler.js +2 -2
- package/dist/variable/models.js +2 -2
- package/dist/variable/update/handler.js +2 -2
- package/package.json +4 -4
package/dist/cli.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
|
|
2
|
-
!function(){try{var e="undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:{},n=(new Error).stack;n&&(e._sentryDebugIds=e._sentryDebugIds||{},e._sentryDebugIds[n]="
|
|
2
|
+
!function(){try{var e="undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:{},n=(new Error).stack;n&&(e._sentryDebugIds=e._sentryDebugIds||{},e._sentryDebugIds[n]="6a35536d-dfcb-58c9-8ba4-4269e86502ac")}catch(e){}}();
|
|
3
3
|
import * as dotenv from "dotenv";
|
|
4
4
|
dotenv.config();
|
|
5
5
|
import * as Sentry from "@sentry/node";
|
|
@@ -38,26 +38,27 @@ if (gte(process.versions.node, MIN_NODE_VERSION)) {
|
|
|
38
38
|
dsn: SENTRY_DSN,
|
|
39
39
|
release: packageJson?.version,
|
|
40
40
|
});
|
|
41
|
+
const cli = yargs(hideBin(process.argv))
|
|
42
|
+
.env("ZUPLO")
|
|
43
|
+
.command(convert)
|
|
44
|
+
.command(deleteZup)
|
|
45
|
+
.command(deploy)
|
|
46
|
+
.command(dev)
|
|
47
|
+
.command(editor)
|
|
48
|
+
.command(list)
|
|
49
|
+
.command(link)
|
|
50
|
+
.command(login)
|
|
51
|
+
.command(test)
|
|
52
|
+
.command(project)
|
|
53
|
+
.command(tunnel)
|
|
54
|
+
.command(variable)
|
|
55
|
+
.demandCommand()
|
|
56
|
+
.strictCommands()
|
|
57
|
+
.version(packageJson?.version)
|
|
58
|
+
.fail(false)
|
|
59
|
+
.help();
|
|
41
60
|
try {
|
|
42
|
-
await
|
|
43
|
-
.env("ZUPLO")
|
|
44
|
-
.command(convert)
|
|
45
|
-
.command(deleteZup)
|
|
46
|
-
.command(deploy)
|
|
47
|
-
.command(dev)
|
|
48
|
-
.command(editor)
|
|
49
|
-
.command(list)
|
|
50
|
-
.command(link)
|
|
51
|
-
.command(login)
|
|
52
|
-
.command(test)
|
|
53
|
-
.command(project)
|
|
54
|
-
.command(tunnel)
|
|
55
|
-
.command(variable)
|
|
56
|
-
.demandCommand()
|
|
57
|
-
.strictCommands()
|
|
58
|
-
.version(packageJson?.version)
|
|
59
|
-
.fail(false)
|
|
60
|
-
.help().argv;
|
|
61
|
+
await cli.argv;
|
|
61
62
|
void Sentry.close(MAX_WAIT_PENDING_TIME_MS).then(() => {
|
|
62
63
|
process.exit(0);
|
|
63
64
|
});
|
|
@@ -67,6 +68,7 @@ if (gte(process.versions.node, MIN_NODE_VERSION)) {
|
|
|
67
68
|
Sentry.captureException(err);
|
|
68
69
|
}
|
|
69
70
|
printCriticalFailureToConsoleAndExit(err.message ?? err);
|
|
71
|
+
cli.showHelp();
|
|
70
72
|
}
|
|
71
73
|
finally {
|
|
72
74
|
await shutdownAnalytics();
|
|
@@ -78,4 +80,4 @@ else {
|
|
|
78
80
|
Consider using a Node.js version manager such as https://github.com/nvm-sh/nvm.`);
|
|
79
81
|
}
|
|
80
82
|
//# sourceMappingURL=cli.js.map
|
|
81
|
-
//# debugId=
|
|
83
|
+
//# debugId=6a35536d-dfcb-58c9-8ba4-4269e86502ac
|
package/dist/cmds/convert.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
|
|
2
|
-
!function(){try{var e="undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:{},n=(new Error).stack;n&&(e._sentryDebugIds=e._sentryDebugIds||{},e._sentryDebugIds[n]="
|
|
2
|
+
!function(){try{var e="undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:{},n=(new Error).stack;n&&(e._sentryDebugIds=e._sentryDebugIds||{},e._sentryDebugIds[n]="7b30a4a9-a2c3-5f25-af13-bb4637e4cbbe")}catch(e){}}();
|
|
3
3
|
import { captureEvent } from "../common/analytics/lib.js";
|
|
4
4
|
import { identify } from "../common/middleware/user-identification.js";
|
|
5
5
|
import setBlocking from "../common/output.js";
|
|
@@ -24,4 +24,4 @@ export default {
|
|
|
24
24
|
},
|
|
25
25
|
};
|
|
26
26
|
//# sourceMappingURL=convert.js.map
|
|
27
|
-
//# debugId=
|
|
27
|
+
//# debugId=7b30a4a9-a2c3-5f25-af13-bb4637e4cbbe
|
package/dist/cmds/delete.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
|
|
2
|
-
!function(){try{var e="undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:{},n=(new Error).stack;n&&(e._sentryDebugIds=e._sentryDebugIds||{},e._sentryDebugIds[n]="
|
|
2
|
+
!function(){try{var e="undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:{},n=(new Error).stack;n&&(e._sentryDebugIds=e._sentryDebugIds||{},e._sentryDebugIds[n]="aaafa692-9a45-5551-b265-0a92f13b3846")}catch(e){}}();
|
|
3
3
|
import { captureEvent } from "../common/analytics/lib.js";
|
|
4
4
|
import { configure } from "../common/middleware/user-configuration.js";
|
|
5
5
|
import { identify } from "../common/middleware/user-identification.js";
|
|
@@ -42,4 +42,4 @@ export default {
|
|
|
42
42
|
},
|
|
43
43
|
};
|
|
44
44
|
//# sourceMappingURL=delete.js.map
|
|
45
|
-
//# debugId=
|
|
45
|
+
//# debugId=aaafa692-9a45-5551-b265-0a92f13b3846
|
package/dist/cmds/deploy.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
|
|
2
|
-
!function(){try{var e="undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:{},n=(new Error).stack;n&&(e._sentryDebugIds=e._sentryDebugIds||{},e._sentryDebugIds[n]="
|
|
2
|
+
!function(){try{var e="undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:{},n=(new Error).stack;n&&(e._sentryDebugIds=e._sentryDebugIds||{},e._sentryDebugIds[n]="c3015aa9-ba0d-540f-8ea7-2f7bd7e5ad3a")}catch(e){}}();
|
|
3
3
|
import { captureEvent } from "../common/analytics/lib.js";
|
|
4
4
|
import { configure } from "../common/middleware/user-configuration.js";
|
|
5
5
|
import { identify } from "../common/middleware/user-identification.js";
|
|
@@ -47,4 +47,4 @@ export default {
|
|
|
47
47
|
},
|
|
48
48
|
};
|
|
49
49
|
//# sourceMappingURL=deploy.js.map
|
|
50
|
-
//# debugId=
|
|
50
|
+
//# debugId=c3015aa9-ba0d-540f-8ea7-2f7bd7e5ad3a
|
package/dist/cmds/dev.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
|
|
2
|
-
!function(){try{var e="undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:{},n=(new Error).stack;n&&(e._sentryDebugIds=e._sentryDebugIds||{},e._sentryDebugIds[n]="
|
|
2
|
+
!function(){try{var e="undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:{},n=(new Error).stack;n&&(e._sentryDebugIds=e._sentryDebugIds||{},e._sentryDebugIds[n]="e910dd81-7af4-5078-bc97-0a2561de6ce0")}catch(e){}}();
|
|
3
3
|
import { captureEvent } from "../common/analytics/lib.js";
|
|
4
4
|
import { identify } from "../common/middleware/user-identification.js";
|
|
5
5
|
import setBlocking from "../common/output.js";
|
|
@@ -34,4 +34,4 @@ export default {
|
|
|
34
34
|
},
|
|
35
35
|
};
|
|
36
36
|
//# sourceMappingURL=dev.js.map
|
|
37
|
-
//# debugId=
|
|
37
|
+
//# debugId=e910dd81-7af4-5078-bc97-0a2561de6ce0
|
package/dist/cmds/editor.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
|
|
2
|
-
!function(){try{var e="undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:{},n=(new Error).stack;n&&(e._sentryDebugIds=e._sentryDebugIds||{},e._sentryDebugIds[n]="
|
|
2
|
+
!function(){try{var e="undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:{},n=(new Error).stack;n&&(e._sentryDebugIds=e._sentryDebugIds||{},e._sentryDebugIds[n]="29e646b9-179b-5d9d-8e0f-c31b1185dfcf")}catch(e){}}();
|
|
3
3
|
import { captureEvent } from "../common/analytics/lib.js";
|
|
4
4
|
import { identify } from "../common/middleware/user-identification.js";
|
|
5
5
|
import setBlocking from "../common/output.js";
|
|
@@ -29,4 +29,4 @@ export default {
|
|
|
29
29
|
},
|
|
30
30
|
};
|
|
31
31
|
//# sourceMappingURL=editor.js.map
|
|
32
|
-
//# debugId=
|
|
32
|
+
//# debugId=29e646b9-179b-5d9d-8e0f-c31b1185dfcf
|
package/dist/cmds/link.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
|
|
2
|
-
!function(){try{var e="undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:{},n=(new Error).stack;n&&(e._sentryDebugIds=e._sentryDebugIds||{},e._sentryDebugIds[n]="
|
|
2
|
+
!function(){try{var e="undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:{},n=(new Error).stack;n&&(e._sentryDebugIds=e._sentryDebugIds||{},e._sentryDebugIds[n]="c2365925-f632-55ec-9b9b-85ac10bfc5ab")}catch(e){}}();
|
|
3
3
|
import { captureEvent } from "../common/analytics/lib.js";
|
|
4
4
|
import { identify } from "../common/middleware/user-identification.js";
|
|
5
5
|
import setBlocking from "../common/output.js";
|
|
@@ -29,4 +29,4 @@ export default {
|
|
|
29
29
|
},
|
|
30
30
|
};
|
|
31
31
|
//# sourceMappingURL=link.js.map
|
|
32
|
-
//# debugId=
|
|
32
|
+
//# debugId=c2365925-f632-55ec-9b9b-85ac10bfc5ab
|
package/dist/cmds/list.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
|
|
2
|
-
!function(){try{var e="undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:{},n=(new Error).stack;n&&(e._sentryDebugIds=e._sentryDebugIds||{},e._sentryDebugIds[n]="
|
|
2
|
+
!function(){try{var e="undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:{},n=(new Error).stack;n&&(e._sentryDebugIds=e._sentryDebugIds||{},e._sentryDebugIds[n]="1365eaa2-6dd2-520c-9675-2c2c00576f66")}catch(e){}}();
|
|
3
3
|
import { captureEvent } from "../common/analytics/lib.js";
|
|
4
4
|
import { configure } from "../common/middleware/user-configuration.js";
|
|
5
5
|
import { identify } from "../common/middleware/user-identification.js";
|
|
@@ -33,4 +33,4 @@ export default {
|
|
|
33
33
|
},
|
|
34
34
|
};
|
|
35
35
|
//# sourceMappingURL=list.js.map
|
|
36
|
-
//# debugId=
|
|
36
|
+
//# debugId=1365eaa2-6dd2-520c-9675-2c2c00576f66
|
package/dist/cmds/login.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
|
|
2
|
-
!function(){try{var e="undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:{},n=(new Error).stack;n&&(e._sentryDebugIds=e._sentryDebugIds||{},e._sentryDebugIds[n]="
|
|
2
|
+
!function(){try{var e="undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:{},n=(new Error).stack;n&&(e._sentryDebugIds=e._sentryDebugIds||{},e._sentryDebugIds[n]="06344ac3-9b00-5aab-b199-3e6faa6f3a3d")}catch(e){}}();
|
|
3
3
|
import { captureEvent } from "../common/analytics/lib.js";
|
|
4
4
|
import { identify } from "../common/middleware/user-identification.js";
|
|
5
5
|
import setBlocking from "../common/output.js";
|
|
@@ -21,4 +21,4 @@ export default {
|
|
|
21
21
|
},
|
|
22
22
|
};
|
|
23
23
|
//# sourceMappingURL=login.js.map
|
|
24
|
-
//# debugId=
|
|
24
|
+
//# debugId=06344ac3-9b00-5aab-b199-3e6faa6f3a3d
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
|
|
2
|
-
!function(){try{var e="undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:{},n=(new Error).stack;n&&(e._sentryDebugIds=e._sentryDebugIds||{},e._sentryDebugIds[n]="
|
|
2
|
+
!function(){try{var e="undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:{},n=(new Error).stack;n&&(e._sentryDebugIds=e._sentryDebugIds||{},e._sentryDebugIds[n]="f9aa83d0-91be-5c97-ac89-131d1bec0878")}catch(e){}}();
|
|
3
3
|
import { groupHandler } from "../../common/handler.js";
|
|
4
4
|
import update from "./update.js";
|
|
5
5
|
const commands = {
|
|
@@ -12,4 +12,4 @@ const commands = {
|
|
|
12
12
|
};
|
|
13
13
|
export default commands;
|
|
14
14
|
//# sourceMappingURL=index.js.map
|
|
15
|
-
//# debugId=
|
|
15
|
+
//# debugId=f9aa83d0-91be-5c97-ac89-131d1bec0878
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
|
|
2
|
-
!function(){try{var e="undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:{},n=(new Error).stack;n&&(e._sentryDebugIds=e._sentryDebugIds||{},e._sentryDebugIds[n]="
|
|
2
|
+
!function(){try{var e="undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:{},n=(new Error).stack;n&&(e._sentryDebugIds=e._sentryDebugIds||{},e._sentryDebugIds[n]="af8d9ac0-7207-5a52-ba69-81b7b44b6d4a")}catch(e){}}();
|
|
3
3
|
import { captureEvent } from "../../common/analytics/lib.js";
|
|
4
4
|
import { identify } from "../../common/middleware/user-identification.js";
|
|
5
5
|
import setBlocking from "../../common/output.js";
|
|
@@ -29,4 +29,4 @@ export default {
|
|
|
29
29
|
},
|
|
30
30
|
};
|
|
31
31
|
//# sourceMappingURL=update.js.map
|
|
32
|
-
//# debugId=
|
|
32
|
+
//# debugId=af8d9ac0-7207-5a52-ba69-81b7b44b6d4a
|
package/dist/cmds/test.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
|
|
2
|
-
!function(){try{var e="undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:{},n=(new Error).stack;n&&(e._sentryDebugIds=e._sentryDebugIds||{},e._sentryDebugIds[n]="
|
|
2
|
+
!function(){try{var e="undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:{},n=(new Error).stack;n&&(e._sentryDebugIds=e._sentryDebugIds||{},e._sentryDebugIds[n]="bf382d7f-824b-52f3-8b84-d598a396e061")}catch(e){}}();
|
|
3
3
|
import { captureEvent } from "../common/analytics/lib.js";
|
|
4
4
|
import { identify } from "../common/middleware/user-identification.js";
|
|
5
5
|
import setBlocking from "../common/output.js";
|
|
@@ -37,4 +37,4 @@ export default {
|
|
|
37
37
|
},
|
|
38
38
|
};
|
|
39
39
|
//# sourceMappingURL=test.js.map
|
|
40
|
-
//# debugId=
|
|
40
|
+
//# debugId=bf382d7f-824b-52f3-8b84-d598a396e061
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
|
|
2
|
-
!function(){try{var e="undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:{},n=(new Error).stack;n&&(e._sentryDebugIds=e._sentryDebugIds||{},e._sentryDebugIds[n]="
|
|
2
|
+
!function(){try{var e="undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:{},n=(new Error).stack;n&&(e._sentryDebugIds=e._sentryDebugIds||{},e._sentryDebugIds[n]="1c31d9af-6d6d-5485-b1c5-216cf4807329")}catch(e){}}();
|
|
3
3
|
import { captureEvent } from "../../common/analytics/lib.js";
|
|
4
4
|
import { configure } from "../../common/middleware/user-configuration.js";
|
|
5
5
|
import { identify } from "../../common/middleware/user-identification.js";
|
|
@@ -28,4 +28,4 @@ export default {
|
|
|
28
28
|
},
|
|
29
29
|
};
|
|
30
30
|
//# sourceMappingURL=create.js.map
|
|
31
|
-
//# debugId=
|
|
31
|
+
//# debugId=1c31d9af-6d6d-5485-b1c5-216cf4807329
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
|
|
2
|
-
!function(){try{var e="undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:{},n=(new Error).stack;n&&(e._sentryDebugIds=e._sentryDebugIds||{},e._sentryDebugIds[n]="
|
|
2
|
+
!function(){try{var e="undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:{},n=(new Error).stack;n&&(e._sentryDebugIds=e._sentryDebugIds||{},e._sentryDebugIds[n]="bcde239d-9bb4-5375-90f5-e1f896ce6cec")}catch(e){}}();
|
|
3
3
|
import { captureEvent } from "../../common/analytics/lib.js";
|
|
4
4
|
import { configure } from "../../common/middleware/user-configuration.js";
|
|
5
5
|
import { identify } from "../../common/middleware/user-identification.js";
|
|
@@ -24,4 +24,4 @@ export default {
|
|
|
24
24
|
},
|
|
25
25
|
};
|
|
26
26
|
//# sourceMappingURL=delete.js.map
|
|
27
|
-
//# debugId=
|
|
27
|
+
//# debugId=bcde239d-9bb4-5375-90f5-e1f896ce6cec
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
|
|
2
|
-
!function(){try{var e="undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:{},n=(new Error).stack;n&&(e._sentryDebugIds=e._sentryDebugIds||{},e._sentryDebugIds[n]="
|
|
2
|
+
!function(){try{var e="undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:{},n=(new Error).stack;n&&(e._sentryDebugIds=e._sentryDebugIds||{},e._sentryDebugIds[n]="cf3929b3-3c67-5b2d-85a4-2bf14bec6120")}catch(e){}}();
|
|
3
3
|
import { captureEvent } from "../../common/analytics/lib.js";
|
|
4
4
|
import { configure } from "../../common/middleware/user-configuration.js";
|
|
5
5
|
import { identify } from "../../common/middleware/user-identification.js";
|
|
@@ -28,4 +28,4 @@ export default {
|
|
|
28
28
|
},
|
|
29
29
|
};
|
|
30
30
|
//# sourceMappingURL=describe.js.map
|
|
31
|
-
//# debugId=
|
|
31
|
+
//# debugId=cf3929b3-3c67-5b2d-85a4-2bf14bec6120
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
|
|
2
|
-
!function(){try{var e="undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:{},n=(new Error).stack;n&&(e._sentryDebugIds=e._sentryDebugIds||{},e._sentryDebugIds[n]="
|
|
2
|
+
!function(){try{var e="undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:{},n=(new Error).stack;n&&(e._sentryDebugIds=e._sentryDebugIds||{},e._sentryDebugIds[n]="ee11bf54-df7f-5073-8ada-69c1811d71a8")}catch(e){}}();
|
|
3
3
|
import { groupHandler } from "../../common/handler.js";
|
|
4
4
|
import create from "./create.js";
|
|
5
5
|
import deleteTunnel from "./delete.js";
|
|
@@ -24,4 +24,4 @@ const commands = {
|
|
|
24
24
|
};
|
|
25
25
|
export default commands;
|
|
26
26
|
//# sourceMappingURL=index.js.map
|
|
27
|
-
//# debugId=
|
|
27
|
+
//# debugId=ee11bf54-df7f-5073-8ada-69c1811d71a8
|
package/dist/cmds/tunnel/list.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
|
|
2
|
-
!function(){try{var e="undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:{},n=(new Error).stack;n&&(e._sentryDebugIds=e._sentryDebugIds||{},e._sentryDebugIds[n]="
|
|
2
|
+
!function(){try{var e="undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:{},n=(new Error).stack;n&&(e._sentryDebugIds=e._sentryDebugIds||{},e._sentryDebugIds[n]="e413402b-feb6-5eb5-809e-1bcb32d5fa96")}catch(e){}}();
|
|
3
3
|
import { captureEvent } from "../../common/analytics/lib.js";
|
|
4
4
|
import { configure } from "../../common/middleware/user-configuration.js";
|
|
5
5
|
import { identify } from "../../common/middleware/user-identification.js";
|
|
@@ -24,4 +24,4 @@ export default {
|
|
|
24
24
|
},
|
|
25
25
|
};
|
|
26
26
|
//# sourceMappingURL=list.js.map
|
|
27
|
-
//# debugId=
|
|
27
|
+
//# debugId=e413402b-feb6-5eb5-809e-1bcb32d5fa96
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
|
|
2
|
-
!function(){try{var e="undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:{},n=(new Error).stack;n&&(e._sentryDebugIds=e._sentryDebugIds||{},e._sentryDebugIds[n]="
|
|
2
|
+
!function(){try{var e="undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:{},n=(new Error).stack;n&&(e._sentryDebugIds=e._sentryDebugIds||{},e._sentryDebugIds[n]="10f31d26-d28f-5c34-ba4c-b0eb7768a056")}catch(e){}}();
|
|
3
3
|
import { captureEvent } from "../../common/analytics/lib.js";
|
|
4
4
|
import { configure } from "../../common/middleware/user-configuration.js";
|
|
5
5
|
import { identify } from "../../common/middleware/user-identification.js";
|
|
@@ -28,4 +28,4 @@ export default {
|
|
|
28
28
|
},
|
|
29
29
|
};
|
|
30
30
|
//# sourceMappingURL=rotate-token.js.map
|
|
31
|
-
//# debugId=
|
|
31
|
+
//# debugId=10f31d26-d28f-5c34-ba4c-b0eb7768a056
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
|
|
2
|
-
!function(){try{var e="undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:{},n=(new Error).stack;n&&(e._sentryDebugIds=e._sentryDebugIds||{},e._sentryDebugIds[n]="
|
|
2
|
+
!function(){try{var e="undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:{},n=(new Error).stack;n&&(e._sentryDebugIds=e._sentryDebugIds||{},e._sentryDebugIds[n]="ab681ce0-b525-5358-a016-674e43604c4f")}catch(e){}}();
|
|
3
3
|
import { captureEvent } from "../../../common/analytics/lib.js";
|
|
4
4
|
import { configure } from "../../../common/middleware/user-configuration.js";
|
|
5
5
|
import { identify } from "../../../common/middleware/user-identification.js";
|
|
@@ -28,4 +28,4 @@ export default {
|
|
|
28
28
|
},
|
|
29
29
|
};
|
|
30
30
|
//# sourceMappingURL=describe.js.map
|
|
31
|
-
//# debugId=
|
|
31
|
+
//# debugId=ab681ce0-b525-5358-a016-674e43604c4f
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
|
|
2
|
-
!function(){try{var e="undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:{},n=(new Error).stack;n&&(e._sentryDebugIds=e._sentryDebugIds||{},e._sentryDebugIds[n]="
|
|
2
|
+
!function(){try{var e="undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:{},n=(new Error).stack;n&&(e._sentryDebugIds=e._sentryDebugIds||{},e._sentryDebugIds[n]="206665c6-464b-559b-b66d-a25c3f52eaf9")}catch(e){}}();
|
|
3
3
|
import { groupHandler } from "../../../common/handler.js";
|
|
4
4
|
import describe from "./describe.js";
|
|
5
5
|
import update from "./update.js";
|
|
@@ -13,4 +13,4 @@ const commands = {
|
|
|
13
13
|
};
|
|
14
14
|
export default commands;
|
|
15
15
|
//# sourceMappingURL=index.js.map
|
|
16
|
-
//# debugId=
|
|
16
|
+
//# debugId=206665c6-464b-559b-b66d-a25c3f52eaf9
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
|
|
2
|
-
!function(){try{var e="undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:{},n=(new Error).stack;n&&(e._sentryDebugIds=e._sentryDebugIds||{},e._sentryDebugIds[n]="
|
|
2
|
+
!function(){try{var e="undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:{},n=(new Error).stack;n&&(e._sentryDebugIds=e._sentryDebugIds||{},e._sentryDebugIds[n]="0b1a2856-92b8-5413-926a-b6f941b3868e")}catch(e){}}();
|
|
3
3
|
import { captureEvent } from "../../../common/analytics/lib.js";
|
|
4
4
|
import { configure } from "../../../common/middleware/user-configuration.js";
|
|
5
5
|
import { identify } from "../../../common/middleware/user-identification.js";
|
|
@@ -32,4 +32,4 @@ export default {
|
|
|
32
32
|
},
|
|
33
33
|
};
|
|
34
34
|
//# sourceMappingURL=update.js.map
|
|
35
|
-
//# debugId=
|
|
35
|
+
//# debugId=0b1a2856-92b8-5413-926a-b6f941b3868e
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
|
|
2
|
-
!function(){try{var e="undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:{},n=(new Error).stack;n&&(e._sentryDebugIds=e._sentryDebugIds||{},e._sentryDebugIds[n]="
|
|
2
|
+
!function(){try{var e="undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:{},n=(new Error).stack;n&&(e._sentryDebugIds=e._sentryDebugIds||{},e._sentryDebugIds[n]="43cfc43f-cef9-5941-b178-06788ef84ab6")}catch(e){}}();
|
|
3
3
|
import { captureEvent } from "../../common/analytics/lib.js";
|
|
4
4
|
import { configure } from "../../common/middleware/user-configuration.js";
|
|
5
5
|
import { identify } from "../../common/middleware/user-identification.js";
|
|
@@ -49,4 +49,4 @@ export default {
|
|
|
49
49
|
},
|
|
50
50
|
};
|
|
51
51
|
//# sourceMappingURL=create.js.map
|
|
52
|
-
//# debugId=
|
|
52
|
+
//# debugId=43cfc43f-cef9-5941-b178-06788ef84ab6
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
|
|
2
|
-
!function(){try{var e="undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:{},n=(new Error).stack;n&&(e._sentryDebugIds=e._sentryDebugIds||{},e._sentryDebugIds[n]="
|
|
2
|
+
!function(){try{var e="undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:{},n=(new Error).stack;n&&(e._sentryDebugIds=e._sentryDebugIds||{},e._sentryDebugIds[n]="f876ecfa-9198-5520-821b-2111cd444ba8")}catch(e){}}();
|
|
3
3
|
import { groupHandler } from "../../common/handler.js";
|
|
4
4
|
import create from "./create.js";
|
|
5
5
|
import update from "./update.js";
|
|
@@ -13,4 +13,4 @@ const commands = {
|
|
|
13
13
|
};
|
|
14
14
|
export default commands;
|
|
15
15
|
//# sourceMappingURL=index.js.map
|
|
16
|
-
//# debugId=
|
|
16
|
+
//# debugId=f876ecfa-9198-5520-821b-2111cd444ba8
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
|
|
2
|
-
!function(){try{var e="undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:{},n=(new Error).stack;n&&(e._sentryDebugIds=e._sentryDebugIds||{},e._sentryDebugIds[n]="
|
|
2
|
+
!function(){try{var e="undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:{},n=(new Error).stack;n&&(e._sentryDebugIds=e._sentryDebugIds||{},e._sentryDebugIds[n]="fcc8e060-67f9-5074-a73f-5b458628939c")}catch(e){}}();
|
|
3
3
|
import { captureEvent } from "../../common/analytics/lib.js";
|
|
4
4
|
import { configure } from "../../common/middleware/user-configuration.js";
|
|
5
5
|
import { identify } from "../../common/middleware/user-identification.js";
|
|
@@ -40,4 +40,4 @@ export default {
|
|
|
40
40
|
},
|
|
41
41
|
};
|
|
42
42
|
//# sourceMappingURL=update.js.map
|
|
43
|
-
//# debugId=
|
|
43
|
+
//# debugId=fcc8e060-67f9-5074-a73f-5b458628939c
|
package/dist/common/alias.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
|
|
2
|
-
!function(){try{var e="undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:{},n=(new Error).stack;n&&(e._sentryDebugIds=e._sentryDebugIds||{},e._sentryDebugIds[n]="
|
|
2
|
+
!function(){try{var e="undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:{},n=(new Error).stack;n&&(e._sentryDebugIds=e._sentryDebugIds||{},e._sentryDebugIds[n]="34d2de6c-e216-575d-9a4e-e4b42a4e6773")}catch(e){}}();
|
|
3
3
|
export {};
|
|
4
4
|
//# sourceMappingURL=alias.js.map
|
|
5
|
-
//# debugId=
|
|
5
|
+
//# debugId=34d2de6c-e216-575d-9a4e-e4b42a4e6773
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
|
|
2
|
-
!function(){try{var e="undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:{},n=(new Error).stack;n&&(e._sentryDebugIds=e._sentryDebugIds||{},e._sentryDebugIds[n]="
|
|
2
|
+
!function(){try{var e="undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:{},n=(new Error).stack;n&&(e._sentryDebugIds=e._sentryDebugIds||{},e._sentryDebugIds[n]="12e7c242-d10c-5a88-8ff7-0bc480485d36")}catch(e){}}();
|
|
3
3
|
import { defaultIntegrations } from "@sentry/node";
|
|
4
4
|
import { PostHog } from "posthog-node";
|
|
5
5
|
import { POST_HOG_CAPTURE_KEY, ZUPLO_USER_ID_ARGV_KEY } from "../constants.js";
|
|
@@ -54,4 +54,4 @@ export async function shutdownAnalytics() {
|
|
|
54
54
|
return _postHog?.shutdownAsync();
|
|
55
55
|
}
|
|
56
56
|
//# sourceMappingURL=lib.js.map
|
|
57
|
-
//# debugId=
|
|
57
|
+
//# debugId=12e7c242-d10c-5a88-8ff7-0bc480485d36
|
package/dist/common/api/lib.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
|
|
2
|
-
!function(){try{var e="undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:{},n=(new Error).stack;n&&(e._sentryDebugIds=e._sentryDebugIds||{},e._sentryDebugIds[n]="
|
|
2
|
+
!function(){try{var e="undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:{},n=(new Error).stack;n&&(e._sentryDebugIds=e._sentryDebugIds||{},e._sentryDebugIds[n]="51fa863f-e84d-5faa-922f-e762f03ef49f")}catch(e){}}();
|
|
3
3
|
export {};
|
|
4
4
|
//# sourceMappingURL=lib.js.map
|
|
5
|
-
//# debugId=
|
|
5
|
+
//# debugId=51fa863f-e84d-5faa-922f-e762f03ef49f
|
package/dist/common/constants.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
|
|
2
|
-
!function(){try{var e="undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:{},n=(new Error).stack;n&&(e._sentryDebugIds=e._sentryDebugIds||{},e._sentryDebugIds[n]="
|
|
2
|
+
!function(){try{var e="undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:{},n=(new Error).stack;n&&(e._sentryDebugIds=e._sentryDebugIds||{},e._sentryDebugIds[n]="8f9176c4-bdd2-5546-8161-2df78f8c8d2d")}catch(e){}}();
|
|
3
3
|
export const ZUPLO_PREFERRED_JSON_FILE = "zuplo.jsonc";
|
|
4
4
|
export const ZUPLO_FALLBACK_JSON_FILE = "zuplo.json";
|
|
5
5
|
export const ZUPLO_CLI_XDG_FOLDER_NAME = "zup";
|
|
@@ -13,4 +13,4 @@ export const SENTRY_DSN = "https://28220fd3185a1281daff09ade2114dca@o1036703.ing
|
|
|
13
13
|
export const MAX_WAIT_PENDING_TIME_MS = 1000;
|
|
14
14
|
export const POST_HOG_CAPTURE_KEY = "phc_LDSwSTOvIjiDDZql2g54Q7xEXoQ0EN9RMYb3STbdz1V";
|
|
15
15
|
//# sourceMappingURL=constants.js.map
|
|
16
|
-
//# debugId=
|
|
16
|
+
//# debugId=8f9176c4-bdd2-5546-8161-2df78f8c8d2d
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
|
|
2
|
-
!function(){try{var e="undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:{},n=(new Error).stack;n&&(e._sentryDebugIds=e._sentryDebugIds||{},e._sentryDebugIds[n]="
|
|
2
|
+
!function(){try{var e="undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:{},n=(new Error).stack;n&&(e._sentryDebugIds=e._sentryDebugIds||{},e._sentryDebugIds[n]="76fdc9f7-8cc6-5a43-8b04-82e2494b464d")}catch(e){}}();
|
|
3
3
|
import { existsSync } from "node:fs";
|
|
4
4
|
import { dirname, resolve } from "node:path";
|
|
5
5
|
import { fileURLToPath } from "node:url";
|
|
@@ -26,4 +26,4 @@ export async function locateDeno(dir) {
|
|
|
26
26
|
return locateDeno(dirname(dir));
|
|
27
27
|
}
|
|
28
28
|
//# sourceMappingURL=locator.js.map
|
|
29
|
-
//# debugId=
|
|
29
|
+
//# debugId=76fdc9f7-8cc6-5a43-8b04-82e2494b464d
|
package/dist/common/handler.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
|
|
2
|
-
!function(){try{var e="undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:{},n=(new Error).stack;n&&(e._sentryDebugIds=e._sentryDebugIds||{},e._sentryDebugIds[n]="
|
|
2
|
+
!function(){try{var e="undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:{},n=(new Error).stack;n&&(e._sentryDebugIds=e._sentryDebugIds||{},e._sentryDebugIds[n]="383a288d-5e66-57b8-94f9-47677e2041b7")}catch(e){}}();
|
|
3
3
|
export function groupHandler() {
|
|
4
4
|
console.log("Run with --help to see available commands");
|
|
5
5
|
}
|
|
6
6
|
//# sourceMappingURL=handler.js.map
|
|
7
|
-
//# debugId=
|
|
7
|
+
//# debugId=383a288d-5e66-57b8-94f9-47677e2041b7
|
package/dist/common/logger.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
|
|
2
|
-
!function(){try{var e="undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:{},n=(new Error).stack;n&&(e._sentryDebugIds=e._sentryDebugIds||{},e._sentryDebugIds[n]="
|
|
2
|
+
!function(){try{var e="undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:{},n=(new Error).stack;n&&(e._sentryDebugIds=e._sentryDebugIds||{},e._sentryDebugIds[n]="933da865-f680-55cc-a710-065ace7ed925")}catch(e){}}();
|
|
3
3
|
import * as Pino from "pino";
|
|
4
4
|
export const logger = Pino.pino({
|
|
5
5
|
level: process.env.LOG_LEVEL || "info",
|
|
@@ -14,4 +14,4 @@ export const logger = Pino.pino({
|
|
|
14
14
|
},
|
|
15
15
|
});
|
|
16
16
|
//# sourceMappingURL=logger.js.map
|
|
17
|
-
//# debugId=
|
|
17
|
+
//# debugId=933da865-f680-55cc-a710-065ace7ed925
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
|
|
2
|
-
!function(){try{var e="undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:{},n=(new Error).stack;n&&(e._sentryDebugIds=e._sentryDebugIds||{},e._sentryDebugIds[n]="
|
|
2
|
+
!function(){try{var e="undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:{},n=(new Error).stack;n&&(e._sentryDebugIds=e._sentryDebugIds||{},e._sentryDebugIds[n]="9e0055eb-6035-5efb-8ac1-391c4bff8a89")}catch(e){}}();
|
|
3
3
|
import { execSync } from "node:child_process";
|
|
4
4
|
import { createHash } from "node:crypto";
|
|
5
5
|
const win32RegBinPath = {
|
|
@@ -65,4 +65,4 @@ export function machineId() {
|
|
|
65
65
|
}
|
|
66
66
|
}
|
|
67
67
|
//# sourceMappingURL=lib.js.map
|
|
68
|
-
//# debugId=
|
|
68
|
+
//# debugId=9e0055eb-6035-5efb-8ac1-391c4bff8a89
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
|
|
2
|
-
!function(){try{var e="undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:{},n=(new Error).stack;n&&(e._sentryDebugIds=e._sentryDebugIds||{},e._sentryDebugIds[n]="
|
|
2
|
+
!function(){try{var e="undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:{},n=(new Error).stack;n&&(e._sentryDebugIds=e._sentryDebugIds||{},e._sentryDebugIds[n]="12dff9e0-1a30-5234-8359-f04cfa89a501")}catch(e){}}();
|
|
3
3
|
import { parse } from "jsonc-parser";
|
|
4
4
|
import { existsSync } from "node:fs";
|
|
5
5
|
import { readFile } from "node:fs/promises";
|
|
@@ -59,4 +59,4 @@ const omitNull = (obj) => {
|
|
|
59
59
|
return obj;
|
|
60
60
|
};
|
|
61
61
|
//# sourceMappingURL=user-configuration.js.map
|
|
62
|
-
//# debugId=
|
|
62
|
+
//# debugId=12dff9e0-1a30-5234-8359-f04cfa89a501
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
|
|
2
|
-
!function(){try{var e="undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:{},n=(new Error).stack;n&&(e._sentryDebugIds=e._sentryDebugIds||{},e._sentryDebugIds[n]="
|
|
2
|
+
!function(){try{var e="undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:{},n=(new Error).stack;n&&(e._sentryDebugIds=e._sentryDebugIds||{},e._sentryDebugIds[n]="7aa1579b-1828-5f74-93dc-12d848c3163a")}catch(e){}}();
|
|
3
3
|
import * as Sentry from "@sentry/node";
|
|
4
4
|
import * as jose from "jose";
|
|
5
5
|
import { readFile } from "node:fs/promises";
|
|
@@ -35,4 +35,4 @@ export async function identify(argv) {
|
|
|
35
35
|
}
|
|
36
36
|
}
|
|
37
37
|
//# sourceMappingURL=user-identification.js.map
|
|
38
|
-
//# debugId=
|
|
38
|
+
//# debugId=7aa1579b-1828-5f74-93dc-12d848c3163a
|
package/dist/common/models.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
|
|
2
|
-
!function(){try{var e="undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:{},n=(new Error).stack;n&&(e._sentryDebugIds=e._sentryDebugIds||{},e._sentryDebugIds[n]="
|
|
2
|
+
!function(){try{var e="undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:{},n=(new Error).stack;n&&(e._sentryDebugIds=e._sentryDebugIds||{},e._sentryDebugIds[n]="44a18960-70ce-57f9-b9cf-5ccd5bb951e5")}catch(e){}}();
|
|
3
3
|
export {};
|
|
4
4
|
//# sourceMappingURL=models.js.map
|
|
5
|
-
//# debugId=
|
|
5
|
+
//# debugId=44a18960-70ce-57f9-b9cf-5ccd5bb951e5
|
package/dist/common/output.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
|
|
2
|
-
!function(){try{var e="undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:{},n=(new Error).stack;n&&(e._sentryDebugIds=e._sentryDebugIds||{},e._sentryDebugIds[n]="
|
|
2
|
+
!function(){try{var e="undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:{},n=(new Error).stack;n&&(e._sentryDebugIds=e._sentryDebugIds||{},e._sentryDebugIds[n]="c9f754b6-4a30-5079-ac77-596791509251")}catch(e){}}();
|
|
3
3
|
import * as Sentry from "@sentry/node";
|
|
4
4
|
import chalk from "chalk";
|
|
5
5
|
import { MAX_WAIT_PENDING_TIME_MS } from "./constants.js";
|
|
@@ -51,4 +51,4 @@ export function textOrJson(text) {
|
|
|
51
51
|
}
|
|
52
52
|
}
|
|
53
53
|
//# sourceMappingURL=output.js.map
|
|
54
|
-
//# debugId=
|
|
54
|
+
//# debugId=c9f754b6-4a30-5079-ac77-596791509251
|
package/dist/common/settings.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
|
|
2
|
-
!function(){try{var e="undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:{},n=(new Error).stack;n&&(e._sentryDebugIds=e._sentryDebugIds||{},e._sentryDebugIds[n]="
|
|
2
|
+
!function(){try{var e="undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:{},n=(new Error).stack;n&&(e._sentryDebugIds=e._sentryDebugIds||{},e._sentryDebugIds[n]="ac6e27ab-3838-58fa-ab3b-2509c8786362")}catch(e){}}();
|
|
3
3
|
class Settings {
|
|
4
4
|
get ZUPLO_DEVELOPER_API_ENDPOINT() {
|
|
5
5
|
return process.env.ZUPLO_DEVELOPER_API_ENDPOINT ?? "https://dev.zuplo.com";
|
|
@@ -23,4 +23,4 @@ class Settings {
|
|
|
23
23
|
const settings = new Settings();
|
|
24
24
|
export default settings;
|
|
25
25
|
//# sourceMappingURL=settings.js.map
|
|
26
|
-
//# debugId=
|
|
26
|
+
//# debugId=ac6e27ab-3838-58fa-ab3b-2509c8786362
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
|
|
2
|
-
!function(){try{var e="undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:{},n=(new Error).stack;n&&(e._sentryDebugIds=e._sentryDebugIds||{},e._sentryDebugIds[n]="
|
|
2
|
+
!function(){try{var e="undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:{},n=(new Error).stack;n&&(e._sentryDebugIds=e._sentryDebugIds||{},e._sentryDebugIds[n]="9e6b3423-ff77-53d4-934a-28b692b323c3")}catch(e){}}();
|
|
3
3
|
export class StandardUpgrader {
|
|
4
4
|
normalizedDir;
|
|
5
5
|
constructor(normalizedDir) {
|
|
@@ -13,4 +13,4 @@ export class VsCodeFolderMissing extends Error {
|
|
|
13
13
|
}
|
|
14
14
|
}
|
|
15
15
|
//# sourceMappingURL=lib.js.map
|
|
16
|
-
//# debugId=
|
|
16
|
+
//# debugId=9e6b3423-ff77-53d4-934a-28b692b323c3
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
|
|
2
|
-
!function(){try{var e="undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:{},n=(new Error).stack;n&&(e._sentryDebugIds=e._sentryDebugIds||{},e._sentryDebugIds[n]="
|
|
2
|
+
!function(){try{var e="undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:{},n=(new Error).stack;n&&(e._sentryDebugIds=e._sentryDebugIds||{},e._sentryDebugIds[n]="67061e6a-7cc0-5202-bd61-fdc843bd427e")}catch(e){}}();
|
|
3
3
|
import { readFile, writeFile } from "node:fs/promises";
|
|
4
4
|
import { join } from "node:path";
|
|
5
5
|
import prettier from "prettier";
|
|
@@ -64,4 +64,4 @@ export class PackageJsonUpgrader extends StandardUpgrader {
|
|
|
64
64
|
}
|
|
65
65
|
}
|
|
66
66
|
//# sourceMappingURL=package-json-upgrader.js.map
|
|
67
|
-
//# debugId=
|
|
67
|
+
//# debugId=67061e6a-7cc0-5202-bd61-fdc843bd427e
|