@kittycad/lib 3.1.24 → 3.1.25
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/dist/cjs/index.cjs +1 -1
- package/dist/mjs/index.js +1 -1
- package/dist/types/src/api/orgs/list_org_dataset_conversions.d.ts +4 -2
- package/dist/types/src/api/orgs/list_org_dataset_conversions.d.ts.map +1 -1
- package/dist/types/src/api/orgs/search_org_dataset_conversions.d.ts +1 -1
- package/dist/types/src/models.d.ts +73 -12
- package/dist/types/src/models.d.ts.map +1 -1
- package/package.json +1 -1
|
@@ -6293,16 +6293,85 @@ export interface OrgDatasetConversionStatsResponse {
|
|
|
6293
6293
|
total: number;
|
|
6294
6294
|
}
|
|
6295
6295
|
export interface OrgDatasetFileConversionDetails {
|
|
6296
|
-
/**
|
|
6297
|
-
|
|
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
|
|
6332
|
+
/** nullable:true, description:Plain-text contents of the converted artifact. */
|
|
6333
|
+
output?: string;
|
|
6334
|
+
/** Current step in the conversion pipeline. */
|
|
6335
|
+
phase: OrgDatasetFileConversionPhase;
|
|
6336
|
+
/**
|
|
6337
|
+
* {
|
|
6338
|
+
* "nullable": true,
|
|
6339
|
+
* "description": "Plain-text contents of the raw KCL artifact, when available."
|
|
6340
|
+
* }
|
|
6341
|
+
*/
|
|
6342
|
+
raw_kcl_output?: string;
|
|
6302
6343
|
/** Snapshot images for the raw KCL model. */
|
|
6303
6344
|
raw_kcl_snapshot_images: OrgDatasetSnapshotImage[];
|
|
6345
|
+
/**
|
|
6346
|
+
* {
|
|
6347
|
+
* "nullable": true,
|
|
6348
|
+
* "description": "Plain-text contents of the salon/refactored KCL artifact, when available."
|
|
6349
|
+
* }
|
|
6350
|
+
*/
|
|
6351
|
+
salon_kcl_output?: string;
|
|
6304
6352
|
/** Snapshot images for the salon/refactored KCL model. */
|
|
6305
6353
|
salon_kcl_snapshot_images: OrgDatasetSnapshotImage[];
|
|
6354
|
+
/**
|
|
6355
|
+
* {
|
|
6356
|
+
* "nullable": true,
|
|
6357
|
+
* "title": "DateTime",
|
|
6358
|
+
* "format": "date-time",
|
|
6359
|
+
* "description": "The date and time the conversion started."
|
|
6360
|
+
* }
|
|
6361
|
+
*/
|
|
6362
|
+
started_at?: string;
|
|
6363
|
+
/** Conversion status. */
|
|
6364
|
+
status: OrgDatasetFileConversionStatus;
|
|
6365
|
+
/** nullable:true, description:Details associated with `status`. */
|
|
6366
|
+
status_message?: string;
|
|
6367
|
+
/**
|
|
6368
|
+
* {
|
|
6369
|
+
* "title": "DateTime",
|
|
6370
|
+
* "format": "date-time",
|
|
6371
|
+
* "description": "The date and time the conversion was last updated."
|
|
6372
|
+
* }
|
|
6373
|
+
*/
|
|
6374
|
+
updated_at: string;
|
|
6306
6375
|
}
|
|
6307
6376
|
export declare type OrgDatasetFileConversionPhase = 'queued' | 'snapshot_original' | 'convert_raw_kcl' | 'snapshot_raw_kcl' | 'salon' | 'snapshot_salon_kcl' | 'completed';
|
|
6308
6377
|
export declare type OrgDatasetFileConversionStatus = 'queued' | 'canceled' | 'in_progress' | 'success' | 'error_user' | 'error_unsupported' | 'error_internal';
|
|
@@ -6343,14 +6412,6 @@ export interface OrgDatasetFileConversionSummary {
|
|
|
6343
6412
|
metadata: unknown;
|
|
6344
6413
|
/** Current step in the conversion pipeline. */
|
|
6345
6414
|
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
6415
|
/**
|
|
6355
6416
|
* {
|
|
6356
6417
|
* "nullable": true,
|