@vm0/cli 9.177.11 → 9.177.12
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.
|
@@ -74083,7 +74083,7 @@ if (DSN) {
|
|
|
74083
74083
|
init2({
|
|
74084
74084
|
dsn: DSN,
|
|
74085
74085
|
environment: process.env.SENTRY_ENVIRONMENT ?? "production",
|
|
74086
|
-
release: "9.177.
|
|
74086
|
+
release: "9.177.12",
|
|
74087
74087
|
sendDefaultPii: false,
|
|
74088
74088
|
tracesSampleRate: 0,
|
|
74089
74089
|
shutdownTimeout: 500,
|
|
@@ -74102,7 +74102,7 @@ if (DSN) {
|
|
|
74102
74102
|
}
|
|
74103
74103
|
});
|
|
74104
74104
|
setContext("cli", {
|
|
74105
|
-
version: "9.177.
|
|
74105
|
+
version: "9.177.12",
|
|
74106
74106
|
command: process.argv.slice(2).join(" ")
|
|
74107
74107
|
});
|
|
74108
74108
|
setContext("runtime", {
|
|
@@ -105061,6 +105061,18 @@ var tavily = {
|
|
|
105061
105061
|
// ../../packages/connectors/src/connectors/test-oauth.ts
|
|
105062
105062
|
init_esm_shims();
|
|
105063
105063
|
var OAUTH_TOKEN_URL37 = "/api/test/oauth-provider/token";
|
|
105064
|
+
var TEST_OAUTH_CLIENT = {
|
|
105065
|
+
clientRegistration: "static",
|
|
105066
|
+
clientType: "confidential",
|
|
105067
|
+
clientId: "test-oauth-client",
|
|
105068
|
+
clientSecret: "test-oauth-secret"
|
|
105069
|
+
};
|
|
105070
|
+
var TEST_OAUTH_AUTH_CODE_GRANT = {
|
|
105071
|
+
kind: "auth-code",
|
|
105072
|
+
tokenUrl: OAUTH_TOKEN_URL37,
|
|
105073
|
+
scopes: ["read"]
|
|
105074
|
+
};
|
|
105075
|
+
var TEST_OAUTH_REVOKE = { kind: "none" };
|
|
105064
105076
|
var testOauth = {
|
|
105065
105077
|
"test-oauth": {
|
|
105066
105078
|
label: "Test OAuth (internal)",
|
|
@@ -105071,17 +105083,8 @@ var testOauth = {
|
|
|
105071
105083
|
featureFlag: "testOauthConnector" /* TestOauthConnector */,
|
|
105072
105084
|
label: "OAuth",
|
|
105073
105085
|
helpText: "Test-only OAuth provider. Only reachable in dev/preview.",
|
|
105074
|
-
client:
|
|
105075
|
-
|
|
105076
|
-
clientType: "confidential",
|
|
105077
|
-
clientId: "test-oauth-client",
|
|
105078
|
-
clientSecret: "test-oauth-secret"
|
|
105079
|
-
},
|
|
105080
|
-
grant: {
|
|
105081
|
-
kind: "auth-code",
|
|
105082
|
-
tokenUrl: OAUTH_TOKEN_URL37,
|
|
105083
|
-
scopes: ["read"]
|
|
105084
|
-
},
|
|
105086
|
+
client: TEST_OAUTH_CLIENT,
|
|
105087
|
+
grant: TEST_OAUTH_AUTH_CODE_GRANT,
|
|
105085
105088
|
access: {
|
|
105086
105089
|
kind: "refresh-token",
|
|
105087
105090
|
tokenUrl: OAUTH_TOKEN_URL37,
|
|
@@ -105091,7 +105094,24 @@ var testOauth = {
|
|
|
105091
105094
|
TEST_OAUTH_TOKEN: "$secrets.TEST_OAUTH_ACCESS_TOKEN"
|
|
105092
105095
|
}
|
|
105093
105096
|
},
|
|
105094
|
-
revoke:
|
|
105097
|
+
revoke: TEST_OAUTH_REVOKE
|
|
105098
|
+
},
|
|
105099
|
+
api: {
|
|
105100
|
+
featureFlag: "testOauthConnector" /* TestOauthConnector */,
|
|
105101
|
+
label: "API OAuth",
|
|
105102
|
+
helpText: "Secondary test-only OAuth method used to exercise method-aware provider registration.",
|
|
105103
|
+
client: TEST_OAUTH_CLIENT,
|
|
105104
|
+
grant: TEST_OAUTH_AUTH_CODE_GRANT,
|
|
105105
|
+
access: {
|
|
105106
|
+
kind: "refresh-token",
|
|
105107
|
+
tokenUrl: OAUTH_TOKEN_URL37,
|
|
105108
|
+
accessToken: "TEST_OAUTH_API_ACCESS_TOKEN",
|
|
105109
|
+
refreshToken: "TEST_OAUTH_API_REFRESH_TOKEN",
|
|
105110
|
+
envBindings: {
|
|
105111
|
+
TEST_OAUTH_TOKEN: "$secrets.TEST_OAUTH_API_ACCESS_TOKEN"
|
|
105112
|
+
}
|
|
105113
|
+
},
|
|
105114
|
+
revoke: TEST_OAUTH_REVOKE
|
|
105095
105115
|
}
|
|
105096
105116
|
},
|
|
105097
105117
|
defaultAuthMethod: "oauth"
|
|
@@ -108318,7 +108338,8 @@ var zeroRunRequestSchema = unifiedRunRequestSchema.omit({
|
|
|
108318
108338
|
secrets: true,
|
|
108319
108339
|
agentComposeId: true,
|
|
108320
108340
|
appendSystemPrompt: true,
|
|
108321
|
-
modelProviderType: true
|
|
108341
|
+
modelProviderType: true,
|
|
108342
|
+
permissionPolicies: true
|
|
108322
108343
|
}).extend({
|
|
108323
108344
|
agentId: external_exports.string().optional(),
|
|
108324
108345
|
modelProvider: external_exports.string().optional()
|
|
@@ -132978,4 +132999,4 @@ undici/lib/web/fetch/body.js:
|
|
|
132978
132999
|
undici/lib/web/websocket/frame.js:
|
|
132979
133000
|
(*! ws. MIT License. Einar Otto Stangvik <einaros@gmail.com> *)
|
|
132980
133001
|
*/
|
|
132981
|
-
//# sourceMappingURL=chunk-
|
|
133002
|
+
//# sourceMappingURL=chunk-6E4KIIR5.js.map
|