@kittycad/lib 3.1.24 → 3.1.26

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.
@@ -6293,16 +6293,90 @@ export interface OrgDatasetConversionStatsResponse {
6293
6293
  total: number;
6294
6294
  }
6295
6295
  export interface OrgDatasetFileConversionDetails {
6296
- /** Conversion metadata without storage pointers. */
6297
- conversion: OrgDatasetFileConversionSummary;
6296
+ /**
6297
+ * {
6298
+ * "nullable": true,
6299
+ * "title": "DateTime",
6300
+ * "format": "date-time",
6301
+ * "description": "The date and time the conversion got its current `status`."
6302
+ * }
6303
+ */
6304
+ completed_at?: string;
6305
+ /** title:DateTime, format:date-time, description:The date and time the conversion was created. */
6306
+ created_at: string;
6307
+ /** The ID of the dataset this file is being converted from. */
6308
+ dataset_id: Uuid;
6309
+ /** File's ETag from dataset bucket, for detecting whether a file needs to be reconverted. */
6310
+ file_etag: string;
6311
+ /** Location within dataset `path`. */
6312
+ file_path: string;
6313
+ /**
6314
+ * {
6315
+ * "format": "int64",
6316
+ * "description": "Number of bytes, for measuring throughput and debugging conversion errors."
6317
+ * }
6318
+ */
6319
+ file_size: number;
6320
+ /** The unique identifier for the conversion. */
6321
+ id: Uuid;
6322
+ /**
6323
+ * {
6324
+ * "nullable": true,
6325
+ * "description": "Tracks which version processed this file when available."
6326
+ * }
6327
+ */
6328
+ importer_version?: string;
6329
+ metadata: unknown;
6298
6330
  /** Snapshot images for the original source model. */
6299
6331
  original_snapshot_images: OrgDatasetSnapshotImage[];
6300
- /** Plain-text contents of the converted artifact. */
6301
- output: string;
6332
+ /**
6333
+ * {
6334
+ * "nullable": true,
6335
+ * "description": "Plain-text contents of the converted artifact, when available."
6336
+ * }
6337
+ */
6338
+ output?: string;
6339
+ /** Current step in the conversion pipeline. */
6340
+ phase: OrgDatasetFileConversionPhase;
6341
+ /**
6342
+ * {
6343
+ * "nullable": true,
6344
+ * "description": "Plain-text contents of the raw KCL artifact, when available."
6345
+ * }
6346
+ */
6347
+ raw_kcl_output?: string;
6302
6348
  /** Snapshot images for the raw KCL model. */
6303
6349
  raw_kcl_snapshot_images: OrgDatasetSnapshotImage[];
6350
+ /**
6351
+ * {
6352
+ * "nullable": true,
6353
+ * "description": "Plain-text contents of the salon/refactored KCL artifact, when available."
6354
+ * }
6355
+ */
6356
+ salon_kcl_output?: string;
6304
6357
  /** Snapshot images for the salon/refactored KCL model. */
6305
6358
  salon_kcl_snapshot_images: OrgDatasetSnapshotImage[];
6359
+ /**
6360
+ * {
6361
+ * "nullable": true,
6362
+ * "title": "DateTime",
6363
+ * "format": "date-time",
6364
+ * "description": "The date and time the conversion started."
6365
+ * }
6366
+ */
6367
+ started_at?: string;
6368
+ /** Conversion status. */
6369
+ status: OrgDatasetFileConversionStatus;
6370
+ /** nullable:true, description:Details associated with `status`. */
6371
+ status_message?: string;
6372
+ /**
6373
+ * {
6374
+ * "title": "DateTime",
6375
+ * "format": "date-time",
6376
+ * "description": "The date and time the conversion was last updated."
6377
+ * }
6378
+ */
6379
+ updated_at: string;
6306
6380
  }
6307
6381
  export declare type OrgDatasetFileConversionPhase = 'queued' | 'snapshot_original' | 'convert_raw_kcl' | 'snapshot_raw_kcl' | 'salon' | 'snapshot_salon_kcl' | 'completed';
6308
6382
  export declare type OrgDatasetFileConversionStatus = 'queued' | 'canceled' | 'in_progress' | 'success' | 'error_user' | 'error_unsupported' | 'error_internal';
@@ -6343,14 +6417,6 @@ export interface OrgDatasetFileConversionSummary {
6343
6417
  metadata: unknown;
6344
6418
  /** Current step in the conversion pipeline. */
6345
6419
  phase: OrgDatasetFileConversionPhase;
6346
- /**
6347
- * {
6348
- * "format": "uint8",
6349
- * "minimum": 0,
6350
- * "description": "Numeric index for `phase` so clients do not need to hardcode enum ordering.\n\nMapping: - `0`: `queued` - `1`: `snapshot_original` - `2`: `convert_raw_kcl` - `3`: `snapshot_raw_kcl` - `4`: `salon` - `5`: `snapshot_salon_kcl` - `6`: `completed`"
6351
- * }
6352
- */
6353
- phase_index: number;
6354
6420
  /**
6355
6421
  * {
6356
6422
  * "nullable": true,