@blaxel/core 0.3.3-preview.219 → 0.3.4-preview.221

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.
@@ -52,6 +52,7 @@ export declare class DriveInstance {
52
52
  sort?: "createdAt:desc" | "createdAt:asc" | "name:asc" | "name:desc";
53
53
  q?: string;
54
54
  anchor?: "end";
55
+ externalId?: string;
55
56
  }>>;
56
57
  static delete(driveName: string): Promise<{
57
58
  message?: string;
@@ -20,6 +20,8 @@ export interface VolumeBinding {
20
20
  name: string;
21
21
  mountPath: string;
22
22
  readOnly?: boolean;
23
+ type?: "persistent" | "ephemeral";
24
+ sizeMb?: number;
23
25
  }
24
26
  export type SandboxConfiguration = {
25
27
  forceUrl?: string;
@@ -52,6 +52,7 @@ export declare class VolumeInstance {
52
52
  sort?: "createdAt:desc" | "createdAt:asc" | "name:asc" | "name:desc";
53
53
  q?: string;
54
54
  anchor?: "end";
55
+ externalId?: string;
55
56
  }>>;
56
57
  static delete(volumeName: string): Promise<Volume>;
57
58
  delete(): Promise<Volume>;