@kittycad/lib 4.0.24 → 4.0.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.
|
@@ -6835,6 +6835,14 @@ export interface OrgDatasetFileConversionDetails {
|
|
|
6835
6835
|
* }
|
|
6836
6836
|
*/
|
|
6837
6837
|
raw_kcl_output?: string;
|
|
6838
|
+
/**
|
|
6839
|
+
* {
|
|
6840
|
+
* "nullable": true,
|
|
6841
|
+
* "format": "double",
|
|
6842
|
+
* "description": "Score from `0.0` to `1.0` that quantifies how closely the raw KCL model matches the original model."
|
|
6843
|
+
* }
|
|
6844
|
+
*/
|
|
6845
|
+
raw_kcl_similarity_score?: number;
|
|
6838
6846
|
/** Snapshot images for the raw KCL model. */
|
|
6839
6847
|
raw_kcl_snapshot_images: OrgDatasetSnapshotImage[];
|
|
6840
6848
|
/**
|
|
@@ -6844,6 +6852,14 @@ export interface OrgDatasetFileConversionDetails {
|
|
|
6844
6852
|
* }
|
|
6845
6853
|
*/
|
|
6846
6854
|
salon_kcl_output?: string;
|
|
6855
|
+
/**
|
|
6856
|
+
* {
|
|
6857
|
+
* "nullable": true,
|
|
6858
|
+
* "format": "double",
|
|
6859
|
+
* "description": "Score from `0.0` to `1.0` that quantifies how closely the salon KCL model matches the raw KCL model."
|
|
6860
|
+
* }
|
|
6861
|
+
*/
|
|
6862
|
+
salon_kcl_similarity_score?: number;
|
|
6847
6863
|
/** Snapshot images for the salon/refactored KCL model. */
|
|
6848
6864
|
salon_kcl_snapshot_images: OrgDatasetSnapshotImage[];
|
|
6849
6865
|
/**
|
|
@@ -6869,7 +6885,7 @@ export interface OrgDatasetFileConversionDetails {
|
|
|
6869
6885
|
updated_at: string;
|
|
6870
6886
|
}
|
|
6871
6887
|
export type OrgDatasetFileConversionPhase = 'queued' | 'zoo_generated_original_metadata' | 'snapshot_original' | 'user_provided_metadata' | 'manual_kcl_override' | 'convert_raw_kcl' | 'zoo_generated_raw_kcl_metadata' | 'snapshot_raw_kcl' | 'salon' | 'zoo_generated_salon_kcl_metadata' | 'snapshot_salon_kcl' | 'completed';
|
|
6872
|
-
export type OrgDatasetFileConversionStatus = 'queued' | 'canceled' | 'in_progress' | 'success' | 'error_user' | 'error_unsupported' | 'error_internal';
|
|
6888
|
+
export type OrgDatasetFileConversionStatus = 'queued' | 'canceled' | 'in_progress' | 'success' | 'error_user' | 'error_geometry_mismatch' | 'error_unsupported' | 'error_internal';
|
|
6873
6889
|
export interface OrgDatasetFileConversionSummary {
|
|
6874
6890
|
/**
|
|
6875
6891
|
* {
|
|
@@ -6918,6 +6934,22 @@ export interface OrgDatasetFileConversionSummary {
|
|
|
6918
6934
|
metadata: unknown;
|
|
6919
6935
|
/** Current step in the conversion pipeline. */
|
|
6920
6936
|
phase: OrgDatasetFileConversionPhase;
|
|
6937
|
+
/**
|
|
6938
|
+
* {
|
|
6939
|
+
* "nullable": true,
|
|
6940
|
+
* "format": "double",
|
|
6941
|
+
* "description": "Score from `0.0` to `1.0` that quantifies how closely the raw KCL model matches the original model."
|
|
6942
|
+
* }
|
|
6943
|
+
*/
|
|
6944
|
+
raw_kcl_similarity_score?: number;
|
|
6945
|
+
/**
|
|
6946
|
+
* {
|
|
6947
|
+
* "nullable": true,
|
|
6948
|
+
* "format": "double",
|
|
6949
|
+
* "description": "Score from `0.0` to `1.0` that quantifies how closely the salon KCL model matches the raw KCL model."
|
|
6950
|
+
* }
|
|
6951
|
+
*/
|
|
6952
|
+
salon_kcl_similarity_score?: number;
|
|
6921
6953
|
/**
|
|
6922
6954
|
* {
|
|
6923
6955
|
* "nullable": true,
|
|
@@ -9591,7 +9623,7 @@ export interface UserCadInfoAdminDetails {
|
|
|
9591
9623
|
*/
|
|
9592
9624
|
what_are_you_building?: string;
|
|
9593
9625
|
}
|
|
9594
|
-
export type UserFeature = 'aquarium' | 'proprietary_to_kcl_conversion_beta' | '
|
|
9626
|
+
export type UserFeature = 'aquarium' | 'proprietary_to_kcl_conversion_beta' | 'web_app_file_browser';
|
|
9595
9627
|
export interface UserFeatureEntry {
|
|
9596
9628
|
/** Stable identifier for the feature flag (snake_case). */
|
|
9597
9629
|
id: UserFeature;
|