@bitkyc08/opencodex 2.39.0 → 2.40.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 +49 -21
- package/gui/dist/assets/index-BHe2rl_C.js +112 -0
- package/gui/dist/assets/index-CJSb3HPe.css +1 -0
- package/gui/dist/index.html +2 -2
- package/package.json +1 -1
- package/src/adapters/cursor/catalog.ts +140 -7
- package/src/adapters/cursor/discovery.ts +79 -87
- package/src/adapters/cursor/effort-map.ts +11 -0
- package/src/adapters/cursor/request-builder.ts +31 -4
- package/src/adapters/cursor.ts +17 -0
- package/src/adapters/openai-chat.ts +95 -9
- package/src/adapters/openai-responses.ts +73 -9
- package/src/bridge.ts +58 -13
- package/src/claude/auth-mode.ts +6 -9
- package/src/claude/gateway-cache.ts +23 -3
- package/src/claude/model-info.ts +13 -2
- package/src/cli/access.ts +30 -0
- package/src/cli/account-extended.ts +19 -10
- package/src/cli/capabilities.ts +40 -1
- package/src/cli/claude-agent-startup-sync.ts +3 -0
- package/src/cli/claude.ts +134 -36
- package/src/cli/connect.ts +226 -0
- package/src/cli/dispatch.ts +126 -21
- package/src/cli/gui-pair-client.ts +170 -0
- package/src/cli/gui.ts +87 -0
- package/src/cli/help.ts +4 -1
- package/src/cli/index.ts +76 -22
- package/src/cli/models-runtime-subcommands.ts +34 -0
- package/src/cli/models-runtime.ts +4 -0
- package/src/cli/models.ts +2 -1
- package/src/cli/opencode.ts +2 -1
- package/src/cli/provider-runtime.ts +31 -1
- package/src/cli/registry.ts +32 -2
- package/src/cli/runtime-api.ts +10 -1
- package/src/cli/status.ts +26 -0
- package/src/cli/system-command.ts +9 -3
- package/src/client/connect.ts +650 -0
- package/src/client/hub-client.ts +457 -0
- package/src/client/hub-relay.ts +288 -0
- package/src/client/machine-api.ts +139 -0
- package/src/client/machine-auth.ts +54 -0
- package/src/client/machine-listener.ts +143 -0
- package/src/client/runtime.ts +93 -0
- package/src/client/state.ts +175 -0
- package/src/clients/config-export.ts +16 -5
- package/src/codex/auth-api.ts +169 -15
- package/src/codex/auth-context.ts +61 -6
- package/src/codex/catalog/aggregation.ts +17 -13
- package/src/codex/catalog/metadata.ts +28 -0
- package/src/codex/catalog/provider-fetch.ts +38 -5
- package/src/codex/catalog.ts +1 -1
- package/src/codex/desired-state.ts +13 -3
- package/src/codex/inject.ts +212 -31
- package/src/codex/journal.ts +54 -6
- package/src/codex/main-account.ts +105 -33
- package/src/codex/native-main-claim.ts +23 -1
- package/src/codex/native-residue.ts +7 -0
- package/src/codex/reset-credit-auto-redeem.ts +237 -0
- package/src/combos/request.ts +15 -3
- package/src/combos/types.ts +12 -0
- package/src/config/paths.ts +15 -1
- package/src/config/provider-validation.ts +40 -0
- package/src/config.ts +447 -3
- package/src/generated/compatibility-version.json +224 -108
- package/src/images/artifacts.ts +73 -37
- package/src/images/fulfill.ts +6 -1
- package/src/images/index.ts +1 -1
- package/src/images/plan.ts +16 -2
- package/src/images/synthetic-tool.ts +5 -0
- package/src/images/xai-client.ts +34 -1
- package/src/integrations/cursor-detect.ts +133 -0
- package/src/integrations/cursor-seen.ts +31 -0
- package/src/lib/errors.ts +18 -0
- package/src/lib/gui-pair-capability.ts +104 -0
- package/src/lib/lab-live-route-production.ts +2 -1
- package/src/lib/process-control.ts +4 -3
- package/src/lib/service-secrets.ts +161 -1
- package/src/lib/windows-system-proxy.ts +115 -0
- package/src/oauth/index.ts +3 -2
- package/src/oauth/pool-settings-capability.ts +55 -0
- package/src/providers/api-keys.ts +3 -1
- package/src/providers/codex-capacity.ts +34 -4
- package/src/providers/derive.ts +10 -0
- package/src/providers/fastwire.ts +10 -2
- package/src/providers/key-store.ts +197 -0
- package/src/providers/model-rename-migration.ts +3 -0
- package/src/providers/openai-sidecar.ts +3 -3
- package/src/providers/quota.ts +91 -42
- package/src/providers/registry.ts +33 -3
- package/src/reasoning-effort.ts +32 -0
- package/src/remote/protocol.ts +109 -0
- package/src/responses/citation-markers.ts +101 -0
- package/src/responses/parser.ts +43 -3
- package/src/responses/spill-store.ts +9 -4
- package/src/router.ts +72 -8
- package/src/server/auth-cors.ts +37 -1
- package/src/server/gui-session.ts +449 -0
- package/src/server/gui-static.ts +24 -7
- package/src/server/images.ts +237 -10
- package/src/server/index.ts +356 -30
- package/src/server/management/agent-settings-routes.ts +7 -1
- package/src/server/management/api-key-rotation.ts +74 -0
- package/src/server/management/combo-routes.ts +18 -6
- package/src/server/management/config-routes.ts +22 -3
- package/src/server/management/context.ts +5 -1
- package/src/server/management/cursor-integration-routes.ts +98 -0
- package/src/server/management/logs-usage-routes.ts +2 -1
- package/src/server/management/model-routes.ts +79 -1
- package/src/server/management/model-rows.ts +23 -1
- package/src/server/management/oauth-account-routes.ts +135 -2
- package/src/server/management/provider-routes.ts +143 -9
- package/src/server/management/route-registry.ts +10 -0
- package/src/server/management/session-routes.ts +13 -0
- package/src/server/management/system-routes.ts +13 -1
- package/src/server/management-api.ts +8 -3
- package/src/server/management-auth.ts +124 -82
- package/src/server/models-capabilities.ts +124 -0
- package/src/server/ports.ts +7 -0
- package/src/server/proxy-liveness.ts +7 -0
- package/src/server/request-log.ts +11 -5
- package/src/server/responses/agent-task-recovery.ts +1 -0
- package/src/server/responses/codex-auth-error.ts +3 -1
- package/src/server/responses/collaboration.ts +26 -1
- package/src/server/responses/combo-stream-preflight.ts +25 -6
- package/src/server/responses/compact.ts +32 -12
- package/src/server/responses/context-overflow.ts +49 -0
- package/src/server/responses/core.ts +196 -12
- package/src/server/responses/fetch-helpers.ts +2 -1
- package/src/server/responses/outbound-body-guard.ts +110 -0
- package/src/server/responses/ws-upstream.ts +87 -6
- package/src/server/responses-self-named-namespace-scrub.ts +181 -0
- package/src/server/system-env.ts +78 -25
- package/src/service.ts +218 -42
- package/src/types/config.ts +134 -0
- package/src/types/provider.ts +54 -1
- package/src/types/request.ts +2 -0
- package/src/types.ts +5 -0
- package/src/update/job.ts +33 -5
- package/src/usage/cost.ts +32 -1
- package/src/usage/expected-prices.ts +16 -0
- package/src/usage/log.ts +6 -2
- package/src/usage/summary.ts +48 -6
- package/gui/dist/assets/index-D-lchsPw.js +0 -112
- package/gui/dist/assets/index-uvENYLin.css +0 -1
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
},
|
|
11
11
|
{
|
|
12
12
|
"path": "package.json",
|
|
13
|
-
"sha256": "
|
|
13
|
+
"sha256": "744d790076a782983caf3f0b41cfdf19bb626b89cde350551d85fcbe0a5dbeb7"
|
|
14
14
|
},
|
|
15
15
|
{
|
|
16
16
|
"path": "scripts/model-metadata.source.json",
|
|
@@ -62,7 +62,7 @@
|
|
|
62
62
|
},
|
|
63
63
|
{
|
|
64
64
|
"path": "src/adapters/cursor.ts",
|
|
65
|
-
"sha256": "
|
|
65
|
+
"sha256": "87d46d80b3a6960157d36bd5c27d3296b44646052bc9d763f74e68ec9eaaa5ff"
|
|
66
66
|
},
|
|
67
67
|
{
|
|
68
68
|
"path": "src/adapters/cursor/arg-codec.ts",
|
|
@@ -78,7 +78,7 @@
|
|
|
78
78
|
},
|
|
79
79
|
{
|
|
80
80
|
"path": "src/adapters/cursor/catalog.ts",
|
|
81
|
-
"sha256": "
|
|
81
|
+
"sha256": "19ba3fd16f30263e6de3e3f8a3d7b5a3b4f44a43f86ec9a3ebf3ca26ce205d2c"
|
|
82
82
|
},
|
|
83
83
|
{
|
|
84
84
|
"path": "src/adapters/cursor/checkpoint-store.ts",
|
|
@@ -90,11 +90,11 @@
|
|
|
90
90
|
},
|
|
91
91
|
{
|
|
92
92
|
"path": "src/adapters/cursor/discovery.ts",
|
|
93
|
-
"sha256": "
|
|
93
|
+
"sha256": "14457625c0139bdd13a06c50439e223d8d16908ea2385b967b68525dfb71fd67"
|
|
94
94
|
},
|
|
95
95
|
{
|
|
96
96
|
"path": "src/adapters/cursor/effort-map.ts",
|
|
97
|
-
"sha256": "
|
|
97
|
+
"sha256": "4ad9e17b7779f31a57b68802498b6772d66d1e7fe9d69fd9872c0b6aa05fe241"
|
|
98
98
|
},
|
|
99
99
|
{
|
|
100
100
|
"path": "src/adapters/cursor/envelope-echo.ts",
|
|
@@ -194,7 +194,7 @@
|
|
|
194
194
|
},
|
|
195
195
|
{
|
|
196
196
|
"path": "src/adapters/cursor/request-builder.ts",
|
|
197
|
-
"sha256": "
|
|
197
|
+
"sha256": "34e9cc4365d4740dbfb8edb8e7d16f41725f2f92b3c0acc6ffd6dadc2bde67a9"
|
|
198
198
|
},
|
|
199
199
|
{
|
|
200
200
|
"path": "src/adapters/cursor/thread-continuity.ts",
|
|
@@ -330,7 +330,7 @@
|
|
|
330
330
|
},
|
|
331
331
|
{
|
|
332
332
|
"path": "src/adapters/openai-chat.ts",
|
|
333
|
-
"sha256": "
|
|
333
|
+
"sha256": "5178079b420d9015efdd83015dcfe73a60d1a89c2856a14bad33a5969f6fad6e"
|
|
334
334
|
},
|
|
335
335
|
{
|
|
336
336
|
"path": "src/adapters/openai-responses-url.ts",
|
|
@@ -338,7 +338,7 @@
|
|
|
338
338
|
},
|
|
339
339
|
{
|
|
340
340
|
"path": "src/adapters/openai-responses.ts",
|
|
341
|
-
"sha256": "
|
|
341
|
+
"sha256": "7dab1ab1e07efe29f0e53b872025cdbd4113b66d5fffd90abde4fba3e82f7489"
|
|
342
342
|
},
|
|
343
343
|
{
|
|
344
344
|
"path": "src/adapters/registry.ts",
|
|
@@ -374,7 +374,7 @@
|
|
|
374
374
|
},
|
|
375
375
|
{
|
|
376
376
|
"path": "src/bridge.ts",
|
|
377
|
-
"sha256": "
|
|
377
|
+
"sha256": "a88d4ef081496d93610194cf1bd3c4befb68b088f91338edc709b795cdc55cae"
|
|
378
378
|
},
|
|
379
379
|
{
|
|
380
380
|
"path": "src/chat/inbound.ts",
|
|
@@ -402,7 +402,7 @@
|
|
|
402
402
|
},
|
|
403
403
|
{
|
|
404
404
|
"path": "src/claude/auth-mode.ts",
|
|
405
|
-
"sha256": "
|
|
405
|
+
"sha256": "c2850d987754a58d258c9199901ec71634e3388498b229c09fa622cee65f81ac"
|
|
406
406
|
},
|
|
407
407
|
{
|
|
408
408
|
"path": "src/claude/context-windows.ts",
|
|
@@ -434,7 +434,7 @@
|
|
|
434
434
|
},
|
|
435
435
|
{
|
|
436
436
|
"path": "src/claude/gateway-cache.ts",
|
|
437
|
-
"sha256": "
|
|
437
|
+
"sha256": "e9563af43089435bbe65ff3effa6697d245011c4030fbaf916c7cd315e07e2f7"
|
|
438
438
|
},
|
|
439
439
|
{
|
|
440
440
|
"path": "src/claude/inbound-debug.ts",
|
|
@@ -446,7 +446,7 @@
|
|
|
446
446
|
},
|
|
447
447
|
{
|
|
448
448
|
"path": "src/claude/model-info.ts",
|
|
449
|
-
"sha256": "
|
|
449
|
+
"sha256": "769c79797af647e3a0928b946f1c1fc41a8cc95cf3156ff717d96fc6ca0806b7"
|
|
450
450
|
},
|
|
451
451
|
{
|
|
452
452
|
"path": "src/claude/outbound.ts",
|
|
@@ -458,7 +458,7 @@
|
|
|
458
458
|
},
|
|
459
459
|
{
|
|
460
460
|
"path": "src/cli/access.ts",
|
|
461
|
-
"sha256": "
|
|
461
|
+
"sha256": "f8a3be70b2f1697e546b20b1c5e1a8b79429bd2e94a09c3ff0ea8ea0c45034e7"
|
|
462
462
|
},
|
|
463
463
|
{
|
|
464
464
|
"path": "src/cli/account-api.ts",
|
|
@@ -474,7 +474,7 @@
|
|
|
474
474
|
},
|
|
475
475
|
{
|
|
476
476
|
"path": "src/cli/account-extended.ts",
|
|
477
|
-
"sha256": "
|
|
477
|
+
"sha256": "361ea2bea9f7864336df1c1886d76e02194efabb993f6c4c7565c5abf9ce0bed"
|
|
478
478
|
},
|
|
479
479
|
{
|
|
480
480
|
"path": "src/cli/account-main.ts",
|
|
@@ -502,7 +502,7 @@
|
|
|
502
502
|
},
|
|
503
503
|
{
|
|
504
504
|
"path": "src/cli/capabilities.ts",
|
|
505
|
-
"sha256": "
|
|
505
|
+
"sha256": "1605eaf4531ec5bbbfe1b56073760a1c8ab6b9260709d7600a87b95ae956ca7f"
|
|
506
506
|
},
|
|
507
507
|
{
|
|
508
508
|
"path": "src/cli/catalog-prewarm.ts",
|
|
@@ -510,7 +510,7 @@
|
|
|
510
510
|
},
|
|
511
511
|
{
|
|
512
512
|
"path": "src/cli/claude-agent-startup-sync.ts",
|
|
513
|
-
"sha256": "
|
|
513
|
+
"sha256": "c26a38c927746526b799d68ca18f52c86f57b0492b8e63cb66d923850d29c863"
|
|
514
514
|
},
|
|
515
515
|
{
|
|
516
516
|
"path": "src/cli/claude-desktop.ts",
|
|
@@ -518,7 +518,7 @@
|
|
|
518
518
|
},
|
|
519
519
|
{
|
|
520
520
|
"path": "src/cli/claude.ts",
|
|
521
|
-
"sha256": "
|
|
521
|
+
"sha256": "7e030518c48a8f0d4f95fe2fcd67c61eedb65088e4b12986d8c094cca9dc0e4d"
|
|
522
522
|
},
|
|
523
523
|
{
|
|
524
524
|
"path": "src/cli/codex-cli-update.ts",
|
|
@@ -544,13 +544,17 @@
|
|
|
544
544
|
"path": "src/cli/config-command.ts",
|
|
545
545
|
"sha256": "fa4b09ccb9a24384520818d11510f0400679597ee2936bc180a2555c329689bc"
|
|
546
546
|
},
|
|
547
|
+
{
|
|
548
|
+
"path": "src/cli/connect.ts",
|
|
549
|
+
"sha256": "a2ae6387d19fb3d9ea9640de24e70a9bec059fc6be24ad13d05d82c7d3cf954d"
|
|
550
|
+
},
|
|
547
551
|
{
|
|
548
552
|
"path": "src/cli/debug.ts",
|
|
549
553
|
"sha256": "5a9506da313a5ebd5778530935117f57a54f90cdb496130e32516fb3d1d576ec"
|
|
550
554
|
},
|
|
551
555
|
{
|
|
552
556
|
"path": "src/cli/dispatch.ts",
|
|
553
|
-
"sha256": "
|
|
557
|
+
"sha256": "12cee6bff9b622462a46afe333b143f4a205207639105e70a4dffaecf04794bd"
|
|
554
558
|
},
|
|
555
559
|
{
|
|
556
560
|
"path": "src/cli/doctor.ts",
|
|
@@ -564,13 +568,21 @@
|
|
|
564
568
|
"path": "src/cli/export-command.ts",
|
|
565
569
|
"sha256": "02c6a0a3a89f6759adb6d920efbd731db244855420b789c9b32603cb8286cdf1"
|
|
566
570
|
},
|
|
571
|
+
{
|
|
572
|
+
"path": "src/cli/gui-pair-client.ts",
|
|
573
|
+
"sha256": "160d4a38dd47936ef86fa191a141754222e755fe4fc68bcf483ef7c96a76e52c"
|
|
574
|
+
},
|
|
575
|
+
{
|
|
576
|
+
"path": "src/cli/gui.ts",
|
|
577
|
+
"sha256": "18582e745bafcccc268061d02cd92c2d550270c3bd0c93b00d987c5e9be916bf"
|
|
578
|
+
},
|
|
567
579
|
{
|
|
568
580
|
"path": "src/cli/help.ts",
|
|
569
|
-
"sha256": "
|
|
581
|
+
"sha256": "cad6274235e4d43fd292f7cda09211bf7287b4ab69e3b57cb0c504524bad2a34"
|
|
570
582
|
},
|
|
571
583
|
{
|
|
572
584
|
"path": "src/cli/index.ts",
|
|
573
|
-
"sha256": "
|
|
585
|
+
"sha256": "580abadbb6fe801b27c4bb7fa35ef70e7b303dcf886efaaf75a9b2723008b2e6"
|
|
574
586
|
},
|
|
575
587
|
{
|
|
576
588
|
"path": "src/cli/init.ts",
|
|
@@ -600,13 +612,17 @@
|
|
|
600
612
|
"path": "src/cli/minimax.ts",
|
|
601
613
|
"sha256": "30f17ca0c9a92a289a2fb2ffad1e42c8efdadf72cbeeacb9fb4e3bf45de22122"
|
|
602
614
|
},
|
|
615
|
+
{
|
|
616
|
+
"path": "src/cli/models-runtime-subcommands.ts",
|
|
617
|
+
"sha256": "74e6eddf57432383a4f5ff557f8e1154054ce69647853cf10c08986ef6763973"
|
|
618
|
+
},
|
|
603
619
|
{
|
|
604
620
|
"path": "src/cli/models-runtime.ts",
|
|
605
|
-
"sha256": "
|
|
621
|
+
"sha256": "4b4c9ea30b299522a560df7ff0a8c4b10be3bca70130a81f595e2dfd06335ac1"
|
|
606
622
|
},
|
|
607
623
|
{
|
|
608
624
|
"path": "src/cli/models.ts",
|
|
609
|
-
"sha256": "
|
|
625
|
+
"sha256": "c0cb1a5a4285f6052b375f4fe6f8f8b616d7b9a9f142a2dda55e9c5979d43254"
|
|
610
626
|
},
|
|
611
627
|
{
|
|
612
628
|
"path": "src/cli/observe.ts",
|
|
@@ -614,11 +630,11 @@
|
|
|
614
630
|
},
|
|
615
631
|
{
|
|
616
632
|
"path": "src/cli/opencode.ts",
|
|
617
|
-
"sha256": "
|
|
633
|
+
"sha256": "0d354d8334728cc906d55a1f96961735c6e2de66df96590c723924c9d9a0077d"
|
|
618
634
|
},
|
|
619
635
|
{
|
|
620
636
|
"path": "src/cli/provider-runtime.ts",
|
|
621
|
-
"sha256": "
|
|
637
|
+
"sha256": "4609f6b2cd2c08bb8c9fddb82ab5c823eebf4653ac67f3301a7d10c2a9d48726"
|
|
622
638
|
},
|
|
623
639
|
{
|
|
624
640
|
"path": "src/cli/provider.ts",
|
|
@@ -630,7 +646,7 @@
|
|
|
630
646
|
},
|
|
631
647
|
{
|
|
632
648
|
"path": "src/cli/registry.ts",
|
|
633
|
-
"sha256": "
|
|
649
|
+
"sha256": "0d547d22742194fb8121f1d3956098f25a1bf0e708515459a435d5256c28d0a1"
|
|
634
650
|
},
|
|
635
651
|
{
|
|
636
652
|
"path": "src/cli/root.ts",
|
|
@@ -642,7 +658,7 @@
|
|
|
642
658
|
},
|
|
643
659
|
{
|
|
644
660
|
"path": "src/cli/runtime-api.ts",
|
|
645
|
-
"sha256": "
|
|
661
|
+
"sha256": "ce4c20f1f85e562e5ce563601526fd5b25133fe16d5ececb889b27dfccf5adbb"
|
|
646
662
|
},
|
|
647
663
|
{
|
|
648
664
|
"path": "src/cli/star-prompt.ts",
|
|
@@ -654,7 +670,7 @@
|
|
|
654
670
|
},
|
|
655
671
|
{
|
|
656
672
|
"path": "src/cli/status.ts",
|
|
657
|
-
"sha256": "
|
|
673
|
+
"sha256": "3168ea4179693a6a9c805d3fb1f8a91a88e0dae077afee484cd4ea7c1db918f9"
|
|
658
674
|
},
|
|
659
675
|
{
|
|
660
676
|
"path": "src/cli/storage.ts",
|
|
@@ -662,7 +678,7 @@
|
|
|
662
678
|
},
|
|
663
679
|
{
|
|
664
680
|
"path": "src/cli/system-command.ts",
|
|
665
|
-
"sha256": "
|
|
681
|
+
"sha256": "64b95770b65238cb681769e65e37d485e329cc2f604aede2a108ec2501506193"
|
|
666
682
|
},
|
|
667
683
|
{
|
|
668
684
|
"path": "src/cli/system-restart-client.ts",
|
|
@@ -688,9 +704,41 @@
|
|
|
688
704
|
"path": "src/cli/version-skew.ts",
|
|
689
705
|
"sha256": "5c9cde92783d944bf918600dbb1892bf9ef1102c535a3cbcf25cfde1e5420db8"
|
|
690
706
|
},
|
|
707
|
+
{
|
|
708
|
+
"path": "src/client/connect.ts",
|
|
709
|
+
"sha256": "12da928094357fd016d80c5b489c114cd1470c18867d589c0b26131bb72f6487"
|
|
710
|
+
},
|
|
711
|
+
{
|
|
712
|
+
"path": "src/client/hub-client.ts",
|
|
713
|
+
"sha256": "ac194484053c87eb5354df3ae00da2246009012d0ad7ff14b61d83552bc0646d"
|
|
714
|
+
},
|
|
715
|
+
{
|
|
716
|
+
"path": "src/client/hub-relay.ts",
|
|
717
|
+
"sha256": "356ccb075907d3609a5bf768862a488b114cd9c1dc6a686ad8b2dcb2e48aa24c"
|
|
718
|
+
},
|
|
719
|
+
{
|
|
720
|
+
"path": "src/client/machine-api.ts",
|
|
721
|
+
"sha256": "489b2dcd72030876eddc61b312c8b553cf9c945205e38a54ad6eff7fbdda8bc4"
|
|
722
|
+
},
|
|
723
|
+
{
|
|
724
|
+
"path": "src/client/machine-auth.ts",
|
|
725
|
+
"sha256": "8e1d7a5cf5e6954017c39a5059dc11c343fb67d43425965d0582fb72911ed37c"
|
|
726
|
+
},
|
|
727
|
+
{
|
|
728
|
+
"path": "src/client/machine-listener.ts",
|
|
729
|
+
"sha256": "b598e74f4a48e018c691d41f3f32f41946553e43614e1dd632d861065942e8fe"
|
|
730
|
+
},
|
|
731
|
+
{
|
|
732
|
+
"path": "src/client/runtime.ts",
|
|
733
|
+
"sha256": "bc1e3fd00a620ccaaac4dfd7afa92c33e7b53fdabc56c00a5bd9fe35c80c55c1"
|
|
734
|
+
},
|
|
735
|
+
{
|
|
736
|
+
"path": "src/client/state.ts",
|
|
737
|
+
"sha256": "95a5070878db702cda1bd9735a83af550491c5d8cd713131f9e33a3359280365"
|
|
738
|
+
},
|
|
691
739
|
{
|
|
692
740
|
"path": "src/clients/config-export.ts",
|
|
693
|
-
"sha256": "
|
|
741
|
+
"sha256": "fd3e715eb390ceb0edefe13502dbcd5f8aea07433d6eaf9837a9147d2eeb5bcd"
|
|
694
742
|
},
|
|
695
743
|
{
|
|
696
744
|
"path": "src/codex/account-id.ts",
|
|
@@ -750,7 +798,7 @@
|
|
|
750
798
|
},
|
|
751
799
|
{
|
|
752
800
|
"path": "src/codex/auth-api.ts",
|
|
753
|
-
"sha256": "
|
|
801
|
+
"sha256": "68317d04dfcf132eca089e7657d8cd47f7d3e133bc15280448ad9f119a049a6d"
|
|
754
802
|
},
|
|
755
803
|
{
|
|
756
804
|
"path": "src/codex/auth-collision.ts",
|
|
@@ -758,7 +806,7 @@
|
|
|
758
806
|
},
|
|
759
807
|
{
|
|
760
808
|
"path": "src/codex/auth-context.ts",
|
|
761
|
-
"sha256": "
|
|
809
|
+
"sha256": "7ff224db6cd5770579a464f10541be21206effe592bfa7a402a2456382eb0a8e"
|
|
762
810
|
},
|
|
763
811
|
{
|
|
764
812
|
"path": "src/codex/autostart-health.ts",
|
|
@@ -778,7 +826,7 @@
|
|
|
778
826
|
},
|
|
779
827
|
{
|
|
780
828
|
"path": "src/codex/catalog.ts",
|
|
781
|
-
"sha256": "
|
|
829
|
+
"sha256": "063bd6fc04e9cebfab7dbb1354643f3473cd2b57fa375318cf7db5be4eb69b52"
|
|
782
830
|
},
|
|
783
831
|
{
|
|
784
832
|
"path": "src/codex/catalog/account-models.ts",
|
|
@@ -786,7 +834,7 @@
|
|
|
786
834
|
},
|
|
787
835
|
{
|
|
788
836
|
"path": "src/codex/catalog/aggregation.ts",
|
|
789
|
-
"sha256": "
|
|
837
|
+
"sha256": "12a51cc5db4c10f763489d1be5cd5ba30444c7c929b8e136b1da4c22298b6611"
|
|
790
838
|
},
|
|
791
839
|
{
|
|
792
840
|
"path": "src/codex/catalog/bundled.ts",
|
|
@@ -806,7 +854,7 @@
|
|
|
806
854
|
},
|
|
807
855
|
{
|
|
808
856
|
"path": "src/codex/catalog/metadata.ts",
|
|
809
|
-
"sha256": "
|
|
857
|
+
"sha256": "24dc72a112089964baeca9f2288154f67f70e90b1c08222ca1b30e9284ee50af"
|
|
810
858
|
},
|
|
811
859
|
{
|
|
812
860
|
"path": "src/codex/catalog/native-models.ts",
|
|
@@ -818,7 +866,7 @@
|
|
|
818
866
|
},
|
|
819
867
|
{
|
|
820
868
|
"path": "src/codex/catalog/provider-fetch.ts",
|
|
821
|
-
"sha256": "
|
|
869
|
+
"sha256": "5ad626aec5df22408f16e95e942c7bcf4758ce9cd85b0985679d31d073cfed45"
|
|
822
870
|
},
|
|
823
871
|
{
|
|
824
872
|
"path": "src/codex/catalog/sync.ts",
|
|
@@ -858,7 +906,7 @@
|
|
|
858
906
|
},
|
|
859
907
|
{
|
|
860
908
|
"path": "src/codex/desired-state.ts",
|
|
861
|
-
"sha256": "
|
|
909
|
+
"sha256": "e59769bed20c9e495ef66f27e06a47e1e5fc7344c52115fd64272659bc913ad7"
|
|
862
910
|
},
|
|
863
911
|
{
|
|
864
912
|
"path": "src/codex/desktop-app-restart.ts",
|
|
@@ -914,7 +962,7 @@
|
|
|
914
962
|
},
|
|
915
963
|
{
|
|
916
964
|
"path": "src/codex/inject.ts",
|
|
917
|
-
"sha256": "
|
|
965
|
+
"sha256": "2aae2e66977dc851b8c5b726c64d794f047214b16467849c2b5b9c5d6731fc39"
|
|
918
966
|
},
|
|
919
967
|
{
|
|
920
968
|
"path": "src/codex/injected-marker.ts",
|
|
@@ -934,7 +982,7 @@
|
|
|
934
982
|
},
|
|
935
983
|
{
|
|
936
984
|
"path": "src/codex/journal.ts",
|
|
937
|
-
"sha256": "
|
|
985
|
+
"sha256": "81ebfc825f2bc7b5e04310e141dded6926e74031f7b46a60a3aff13514464d1a"
|
|
938
986
|
},
|
|
939
987
|
{
|
|
940
988
|
"path": "src/codex/log-guard/inspect.ts",
|
|
@@ -974,7 +1022,7 @@
|
|
|
974
1022
|
},
|
|
975
1023
|
{
|
|
976
1024
|
"path": "src/codex/main-account.ts",
|
|
977
|
-
"sha256": "
|
|
1025
|
+
"sha256": "3a1bc6beb21e065f779661e756af5caaf57dcb80d1194c7cbf4823e17c1364f6"
|
|
978
1026
|
},
|
|
979
1027
|
{
|
|
980
1028
|
"path": "src/codex/management-convergence.ts",
|
|
@@ -998,7 +1046,7 @@
|
|
|
998
1046
|
},
|
|
999
1047
|
{
|
|
1000
1048
|
"path": "src/codex/native-main-claim.ts",
|
|
1001
|
-
"sha256": "
|
|
1049
|
+
"sha256": "f68443d088f08ef8b84e663939d83d8010157a7a6377eb85142e5c09f8247931"
|
|
1002
1050
|
},
|
|
1003
1051
|
{
|
|
1004
1052
|
"path": "src/codex/native-main-lock-file.ts",
|
|
@@ -1042,7 +1090,7 @@
|
|
|
1042
1090
|
},
|
|
1043
1091
|
{
|
|
1044
1092
|
"path": "src/codex/native-residue.ts",
|
|
1045
|
-
"sha256": "
|
|
1093
|
+
"sha256": "c637526ec0f9b7773317f3897d400ade16b0df5b8152796e233c86f7c5a1a46b"
|
|
1046
1094
|
},
|
|
1047
1095
|
{
|
|
1048
1096
|
"path": "src/codex/paths.ts",
|
|
@@ -1104,6 +1152,10 @@
|
|
|
1104
1152
|
"path": "src/codex/refresh.ts",
|
|
1105
1153
|
"sha256": "648be78879375346ac2bf134f29a7523a8a436026d862bfaef0482d3840d8daa"
|
|
1106
1154
|
},
|
|
1155
|
+
{
|
|
1156
|
+
"path": "src/codex/reset-credit-auto-redeem.ts",
|
|
1157
|
+
"sha256": "3dd462d5e8c5ddccea10c999f2228a4cadb00424f2dc65586578d144c4b0c843"
|
|
1158
|
+
},
|
|
1107
1159
|
{
|
|
1108
1160
|
"path": "src/codex/reset-credit-operation-ledger.ts",
|
|
1109
1161
|
"sha256": "045f3a1c2d124ea93673ab4c19f29204fec556ce12771754645c0a1afb1bfc91"
|
|
@@ -1170,7 +1222,7 @@
|
|
|
1170
1222
|
},
|
|
1171
1223
|
{
|
|
1172
1224
|
"path": "src/combos/request.ts",
|
|
1173
|
-
"sha256": "
|
|
1225
|
+
"sha256": "ff45756529eb9eed88d23b6b8545647b5833e0360b99c0f20920a542ac8c7031"
|
|
1174
1226
|
},
|
|
1175
1227
|
{
|
|
1176
1228
|
"path": "src/combos/reset-window.ts",
|
|
@@ -1182,7 +1234,7 @@
|
|
|
1182
1234
|
},
|
|
1183
1235
|
{
|
|
1184
1236
|
"path": "src/combos/types.ts",
|
|
1185
|
-
"sha256": "
|
|
1237
|
+
"sha256": "b319e6dcde8063fefd506aa77aafb06df18d8ac93356773d0f2b80821666910c"
|
|
1186
1238
|
},
|
|
1187
1239
|
{
|
|
1188
1240
|
"path": "src/compatibility/index.ts",
|
|
@@ -1198,7 +1250,7 @@
|
|
|
1198
1250
|
},
|
|
1199
1251
|
{
|
|
1200
1252
|
"path": "src/config.ts",
|
|
1201
|
-
"sha256": "
|
|
1253
|
+
"sha256": "930bea140309a44b4ba1bbafb62293bd12cf397e87ecfad5c38a5e2cdafbe203"
|
|
1202
1254
|
},
|
|
1203
1255
|
{
|
|
1204
1256
|
"path": "src/config/atomic-write.ts",
|
|
@@ -1206,7 +1258,7 @@
|
|
|
1206
1258
|
},
|
|
1207
1259
|
{
|
|
1208
1260
|
"path": "src/config/paths.ts",
|
|
1209
|
-
"sha256": "
|
|
1261
|
+
"sha256": "c95e06d52ea41a77d5edcab36d259d167e688a294362121949ad712b9a8a39b1"
|
|
1210
1262
|
},
|
|
1211
1263
|
{
|
|
1212
1264
|
"path": "src/config/pending-teardown-names.d.mts",
|
|
@@ -1230,7 +1282,7 @@
|
|
|
1230
1282
|
},
|
|
1231
1283
|
{
|
|
1232
1284
|
"path": "src/config/provider-validation.ts",
|
|
1233
|
-
"sha256": "
|
|
1285
|
+
"sha256": "fff76673a994d4ed69a5789a02ea6491ef060dd24c5fe4dfa8f603bfea376852"
|
|
1234
1286
|
},
|
|
1235
1287
|
{
|
|
1236
1288
|
"path": "src/config/rebase-provenance.ts",
|
|
@@ -1274,7 +1326,7 @@
|
|
|
1274
1326
|
},
|
|
1275
1327
|
{
|
|
1276
1328
|
"path": "src/images/artifacts.ts",
|
|
1277
|
-
"sha256": "
|
|
1329
|
+
"sha256": "6ee18c60c3654991c3bc55b15660cb927dcc4eef285e1816f3737f640f30ce96"
|
|
1278
1330
|
},
|
|
1279
1331
|
{
|
|
1280
1332
|
"path": "src/images/fulfill-video.ts",
|
|
@@ -1282,11 +1334,11 @@
|
|
|
1282
1334
|
},
|
|
1283
1335
|
{
|
|
1284
1336
|
"path": "src/images/fulfill.ts",
|
|
1285
|
-
"sha256": "
|
|
1337
|
+
"sha256": "43b54f063cda82e31607eff59c389512dcb6004d5f838d4de879dea62142a018"
|
|
1286
1338
|
},
|
|
1287
1339
|
{
|
|
1288
1340
|
"path": "src/images/index.ts",
|
|
1289
|
-
"sha256": "
|
|
1341
|
+
"sha256": "ec5fed6adfe3b59d0c1a8cb7533b13eff247562427016b7b4bde1b14d501ffe9"
|
|
1290
1342
|
},
|
|
1291
1343
|
{
|
|
1292
1344
|
"path": "src/images/loop.ts",
|
|
@@ -1294,11 +1346,11 @@
|
|
|
1294
1346
|
},
|
|
1295
1347
|
{
|
|
1296
1348
|
"path": "src/images/plan.ts",
|
|
1297
|
-
"sha256": "
|
|
1349
|
+
"sha256": "e20fdb8a37c7c04a8a07c6a1677c431fea67f020c1ffa1d62cc3b199208996d4"
|
|
1298
1350
|
},
|
|
1299
1351
|
{
|
|
1300
1352
|
"path": "src/images/synthetic-tool.ts",
|
|
1301
|
-
"sha256": "
|
|
1353
|
+
"sha256": "a88ae6e304a28c162e03293647c1065705c7d8267eda62b6b45306f5ec61fc32"
|
|
1302
1354
|
},
|
|
1303
1355
|
{
|
|
1304
1356
|
"path": "src/images/types.ts",
|
|
@@ -1306,7 +1358,7 @@
|
|
|
1306
1358
|
},
|
|
1307
1359
|
{
|
|
1308
1360
|
"path": "src/images/xai-client.ts",
|
|
1309
|
-
"sha256": "
|
|
1361
|
+
"sha256": "5d8bdc9776f11e65d242656de5da280370ecaa7e1ffe7c390c85d0cf5690230b"
|
|
1310
1362
|
},
|
|
1311
1363
|
{
|
|
1312
1364
|
"path": "src/images/xai-video-client.ts",
|
|
@@ -1320,6 +1372,14 @@
|
|
|
1320
1372
|
"path": "src/integrations/config-io.ts",
|
|
1321
1373
|
"sha256": "5271736a6499bc4bcb68bde2ccefd8ef8ce7953bddf13e764fb1b9ee66433fe3"
|
|
1322
1374
|
},
|
|
1375
|
+
{
|
|
1376
|
+
"path": "src/integrations/cursor-detect.ts",
|
|
1377
|
+
"sha256": "ec3c7c03cb7652bd7c89eee4a285fefd0c2c0fa4c641238fda91b977ac12f02c"
|
|
1378
|
+
},
|
|
1379
|
+
{
|
|
1380
|
+
"path": "src/integrations/cursor-seen.ts",
|
|
1381
|
+
"sha256": "ed100257d59585f2f42c46157f844a44f0f53ec66f82cbd267675baef798e231"
|
|
1382
|
+
},
|
|
1323
1383
|
{
|
|
1324
1384
|
"path": "src/integrations/journal.ts",
|
|
1325
1385
|
"sha256": "961d68c7b35e151e030cd2853223b0c1575fad77af444e768ff321f6e8a6b330"
|
|
@@ -1926,7 +1986,7 @@
|
|
|
1926
1986
|
},
|
|
1927
1987
|
{
|
|
1928
1988
|
"path": "src/lib/errors.ts",
|
|
1929
|
-
"sha256": "
|
|
1989
|
+
"sha256": "8922c5914d7452b61baa4c9f578801f87cc5c28621c21ca7a89bc9a1c7b01925"
|
|
1930
1990
|
},
|
|
1931
1991
|
{
|
|
1932
1992
|
"path": "src/lib/eventstream-decoder.ts",
|
|
@@ -1944,6 +2004,10 @@
|
|
|
1944
2004
|
"path": "src/lib/gcp-adc.ts",
|
|
1945
2005
|
"sha256": "09de636d27b8b122088cf1322235567e54ce1a8cf6b00dd349e59856733045da"
|
|
1946
2006
|
},
|
|
2007
|
+
{
|
|
2008
|
+
"path": "src/lib/gui-pair-capability.ts",
|
|
2009
|
+
"sha256": "0afc52a44e47040dea892b4806d7755e1e1ef284e6a8256650f4b19fe55c1122"
|
|
2010
|
+
},
|
|
1947
2011
|
{
|
|
1948
2012
|
"path": "src/lib/injection-debug-log.ts",
|
|
1949
2013
|
"sha256": "ab3b8e53c546c0ff43dc129d29c0b11c2d258f86e9d12475d87bf55510eb02c9"
|
|
@@ -1966,7 +2030,7 @@
|
|
|
1966
2030
|
},
|
|
1967
2031
|
{
|
|
1968
2032
|
"path": "src/lib/lab-live-route-production.ts",
|
|
1969
|
-
"sha256": "
|
|
2033
|
+
"sha256": "63667b79600192bdc1ece145cff783c5ecf9509c8dfb0a7334d0c240a9a557d4"
|
|
1970
2034
|
},
|
|
1971
2035
|
{
|
|
1972
2036
|
"path": "src/lib/lab-passive-linker-registration.ts",
|
|
@@ -2006,7 +2070,7 @@
|
|
|
2006
2070
|
},
|
|
2007
2071
|
{
|
|
2008
2072
|
"path": "src/lib/process-control.ts",
|
|
2009
|
-
"sha256": "
|
|
2073
|
+
"sha256": "a862c1ccf993243f4208dc5ec1ef0a443557daf22b33f2b2116307f3a9b826a3"
|
|
2010
2074
|
},
|
|
2011
2075
|
{
|
|
2012
2076
|
"path": "src/lib/provider-outbound.ts",
|
|
@@ -2038,7 +2102,7 @@
|
|
|
2038
2102
|
},
|
|
2039
2103
|
{
|
|
2040
2104
|
"path": "src/lib/service-secrets.ts",
|
|
2041
|
-
"sha256": "
|
|
2105
|
+
"sha256": "0672d98a9ee31cfe02219e68ce3fff4695eb607bf5126abc2b50edc2fa514e82"
|
|
2042
2106
|
},
|
|
2043
2107
|
{
|
|
2044
2108
|
"path": "src/lib/shadow-call.ts",
|
|
@@ -2124,6 +2188,10 @@
|
|
|
2124
2188
|
"path": "src/lib/windows-service-wrappers.ts",
|
|
2125
2189
|
"sha256": "45fa37399e5d6875eb1f7bcfb93950ec80abb4de09a7abf278e269c88255ba28"
|
|
2126
2190
|
},
|
|
2191
|
+
{
|
|
2192
|
+
"path": "src/lib/windows-system-proxy.ts",
|
|
2193
|
+
"sha256": "c88f6c94490ce705e5500b1105a63904d4f8d21d257efdc433611d47f91c8e76"
|
|
2194
|
+
},
|
|
2127
2195
|
{
|
|
2128
2196
|
"path": "src/lib/windows-text.ts",
|
|
2129
2197
|
"sha256": "d4238e2cd6be054908e39a6357ca48c58e50d657218e7ec724e9edee5ac634af"
|
|
@@ -2206,7 +2274,7 @@
|
|
|
2206
2274
|
},
|
|
2207
2275
|
{
|
|
2208
2276
|
"path": "src/oauth/index.ts",
|
|
2209
|
-
"sha256": "
|
|
2277
|
+
"sha256": "94a57b1785200cc5a7f3fb2b964317cf30a051baa4415c213c08cd39ee44ca75"
|
|
2210
2278
|
},
|
|
2211
2279
|
{
|
|
2212
2280
|
"path": "src/oauth/key-providers.ts",
|
|
@@ -2248,6 +2316,10 @@
|
|
|
2248
2316
|
"path": "src/oauth/pkce.ts",
|
|
2249
2317
|
"sha256": "8e2798e44de278bc4db99ceaeded806e4d80a141f4d81bd81e4ab6fd22189509"
|
|
2250
2318
|
},
|
|
2319
|
+
{
|
|
2320
|
+
"path": "src/oauth/pool-settings-capability.ts",
|
|
2321
|
+
"sha256": "19b2162b1701d3f5386b296a8d48cd6b5290d0242e75b5022144e59e090dad2c"
|
|
2322
|
+
},
|
|
2251
2323
|
{
|
|
2252
2324
|
"path": "src/oauth/store.ts",
|
|
2253
2325
|
"sha256": "209b0e02f69cd60b09d832a770382c5a88f3b94bb8663d9c1c22b87e05596b2e"
|
|
@@ -2286,7 +2358,7 @@
|
|
|
2286
2358
|
},
|
|
2287
2359
|
{
|
|
2288
2360
|
"path": "src/providers/api-keys.ts",
|
|
2289
|
-
"sha256": "
|
|
2361
|
+
"sha256": "4cb89675d3414ba8c7f33725240de04e0dbe506147a19168811d0d88b23a4187"
|
|
2290
2362
|
},
|
|
2291
2363
|
{
|
|
2292
2364
|
"path": "src/providers/auto-compact-budget.ts",
|
|
@@ -2298,7 +2370,7 @@
|
|
|
2298
2370
|
},
|
|
2299
2371
|
{
|
|
2300
2372
|
"path": "src/providers/codex-capacity.ts",
|
|
2301
|
-
"sha256": "
|
|
2373
|
+
"sha256": "18f6ea26ed34753f6a06bf2243d79ffeba1678cebeb2143c36bd0a4c9cf6c97f"
|
|
2302
2374
|
},
|
|
2303
2375
|
{
|
|
2304
2376
|
"path": "src/providers/command-code-efforts.ts",
|
|
@@ -2318,11 +2390,11 @@
|
|
|
2318
2390
|
},
|
|
2319
2391
|
{
|
|
2320
2392
|
"path": "src/providers/derive.ts",
|
|
2321
|
-
"sha256": "
|
|
2393
|
+
"sha256": "d0432e3ad526c23bd22270fe442907e2e2b853a2bcaed00946e668fd15ff5d3f"
|
|
2322
2394
|
},
|
|
2323
2395
|
{
|
|
2324
2396
|
"path": "src/providers/fastwire.ts",
|
|
2325
|
-
"sha256": "
|
|
2397
|
+
"sha256": "50790c968acb18faf4acc291b4211711c248435ca73dd784c475bdd19bed0d8a"
|
|
2326
2398
|
},
|
|
2327
2399
|
{
|
|
2328
2400
|
"path": "src/providers/free-directory.ts",
|
|
@@ -2340,6 +2412,10 @@
|
|
|
2340
2412
|
"path": "src/providers/key-failover.ts",
|
|
2341
2413
|
"sha256": "3a2ea2df5a6a88b4d78e731ab2b9eb026db1b5ac78623bb17f57b9528b4cfcd8"
|
|
2342
2414
|
},
|
|
2415
|
+
{
|
|
2416
|
+
"path": "src/providers/key-store.ts",
|
|
2417
|
+
"sha256": "088f8d427cd0953a9ef902decb9d61b8efeb64abb942a388ea8d4550c2b5d0b6"
|
|
2418
|
+
},
|
|
2343
2419
|
{
|
|
2344
2420
|
"path": "src/providers/kiro-models.ts",
|
|
2345
2421
|
"sha256": "81a323255ab20e27b1040178b01b9cf567d0411b4171107bd47cc9a7ba46be4d"
|
|
@@ -2366,7 +2442,7 @@
|
|
|
2366
2442
|
},
|
|
2367
2443
|
{
|
|
2368
2444
|
"path": "src/providers/model-rename-migration.ts",
|
|
2369
|
-
"sha256": "
|
|
2445
|
+
"sha256": "96e4c91654ae437ff77fe0811bd36a45086501ee8b38045b8ffa423791131c3b"
|
|
2370
2446
|
},
|
|
2371
2447
|
{
|
|
2372
2448
|
"path": "src/providers/model-rename-startup.ts",
|
|
@@ -2382,7 +2458,7 @@
|
|
|
2382
2458
|
},
|
|
2383
2459
|
{
|
|
2384
2460
|
"path": "src/providers/openai-sidecar.ts",
|
|
2385
|
-
"sha256": "
|
|
2461
|
+
"sha256": "78ffc7260413a4c2a38b509fa9aad59594f371377675b633e48b1a5ef5901ebd"
|
|
2386
2462
|
},
|
|
2387
2463
|
{
|
|
2388
2464
|
"path": "src/providers/openai-tier-startup.ts",
|
|
@@ -2422,11 +2498,11 @@
|
|
|
2422
2498
|
},
|
|
2423
2499
|
{
|
|
2424
2500
|
"path": "src/providers/quota.ts",
|
|
2425
|
-
"sha256": "
|
|
2501
|
+
"sha256": "5699763f606b59af65e75800a2e3f90127719b9f0f49e8cf87e4be43e316cf30"
|
|
2426
2502
|
},
|
|
2427
2503
|
{
|
|
2428
2504
|
"path": "src/providers/registry.ts",
|
|
2429
|
-
"sha256": "
|
|
2505
|
+
"sha256": "961fd182fe812474bf1f996c9638d76d965d2da291f5905dfa3747f3eb9886d2"
|
|
2430
2506
|
},
|
|
2431
2507
|
{
|
|
2432
2508
|
"path": "src/providers/request-pacing.ts",
|
|
@@ -2458,12 +2534,20 @@
|
|
|
2458
2534
|
},
|
|
2459
2535
|
{
|
|
2460
2536
|
"path": "src/reasoning-effort.ts",
|
|
2461
|
-
"sha256": "
|
|
2537
|
+
"sha256": "9eb83f657f48c2582dd6846d3ba1e3f584197025c779bbece5953d552fac1322"
|
|
2538
|
+
},
|
|
2539
|
+
{
|
|
2540
|
+
"path": "src/remote/protocol.ts",
|
|
2541
|
+
"sha256": "0a4fd661b9a54aacecdbf1922f043e62d09fefba36a7ec40bf0d4d3a9af99df8"
|
|
2462
2542
|
},
|
|
2463
2543
|
{
|
|
2464
2544
|
"path": "src/responses/apply-patch-envelope.ts",
|
|
2465
2545
|
"sha256": "c517d065f69140b26524e97eafeb056ed5b25475be0ff120cd764cfbf93959c9"
|
|
2466
2546
|
},
|
|
2547
|
+
{
|
|
2548
|
+
"path": "src/responses/citation-markers.ts",
|
|
2549
|
+
"sha256": "3760c0a8bd286f57e8783b7a655d3bda34435c9d81a46e6a439d8cbd6f81b119"
|
|
2550
|
+
},
|
|
2467
2551
|
{
|
|
2468
2552
|
"path": "src/responses/code-mode-helper-compat.ts",
|
|
2469
2553
|
"sha256": "ddaffda75c4b3fb08f93f4b8f5c5413c55fe9a97f693d77d0d6bd6ffe615d03f"
|
|
@@ -2486,7 +2570,7 @@
|
|
|
2486
2570
|
},
|
|
2487
2571
|
{
|
|
2488
2572
|
"path": "src/responses/parser.ts",
|
|
2489
|
-
"sha256": "
|
|
2573
|
+
"sha256": "f15980c9165ecadbfe078b489f4c54b03a400b85351b82e8183c3719cfada923"
|
|
2490
2574
|
},
|
|
2491
2575
|
{
|
|
2492
2576
|
"path": "src/responses/provider-continuation.ts",
|
|
@@ -2510,7 +2594,7 @@
|
|
|
2510
2594
|
},
|
|
2511
2595
|
{
|
|
2512
2596
|
"path": "src/responses/spill-store.ts",
|
|
2513
|
-
"sha256": "
|
|
2597
|
+
"sha256": "9f00a1428339343463dcda5641da17bfeea9fa254dedee29d447ed006179132b"
|
|
2514
2598
|
},
|
|
2515
2599
|
{
|
|
2516
2600
|
"path": "src/responses/state.ts",
|
|
@@ -2538,7 +2622,7 @@
|
|
|
2538
2622
|
},
|
|
2539
2623
|
{
|
|
2540
2624
|
"path": "src/router.ts",
|
|
2541
|
-
"sha256": "
|
|
2625
|
+
"sha256": "9f81c43a40491c162c8fd928eba467286ed31b173be62a436728f044d66602e9"
|
|
2542
2626
|
},
|
|
2543
2627
|
{
|
|
2544
2628
|
"path": "src/routing/analytics.ts",
|
|
@@ -2642,7 +2726,7 @@
|
|
|
2642
2726
|
},
|
|
2643
2727
|
{
|
|
2644
2728
|
"path": "src/server/auth-cors.ts",
|
|
2645
|
-
"sha256": "
|
|
2729
|
+
"sha256": "4364ce5a0c2e8b1d440aecda315713c4af789d9f6b15858270a12f14d9a0423c"
|
|
2646
2730
|
},
|
|
2647
2731
|
{
|
|
2648
2732
|
"path": "src/server/background-lifecycle.ts",
|
|
@@ -2680,9 +2764,13 @@
|
|
|
2680
2764
|
"path": "src/server/github-copilot-responses-repair.ts",
|
|
2681
2765
|
"sha256": "7cff66ca0b8e1b4ff64e29c3b353d876d053a9612a0c357ea5af9603c8400629"
|
|
2682
2766
|
},
|
|
2767
|
+
{
|
|
2768
|
+
"path": "src/server/gui-session.ts",
|
|
2769
|
+
"sha256": "20cfd02871fdac992f1b5a25149eedffc8b7a962d0fe6b52d5b59e2ed1fb0464"
|
|
2770
|
+
},
|
|
2683
2771
|
{
|
|
2684
2772
|
"path": "src/server/gui-static.ts",
|
|
2685
|
-
"sha256": "
|
|
2773
|
+
"sha256": "9b94c476436ffd23b1acf8d84c7695a7fc7a5395293905efcaf17374bd0122f7"
|
|
2686
2774
|
},
|
|
2687
2775
|
{
|
|
2688
2776
|
"path": "src/server/image-retry.ts",
|
|
@@ -2690,11 +2778,11 @@
|
|
|
2690
2778
|
},
|
|
2691
2779
|
{
|
|
2692
2780
|
"path": "src/server/images.ts",
|
|
2693
|
-
"sha256": "
|
|
2781
|
+
"sha256": "f8a1ede7de8415c86bb2d91dd4a700f609dfaf2e7ceeeb414dee7c04cdea4447"
|
|
2694
2782
|
},
|
|
2695
2783
|
{
|
|
2696
2784
|
"path": "src/server/index.ts",
|
|
2697
|
-
"sha256": "
|
|
2785
|
+
"sha256": "e3354347dc863e0171ae45380cde8537064b3667c02c0c495aaae2c73cb70161"
|
|
2698
2786
|
},
|
|
2699
2787
|
{
|
|
2700
2788
|
"path": "src/server/lifecycle.ts",
|
|
@@ -2714,20 +2802,24 @@
|
|
|
2714
2802
|
},
|
|
2715
2803
|
{
|
|
2716
2804
|
"path": "src/server/management-api.ts",
|
|
2717
|
-
"sha256": "
|
|
2805
|
+
"sha256": "14af2904bbe886369f8d818d02128f954550ac730a6d7fb27c72fd84bc17f332"
|
|
2718
2806
|
},
|
|
2719
2807
|
{
|
|
2720
2808
|
"path": "src/server/management-auth.ts",
|
|
2721
|
-
"sha256": "
|
|
2809
|
+
"sha256": "b9746242b9228fe077d5a99b5f268a0efb9fa9240d12ece86d7c8d2577867f57"
|
|
2722
2810
|
},
|
|
2723
2811
|
{
|
|
2724
2812
|
"path": "src/server/management/agent-settings-routes.ts",
|
|
2725
|
-
"sha256": "
|
|
2813
|
+
"sha256": "8f176f14ed06aacefcb972ee79e69e8c1804bfa9cef8c231a5a3bd3823baa2e5"
|
|
2726
2814
|
},
|
|
2727
2815
|
{
|
|
2728
2816
|
"path": "src/server/management/api-access.ts",
|
|
2729
2817
|
"sha256": "e7a7787be79dc93a1edb9a618847c705f12a24bc1bbcdd94dd5197be14f7a4a1"
|
|
2730
2818
|
},
|
|
2819
|
+
{
|
|
2820
|
+
"path": "src/server/management/api-key-rotation.ts",
|
|
2821
|
+
"sha256": "fdb7fc0a2ba32d94a67896c9580f30034a6c1693e704e1fc2485a5e2eb991db4"
|
|
2822
|
+
},
|
|
2731
2823
|
{
|
|
2732
2824
|
"path": "src/server/management/api-key-usage.ts",
|
|
2733
2825
|
"sha256": "86a9fbebb6986d115b46e32da123b706d9ee773881bfa5e13b9d87554d89001f"
|
|
@@ -2742,15 +2834,19 @@
|
|
|
2742
2834
|
},
|
|
2743
2835
|
{
|
|
2744
2836
|
"path": "src/server/management/combo-routes.ts",
|
|
2745
|
-
"sha256": "
|
|
2837
|
+
"sha256": "c61dfda39ef6f375e6a54d44faf10e644d6fa383890acb1406d694ee83c92db2"
|
|
2746
2838
|
},
|
|
2747
2839
|
{
|
|
2748
2840
|
"path": "src/server/management/config-routes.ts",
|
|
2749
|
-
"sha256": "
|
|
2841
|
+
"sha256": "ed4b3b948b519bb8ba799ed4ce204d588b58710a0dadf73efafcb2a5ec1ba736"
|
|
2750
2842
|
},
|
|
2751
2843
|
{
|
|
2752
2844
|
"path": "src/server/management/context.ts",
|
|
2753
|
-
"sha256": "
|
|
2845
|
+
"sha256": "8a74e30cce85dbeb7f925fc9894bd9e952e106bc4c5c20a177d2a26d25e70246"
|
|
2846
|
+
},
|
|
2847
|
+
{
|
|
2848
|
+
"path": "src/server/management/cursor-integration-routes.ts",
|
|
2849
|
+
"sha256": "f2d0348443076ac9a766947d0509408e3c915fd9bdc5b352720a98f125291475"
|
|
2754
2850
|
},
|
|
2755
2851
|
{
|
|
2756
2852
|
"path": "src/server/management/integration-routes.ts",
|
|
@@ -2766,15 +2862,15 @@
|
|
|
2766
2862
|
},
|
|
2767
2863
|
{
|
|
2768
2864
|
"path": "src/server/management/logs-usage-routes.ts",
|
|
2769
|
-
"sha256": "
|
|
2865
|
+
"sha256": "79705f72fed9ab2e4365688b80292b6c53b7bf01588576b67a3b84518dbe99d0"
|
|
2770
2866
|
},
|
|
2771
2867
|
{
|
|
2772
2868
|
"path": "src/server/management/model-routes.ts",
|
|
2773
|
-
"sha256": "
|
|
2869
|
+
"sha256": "e177a944dc4680f3c974b43ae3a141d1d10e6481bf876b7ee097ca4e876e079a"
|
|
2774
2870
|
},
|
|
2775
2871
|
{
|
|
2776
2872
|
"path": "src/server/management/model-rows.ts",
|
|
2777
|
-
"sha256": "
|
|
2873
|
+
"sha256": "96b821064a267fae0ccc01c82c9bc66ef2d3919ab5a5983278268685950543b7"
|
|
2778
2874
|
},
|
|
2779
2875
|
{
|
|
2780
2876
|
"path": "src/server/management/native-integration-routes.ts",
|
|
@@ -2782,7 +2878,7 @@
|
|
|
2782
2878
|
},
|
|
2783
2879
|
{
|
|
2784
2880
|
"path": "src/server/management/oauth-account-routes.ts",
|
|
2785
|
-
"sha256": "
|
|
2881
|
+
"sha256": "21e092715e45e8552849d9d428d3cf54a076b6dd3dd73af02afca792bbb4eb4a"
|
|
2786
2882
|
},
|
|
2787
2883
|
{
|
|
2788
2884
|
"path": "src/server/management/provider-capability-config.ts",
|
|
@@ -2790,7 +2886,7 @@
|
|
|
2790
2886
|
},
|
|
2791
2887
|
{
|
|
2792
2888
|
"path": "src/server/management/provider-routes.ts",
|
|
2793
|
-
"sha256": "
|
|
2889
|
+
"sha256": "5cc1fc2efe6a5bb331df980d2d2d51baa1c5e182a239d1bb441742158e5058b1"
|
|
2794
2890
|
},
|
|
2795
2891
|
{
|
|
2796
2892
|
"path": "src/server/management/request-history-routes.ts",
|
|
@@ -2798,7 +2894,7 @@
|
|
|
2798
2894
|
},
|
|
2799
2895
|
{
|
|
2800
2896
|
"path": "src/server/management/route-registry.ts",
|
|
2801
|
-
"sha256": "
|
|
2897
|
+
"sha256": "d35f96021c4a95f5a84e35c891feba00b9ee8e9bd9c4c4b983ed16177fa759ee"
|
|
2802
2898
|
},
|
|
2803
2899
|
{
|
|
2804
2900
|
"path": "src/server/management/routing-analytics-routes.ts",
|
|
@@ -2808,6 +2904,10 @@
|
|
|
2808
2904
|
"path": "src/server/management/routing-profile-routes.ts",
|
|
2809
2905
|
"sha256": "d7400986805779203c3d78d0a7b105f6464c8d18bef11ca4ef25eca1fe07998b"
|
|
2810
2906
|
},
|
|
2907
|
+
{
|
|
2908
|
+
"path": "src/server/management/session-routes.ts",
|
|
2909
|
+
"sha256": "47c58cdf441aea0908bff140280147e19a9716313822e07a357ddcc2decfe3a8"
|
|
2910
|
+
},
|
|
2811
2911
|
{
|
|
2812
2912
|
"path": "src/server/management/shadow-call-validation.ts",
|
|
2813
2913
|
"sha256": "ee8856f07e7a3d6c6c9824c28da8888dca36989fe65f1f6a6239c35d89352c02"
|
|
@@ -2834,7 +2934,7 @@
|
|
|
2834
2934
|
},
|
|
2835
2935
|
{
|
|
2836
2936
|
"path": "src/server/management/system-routes.ts",
|
|
2837
|
-
"sha256": "
|
|
2937
|
+
"sha256": "16093bf012527111a784f289b2db9ed560e3a6607eecfbda0627f66a0e053487"
|
|
2838
2938
|
},
|
|
2839
2939
|
{
|
|
2840
2940
|
"path": "src/server/management/usage-summary-cache.ts",
|
|
@@ -2852,6 +2952,10 @@
|
|
|
2852
2952
|
"path": "src/server/memory-watchdog.ts",
|
|
2853
2953
|
"sha256": "d2f7f5cd03316cdfb0bd23abd77b4c28d87986a9a1cb9e0f53e3890695f07f4c"
|
|
2854
2954
|
},
|
|
2955
|
+
{
|
|
2956
|
+
"path": "src/server/models-capabilities.ts",
|
|
2957
|
+
"sha256": "6e7d6272689a2184cdd85dcbddf5b43afd54fdc7fab8a048bbc5ff2b5c0669cf"
|
|
2958
|
+
},
|
|
2855
2959
|
{
|
|
2856
2960
|
"path": "src/server/passive-route-linker.ts",
|
|
2857
2961
|
"sha256": "1cf21be7d35d87f6642358ed3f068c5fb647099da52f68b49d1b5535c84cca14"
|
|
@@ -2862,11 +2966,11 @@
|
|
|
2862
2966
|
},
|
|
2863
2967
|
{
|
|
2864
2968
|
"path": "src/server/ports.ts",
|
|
2865
|
-
"sha256": "
|
|
2969
|
+
"sha256": "da21561adaf467443253b8e9d542473a5d66d33ba722bd43820739baba423d30"
|
|
2866
2970
|
},
|
|
2867
2971
|
{
|
|
2868
2972
|
"path": "src/server/proxy-liveness.ts",
|
|
2869
|
-
"sha256": "
|
|
2973
|
+
"sha256": "6bd09fe75e57173958dbf2cb248dd10fae26aa90d30e6d014f53530ddea72421"
|
|
2870
2974
|
},
|
|
2871
2975
|
{
|
|
2872
2976
|
"path": "src/server/readiness.ts",
|
|
@@ -2890,7 +2994,7 @@
|
|
|
2890
2994
|
},
|
|
2891
2995
|
{
|
|
2892
2996
|
"path": "src/server/request-log.ts",
|
|
2893
|
-
"sha256": "
|
|
2997
|
+
"sha256": "cd5302e418f5b382924390cea18b392413125b716d082fbb16c4649238899c48"
|
|
2894
2998
|
},
|
|
2895
2999
|
{
|
|
2896
3000
|
"path": "src/server/responses-custom-tool-repair.ts",
|
|
@@ -2916,6 +3020,10 @@
|
|
|
2916
3020
|
"path": "src/server/responses-reasoning-summary-rewrite.ts",
|
|
2917
3021
|
"sha256": "9a49932cb6bac6402f8e57f3188bdb86e3671f6fe55d1711fb84b9ad81b1d487"
|
|
2918
3022
|
},
|
|
3023
|
+
{
|
|
3024
|
+
"path": "src/server/responses-self-named-namespace-scrub.ts",
|
|
3025
|
+
"sha256": "fe4a833cbc6ba27664fb7f4892a9ac6982b1dc3c84d5a950f08955dbbdd7560a"
|
|
3026
|
+
},
|
|
2919
3027
|
{
|
|
2920
3028
|
"path": "src/server/responses-snapshot-repair.ts",
|
|
2921
3029
|
"sha256": "f916614f2654a21e10ea4d2e18c810a378d345417380e1b0b6fd3eee984baf8a"
|
|
@@ -2942,27 +3050,31 @@
|
|
|
2942
3050
|
},
|
|
2943
3051
|
{
|
|
2944
3052
|
"path": "src/server/responses/agent-task-recovery.ts",
|
|
2945
|
-
"sha256": "
|
|
3053
|
+
"sha256": "66136051103a8074462edd302036b284f322ae1d3554948fa5461c016f2c691c"
|
|
2946
3054
|
},
|
|
2947
3055
|
{
|
|
2948
3056
|
"path": "src/server/responses/codex-auth-error.ts",
|
|
2949
|
-
"sha256": "
|
|
3057
|
+
"sha256": "f1dc4cfe5e7508e6e30bd9f5e37b6793fdf34b1b2e36df178078b90203749001"
|
|
2950
3058
|
},
|
|
2951
3059
|
{
|
|
2952
3060
|
"path": "src/server/responses/collaboration.ts",
|
|
2953
|
-
"sha256": "
|
|
3061
|
+
"sha256": "b92fed1ac98f7a9f351bc79820ff8ecae25eca1c8bc7f8cffe2557907e0a0f71"
|
|
2954
3062
|
},
|
|
2955
3063
|
{
|
|
2956
3064
|
"path": "src/server/responses/combo-stream-preflight.ts",
|
|
2957
|
-
"sha256": "
|
|
3065
|
+
"sha256": "6abc1fc9c52baeef6492505accb5327b23be7320fd50a6cda5578f239f413712"
|
|
2958
3066
|
},
|
|
2959
3067
|
{
|
|
2960
3068
|
"path": "src/server/responses/compact.ts",
|
|
2961
|
-
"sha256": "
|
|
3069
|
+
"sha256": "4c0f310ea639e8ed99ba1453340de4e8058bf2a0d8f645ffefe4aa7d4a00f5f8"
|
|
3070
|
+
},
|
|
3071
|
+
{
|
|
3072
|
+
"path": "src/server/responses/context-overflow.ts",
|
|
3073
|
+
"sha256": "42774a8d6e557c406723cfa04f1a8c7e2e2114e8537f1d30adedea0b54503e22"
|
|
2962
3074
|
},
|
|
2963
3075
|
{
|
|
2964
3076
|
"path": "src/server/responses/core.ts",
|
|
2965
|
-
"sha256": "
|
|
3077
|
+
"sha256": "531c2bd4b8c89dc6294f9b7e10a64f69e384cd6990afaf4dbc46a4404dc3b3b1"
|
|
2966
3078
|
},
|
|
2967
3079
|
{
|
|
2968
3080
|
"path": "src/server/responses/empty-completion-guard.ts",
|
|
@@ -2974,12 +3086,16 @@
|
|
|
2974
3086
|
},
|
|
2975
3087
|
{
|
|
2976
3088
|
"path": "src/server/responses/fetch-helpers.ts",
|
|
2977
|
-
"sha256": "
|
|
3089
|
+
"sha256": "ecc406b90eb4c0b736d56f87f3ed744c97137382ab644773cc4aa6ce1cfbdaab"
|
|
2978
3090
|
},
|
|
2979
3091
|
{
|
|
2980
3092
|
"path": "src/server/responses/input-admission.ts",
|
|
2981
3093
|
"sha256": "8b33c2c9a20ac2c7d4e1c179a83142051fd45e0e06342dc8d31ce8fda820d62e"
|
|
2982
3094
|
},
|
|
3095
|
+
{
|
|
3096
|
+
"path": "src/server/responses/outbound-body-guard.ts",
|
|
3097
|
+
"sha256": "d6073c677abe1a00ea85991b6a58335e28a6386ec88baceeecc84642ea437cdb"
|
|
3098
|
+
},
|
|
2983
3099
|
{
|
|
2984
3100
|
"path": "src/server/responses/pacing-overload.ts",
|
|
2985
3101
|
"sha256": "8452743c408082ed87edc143d5bf6e3ea9776e9249bdb6edfd1298eb595b7d9a"
|
|
@@ -3006,7 +3122,7 @@
|
|
|
3006
3122
|
},
|
|
3007
3123
|
{
|
|
3008
3124
|
"path": "src/server/responses/ws-upstream.ts",
|
|
3009
|
-
"sha256": "
|
|
3125
|
+
"sha256": "32a657cbf38d9eff1d0bdc5d03d25ed78e7ccf67fbcfe1887e26c18660559c95"
|
|
3010
3126
|
},
|
|
3011
3127
|
{
|
|
3012
3128
|
"path": "src/server/search.ts",
|
|
@@ -3034,7 +3150,7 @@
|
|
|
3034
3150
|
},
|
|
3035
3151
|
{
|
|
3036
3152
|
"path": "src/server/system-env.ts",
|
|
3037
|
-
"sha256": "
|
|
3153
|
+
"sha256": "76dfdbc258f05c5ac87c7682bbca1f1da9215f271825739848132f0d7fe0f58f"
|
|
3038
3154
|
},
|
|
3039
3155
|
{
|
|
3040
3156
|
"path": "src/server/windows-tcp-drop.ts",
|
|
@@ -3054,7 +3170,7 @@
|
|
|
3054
3170
|
},
|
|
3055
3171
|
{
|
|
3056
3172
|
"path": "src/service.ts",
|
|
3057
|
-
"sha256": "
|
|
3173
|
+
"sha256": "3f696c07c74c52673b9b0335ad91d9dab6657c235734a4c6a40c397d1d8bfef7"
|
|
3058
3174
|
},
|
|
3059
3175
|
{
|
|
3060
3176
|
"path": "src/sidecar/auth.ts",
|
|
@@ -3138,7 +3254,7 @@
|
|
|
3138
3254
|
},
|
|
3139
3255
|
{
|
|
3140
3256
|
"path": "src/types.ts",
|
|
3141
|
-
"sha256": "
|
|
3257
|
+
"sha256": "c3a317aa2047a1ae8936dd4651e9b0ff639a7973a65a27b2704b9b65cb678566"
|
|
3142
3258
|
},
|
|
3143
3259
|
{
|
|
3144
3260
|
"path": "src/types/accounts.ts",
|
|
@@ -3146,15 +3262,15 @@
|
|
|
3146
3262
|
},
|
|
3147
3263
|
{
|
|
3148
3264
|
"path": "src/types/config.ts",
|
|
3149
|
-
"sha256": "
|
|
3265
|
+
"sha256": "c111f1a1fb3ac32b556fbf7aab8f7ccadc27c8e34958e91d1e154ad8da4aaa4b"
|
|
3150
3266
|
},
|
|
3151
3267
|
{
|
|
3152
3268
|
"path": "src/types/provider.ts",
|
|
3153
|
-
"sha256": "
|
|
3269
|
+
"sha256": "6dd5c74f7b511b9ccb44f39c18673732088f858bbdbe7ed1652201aa73a92c40"
|
|
3154
3270
|
},
|
|
3155
3271
|
{
|
|
3156
3272
|
"path": "src/types/request.ts",
|
|
3157
|
-
"sha256": "
|
|
3273
|
+
"sha256": "8f108a629693e51287921f24e7a5d5c21f8240d77f6d87ccb30d394ab12d86b3"
|
|
3158
3274
|
},
|
|
3159
3275
|
{
|
|
3160
3276
|
"path": "src/types/tools.ts",
|
|
@@ -3182,7 +3298,7 @@
|
|
|
3182
3298
|
},
|
|
3183
3299
|
{
|
|
3184
3300
|
"path": "src/update/job.ts",
|
|
3185
|
-
"sha256": "
|
|
3301
|
+
"sha256": "83282392af7f1eb33975a08bcc3ad1a1c10bcb2be3965245d7b299be529ae93f"
|
|
3186
3302
|
},
|
|
3187
3303
|
{
|
|
3188
3304
|
"path": "src/update/notify.ts",
|
|
@@ -3246,7 +3362,7 @@
|
|
|
3246
3362
|
},
|
|
3247
3363
|
{
|
|
3248
3364
|
"path": "src/usage/cost.ts",
|
|
3249
|
-
"sha256": "
|
|
3365
|
+
"sha256": "aa662b998891199b34bcc727768ccb83b3b48fd8ae1e1a88e07dc68ec45870d3"
|
|
3250
3366
|
},
|
|
3251
3367
|
{
|
|
3252
3368
|
"path": "src/usage/debug.ts",
|
|
@@ -3254,15 +3370,15 @@
|
|
|
3254
3370
|
},
|
|
3255
3371
|
{
|
|
3256
3372
|
"path": "src/usage/expected-prices.ts",
|
|
3257
|
-
"sha256": "
|
|
3373
|
+
"sha256": "2c745e575ef352ffaaac7bfd2360cb9c786e6551f59b5dc4a2a6b997bfc92fab"
|
|
3258
3374
|
},
|
|
3259
3375
|
{
|
|
3260
3376
|
"path": "src/usage/log.ts",
|
|
3261
|
-
"sha256": "
|
|
3377
|
+
"sha256": "6df3d4cccf3082ad2891ed0786fbe7fd5d687ff912043d343dd7fc0e8e1f1546"
|
|
3262
3378
|
},
|
|
3263
3379
|
{
|
|
3264
3380
|
"path": "src/usage/summary.ts",
|
|
3265
|
-
"sha256": "
|
|
3381
|
+
"sha256": "95a355bc44f028439358fff979d93c17209c1c4d6fa188015f78efc69295e3d6"
|
|
3266
3382
|
},
|
|
3267
3383
|
{
|
|
3268
3384
|
"path": "src/usage/totals.ts",
|