@usecontextlayer/ctxe 0.5.26 → 0.5.27
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.mjs +20 -4
- package/dist/cli.mjs.map +1 -1
- package/package.json +6 -6
package/dist/cli.mjs
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
2
|
|
|
3
|
-
!function(){try{var e="undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof globalThis?globalThis:"undefined"!=typeof self?self:{},n=(new e.Error).stack;n&&(e._sentryDebugIds=e._sentryDebugIds||{},e._sentryDebugIds[n]="
|
|
3
|
+
!function(){try{var e="undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof globalThis?globalThis:"undefined"!=typeof self?self:{},n=(new e.Error).stack;n&&(e._sentryDebugIds=e._sentryDebugIds||{},e._sentryDebugIds[n]="07e6e40d-dfce-516a-ba91-9350d3347197")}catch(e){}}();
|
|
4
4
|
import { createRequire } from "node:module";
|
|
5
5
|
import * as Sentry from "@sentry/node";
|
|
6
6
|
import { lstat, mkdir, readFile, readdir, rename, rm, stat, writeFile } from "node:fs/promises";
|
|
@@ -4349,7 +4349,7 @@ function normalizedKey(event) {
|
|
|
4349
4349
|
|
|
4350
4350
|
//#endregion
|
|
4351
4351
|
//#region package.json
|
|
4352
|
-
var version$1 = "0.5.
|
|
4352
|
+
var version$1 = "0.5.27";
|
|
4353
4353
|
|
|
4354
4354
|
//#endregion
|
|
4355
4355
|
//#region sentry.ts
|
|
@@ -70384,8 +70384,24 @@ const UpdateBindingInput = object$1({
|
|
|
70384
70384
|
enabled: boolean().optional(),
|
|
70385
70385
|
models: BindingModels.optionalNullable()
|
|
70386
70386
|
});
|
|
70387
|
+
const BindingAuthResourceApiKey = object$1({});
|
|
70388
|
+
const BindingAuthResourceAuthenticatedAccount = object$1({
|
|
70389
|
+
accountId: property$1("account_id", string$1()),
|
|
70390
|
+
providerId: property$1("provider_id", string$1())
|
|
70391
|
+
});
|
|
70392
|
+
const BindingAuthResourceClientCredentials = object$1({ clientId: property$1("client_id", string$1()) });
|
|
70393
|
+
const BindingAuthResourceNone = object$1({});
|
|
70394
|
+
const BindingAuthResource = union("type", {
|
|
70395
|
+
api_key: BindingAuthResourceApiKey,
|
|
70396
|
+
authenticated_account: BindingAuthResourceAuthenticatedAccount,
|
|
70397
|
+
client_credentials: BindingAuthResourceClientCredentials,
|
|
70398
|
+
none: BindingAuthResourceNone
|
|
70399
|
+
}).transform({
|
|
70400
|
+
transform: (value) => value,
|
|
70401
|
+
untransform: (value) => value
|
|
70402
|
+
});
|
|
70387
70403
|
const Binding = object$1({
|
|
70388
|
-
auth:
|
|
70404
|
+
auth: BindingAuthResource,
|
|
70389
70405
|
authType: property$1("auth_type", string$1()),
|
|
70390
70406
|
baseId: property$1("base_id", string$1()),
|
|
70391
70407
|
bindingId: property$1("binding_id", string$1()),
|
|
@@ -74847,4 +74863,4 @@ runCli().catch((error) => {
|
|
|
74847
74863
|
//#endregion
|
|
74848
74864
|
export { createProgram, resolveRepoContext, resolveRuntimePaths, runCli };
|
|
74849
74865
|
//# sourceMappingURL=cli.mjs.map
|
|
74850
|
-
//# debugId=
|
|
74866
|
+
//# debugId=07e6e40d-dfce-516a-ba91-9350d3347197
|