@kittycad/lib 4.2.14 → 4.2.16

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.
@@ -83,8 +83,15 @@ export interface AnnotationBasicDimension {
83
83
  font_point_size: number;
84
84
  /** format:float, description:The scale of the font label in 3D space */
85
85
  font_scale: number;
86
- /** format:uuid, description:Entity to measure the dimension from */
87
- from_entity_id: string;
86
+ /**
87
+ * {
88
+ * "nullable": true,
89
+ * "description": "Edge reference to use to measure the dimension from If both `from_entity_id` and `from_edge_reference` are provided, `from_edge_reference` takes precedence."
90
+ * }
91
+ */
92
+ from_edge_reference?: EdgeSpecifier;
93
+ /** nullable:true, format:uuid, description:Entity to measure the dimension from */
94
+ from_entity_id?: string;
88
95
  /** Normalized position within the entity to position the dimension from */
89
96
  from_entity_pos: Point2d;
90
97
  /** 2D Position offset of the annotation within the plane. */
@@ -104,8 +111,15 @@ export interface AnnotationBasicDimension {
104
111
  * }
105
112
  */
106
113
  precision: number;
107
- /** format:uuid, description:Entity to measure the dimension to */
108
- to_entity_id: string;
114
+ /**
115
+ * {
116
+ * "nullable": true,
117
+ * "description": "Edge reference to use to measure the dimension from If both `to_entity_id` and `to_edge_reference` are provided, `to_edge_reference` takes precedence."
118
+ * }
119
+ */
120
+ to_edge_reference?: EdgeSpecifier;
121
+ /** nullable:true, format:uuid, description:Entity to measure the dimension to */
122
+ to_entity_id?: string;
109
123
  /** Normalized position within the entity to position the dimension to */
110
124
  to_entity_pos: Point2d;
111
125
  }
@@ -123,8 +137,15 @@ export interface AnnotationFeatureControl {
123
137
  defined_datum?: string;
124
138
  /** nullable:true, description:Basic dimensions */
125
139
  dimension?: AnnotationMbdBasicDimension;
126
- /** format:uuid, description:Entity to place the annotation leader from */
127
- entity_id: string;
140
+ /**
141
+ * {
142
+ * "nullable": true,
143
+ * "description": "Edge reference to use to place the annotation leader from If both `entity_id` and `edge_reference` are provided, `edge_reference` takes precedence."
144
+ * }
145
+ */
146
+ edge_reference?: EdgeSpecifier;
147
+ /** nullable:true, format:uuid, description:Entity to place the annotation leader from */
148
+ entity_id?: string;
128
149
  /** Normalized position within the entity to position the annotation leader from */
129
150
  entity_pos: Point2d;
130
151
  /**
@@ -180,8 +201,15 @@ export interface AnnotationFeatureControl {
180
201
  suffix?: string;
181
202
  }
182
203
  export interface AnnotationFeatureTag {
183
- /** format:uuid, description:Entity to place the annotation leader from */
184
- entity_id: string;
204
+ /**
205
+ * {
206
+ * "nullable": true,
207
+ * "description": "Edge reference to use to place the annotation leader from If both `entity_id` and `edge_reference` are provided, `edge_reference` takes precedence."
208
+ * }
209
+ */
210
+ edge_reference?: EdgeSpecifier;
211
+ /** nullable:true, format:uuid, description:Entity to place the annotation leader from */
212
+ entity_id?: string;
185
213
  /** Normalized position within the entity to position the annotation leader from */
186
214
  entity_pos: Point2d;
187
215
  /**
@@ -10330,7 +10358,7 @@ export interface UserCadInfoAdminDetails {
10330
10358
  */
10331
10359
  what_are_you_building?: string;
10332
10360
  }
10333
- export type UserFeature = 'aquarium' | 'bodies_pane' | 'enable_z0006_lint' | 'modeling_dialogs' | 'plugins' | 'proprietary_to_kcl_conversion_beta' | 'sketch_experimental_features' | 'web_app_file_browser';
10361
+ export type UserFeature = 'bodies_pane' | 'enable_z0006_lint' | 'modeling_dialogs' | 'plugins' | 'proprietary_to_kcl_conversion_beta' | 'sketch_experimental_features' | 'web_app_file_browser';
10334
10362
  export interface UserFeatureEntry {
10335
10363
  /** Stable identifier for the feature flag (snake_case). */
10336
10364
  id: UserFeature;