lody 0.85.0 → 0.86.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.
@@ -0,0 +1,19 @@
1
+ const LODY_EXTENSION_METHODS = {
2
+ sessionUsageUpdate: "_lody/session/usage_update",
3
+ rateLimitsGet: "_lody/rate_limits/get",
4
+ rateLimitsUpdate: "_lody/rate_limits/update",
5
+ sessionSteer: "_lody/session/steer",
6
+ sessionSteerApplied: "_lody/session/steer_applied",
7
+ sessionGoal: "_lody/session/goal",
8
+ sessionHistoryRead: "_lody/session/history/read",
9
+ subagentsList: "_lody/subagents/list",
10
+ subagentsCancel: "_lody/subagents/cancel",
11
+ subagentsOutput: "_lody/subagents/output"
12
+ };
13
+ function normalizeLodyExtensionMethod(method) {
14
+ return method.startsWith("_") ? method : `_${method}`;
15
+ }
16
+ export {
17
+ LODY_EXTENSION_METHODS as L,
18
+ normalizeLodyExtensionMethod as n
19
+ };
@@ -50,13 +50,14 @@ import "node:worker_threads";
50
50
  import "node:url";
51
51
  import "node:console";
52
52
  import "node:dns";
53
- import "./directory-handle-OPjjCl3O.js";
53
+ import "./directory-handle-Bp47LF5g.js";
54
54
  import "./diff-line-counts-bmGB_T-n.js";
55
55
  import "./acp-CrvzLY5A.js";
56
56
  import "node:string_decoder";
57
+ import "./methods-CvEDMahD.js";
57
58
  import "node:stream/promises";
58
59
  import "./package-CNW89xCh.js";
59
- import "./runtime-manifest-Fr5DEH54.js";
60
+ import "./runtime-manifest-ByWJfM07.js";
60
61
  import "async_hooks";
61
62
  import "module";
62
63
  import "./diff-worker-task-8tVIjLTu.js";
@@ -79,8 +80,8 @@ let __tla = Promise.all([
79
80
  }
80
81
  })()
81
82
  ]).then(async () => {
82
- const reviewViewerVersion = "0.85.0";
83
- const reviewViewerSha256 = "2ae06d0f134be0ae82e0a9962179037cbee997a59c4240753e44e77b11d92dd6";
83
+ const reviewViewerVersion = "0.86.0";
84
+ const reviewViewerSha256 = "dc9c7fc1dde49bb39c5fe86392d69219b469c0cab4fd492d8b562045e7f676e4";
84
85
  const reviewViewerFileName = "standalone.html";
85
86
  const DEFAULT_CDN_BASES = [
86
87
  "https://cdn.jsdelivr.net/npm",
@@ -0,0 +1,9 @@
1
+ const officialRuntime = { "version": "1.0.0" };
2
+ const privateWireContract = { "permissionNotification": "x.ai/yolo_mode_changed", "sessionConfigMeta": "x.ai/sessionConfig", "sessionNotification": "x.ai/session_notification", "sessionUpdateNotification": "x.ai/session/update", "modelsUpdateNotification": "x.ai/models/update", "turnCompletedUpdate": "turn_completed", "sessionInfoRequest": "x.ai/session/info", "billingRequest": "x.ai/billing", "weeklyUsagePeriodType": "USAGE_PERIOD_TYPE_WEEKLY", "reasoningEffortMeta": "reasoningEffort", "autoPermissionMode": true };
3
+ const runtimeManifest = {
4
+ officialRuntime,
5
+ privateWireContract
6
+ };
7
+ export {
8
+ runtimeManifest as r
9
+ };