@bitkyc08/opencodex 2.37.0 → 2.39.0-preview.20260901
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/bin/ocx.mjs +127 -16
- package/gui/dist/assets/index-6HZDkIpX.js +112 -0
- package/gui/dist/assets/index-uvENYLin.css +1 -0
- package/gui/dist/index.html +2 -2
- package/gui/dist/provider-icons/aside.svg +3 -0
- package/gui/dist/provider-icons/baseten.svg +13 -0
- package/gui/dist/provider-icons/bizrouter.svg +41 -0
- package/gui/dist/provider-icons/cerebras.svg +26 -0
- package/gui/dist/provider-icons/deepinfra.svg +75 -0
- package/gui/dist/provider-icons/deepseek-harness.svg +3 -0
- package/gui/dist/provider-icons/digitalocean.svg +10 -0
- package/gui/dist/provider-icons/featherless.svg +4 -0
- package/gui/dist/provider-icons/gajae-code.svg +410 -0
- package/gui/dist/provider-icons/hermes-agent.svg +207 -0
- package/gui/dist/provider-icons/hyperbolic.svg +18 -0
- package/gui/dist/provider-icons/kilo.svg +13 -0
- package/gui/dist/provider-icons/litellm.svg +1 -0
- package/gui/dist/provider-icons/minimax.svg +1 -0
- package/gui/dist/provider-icons/nanogpt.svg +74 -0
- package/gui/dist/provider-icons/nebius.svg +1 -0
- package/gui/dist/provider-icons/neuralwatt.svg +27 -0
- package/gui/dist/provider-icons/nous.svg +149 -0
- package/gui/dist/provider-icons/novita.svg +32 -0
- package/gui/dist/provider-icons/oh-my-pi.svg +11 -0
- package/gui/dist/provider-icons/openclaw.svg +54 -0
- package/gui/dist/provider-icons/orcarouter.svg +175 -0
- package/gui/dist/provider-icons/parallel.svg +13 -0
- package/gui/dist/provider-icons/prime-agent.svg +21 -0
- package/gui/dist/provider-icons/sambanova.svg +276 -0
- package/gui/dist/provider-icons/scaleway.svg +11 -0
- package/gui/dist/provider-icons/siliconflow.svg +18 -0
- package/gui/dist/provider-icons/synthetic.svg +12 -0
- package/gui/dist/provider-icons/together.svg +18 -0
- package/gui/dist/provider-icons/umans.svg +30 -0
- package/gui/dist/provider-icons/venice.svg +165 -0
- package/gui/dist/provider-icons/vultr.svg +15 -0
- package/gui/dist/provider-icons/zai.svg +218 -0
- package/gui/dist/provider-icons/zcode.svg +219 -0
- package/gui/dist/provider-icons/zenmux.svg +1 -0
- package/package.json +1 -1
- package/src/adapters/cursor/live-models.ts +1 -0
- package/src/adapters/cursor/protobuf-request.ts +4 -1
- package/src/adapters/cursor/tool-definitions.ts +36 -4
- package/src/adapters/openai-responses.ts +72 -10
- package/src/bridge.ts +15 -15
- package/src/cli/capabilities.ts +14 -0
- package/src/cli/codex-cli-update.ts +96 -0
- package/src/cli/codex-shim-autorestore.ts +3 -0
- package/src/cli/dispatch.ts +54 -18
- package/src/cli/export-command.ts +18 -17
- package/src/cli/help.ts +2 -2
- package/src/cli/index.ts +423 -32
- package/src/cli/integrations.ts +24 -2
- package/src/cli/launcher-context.ts +53 -2
- package/src/cli/opencode.ts +126 -33
- package/src/cli/registry.ts +16 -10
- package/src/cli/system-command.ts +6 -1
- package/src/cli/uninstall-plan.ts +86 -0
- package/src/clients/config-export.ts +293 -28
- package/src/codex/account-store.ts +131 -12
- package/src/codex/auth-api.ts +202 -33
- package/src/codex/autostart-health.ts +3 -3
- package/src/codex/catalog/provider-fetch.ts +96 -10
- package/src/codex/catalog/sync.ts +4 -3
- package/src/codex/cli-install-provenance.ts +795 -0
- package/src/codex/convergence.ts +4 -3
- package/src/codex/credential-mutation-epoch.ts +11 -0
- package/src/codex/history-job.ts +10 -0
- package/src/codex/history-manifest.ts +35 -2
- package/src/codex/history-provider.ts +196 -19
- package/src/codex/history-worker.ts +3 -0
- package/src/codex/main-account.ts +2 -0
- package/src/codex/model-entitlements.ts +430 -27
- package/src/codex/native-profile-manager.ts +4 -0
- package/src/codex/quota-401-recovery.ts +190 -0
- package/src/codex/quota-recovery-timing.ts +28 -0
- package/src/codex/quota.ts +6 -0
- package/src/codex/reset-credit-operation-ledger.ts +1411 -0
- package/src/codex/reset-credit-recovery.ts +20 -2
- package/src/codex/routing.ts +68 -16
- package/src/codex/shim.ts +204 -18
- package/src/codex/subagent-model-fallback.ts +4 -1
- package/src/codex/user-identity.ts +2 -1
- package/src/config/paths.ts +18 -3
- package/src/config/pending-teardown-names.d.mts +8 -0
- package/src/config/pending-teardown-names.mjs +69 -0
- package/src/config/pending-teardown.ts +286 -0
- package/src/config.ts +23 -0
- package/src/generated/compatibility-version.json +155 -67
- package/src/integrations/journal.ts +12 -1
- package/src/integrations/registry.ts +112 -0
- package/src/integrations/state.ts +67 -5
- package/src/integrations/writer.ts +107 -16
- package/src/lib/bounded-subprocess.ts +36 -0
- package/src/lib/process-control.ts +30 -5
- package/src/lib/state-store-registrations.ts +8 -0
- package/src/lib/strict-semver.ts +47 -0
- package/src/lib/windows-elevation.ts +32 -1
- package/src/lib/windows-secret-acl.ts +47 -25
- package/src/lib/windows-service-mutation-lock.ts +133 -0
- package/src/lib/windows-user-principal.ts +15 -17
- package/src/oauth/index.ts +220 -13
- package/src/oauth/store.ts +220 -18
- package/src/responses/spill-store.ts +354 -29
- package/src/responses/state.ts +775 -8
- package/src/server/index.ts +4 -3
- package/src/server/lifecycle.ts +5 -1
- package/src/server/management/integration-routes.ts +36 -5
- package/src/server/management/model-rows.ts +11 -2
- package/src/server/management/provider-routes.ts +4 -0
- package/src/server/management/system-restart.ts +5 -5
- package/src/server/management-api.ts +72 -13
- package/src/server/responses/encrypted-payload.ts +18 -1
- package/src/server/startup-action-control.ts +3 -2
- package/src/server/stop-teardown.ts +84 -0
- package/src/service.ts +749 -53
- package/src/sidecar/candidates.ts +1 -1
- package/src/update/codex-cli-update-launch-policy.d.mts +18 -0
- package/src/update/codex-cli-update-launch-policy.mjs +30 -0
- package/src/update/index.ts +39 -6
- package/src/update/job.ts +10 -11
- package/src/update/proxy-liveness-probe.d.mts +6 -0
- package/src/update/proxy-liveness-probe.mjs +84 -0
- package/src/update/stop-contract.d.mts +2 -0
- package/src/update/stop-contract.mjs +15 -0
- package/src/update/stop-decision.d.mts +10 -0
- package/src/update/stop-decision.mjs +34 -0
- package/src/vision/eligibility.ts +19 -1
- package/src/vision/index.ts +4 -18
- package/gui/dist/assets/index-CowztZdo.js +0 -112
- package/gui/dist/assets/index-jqE_VOKI.css +0 -1
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
},
|
|
11
11
|
{
|
|
12
12
|
"path": "package.json",
|
|
13
|
-
"sha256": "
|
|
13
|
+
"sha256": "30880c111ba0c11727932a700c0ccb950bbd22465fe9c336f487a98380a572c8"
|
|
14
14
|
},
|
|
15
15
|
{
|
|
16
16
|
"path": "scripts/model-metadata.source.json",
|
|
@@ -130,7 +130,7 @@
|
|
|
130
130
|
},
|
|
131
131
|
{
|
|
132
132
|
"path": "src/adapters/cursor/live-models.ts",
|
|
133
|
-
"sha256": "
|
|
133
|
+
"sha256": "14952cb90aff21691c8690dd227ca9c011e8eac945ada84886aca6c663cba827"
|
|
134
134
|
},
|
|
135
135
|
{
|
|
136
136
|
"path": "src/adapters/cursor/live-smoke-gate.ts",
|
|
@@ -190,7 +190,7 @@
|
|
|
190
190
|
},
|
|
191
191
|
{
|
|
192
192
|
"path": "src/adapters/cursor/protobuf-request.ts",
|
|
193
|
-
"sha256": "
|
|
193
|
+
"sha256": "ce38936510a5999b47b207e540a434929b1fe18e4d255d9e25c788ec73846ab0"
|
|
194
194
|
},
|
|
195
195
|
{
|
|
196
196
|
"path": "src/adapters/cursor/request-builder.ts",
|
|
@@ -202,7 +202,7 @@
|
|
|
202
202
|
},
|
|
203
203
|
{
|
|
204
204
|
"path": "src/adapters/cursor/tool-definitions.ts",
|
|
205
|
-
"sha256": "
|
|
205
|
+
"sha256": "06c1230fa2417f2c2a2b595042ca6a272cef3a005ca8d44e3e734b4329cf4f42"
|
|
206
206
|
},
|
|
207
207
|
{
|
|
208
208
|
"path": "src/adapters/cursor/tool-result-normalize.ts",
|
|
@@ -338,7 +338,7 @@
|
|
|
338
338
|
},
|
|
339
339
|
{
|
|
340
340
|
"path": "src/adapters/openai-responses.ts",
|
|
341
|
-
"sha256": "
|
|
341
|
+
"sha256": "70c58ec5f2a0f6e67ace885973373b976d053068be9c19a7f4355dfb4ecbde5b"
|
|
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": "949af46c2a1eba9c25283a442326c2e6acfd07e9653abec5488ec3bade1faa23"
|
|
378
378
|
},
|
|
379
379
|
{
|
|
380
380
|
"path": "src/chat/inbound.ts",
|
|
@@ -502,7 +502,7 @@
|
|
|
502
502
|
},
|
|
503
503
|
{
|
|
504
504
|
"path": "src/cli/capabilities.ts",
|
|
505
|
-
"sha256": "
|
|
505
|
+
"sha256": "56e4e4a20bec90c6acadb60e479221e55ca0816e74df1f12a76a49acdbecd201"
|
|
506
506
|
},
|
|
507
507
|
{
|
|
508
508
|
"path": "src/cli/catalog-prewarm.ts",
|
|
@@ -520,13 +520,17 @@
|
|
|
520
520
|
"path": "src/cli/claude.ts",
|
|
521
521
|
"sha256": "c39d97f543ff6aa40ae70610e5446761232575c6ce334adec9f94a41658f992d"
|
|
522
522
|
},
|
|
523
|
+
{
|
|
524
|
+
"path": "src/cli/codex-cli-update.ts",
|
|
525
|
+
"sha256": "124ceb293db0bb6b011490f61303d8c001f54e9b7ff8afa809ab953decb870b6"
|
|
526
|
+
},
|
|
523
527
|
{
|
|
524
528
|
"path": "src/cli/codex-log-guard-doctor.ts",
|
|
525
529
|
"sha256": "e6a62a5c9cbf65e900ec3523598a225f5ccd1238abb8da9cae232d60da6fdabf"
|
|
526
530
|
},
|
|
527
531
|
{
|
|
528
532
|
"path": "src/cli/codex-shim-autorestore.ts",
|
|
529
|
-
"sha256": "
|
|
533
|
+
"sha256": "cac51c864181d9e652a014041aa1cc3f82cad1a2b528b28461aa01213f109cba"
|
|
530
534
|
},
|
|
531
535
|
{
|
|
532
536
|
"path": "src/cli/codex-shim-readiness.ts",
|
|
@@ -546,7 +550,7 @@
|
|
|
546
550
|
},
|
|
547
551
|
{
|
|
548
552
|
"path": "src/cli/dispatch.ts",
|
|
549
|
-
"sha256": "
|
|
553
|
+
"sha256": "7a755e1a26b2fe769d5d3cb68022ec7ae32df8f423ef5698590a4276933baed7"
|
|
550
554
|
},
|
|
551
555
|
{
|
|
552
556
|
"path": "src/cli/doctor.ts",
|
|
@@ -558,15 +562,15 @@
|
|
|
558
562
|
},
|
|
559
563
|
{
|
|
560
564
|
"path": "src/cli/export-command.ts",
|
|
561
|
-
"sha256": "
|
|
565
|
+
"sha256": "02c6a0a3a89f6759adb6d920efbd731db244855420b789c9b32603cb8286cdf1"
|
|
562
566
|
},
|
|
563
567
|
{
|
|
564
568
|
"path": "src/cli/help.ts",
|
|
565
|
-
"sha256": "
|
|
569
|
+
"sha256": "17377f29265e32da27df8955d27cb262bff37e492c55f23b2edc745049e99b5a"
|
|
566
570
|
},
|
|
567
571
|
{
|
|
568
572
|
"path": "src/cli/index.ts",
|
|
569
|
-
"sha256": "
|
|
573
|
+
"sha256": "447dd3d1b3ca743f9041ee6644b4d106ce5baf10ddee324fa559be06ef1534c3"
|
|
570
574
|
},
|
|
571
575
|
{
|
|
572
576
|
"path": "src/cli/init.ts",
|
|
@@ -578,7 +582,7 @@
|
|
|
578
582
|
},
|
|
579
583
|
{
|
|
580
584
|
"path": "src/cli/integrations.ts",
|
|
581
|
-
"sha256": "
|
|
585
|
+
"sha256": "ead7fa2e3db71765e3a63ff275265599878de180ca653bf03d06427eec3e235e"
|
|
582
586
|
},
|
|
583
587
|
{
|
|
584
588
|
"path": "src/cli/interactive-confirm.ts",
|
|
@@ -590,7 +594,7 @@
|
|
|
590
594
|
},
|
|
591
595
|
{
|
|
592
596
|
"path": "src/cli/launcher-context.ts",
|
|
593
|
-
"sha256": "
|
|
597
|
+
"sha256": "eb9a6a4e04a57a3de2efee6f654138f62882b61932e5a454e300108d7a9655a6"
|
|
594
598
|
},
|
|
595
599
|
{
|
|
596
600
|
"path": "src/cli/minimax.ts",
|
|
@@ -610,7 +614,7 @@
|
|
|
610
614
|
},
|
|
611
615
|
{
|
|
612
616
|
"path": "src/cli/opencode.ts",
|
|
613
|
-
"sha256": "
|
|
617
|
+
"sha256": "ea17d1ef158abaad78691fdabec69cfa6607db4172847398677cd35cb2a57169"
|
|
614
618
|
},
|
|
615
619
|
{
|
|
616
620
|
"path": "src/cli/provider-runtime.ts",
|
|
@@ -626,7 +630,7 @@
|
|
|
626
630
|
},
|
|
627
631
|
{
|
|
628
632
|
"path": "src/cli/registry.ts",
|
|
629
|
-
"sha256": "
|
|
633
|
+
"sha256": "c6bb08a9729f39e00e32d4cdb156b3011b015dedfa04f48d760495cccf6ff4d1"
|
|
630
634
|
},
|
|
631
635
|
{
|
|
632
636
|
"path": "src/cli/root.ts",
|
|
@@ -658,7 +662,7 @@
|
|
|
658
662
|
},
|
|
659
663
|
{
|
|
660
664
|
"path": "src/cli/system-command.ts",
|
|
661
|
-
"sha256": "
|
|
665
|
+
"sha256": "c288c99fd05610654710545b4433190d5cc4347edda49e6a727503376137b0e0"
|
|
662
666
|
},
|
|
663
667
|
{
|
|
664
668
|
"path": "src/cli/system-restart-client.ts",
|
|
@@ -668,6 +672,10 @@
|
|
|
668
672
|
"path": "src/cli/tray-proxy.ts",
|
|
669
673
|
"sha256": "35878717b3b9c9e9d7793fc88a72ddf21d7b2c9b41c3a6dd12f5bb5d5343a6d5"
|
|
670
674
|
},
|
|
675
|
+
{
|
|
676
|
+
"path": "src/cli/uninstall-plan.ts",
|
|
677
|
+
"sha256": "786c9f754b76a8a7fbf11a1893f8eb9a228138e822eee50c21513ea248ece34e"
|
|
678
|
+
},
|
|
671
679
|
{
|
|
672
680
|
"path": "src/cli/usage-report.ts",
|
|
673
681
|
"sha256": "0c590155ff4c4dbb39ea0a91160abf54a1b70e24060eb792df27a36fba98637a"
|
|
@@ -682,7 +690,7 @@
|
|
|
682
690
|
},
|
|
683
691
|
{
|
|
684
692
|
"path": "src/clients/config-export.ts",
|
|
685
|
-
"sha256": "
|
|
693
|
+
"sha256": "2562f1ca4a9a046ecd110b6a4c61be3c5af26ebe9d73441785c97dd4f95e7a8f"
|
|
686
694
|
},
|
|
687
695
|
{
|
|
688
696
|
"path": "src/codex/account-id.ts",
|
|
@@ -718,7 +726,7 @@
|
|
|
718
726
|
},
|
|
719
727
|
{
|
|
720
728
|
"path": "src/codex/account-store.ts",
|
|
721
|
-
"sha256": "
|
|
729
|
+
"sha256": "27786f63ee9887225ffeb4b6dd9a9e3592e89add7a3dbf4b190dbf5b4ceb1faa"
|
|
722
730
|
},
|
|
723
731
|
{
|
|
724
732
|
"path": "src/codex/account-usability.ts",
|
|
@@ -742,7 +750,7 @@
|
|
|
742
750
|
},
|
|
743
751
|
{
|
|
744
752
|
"path": "src/codex/auth-api.ts",
|
|
745
|
-
"sha256": "
|
|
753
|
+
"sha256": "60aa8e4d07fd5881c79fc3b7f9decbe8c669d14be2f71d48b01ab4da6e094790"
|
|
746
754
|
},
|
|
747
755
|
{
|
|
748
756
|
"path": "src/codex/auth-collision.ts",
|
|
@@ -754,7 +762,7 @@
|
|
|
754
762
|
},
|
|
755
763
|
{
|
|
756
764
|
"path": "src/codex/autostart-health.ts",
|
|
757
|
-
"sha256": "
|
|
765
|
+
"sha256": "89a5e5d1bfb7397f2951d023af7298e2faa2e8aeddcebbd0c346ba278aed904a"
|
|
758
766
|
},
|
|
759
767
|
{
|
|
760
768
|
"path": "src/codex/catalog-admission.ts",
|
|
@@ -810,11 +818,15 @@
|
|
|
810
818
|
},
|
|
811
819
|
{
|
|
812
820
|
"path": "src/codex/catalog/provider-fetch.ts",
|
|
813
|
-
"sha256": "
|
|
821
|
+
"sha256": "d8d3de67bdef52c26518948024a6a4dcfe7bbda6a9139b2eb4de26327eaed4a7"
|
|
814
822
|
},
|
|
815
823
|
{
|
|
816
824
|
"path": "src/codex/catalog/sync.ts",
|
|
817
|
-
"sha256": "
|
|
825
|
+
"sha256": "b998796087e8dacefbd748667ff07ef1da72c31828b4fd9f33c773c8addeb5f5"
|
|
826
|
+
},
|
|
827
|
+
{
|
|
828
|
+
"path": "src/codex/cli-install-provenance.ts",
|
|
829
|
+
"sha256": "de2f9e8ef6910ac6863b50ac3b863dcb94ce727904461f20642ea6bf408bbd33"
|
|
818
830
|
},
|
|
819
831
|
{
|
|
820
832
|
"path": "src/codex/codex-write-lock.ts",
|
|
@@ -826,12 +838,16 @@
|
|
|
826
838
|
},
|
|
827
839
|
{
|
|
828
840
|
"path": "src/codex/convergence.ts",
|
|
829
|
-
"sha256": "
|
|
841
|
+
"sha256": "45acdd4b2c339e9b1e6d2d471be24a91bd727bfebb90b56dfa31445932ba937e"
|
|
830
842
|
},
|
|
831
843
|
{
|
|
832
844
|
"path": "src/codex/coordinator-doctor.ts",
|
|
833
845
|
"sha256": "8b96fccfcebec924abf6b1c03bb8ef17f6e89469fb6f556c1f0d517654eaf941"
|
|
834
846
|
},
|
|
847
|
+
{
|
|
848
|
+
"path": "src/codex/credential-mutation-epoch.ts",
|
|
849
|
+
"sha256": "fa23b49b0c53eceee61f0bcc5d74685aa5052031cc40e2c0cdab6b72bd478b51"
|
|
850
|
+
},
|
|
835
851
|
{
|
|
836
852
|
"path": "src/codex/custom-model-catalog-migration.ts",
|
|
837
853
|
"sha256": "eb6c1420bc61b27c67772255a20192cb94605c988f6b597608e69b6346464c77"
|
|
@@ -862,7 +878,7 @@
|
|
|
862
878
|
},
|
|
863
879
|
{
|
|
864
880
|
"path": "src/codex/history-job.ts",
|
|
865
|
-
"sha256": "
|
|
881
|
+
"sha256": "de26dbf66f1829fa414f787507256e1cb2c9e0977c8de389445b27546d1ab462"
|
|
866
882
|
},
|
|
867
883
|
{
|
|
868
884
|
"path": "src/codex/history-lock.ts",
|
|
@@ -870,7 +886,7 @@
|
|
|
870
886
|
},
|
|
871
887
|
{
|
|
872
888
|
"path": "src/codex/history-manifest.ts",
|
|
873
|
-
"sha256": "
|
|
889
|
+
"sha256": "92431ddf0d11bab671c89a4b99e86049b1794b7ac9f07e7ba2709508d349cab8"
|
|
874
890
|
},
|
|
875
891
|
{
|
|
876
892
|
"path": "src/codex/history-migration-guardian.ts",
|
|
@@ -878,7 +894,7 @@
|
|
|
878
894
|
},
|
|
879
895
|
{
|
|
880
896
|
"path": "src/codex/history-provider.ts",
|
|
881
|
-
"sha256": "
|
|
897
|
+
"sha256": "1dd6c56defc42647592d5858147655fbd618368db0cccffc8234dd76135a0a86"
|
|
882
898
|
},
|
|
883
899
|
{
|
|
884
900
|
"path": "src/codex/history-transition.ts",
|
|
@@ -886,7 +902,7 @@
|
|
|
886
902
|
},
|
|
887
903
|
{
|
|
888
904
|
"path": "src/codex/history-worker.ts",
|
|
889
|
-
"sha256": "
|
|
905
|
+
"sha256": "f3dc8ad9a64af62423eac8d106e76a87d5f8be1aa098cc204fd7c8d7bbc9daae"
|
|
890
906
|
},
|
|
891
907
|
{
|
|
892
908
|
"path": "src/codex/home.ts",
|
|
@@ -958,7 +974,7 @@
|
|
|
958
974
|
},
|
|
959
975
|
{
|
|
960
976
|
"path": "src/codex/main-account.ts",
|
|
961
|
-
"sha256": "
|
|
977
|
+
"sha256": "147e04ad9456c41c34b0b4fa2f50de42a4342e3e38496d35dd8ee3b43de3a38b"
|
|
962
978
|
},
|
|
963
979
|
{
|
|
964
980
|
"path": "src/codex/management-convergence.ts",
|
|
@@ -970,7 +986,7 @@
|
|
|
970
986
|
},
|
|
971
987
|
{
|
|
972
988
|
"path": "src/codex/model-entitlements.ts",
|
|
973
|
-
"sha256": "
|
|
989
|
+
"sha256": "a799b9cce143af58129ee79013aee4f7599d1d7a9dc7a59b80ed376f8b379310"
|
|
974
990
|
},
|
|
975
991
|
{
|
|
976
992
|
"path": "src/codex/native-main-admission.ts",
|
|
@@ -998,7 +1014,7 @@
|
|
|
998
1014
|
},
|
|
999
1015
|
{
|
|
1000
1016
|
"path": "src/codex/native-profile-manager.ts",
|
|
1001
|
-
"sha256": "
|
|
1017
|
+
"sha256": "5fe33a50c243b01400cbdba6d320e7bc87f123c96aa7096f36fe5a2d8a203e53"
|
|
1002
1018
|
},
|
|
1003
1019
|
{
|
|
1004
1020
|
"path": "src/codex/native-profile-processes.ts",
|
|
@@ -1068,25 +1084,37 @@
|
|
|
1068
1084
|
"path": "src/codex/prompt-text-probe.ts",
|
|
1069
1085
|
"sha256": "6ab1a59afb4f0a5a7239490d5c3ec6d07f52f8cc323a60462a1776eff065e028"
|
|
1070
1086
|
},
|
|
1087
|
+
{
|
|
1088
|
+
"path": "src/codex/quota-401-recovery.ts",
|
|
1089
|
+
"sha256": "a7098de48a250f10212da8f26a098e3f139649adf295f7f9df789ad6e3e8ff52"
|
|
1090
|
+
},
|
|
1091
|
+
{
|
|
1092
|
+
"path": "src/codex/quota-recovery-timing.ts",
|
|
1093
|
+
"sha256": "b8c0c6911b8ef908bfc81919005942f73672e7e0d51a593200736d3557bfce43"
|
|
1094
|
+
},
|
|
1071
1095
|
{
|
|
1072
1096
|
"path": "src/codex/quota-rejection.ts",
|
|
1073
1097
|
"sha256": "610c38395e08eaeb318cfed5c8472d9c0c8f1b818dd79dc6f45c5b6fbdbce226"
|
|
1074
1098
|
},
|
|
1075
1099
|
{
|
|
1076
1100
|
"path": "src/codex/quota.ts",
|
|
1077
|
-
"sha256": "
|
|
1101
|
+
"sha256": "f30fe0a4a652a28ee9200a352d9fad31a979e2dd6bf0324002dc72b25404286d"
|
|
1078
1102
|
},
|
|
1079
1103
|
{
|
|
1080
1104
|
"path": "src/codex/refresh.ts",
|
|
1081
1105
|
"sha256": "648be78879375346ac2bf134f29a7523a8a436026d862bfaef0482d3840d8daa"
|
|
1082
1106
|
},
|
|
1107
|
+
{
|
|
1108
|
+
"path": "src/codex/reset-credit-operation-ledger.ts",
|
|
1109
|
+
"sha256": "045f3a1c2d124ea93673ab4c19f29204fec556ce12771754645c0a1afb1bfc91"
|
|
1110
|
+
},
|
|
1083
1111
|
{
|
|
1084
1112
|
"path": "src/codex/reset-credit-recovery.ts",
|
|
1085
|
-
"sha256": "
|
|
1113
|
+
"sha256": "0978c72f8f254cfcaf61637d139b25e1c23c879d86258816dedcb467116e87de"
|
|
1086
1114
|
},
|
|
1087
1115
|
{
|
|
1088
1116
|
"path": "src/codex/routing.ts",
|
|
1089
|
-
"sha256": "
|
|
1117
|
+
"sha256": "4515c98f6b2e7dbd8ba3f5bf961329a3a0006bffc9e587bba957f05e7789bb6c"
|
|
1090
1118
|
},
|
|
1091
1119
|
{
|
|
1092
1120
|
"path": "src/codex/runtime.ts",
|
|
@@ -1094,7 +1122,7 @@
|
|
|
1094
1122
|
},
|
|
1095
1123
|
{
|
|
1096
1124
|
"path": "src/codex/shim.ts",
|
|
1097
|
-
"sha256": "
|
|
1125
|
+
"sha256": "e8fac3195d09e3d92caa8f3643a6155d0b6f2d833992d097f22b6859148631e5"
|
|
1098
1126
|
},
|
|
1099
1127
|
{
|
|
1100
1128
|
"path": "src/codex/subagent-defaults.ts",
|
|
@@ -1102,7 +1130,7 @@
|
|
|
1102
1130
|
},
|
|
1103
1131
|
{
|
|
1104
1132
|
"path": "src/codex/subagent-model-fallback.ts",
|
|
1105
|
-
"sha256": "
|
|
1133
|
+
"sha256": "ab942407bcdd7d8d6b25e5be7c14e17a0d1d7262a48bb3f2364e75f014c6bedb"
|
|
1106
1134
|
},
|
|
1107
1135
|
{
|
|
1108
1136
|
"path": "src/codex/sync.ts",
|
|
@@ -1118,7 +1146,7 @@
|
|
|
1118
1146
|
},
|
|
1119
1147
|
{
|
|
1120
1148
|
"path": "src/codex/user-identity.ts",
|
|
1121
|
-
"sha256": "
|
|
1149
|
+
"sha256": "139c28e3f638dfbe1363aa0c86a629357a1a4dc7ed4d40ab035f38067175d6d8"
|
|
1122
1150
|
},
|
|
1123
1151
|
{
|
|
1124
1152
|
"path": "src/codex/warmup.ts",
|
|
@@ -1170,7 +1198,7 @@
|
|
|
1170
1198
|
},
|
|
1171
1199
|
{
|
|
1172
1200
|
"path": "src/config.ts",
|
|
1173
|
-
"sha256": "
|
|
1201
|
+
"sha256": "9bba128978659e2cf26b15422b7db57c15edb56e846d4b04b50f20c322033c0c"
|
|
1174
1202
|
},
|
|
1175
1203
|
{
|
|
1176
1204
|
"path": "src/config/atomic-write.ts",
|
|
@@ -1178,7 +1206,19 @@
|
|
|
1178
1206
|
},
|
|
1179
1207
|
{
|
|
1180
1208
|
"path": "src/config/paths.ts",
|
|
1181
|
-
"sha256": "
|
|
1209
|
+
"sha256": "61f45ac80e0b176b870dd660867f6f5799e61b55ae2fdfce5691bbb9e66e6049"
|
|
1210
|
+
},
|
|
1211
|
+
{
|
|
1212
|
+
"path": "src/config/pending-teardown-names.d.mts",
|
|
1213
|
+
"sha256": "8e56b8414ad9b3eacd2ca9711c766edc1b6254b92839245b473fee55f6f122a9"
|
|
1214
|
+
},
|
|
1215
|
+
{
|
|
1216
|
+
"path": "src/config/pending-teardown-names.mjs",
|
|
1217
|
+
"sha256": "3fe7314b6dabda15bd2ecb673145ab56a19fc4dabd3d097a2899137a962566f1"
|
|
1218
|
+
},
|
|
1219
|
+
{
|
|
1220
|
+
"path": "src/config/pending-teardown.ts",
|
|
1221
|
+
"sha256": "6ac830654afcdb183c27b4af5b75af978e82ea325d07f39597786e655c3006a8"
|
|
1182
1222
|
},
|
|
1183
1223
|
{
|
|
1184
1224
|
"path": "src/config/process-state.ts",
|
|
@@ -1282,7 +1322,7 @@
|
|
|
1282
1322
|
},
|
|
1283
1323
|
{
|
|
1284
1324
|
"path": "src/integrations/journal.ts",
|
|
1285
|
-
"sha256": "
|
|
1325
|
+
"sha256": "961d68c7b35e151e030cd2853223b0c1575fad77af444e768ff321f6e8a6b330"
|
|
1286
1326
|
},
|
|
1287
1327
|
{
|
|
1288
1328
|
"path": "src/integrations/merge.ts",
|
|
@@ -1314,7 +1354,7 @@
|
|
|
1314
1354
|
},
|
|
1315
1355
|
{
|
|
1316
1356
|
"path": "src/integrations/registry.ts",
|
|
1317
|
-
"sha256": "
|
|
1357
|
+
"sha256": "09446d4c94c342d66133a23da03f64fad5bc60c33b97c764ae8e29d81d307534"
|
|
1318
1358
|
},
|
|
1319
1359
|
{
|
|
1320
1360
|
"path": "src/integrations/serialize.ts",
|
|
@@ -1322,7 +1362,7 @@
|
|
|
1322
1362
|
},
|
|
1323
1363
|
{
|
|
1324
1364
|
"path": "src/integrations/state.ts",
|
|
1325
|
-
"sha256": "
|
|
1365
|
+
"sha256": "b6f44aeb35606aadfc73b7c688bc75db4f34504238081b75cb94637a73f43b89"
|
|
1326
1366
|
},
|
|
1327
1367
|
{
|
|
1328
1368
|
"path": "src/integrations/store.ts",
|
|
@@ -1334,7 +1374,7 @@
|
|
|
1334
1374
|
},
|
|
1335
1375
|
{
|
|
1336
1376
|
"path": "src/integrations/writer.ts",
|
|
1337
|
-
"sha256": "
|
|
1377
|
+
"sha256": "3945b3b4c408c613f76672c8cb213d84433ec4474966d9e9f00923f6a3707ed9"
|
|
1338
1378
|
},
|
|
1339
1379
|
{
|
|
1340
1380
|
"path": "src/lab/artifacts/sanitize.ts",
|
|
@@ -1836,6 +1876,10 @@
|
|
|
1836
1876
|
"path": "src/lib/bounded-body.ts",
|
|
1837
1877
|
"sha256": "3ae1a26d2bfa6dc6b06ec536b81e46278bbde99f4038c70e38c60bd9bc9a63be"
|
|
1838
1878
|
},
|
|
1879
|
+
{
|
|
1880
|
+
"path": "src/lib/bounded-subprocess.ts",
|
|
1881
|
+
"sha256": "d4c3c7a3d5658670390fc615b9c8cf681fea720154a339a05bbca26f11420bcc"
|
|
1882
|
+
},
|
|
1839
1883
|
{
|
|
1840
1884
|
"path": "src/lib/bun-binary-validator.d.mts",
|
|
1841
1885
|
"sha256": "dec6eb67be41660293d373603ba2c886a3d6411213d42dca3c36a17aaa3a59e5"
|
|
@@ -1962,7 +2006,7 @@
|
|
|
1962
2006
|
},
|
|
1963
2007
|
{
|
|
1964
2008
|
"path": "src/lib/process-control.ts",
|
|
1965
|
-
"sha256": "
|
|
2009
|
+
"sha256": "04d59915906bcd833d0e89a38dddc83f33f1632ca9b6014d93d030c3372914b8"
|
|
1966
2010
|
},
|
|
1967
2011
|
{
|
|
1968
2012
|
"path": "src/lib/provider-outbound.ts",
|
|
@@ -2010,12 +2054,16 @@
|
|
|
2010
2054
|
},
|
|
2011
2055
|
{
|
|
2012
2056
|
"path": "src/lib/state-store-registrations.ts",
|
|
2013
|
-
"sha256": "
|
|
2057
|
+
"sha256": "f108d262fb54d753458631b9bb16c22474ea398181331b9a2cb87d9b487864c7"
|
|
2014
2058
|
},
|
|
2015
2059
|
{
|
|
2016
2060
|
"path": "src/lib/state-store-sweeper.ts",
|
|
2017
2061
|
"sha256": "f90bf9131614a1df77b52c99791b5f9dcab49f458fadc162825cc73489a0eb0e"
|
|
2018
2062
|
},
|
|
2063
|
+
{
|
|
2064
|
+
"path": "src/lib/strict-semver.ts",
|
|
2065
|
+
"sha256": "d4d81713842d7baa62e9971fa81b81e3b97ec724ff521a6b8dce814ab0dff395"
|
|
2066
|
+
},
|
|
2019
2067
|
{
|
|
2020
2068
|
"path": "src/lib/system-restart-contract.ts",
|
|
2021
2069
|
"sha256": "5bd6d639da7571788922bfa90757bd0edf82f3bfaa5f347c927bb8d0978d10e4"
|
|
@@ -2062,11 +2110,15 @@
|
|
|
2062
2110
|
},
|
|
2063
2111
|
{
|
|
2064
2112
|
"path": "src/lib/windows-elevation.ts",
|
|
2065
|
-
"sha256": "
|
|
2113
|
+
"sha256": "3dec32d9b73ca730d5b8e0cd118bb109c0d32c8e796f99d9ec887bb9962a4906"
|
|
2066
2114
|
},
|
|
2067
2115
|
{
|
|
2068
2116
|
"path": "src/lib/windows-secret-acl.ts",
|
|
2069
|
-
"sha256": "
|
|
2117
|
+
"sha256": "1ebb5a92b28a0ea6b4d019f823a4646393d5da05fe6331bc1ad5b95a7c1c147c"
|
|
2118
|
+
},
|
|
2119
|
+
{
|
|
2120
|
+
"path": "src/lib/windows-service-mutation-lock.ts",
|
|
2121
|
+
"sha256": "00ab6da61fcbcc680baf221aa82ba9f40711978a93dd0a47c2ef1220bef7e4da"
|
|
2070
2122
|
},
|
|
2071
2123
|
{
|
|
2072
2124
|
"path": "src/lib/windows-service-wrappers.ts",
|
|
@@ -2078,7 +2130,7 @@
|
|
|
2078
2130
|
},
|
|
2079
2131
|
{
|
|
2080
2132
|
"path": "src/lib/windows-user-principal.ts",
|
|
2081
|
-
"sha256": "
|
|
2133
|
+
"sha256": "6e933ba48d8df8924b608c647a5787ed9f7f5b0f8bf6494c8521ce37bd61b975"
|
|
2082
2134
|
},
|
|
2083
2135
|
{
|
|
2084
2136
|
"path": "src/lib/winsw.ts",
|
|
@@ -2154,7 +2206,7 @@
|
|
|
2154
2206
|
},
|
|
2155
2207
|
{
|
|
2156
2208
|
"path": "src/oauth/index.ts",
|
|
2157
|
-
"sha256": "
|
|
2209
|
+
"sha256": "0ac7f18a0ef2d45ae400a1f408e39ecf64b30c02ce4afca1abc7e21b34a6a913"
|
|
2158
2210
|
},
|
|
2159
2211
|
{
|
|
2160
2212
|
"path": "src/oauth/key-providers.ts",
|
|
@@ -2198,7 +2250,7 @@
|
|
|
2198
2250
|
},
|
|
2199
2251
|
{
|
|
2200
2252
|
"path": "src/oauth/store.ts",
|
|
2201
|
-
"sha256": "
|
|
2253
|
+
"sha256": "209b0e02f69cd60b09d832a770382c5a88f3b94bb8663d9c1c22b87e05596b2e"
|
|
2202
2254
|
},
|
|
2203
2255
|
{
|
|
2204
2256
|
"path": "src/oauth/token-guardian.ts",
|
|
@@ -2458,11 +2510,11 @@
|
|
|
2458
2510
|
},
|
|
2459
2511
|
{
|
|
2460
2512
|
"path": "src/responses/spill-store.ts",
|
|
2461
|
-
"sha256": "
|
|
2513
|
+
"sha256": "a28d0896063ff0828a4de660ff43a942278425fac765db6f057f162666f5e758"
|
|
2462
2514
|
},
|
|
2463
2515
|
{
|
|
2464
2516
|
"path": "src/responses/state.ts",
|
|
2465
|
-
"sha256": "
|
|
2517
|
+
"sha256": "9982437898211d879156666d375cc0c1fcc90b04297332ff74b320ca389d1c14"
|
|
2466
2518
|
},
|
|
2467
2519
|
{
|
|
2468
2520
|
"path": "src/responses/thought-signature-replay.ts",
|
|
@@ -2642,11 +2694,11 @@
|
|
|
2642
2694
|
},
|
|
2643
2695
|
{
|
|
2644
2696
|
"path": "src/server/index.ts",
|
|
2645
|
-
"sha256": "
|
|
2697
|
+
"sha256": "56f5e88b792ea4ec97e0ee31c790263fd0868b194d5e73b19fca1f1144435992"
|
|
2646
2698
|
},
|
|
2647
2699
|
{
|
|
2648
2700
|
"path": "src/server/lifecycle.ts",
|
|
2649
|
-
"sha256": "
|
|
2701
|
+
"sha256": "2d91d67e9dd1412dad89a88b3670587ccd31f42a6ad564cd13f88e1ef2509095"
|
|
2650
2702
|
},
|
|
2651
2703
|
{
|
|
2652
2704
|
"path": "src/server/live.ts",
|
|
@@ -2662,7 +2714,7 @@
|
|
|
2662
2714
|
},
|
|
2663
2715
|
{
|
|
2664
2716
|
"path": "src/server/management-api.ts",
|
|
2665
|
-
"sha256": "
|
|
2717
|
+
"sha256": "b448917c5d5fe7dcb6d9988e8bf98ba4b377f960d74269c767cbb626045101f4"
|
|
2666
2718
|
},
|
|
2667
2719
|
{
|
|
2668
2720
|
"path": "src/server/management-auth.ts",
|
|
@@ -2702,7 +2754,7 @@
|
|
|
2702
2754
|
},
|
|
2703
2755
|
{
|
|
2704
2756
|
"path": "src/server/management/integration-routes.ts",
|
|
2705
|
-
"sha256": "
|
|
2757
|
+
"sha256": "3f27c3eda18b24766f9215f962f5ffa5f146d5c34043fbbc4688ea5ee9aa3374"
|
|
2706
2758
|
},
|
|
2707
2759
|
{
|
|
2708
2760
|
"path": "src/server/management/lab-automation-routes.ts",
|
|
@@ -2722,7 +2774,7 @@
|
|
|
2722
2774
|
},
|
|
2723
2775
|
{
|
|
2724
2776
|
"path": "src/server/management/model-rows.ts",
|
|
2725
|
-
"sha256": "
|
|
2777
|
+
"sha256": "fb3dc00b5838aaa3830cdeec1ea948ebe5caf7e132d020fbd82f52c299bbaf01"
|
|
2726
2778
|
},
|
|
2727
2779
|
{
|
|
2728
2780
|
"path": "src/server/management/native-integration-routes.ts",
|
|
@@ -2738,7 +2790,7 @@
|
|
|
2738
2790
|
},
|
|
2739
2791
|
{
|
|
2740
2792
|
"path": "src/server/management/provider-routes.ts",
|
|
2741
|
-
"sha256": "
|
|
2793
|
+
"sha256": "da8ccf2e7d7f1fccea87e83553bc2ed075b8e33f811d965da483e57afd4f2377"
|
|
2742
2794
|
},
|
|
2743
2795
|
{
|
|
2744
2796
|
"path": "src/server/management/request-history-routes.ts",
|
|
@@ -2778,7 +2830,7 @@
|
|
|
2778
2830
|
},
|
|
2779
2831
|
{
|
|
2780
2832
|
"path": "src/server/management/system-restart.ts",
|
|
2781
|
-
"sha256": "
|
|
2833
|
+
"sha256": "d550ce46371882aab29866246b121e5b2c65ce31765889b32c67e5295101ebfc"
|
|
2782
2834
|
},
|
|
2783
2835
|
{
|
|
2784
2836
|
"path": "src/server/management/system-routes.ts",
|
|
@@ -2918,7 +2970,7 @@
|
|
|
2918
2970
|
},
|
|
2919
2971
|
{
|
|
2920
2972
|
"path": "src/server/responses/encrypted-payload.ts",
|
|
2921
|
-
"sha256": "
|
|
2973
|
+
"sha256": "e9a5edf2ed2c9bda8e5244e50687b3ef9526841a0846fa325ce9cce6209188a7"
|
|
2922
2974
|
},
|
|
2923
2975
|
{
|
|
2924
2976
|
"path": "src/server/responses/fetch-helpers.ts",
|
|
@@ -2970,12 +3022,16 @@
|
|
|
2970
3022
|
},
|
|
2971
3023
|
{
|
|
2972
3024
|
"path": "src/server/startup-action-control.ts",
|
|
2973
|
-
"sha256": "
|
|
3025
|
+
"sha256": "171d2d5200c31b226ac74c45920b89fb64800da3c98887872a1001aa88a11f63"
|
|
2974
3026
|
},
|
|
2975
3027
|
{
|
|
2976
3028
|
"path": "src/server/startup-health-cache.ts",
|
|
2977
3029
|
"sha256": "c4e1972bc3029389ce3f6a40477ca242b250b36c6dd5382b61124ad4f64aa920"
|
|
2978
3030
|
},
|
|
3031
|
+
{
|
|
3032
|
+
"path": "src/server/stop-teardown.ts",
|
|
3033
|
+
"sha256": "8e0dcffcc7e2acc0f8751830a623fd1a4f9b81e7e09eaa6e67abd1ef319f01ce"
|
|
3034
|
+
},
|
|
2979
3035
|
{
|
|
2980
3036
|
"path": "src/server/system-env.ts",
|
|
2981
3037
|
"sha256": "e83b17223b42325c562be8925bfe573d4c342c68b0c9195b39657cfb64d3f0ea"
|
|
@@ -2998,7 +3054,7 @@
|
|
|
2998
3054
|
},
|
|
2999
3055
|
{
|
|
3000
3056
|
"path": "src/service.ts",
|
|
3001
|
-
"sha256": "
|
|
3057
|
+
"sha256": "182b27c731968f27140c0b2a509bb00036ef9433841ff7eef36541df5810b7d7"
|
|
3002
3058
|
},
|
|
3003
3059
|
{
|
|
3004
3060
|
"path": "src/sidecar/auth.ts",
|
|
@@ -3006,7 +3062,7 @@
|
|
|
3006
3062
|
},
|
|
3007
3063
|
{
|
|
3008
3064
|
"path": "src/sidecar/candidates.ts",
|
|
3009
|
-
"sha256": "
|
|
3065
|
+
"sha256": "9248b5d5b213d15de616cf4546dbe4af12b7925f7ef260253c6367acc303ad8e"
|
|
3010
3066
|
},
|
|
3011
3067
|
{
|
|
3012
3068
|
"path": "src/stall-timeout.ts",
|
|
@@ -3112,13 +3168,21 @@
|
|
|
3112
3168
|
"path": "src/update/badge.ts",
|
|
3113
3169
|
"sha256": "18e94f01758fe874c6aeed02c65b7368d730db8ade3ca7bbcc7b10d627658aa7"
|
|
3114
3170
|
},
|
|
3171
|
+
{
|
|
3172
|
+
"path": "src/update/codex-cli-update-launch-policy.d.mts",
|
|
3173
|
+
"sha256": "78a67e9e83690ce53b696264c7e8fa5efb6f8245d0db2cdf1cdf7a74b0e05ccd"
|
|
3174
|
+
},
|
|
3175
|
+
{
|
|
3176
|
+
"path": "src/update/codex-cli-update-launch-policy.mjs",
|
|
3177
|
+
"sha256": "58fa63c59c80361771080b49815e5d3fb37e35cd6616c60408d472b4ff691354"
|
|
3178
|
+
},
|
|
3115
3179
|
{
|
|
3116
3180
|
"path": "src/update/index.ts",
|
|
3117
|
-
"sha256": "
|
|
3181
|
+
"sha256": "fd3aed5d8eb3c02b1391f736b5971e20405475c931134860eddd733ca5e0e0be"
|
|
3118
3182
|
},
|
|
3119
3183
|
{
|
|
3120
3184
|
"path": "src/update/job.ts",
|
|
3121
|
-
"sha256": "
|
|
3185
|
+
"sha256": "ea7ad47a06ad0e7be6f3924908e11872d35df0aecd5eaf17c4d3cf3ad31e3d9d"
|
|
3122
3186
|
},
|
|
3123
3187
|
{
|
|
3124
3188
|
"path": "src/update/notify.ts",
|
|
@@ -3140,6 +3204,30 @@
|
|
|
3140
3204
|
"path": "src/update/npm-invocation.mjs",
|
|
3141
3205
|
"sha256": "25292222b9fa1ed00fc01164e9e9f25e82ca1820c73c20643171380467b4628b"
|
|
3142
3206
|
},
|
|
3207
|
+
{
|
|
3208
|
+
"path": "src/update/proxy-liveness-probe.d.mts",
|
|
3209
|
+
"sha256": "14b2051f2e14542720190a02ee950f1cbd79eefd044380a735c8e6a53edc5864"
|
|
3210
|
+
},
|
|
3211
|
+
{
|
|
3212
|
+
"path": "src/update/proxy-liveness-probe.mjs",
|
|
3213
|
+
"sha256": "5edce8e566742a174f4262a124b62d8b69120117ff622398f09105fde2361349"
|
|
3214
|
+
},
|
|
3215
|
+
{
|
|
3216
|
+
"path": "src/update/stop-contract.d.mts",
|
|
3217
|
+
"sha256": "e284b5830ee058aed46f09eee2cdcab7ddca54cdc4564df07102fd080551461d"
|
|
3218
|
+
},
|
|
3219
|
+
{
|
|
3220
|
+
"path": "src/update/stop-contract.mjs",
|
|
3221
|
+
"sha256": "006056e10a136927c5bc5e2afc047064e7f7516827ce3646a6e7717ffd9d548f"
|
|
3222
|
+
},
|
|
3223
|
+
{
|
|
3224
|
+
"path": "src/update/stop-decision.d.mts",
|
|
3225
|
+
"sha256": "23cbb6e3ecd1051b0258f7fe4cea8ce54fc6e39c997bd73e3fe17df538f332e9"
|
|
3226
|
+
},
|
|
3227
|
+
{
|
|
3228
|
+
"path": "src/update/stop-decision.mjs",
|
|
3229
|
+
"sha256": "3e9a210b820171d03f862a094077da6623c047e113b116d72d73b830cd0adf2c"
|
|
3230
|
+
},
|
|
3143
3231
|
{
|
|
3144
3232
|
"path": "src/update/transactional-install.d.mts",
|
|
3145
3233
|
"sha256": "8409a8514e798b45a2e3132bdf0f3fa64590e44827cb09367ae7d33dd85c57d7"
|
|
@@ -3202,11 +3290,11 @@
|
|
|
3202
3290
|
},
|
|
3203
3291
|
{
|
|
3204
3292
|
"path": "src/vision/eligibility.ts",
|
|
3205
|
-
"sha256": "
|
|
3293
|
+
"sha256": "232243b48dd985eb57f6cd3ec2bfa39f943965d878828b5164b594614247df5e"
|
|
3206
3294
|
},
|
|
3207
3295
|
{
|
|
3208
3296
|
"path": "src/vision/index.ts",
|
|
3209
|
-
"sha256": "
|
|
3297
|
+
"sha256": "bc519374596668b8e28ddb4e12ff625d30a62f5f13d5c4679580831d2cc6d343"
|
|
3210
3298
|
},
|
|
3211
3299
|
{
|
|
3212
3300
|
"path": "src/vision/reasoning.ts",
|