@kittycad/lib 0.0.43 → 0.0.45
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.js +1 -1
- package/dist/mjs/index.js +1 -1
- package/dist/types/__tests__/gen/ai-create_text_to_cad.test.d.ts +2 -0
- package/dist/types/__tests__/gen/ai-create_text_to_cad.test.d.ts.map +1 -0
- package/dist/types/__tests__/gen/ai-create_text_to_cad_model_feedback.test.d.ts +2 -0
- package/dist/types/__tests__/gen/ai-create_text_to_cad_model_feedback.test.d.ts.map +1 -0
- package/dist/types/__tests__/gen/ai-get_text_to_cad_model_for_user.test.d.ts +2 -0
- package/dist/types/__tests__/gen/ai-get_text_to_cad_model_for_user.test.d.ts.map +1 -0
- package/dist/types/__tests__/gen/ai-list_text_to_cad_models_for_user.test.d.ts +2 -0
- package/dist/types/__tests__/gen/ai-list_text_to_cad_models_for_user.test.d.ts.map +1 -0
- package/dist/types/src/api/ai/create_text_to_cad.d.ts +10 -0
- package/dist/types/src/api/ai/create_text_to_cad.d.ts.map +1 -0
- package/dist/types/src/api/ai/create_text_to_cad_model_feedback.d.ts +11 -0
- package/dist/types/src/api/ai/create_text_to_cad_model_feedback.d.ts.map +1 -0
- package/dist/types/src/api/ai/get_text_to_cad_model_for_user.d.ts +10 -0
- package/dist/types/src/api/ai/get_text_to_cad_model_for_user.d.ts.map +1 -0
- package/dist/types/src/api/ai/list_text_to_cad_models_for_user.d.ts +12 -0
- package/dist/types/src/api/ai/list_text_to_cad_models_for_user.d.ts.map +1 -0
- package/dist/types/src/api/modeling/modeling_commands_ws.d.ts +2 -1
- package/dist/types/src/api/modeling/modeling_commands_ws.d.ts.map +1 -1
- package/dist/types/src/index.d.ts +8 -4
- package/dist/types/src/index.d.ts.map +1 -1
- package/dist/types/src/models.d.ts +115 -53
- package/dist/types/src/models.d.ts.map +1 -1
- package/dist/umd/index.js +1 -1
- package/package.json +2 -2
- package/dist/types/__tests__/gen/ai-create_image_to_3d.test.d.ts +0 -2
- package/dist/types/__tests__/gen/ai-create_image_to_3d.test.d.ts.map +0 -1
- package/dist/types/__tests__/gen/ai-create_text_to_3d.test.d.ts +0 -2
- package/dist/types/__tests__/gen/ai-create_text_to_3d.test.d.ts.map +0 -1
- package/dist/types/src/api/ai/create_image_to_3d.d.ts +0 -12
- package/dist/types/src/api/ai/create_image_to_3d.d.ts.map +0 -1
- package/dist/types/src/api/ai/create_text_to_3d.d.ts +0 -11
- package/dist/types/src/api/ai/create_text_to_3d.d.ts.map +0 -1
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
export declare type AccountProvider_type = 'google' | 'github';
|
|
1
|
+
export declare type AccountProvider_type = 'discord' | 'google' | 'github';
|
|
2
|
+
export declare type AiFeedback_type = 'thumbs_up' | 'thumbs_down';
|
|
2
3
|
export interface AiPluginApi_type {
|
|
3
4
|
is_user_authenticated: boolean;
|
|
4
5
|
type: AiPluginApiType_type;
|
|
@@ -76,7 +77,7 @@ export interface ApiCallWithPrice_type {
|
|
|
76
77
|
token: Uuid_type;
|
|
77
78
|
updated_at: string;
|
|
78
79
|
user_agent: string;
|
|
79
|
-
user_id:
|
|
80
|
+
user_id: Uuid_type;
|
|
80
81
|
}
|
|
81
82
|
export interface ApiCallWithPriceResultsPage_type {
|
|
82
83
|
items: ApiCallWithPrice_type[];
|
|
@@ -88,11 +89,11 @@ export interface ApiError_type {
|
|
|
88
89
|
}
|
|
89
90
|
export interface ApiToken_type {
|
|
90
91
|
created_at: string;
|
|
91
|
-
id:
|
|
92
|
+
id: Uuid_type;
|
|
92
93
|
is_valid: boolean;
|
|
93
94
|
token: Uuid_type;
|
|
94
95
|
updated_at: string;
|
|
95
|
-
user_id:
|
|
96
|
+
user_id: Uuid_type;
|
|
96
97
|
}
|
|
97
98
|
export interface ApiTokenResultsPage_type {
|
|
98
99
|
items: ApiToken_type[];
|
|
@@ -106,13 +107,13 @@ export interface AsyncApiCall_type {
|
|
|
106
107
|
created_at: string;
|
|
107
108
|
error?: string;
|
|
108
109
|
id: Uuid_type;
|
|
109
|
-
input:
|
|
110
|
-
output
|
|
110
|
+
input: string;
|
|
111
|
+
output: any;
|
|
111
112
|
started_at?: string;
|
|
112
113
|
status: ApiCallStatus_type;
|
|
113
114
|
type: AsyncApiCallType_type;
|
|
114
115
|
updated_at: string;
|
|
115
|
-
user_id:
|
|
116
|
+
user_id: Uuid_type;
|
|
116
117
|
worker: string;
|
|
117
118
|
}
|
|
118
119
|
export declare type AsyncApiCallOutput_type = {
|
|
@@ -131,7 +132,7 @@ export declare type AsyncApiCallOutput_type = {
|
|
|
131
132
|
status: ApiCallStatus_type;
|
|
132
133
|
type: 'file_conversion';
|
|
133
134
|
updated_at: string;
|
|
134
|
-
user_id:
|
|
135
|
+
user_id: Uuid_type;
|
|
135
136
|
} | {
|
|
136
137
|
center_of_mass?: Point3d_type;
|
|
137
138
|
completed_at?: string;
|
|
@@ -144,7 +145,7 @@ export declare type AsyncApiCallOutput_type = {
|
|
|
144
145
|
status: ApiCallStatus_type;
|
|
145
146
|
type: 'file_center_of_mass';
|
|
146
147
|
updated_at: string;
|
|
147
|
-
user_id:
|
|
148
|
+
user_id: Uuid_type;
|
|
148
149
|
} | {
|
|
149
150
|
completed_at?: string;
|
|
150
151
|
created_at: string;
|
|
@@ -159,7 +160,7 @@ export declare type AsyncApiCallOutput_type = {
|
|
|
159
160
|
status: ApiCallStatus_type;
|
|
160
161
|
type: 'file_mass';
|
|
161
162
|
updated_at: string;
|
|
162
|
-
user_id:
|
|
163
|
+
user_id: Uuid_type;
|
|
163
164
|
} | {
|
|
164
165
|
completed_at?: string;
|
|
165
166
|
created_at: string;
|
|
@@ -171,7 +172,7 @@ export declare type AsyncApiCallOutput_type = {
|
|
|
171
172
|
status: ApiCallStatus_type;
|
|
172
173
|
type: 'file_volume';
|
|
173
174
|
updated_at: string;
|
|
174
|
-
user_id:
|
|
175
|
+
user_id: Uuid_type;
|
|
175
176
|
volume?: number;
|
|
176
177
|
} | {
|
|
177
178
|
completed_at?: string;
|
|
@@ -187,7 +188,7 @@ export declare type AsyncApiCallOutput_type = {
|
|
|
187
188
|
status: ApiCallStatus_type;
|
|
188
189
|
type: 'file_density';
|
|
189
190
|
updated_at: string;
|
|
190
|
-
user_id:
|
|
191
|
+
user_id: Uuid_type;
|
|
191
192
|
} | {
|
|
192
193
|
completed_at?: string;
|
|
193
194
|
created_at: string;
|
|
@@ -200,13 +201,30 @@ export declare type AsyncApiCallOutput_type = {
|
|
|
200
201
|
surface_area?: number;
|
|
201
202
|
type: 'file_surface_area';
|
|
202
203
|
updated_at: string;
|
|
203
|
-
user_id:
|
|
204
|
+
user_id: Uuid_type;
|
|
205
|
+
} | {
|
|
206
|
+
completed_at?: string;
|
|
207
|
+
created_at: string;
|
|
208
|
+
error?: string;
|
|
209
|
+
feedback?: AiFeedback_type;
|
|
210
|
+
id: Uuid_type;
|
|
211
|
+
model_version: string;
|
|
212
|
+
output_format: FileExportFormat_type;
|
|
213
|
+
outputs: {
|
|
214
|
+
[key: string]: string;
|
|
215
|
+
};
|
|
216
|
+
prompt: string;
|
|
217
|
+
started_at?: string;
|
|
218
|
+
status: ApiCallStatus_type;
|
|
219
|
+
type: 'text_to_cad';
|
|
220
|
+
updated_at: string;
|
|
221
|
+
user_id: Uuid_type;
|
|
204
222
|
};
|
|
205
223
|
export interface AsyncApiCallResultsPage_type {
|
|
206
224
|
items: AsyncApiCall_type[];
|
|
207
225
|
next_page?: string;
|
|
208
226
|
}
|
|
209
|
-
export declare type AsyncApiCallType_type = 'file_conversion' | 'file_volume' | 'file_center_of_mass' | 'file_mass' | 'file_density' | 'file_surface_area';
|
|
227
|
+
export declare type AsyncApiCallType_type = 'file_conversion' | 'file_volume' | 'file_center_of_mass' | 'file_mass' | 'file_density' | 'file_surface_area' | 'text_to_cad';
|
|
210
228
|
export declare type Axis_type = 'y' | 'z';
|
|
211
229
|
export interface AxisDirectionPair_type {
|
|
212
230
|
axis: Axis_type;
|
|
@@ -357,7 +375,7 @@ export interface CustomerBalance_type {
|
|
|
357
375
|
pre_pay_credits_remaining: number;
|
|
358
376
|
total_due: number;
|
|
359
377
|
updated_at: string;
|
|
360
|
-
user_id:
|
|
378
|
+
user_id: Uuid_type;
|
|
361
379
|
}
|
|
362
380
|
export interface Density_type {
|
|
363
381
|
density: number;
|
|
@@ -418,7 +436,7 @@ export interface ExtendedUser_type {
|
|
|
418
436
|
first_name: string;
|
|
419
437
|
front_id?: string;
|
|
420
438
|
github: string;
|
|
421
|
-
id:
|
|
439
|
+
id: Uuid_type;
|
|
422
440
|
image: string;
|
|
423
441
|
last_name: string;
|
|
424
442
|
mailchimp_id?: string;
|
|
@@ -448,7 +466,7 @@ export interface FileCenterOfMass_type {
|
|
|
448
466
|
started_at?: string;
|
|
449
467
|
status: ApiCallStatus_type;
|
|
450
468
|
updated_at: string;
|
|
451
|
-
user_id:
|
|
469
|
+
user_id: Uuid_type;
|
|
452
470
|
}
|
|
453
471
|
export interface FileConversion_type {
|
|
454
472
|
completed_at?: string;
|
|
@@ -465,7 +483,7 @@ export interface FileConversion_type {
|
|
|
465
483
|
started_at?: string;
|
|
466
484
|
status: ApiCallStatus_type;
|
|
467
485
|
updated_at: string;
|
|
468
|
-
user_id:
|
|
486
|
+
user_id: Uuid_type;
|
|
469
487
|
}
|
|
470
488
|
export interface FileDensity_type {
|
|
471
489
|
completed_at?: string;
|
|
@@ -480,7 +498,7 @@ export interface FileDensity_type {
|
|
|
480
498
|
started_at?: string;
|
|
481
499
|
status: ApiCallStatus_type;
|
|
482
500
|
updated_at: string;
|
|
483
|
-
user_id:
|
|
501
|
+
user_id: Uuid_type;
|
|
484
502
|
}
|
|
485
503
|
export declare type FileExportFormat_type = 'fbx' | 'glb' | 'gltf' | 'obj' | 'ply' | 'step' | 'stl';
|
|
486
504
|
export declare type FileImportFormat_type = 'fbx' | 'gltf' | 'obj' | 'ply' | 'sldprt' | 'step' | 'stl';
|
|
@@ -497,7 +515,7 @@ export interface FileMass_type {
|
|
|
497
515
|
started_at?: string;
|
|
498
516
|
status: ApiCallStatus_type;
|
|
499
517
|
updated_at: string;
|
|
500
|
-
user_id:
|
|
518
|
+
user_id: Uuid_type;
|
|
501
519
|
}
|
|
502
520
|
export interface FileSurfaceArea_type {
|
|
503
521
|
completed_at?: string;
|
|
@@ -510,7 +528,7 @@ export interface FileSurfaceArea_type {
|
|
|
510
528
|
status: ApiCallStatus_type;
|
|
511
529
|
surface_area?: number;
|
|
512
530
|
updated_at: string;
|
|
513
|
-
user_id:
|
|
531
|
+
user_id: Uuid_type;
|
|
514
532
|
}
|
|
515
533
|
export interface FileSystemMetadata_type {
|
|
516
534
|
ok: boolean;
|
|
@@ -525,7 +543,7 @@ export interface FileVolume_type {
|
|
|
525
543
|
started_at?: string;
|
|
526
544
|
status: ApiCallStatus_type;
|
|
527
545
|
updated_at: string;
|
|
528
|
-
user_id:
|
|
546
|
+
user_id: Uuid_type;
|
|
529
547
|
volume?: number;
|
|
530
548
|
}
|
|
531
549
|
export interface Gateway_type {
|
|
@@ -555,7 +573,6 @@ export interface IceServer_type {
|
|
|
555
573
|
username?: string;
|
|
556
574
|
}
|
|
557
575
|
export declare type ImageFormat_type = 'png' | 'jpeg';
|
|
558
|
-
export declare type ImageType_type = 'png' | 'jpg';
|
|
559
576
|
export interface ImportFile_type {
|
|
560
577
|
data: number[];
|
|
561
578
|
path: string;
|
|
@@ -659,9 +676,6 @@ export interface Mass_type {
|
|
|
659
676
|
mass: number;
|
|
660
677
|
output_unit: UnitMass_type;
|
|
661
678
|
}
|
|
662
|
-
export interface Mesh_type {
|
|
663
|
-
mesh: string;
|
|
664
|
-
}
|
|
665
679
|
export interface MetaClusterInfo_type {
|
|
666
680
|
cluster_size: number;
|
|
667
681
|
leader: string;
|
|
@@ -672,7 +686,6 @@ export interface Metadata_type {
|
|
|
672
686
|
environment: Environment_type;
|
|
673
687
|
fs: FileSystemMetadata_type;
|
|
674
688
|
git_hash: string;
|
|
675
|
-
point_e: PointEMetadata_type;
|
|
676
689
|
pubsub: Connection_type;
|
|
677
690
|
}
|
|
678
691
|
export declare type Method_type = 'OPTIONS' | 'GET' | 'POST' | 'PUT' | 'DELETE' | 'HEAD' | 'TRACE' | 'CONNECT' | 'PATCH' | 'EXTENSION';
|
|
@@ -785,9 +798,16 @@ export declare type ModelingCmd_type = {
|
|
|
785
798
|
hidden: boolean;
|
|
786
799
|
object_id: string;
|
|
787
800
|
type: 'object_visible';
|
|
801
|
+
} | {
|
|
802
|
+
object_id: string;
|
|
803
|
+
type: 'object_bring_to_front';
|
|
788
804
|
} | {
|
|
789
805
|
entity_id: string;
|
|
790
806
|
type: 'get_entity_type';
|
|
807
|
+
} | {
|
|
808
|
+
hole_id: string;
|
|
809
|
+
object_id: string;
|
|
810
|
+
type: 'solid2d_add_hole';
|
|
791
811
|
} | {
|
|
792
812
|
edge_id: string;
|
|
793
813
|
object_id: string;
|
|
@@ -827,7 +847,7 @@ export declare type ModelingCmd_type = {
|
|
|
827
847
|
type: 'entity_fade';
|
|
828
848
|
} | {
|
|
829
849
|
clobber: boolean;
|
|
830
|
-
hide
|
|
850
|
+
hide?: boolean;
|
|
831
851
|
origin: Point3d_type;
|
|
832
852
|
size: number;
|
|
833
853
|
type: 'make_plane';
|
|
@@ -875,6 +895,9 @@ export declare type ModelingCmd_type = {
|
|
|
875
895
|
path_id: string;
|
|
876
896
|
type: 'path_get_curve_uuids_for_vertices';
|
|
877
897
|
vertex_ids: string[];
|
|
898
|
+
} | {
|
|
899
|
+
path_id: string;
|
|
900
|
+
type: 'path_get_vertex_uuids';
|
|
878
901
|
} | {
|
|
879
902
|
type: 'handle_mouse_drag_start';
|
|
880
903
|
window: Point2d_type;
|
|
@@ -936,6 +959,10 @@ export declare type ModelingCmd_type = {
|
|
|
936
959
|
type: 'get_sketch_mode_plane';
|
|
937
960
|
};
|
|
938
961
|
export declare type ModelingCmdId_type = string;
|
|
962
|
+
export interface ModelingCmdReq_type {
|
|
963
|
+
cmd: ModelingCmd_type;
|
|
964
|
+
cmd_id: ModelingCmdId_type;
|
|
965
|
+
}
|
|
939
966
|
export interface MouseClick_type {
|
|
940
967
|
entities_modified: string[];
|
|
941
968
|
entities_selected: string[];
|
|
@@ -946,7 +973,7 @@ export interface NewAddress_type {
|
|
|
946
973
|
state: string;
|
|
947
974
|
street1: string;
|
|
948
975
|
street2: string;
|
|
949
|
-
user_id:
|
|
976
|
+
user_id: Uuid_type;
|
|
950
977
|
zip: string;
|
|
951
978
|
}
|
|
952
979
|
export interface OAuth2ClientInfo_type {
|
|
@@ -1017,6 +1044,9 @@ export declare type OkModelingCmdResponse_type = {
|
|
|
1017
1044
|
} | {
|
|
1018
1045
|
data: PathGetCurveUuidsForVertices_type;
|
|
1019
1046
|
type: 'path_get_curve_uuids_for_vertices';
|
|
1047
|
+
} | {
|
|
1048
|
+
data: PathGetVertexUuids_type;
|
|
1049
|
+
type: 'path_get_vertex_uuids';
|
|
1020
1050
|
} | {
|
|
1021
1051
|
data: PlaneIntersectAndProject_type;
|
|
1022
1052
|
type: 'plane_intersect_and_project';
|
|
@@ -1114,6 +1144,9 @@ export interface PathGetCurveUuidsForVertices_type {
|
|
|
1114
1144
|
export interface PathGetInfo_type {
|
|
1115
1145
|
segments: PathSegmentInfo_type[];
|
|
1116
1146
|
}
|
|
1147
|
+
export interface PathGetVertexUuids_type {
|
|
1148
|
+
vertex_ids: string[];
|
|
1149
|
+
}
|
|
1117
1150
|
export declare type PathSegment_type = {
|
|
1118
1151
|
end: Point3d_type;
|
|
1119
1152
|
relative: boolean;
|
|
@@ -1122,8 +1155,10 @@ export declare type PathSegment_type = {
|
|
|
1122
1155
|
angle_end: number;
|
|
1123
1156
|
angle_start: number;
|
|
1124
1157
|
center: Point2d_type;
|
|
1158
|
+
end?: Angle_type;
|
|
1125
1159
|
radius: number;
|
|
1126
1160
|
relative: boolean;
|
|
1161
|
+
start?: Angle_type;
|
|
1127
1162
|
type: 'arc';
|
|
1128
1163
|
} | {
|
|
1129
1164
|
control1: Point3d_type;
|
|
@@ -1177,9 +1212,6 @@ export interface Point3d_type {
|
|
|
1177
1212
|
y: number;
|
|
1178
1213
|
z: number;
|
|
1179
1214
|
}
|
|
1180
|
-
export interface PointEMetadata_type {
|
|
1181
|
-
ok: boolean;
|
|
1182
|
-
}
|
|
1183
1215
|
export interface Pong_type {
|
|
1184
1216
|
message: string;
|
|
1185
1217
|
}
|
|
@@ -1199,7 +1231,7 @@ export interface RtcSessionDescription_type {
|
|
|
1199
1231
|
type: RtcSdpType_type;
|
|
1200
1232
|
}
|
|
1201
1233
|
export declare type SceneSelectionType_type = 'replace' | 'add' | 'remove';
|
|
1202
|
-
export declare type SceneToolType_type = 'camera_revolve' | 'select' | 'move' | 'sketch_line' | 'sketch_curve' | 'sketch_curve_mod';
|
|
1234
|
+
export declare type SceneToolType_type = 'camera_revolve' | 'select' | 'move' | 'sketch_line' | 'sketch_tangential_arc' | 'sketch_curve' | 'sketch_curve_mod';
|
|
1203
1235
|
export interface SelectGet_type {
|
|
1204
1236
|
entity_ids: string[];
|
|
1205
1237
|
}
|
|
@@ -1209,10 +1241,10 @@ export interface SelectWithPoint_type {
|
|
|
1209
1241
|
export interface Session_type {
|
|
1210
1242
|
created_at: string;
|
|
1211
1243
|
expires: string;
|
|
1212
|
-
id:
|
|
1244
|
+
id: Uuid_type;
|
|
1213
1245
|
session_token: Uuid_type;
|
|
1214
1246
|
updated_at: string;
|
|
1215
|
-
user_id:
|
|
1247
|
+
user_id: Uuid_type;
|
|
1216
1248
|
}
|
|
1217
1249
|
export interface Solid3dGetAllEdgeFaces_type {
|
|
1218
1250
|
faces: string[];
|
|
@@ -1246,6 +1278,30 @@ export interface System_type {
|
|
|
1246
1278
|
export interface TakeSnapshot_type {
|
|
1247
1279
|
contents: string;
|
|
1248
1280
|
}
|
|
1281
|
+
export interface TextToCad_type {
|
|
1282
|
+
completed_at?: string;
|
|
1283
|
+
created_at: string;
|
|
1284
|
+
error?: string;
|
|
1285
|
+
feedback?: AiFeedback_type;
|
|
1286
|
+
id: Uuid_type;
|
|
1287
|
+
model_version: string;
|
|
1288
|
+
output_format: FileExportFormat_type;
|
|
1289
|
+
outputs: {
|
|
1290
|
+
[key: string]: string;
|
|
1291
|
+
};
|
|
1292
|
+
prompt: string;
|
|
1293
|
+
started_at?: string;
|
|
1294
|
+
status: ApiCallStatus_type;
|
|
1295
|
+
updated_at: string;
|
|
1296
|
+
user_id: Uuid_type;
|
|
1297
|
+
}
|
|
1298
|
+
export interface TextToCadCreateBody_type {
|
|
1299
|
+
prompt: string;
|
|
1300
|
+
}
|
|
1301
|
+
export interface TextToCadResultsPage_type {
|
|
1302
|
+
items: TextToCad_type[];
|
|
1303
|
+
next_page?: string;
|
|
1304
|
+
}
|
|
1249
1305
|
export declare type UnitAngle_type = 'degrees' | 'radians';
|
|
1250
1306
|
export interface UnitAngleConversion_type {
|
|
1251
1307
|
completed_at?: string;
|
|
@@ -1259,7 +1315,7 @@ export interface UnitAngleConversion_type {
|
|
|
1259
1315
|
started_at?: string;
|
|
1260
1316
|
status: ApiCallStatus_type;
|
|
1261
1317
|
updated_at: string;
|
|
1262
|
-
user_id:
|
|
1318
|
+
user_id: Uuid_type;
|
|
1263
1319
|
}
|
|
1264
1320
|
export declare type UnitArea_type = 'cm2' | 'dm2' | 'ft2' | 'in2' | 'km2' | 'm2' | 'mm2' | 'yd2';
|
|
1265
1321
|
export interface UnitAreaConversion_type {
|
|
@@ -1274,7 +1330,7 @@ export interface UnitAreaConversion_type {
|
|
|
1274
1330
|
started_at?: string;
|
|
1275
1331
|
status: ApiCallStatus_type;
|
|
1276
1332
|
updated_at: string;
|
|
1277
|
-
user_id:
|
|
1333
|
+
user_id: Uuid_type;
|
|
1278
1334
|
}
|
|
1279
1335
|
export declare type UnitCurrent_type = 'amperes' | 'microamperes' | 'milliamperes' | 'nanoamperes';
|
|
1280
1336
|
export interface UnitCurrentConversion_type {
|
|
@@ -1289,7 +1345,7 @@ export interface UnitCurrentConversion_type {
|
|
|
1289
1345
|
started_at?: string;
|
|
1290
1346
|
status: ApiCallStatus_type;
|
|
1291
1347
|
updated_at: string;
|
|
1292
|
-
user_id:
|
|
1348
|
+
user_id: Uuid_type;
|
|
1293
1349
|
}
|
|
1294
1350
|
export declare type UnitDensity_type = 'lb:ft3' | 'kg:m3';
|
|
1295
1351
|
export declare type UnitEnergy_type = 'btu' | 'electronvolts' | 'joules' | 'kilocalories' | 'kilowatt_hours' | 'watt_hours';
|
|
@@ -1305,7 +1361,7 @@ export interface UnitEnergyConversion_type {
|
|
|
1305
1361
|
started_at?: string;
|
|
1306
1362
|
status: ApiCallStatus_type;
|
|
1307
1363
|
updated_at: string;
|
|
1308
|
-
user_id:
|
|
1364
|
+
user_id: Uuid_type;
|
|
1309
1365
|
}
|
|
1310
1366
|
export declare type UnitForce_type = 'dynes' | 'kiloponds' | 'micronewtons' | 'millinewtons' | 'newtons' | 'poundals' | 'pounds';
|
|
1311
1367
|
export interface UnitForceConversion_type {
|
|
@@ -1320,7 +1376,7 @@ export interface UnitForceConversion_type {
|
|
|
1320
1376
|
started_at?: string;
|
|
1321
1377
|
status: ApiCallStatus_type;
|
|
1322
1378
|
updated_at: string;
|
|
1323
|
-
user_id:
|
|
1379
|
+
user_id: Uuid_type;
|
|
1324
1380
|
}
|
|
1325
1381
|
export declare type UnitFrequency_type = 'gigahertz' | 'hertz' | 'kilohertz' | 'megahertz' | 'microhertz' | 'millihertz' | 'nanohertz' | 'terahertz';
|
|
1326
1382
|
export interface UnitFrequencyConversion_type {
|
|
@@ -1335,7 +1391,7 @@ export interface UnitFrequencyConversion_type {
|
|
|
1335
1391
|
started_at?: string;
|
|
1336
1392
|
status: ApiCallStatus_type;
|
|
1337
1393
|
updated_at: string;
|
|
1338
|
-
user_id:
|
|
1394
|
+
user_id: Uuid_type;
|
|
1339
1395
|
}
|
|
1340
1396
|
export declare type UnitLength_type = 'cm' | 'ft' | 'in' | 'm' | 'mm' | 'yd';
|
|
1341
1397
|
export interface UnitLengthConversion_type {
|
|
@@ -1350,7 +1406,7 @@ export interface UnitLengthConversion_type {
|
|
|
1350
1406
|
started_at?: string;
|
|
1351
1407
|
status: ApiCallStatus_type;
|
|
1352
1408
|
updated_at: string;
|
|
1353
|
-
user_id:
|
|
1409
|
+
user_id: Uuid_type;
|
|
1354
1410
|
}
|
|
1355
1411
|
export declare type UnitMass_type = 'g' | 'kg' | 'lb';
|
|
1356
1412
|
export interface UnitMassConversion_type {
|
|
@@ -1365,7 +1421,7 @@ export interface UnitMassConversion_type {
|
|
|
1365
1421
|
started_at?: string;
|
|
1366
1422
|
status: ApiCallStatus_type;
|
|
1367
1423
|
updated_at: string;
|
|
1368
|
-
user_id:
|
|
1424
|
+
user_id: Uuid_type;
|
|
1369
1425
|
}
|
|
1370
1426
|
export declare type UnitPower_type = 'btu_per_minute' | 'horsepower' | 'kilowatts' | 'metric_horsepower' | 'microwatts' | 'milliwatts' | 'watts';
|
|
1371
1427
|
export interface UnitPowerConversion_type {
|
|
@@ -1380,7 +1436,7 @@ export interface UnitPowerConversion_type {
|
|
|
1380
1436
|
started_at?: string;
|
|
1381
1437
|
status: ApiCallStatus_type;
|
|
1382
1438
|
updated_at: string;
|
|
1383
|
-
user_id:
|
|
1439
|
+
user_id: Uuid_type;
|
|
1384
1440
|
}
|
|
1385
1441
|
export declare type UnitPressure_type = 'atmospheres' | 'bars' | 'hectopascals' | 'kilopascals' | 'millibars' | 'pascals' | 'psi';
|
|
1386
1442
|
export interface UnitPressureConversion_type {
|
|
@@ -1395,7 +1451,7 @@ export interface UnitPressureConversion_type {
|
|
|
1395
1451
|
started_at?: string;
|
|
1396
1452
|
status: ApiCallStatus_type;
|
|
1397
1453
|
updated_at: string;
|
|
1398
|
-
user_id:
|
|
1454
|
+
user_id: Uuid_type;
|
|
1399
1455
|
}
|
|
1400
1456
|
export declare type UnitTemperature_type = 'celsius' | 'fahrenheit' | 'kelvin' | 'rankine';
|
|
1401
1457
|
export interface UnitTemperatureConversion_type {
|
|
@@ -1410,7 +1466,7 @@ export interface UnitTemperatureConversion_type {
|
|
|
1410
1466
|
started_at?: string;
|
|
1411
1467
|
status: ApiCallStatus_type;
|
|
1412
1468
|
updated_at: string;
|
|
1413
|
-
user_id:
|
|
1469
|
+
user_id: Uuid_type;
|
|
1414
1470
|
}
|
|
1415
1471
|
export declare type UnitTorque_type = 'newton_metres' | 'pound_foot';
|
|
1416
1472
|
export interface UnitTorqueConversion_type {
|
|
@@ -1425,7 +1481,7 @@ export interface UnitTorqueConversion_type {
|
|
|
1425
1481
|
started_at?: string;
|
|
1426
1482
|
status: ApiCallStatus_type;
|
|
1427
1483
|
updated_at: string;
|
|
1428
|
-
user_id:
|
|
1484
|
+
user_id: Uuid_type;
|
|
1429
1485
|
}
|
|
1430
1486
|
export declare type UnitVolume_type = 'cm3' | 'ft3' | 'in3' | 'm3' | 'yd3' | 'usfloz' | 'usgal' | 'l' | 'ml';
|
|
1431
1487
|
export interface UnitVolumeConversion_type {
|
|
@@ -1440,7 +1496,7 @@ export interface UnitVolumeConversion_type {
|
|
|
1440
1496
|
started_at?: string;
|
|
1441
1497
|
status: ApiCallStatus_type;
|
|
1442
1498
|
updated_at: string;
|
|
1443
|
-
user_id:
|
|
1499
|
+
user_id: Uuid_type;
|
|
1444
1500
|
}
|
|
1445
1501
|
export interface UpdateUser_type {
|
|
1446
1502
|
company: string;
|
|
@@ -1458,7 +1514,7 @@ export interface User_type {
|
|
|
1458
1514
|
email_verified?: string;
|
|
1459
1515
|
first_name: string;
|
|
1460
1516
|
github: string;
|
|
1461
|
-
id:
|
|
1517
|
+
id: Uuid_type;
|
|
1462
1518
|
image: string;
|
|
1463
1519
|
last_name: string;
|
|
1464
1520
|
name: string;
|
|
@@ -1473,7 +1529,7 @@ export declare type Uuid_type = string;
|
|
|
1473
1529
|
export interface VerificationToken_type {
|
|
1474
1530
|
created_at: string;
|
|
1475
1531
|
expires: string;
|
|
1476
|
-
id:
|
|
1532
|
+
id: Uuid_type;
|
|
1477
1533
|
identifier: string;
|
|
1478
1534
|
updated_at: string;
|
|
1479
1535
|
}
|
|
@@ -1491,6 +1547,9 @@ export declare type WebSocketRequest_type = {
|
|
|
1491
1547
|
cmd: ModelingCmd_type;
|
|
1492
1548
|
cmd_id: ModelingCmdId_type;
|
|
1493
1549
|
type: 'modeling_cmd_req';
|
|
1550
|
+
} | {
|
|
1551
|
+
requests: ModelingCmdReq_type[];
|
|
1552
|
+
type: 'modeling_cmd_batch_req';
|
|
1494
1553
|
} | {
|
|
1495
1554
|
type: 'ping';
|
|
1496
1555
|
} | {
|
|
@@ -1508,6 +1567,7 @@ export declare type WebSocketResponse_type = {
|
|
|
1508
1567
|
};
|
|
1509
1568
|
export interface Models {
|
|
1510
1569
|
AccountProvider_type: AccountProvider_type;
|
|
1570
|
+
AiFeedback_type: AiFeedback_type;
|
|
1511
1571
|
AiPluginApi_type: AiPluginApi_type;
|
|
1512
1572
|
AiPluginApiType_type: AiPluginApiType_type;
|
|
1513
1573
|
AiPluginAuth_type: AiPluginAuth_type;
|
|
@@ -1596,7 +1656,6 @@ export interface Models {
|
|
|
1596
1656
|
HighlightSetEntity_type: HighlightSetEntity_type;
|
|
1597
1657
|
IceServer_type: IceServer_type;
|
|
1598
1658
|
ImageFormat_type: ImageFormat_type;
|
|
1599
|
-
ImageType_type: ImageType_type;
|
|
1600
1659
|
ImportFile_type: ImportFile_type;
|
|
1601
1660
|
ImportFiles_type: ImportFiles_type;
|
|
1602
1661
|
InputFormat_type: InputFormat_type;
|
|
@@ -1609,12 +1668,12 @@ export interface Models {
|
|
|
1609
1668
|
JetstreamStats_type: JetstreamStats_type;
|
|
1610
1669
|
LeafNode_type: LeafNode_type;
|
|
1611
1670
|
Mass_type: Mass_type;
|
|
1612
|
-
Mesh_type: Mesh_type;
|
|
1613
1671
|
MetaClusterInfo_type: MetaClusterInfo_type;
|
|
1614
1672
|
Metadata_type: Metadata_type;
|
|
1615
1673
|
Method_type: Method_type;
|
|
1616
1674
|
ModelingCmd_type: ModelingCmd_type;
|
|
1617
1675
|
ModelingCmdId_type: ModelingCmdId_type;
|
|
1676
|
+
ModelingCmdReq_type: ModelingCmdReq_type;
|
|
1618
1677
|
MouseClick_type: MouseClick_type;
|
|
1619
1678
|
NewAddress_type: NewAddress_type;
|
|
1620
1679
|
OAuth2ClientInfo_type: OAuth2ClientInfo_type;
|
|
@@ -1627,6 +1686,7 @@ export interface Models {
|
|
|
1627
1686
|
PathCommand_type: PathCommand_type;
|
|
1628
1687
|
PathGetCurveUuidsForVertices_type: PathGetCurveUuidsForVertices_type;
|
|
1629
1688
|
PathGetInfo_type: PathGetInfo_type;
|
|
1689
|
+
PathGetVertexUuids_type: PathGetVertexUuids_type;
|
|
1630
1690
|
PathSegment_type: PathSegment_type;
|
|
1631
1691
|
PathSegmentInfo_type: PathSegmentInfo_type;
|
|
1632
1692
|
PaymentIntent_type: PaymentIntent_type;
|
|
@@ -1637,7 +1697,6 @@ export interface Models {
|
|
|
1637
1697
|
PlyStorage_type: PlyStorage_type;
|
|
1638
1698
|
Point2d_type: Point2d_type;
|
|
1639
1699
|
Point3d_type: Point3d_type;
|
|
1640
|
-
PointEMetadata_type: PointEMetadata_type;
|
|
1641
1700
|
Pong_type: Pong_type;
|
|
1642
1701
|
RawFile_type: RawFile_type;
|
|
1643
1702
|
RtcIceCandidateInit_type: RtcIceCandidateInit_type;
|
|
@@ -1658,6 +1717,9 @@ export interface Models {
|
|
|
1658
1717
|
SurfaceArea_type: SurfaceArea_type;
|
|
1659
1718
|
System_type: System_type;
|
|
1660
1719
|
TakeSnapshot_type: TakeSnapshot_type;
|
|
1720
|
+
TextToCad_type: TextToCad_type;
|
|
1721
|
+
TextToCadCreateBody_type: TextToCadCreateBody_type;
|
|
1722
|
+
TextToCadResultsPage_type: TextToCadResultsPage_type;
|
|
1661
1723
|
UnitAngle_type: UnitAngle_type;
|
|
1662
1724
|
UnitAngleConversion_type: UnitAngleConversion_type;
|
|
1663
1725
|
UnitArea_type: UnitArea_type;
|