@google/gemini-cli-a2a-server 0.37.0-preview.0 → 0.37.0-preview.1
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/a2a-server.mjs +81 -64
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +2 -2
package/dist/a2a-server.mjs
CHANGED
|
@@ -114014,35 +114014,9 @@ var init_node = __esm({
|
|
|
114014
114014
|
}
|
|
114015
114015
|
});
|
|
114016
114016
|
|
|
114017
|
-
// packages/core/dist/src/confirmation-bus/types.js
|
|
114018
|
-
var MessageBusType, QuestionType;
|
|
114019
|
-
var init_types2 = __esm({
|
|
114020
|
-
"packages/core/dist/src/confirmation-bus/types.js"() {
|
|
114021
|
-
"use strict";
|
|
114022
|
-
init_node();
|
|
114023
|
-
(function(MessageBusType2) {
|
|
114024
|
-
MessageBusType2["TOOL_CONFIRMATION_REQUEST"] = "tool-confirmation-request";
|
|
114025
|
-
MessageBusType2["TOOL_CONFIRMATION_RESPONSE"] = "tool-confirmation-response";
|
|
114026
|
-
MessageBusType2["TOOL_POLICY_REJECTION"] = "tool-policy-rejection";
|
|
114027
|
-
MessageBusType2["TOOL_EXECUTION_SUCCESS"] = "tool-execution-success";
|
|
114028
|
-
MessageBusType2["TOOL_EXECUTION_FAILURE"] = "tool-execution-failure";
|
|
114029
|
-
MessageBusType2["UPDATE_POLICY"] = "update-policy";
|
|
114030
|
-
MessageBusType2["TOOL_CALLS_UPDATE"] = "tool-calls-update";
|
|
114031
|
-
MessageBusType2["ASK_USER_REQUEST"] = "ask-user-request";
|
|
114032
|
-
MessageBusType2["ASK_USER_RESPONSE"] = "ask-user-response";
|
|
114033
|
-
MessageBusType2["SUBAGENT_ACTIVITY"] = "subagent-activity";
|
|
114034
|
-
})(MessageBusType || (MessageBusType = {}));
|
|
114035
|
-
(function(QuestionType2) {
|
|
114036
|
-
QuestionType2["CHOICE"] = "choice";
|
|
114037
|
-
QuestionType2["TEXT"] = "text";
|
|
114038
|
-
QuestionType2["YESNO"] = "yesno";
|
|
114039
|
-
})(QuestionType || (QuestionType = {}));
|
|
114040
|
-
}
|
|
114041
|
-
});
|
|
114042
|
-
|
|
114043
114017
|
// packages/core/dist/src/policy/types.js
|
|
114044
|
-
var PolicyDecision, ApprovalMode, InProcessCheckerType, PRIORITY_SUBAGENT_TOOL, ALWAYS_ALLOW_PRIORITY_FRACTION, ALWAYS_ALLOW_PRIORITY_OFFSET, PRIORITY_YOLO_ALLOW_ALL;
|
|
114045
|
-
var
|
|
114018
|
+
var PolicyDecision, ApprovalMode, MODES_BY_PERMISSIVENESS, InProcessCheckerType, PRIORITY_SUBAGENT_TOOL, ALWAYS_ALLOW_PRIORITY_FRACTION, ALWAYS_ALLOW_PRIORITY_OFFSET, PRIORITY_YOLO_ALLOW_ALL;
|
|
114019
|
+
var init_types2 = __esm({
|
|
114046
114020
|
"packages/core/dist/src/policy/types.js"() {
|
|
114047
114021
|
"use strict";
|
|
114048
114022
|
(function(PolicyDecision2) {
|
|
@@ -114056,6 +114030,12 @@ var init_types3 = __esm({
|
|
|
114056
114030
|
ApprovalMode2["YOLO"] = "yolo";
|
|
114057
114031
|
ApprovalMode2["PLAN"] = "plan";
|
|
114058
114032
|
})(ApprovalMode || (ApprovalMode = {}));
|
|
114033
|
+
MODES_BY_PERMISSIVENESS = [
|
|
114034
|
+
ApprovalMode.PLAN,
|
|
114035
|
+
ApprovalMode.DEFAULT,
|
|
114036
|
+
ApprovalMode.AUTO_EDIT,
|
|
114037
|
+
ApprovalMode.YOLO
|
|
114038
|
+
];
|
|
114059
114039
|
(function(InProcessCheckerType2) {
|
|
114060
114040
|
InProcessCheckerType2["ALLOWED_PATH"] = "allowed-path";
|
|
114061
114041
|
InProcessCheckerType2["CONSECA"] = "conseca";
|
|
@@ -114067,6 +114047,33 @@ var init_types3 = __esm({
|
|
|
114067
114047
|
}
|
|
114068
114048
|
});
|
|
114069
114049
|
|
|
114050
|
+
// packages/core/dist/src/confirmation-bus/types.js
|
|
114051
|
+
var MessageBusType, QuestionType;
|
|
114052
|
+
var init_types3 = __esm({
|
|
114053
|
+
"packages/core/dist/src/confirmation-bus/types.js"() {
|
|
114054
|
+
"use strict";
|
|
114055
|
+
init_node();
|
|
114056
|
+
init_types2();
|
|
114057
|
+
(function(MessageBusType2) {
|
|
114058
|
+
MessageBusType2["TOOL_CONFIRMATION_REQUEST"] = "tool-confirmation-request";
|
|
114059
|
+
MessageBusType2["TOOL_CONFIRMATION_RESPONSE"] = "tool-confirmation-response";
|
|
114060
|
+
MessageBusType2["TOOL_POLICY_REJECTION"] = "tool-policy-rejection";
|
|
114061
|
+
MessageBusType2["TOOL_EXECUTION_SUCCESS"] = "tool-execution-success";
|
|
114062
|
+
MessageBusType2["TOOL_EXECUTION_FAILURE"] = "tool-execution-failure";
|
|
114063
|
+
MessageBusType2["UPDATE_POLICY"] = "update-policy";
|
|
114064
|
+
MessageBusType2["TOOL_CALLS_UPDATE"] = "tool-calls-update";
|
|
114065
|
+
MessageBusType2["ASK_USER_REQUEST"] = "ask-user-request";
|
|
114066
|
+
MessageBusType2["ASK_USER_RESPONSE"] = "ask-user-response";
|
|
114067
|
+
MessageBusType2["SUBAGENT_ACTIVITY"] = "subagent-activity";
|
|
114068
|
+
})(MessageBusType || (MessageBusType = {}));
|
|
114069
|
+
(function(QuestionType2) {
|
|
114070
|
+
QuestionType2["CHOICE"] = "choice";
|
|
114071
|
+
QuestionType2["TEXT"] = "text";
|
|
114072
|
+
QuestionType2["YESNO"] = "yesno";
|
|
114073
|
+
})(QuestionType || (QuestionType = {}));
|
|
114074
|
+
}
|
|
114075
|
+
});
|
|
114076
|
+
|
|
114070
114077
|
// packages/core/dist/src/tools/tools.js
|
|
114071
114078
|
import { randomUUID as randomUUID3 } from "node:crypto";
|
|
114072
114079
|
function isTool(obj) {
|
|
@@ -114140,8 +114147,8 @@ var init_tools = __esm({
|
|
|
114140
114147
|
init_tool_error();
|
|
114141
114148
|
init_schemaValidator();
|
|
114142
114149
|
init_markdownUtils();
|
|
114143
|
-
init_types2();
|
|
114144
114150
|
init_types3();
|
|
114151
|
+
init_types2();
|
|
114145
114152
|
BaseToolInvocation = class {
|
|
114146
114153
|
params;
|
|
114147
114154
|
messageBus;
|
|
@@ -125492,7 +125499,7 @@ var ROOT_SCHEDULER_ID, CoreToolCallStatus;
|
|
|
125492
125499
|
var init_types5 = __esm({
|
|
125493
125500
|
"packages/core/dist/src/scheduler/types.js"() {
|
|
125494
125501
|
"use strict";
|
|
125495
|
-
|
|
125502
|
+
init_types2();
|
|
125496
125503
|
ROOT_SCHEDULER_ID = "root";
|
|
125497
125504
|
(function(CoreToolCallStatus2) {
|
|
125498
125505
|
CoreToolCallStatus2["Validating"] = "validating";
|
|
@@ -210097,8 +210104,8 @@ var GIT_COMMIT_INFO, CLI_VERSION;
|
|
|
210097
210104
|
var init_git_commit = __esm({
|
|
210098
210105
|
"packages/core/dist/src/generated/git-commit.js"() {
|
|
210099
210106
|
"use strict";
|
|
210100
|
-
GIT_COMMIT_INFO = "
|
|
210101
|
-
CLI_VERSION = "0.37.0-preview.
|
|
210107
|
+
GIT_COMMIT_INFO = "24810f97e";
|
|
210108
|
+
CLI_VERSION = "0.37.0-preview.1";
|
|
210102
210109
|
}
|
|
210103
210110
|
});
|
|
210104
210111
|
|
|
@@ -333104,7 +333111,7 @@ function getVersion() {
|
|
|
333104
333111
|
}
|
|
333105
333112
|
versionPromise = (async () => {
|
|
333106
333113
|
const pkgJson = await getPackageJson(__dirname4);
|
|
333107
|
-
return "0.37.0-preview.
|
|
333114
|
+
return "0.37.0-preview.1";
|
|
333108
333115
|
})();
|
|
333109
333116
|
return versionPromise;
|
|
333110
333117
|
}
|
|
@@ -334696,7 +334703,7 @@ var init_tool_registry = __esm({
|
|
|
334696
334703
|
"packages/core/dist/src/tools/tool-registry.js"() {
|
|
334697
334704
|
"use strict";
|
|
334698
334705
|
init_tools();
|
|
334699
|
-
|
|
334706
|
+
init_types2();
|
|
334700
334707
|
init_mcp_tool();
|
|
334701
334708
|
import_shell_quote5 = __toESM(require_shell_quote(), 1);
|
|
334702
334709
|
init_tool_error();
|
|
@@ -381289,7 +381296,7 @@ var init_ask_user = __esm({
|
|
|
381289
381296
|
"use strict";
|
|
381290
381297
|
init_tools();
|
|
381291
381298
|
init_tool_error();
|
|
381292
|
-
|
|
381299
|
+
init_types3();
|
|
381293
381300
|
init_tool_names();
|
|
381294
381301
|
init_coreTools();
|
|
381295
381302
|
init_resolver();
|
|
@@ -381602,7 +381609,7 @@ function getPlanModeExitMessage(newMode, isManual = false) {
|
|
|
381602
381609
|
var init_approvalModeUtils = __esm({
|
|
381603
381610
|
"packages/core/dist/src/utils/approvalModeUtils.js"() {
|
|
381604
381611
|
"use strict";
|
|
381605
|
-
|
|
381612
|
+
init_types2();
|
|
381606
381613
|
init_checks4();
|
|
381607
381614
|
}
|
|
381608
381615
|
});
|
|
@@ -381616,7 +381623,7 @@ var init_exit_plan_mode = __esm({
|
|
|
381616
381623
|
init_tools();
|
|
381617
381624
|
init_tool_names();
|
|
381618
381625
|
init_planUtils();
|
|
381619
|
-
|
|
381626
|
+
init_types2();
|
|
381620
381627
|
init_paths();
|
|
381621
381628
|
init_loggers();
|
|
381622
381629
|
init_types7();
|
|
@@ -381784,7 +381791,7 @@ var init_enter_plan_mode = __esm({
|
|
|
381784
381791
|
"use strict";
|
|
381785
381792
|
init_tools();
|
|
381786
381793
|
init_tool_names();
|
|
381787
|
-
|
|
381794
|
+
init_types2();
|
|
381788
381795
|
init_coreTools();
|
|
381789
381796
|
init_resolver();
|
|
381790
381797
|
init_debugLogger();
|
|
@@ -384351,7 +384358,7 @@ var init_promptProvider = __esm({
|
|
|
384351
384358
|
"packages/core/dist/src/prompts/promptProvider.js"() {
|
|
384352
384359
|
"use strict";
|
|
384353
384360
|
init_paths();
|
|
384354
|
-
|
|
384361
|
+
init_types2();
|
|
384355
384362
|
init_snippets();
|
|
384356
384363
|
init_snippets_legacy();
|
|
384357
384364
|
init_utils6();
|
|
@@ -393499,7 +393506,7 @@ var init_approvalModeStrategy = __esm({
|
|
|
393499
393506
|
"packages/core/dist/src/routing/strategies/approvalModeStrategy.js"() {
|
|
393500
393507
|
"use strict";
|
|
393501
393508
|
init_models();
|
|
393502
|
-
|
|
393509
|
+
init_types2();
|
|
393503
393510
|
ApprovalModeStrategy = class {
|
|
393504
393511
|
name = "approval-mode";
|
|
393505
393512
|
async route(context2, config3, _baseLlmClient) {
|
|
@@ -395842,8 +395849,8 @@ var MessageBus;
|
|
|
395842
395849
|
var init_message_bus = __esm({
|
|
395843
395850
|
"packages/core/dist/src/confirmation-bus/message-bus.js"() {
|
|
395844
395851
|
"use strict";
|
|
395845
|
-
init_types3();
|
|
395846
395852
|
init_types2();
|
|
395853
|
+
init_types3();
|
|
395847
395854
|
init_safeJsonStringify();
|
|
395848
395855
|
init_debugLogger();
|
|
395849
395856
|
MessageBus = class _MessageBus extends EventEmitter10 {
|
|
@@ -396157,7 +396164,7 @@ var init_policy_engine = __esm({
|
|
|
396157
396164
|
init_node();
|
|
396158
396165
|
init_shell_utils();
|
|
396159
396166
|
import_shell_quote6 = __toESM(require_shell_quote(), 1);
|
|
396160
|
-
|
|
396167
|
+
init_types2();
|
|
396161
396168
|
init_stable_stringify();
|
|
396162
396169
|
init_debugLogger();
|
|
396163
396170
|
init_protocol2();
|
|
@@ -406836,7 +406843,7 @@ var init_registry = __esm({
|
|
|
406836
406843
|
init_debugLogger();
|
|
406837
406844
|
init_models();
|
|
406838
406845
|
init_modelConfigService();
|
|
406839
|
-
|
|
406846
|
+
init_types2();
|
|
406840
406847
|
init_a2a_errors();
|
|
406841
406848
|
AgentRegistry = class {
|
|
406842
406849
|
config;
|
|
@@ -407393,7 +407400,7 @@ var init_tool_utils = __esm({
|
|
|
407393
407400
|
init_src2();
|
|
407394
407401
|
init_shell_utils();
|
|
407395
407402
|
import_fast_levenshtein2 = __toESM(require_levenshtein(), 1);
|
|
407396
|
-
|
|
407403
|
+
init_types2();
|
|
407397
407404
|
init_types5();
|
|
407398
407405
|
init_tool_names();
|
|
407399
407406
|
}
|
|
@@ -407405,7 +407412,7 @@ var init_state_manager = __esm({
|
|
|
407405
407412
|
"packages/core/dist/src/scheduler/state-manager.js"() {
|
|
407406
407413
|
"use strict";
|
|
407407
407414
|
init_types5();
|
|
407408
|
-
|
|
407415
|
+
init_types3();
|
|
407409
407416
|
init_tool_utils();
|
|
407410
407417
|
init_diffOptions();
|
|
407411
407418
|
SchedulerStateManager = class {
|
|
@@ -407936,7 +407943,7 @@ async function waitForConfirmation(messageBus, correlationId, signal, ideConfirm
|
|
|
407936
407943
|
var init_confirmation = __esm({
|
|
407937
407944
|
"packages/core/dist/src/scheduler/confirmation.js"() {
|
|
407938
407945
|
"use strict";
|
|
407939
|
-
|
|
407946
|
+
init_types3();
|
|
407940
407947
|
init_tools();
|
|
407941
407948
|
init_types5();
|
|
407942
407949
|
init_editor();
|
|
@@ -407980,6 +407987,14 @@ async function updatePolicy(tool, outcome, confirmationDetails, context2, messag
|
|
|
407980
407987
|
return;
|
|
407981
407988
|
}
|
|
407982
407989
|
let persistScope;
|
|
407990
|
+
let modes;
|
|
407991
|
+
const currentMode = context2.config.getApprovalMode();
|
|
407992
|
+
if (outcome === ToolConfirmationOutcome.ProceedAlways || outcome === ToolConfirmationOutcome.ProceedAlwaysTool || outcome === ToolConfirmationOutcome.ProceedAlwaysServer || outcome === ToolConfirmationOutcome.ProceedAlwaysAndSave) {
|
|
407993
|
+
const modeIndex = MODES_BY_PERMISSIVENESS.indexOf(currentMode);
|
|
407994
|
+
if (modeIndex !== -1) {
|
|
407995
|
+
modes = MODES_BY_PERMISSIVENESS.slice(modeIndex);
|
|
407996
|
+
}
|
|
407997
|
+
}
|
|
407983
407998
|
if (outcome === ToolConfirmationOutcome.ProceedAlwaysAndSave) {
|
|
407984
407999
|
if (context2.config && context2.config.isTrustedFolder() && context2.config.getWorkspacePoliciesDir() !== void 0) {
|
|
407985
408000
|
persistScope = "workspace";
|
|
@@ -407988,15 +408003,15 @@ async function updatePolicy(tool, outcome, confirmationDetails, context2, messag
|
|
|
407988
408003
|
}
|
|
407989
408004
|
}
|
|
407990
408005
|
if (confirmationDetails?.type === "mcp") {
|
|
407991
|
-
await handleMcpPolicyUpdate(tool, outcome, confirmationDetails, messageBus, persistScope);
|
|
408006
|
+
await handleMcpPolicyUpdate(tool, outcome, confirmationDetails, messageBus, persistScope, modes);
|
|
407992
408007
|
return;
|
|
407993
408008
|
}
|
|
407994
|
-
await handleStandardPolicyUpdate(tool, outcome, confirmationDetails, messageBus, persistScope, toolInvocation, context2.config);
|
|
408009
|
+
await handleStandardPolicyUpdate(tool, outcome, confirmationDetails, messageBus, persistScope, toolInvocation, context2.config, modes);
|
|
407995
408010
|
}
|
|
407996
408011
|
function isAutoEditTransition(tool, outcome) {
|
|
407997
408012
|
return outcome === ToolConfirmationOutcome.ProceedAlways && EDIT_TOOL_NAMES.has(tool.name);
|
|
407998
408013
|
}
|
|
407999
|
-
async function handleStandardPolicyUpdate(tool, outcome, confirmationDetails, messageBus, persistScope, toolInvocation, config3) {
|
|
408014
|
+
async function handleStandardPolicyUpdate(tool, outcome, confirmationDetails, messageBus, persistScope, toolInvocation, config3, modes) {
|
|
408000
408015
|
if (outcome === ToolConfirmationOutcome.ProceedAlways || outcome === ToolConfirmationOutcome.ProceedAlwaysAndSave) {
|
|
408001
408016
|
const options = toolInvocation?.getPolicyUpdateOptions?.(outcome) || {};
|
|
408002
408017
|
if (!options.commandPrefix && confirmationDetails?.type === "exec") {
|
|
@@ -408010,11 +408025,12 @@ async function handleStandardPolicyUpdate(tool, outcome, confirmationDetails, me
|
|
|
408010
408025
|
toolName: tool.name,
|
|
408011
408026
|
persist: outcome === ToolConfirmationOutcome.ProceedAlwaysAndSave,
|
|
408012
408027
|
persistScope,
|
|
408028
|
+
modes,
|
|
408013
408029
|
...options
|
|
408014
408030
|
});
|
|
408015
408031
|
}
|
|
408016
408032
|
}
|
|
408017
|
-
async function handleMcpPolicyUpdate(tool, outcome, confirmationDetails, messageBus, persistScope) {
|
|
408033
|
+
async function handleMcpPolicyUpdate(tool, outcome, confirmationDetails, messageBus, persistScope, modes) {
|
|
408018
408034
|
const isMcpAlways = outcome === ToolConfirmationOutcome.ProceedAlways || outcome === ToolConfirmationOutcome.ProceedAlwaysTool || outcome === ToolConfirmationOutcome.ProceedAlwaysServer || outcome === ToolConfirmationOutcome.ProceedAlwaysAndSave;
|
|
408019
408035
|
if (!isMcpAlways) {
|
|
408020
408036
|
return;
|
|
@@ -408029,15 +408045,16 @@ async function handleMcpPolicyUpdate(tool, outcome, confirmationDetails, message
|
|
|
408029
408045
|
toolName,
|
|
408030
408046
|
mcpName: confirmationDetails.serverName,
|
|
408031
408047
|
persist,
|
|
408032
|
-
persistScope
|
|
408048
|
+
persistScope,
|
|
408049
|
+
modes
|
|
408033
408050
|
});
|
|
408034
408051
|
}
|
|
408035
408052
|
var init_policy = __esm({
|
|
408036
408053
|
"packages/core/dist/src/scheduler/policy.js"() {
|
|
408037
408054
|
"use strict";
|
|
408038
408055
|
init_tool_error();
|
|
408039
|
-
init_types3();
|
|
408040
408056
|
init_types2();
|
|
408057
|
+
init_types3();
|
|
408041
408058
|
init_tools();
|
|
408042
408059
|
init_utils4();
|
|
408043
408060
|
init_paths();
|
|
@@ -408768,13 +408785,13 @@ var init_scheduler2 = __esm({
|
|
|
408768
408785
|
init_types5();
|
|
408769
408786
|
init_tool_error();
|
|
408770
408787
|
init_tool_names();
|
|
408771
|
-
|
|
408788
|
+
init_types2();
|
|
408772
408789
|
init_tools();
|
|
408773
408790
|
init_tool_utils();
|
|
408774
408791
|
init_trace3();
|
|
408775
408792
|
init_loggers();
|
|
408776
408793
|
init_types7();
|
|
408777
|
-
|
|
408794
|
+
init_types3();
|
|
408778
408795
|
init_toolCallContext();
|
|
408779
408796
|
init_events();
|
|
408780
408797
|
init_constants2();
|
|
@@ -410557,7 +410574,7 @@ var init_local_invocation = __esm({
|
|
|
410557
410574
|
"packages/core/dist/src/agents/local-invocation.js"() {
|
|
410558
410575
|
"use strict";
|
|
410559
410576
|
init_agent_loop_context();
|
|
410560
|
-
|
|
410577
|
+
init_types3();
|
|
410561
410578
|
init_local_executor();
|
|
410562
410579
|
init_tools();
|
|
410563
410580
|
init_types18();
|
|
@@ -412561,7 +412578,7 @@ var init_browserAgentFactory = __esm({
|
|
|
412561
412578
|
init_automationOverlay();
|
|
412562
412579
|
init_inputBlocker();
|
|
412563
412580
|
init_debugLogger();
|
|
412564
|
-
|
|
412581
|
+
init_types2();
|
|
412565
412582
|
}
|
|
412566
412583
|
});
|
|
412567
412584
|
|
|
@@ -413826,7 +413843,7 @@ var import_fast_levenshtein3, import_toml2, MAX_TYPO_DISTANCE, PolicyRuleSchema,
|
|
|
413826
413843
|
var init_toml_loader = __esm({
|
|
413827
413844
|
"packages/core/dist/src/policy/toml-loader.js"() {
|
|
413828
413845
|
"use strict";
|
|
413829
|
-
|
|
413846
|
+
init_types2();
|
|
413830
413847
|
init_utils4();
|
|
413831
413848
|
init_tool_names();
|
|
413832
413849
|
init_tool_utils();
|
|
@@ -413912,11 +413929,11 @@ var init_config3 = __esm({
|
|
|
413912
413929
|
"packages/core/dist/src/policy/config.js"() {
|
|
413913
413930
|
"use strict";
|
|
413914
413931
|
init_storage();
|
|
413915
|
-
|
|
413932
|
+
init_types2();
|
|
413916
413933
|
init_toml_loader();
|
|
413917
413934
|
init_utils4();
|
|
413918
413935
|
import_toml3 = __toESM(require_toml(), 1);
|
|
413919
|
-
|
|
413936
|
+
init_types3();
|
|
413920
413937
|
init_message_bus();
|
|
413921
413938
|
init_events();
|
|
413922
413939
|
init_debugLogger();
|
|
@@ -414685,7 +414702,7 @@ var init_registry2 = __esm({
|
|
|
414685
414702
|
"packages/core/dist/src/safety/registry.js"() {
|
|
414686
414703
|
"use strict";
|
|
414687
414704
|
init_built_in();
|
|
414688
|
-
|
|
414705
|
+
init_types2();
|
|
414689
414706
|
init_conseca();
|
|
414690
414707
|
CheckerRegistry = class _CheckerRegistry {
|
|
414691
414708
|
checkersPath;
|
|
@@ -436593,7 +436610,7 @@ var init_config4 = __esm({
|
|
|
436593
436610
|
init_ignorePatterns();
|
|
436594
436611
|
init_message_bus();
|
|
436595
436612
|
init_policy_engine();
|
|
436596
|
-
|
|
436613
|
+
init_types2();
|
|
436597
436614
|
init_hooks();
|
|
436598
436615
|
init_codeAssist();
|
|
436599
436616
|
init_experiments();
|
|
@@ -442745,7 +442762,7 @@ var init_src2 = __esm({
|
|
|
442745
442762
|
init_types17();
|
|
442746
442763
|
init_json_formatter();
|
|
442747
442764
|
init_stream_json_formatter();
|
|
442748
|
-
|
|
442765
|
+
init_types2();
|
|
442749
442766
|
init_policy_engine();
|
|
442750
442767
|
init_toml_loader();
|
|
442751
442768
|
init_config3();
|
|
@@ -442753,7 +442770,7 @@ var init_src2 = __esm({
|
|
|
442753
442770
|
init_integrity2();
|
|
442754
442771
|
init_integrityTypes();
|
|
442755
442772
|
init_billing2();
|
|
442756
|
-
|
|
442773
|
+
init_types3();
|
|
442757
442774
|
init_message_bus();
|
|
442758
442775
|
init_extensions();
|
|
442759
442776
|
init_restore();
|
|
@@ -442815,7 +442832,7 @@ var init_src2 = __esm({
|
|
|
442815
442832
|
init_fileDiffUtils();
|
|
442816
442833
|
init_retry();
|
|
442817
442834
|
init_shell_utils();
|
|
442818
|
-
|
|
442835
|
+
init_types2();
|
|
442819
442836
|
init_tool_utils();
|
|
442820
442837
|
init_terminalSerializer();
|
|
442821
442838
|
init_systemEncoding();
|