@yansigit/opencodex 2.33.0 → 2.35.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/README.md +3 -3
- package/gui/dist/assets/index-BjCaHxdz.js +112 -0
- package/gui/dist/assets/index-DLkXOXLC.css +1 -0
- package/gui/dist/index.html +2 -2
- package/package.json +1 -1
- package/src/adapters/anthropic.ts +79 -2
- package/src/adapters/command-code.ts +141 -23
- package/src/adapters/cursor/call-id.ts +44 -0
- package/src/adapters/cursor/checkpoint-store.ts +15 -10
- package/src/adapters/cursor/discovery.ts +60 -2
- package/src/adapters/cursor/effort-map.ts +79 -1
- package/src/adapters/cursor/envelope-echo.ts +162 -0
- package/src/adapters/cursor/live-models.ts +7 -2
- package/src/adapters/cursor/live-transport.ts +17 -1
- package/src/adapters/cursor/message-mapper.ts +4 -1
- package/src/adapters/cursor/native-exec-fs.ts +13 -12
- package/src/adapters/cursor/native-exec-network.ts +3 -5
- package/src/adapters/cursor/native-exec-policy.ts +47 -0
- package/src/adapters/cursor/native-exec-shell.ts +116 -31
- package/src/adapters/cursor/native-exec.ts +38 -10
- package/src/adapters/cursor/protobuf-events.ts +28 -2
- package/src/adapters/cursor/protobuf-request.ts +93 -41
- package/src/adapters/cursor/request-builder.ts +39 -10
- package/src/adapters/cursor/tool-definitions.ts +27 -3
- package/src/adapters/cursor/tool-result-normalize.ts +51 -6
- package/src/adapters/cursor/types.ts +23 -4
- package/src/adapters/cursor.ts +170 -29
- package/src/adapters/google-aistudio-parser.ts +49 -0
- package/src/adapters/google-antigravity-replay.ts +105 -25
- package/src/adapters/google-antigravity-wire.ts +5 -0
- package/src/adapters/google-errors.ts +41 -12
- package/src/adapters/google-http.ts +12 -11
- package/src/adapters/google.ts +219 -36
- package/src/adapters/image.ts +1 -1
- package/src/adapters/kiro-constants.ts +15 -0
- package/src/adapters/kiro-tools.ts +43 -15
- package/src/adapters/kiro.ts +54 -9
- package/src/adapters/openai-chat.ts +286 -242
- package/src/adapters/openai-responses.ts +335 -24
- package/src/adapters/run-turn-queue.ts +36 -1
- package/src/adapters/tool-catalog-nudge.ts +2 -2
- package/src/adapters/xai-tool-schema.ts +436 -0
- package/src/bridge.ts +67 -26
- package/src/chat/inbound.ts +29 -1
- package/src/chat/outbound.ts +15 -7
- package/src/claude/agents-inject.ts +8 -1
- package/src/claude/outbound.ts +10 -8
- package/src/cli/account-api.ts +27 -7
- package/src/cli/account-extended.ts +10 -3
- package/src/cli/account.ts +29 -5
- package/src/cli/alias.ts +66 -0
- package/src/cli/claude.ts +26 -1
- package/src/cli/dispatch.ts +13 -1
- package/src/cli/help.ts +1 -0
- package/src/cli/index.ts +6 -1
- package/src/cli/init.ts +1 -0
- package/src/cli/models-runtime.ts +95 -0
- package/src/cli/models.ts +13 -7
- package/src/cli/provider-runtime.ts +16 -2
- package/src/cli/registry.ts +6 -1
- package/src/cli/telemetry-commands.ts +25 -0
- package/src/cli/v2.ts +34 -10
- package/src/codex/account-pause.ts +2 -1
- package/src/codex/account-priority.ts +3 -2
- package/src/codex/app-server-processes.ts +80 -6
- package/src/codex/auth-api.ts +48 -8
- package/src/codex/auth-context.ts +21 -18
- package/src/codex/catalog/aggregation.ts +6 -0
- package/src/codex/catalog/model-metadata.ts +13 -1
- package/src/codex/catalog/native-models.ts +5 -2
- package/src/codex/catalog/parsing.ts +16 -0
- package/src/codex/catalog/provider-fetch.ts +20 -3
- package/src/codex/catalog/sync.ts +127 -2
- package/src/codex/catalog.ts +1 -1
- package/src/codex/codex-write-lock.ts +3 -1
- package/src/codex/convergence-types.ts +1 -1
- package/src/codex/convergence.ts +22 -2
- package/src/codex/desired-state.ts +2 -2
- package/src/codex/desktop-app-restart.ts +18 -5
- package/src/codex/inject-coordination.ts +83 -0
- package/src/codex/inject.ts +14 -1
- package/src/codex/log-guard/inspect.ts +22 -4
- package/src/codex/model-entitlements.ts +9 -2
- package/src/codex/prompt-layers.ts +371 -25
- package/src/codex/prompt-text-probe.ts +238 -0
- package/src/codex/quota.ts +123 -18
- package/src/codex/routing.ts +9 -0
- package/src/codex/subagent-model-fallback.ts +198 -27
- package/src/codex/transition-state.ts +107 -8
- package/src/combos/types.ts +10 -0
- package/src/compatibility/openai-responses.ts +33 -1
- package/src/config/autonomous-remediation.ts +21 -0
- package/src/config/provider-validation.ts +14 -0
- package/src/config/rebase-provenance.ts +68 -0
- package/src/config.ts +191 -17
- package/src/generated/compatibility-version.json +279 -159
- package/src/generated/model-metadata.ts +3 -0
- package/src/images/loop.ts +5 -4
- package/src/lab/conformance/fixtures/protocol-v1-cases.json +1 -1
- package/src/lab/fabric/producer-child.ts +1 -1
- package/src/lib/config-ownership.ts +20 -0
- package/src/lib/errors.ts +11 -2
- package/src/lib/package-tree-integrity.ts +101 -0
- package/src/oauth/aistudio-credentials.ts +65 -0
- package/src/oauth/aistudio-native-daemon.ts +116 -0
- package/src/oauth/aistudio-session-sync.ts +95 -0
- package/src/oauth/generic-account-failover.ts +231 -0
- package/src/oauth/google-aistudio-auth.ts +98 -0
- package/src/oauth/index.ts +57 -5
- package/src/oauth/key-providers.ts +18 -1
- package/src/oauth/kiro.ts +45 -0
- package/src/oauth/login-cli.ts +65 -1
- package/src/oauth/types.ts +15 -0
- package/src/providers/codex-capacity.ts +5 -2
- package/src/providers/command-code-efforts.ts +38 -6
- package/src/providers/context-cap.ts +4 -3
- package/src/providers/default-aliases.ts +65 -0
- package/src/providers/derive.ts +29 -1
- package/src/providers/fastwire.ts +7 -1
- package/src/providers/model-presets.ts +119 -0
- package/src/providers/new-model-policy.ts +146 -0
- package/src/providers/provider-id-rewrite.ts +2 -1
- package/src/providers/quota.ts +157 -46
- package/src/providers/registry.ts +184 -71
- package/src/providers/slug-codec.ts +52 -0
- package/src/responses/code-mode-helper-compat.ts +50 -0
- package/src/responses/custom-tool-compat.ts +34 -10
- package/src/responses/parser.ts +4 -0
- package/src/responses/schema.ts +5 -1
- package/src/responses/thought-signature-replay.ts +17 -0
- package/src/router.ts +43 -2
- package/src/routing/account-pool/cooldown.ts +8 -0
- package/src/routing/account-pool/index.ts +1 -0
- package/src/routing/analytics.ts +1 -0
- package/src/routing/quota.ts +10 -0
- package/src/server/auth-cors.ts +24 -0
- package/src/server/chat-completions.ts +26 -16
- package/src/server/chat-native-sse.ts +3 -3
- package/src/server/chat-native.ts +30 -11
- package/src/server/claude-messages.ts +1 -1
- package/src/server/effort-policy.ts +16 -0
- package/src/server/index.ts +180 -14
- package/src/server/lifecycle.ts +52 -1
- package/src/server/management/agent-settings-routes.ts +31 -15
- package/src/server/management/codex-prompt-routes.ts +570 -0
- package/src/server/management/combo-routes.ts +2 -1
- package/src/server/management/config-routes.ts +27 -9
- package/src/server/management/context.ts +9 -0
- package/src/server/management/logs-usage-routes.ts +11 -5
- package/src/server/management/model-routes.ts +266 -0
- package/src/server/management/oauth-account-routes.ts +13 -3
- package/src/server/management/provider-routes.ts +137 -3
- package/src/server/management/routing-profile-routes.ts +2 -2
- package/src/server/management-api.ts +2 -0
- package/src/server/port-reclaim.ts +19 -1
- package/src/server/relay-eager.ts +147 -20
- package/src/server/relay.ts +251 -19
- package/src/server/request-log-conversation.ts +33 -0
- package/src/server/request-log.ts +48 -21
- package/src/server/responses/collaboration.ts +42 -5
- package/src/server/responses/combo-stream-preflight.ts +10 -3
- package/src/server/responses/core.ts +575 -140
- package/src/server/responses/empty-completion-guard.ts +35 -0
- package/src/server/responses/fetch-helpers.ts +14 -6
- package/src/server/responses/input-admission.ts +3 -1
- package/src/server/responses/passthrough-error.ts +33 -9
- package/src/server/responses/policy-fallback.ts +1 -1
- package/src/server/responses/responses-field-backfill.ts +105 -13
- package/src/server/responses/ws-upstream.ts +35 -5
- package/src/server/responses-custom-tool-repair.ts +52 -7
- package/src/server/responses-terminal-repair.ts +25 -4
- package/src/server/sse-frame-buffer.ts +31 -4
- package/src/server/ws-bridge.ts +14 -2
- package/src/smoke/fingerprint-cache.ts +133 -0
- package/src/smoke/live-scenarios.ts +33 -0
- package/src/smoke/runner.ts +119 -0
- package/src/telemetry/dispatcher.ts +44 -0
- package/src/telemetry/fingerprint.ts +24 -0
- package/src/telemetry/hook.ts +43 -0
- package/src/telemetry/ledger.ts +54 -0
- package/src/telemetry/types.ts +23 -0
- package/src/types/config.ts +66 -14
- package/src/types/provider.ts +79 -1
- package/src/types/request.ts +18 -10
- package/src/types/tools.ts +30 -11
- package/src/types.ts +1 -0
- package/src/usage/command-code-manifest.ts +116 -0
- package/src/usage/cost.ts +2 -2
- package/src/usage/expected-prices.ts +126 -24
- package/src/usage/log.ts +18 -8
- package/src/usage/summary.ts +34 -12
- package/src/web-search/exa-executor.ts +40 -9
- package/src/web-search/index.ts +16 -8
- package/src/web-search/loop.ts +5 -4
- package/gui/dist/assets/index-DKLr4LTE.js +0 -102
- package/gui/dist/assets/index-DrSQdTRd.css +0 -1
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
},
|
|
11
11
|
{
|
|
12
12
|
"path": "package.json",
|
|
13
|
-
"sha256": "
|
|
13
|
+
"sha256": "46894baa3708f660cf9bac37d2a86dda4a17245403a603ee4f913e06a2b98390"
|
|
14
14
|
},
|
|
15
15
|
{
|
|
16
16
|
"path": "scripts/model-metadata.source.json",
|
|
@@ -34,7 +34,7 @@
|
|
|
34
34
|
},
|
|
35
35
|
{
|
|
36
36
|
"path": "src/adapters/anthropic.ts",
|
|
37
|
-
"sha256": "
|
|
37
|
+
"sha256": "55293b8025c943b98e9f8e73c9ac475cff83947172abb6c9a6f0715457ea21a5"
|
|
38
38
|
},
|
|
39
39
|
{
|
|
40
40
|
"path": "src/adapters/azure.ts",
|
|
@@ -58,11 +58,11 @@
|
|
|
58
58
|
},
|
|
59
59
|
{
|
|
60
60
|
"path": "src/adapters/command-code.ts",
|
|
61
|
-
"sha256": "
|
|
61
|
+
"sha256": "ccd77fc6c00ca0010272b2338889ca1026324d634f86329c5b0c0f67d87ca402"
|
|
62
62
|
},
|
|
63
63
|
{
|
|
64
64
|
"path": "src/adapters/cursor.ts",
|
|
65
|
-
"sha256": "
|
|
65
|
+
"sha256": "c9adbdf7dbacb349851bae892b9eeaed5196ffecb0171ae3fb327bcd23e2d17d"
|
|
66
66
|
},
|
|
67
67
|
{
|
|
68
68
|
"path": "src/adapters/cursor/arg-codec.ts",
|
|
@@ -72,9 +72,13 @@
|
|
|
72
72
|
"path": "src/adapters/cursor/arg-normalize.ts",
|
|
73
73
|
"sha256": "22653d0079149de74d3b2d2b8af13768a3e1e0e9e676a9452c987f723cbe40b6"
|
|
74
74
|
},
|
|
75
|
+
{
|
|
76
|
+
"path": "src/adapters/cursor/call-id.ts",
|
|
77
|
+
"sha256": "85f777eeaae5336851ab9752b638974851dc5e9b687f945f8cc503dde4e7efdf"
|
|
78
|
+
},
|
|
75
79
|
{
|
|
76
80
|
"path": "src/adapters/cursor/checkpoint-store.ts",
|
|
77
|
-
"sha256": "
|
|
81
|
+
"sha256": "44985c12b4424fed06b376a66ed271cf1b4b5a146b0a539293412e56aeef4a00"
|
|
78
82
|
},
|
|
79
83
|
{
|
|
80
84
|
"path": "src/adapters/cursor/cursor-errors.ts",
|
|
@@ -82,11 +86,15 @@
|
|
|
82
86
|
},
|
|
83
87
|
{
|
|
84
88
|
"path": "src/adapters/cursor/discovery.ts",
|
|
85
|
-
"sha256": "
|
|
89
|
+
"sha256": "40346eab4c211a631a329535102e4f228d2b3d4b005abc4ebb34c5033e772e01"
|
|
86
90
|
},
|
|
87
91
|
{
|
|
88
92
|
"path": "src/adapters/cursor/effort-map.ts",
|
|
89
|
-
"sha256": "
|
|
93
|
+
"sha256": "b7f569daea783b2c81977436a905d1e09140db1572279aba6837d882c416b629"
|
|
94
|
+
},
|
|
95
|
+
{
|
|
96
|
+
"path": "src/adapters/cursor/envelope-echo.ts",
|
|
97
|
+
"sha256": "db342228d6398dba2351cb629f962fbc7860293b8ecaa71991103fef07172624"
|
|
90
98
|
},
|
|
91
99
|
{
|
|
92
100
|
"path": "src/adapters/cursor/exec-policy.ts",
|
|
@@ -118,7 +126,7 @@
|
|
|
118
126
|
},
|
|
119
127
|
{
|
|
120
128
|
"path": "src/adapters/cursor/live-models.ts",
|
|
121
|
-
"sha256": "
|
|
129
|
+
"sha256": "9be954e802c6fbcf2ca866ae851b7fd48bb6f9a39acda1ff421c80b311f6e73a"
|
|
122
130
|
},
|
|
123
131
|
{
|
|
124
132
|
"path": "src/adapters/cursor/live-smoke-gate.ts",
|
|
@@ -126,7 +134,7 @@
|
|
|
126
134
|
},
|
|
127
135
|
{
|
|
128
136
|
"path": "src/adapters/cursor/live-transport.ts",
|
|
129
|
-
"sha256": "
|
|
137
|
+
"sha256": "ae211bc368cc5436734975ad1e0c89ae2856610ab26bfed75eec2cf4303bcf41"
|
|
130
138
|
},
|
|
131
139
|
{
|
|
132
140
|
"path": "src/adapters/cursor/mcp-config.ts",
|
|
@@ -138,7 +146,7 @@
|
|
|
138
146
|
},
|
|
139
147
|
{
|
|
140
148
|
"path": "src/adapters/cursor/message-mapper.ts",
|
|
141
|
-
"sha256": "
|
|
149
|
+
"sha256": "cf5ad7878ab7fd53dcd95eb57907a27c038ebdd35b01bca7aeb5011b852eb442"
|
|
142
150
|
},
|
|
143
151
|
{
|
|
144
152
|
"path": "src/adapters/cursor/native-exec-bridge.ts",
|
|
@@ -154,7 +162,7 @@
|
|
|
154
162
|
},
|
|
155
163
|
{
|
|
156
164
|
"path": "src/adapters/cursor/native-exec-fs.ts",
|
|
157
|
-
"sha256": "
|
|
165
|
+
"sha256": "ddeb15ef6d52d88149c3c69157e4157abb2a1871f49715fd8084abde673f2337"
|
|
158
166
|
},
|
|
159
167
|
{
|
|
160
168
|
"path": "src/adapters/cursor/native-exec-mcp.ts",
|
|
@@ -162,11 +170,15 @@
|
|
|
162
170
|
},
|
|
163
171
|
{
|
|
164
172
|
"path": "src/adapters/cursor/native-exec-network.ts",
|
|
165
|
-
"sha256": "
|
|
173
|
+
"sha256": "79c60670bc0beaeb2dab9f63ffbdd0959436b929432c11cc18d095af2ca28466"
|
|
174
|
+
},
|
|
175
|
+
{
|
|
176
|
+
"path": "src/adapters/cursor/native-exec-policy.ts",
|
|
177
|
+
"sha256": "8865ed8638c08c6b0e6e90fd5a9a34c8b54cce168670ce248d086ca72a917124"
|
|
166
178
|
},
|
|
167
179
|
{
|
|
168
180
|
"path": "src/adapters/cursor/native-exec-shell.ts",
|
|
169
|
-
"sha256": "
|
|
181
|
+
"sha256": "71b4a624d3b7b50085ae6a4b2a12408735fd5bebd12f1562ef06a1046f40c909"
|
|
170
182
|
},
|
|
171
183
|
{
|
|
172
184
|
"path": "src/adapters/cursor/native-exec-tools.ts",
|
|
@@ -174,19 +186,19 @@
|
|
|
174
186
|
},
|
|
175
187
|
{
|
|
176
188
|
"path": "src/adapters/cursor/native-exec.ts",
|
|
177
|
-
"sha256": "
|
|
189
|
+
"sha256": "3b24da35d10be0008c37b30b98ee912af1f609398737cc15cecda30f9e223428"
|
|
178
190
|
},
|
|
179
191
|
{
|
|
180
192
|
"path": "src/adapters/cursor/protobuf-events.ts",
|
|
181
|
-
"sha256": "
|
|
193
|
+
"sha256": "784b452fee1c942ca498a7a0198a4fd1436ab05bef0fa6577d957b34990c35e6"
|
|
182
194
|
},
|
|
183
195
|
{
|
|
184
196
|
"path": "src/adapters/cursor/protobuf-request.ts",
|
|
185
|
-
"sha256": "
|
|
197
|
+
"sha256": "c81f18f64dc1adc8be5d950e229c27eb6da811a47378048752e5e54eac5ab4e6"
|
|
186
198
|
},
|
|
187
199
|
{
|
|
188
200
|
"path": "src/adapters/cursor/request-builder.ts",
|
|
189
|
-
"sha256": "
|
|
201
|
+
"sha256": "c6d7591d28f835d5056578febe16651ebff0b262a7eca04c91eddd7ed8d581bd"
|
|
190
202
|
},
|
|
191
203
|
{
|
|
192
204
|
"path": "src/adapters/cursor/thread-continuity.ts",
|
|
@@ -194,11 +206,11 @@
|
|
|
194
206
|
},
|
|
195
207
|
{
|
|
196
208
|
"path": "src/adapters/cursor/tool-definitions.ts",
|
|
197
|
-
"sha256": "
|
|
209
|
+
"sha256": "da2b60c6f1aa8aea07ca03eb562b17a0f4063f1fd6c3041d2b88300360da43b1"
|
|
198
210
|
},
|
|
199
211
|
{
|
|
200
212
|
"path": "src/adapters/cursor/tool-result-normalize.ts",
|
|
201
|
-
"sha256": "
|
|
213
|
+
"sha256": "e210e1e5d603dbe568b74a0cce64886581dd86bb70d8412012354460597b9423"
|
|
202
214
|
},
|
|
203
215
|
{
|
|
204
216
|
"path": "src/adapters/cursor/transport-retry.ts",
|
|
@@ -210,7 +222,11 @@
|
|
|
210
222
|
},
|
|
211
223
|
{
|
|
212
224
|
"path": "src/adapters/cursor/types.ts",
|
|
213
|
-
"sha256": "
|
|
225
|
+
"sha256": "a8d45b8556a0d1542035b654414841bf61e677fb4d19321e71cc9acee623a48e"
|
|
226
|
+
},
|
|
227
|
+
{
|
|
228
|
+
"path": "src/adapters/google-aistudio-parser.ts",
|
|
229
|
+
"sha256": "bf22ec0dc1731f60039d28d8037414a3579ed59501c4a5b28e9ee10c3386c87c"
|
|
214
230
|
},
|
|
215
231
|
{
|
|
216
232
|
"path": "src/adapters/google-antigravity-hosts.ts",
|
|
@@ -218,7 +234,7 @@
|
|
|
218
234
|
},
|
|
219
235
|
{
|
|
220
236
|
"path": "src/adapters/google-antigravity-replay.ts",
|
|
221
|
-
"sha256": "
|
|
237
|
+
"sha256": "b43e2f6ffa9e719bc2e106e44f439215e6c1ca3e18dc9449257c8de7d079ce4a"
|
|
222
238
|
},
|
|
223
239
|
{
|
|
224
240
|
"path": "src/adapters/google-antigravity-tools.ts",
|
|
@@ -226,15 +242,15 @@
|
|
|
226
242
|
},
|
|
227
243
|
{
|
|
228
244
|
"path": "src/adapters/google-antigravity-wire.ts",
|
|
229
|
-
"sha256": "
|
|
245
|
+
"sha256": "0f8c28a9a813568d2ea14ba34d9dcc0da912a6e9990cedae264c9f8883477eb4"
|
|
230
246
|
},
|
|
231
247
|
{
|
|
232
248
|
"path": "src/adapters/google-errors.ts",
|
|
233
|
-
"sha256": "
|
|
249
|
+
"sha256": "a615941396fa7e855c4d722dee6db29141b87f8c89722ae3ff80416cc2da6491"
|
|
234
250
|
},
|
|
235
251
|
{
|
|
236
252
|
"path": "src/adapters/google-http.ts",
|
|
237
|
-
"sha256": "
|
|
253
|
+
"sha256": "0fe166d9419ad18bdfdd6933df20ff7551485c1879a5cc0e89c90b23a10ff07e"
|
|
238
254
|
},
|
|
239
255
|
{
|
|
240
256
|
"path": "src/adapters/google-tool-schema.ts",
|
|
@@ -250,7 +266,7 @@
|
|
|
250
266
|
},
|
|
251
267
|
{
|
|
252
268
|
"path": "src/adapters/google.ts",
|
|
253
|
-
"sha256": "
|
|
269
|
+
"sha256": "6f789f6da2437623f613f7f1c26a8fc71e25a682914f521f52e43e99f441f930"
|
|
254
270
|
},
|
|
255
271
|
{
|
|
256
272
|
"path": "src/adapters/identity.ts",
|
|
@@ -258,11 +274,11 @@
|
|
|
258
274
|
},
|
|
259
275
|
{
|
|
260
276
|
"path": "src/adapters/image.ts",
|
|
261
|
-
"sha256": "
|
|
277
|
+
"sha256": "22050d49c59581ab4a3db7d64c73d0cce3eed2274bdd9bd0ae4a78fbfdb4e71e"
|
|
262
278
|
},
|
|
263
279
|
{
|
|
264
280
|
"path": "src/adapters/kiro-constants.ts",
|
|
265
|
-
"sha256": "
|
|
281
|
+
"sha256": "9cc26857a7723e3a2763af8b2d32a717069f107a4e95f06e910d0ecde3bcc3e7"
|
|
266
282
|
},
|
|
267
283
|
{
|
|
268
284
|
"path": "src/adapters/kiro-errors.ts",
|
|
@@ -290,7 +306,7 @@
|
|
|
290
306
|
},
|
|
291
307
|
{
|
|
292
308
|
"path": "src/adapters/kiro-tools.ts",
|
|
293
|
-
"sha256": "
|
|
309
|
+
"sha256": "e95c33d75f4562eb3245de75c384a1a071d775db5c340a2a503a5b0a5d9d96c0"
|
|
294
310
|
},
|
|
295
311
|
{
|
|
296
312
|
"path": "src/adapters/kiro-truncation.ts",
|
|
@@ -302,7 +318,7 @@
|
|
|
302
318
|
},
|
|
303
319
|
{
|
|
304
320
|
"path": "src/adapters/kiro.ts",
|
|
305
|
-
"sha256": "
|
|
321
|
+
"sha256": "0d6b6a0f1729f10a5412147f272f92bed01344b79985ea5f40279ef4f6a12acd"
|
|
306
322
|
},
|
|
307
323
|
{
|
|
308
324
|
"path": "src/adapters/mimo-free.ts",
|
|
@@ -314,7 +330,7 @@
|
|
|
314
330
|
},
|
|
315
331
|
{
|
|
316
332
|
"path": "src/adapters/openai-chat.ts",
|
|
317
|
-
"sha256": "
|
|
333
|
+
"sha256": "3154cd33966d07e6498c8dc5c27c70e7897987d46d44f9a561f4efa95c40de9c"
|
|
318
334
|
},
|
|
319
335
|
{
|
|
320
336
|
"path": "src/adapters/openai-responses-url.ts",
|
|
@@ -322,7 +338,7 @@
|
|
|
322
338
|
},
|
|
323
339
|
{
|
|
324
340
|
"path": "src/adapters/openai-responses.ts",
|
|
325
|
-
"sha256": "
|
|
341
|
+
"sha256": "76f9243d893c5275cdfafcd51a8d0a4205451ef0668d7608f1320ff926fe5a16"
|
|
326
342
|
},
|
|
327
343
|
{
|
|
328
344
|
"path": "src/adapters/registry.ts",
|
|
@@ -334,7 +350,7 @@
|
|
|
334
350
|
},
|
|
335
351
|
{
|
|
336
352
|
"path": "src/adapters/run-turn-queue.ts",
|
|
337
|
-
"sha256": "
|
|
353
|
+
"sha256": "31b12f11c9c35f3e499c418bf943762f299755d8a68d7bba9fa9371fa5684a43"
|
|
338
354
|
},
|
|
339
355
|
{
|
|
340
356
|
"path": "src/adapters/tool-call-id.ts",
|
|
@@ -342,31 +358,35 @@
|
|
|
342
358
|
},
|
|
343
359
|
{
|
|
344
360
|
"path": "src/adapters/tool-catalog-nudge.ts",
|
|
345
|
-
"sha256": "
|
|
361
|
+
"sha256": "1d32120812b42da60ed24aceecd30fcf94fd2d5cb0a1e65d9fc9198512706b34"
|
|
346
362
|
},
|
|
347
363
|
{
|
|
348
364
|
"path": "src/adapters/upstream-http-error.ts",
|
|
349
365
|
"sha256": "4875e77e46d96131e7a3e6c0feb15a54ffcb3901efceac2360abe28b7a0f414b"
|
|
350
366
|
},
|
|
367
|
+
{
|
|
368
|
+
"path": "src/adapters/xai-tool-schema.ts",
|
|
369
|
+
"sha256": "df21d012458ceb9dd3ba266465a151e024a48e3e1c76b97a7d9cda31da50750d"
|
|
370
|
+
},
|
|
351
371
|
{
|
|
352
372
|
"path": "src/adapters/xai-web-search.ts",
|
|
353
373
|
"sha256": "4faee031b25e97d2d2131b3f93995b913fd318f318bf066beaa1638fcf8876d4"
|
|
354
374
|
},
|
|
355
375
|
{
|
|
356
376
|
"path": "src/bridge.ts",
|
|
357
|
-
"sha256": "
|
|
377
|
+
"sha256": "bb462cbbdb198dcf0b90b5bf57c85c009ce4521362bb7400a6323ccb49d9c24c"
|
|
358
378
|
},
|
|
359
379
|
{
|
|
360
380
|
"path": "src/chat/inbound.ts",
|
|
361
|
-
"sha256": "
|
|
381
|
+
"sha256": "4e6b5e699859168fcb2c7beb968ab5074aeb7b53e26a3268fa9d77ef744171c2"
|
|
362
382
|
},
|
|
363
383
|
{
|
|
364
384
|
"path": "src/chat/outbound.ts",
|
|
365
|
-
"sha256": "
|
|
385
|
+
"sha256": "59ba1a09aca598b43812abbe740ebd3cdac95f8055e44c0eb6301c241767913a"
|
|
366
386
|
},
|
|
367
387
|
{
|
|
368
388
|
"path": "src/claude/agents-inject.ts",
|
|
369
|
-
"sha256": "
|
|
389
|
+
"sha256": "977fdd1942224074eb704ab03c71350a93693808da72018ebb66082c31cfc5b2"
|
|
370
390
|
},
|
|
371
391
|
{
|
|
372
392
|
"path": "src/claude/alias.ts",
|
|
@@ -426,7 +446,7 @@
|
|
|
426
446
|
},
|
|
427
447
|
{
|
|
428
448
|
"path": "src/claude/outbound.ts",
|
|
429
|
-
"sha256": "
|
|
449
|
+
"sha256": "66e88a3492cc6676a4cafb8a08b1767598d830a159d5877e3b7109853ad2963c"
|
|
430
450
|
},
|
|
431
451
|
{
|
|
432
452
|
"path": "src/cli.ts",
|
|
@@ -438,7 +458,7 @@
|
|
|
438
458
|
},
|
|
439
459
|
{
|
|
440
460
|
"path": "src/cli/account-api.ts",
|
|
441
|
-
"sha256": "
|
|
461
|
+
"sha256": "300ea53bb7b7a941dbccdc0bf7fb7618f8691051f426acae3efeb8ce50de30f8"
|
|
442
462
|
},
|
|
443
463
|
{
|
|
444
464
|
"path": "src/cli/account-auth.ts",
|
|
@@ -450,7 +470,7 @@
|
|
|
450
470
|
},
|
|
451
471
|
{
|
|
452
472
|
"path": "src/cli/account-extended.ts",
|
|
453
|
-
"sha256": "
|
|
473
|
+
"sha256": "7e77b6c74e37bf732e0a68f4096b03e829f816c99a1633d02e7db7063af24514"
|
|
454
474
|
},
|
|
455
475
|
{
|
|
456
476
|
"path": "src/cli/account-main.ts",
|
|
@@ -458,7 +478,7 @@
|
|
|
458
478
|
},
|
|
459
479
|
{
|
|
460
480
|
"path": "src/cli/account.ts",
|
|
461
|
-
"sha256": "
|
|
481
|
+
"sha256": "25a349ba85417b1da78a51f31c1230eb22fce5610d86d92a161fc062885850ce"
|
|
462
482
|
},
|
|
463
483
|
{
|
|
464
484
|
"path": "src/cli/agent-driven.ts",
|
|
@@ -468,6 +488,10 @@
|
|
|
468
488
|
"path": "src/cli/agent.ts",
|
|
469
489
|
"sha256": "549c31a1ffe8e856094e0db1eb376e9b82d6b5f3763edd2e410acc403dadb771"
|
|
470
490
|
},
|
|
491
|
+
{
|
|
492
|
+
"path": "src/cli/alias.ts",
|
|
493
|
+
"sha256": "ed2d470ab353004c32d4e02a41b6a74da845d4e17c451692e9627a1b3e9f601c"
|
|
494
|
+
},
|
|
471
495
|
{
|
|
472
496
|
"path": "src/cli/catalog-prewarm.ts",
|
|
473
497
|
"sha256": "e8361fe04f7f97615b6446e91e1e11b0372f90e14cbcebf7ab5792949e1bf266"
|
|
@@ -482,7 +506,7 @@
|
|
|
482
506
|
},
|
|
483
507
|
{
|
|
484
508
|
"path": "src/cli/claude.ts",
|
|
485
|
-
"sha256": "
|
|
509
|
+
"sha256": "8cc0d649afcbc0a4ea47634eafef0f79127801377476dd1fded54a67ff4785f5"
|
|
486
510
|
},
|
|
487
511
|
{
|
|
488
512
|
"path": "src/cli/codex-log-guard-doctor.ts",
|
|
@@ -510,7 +534,7 @@
|
|
|
510
534
|
},
|
|
511
535
|
{
|
|
512
536
|
"path": "src/cli/dispatch.ts",
|
|
513
|
-
"sha256": "
|
|
537
|
+
"sha256": "ca23b47604f3f891e16d6bdf103aa71c5fc4e85f1c6f62177178f3540ee72e2b"
|
|
514
538
|
},
|
|
515
539
|
{
|
|
516
540
|
"path": "src/cli/doctor.ts",
|
|
@@ -526,15 +550,15 @@
|
|
|
526
550
|
},
|
|
527
551
|
{
|
|
528
552
|
"path": "src/cli/help.ts",
|
|
529
|
-
"sha256": "
|
|
553
|
+
"sha256": "70ef6da7981eab265f445c461c214294133b3b6683961b0aafd54b361690ae5f"
|
|
530
554
|
},
|
|
531
555
|
{
|
|
532
556
|
"path": "src/cli/index.ts",
|
|
533
|
-
"sha256": "
|
|
557
|
+
"sha256": "c56a5e65ede00d0321299e712ae500c7bf629e856646902032df57c927f9f253"
|
|
534
558
|
},
|
|
535
559
|
{
|
|
536
560
|
"path": "src/cli/init.ts",
|
|
537
|
-
"sha256": "
|
|
561
|
+
"sha256": "9eeb5b5916c35f5c3994b6ef3dd6e230b30c05605c7d463ff0a604635639cef2"
|
|
538
562
|
},
|
|
539
563
|
{
|
|
540
564
|
"path": "src/cli/integrations.ts",
|
|
@@ -558,11 +582,11 @@
|
|
|
558
582
|
},
|
|
559
583
|
{
|
|
560
584
|
"path": "src/cli/models-runtime.ts",
|
|
561
|
-
"sha256": "
|
|
585
|
+
"sha256": "495141299b166f669a39d4fc11d5f4f58cbc20acc663d24f92c73ed28efada5e"
|
|
562
586
|
},
|
|
563
587
|
{
|
|
564
588
|
"path": "src/cli/models.ts",
|
|
565
|
-
"sha256": "
|
|
589
|
+
"sha256": "608838f72a50e5175dc2d8a0538f7e2a0f46cb7797ecaf6fe555894e36518fa0"
|
|
566
590
|
},
|
|
567
591
|
{
|
|
568
592
|
"path": "src/cli/observe.ts",
|
|
@@ -578,7 +602,7 @@
|
|
|
578
602
|
},
|
|
579
603
|
{
|
|
580
604
|
"path": "src/cli/provider-runtime.ts",
|
|
581
|
-
"sha256": "
|
|
605
|
+
"sha256": "a1f0c1f4d03f0cf87e22c880d8d7e3dd000c24818f5ebd2352bf47e766fe27f1"
|
|
582
606
|
},
|
|
583
607
|
{
|
|
584
608
|
"path": "src/cli/provider.ts",
|
|
@@ -590,7 +614,7 @@
|
|
|
590
614
|
},
|
|
591
615
|
{
|
|
592
616
|
"path": "src/cli/registry.ts",
|
|
593
|
-
"sha256": "
|
|
617
|
+
"sha256": "a90b57f449e91d67a409abb89ad8126c97f899b82930de18c205bf5553753f77"
|
|
594
618
|
},
|
|
595
619
|
{
|
|
596
620
|
"path": "src/cli/replit-gateway-key-input.ts",
|
|
@@ -628,6 +652,10 @@
|
|
|
628
652
|
"path": "src/cli/system-restart-client.ts",
|
|
629
653
|
"sha256": "7171fe2e431fe6aae7f3b4c8df770c0b2ae6b8f53802cc98f8197166221b12c8"
|
|
630
654
|
},
|
|
655
|
+
{
|
|
656
|
+
"path": "src/cli/telemetry-commands.ts",
|
|
657
|
+
"sha256": "e05974ae6db7df57444eef422a1929abbb2c5e9cc8c3efe9a9051fce03fe60d3"
|
|
658
|
+
},
|
|
631
659
|
{
|
|
632
660
|
"path": "src/cli/tray-proxy.ts",
|
|
633
661
|
"sha256": "35878717b3b9c9e9d7793fc88a72ddf21d7b2c9b41c3a6dd12f5bb5d5343a6d5"
|
|
@@ -638,7 +666,7 @@
|
|
|
638
666
|
},
|
|
639
667
|
{
|
|
640
668
|
"path": "src/cli/v2.ts",
|
|
641
|
-
"sha256": "
|
|
669
|
+
"sha256": "bee42074b6cf31c207ce9c08f6d3bf68a9c725dfb39df9abdea09e45fa25ddb2"
|
|
642
670
|
},
|
|
643
671
|
{
|
|
644
672
|
"path": "src/clients/config-export.ts",
|
|
@@ -666,11 +694,11 @@
|
|
|
666
694
|
},
|
|
667
695
|
{
|
|
668
696
|
"path": "src/codex/account-pause.ts",
|
|
669
|
-
"sha256": "
|
|
697
|
+
"sha256": "77ae91684c998d7e6f41999939ad8e09e8cc8415f3e0f0d87e89309c55552b71"
|
|
670
698
|
},
|
|
671
699
|
{
|
|
672
700
|
"path": "src/codex/account-priority.ts",
|
|
673
|
-
"sha256": "
|
|
701
|
+
"sha256": "d9110914b8f146b9f58890d05fbca1316e67c94b6468285480ce574fe494c387"
|
|
674
702
|
},
|
|
675
703
|
{
|
|
676
704
|
"path": "src/codex/account-runtime-state.ts",
|
|
@@ -702,7 +730,7 @@
|
|
|
702
730
|
},
|
|
703
731
|
{
|
|
704
732
|
"path": "src/codex/app-server-processes.ts",
|
|
705
|
-
"sha256": "
|
|
733
|
+
"sha256": "605e11ba25a31e7d6a2bda30325794bfee9829b6c617c2865e90e6e4ed92a00a"
|
|
706
734
|
},
|
|
707
735
|
{
|
|
708
736
|
"path": "src/codex/app-server-restart-service.ts",
|
|
@@ -710,7 +738,7 @@
|
|
|
710
738
|
},
|
|
711
739
|
{
|
|
712
740
|
"path": "src/codex/auth-api.ts",
|
|
713
|
-
"sha256": "
|
|
741
|
+
"sha256": "3ff9b877186abce1a2faf6b4ce8aed64d2084b2f116bbc64145c09603f82bf5d"
|
|
714
742
|
},
|
|
715
743
|
{
|
|
716
744
|
"path": "src/codex/auth-collision.ts",
|
|
@@ -718,7 +746,7 @@
|
|
|
718
746
|
},
|
|
719
747
|
{
|
|
720
748
|
"path": "src/codex/auth-context.ts",
|
|
721
|
-
"sha256": "
|
|
749
|
+
"sha256": "29133391e021064abc2956102d2d6f1260147eb00229e09dc1f8b48f79869682"
|
|
722
750
|
},
|
|
723
751
|
{
|
|
724
752
|
"path": "src/codex/autostart-health.ts",
|
|
@@ -738,7 +766,7 @@
|
|
|
738
766
|
},
|
|
739
767
|
{
|
|
740
768
|
"path": "src/codex/catalog.ts",
|
|
741
|
-
"sha256": "
|
|
769
|
+
"sha256": "2916321bbfbd26112dc816055a452348251a1b65a2a2535b089c9135c690499a"
|
|
742
770
|
},
|
|
743
771
|
{
|
|
744
772
|
"path": "src/codex/catalog/account-models.ts",
|
|
@@ -746,7 +774,7 @@
|
|
|
746
774
|
},
|
|
747
775
|
{
|
|
748
776
|
"path": "src/codex/catalog/aggregation.ts",
|
|
749
|
-
"sha256": "
|
|
777
|
+
"sha256": "1fdc05c0bea5cfec327a7a1197d05e0e3f3641bdcab87792270b30c206f7999a"
|
|
750
778
|
},
|
|
751
779
|
{
|
|
752
780
|
"path": "src/codex/catalog/bundled.ts",
|
|
@@ -770,35 +798,35 @@
|
|
|
770
798
|
},
|
|
771
799
|
{
|
|
772
800
|
"path": "src/codex/catalog/model-metadata.ts",
|
|
773
|
-
"sha256": "
|
|
801
|
+
"sha256": "5010ca695b2669dc88c705df1d55ce14b402ee44ab6ebce9fd8a5b5573f82ff2"
|
|
774
802
|
},
|
|
775
803
|
{
|
|
776
804
|
"path": "src/codex/catalog/native-models.ts",
|
|
777
|
-
"sha256": "
|
|
805
|
+
"sha256": "8e042ff9737e6dd233298a54ace305d8d07920b5e783387f94821bae9efb5c47"
|
|
778
806
|
},
|
|
779
807
|
{
|
|
780
808
|
"path": "src/codex/catalog/parsing.ts",
|
|
781
|
-
"sha256": "
|
|
809
|
+
"sha256": "b3e86cbdfaa19d7f0d4f83aad0b717f13bb82a3ec6f7ba6a720185b67febccff"
|
|
782
810
|
},
|
|
783
811
|
{
|
|
784
812
|
"path": "src/codex/catalog/provider-fetch.ts",
|
|
785
|
-
"sha256": "
|
|
813
|
+
"sha256": "86a599e3630dbefd3e7a82886d9c0eb27002c1a972f4f60b3b6566600b6d625f"
|
|
786
814
|
},
|
|
787
815
|
{
|
|
788
816
|
"path": "src/codex/catalog/sync.ts",
|
|
789
|
-
"sha256": "
|
|
817
|
+
"sha256": "ca087dfda6c09914a97aff53a3427e8b56d7e27f9db1e942a435e1fdbaaa4174"
|
|
790
818
|
},
|
|
791
819
|
{
|
|
792
820
|
"path": "src/codex/codex-write-lock.ts",
|
|
793
|
-
"sha256": "
|
|
821
|
+
"sha256": "3c67fd9ba4cce94fca0c3bafff2a8f5a1d104e4ca794aac3ae17a2eae9cfdd5c"
|
|
794
822
|
},
|
|
795
823
|
{
|
|
796
824
|
"path": "src/codex/convergence-types.ts",
|
|
797
|
-
"sha256": "
|
|
825
|
+
"sha256": "695341c87bdcb5d6784a3ba8609d84893b1d0995a545331f2c171152f985efaf"
|
|
798
826
|
},
|
|
799
827
|
{
|
|
800
828
|
"path": "src/codex/convergence.ts",
|
|
801
|
-
"sha256": "
|
|
829
|
+
"sha256": "dfb4a900ca40eb4e112f5fd1b9ed73058301b0c6533a7a6d210b80aeef62c3ab"
|
|
802
830
|
},
|
|
803
831
|
{
|
|
804
832
|
"path": "src/codex/coordinator-doctor.ts",
|
|
@@ -814,11 +842,11 @@
|
|
|
814
842
|
},
|
|
815
843
|
{
|
|
816
844
|
"path": "src/codex/desired-state.ts",
|
|
817
|
-
"sha256": "
|
|
845
|
+
"sha256": "83f2f4240550cbb1a351997bdafcd9cefba2aaea0de0bf6f854201d4de23fa47"
|
|
818
846
|
},
|
|
819
847
|
{
|
|
820
848
|
"path": "src/codex/desktop-app-restart.ts",
|
|
821
|
-
"sha256": "
|
|
849
|
+
"sha256": "ba997ce741bae049697337ef7687f88e891a204b3bb434c43860247b26c08c7b"
|
|
822
850
|
},
|
|
823
851
|
{
|
|
824
852
|
"path": "src/codex/exec-invocation.ts",
|
|
@@ -866,11 +894,11 @@
|
|
|
866
894
|
},
|
|
867
895
|
{
|
|
868
896
|
"path": "src/codex/inject-coordination.ts",
|
|
869
|
-
"sha256": "
|
|
897
|
+
"sha256": "6c95990fd5156f2da6f3421a3a5aab5faa7f9e782b252ccd95de41758b0de2af"
|
|
870
898
|
},
|
|
871
899
|
{
|
|
872
900
|
"path": "src/codex/inject.ts",
|
|
873
|
-
"sha256": "
|
|
901
|
+
"sha256": "fed0dd2913d0ca07fb8486a91e74411dce65ca96fb8ca989e4fca0984e71f14e"
|
|
874
902
|
},
|
|
875
903
|
{
|
|
876
904
|
"path": "src/codex/injected-marker.ts",
|
|
@@ -894,7 +922,7 @@
|
|
|
894
922
|
},
|
|
895
923
|
{
|
|
896
924
|
"path": "src/codex/log-guard/inspect.ts",
|
|
897
|
-
"sha256": "
|
|
925
|
+
"sha256": "2431d0680a1b442ba57e733d90bc8aca4bdc1b21fc8624351288c72ea7eac984"
|
|
898
926
|
},
|
|
899
927
|
{
|
|
900
928
|
"path": "src/codex/log-guard/lock.ts",
|
|
@@ -942,7 +970,7 @@
|
|
|
942
970
|
},
|
|
943
971
|
{
|
|
944
972
|
"path": "src/codex/model-entitlements.ts",
|
|
945
|
-
"sha256": "
|
|
973
|
+
"sha256": "79c66fada70917373dda6f1ad057790e5f5caee1c80a4fa2bd52612847781ff9"
|
|
946
974
|
},
|
|
947
975
|
{
|
|
948
976
|
"path": "src/codex/native-main-admission.ts",
|
|
@@ -1030,19 +1058,23 @@
|
|
|
1030
1058
|
},
|
|
1031
1059
|
{
|
|
1032
1060
|
"path": "src/codex/prompt-layers.ts",
|
|
1033
|
-
"sha256": "
|
|
1061
|
+
"sha256": "038988442513e525b9faccccdad7f14921fd109ef5e91f7be64c31cfe9b9a99e"
|
|
1034
1062
|
},
|
|
1035
1063
|
{
|
|
1036
1064
|
"path": "src/codex/prompt-lock.ts",
|
|
1037
1065
|
"sha256": "640c7acca611269353e550dede9ae9b0611d81846ad43eb89c1572dd1207d664"
|
|
1038
1066
|
},
|
|
1067
|
+
{
|
|
1068
|
+
"path": "src/codex/prompt-text-probe.ts",
|
|
1069
|
+
"sha256": "467d805cd3122764706ecc5ab5037a15fd96f41d5cc1c9d15dcf16c6367de249"
|
|
1070
|
+
},
|
|
1039
1071
|
{
|
|
1040
1072
|
"path": "src/codex/quota-rejection.ts",
|
|
1041
1073
|
"sha256": "610c38395e08eaeb318cfed5c8472d9c0c8f1b818dd79dc6f45c5b6fbdbce226"
|
|
1042
1074
|
},
|
|
1043
1075
|
{
|
|
1044
1076
|
"path": "src/codex/quota.ts",
|
|
1045
|
-
"sha256": "
|
|
1077
|
+
"sha256": "08ccb7c40e511847166feea37718fe16dc5ce2138c3a3b8b4a1409b9b2d2e804"
|
|
1046
1078
|
},
|
|
1047
1079
|
{
|
|
1048
1080
|
"path": "src/codex/refresh.ts",
|
|
@@ -1054,7 +1086,7 @@
|
|
|
1054
1086
|
},
|
|
1055
1087
|
{
|
|
1056
1088
|
"path": "src/codex/routing.ts",
|
|
1057
|
-
"sha256": "
|
|
1089
|
+
"sha256": "4bc17f3282a4fa18ccaaa5fbd2f5f0d90c1250c52895886831fb722f243a1ff9"
|
|
1058
1090
|
},
|
|
1059
1091
|
{
|
|
1060
1092
|
"path": "src/codex/runtime.ts",
|
|
@@ -1070,7 +1102,7 @@
|
|
|
1070
1102
|
},
|
|
1071
1103
|
{
|
|
1072
1104
|
"path": "src/codex/subagent-model-fallback.ts",
|
|
1073
|
-
"sha256": "
|
|
1105
|
+
"sha256": "de45777ea3a2fea951bc641f1bb2194d1d95142d5359e7b728760de75b4d4978"
|
|
1074
1106
|
},
|
|
1075
1107
|
{
|
|
1076
1108
|
"path": "src/codex/sync.ts",
|
|
@@ -1078,7 +1110,7 @@
|
|
|
1078
1110
|
},
|
|
1079
1111
|
{
|
|
1080
1112
|
"path": "src/codex/transition-state.ts",
|
|
1081
|
-
"sha256": "
|
|
1113
|
+
"sha256": "d33c50794fdea103362868e02d892025164a7e31030a6f0d9d96fd9842637c09"
|
|
1082
1114
|
},
|
|
1083
1115
|
{
|
|
1084
1116
|
"path": "src/codex/upstream-host-health.ts",
|
|
@@ -1118,7 +1150,7 @@
|
|
|
1118
1150
|
},
|
|
1119
1151
|
{
|
|
1120
1152
|
"path": "src/combos/types.ts",
|
|
1121
|
-
"sha256": "
|
|
1153
|
+
"sha256": "9340faded95a4e65e328c2581f7818aba837c7de478120430a34b90245f06910"
|
|
1122
1154
|
},
|
|
1123
1155
|
{
|
|
1124
1156
|
"path": "src/compatibility/index.ts",
|
|
@@ -1130,16 +1162,20 @@
|
|
|
1130
1162
|
},
|
|
1131
1163
|
{
|
|
1132
1164
|
"path": "src/compatibility/openai-responses.ts",
|
|
1133
|
-
"sha256": "
|
|
1165
|
+
"sha256": "bec435b3fff28b19fec79f6fe73b3ca5b7242aa7a193439d7e98cbeedbfd5485"
|
|
1134
1166
|
},
|
|
1135
1167
|
{
|
|
1136
1168
|
"path": "src/config.ts",
|
|
1137
|
-
"sha256": "
|
|
1169
|
+
"sha256": "17b011a9980e50b95e37ea8b15a310bfc6d11c671029530426ea34f0ceb6df5c"
|
|
1138
1170
|
},
|
|
1139
1171
|
{
|
|
1140
1172
|
"path": "src/config/atomic-write.ts",
|
|
1141
1173
|
"sha256": "2d9bdc5661465383c0242867299e9d940051685f955f9fb595ca912f95871098"
|
|
1142
1174
|
},
|
|
1175
|
+
{
|
|
1176
|
+
"path": "src/config/autonomous-remediation.ts",
|
|
1177
|
+
"sha256": "4066c6d137dbf9152aa40bcac60db68fd70626195438b0d0c563754d29e6cfcc"
|
|
1178
|
+
},
|
|
1143
1179
|
{
|
|
1144
1180
|
"path": "src/config/paths.ts",
|
|
1145
1181
|
"sha256": "c040ed442b1aba446e284db98dde59db98aecd81738fb1804ca3ce842e17d4e4"
|
|
@@ -1154,7 +1190,11 @@
|
|
|
1154
1190
|
},
|
|
1155
1191
|
{
|
|
1156
1192
|
"path": "src/config/provider-validation.ts",
|
|
1157
|
-
"sha256": "
|
|
1193
|
+
"sha256": "8b599fa5b076abf34c5b7365c67c06de9d10537fdd40a0533a167e5c9098ee97"
|
|
1194
|
+
},
|
|
1195
|
+
{
|
|
1196
|
+
"path": "src/config/rebase-provenance.ts",
|
|
1197
|
+
"sha256": "8ee5ee9c8110c71b09fdaeb806bdd4a8b8ce6e4a8ad447fbf06fc484c26f8fda"
|
|
1158
1198
|
},
|
|
1159
1199
|
{
|
|
1160
1200
|
"path": "src/fork/register.ts",
|
|
@@ -1162,7 +1202,7 @@
|
|
|
1162
1202
|
},
|
|
1163
1203
|
{
|
|
1164
1204
|
"path": "src/generated/model-metadata.ts",
|
|
1165
|
-
"sha256": "
|
|
1205
|
+
"sha256": "833c16f411c76c64ca2962ec6950a6c113a0ff09c95faa7631cea3a00f1a4952"
|
|
1166
1206
|
},
|
|
1167
1207
|
{
|
|
1168
1208
|
"path": "src/github/star-state.ts",
|
|
@@ -1202,7 +1242,7 @@
|
|
|
1202
1242
|
},
|
|
1203
1243
|
{
|
|
1204
1244
|
"path": "src/images/loop.ts",
|
|
1205
|
-
"sha256": "
|
|
1245
|
+
"sha256": "d9d8a0da4819b4c6320b8ee030e660206193ed68eab3e804294696c74f3434ab"
|
|
1206
1246
|
},
|
|
1207
1247
|
{
|
|
1208
1248
|
"path": "src/images/plan.ts",
|
|
@@ -1386,7 +1426,7 @@
|
|
|
1386
1426
|
},
|
|
1387
1427
|
{
|
|
1388
1428
|
"path": "src/lab/conformance/fixtures/protocol-v1-cases.json",
|
|
1389
|
-
"sha256": "
|
|
1429
|
+
"sha256": "f83c19cef9d8f228eb7f95111283e87bfc159f664a157f78c6f86eda64cb7486"
|
|
1390
1430
|
},
|
|
1391
1431
|
{
|
|
1392
1432
|
"path": "src/lab/conformance/harness-budget.ts",
|
|
@@ -1486,7 +1526,7 @@
|
|
|
1486
1526
|
},
|
|
1487
1527
|
{
|
|
1488
1528
|
"path": "src/lab/fabric/producer-child.ts",
|
|
1489
|
-
"sha256": "
|
|
1529
|
+
"sha256": "a76e692f3d55a538535f0527df7f394ac0055608a77b613795f16cf727231085"
|
|
1490
1530
|
},
|
|
1491
1531
|
{
|
|
1492
1532
|
"path": "src/lab/fabric/producer-isolate.ts",
|
|
@@ -1814,7 +1854,7 @@
|
|
|
1814
1854
|
},
|
|
1815
1855
|
{
|
|
1816
1856
|
"path": "src/lib/config-ownership.ts",
|
|
1817
|
-
"sha256": "
|
|
1857
|
+
"sha256": "26c496ca9ab78b0f9e4297c5285f1fc0a92139b81ca42075f03996697f885be6"
|
|
1818
1858
|
},
|
|
1819
1859
|
{
|
|
1820
1860
|
"path": "src/lib/crash-guard.ts",
|
|
@@ -1838,7 +1878,7 @@
|
|
|
1838
1878
|
},
|
|
1839
1879
|
{
|
|
1840
1880
|
"path": "src/lib/errors.ts",
|
|
1841
|
-
"sha256": "
|
|
1881
|
+
"sha256": "2f1423df36f81495724e1653c956a2ad7ac51e9eb9eb36d9c04357497a1e96ae"
|
|
1842
1882
|
},
|
|
1843
1883
|
{
|
|
1844
1884
|
"path": "src/lib/eventstream-decoder.ts",
|
|
@@ -1904,6 +1944,10 @@
|
|
|
1904
1944
|
"path": "src/lib/optional-shutdown-hooks.ts",
|
|
1905
1945
|
"sha256": "0d0a20ce244b59a2ce8f88487f86648705580007774e3eeb44da6c477b65e17d"
|
|
1906
1946
|
},
|
|
1947
|
+
{
|
|
1948
|
+
"path": "src/lib/package-tree-integrity.ts",
|
|
1949
|
+
"sha256": "1510549cfb0bffb054c584e1a5e2ce8cb0222e5bea8aacb62d32ce521e61eece"
|
|
1950
|
+
},
|
|
1907
1951
|
{
|
|
1908
1952
|
"path": "src/lib/pinned-http.ts",
|
|
1909
1953
|
"sha256": "ac1cd748e53b16109aaae86194fddac88424b508f00bb2e7c7090869f58c9b22"
|
|
@@ -2064,6 +2108,18 @@
|
|
|
2064
2108
|
"path": "src/oauth/account-import/types.ts",
|
|
2065
2109
|
"sha256": "157cf151ff51f28ba569f00ded3164d141987ac082b778a67150d1baa3e4d1e0"
|
|
2066
2110
|
},
|
|
2111
|
+
{
|
|
2112
|
+
"path": "src/oauth/aistudio-credentials.ts",
|
|
2113
|
+
"sha256": "ca46a626703b0ed431612f3b651aa02f1cab61cd190fed9bc285f5d2d8f8930f"
|
|
2114
|
+
},
|
|
2115
|
+
{
|
|
2116
|
+
"path": "src/oauth/aistudio-native-daemon.ts",
|
|
2117
|
+
"sha256": "1205d3f6aedf716de880c9aa1882ca716de3a6506110a85dd6793d8a08ace75c"
|
|
2118
|
+
},
|
|
2119
|
+
{
|
|
2120
|
+
"path": "src/oauth/aistudio-session-sync.ts",
|
|
2121
|
+
"sha256": "60b1a97cf7600361d34d8835ca595edf1c4e8753cf97c54624a9ea251b8e42be"
|
|
2122
|
+
},
|
|
2067
2123
|
{
|
|
2068
2124
|
"path": "src/oauth/anthropic-routing.ts",
|
|
2069
2125
|
"sha256": "589ed95211898ccb5e05b8eb896bd018f563177b7dcf919b7662b947b82b68e4"
|
|
@@ -2096,10 +2152,18 @@
|
|
|
2096
2152
|
"path": "src/oauth/cursor.ts",
|
|
2097
2153
|
"sha256": "afc515c357f5bc9f788c07e40a0a1fce6ef3d9887759906e5a48113a720d5673"
|
|
2098
2154
|
},
|
|
2155
|
+
{
|
|
2156
|
+
"path": "src/oauth/generic-account-failover.ts",
|
|
2157
|
+
"sha256": "3465797968cf91fe71f84794aea935ae138db01afa9f1358cc4f26ab214365a5"
|
|
2158
|
+
},
|
|
2099
2159
|
{
|
|
2100
2160
|
"path": "src/oauth/github-copilot.ts",
|
|
2101
2161
|
"sha256": "e0bfa9fa518ffc9b04ec81090540cf614ca217ca7ca3f356bc6f74efb6b1e38f"
|
|
2102
2162
|
},
|
|
2163
|
+
{
|
|
2164
|
+
"path": "src/oauth/google-aistudio-auth.ts",
|
|
2165
|
+
"sha256": "93548a1299bdf785204ef3ca4d5d73a28ada7020dbd1af891ed7e3dacf5cb46a"
|
|
2166
|
+
},
|
|
2103
2167
|
{
|
|
2104
2168
|
"path": "src/oauth/google-antigravity.ts",
|
|
2105
2169
|
"sha256": "babefb5a2b6648bf97b47e5cb1ceb52c6c03443625f02195175d6c14b8d83bc0"
|
|
@@ -2110,11 +2174,11 @@
|
|
|
2110
2174
|
},
|
|
2111
2175
|
{
|
|
2112
2176
|
"path": "src/oauth/index.ts",
|
|
2113
|
-
"sha256": "
|
|
2177
|
+
"sha256": "ef386cfcf46575a8602687e59ad2e3d14344c3ba79909d9054ae9cddbd6af9e2"
|
|
2114
2178
|
},
|
|
2115
2179
|
{
|
|
2116
2180
|
"path": "src/oauth/key-providers.ts",
|
|
2117
|
-
"sha256": "
|
|
2181
|
+
"sha256": "dde0a01280fc4b58fe0b58bb14e2a5efbaf417eaf6dd1ec4c163d50ad6681b84"
|
|
2118
2182
|
},
|
|
2119
2183
|
{
|
|
2120
2184
|
"path": "src/oauth/kimi.ts",
|
|
@@ -2126,7 +2190,7 @@
|
|
|
2126
2190
|
},
|
|
2127
2191
|
{
|
|
2128
2192
|
"path": "src/oauth/kiro.ts",
|
|
2129
|
-
"sha256": "
|
|
2193
|
+
"sha256": "81cf6027776e471bf1cfa5122b79e8fb8db7492e905f1521ebc7edcea7861231"
|
|
2130
2194
|
},
|
|
2131
2195
|
{
|
|
2132
2196
|
"path": "src/oauth/local-token-detect.ts",
|
|
@@ -2138,7 +2202,7 @@
|
|
|
2138
2202
|
},
|
|
2139
2203
|
{
|
|
2140
2204
|
"path": "src/oauth/login-cli.ts",
|
|
2141
|
-
"sha256": "
|
|
2205
|
+
"sha256": "7d98c1b8e45a36d367e7019733c8975f7fe562db2fb71f40798aa04c59f6bec0"
|
|
2142
2206
|
},
|
|
2143
2207
|
{
|
|
2144
2208
|
"path": "src/oauth/nous.ts",
|
|
@@ -2162,7 +2226,7 @@
|
|
|
2162
2226
|
},
|
|
2163
2227
|
{
|
|
2164
2228
|
"path": "src/oauth/types.ts",
|
|
2165
|
-
"sha256": "
|
|
2229
|
+
"sha256": "4d73927bc99a8363297d6e213fc076c498f524f9400c163e0e6a7c8bfc1a1fe6"
|
|
2166
2230
|
},
|
|
2167
2231
|
{
|
|
2168
2232
|
"path": "src/oauth/xai.ts",
|
|
@@ -2202,27 +2266,31 @@
|
|
|
2202
2266
|
},
|
|
2203
2267
|
{
|
|
2204
2268
|
"path": "src/providers/codex-capacity.ts",
|
|
2205
|
-
"sha256": "
|
|
2269
|
+
"sha256": "a8bdaa70f9c77cd37b459d60b3ccf986dc87bf7c40f1e6f3d820e895a4f52108"
|
|
2206
2270
|
},
|
|
2207
2271
|
{
|
|
2208
2272
|
"path": "src/providers/command-code-efforts.ts",
|
|
2209
|
-
"sha256": "
|
|
2273
|
+
"sha256": "1db6850ca558ff2e1fe7a04453e1d2131f890e91246d56ba6e5514b88e31e885"
|
|
2210
2274
|
},
|
|
2211
2275
|
{
|
|
2212
2276
|
"path": "src/providers/context-cap.ts",
|
|
2213
|
-
"sha256": "
|
|
2277
|
+
"sha256": "5b9c6555625718e7c142be3e29ca7ca1cebd6a4b59c212135f24e509cce1c55c"
|
|
2214
2278
|
},
|
|
2215
2279
|
{
|
|
2216
2280
|
"path": "src/providers/cursor-pool.ts",
|
|
2217
2281
|
"sha256": "815eb4715ced1cb744f48790d50cab2edf9158925077705e411721f16700df0b"
|
|
2218
2282
|
},
|
|
2283
|
+
{
|
|
2284
|
+
"path": "src/providers/default-aliases.ts",
|
|
2285
|
+
"sha256": "09b6f9d174386138348bf6c0af25e548ada29fce428af744730565d7111f2858"
|
|
2286
|
+
},
|
|
2219
2287
|
{
|
|
2220
2288
|
"path": "src/providers/derive.ts",
|
|
2221
|
-
"sha256": "
|
|
2289
|
+
"sha256": "269393dc810214d4451f24ab478ea56356df09e0505e755a6a13aa2156981ba2"
|
|
2222
2290
|
},
|
|
2223
2291
|
{
|
|
2224
2292
|
"path": "src/providers/fastwire.ts",
|
|
2225
|
-
"sha256": "
|
|
2293
|
+
"sha256": "878110278a4ea3c977bf39cfc10ed2b66a568bbb7bc92dd73a5bf5fc34ca2aa8"
|
|
2226
2294
|
},
|
|
2227
2295
|
{
|
|
2228
2296
|
"path": "src/providers/free-directory.ts",
|
|
@@ -2256,6 +2324,10 @@
|
|
|
2256
2324
|
"path": "src/providers/model-discovery.ts",
|
|
2257
2325
|
"sha256": "bcf2a1b01dc8cdad91bd2b2e3ee935107e203905649985ee57691d33e3fed9c9"
|
|
2258
2326
|
},
|
|
2327
|
+
{
|
|
2328
|
+
"path": "src/providers/model-presets.ts",
|
|
2329
|
+
"sha256": "e535aef937e20cf43f7334e7c17f3ad5bb2364b3ff8e3c74a2bf5121e49f95d2"
|
|
2330
|
+
},
|
|
2259
2331
|
{
|
|
2260
2332
|
"path": "src/providers/model-rename-migration.ts",
|
|
2261
2333
|
"sha256": "3a321e04e7b73a969536befb115caf3d50994c058b8c365e1213114da3414490"
|
|
@@ -2264,6 +2336,10 @@
|
|
|
2264
2336
|
"path": "src/providers/model-rename-startup.ts",
|
|
2265
2337
|
"sha256": "8a143284d736759bf63c8cb296c19e61dec9596dfc781d8dd87038778153f55f"
|
|
2266
2338
|
},
|
|
2339
|
+
{
|
|
2340
|
+
"path": "src/providers/new-model-policy.ts",
|
|
2341
|
+
"sha256": "02c7c4000aa9a8bdd8264027fa4e07844f09c92eda516afec7c2270818ae1618"
|
|
2342
|
+
},
|
|
2267
2343
|
{
|
|
2268
2344
|
"path": "src/providers/openai-sidecar.ts",
|
|
2269
2345
|
"sha256": "c555cf015441e53c7054ea627c84a2f8a7ab6982c7e065371088125ec0757d6d"
|
|
@@ -2290,15 +2366,15 @@
|
|
|
2290
2366
|
},
|
|
2291
2367
|
{
|
|
2292
2368
|
"path": "src/providers/provider-id-rewrite.ts",
|
|
2293
|
-
"sha256": "
|
|
2369
|
+
"sha256": "e78419526b95880efd19d70c10907862f81b7cde00ee9c25e7ad8adb998879ea"
|
|
2294
2370
|
},
|
|
2295
2371
|
{
|
|
2296
2372
|
"path": "src/providers/quota.ts",
|
|
2297
|
-
"sha256": "
|
|
2373
|
+
"sha256": "aed41d740df57222b1d25ab7172eac94b9d3829e874699408a91e0c88bcc6ccf"
|
|
2298
2374
|
},
|
|
2299
2375
|
{
|
|
2300
2376
|
"path": "src/providers/registry.ts",
|
|
2301
|
-
"sha256": "
|
|
2377
|
+
"sha256": "18ece0a7a94926184d1dfe222027674ff3bff927c55009b52605e31010b0373a"
|
|
2302
2378
|
},
|
|
2303
2379
|
{
|
|
2304
2380
|
"path": "src/providers/replit/constants.ts",
|
|
@@ -2338,7 +2414,7 @@
|
|
|
2338
2414
|
},
|
|
2339
2415
|
{
|
|
2340
2416
|
"path": "src/providers/slug-codec.ts",
|
|
2341
|
-
"sha256": "
|
|
2417
|
+
"sha256": "804355058422e98d954f81cf1c412a0bc8effddc956dcdbc74778f9b08d367ef"
|
|
2342
2418
|
},
|
|
2343
2419
|
{
|
|
2344
2420
|
"path": "src/providers/static-model-discovery.ts",
|
|
@@ -2360,13 +2436,17 @@
|
|
|
2360
2436
|
"path": "src/responses/apply-patch-envelope.ts",
|
|
2361
2437
|
"sha256": "c517d065f69140b26524e97eafeb056ed5b25475be0ff120cd764cfbf93959c9"
|
|
2362
2438
|
},
|
|
2439
|
+
{
|
|
2440
|
+
"path": "src/responses/code-mode-helper-compat.ts",
|
|
2441
|
+
"sha256": "ddaffda75c4b3fb08f93f4b8f5c5413c55fe9a97f693d77d0d6bd6ffe615d03f"
|
|
2442
|
+
},
|
|
2363
2443
|
{
|
|
2364
2444
|
"path": "src/responses/compaction.ts",
|
|
2365
2445
|
"sha256": "a848ee4ad90ee74949cce9b664a2153675e08062504e8ceb2b2b83520d5ba638"
|
|
2366
2446
|
},
|
|
2367
2447
|
{
|
|
2368
2448
|
"path": "src/responses/custom-tool-compat.ts",
|
|
2369
|
-
"sha256": "
|
|
2449
|
+
"sha256": "d6dff696ece726d6bc61cce0676d841952ae20625b0de3d78725ee83095c9fd1"
|
|
2370
2450
|
},
|
|
2371
2451
|
{
|
|
2372
2452
|
"path": "src/responses/google-provider-options.ts",
|
|
@@ -2382,7 +2462,7 @@
|
|
|
2382
2462
|
},
|
|
2383
2463
|
{
|
|
2384
2464
|
"path": "src/responses/parser.ts",
|
|
2385
|
-
"sha256": "
|
|
2465
|
+
"sha256": "18393b8b2264de7724294adeee4b438d25d2af1c7e0d32ab9ad35b3f1aaf4740"
|
|
2386
2466
|
},
|
|
2387
2467
|
{
|
|
2388
2468
|
"path": "src/responses/provider-continuation.ts",
|
|
@@ -2402,7 +2482,7 @@
|
|
|
2402
2482
|
},
|
|
2403
2483
|
{
|
|
2404
2484
|
"path": "src/responses/schema.ts",
|
|
2405
|
-
"sha256": "
|
|
2485
|
+
"sha256": "ae6f03554a3b490219c8364c065fa678efcc087cda0623be48268754c41b437e"
|
|
2406
2486
|
},
|
|
2407
2487
|
{
|
|
2408
2488
|
"path": "src/responses/spill-store.ts",
|
|
@@ -2414,7 +2494,7 @@
|
|
|
2414
2494
|
},
|
|
2415
2495
|
{
|
|
2416
2496
|
"path": "src/responses/thought-signature-replay.ts",
|
|
2417
|
-
"sha256": "
|
|
2497
|
+
"sha256": "4d1d65f8231af543f59e5493f2bb17f0a3c2f74f201e975812277462e5944843"
|
|
2418
2498
|
},
|
|
2419
2499
|
{
|
|
2420
2500
|
"path": "src/responses/tool-groups.ts",
|
|
@@ -2430,7 +2510,7 @@
|
|
|
2430
2510
|
},
|
|
2431
2511
|
{
|
|
2432
2512
|
"path": "src/router.ts",
|
|
2433
|
-
"sha256": "
|
|
2513
|
+
"sha256": "018b91d5a43affac3124ebac3a45590d258f68b0cf41eb57e3fb6dd633179e30"
|
|
2434
2514
|
},
|
|
2435
2515
|
{
|
|
2436
2516
|
"path": "src/routing/account-pool/affinity.ts",
|
|
@@ -2438,11 +2518,11 @@
|
|
|
2438
2518
|
},
|
|
2439
2519
|
{
|
|
2440
2520
|
"path": "src/routing/account-pool/cooldown.ts",
|
|
2441
|
-
"sha256": "
|
|
2521
|
+
"sha256": "2d9fbc095930556e6d4a5176a19a5e843746824033b2b2d58af38f94153a75b9"
|
|
2442
2522
|
},
|
|
2443
2523
|
{
|
|
2444
2524
|
"path": "src/routing/account-pool/index.ts",
|
|
2445
|
-
"sha256": "
|
|
2525
|
+
"sha256": "1a87a51a850e8cb044e83b97b03386e029ab8dbb307cd701029f6f7e568124da"
|
|
2446
2526
|
},
|
|
2447
2527
|
{
|
|
2448
2528
|
"path": "src/routing/account-pool/resolve.ts",
|
|
@@ -2454,7 +2534,7 @@
|
|
|
2454
2534
|
},
|
|
2455
2535
|
{
|
|
2456
2536
|
"path": "src/routing/analytics.ts",
|
|
2457
|
-
"sha256": "
|
|
2537
|
+
"sha256": "2594317140fa4c785fd9be1301f2c7a4b06c4520ad92f769ec1faabdf09d43a0"
|
|
2458
2538
|
},
|
|
2459
2539
|
{
|
|
2460
2540
|
"path": "src/routing/capability.ts",
|
|
@@ -2538,7 +2618,7 @@
|
|
|
2538
2618
|
},
|
|
2539
2619
|
{
|
|
2540
2620
|
"path": "src/routing/quota.ts",
|
|
2541
|
-
"sha256": "
|
|
2621
|
+
"sha256": "d2624d589ccdfc92cfbc0c5cb6a7f275c432bba9c098e8b915c36ed734d12c9e"
|
|
2542
2622
|
},
|
|
2543
2623
|
{
|
|
2544
2624
|
"path": "src/routing/request-evidence.ts",
|
|
@@ -2554,7 +2634,7 @@
|
|
|
2554
2634
|
},
|
|
2555
2635
|
{
|
|
2556
2636
|
"path": "src/server/auth-cors.ts",
|
|
2557
|
-
"sha256": "
|
|
2637
|
+
"sha256": "21cb735d7983be6e9f7666a887ea5c58509b32e4ea95cb6392720e9c6d6fc988"
|
|
2558
2638
|
},
|
|
2559
2639
|
{
|
|
2560
2640
|
"path": "src/server/background-lifecycle.ts",
|
|
@@ -2562,19 +2642,19 @@
|
|
|
2562
2642
|
},
|
|
2563
2643
|
{
|
|
2564
2644
|
"path": "src/server/chat-completions.ts",
|
|
2565
|
-
"sha256": "
|
|
2645
|
+
"sha256": "5b8b52cf81a5837da99076639c5e60936033168e37853fe1a03aadef345f51a8"
|
|
2566
2646
|
},
|
|
2567
2647
|
{
|
|
2568
2648
|
"path": "src/server/chat-native-sse.ts",
|
|
2569
|
-
"sha256": "
|
|
2649
|
+
"sha256": "2a183d786d0e5430a80192ed878aa32bed99d7ac53a92c6fe8ee9eccd0a56f65"
|
|
2570
2650
|
},
|
|
2571
2651
|
{
|
|
2572
2652
|
"path": "src/server/chat-native.ts",
|
|
2573
|
-
"sha256": "
|
|
2653
|
+
"sha256": "9af301cd743f2501d271f083bb54e1f9bea10c11bb2ac6286542051ab442f6e8"
|
|
2574
2654
|
},
|
|
2575
2655
|
{
|
|
2576
2656
|
"path": "src/server/claude-messages.ts",
|
|
2577
|
-
"sha256": "
|
|
2657
|
+
"sha256": "e034e098e8ae45417625504e8c2736cc9549f17b19c37052934d6e364734864c"
|
|
2578
2658
|
},
|
|
2579
2659
|
{
|
|
2580
2660
|
"path": "src/server/direct-local-http.ts",
|
|
@@ -2582,7 +2662,7 @@
|
|
|
2582
2662
|
},
|
|
2583
2663
|
{
|
|
2584
2664
|
"path": "src/server/effort-policy.ts",
|
|
2585
|
-
"sha256": "
|
|
2665
|
+
"sha256": "fc944973196eb482e4fe0310a64e46d69455d9f9bffb984a13d94581ff5bcff9"
|
|
2586
2666
|
},
|
|
2587
2667
|
{
|
|
2588
2668
|
"path": "src/server/github-copilot-responses-repair.ts",
|
|
@@ -2602,11 +2682,11 @@
|
|
|
2602
2682
|
},
|
|
2603
2683
|
{
|
|
2604
2684
|
"path": "src/server/index.ts",
|
|
2605
|
-
"sha256": "
|
|
2685
|
+
"sha256": "5dd54908f3adb4d22b39e6d44924ef9e5e254bca2590e22e653ae0ac03f583b3"
|
|
2606
2686
|
},
|
|
2607
2687
|
{
|
|
2608
2688
|
"path": "src/server/lifecycle.ts",
|
|
2609
|
-
"sha256": "
|
|
2689
|
+
"sha256": "8cfbfa3ca721f55cda0c99b2d9904647ad8401b8f7e40c317201fb101b46b2fe"
|
|
2610
2690
|
},
|
|
2611
2691
|
{
|
|
2612
2692
|
"path": "src/server/live.ts",
|
|
@@ -2622,7 +2702,7 @@
|
|
|
2622
2702
|
},
|
|
2623
2703
|
{
|
|
2624
2704
|
"path": "src/server/management-api.ts",
|
|
2625
|
-
"sha256": "
|
|
2705
|
+
"sha256": "f32c50a454a5bdfd738790a589badc1faf594412b014faadb8ae01b774856472"
|
|
2626
2706
|
},
|
|
2627
2707
|
{
|
|
2628
2708
|
"path": "src/server/management-auth.ts",
|
|
@@ -2630,7 +2710,7 @@
|
|
|
2630
2710
|
},
|
|
2631
2711
|
{
|
|
2632
2712
|
"path": "src/server/management/agent-settings-routes.ts",
|
|
2633
|
-
"sha256": "
|
|
2713
|
+
"sha256": "b3ab4de3aa4b3137980f592ed85f202573e6c57ad54371ed164bbfecbd97e437"
|
|
2634
2714
|
},
|
|
2635
2715
|
{
|
|
2636
2716
|
"path": "src/server/management/api-access.ts",
|
|
@@ -2644,17 +2724,21 @@
|
|
|
2644
2724
|
"path": "src/server/management/body.ts",
|
|
2645
2725
|
"sha256": "3839e768c3a698faca0d3213eca9187d113f38ad60b5c47fa1849347ca96e20a"
|
|
2646
2726
|
},
|
|
2727
|
+
{
|
|
2728
|
+
"path": "src/server/management/codex-prompt-routes.ts",
|
|
2729
|
+
"sha256": "ff20b445ec3e29ead921bf077c523c948e27996ad9dc86a73e88488c00e5b69e"
|
|
2730
|
+
},
|
|
2647
2731
|
{
|
|
2648
2732
|
"path": "src/server/management/combo-routes.ts",
|
|
2649
|
-
"sha256": "
|
|
2733
|
+
"sha256": "889a32183516f12b8dcfa66b04005210c79cafd9bf3d6d28ff480d72d1554c95"
|
|
2650
2734
|
},
|
|
2651
2735
|
{
|
|
2652
2736
|
"path": "src/server/management/config-routes.ts",
|
|
2653
|
-
"sha256": "
|
|
2737
|
+
"sha256": "ad0d8c16dde2c10530bdf7a2ffe5344e7fdd230cd8b71c13d297f260d3ae6e71"
|
|
2654
2738
|
},
|
|
2655
2739
|
{
|
|
2656
2740
|
"path": "src/server/management/context.ts",
|
|
2657
|
-
"sha256": "
|
|
2741
|
+
"sha256": "87144e592ec4b66d3b5ca4f616565a6745c823595c1c59d26be16f38cc918468"
|
|
2658
2742
|
},
|
|
2659
2743
|
{
|
|
2660
2744
|
"path": "src/server/management/integration-routes.ts",
|
|
@@ -2670,11 +2754,11 @@
|
|
|
2670
2754
|
},
|
|
2671
2755
|
{
|
|
2672
2756
|
"path": "src/server/management/logs-usage-routes.ts",
|
|
2673
|
-
"sha256": "
|
|
2757
|
+
"sha256": "756c8d015d880a76ec4ef086c423f7a9b04fc874568b06ebb48d6f5deb3e8827"
|
|
2674
2758
|
},
|
|
2675
2759
|
{
|
|
2676
2760
|
"path": "src/server/management/model-routes.ts",
|
|
2677
|
-
"sha256": "
|
|
2761
|
+
"sha256": "5927c79c91419e5b4065c86f0bf6665cf3a178850cf08755d05960c5559a1518"
|
|
2678
2762
|
},
|
|
2679
2763
|
{
|
|
2680
2764
|
"path": "src/server/management/model-rows.ts",
|
|
@@ -2686,7 +2770,7 @@
|
|
|
2686
2770
|
},
|
|
2687
2771
|
{
|
|
2688
2772
|
"path": "src/server/management/oauth-account-routes.ts",
|
|
2689
|
-
"sha256": "
|
|
2773
|
+
"sha256": "9f1fe5834e08d8a68ec1facb2c9a89a5e389e2140a1430e689fd5748fdf1c76b"
|
|
2690
2774
|
},
|
|
2691
2775
|
{
|
|
2692
2776
|
"path": "src/server/management/provider-capability-config.ts",
|
|
@@ -2694,7 +2778,7 @@
|
|
|
2694
2778
|
},
|
|
2695
2779
|
{
|
|
2696
2780
|
"path": "src/server/management/provider-routes.ts",
|
|
2697
|
-
"sha256": "
|
|
2781
|
+
"sha256": "914b7a6cb10609e062874d2af8226f6471d18b269a96e0a0e6e215412d250603"
|
|
2698
2782
|
},
|
|
2699
2783
|
{
|
|
2700
2784
|
"path": "src/server/management/replit-provider-routes.ts",
|
|
@@ -2710,7 +2794,7 @@
|
|
|
2710
2794
|
},
|
|
2711
2795
|
{
|
|
2712
2796
|
"path": "src/server/management/routing-profile-routes.ts",
|
|
2713
|
-
"sha256": "
|
|
2797
|
+
"sha256": "bb36b25beb53c63a2a875a301cc27dad58e1e68503af6c7fafe1e9a75b321011"
|
|
2714
2798
|
},
|
|
2715
2799
|
{
|
|
2716
2800
|
"path": "src/server/management/shared.ts",
|
|
@@ -2758,7 +2842,7 @@
|
|
|
2758
2842
|
},
|
|
2759
2843
|
{
|
|
2760
2844
|
"path": "src/server/port-reclaim.ts",
|
|
2761
|
-
"sha256": "
|
|
2845
|
+
"sha256": "94d2791f86278a867029c6e5edbdce917ff19ff88ce6d450e3b6e08d43c59653"
|
|
2762
2846
|
},
|
|
2763
2847
|
{
|
|
2764
2848
|
"path": "src/server/ports.ts",
|
|
@@ -2774,11 +2858,11 @@
|
|
|
2774
2858
|
},
|
|
2775
2859
|
{
|
|
2776
2860
|
"path": "src/server/relay-eager.ts",
|
|
2777
|
-
"sha256": "
|
|
2861
|
+
"sha256": "60970ba2998f5d89f5a55bf495502469fe98f3925243b9ec7ff059d30301d45a"
|
|
2778
2862
|
},
|
|
2779
2863
|
{
|
|
2780
2864
|
"path": "src/server/relay.ts",
|
|
2781
|
-
"sha256": "
|
|
2865
|
+
"sha256": "9526de452ff9d9c7c1560b9d56249941ff5b905b8ecfd9e367a2bf4077ceb870"
|
|
2782
2866
|
},
|
|
2783
2867
|
{
|
|
2784
2868
|
"path": "src/server/request-decompress.ts",
|
|
@@ -2786,15 +2870,15 @@
|
|
|
2786
2870
|
},
|
|
2787
2871
|
{
|
|
2788
2872
|
"path": "src/server/request-log-conversation.ts",
|
|
2789
|
-
"sha256": "
|
|
2873
|
+
"sha256": "e8311f21b4687adaee33520f30aa4fb4097b704a901164c7f4d627badc50386a"
|
|
2790
2874
|
},
|
|
2791
2875
|
{
|
|
2792
2876
|
"path": "src/server/request-log.ts",
|
|
2793
|
-
"sha256": "
|
|
2877
|
+
"sha256": "a8980d727760364b174ec8a2ac020d482f5fcf58371a4557f806e2b487355542"
|
|
2794
2878
|
},
|
|
2795
2879
|
{
|
|
2796
2880
|
"path": "src/server/responses-custom-tool-repair.ts",
|
|
2797
|
-
"sha256": "
|
|
2881
|
+
"sha256": "d37f36eeff51f0e6cb5848f3e23573a2eecc979b5318f4b41d4346a4902dbe9f"
|
|
2798
2882
|
},
|
|
2799
2883
|
{
|
|
2800
2884
|
"path": "src/server/responses-image-gen-repair.ts",
|
|
@@ -2822,7 +2906,7 @@
|
|
|
2822
2906
|
},
|
|
2823
2907
|
{
|
|
2824
2908
|
"path": "src/server/responses-terminal-repair.ts",
|
|
2825
|
-
"sha256": "
|
|
2909
|
+
"sha256": "2d4f00a617e9c4275d3350ce7ae331e8bde8fcab43aff45542ca0b0afb7c3f6b"
|
|
2826
2910
|
},
|
|
2827
2911
|
{
|
|
2828
2912
|
"path": "src/server/responses-tool-search-repair.ts",
|
|
@@ -2850,11 +2934,11 @@
|
|
|
2850
2934
|
},
|
|
2851
2935
|
{
|
|
2852
2936
|
"path": "src/server/responses/collaboration.ts",
|
|
2853
|
-
"sha256": "
|
|
2937
|
+
"sha256": "ce48f612fd22f4bdff7198089411aeabbd43228130eeaa464e5705a73a814237"
|
|
2854
2938
|
},
|
|
2855
2939
|
{
|
|
2856
2940
|
"path": "src/server/responses/combo-stream-preflight.ts",
|
|
2857
|
-
"sha256": "
|
|
2941
|
+
"sha256": "6221e32f18daeeef04305cfc776d380279704b182534ff93056656547e4287ff"
|
|
2858
2942
|
},
|
|
2859
2943
|
{
|
|
2860
2944
|
"path": "src/server/responses/compact.ts",
|
|
@@ -2862,11 +2946,11 @@
|
|
|
2862
2946
|
},
|
|
2863
2947
|
{
|
|
2864
2948
|
"path": "src/server/responses/core.ts",
|
|
2865
|
-
"sha256": "
|
|
2949
|
+
"sha256": "3acb3e81036e8c88fe98823a102fb11ef0cd80149f4e3e49a40c536e8e98383e"
|
|
2866
2950
|
},
|
|
2867
2951
|
{
|
|
2868
2952
|
"path": "src/server/responses/empty-completion-guard.ts",
|
|
2869
|
-
"sha256": "
|
|
2953
|
+
"sha256": "2984ea79b337a1adf083440920310483f92a56a51959f34e24dcdd75920abbfc"
|
|
2870
2954
|
},
|
|
2871
2955
|
{
|
|
2872
2956
|
"path": "src/server/responses/encrypted-payload.ts",
|
|
@@ -2874,11 +2958,11 @@
|
|
|
2874
2958
|
},
|
|
2875
2959
|
{
|
|
2876
2960
|
"path": "src/server/responses/fetch-helpers.ts",
|
|
2877
|
-
"sha256": "
|
|
2961
|
+
"sha256": "951153aa7dd15eeab8ec4d157013b246d1ae3116e91d7126d8ecd54bba4d538c"
|
|
2878
2962
|
},
|
|
2879
2963
|
{
|
|
2880
2964
|
"path": "src/server/responses/input-admission.ts",
|
|
2881
|
-
"sha256": "
|
|
2965
|
+
"sha256": "8b33c2c9a20ac2c7d4e1c179a83142051fd45e0e06342dc8d31ce8fda820d62e"
|
|
2882
2966
|
},
|
|
2883
2967
|
{
|
|
2884
2968
|
"path": "src/server/responses/pacing-overload.ts",
|
|
@@ -2886,15 +2970,15 @@
|
|
|
2886
2970
|
},
|
|
2887
2971
|
{
|
|
2888
2972
|
"path": "src/server/responses/passthrough-error.ts",
|
|
2889
|
-
"sha256": "
|
|
2973
|
+
"sha256": "5b33a2c8f9e5798ea995e3ffa3b3f93f64b7b8ee46a3c6fc99c83664ed90abee"
|
|
2890
2974
|
},
|
|
2891
2975
|
{
|
|
2892
2976
|
"path": "src/server/responses/policy-fallback.ts",
|
|
2893
|
-
"sha256": "
|
|
2977
|
+
"sha256": "f62da21dd6f6c1b33fc629c6ee1a8526cebae28b158d9a3d96326ac82c6d54b2"
|
|
2894
2978
|
},
|
|
2895
2979
|
{
|
|
2896
2980
|
"path": "src/server/responses/responses-field-backfill.ts",
|
|
2897
|
-
"sha256": "
|
|
2981
|
+
"sha256": "e19c10c1033c7bbb9a89a8a9cbe418a1df9735d73e1ac9b7d2f133b3619db3ea"
|
|
2898
2982
|
},
|
|
2899
2983
|
{
|
|
2900
2984
|
"path": "src/server/responses/terminal-guard.ts",
|
|
@@ -2910,7 +2994,7 @@
|
|
|
2910
2994
|
},
|
|
2911
2995
|
{
|
|
2912
2996
|
"path": "src/server/responses/ws-upstream.ts",
|
|
2913
|
-
"sha256": "
|
|
2997
|
+
"sha256": "a892b860cdc50e9f15f23fdb2f286a8e3416eff4ce163650f5226aab4159fd38"
|
|
2914
2998
|
},
|
|
2915
2999
|
{
|
|
2916
3000
|
"path": "src/server/search.ts",
|
|
@@ -2918,7 +3002,7 @@
|
|
|
2918
3002
|
},
|
|
2919
3003
|
{
|
|
2920
3004
|
"path": "src/server/sse-frame-buffer.ts",
|
|
2921
|
-
"sha256": "
|
|
3005
|
+
"sha256": "16d991c67b25bf3c848d47bd6ff01e3b2e24b16be5f2cd4a266bb83591319924"
|
|
2922
3006
|
},
|
|
2923
3007
|
{
|
|
2924
3008
|
"path": "src/server/sse-payload-rewrite.ts",
|
|
@@ -2946,7 +3030,7 @@
|
|
|
2946
3030
|
},
|
|
2947
3031
|
{
|
|
2948
3032
|
"path": "src/server/ws-bridge.ts",
|
|
2949
|
-
"sha256": "
|
|
3033
|
+
"sha256": "515a150f3b1d71f29efe566629dea2056b7562f669c0f98464cf9000577541b3"
|
|
2950
3034
|
},
|
|
2951
3035
|
{
|
|
2952
3036
|
"path": "src/service-manager-probe.ts",
|
|
@@ -2964,6 +3048,18 @@
|
|
|
2964
3048
|
"path": "src/sidecar/candidates.ts",
|
|
2965
3049
|
"sha256": "8ee0ccd7b240716220e9759892f62a40b1b1d376a1829d12ce017c344ae94900"
|
|
2966
3050
|
},
|
|
3051
|
+
{
|
|
3052
|
+
"path": "src/smoke/fingerprint-cache.ts",
|
|
3053
|
+
"sha256": "4f03fccae517b7bdbc01be82e922b48f7aca7642c91d271b745fe9ac7495b4fa"
|
|
3054
|
+
},
|
|
3055
|
+
{
|
|
3056
|
+
"path": "src/smoke/live-scenarios.ts",
|
|
3057
|
+
"sha256": "ab0fec1e43ffd0efe7756fdf150859d593d3054a3ecef75cc6cf9fe7379a27b5"
|
|
3058
|
+
},
|
|
3059
|
+
{
|
|
3060
|
+
"path": "src/smoke/runner.ts",
|
|
3061
|
+
"sha256": "cad2cbfdbc4f40c2c056c1bdf136481e4d8304dba4751cd1a8becfa9d586e7c2"
|
|
3062
|
+
},
|
|
2967
3063
|
{
|
|
2968
3064
|
"path": "src/stall-timeout.ts",
|
|
2969
3065
|
"sha256": "abd4f8883bf90e2e84495a72a0cd59ce2b2491416396f9ac01e075fef164a0de"
|
|
@@ -3012,6 +3108,26 @@
|
|
|
3012
3108
|
"path": "src/storage/worker-lifecycle.ts",
|
|
3013
3109
|
"sha256": "d7c7ba4be4cca53c65b7bc8a3fc20278202ca6c8ef1fa1071d7d1812567fde13"
|
|
3014
3110
|
},
|
|
3111
|
+
{
|
|
3112
|
+
"path": "src/telemetry/dispatcher.ts",
|
|
3113
|
+
"sha256": "1078b36a9dc7edb0836e0f2b210ffa6048dde9cefcaa75c9f2682d56702f514b"
|
|
3114
|
+
},
|
|
3115
|
+
{
|
|
3116
|
+
"path": "src/telemetry/fingerprint.ts",
|
|
3117
|
+
"sha256": "29242bf3864116f6470b21f0cc0ee509561de25fcf1afeee144a04ee8c3ea70a"
|
|
3118
|
+
},
|
|
3119
|
+
{
|
|
3120
|
+
"path": "src/telemetry/hook.ts",
|
|
3121
|
+
"sha256": "a87c62f87e501a6c00527d706f11ba654df6cbf858b3c2fc13a6c2406bc9d8f5"
|
|
3122
|
+
},
|
|
3123
|
+
{
|
|
3124
|
+
"path": "src/telemetry/ledger.ts",
|
|
3125
|
+
"sha256": "de3f1340005789e65191cebfe1691b6f27ed28555f370edf5d89c5d9c9137298"
|
|
3126
|
+
},
|
|
3127
|
+
{
|
|
3128
|
+
"path": "src/telemetry/types.ts",
|
|
3129
|
+
"sha256": "642dda7da0b37c368f5782e69461a35823b9a2f98e4829d148e29234a72e0a31"
|
|
3130
|
+
},
|
|
3015
3131
|
{
|
|
3016
3132
|
"path": "src/tray/assets/opencodex-tray-offline.ico",
|
|
3017
3133
|
"sha256": "20a3452c2e8ee6a881c3c99b92b09f5b473d1944e98a5a681f2158f848f7a9a4"
|
|
@@ -3038,7 +3154,7 @@
|
|
|
3038
3154
|
},
|
|
3039
3155
|
{
|
|
3040
3156
|
"path": "src/types.ts",
|
|
3041
|
-
"sha256": "
|
|
3157
|
+
"sha256": "52a9a716b71144a484f6b4cd464fce8331860a24c0f852234bf6e0fec2f573c3"
|
|
3042
3158
|
},
|
|
3043
3159
|
{
|
|
3044
3160
|
"path": "src/types/accounts.ts",
|
|
@@ -3046,19 +3162,19 @@
|
|
|
3046
3162
|
},
|
|
3047
3163
|
{
|
|
3048
3164
|
"path": "src/types/config.ts",
|
|
3049
|
-
"sha256": "
|
|
3165
|
+
"sha256": "e9bd0d48a52e54528593999ad87350bd2e134d662da104d22eaefc7c6c609e1a"
|
|
3050
3166
|
},
|
|
3051
3167
|
{
|
|
3052
3168
|
"path": "src/types/provider.ts",
|
|
3053
|
-
"sha256": "
|
|
3169
|
+
"sha256": "e937e0f60553ce3ac100343dff5f911516e667e96869e991c1a7017ed0262da4"
|
|
3054
3170
|
},
|
|
3055
3171
|
{
|
|
3056
3172
|
"path": "src/types/request.ts",
|
|
3057
|
-
"sha256": "
|
|
3173
|
+
"sha256": "1eaf5320b2d5882129dca1b6fedd2e0feebb4379b70a053876c9975962d9f22a"
|
|
3058
3174
|
},
|
|
3059
3175
|
{
|
|
3060
3176
|
"path": "src/types/tools.ts",
|
|
3061
|
-
"sha256": "
|
|
3177
|
+
"sha256": "0a8175cdbc44b70c1e94a357539581594197c038965bae59266bc5af6f72004d"
|
|
3062
3178
|
},
|
|
3063
3179
|
{
|
|
3064
3180
|
"path": "src/types/wire.ts",
|
|
@@ -3112,9 +3228,13 @@
|
|
|
3112
3228
|
"path": "src/update/tray-update-plan.mjs",
|
|
3113
3229
|
"sha256": "c11b945c43c0f2d2f10fb6a9d15738ec5639c1938aac0b7c6415ca84d8241211"
|
|
3114
3230
|
},
|
|
3231
|
+
{
|
|
3232
|
+
"path": "src/usage/command-code-manifest.ts",
|
|
3233
|
+
"sha256": "bebe7894653231b7b1edfc0b27aea48871f9efb47c8e34d68b19fffc025cc47a"
|
|
3234
|
+
},
|
|
3115
3235
|
{
|
|
3116
3236
|
"path": "src/usage/cost.ts",
|
|
3117
|
-
"sha256": "
|
|
3237
|
+
"sha256": "f6ff4fe12bd406c5c886f9cd0195940d8b5e46ed75a09f3a8808e4bcd025440d"
|
|
3118
3238
|
},
|
|
3119
3239
|
{
|
|
3120
3240
|
"path": "src/usage/debug.ts",
|
|
@@ -3122,15 +3242,15 @@
|
|
|
3122
3242
|
},
|
|
3123
3243
|
{
|
|
3124
3244
|
"path": "src/usage/expected-prices.ts",
|
|
3125
|
-
"sha256": "
|
|
3245
|
+
"sha256": "98e16ca1b51f184216d9b819a0d6a6370eae0ea118ad1112d056d53be46f2128"
|
|
3126
3246
|
},
|
|
3127
3247
|
{
|
|
3128
3248
|
"path": "src/usage/log.ts",
|
|
3129
|
-
"sha256": "
|
|
3249
|
+
"sha256": "2178aa1e4466a1bfa96806a1d4348ae0e8fc717d418c9f2f76dd37466d3a2013"
|
|
3130
3250
|
},
|
|
3131
3251
|
{
|
|
3132
3252
|
"path": "src/usage/summary.ts",
|
|
3133
|
-
"sha256": "
|
|
3253
|
+
"sha256": "8b20c3349048b3e1010862efa2fb5b0f00d17d7f596ae3051f033228976a26b5"
|
|
3134
3254
|
},
|
|
3135
3255
|
{
|
|
3136
3256
|
"path": "src/usage/totals.ts",
|
|
@@ -3186,7 +3306,7 @@
|
|
|
3186
3306
|
},
|
|
3187
3307
|
{
|
|
3188
3308
|
"path": "src/web-search/exa-executor.ts",
|
|
3189
|
-
"sha256": "
|
|
3309
|
+
"sha256": "a4d00133b83033298db1c5000e7ce41558cbff0a88402206b481074e1af6ff3b"
|
|
3190
3310
|
},
|
|
3191
3311
|
{
|
|
3192
3312
|
"path": "src/web-search/executor.ts",
|
|
@@ -3202,11 +3322,11 @@
|
|
|
3202
3322
|
},
|
|
3203
3323
|
{
|
|
3204
3324
|
"path": "src/web-search/index.ts",
|
|
3205
|
-
"sha256": "
|
|
3325
|
+
"sha256": "49ced022297af6755f43fa88aded61c8b64bc3a057383821d27bbd1fd3f277b2"
|
|
3206
3326
|
},
|
|
3207
3327
|
{
|
|
3208
3328
|
"path": "src/web-search/loop.ts",
|
|
3209
|
-
"sha256": "
|
|
3329
|
+
"sha256": "9c89c5b87301f92f31fad919c2e9e0f1838fa3e5bc955be43253763ed31d4cd3"
|
|
3210
3330
|
},
|
|
3211
3331
|
{
|
|
3212
3332
|
"path": "src/web-search/parse.ts",
|