@blaxel/core 0.2.80-preview.136 → 0.2.80-preview.138

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.
@@ -11,8 +11,8 @@ const index_js_1 = require("../authentication/index.js");
11
11
  const env_js_1 = require("../common/env.js");
12
12
  const node_js_1 = require("../common/node.js");
13
13
  // Build info - these placeholders are replaced at build time by build:replace-imports
14
- const BUILD_VERSION = "0.2.80-preview.136";
15
- const BUILD_COMMIT = "b0b99ab9031dcd472aca08efbbba36c6b4bd4114";
14
+ const BUILD_VERSION = "0.2.80-preview.138";
15
+ const BUILD_COMMIT = "a58f8cc475d6ca3147ed31106d71a68e504c55a0";
16
16
  const BUILD_SENTRY_DSN = "https://fd5e60e1c9820e1eef5ccebb84a07127@o4508714045276160.ingest.us.sentry.io/4510465864564736";
17
17
  // Cache for config.yaml tracking value
18
18
  let configTrackingValue = null;
@@ -38,6 +38,7 @@ export type DriveMountInfo = {
38
38
  driveName?: string;
39
39
  drivePath?: string;
40
40
  mountPath?: string;
41
+ readOnly?: boolean;
41
42
  };
42
43
  export type DriveMountRequest = {
43
44
  driveName: string;
@@ -46,12 +47,17 @@ export type DriveMountRequest = {
46
47
  */
47
48
  drivePath?: string;
48
49
  mountPath: string;
50
+ /**
51
+ * Optional, defaults to false
52
+ */
53
+ readOnly?: boolean;
49
54
  };
50
55
  export type DriveMountResponse = {
51
56
  driveName?: string;
52
57
  drivePath?: string;
53
58
  message?: string;
54
59
  mountPath?: string;
60
+ readOnly?: boolean;
55
61
  success?: boolean;
56
62
  };
57
63
  export type DriveUnmountResponse = {