@kittycad/lib 3.2.3 → 3.2.5

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.
@@ -3544,6 +3544,15 @@ export type ModelingCmd = {
3544
3544
  /** Path along which to sweep. */
3545
3545
  trajectory: ModelingCmdId;
3546
3546
  type: 'sweep';
3547
+ /**
3548
+ * {
3549
+ * "nullable": true,
3550
+ * "format": "uint8",
3551
+ * "minimum": 0,
3552
+ * "description": "What version of the sweeping algorithm to use. If None, or zero, the engine's default algorithm will be used"
3553
+ * }
3554
+ */
3555
+ version?: number;
3547
3556
  } | {
3548
3557
  /** The signed angle of revolution (in degrees, must be <= 360 in either direction) */
3549
3558
  angle: Angle;
@@ -4881,6 +4890,13 @@ export type ModelingCmd = {
4881
4890
  * }
4882
4891
  */
4883
4892
  entity_ids: string[];
4893
+ /**
4894
+ * {
4895
+ * "default": "mm",
4896
+ * "description": "The output unit for the box's dimensions. Defaults to millimeters."
4897
+ * }
4898
+ */
4899
+ output_unit?: UnitLength;
4884
4900
  type: 'bounding_box';
4885
4901
  } | {
4886
4902
  /** The distance to offset the surface by. */
@@ -6676,6 +6692,23 @@ export interface OrgDatasetResultsPage {
6676
6692
  */
6677
6693
  next_page?: string;
6678
6694
  }
6695
+ export interface OrgDatasetSemanticSearchMatch {
6696
+ /**
6697
+ * {
6698
+ * "format": "int32",
6699
+ * "description": "Zero-based chunk ordinal in the conversion output."
6700
+ * }
6701
+ */
6702
+ chunk_index: number;
6703
+ /** Chunk text used for matching. */
6704
+ content: string;
6705
+ /** Matching conversion id. */
6706
+ conversion_id: Uuid;
6707
+ /** format:double, description:Cosine-similarity score in roughly [-1, 1]. */
6708
+ similarity: number;
6709
+ /** Source path for the conversion. */
6710
+ source_file_path: string;
6711
+ }
6679
6712
  export interface OrgDatasetSnapshotImage {
6680
6713
  /** title:String, format:byte, description:Base64-encoded image bytes. */
6681
6714
  data_base64: string;
@@ -9745,6 +9778,7 @@ export interface Models {
9745
9778
  OrgDatasetFileConversionSummary: OrgDatasetFileConversionSummary;
9746
9779
  OrgDatasetFileConversionSummaryResultsPage: OrgDatasetFileConversionSummaryResultsPage;
9747
9780
  OrgDatasetResultsPage: OrgDatasetResultsPage;
9781
+ OrgDatasetSemanticSearchMatch: OrgDatasetSemanticSearchMatch;
9748
9782
  OrgDatasetSnapshotImage: OrgDatasetSnapshotImage;
9749
9783
  OrgDatasetSource: OrgDatasetSource;
9750
9784
  OrgDatasetStatus: OrgDatasetStatus;