@kittycad/lib 2.0.0 → 2.0.6
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/README.md +3 -2
- package/dist/cjs/index.cjs +1 -1
- package/dist/mjs/index.js +1 -1
- package/dist/types/__tests__/gen/ml-create_text_to_cad_iteration.test.d.ts +2 -0
- package/dist/types/__tests__/gen/ml-create_text_to_cad_iteration.test.d.ts.map +1 -0
- package/dist/types/__tests__/gen/ml-get_ml_prompt.test.d.ts +2 -0
- package/dist/types/__tests__/gen/ml-get_ml_prompt.test.d.ts.map +1 -0
- package/dist/types/__tests__/gen/ml-list_ml_prompts.test.d.ts +2 -0
- package/dist/types/__tests__/gen/ml-list_ml_prompts.test.d.ts.map +1 -0
- package/dist/types/__tests__/gen/oauth2-oauth2_token_revoke.test.d.ts +2 -0
- package/dist/types/__tests__/gen/oauth2-oauth2_token_revoke.test.d.ts.map +1 -0
- package/dist/types/src/api/api-tokens/delete_api_token_for_user.d.ts +2 -2
- package/dist/types/src/api/api-tokens/delete_api_token_for_user.d.ts.map +1 -1
- package/dist/types/src/api/api-tokens/get_api_token_for_user.d.ts +2 -2
- package/dist/types/src/api/api-tokens/get_api_token_for_user.d.ts.map +1 -1
- package/dist/types/src/api/ml/create_text_to_cad_iteration.d.ts +10 -0
- package/dist/types/src/api/ml/create_text_to_cad_iteration.d.ts.map +1 -0
- package/dist/types/src/api/ml/create_text_to_cad_model_feedback.d.ts +2 -2
- package/dist/types/src/api/ml/get_ml_prompt.d.ts +10 -0
- package/dist/types/src/api/ml/{get_ai_prompt.d.ts.map → get_ml_prompt.d.ts.map} +1 -1
- package/dist/types/src/api/ml/list_ml_prompts.d.ts +12 -0
- package/dist/types/src/api/ml/{list_ai_prompts.d.ts.map → list_ml_prompts.d.ts.map} +1 -1
- package/dist/types/src/api/oauth2/oauth2_token_revoke.d.ts +8 -0
- package/dist/types/src/api/oauth2/oauth2_token_revoke.d.ts.map +1 -0
- package/dist/types/src/api/service-accounts/delete_service_account_for_org.d.ts +2 -2
- package/dist/types/src/api/service-accounts/delete_service_account_for_org.d.ts.map +1 -1
- package/dist/types/src/api/service-accounts/get_service_account_for_org.d.ts +2 -2
- package/dist/types/src/api/service-accounts/get_service_account_for_org.d.ts.map +1 -1
- package/dist/types/src/api/users/get_session_for_user.d.ts +2 -2
- package/dist/types/src/api/users/get_session_for_user.d.ts.map +1 -1
- package/dist/types/src/apiGen.d.ts.map +1 -1
- package/dist/types/src/expectedToFail.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 +490 -56
- package/dist/types/src/models.d.ts.map +1 -1
- package/dist/umd/index.js +1 -1
- package/package.json +5 -4
- package/dist/types/__tests__/gen/ml-get_ai_prompt.test.d.ts +0 -2
- package/dist/types/__tests__/gen/ml-get_ai_prompt.test.d.ts.map +0 -1
- package/dist/types/__tests__/gen/ml-list_ai_prompts.test.d.ts +0 -2
- package/dist/types/__tests__/gen/ml-list_ai_prompts.test.d.ts.map +0 -1
- package/dist/types/src/api/ml/get_ai_prompt.d.ts +0 -10
- package/dist/types/src/api/ml/list_ai_prompts.d.ts +0 -12
|
@@ -11,31 +11,6 @@ export interface AddressDetails_type {
|
|
|
11
11
|
street2: string;
|
|
12
12
|
zip: string;
|
|
13
13
|
}
|
|
14
|
-
export declare type AiFeedback_type = 'thumbs_up' | 'thumbs_down' | 'accepted' | 'rejected';
|
|
15
|
-
export interface AiPrompt_type {
|
|
16
|
-
completed_at?: string;
|
|
17
|
-
created_at: string;
|
|
18
|
-
error?: string;
|
|
19
|
-
feedback?: AiFeedback_type;
|
|
20
|
-
id: Uuid_type;
|
|
21
|
-
metadata?: AiPromptMetadata_type;
|
|
22
|
-
model_version: string;
|
|
23
|
-
output_file?: string;
|
|
24
|
-
prompt: string;
|
|
25
|
-
started_at?: string;
|
|
26
|
-
status: ApiCallStatus_type;
|
|
27
|
-
type: AiPromptType_type;
|
|
28
|
-
updated_at: string;
|
|
29
|
-
user_id: Uuid_type;
|
|
30
|
-
}
|
|
31
|
-
export interface AiPromptMetadata_type {
|
|
32
|
-
code?: string;
|
|
33
|
-
}
|
|
34
|
-
export interface AiPromptResultsPage_type {
|
|
35
|
-
items: AiPrompt_type[];
|
|
36
|
-
next_page?: string;
|
|
37
|
-
}
|
|
38
|
-
export declare type AiPromptType_type = 'text_to_cad' | 'text_to_kcl';
|
|
39
14
|
export interface Angle_type {
|
|
40
15
|
unit: UnitAngle_type;
|
|
41
16
|
value: number;
|
|
@@ -105,7 +80,7 @@ export interface ApiToken_type {
|
|
|
105
80
|
id: Uuid_type;
|
|
106
81
|
is_valid: boolean;
|
|
107
82
|
label?: string;
|
|
108
|
-
token:
|
|
83
|
+
token: ApiTokenUuid_type;
|
|
109
84
|
updated_at: string;
|
|
110
85
|
user_id: Uuid_type;
|
|
111
86
|
}
|
|
@@ -113,6 +88,7 @@ export interface ApiTokenResultsPage_type {
|
|
|
113
88
|
items: ApiToken_type[];
|
|
114
89
|
next_page?: string;
|
|
115
90
|
}
|
|
91
|
+
export declare type ApiTokenUuid_type = string;
|
|
116
92
|
export interface AppClientInfo_type {
|
|
117
93
|
url: string;
|
|
118
94
|
}
|
|
@@ -221,7 +197,7 @@ export declare type AsyncApiCallOutput_type = {
|
|
|
221
197
|
completed_at?: string;
|
|
222
198
|
created_at: string;
|
|
223
199
|
error?: string;
|
|
224
|
-
feedback?:
|
|
200
|
+
feedback?: MlFeedback_type;
|
|
225
201
|
id: Uuid_type;
|
|
226
202
|
model: TextToCadModel_type;
|
|
227
203
|
model_version: string;
|
|
@@ -235,12 +211,29 @@ export declare type AsyncApiCallOutput_type = {
|
|
|
235
211
|
type: 'text_to_cad';
|
|
236
212
|
updated_at: string;
|
|
237
213
|
user_id: Uuid_type;
|
|
214
|
+
} | {
|
|
215
|
+
code: string;
|
|
216
|
+
completed_at?: string;
|
|
217
|
+
created_at: string;
|
|
218
|
+
error?: string;
|
|
219
|
+
feedback?: MlFeedback_type;
|
|
220
|
+
id: Uuid_type;
|
|
221
|
+
model: TextToCadModel_type;
|
|
222
|
+
model_version: string;
|
|
223
|
+
original_source_code: string;
|
|
224
|
+
prompt?: string;
|
|
225
|
+
source_ranges: SourceRangePrompt_type[];
|
|
226
|
+
started_at?: string;
|
|
227
|
+
status: ApiCallStatus_type;
|
|
228
|
+
type: 'text_to_cad_iteration';
|
|
229
|
+
updated_at: string;
|
|
230
|
+
user_id: Uuid_type;
|
|
238
231
|
};
|
|
239
232
|
export interface AsyncApiCallResultsPage_type {
|
|
240
233
|
items: AsyncApiCall_type[];
|
|
241
234
|
next_page?: string;
|
|
242
235
|
}
|
|
243
|
-
export declare type AsyncApiCallType_type = 'file_conversion' | 'file_volume' | 'file_center_of_mass' | 'file_mass' | 'file_density' | 'file_surface_area' | 'text_to_cad';
|
|
236
|
+
export declare type AsyncApiCallType_type = 'file_conversion' | 'file_volume' | 'file_center_of_mass' | 'file_mass' | 'file_density' | 'file_surface_area' | 'text_to_cad' | 'text_to_cad_iteration';
|
|
244
237
|
export interface AuthCallback_type {
|
|
245
238
|
code: string;
|
|
246
239
|
id_token?: string;
|
|
@@ -273,6 +266,8 @@ export declare type CameraDragInteractionType_type = 'pan' | 'rotate' | 'zoom';
|
|
|
273
266
|
export interface CameraDragMove_type {
|
|
274
267
|
settings: CameraSettings_type;
|
|
275
268
|
}
|
|
269
|
+
export interface CameraDragStart_type {
|
|
270
|
+
}
|
|
276
271
|
export interface CameraSettings_type {
|
|
277
272
|
center: Point3d_type;
|
|
278
273
|
fov_y?: number;
|
|
@@ -402,6 +397,8 @@ export interface CurveGetEndPoints_type {
|
|
|
402
397
|
export interface CurveGetType_type {
|
|
403
398
|
curve_type: CurveType_type;
|
|
404
399
|
}
|
|
400
|
+
export interface CurveSetConstraint_type {
|
|
401
|
+
}
|
|
405
402
|
export declare type CurveType_type = 'line' | 'arc' | 'nurbs';
|
|
406
403
|
export interface Customer_type {
|
|
407
404
|
address?: AddressDetails_type;
|
|
@@ -431,10 +428,21 @@ export interface CustomerBalance_type {
|
|
|
431
428
|
updated_at: string;
|
|
432
429
|
}
|
|
433
430
|
export declare type CutType_type = 'fillet' | 'chamfer';
|
|
434
|
-
export
|
|
431
|
+
export interface DefaultCameraCenterToSelection_type {
|
|
432
|
+
}
|
|
433
|
+
export interface DefaultCameraFocusOn_type {
|
|
434
|
+
}
|
|
435
435
|
export interface DefaultCameraGetSettings_type {
|
|
436
436
|
settings: CameraSettings_type;
|
|
437
437
|
}
|
|
438
|
+
export interface DefaultCameraLookAt_type {
|
|
439
|
+
}
|
|
440
|
+
export interface DefaultCameraPerspectiveSettings_type {
|
|
441
|
+
}
|
|
442
|
+
export interface DefaultCameraSetOrthographic_type {
|
|
443
|
+
}
|
|
444
|
+
export interface DefaultCameraSetPerspective_type {
|
|
445
|
+
}
|
|
438
446
|
export interface DefaultCameraZoom_type {
|
|
439
447
|
settings: CameraSettings_type;
|
|
440
448
|
}
|
|
@@ -451,6 +459,7 @@ export interface DeviceAccessTokenRequestForm_type {
|
|
|
451
459
|
device_code: string;
|
|
452
460
|
grant_type: OAuth2GrantType_type;
|
|
453
461
|
}
|
|
462
|
+
export declare type DeviceAccessTokenUuid_type = string;
|
|
454
463
|
export interface DeviceAuthRequestForm_type {
|
|
455
464
|
client_id: string;
|
|
456
465
|
}
|
|
@@ -458,6 +467,8 @@ export interface DeviceAuthVerifyParams_type {
|
|
|
458
467
|
user_code: string;
|
|
459
468
|
}
|
|
460
469
|
export declare type Direction_type = 'positive' | 'negative';
|
|
470
|
+
export interface DisableDryRun_type {
|
|
471
|
+
}
|
|
461
472
|
export interface Discount_type {
|
|
462
473
|
coupon: Coupon_type;
|
|
463
474
|
}
|
|
@@ -472,13 +483,21 @@ export declare type DistanceType_type = {
|
|
|
472
483
|
axis: GlobalAxis_type;
|
|
473
484
|
type: 'on_axis';
|
|
474
485
|
};
|
|
486
|
+
export interface EdgeLinesVisible_type {
|
|
487
|
+
}
|
|
475
488
|
export interface EmailAuthenticationForm_type {
|
|
476
489
|
callback_url?: string;
|
|
477
490
|
email: string;
|
|
478
491
|
}
|
|
492
|
+
export interface EnableDryRun_type {
|
|
493
|
+
}
|
|
494
|
+
export interface EnableSketchMode_type {
|
|
495
|
+
}
|
|
479
496
|
export interface EntityCircularPattern_type {
|
|
480
497
|
entity_ids: string[];
|
|
481
498
|
}
|
|
499
|
+
export interface EntityFade_type {
|
|
500
|
+
}
|
|
482
501
|
export interface EntityGetAllChildUuids_type {
|
|
483
502
|
entity_ids: string[];
|
|
484
503
|
}
|
|
@@ -504,6 +523,14 @@ export interface EntityLinearPattern_type {
|
|
|
504
523
|
export interface EntityLinearPatternTransform_type {
|
|
505
524
|
entity_ids: string[];
|
|
506
525
|
}
|
|
526
|
+
export interface EntityMakeHelix_type {
|
|
527
|
+
}
|
|
528
|
+
export interface EntityMirror_type {
|
|
529
|
+
}
|
|
530
|
+
export interface EntityMirrorAcrossEdge_type {
|
|
531
|
+
}
|
|
532
|
+
export interface EntitySetOpacity_type {
|
|
533
|
+
}
|
|
507
534
|
export declare type EntityType_type = 'entity' | 'object' | 'path' | 'curve' | 'solid2d' | 'solid3d' | 'edge' | 'face' | 'plane' | 'vertex';
|
|
508
535
|
export declare type Environment_type = 'DEVELOPMENT' | 'PREVIEW' | 'PRODUCTION';
|
|
509
536
|
export interface Error_type {
|
|
@@ -530,6 +557,8 @@ export interface ExportFile_type {
|
|
|
530
557
|
contents: string;
|
|
531
558
|
name: string;
|
|
532
559
|
}
|
|
560
|
+
export interface ExtendPath_type {
|
|
561
|
+
}
|
|
533
562
|
export interface ExtendedUser_type {
|
|
534
563
|
block?: BlockReason_type;
|
|
535
564
|
can_train_on_data: boolean;
|
|
@@ -539,13 +568,12 @@ export interface ExtendedUser_type {
|
|
|
539
568
|
email: string;
|
|
540
569
|
email_verified?: string;
|
|
541
570
|
first_name: string;
|
|
542
|
-
front_id?: string;
|
|
543
571
|
github: string;
|
|
572
|
+
hubspot_contact_id?: string;
|
|
544
573
|
id: Uuid_type;
|
|
545
574
|
image: string;
|
|
546
575
|
is_service_account: boolean;
|
|
547
576
|
last_name: string;
|
|
548
|
-
mailchimp_id?: string;
|
|
549
577
|
name: string;
|
|
550
578
|
phone: string;
|
|
551
579
|
stripe_id?: string;
|
|
@@ -555,6 +583,8 @@ export interface ExtendedUserResultsPage_type {
|
|
|
555
583
|
items: ExtendedUser_type[];
|
|
556
584
|
next_page?: string;
|
|
557
585
|
}
|
|
586
|
+
export interface Extrude_type {
|
|
587
|
+
}
|
|
558
588
|
export declare type ExtrusionFaceCapType_type = 'none' | 'top' | 'bottom';
|
|
559
589
|
export interface ExtrusionFaceInfo_type {
|
|
560
590
|
cap: ExtrusionFaceCapType_type;
|
|
@@ -697,6 +727,14 @@ export interface GetSketchModePlane_type {
|
|
|
697
727
|
export declare type GlobalAxis_type = 'x' | 'y' | 'z';
|
|
698
728
|
export declare type GltfPresentation_type = 'compact' | 'pretty';
|
|
699
729
|
export declare type GltfStorage_type = 'binary' | 'standard' | 'embedded';
|
|
730
|
+
export interface HandleMouseDragEnd_type {
|
|
731
|
+
}
|
|
732
|
+
export interface HandleMouseDragMove_type {
|
|
733
|
+
}
|
|
734
|
+
export interface HandleMouseDragStart_type {
|
|
735
|
+
}
|
|
736
|
+
export interface HighlightSetEntities_type {
|
|
737
|
+
}
|
|
700
738
|
export interface HighlightSetEntity_type {
|
|
701
739
|
entity_id?: string;
|
|
702
740
|
sequence?: number;
|
|
@@ -860,10 +898,12 @@ export interface LeafNode_type {
|
|
|
860
898
|
tls_timeout: number;
|
|
861
899
|
}
|
|
862
900
|
export declare type LengthUnit_type = number;
|
|
863
|
-
export interface
|
|
864
|
-
|
|
865
|
-
|
|
866
|
-
|
|
901
|
+
export interface Loft_type {
|
|
902
|
+
solid_id: string;
|
|
903
|
+
}
|
|
904
|
+
export interface MakeAxesGizmo_type {
|
|
905
|
+
}
|
|
906
|
+
export interface MakePlane_type {
|
|
867
907
|
}
|
|
868
908
|
export interface Mass_type {
|
|
869
909
|
mass: number;
|
|
@@ -882,6 +922,33 @@ export interface Metadata_type {
|
|
|
882
922
|
pubsub: Connection_type;
|
|
883
923
|
}
|
|
884
924
|
export declare type Method_type = 'OPTIONS' | 'GET' | 'POST' | 'PUT' | 'DELETE' | 'HEAD' | 'TRACE' | 'CONNECT' | 'PATCH' | 'EXTENSION';
|
|
925
|
+
export declare type MlFeedback_type = 'thumbs_up' | 'thumbs_down' | 'accepted' | 'rejected';
|
|
926
|
+
export interface MlPrompt_type {
|
|
927
|
+
completed_at?: string;
|
|
928
|
+
created_at: string;
|
|
929
|
+
error?: string;
|
|
930
|
+
feedback?: MlFeedback_type;
|
|
931
|
+
id: Uuid_type;
|
|
932
|
+
metadata?: MlPromptMetadata_type;
|
|
933
|
+
model_version: string;
|
|
934
|
+
output_file?: string;
|
|
935
|
+
prompt: string;
|
|
936
|
+
started_at?: string;
|
|
937
|
+
status: ApiCallStatus_type;
|
|
938
|
+
type: MlPromptType_type;
|
|
939
|
+
updated_at: string;
|
|
940
|
+
user_id: Uuid_type;
|
|
941
|
+
}
|
|
942
|
+
export interface MlPromptMetadata_type {
|
|
943
|
+
code?: string;
|
|
944
|
+
original_source_code?: string;
|
|
945
|
+
source_ranges: SourceRangePrompt_type[];
|
|
946
|
+
}
|
|
947
|
+
export interface MlPromptResultsPage_type {
|
|
948
|
+
items: MlPrompt_type[];
|
|
949
|
+
next_page?: string;
|
|
950
|
+
}
|
|
951
|
+
export declare type MlPromptType_type = 'text_to_cad' | 'text_to_kcl' | 'text_to_kcl_iteration';
|
|
885
952
|
export declare type ModelingAppEventType_type = 'successful_compile_before_close';
|
|
886
953
|
export declare type ModelingAppIndividualSubscriptionTier_type = 'free' | 'pro';
|
|
887
954
|
export declare type ModelingAppOrganizationSubscriptionTier_type = 'team' | 'enterprise';
|
|
@@ -908,7 +975,6 @@ export declare type ModelingCmd_type = {
|
|
|
908
975
|
segment: PathSegment_type;
|
|
909
976
|
type: 'extend_path';
|
|
910
977
|
} | {
|
|
911
|
-
cap: boolean;
|
|
912
978
|
distance: LengthUnit_type;
|
|
913
979
|
target: ModelingCmdId_type;
|
|
914
980
|
type: 'extrude';
|
|
@@ -922,6 +988,7 @@ export declare type ModelingCmd_type = {
|
|
|
922
988
|
type: 'revolve';
|
|
923
989
|
} | {
|
|
924
990
|
face_ids: string[];
|
|
991
|
+
hollow: boolean;
|
|
925
992
|
object_id: string;
|
|
926
993
|
shell_thickness: LengthUnit_type;
|
|
927
994
|
type: 'solid3d_shell_face';
|
|
@@ -931,6 +998,13 @@ export declare type ModelingCmd_type = {
|
|
|
931
998
|
target: ModelingCmdId_type;
|
|
932
999
|
tolerance: LengthUnit_type;
|
|
933
1000
|
type: 'revolve_about_edge';
|
|
1001
|
+
} | {
|
|
1002
|
+
base_curve_index?: number;
|
|
1003
|
+
bez_approximate_rational: boolean;
|
|
1004
|
+
section_ids: string[];
|
|
1005
|
+
tolerance: LengthUnit_type;
|
|
1006
|
+
type: 'loft';
|
|
1007
|
+
v_degree: number;
|
|
934
1008
|
} | {
|
|
935
1009
|
path_id: string;
|
|
936
1010
|
type: 'close_path';
|
|
@@ -994,7 +1068,7 @@ export declare type ModelingCmd_type = {
|
|
|
994
1068
|
type: 'entity_get_distance';
|
|
995
1069
|
} | {
|
|
996
1070
|
entity_id: string;
|
|
997
|
-
transform:
|
|
1071
|
+
transform: Transform_type[];
|
|
998
1072
|
type: 'entity_linear_pattern_transform';
|
|
999
1073
|
} | {
|
|
1000
1074
|
axis: Point3d_type;
|
|
@@ -1026,9 +1100,6 @@ export declare type ModelingCmd_type = {
|
|
|
1026
1100
|
edge_id: string;
|
|
1027
1101
|
ids: string[];
|
|
1028
1102
|
type: 'entity_mirror_across_edge';
|
|
1029
|
-
} | {
|
|
1030
|
-
target: string;
|
|
1031
|
-
type: 'edit_mode_enter';
|
|
1032
1103
|
} | {
|
|
1033
1104
|
selected_at_window: Point2d_type;
|
|
1034
1105
|
selection_type: SceneSelectionType_type;
|
|
@@ -1111,6 +1182,7 @@ export declare type ModelingCmd_type = {
|
|
|
1111
1182
|
} | {
|
|
1112
1183
|
cut_type: CutType_type;
|
|
1113
1184
|
edge_id: string;
|
|
1185
|
+
face_id?: string;
|
|
1114
1186
|
object_id: string;
|
|
1115
1187
|
radius: LengthUnit_type;
|
|
1116
1188
|
tolerance: LengthUnit_type;
|
|
@@ -1180,6 +1252,10 @@ export declare type ModelingCmd_type = {
|
|
|
1180
1252
|
ortho: boolean;
|
|
1181
1253
|
planar_normal?: Point3d_type;
|
|
1182
1254
|
type: 'enable_sketch_mode';
|
|
1255
|
+
} | {
|
|
1256
|
+
type: 'enable_dry_run';
|
|
1257
|
+
} | {
|
|
1258
|
+
type: 'disable_dry_run';
|
|
1183
1259
|
} | {
|
|
1184
1260
|
color: Color_type;
|
|
1185
1261
|
type: 'set_background_color';
|
|
@@ -1290,6 +1366,9 @@ export declare type ModelingCmd_type = {
|
|
|
1290
1366
|
parameters?: PerspectiveCameraParameters_type;
|
|
1291
1367
|
type: 'default_camera_set_perspective';
|
|
1292
1368
|
} | {
|
|
1369
|
+
type: 'default_camera_center_to_selection';
|
|
1370
|
+
} | {
|
|
1371
|
+
animated: boolean;
|
|
1293
1372
|
object_ids: string[];
|
|
1294
1373
|
padding: number;
|
|
1295
1374
|
type: 'zoom_to_fit';
|
|
@@ -1300,8 +1379,6 @@ export declare type ModelingCmd_type = {
|
|
|
1300
1379
|
edge_id: string;
|
|
1301
1380
|
object_id: string;
|
|
1302
1381
|
type: 'solid3d_get_extrusion_face_info';
|
|
1303
|
-
} | {
|
|
1304
|
-
type: 'edit_mode_exit';
|
|
1305
1382
|
} | {
|
|
1306
1383
|
type: 'select_clear';
|
|
1307
1384
|
} | {
|
|
@@ -1314,18 +1391,195 @@ export interface ModelingCmdReq_type {
|
|
|
1314
1391
|
cmd: ModelingCmd_type;
|
|
1315
1392
|
cmd_id: ModelingCmdId_type;
|
|
1316
1393
|
}
|
|
1394
|
+
export interface ModelingSessionData_type {
|
|
1395
|
+
api_call_id: string;
|
|
1396
|
+
}
|
|
1317
1397
|
export interface MouseClick_type {
|
|
1318
1398
|
entities_modified: string[];
|
|
1319
1399
|
entities_selected: string[];
|
|
1320
1400
|
}
|
|
1401
|
+
export interface MouseMove_type {
|
|
1402
|
+
}
|
|
1403
|
+
export interface MovePathPen_type {
|
|
1404
|
+
}
|
|
1405
|
+
export interface NewAnnotation_type {
|
|
1406
|
+
}
|
|
1321
1407
|
export interface OAuth2ClientInfo_type {
|
|
1322
1408
|
csrf_token: string;
|
|
1323
1409
|
pkce_code_verifier?: string;
|
|
1324
1410
|
url: string;
|
|
1325
1411
|
}
|
|
1326
1412
|
export declare type OAuth2GrantType_type = 'urn:ietf:params:oauth:grant-type:device_code';
|
|
1413
|
+
export interface ObjectBringToFront_type {
|
|
1414
|
+
}
|
|
1415
|
+
export interface ObjectSetMaterialParamsPbr_type {
|
|
1416
|
+
}
|
|
1417
|
+
export interface ObjectVisible_type {
|
|
1418
|
+
}
|
|
1327
1419
|
export declare type OkModelingCmdResponse_type = {
|
|
1328
1420
|
type: 'empty';
|
|
1421
|
+
} | {
|
|
1422
|
+
data: StartPath_type;
|
|
1423
|
+
type: 'start_path';
|
|
1424
|
+
} | {
|
|
1425
|
+
data: MovePathPen_type;
|
|
1426
|
+
type: 'move_path_pen';
|
|
1427
|
+
} | {
|
|
1428
|
+
data: ExtendPath_type;
|
|
1429
|
+
type: 'extend_path';
|
|
1430
|
+
} | {
|
|
1431
|
+
data: Extrude_type;
|
|
1432
|
+
type: 'extrude';
|
|
1433
|
+
} | {
|
|
1434
|
+
data: Revolve_type;
|
|
1435
|
+
type: 'revolve';
|
|
1436
|
+
} | {
|
|
1437
|
+
data: Solid3dShellFace_type;
|
|
1438
|
+
type: 'solid3d_shell_face';
|
|
1439
|
+
} | {
|
|
1440
|
+
data: RevolveAboutEdge_type;
|
|
1441
|
+
type: 'revolve_about_edge';
|
|
1442
|
+
} | {
|
|
1443
|
+
data: CameraDragStart_type;
|
|
1444
|
+
type: 'camera_drag_start';
|
|
1445
|
+
} | {
|
|
1446
|
+
data: DefaultCameraLookAt_type;
|
|
1447
|
+
type: 'default_camera_look_at';
|
|
1448
|
+
} | {
|
|
1449
|
+
data: DefaultCameraPerspectiveSettings_type;
|
|
1450
|
+
type: 'default_camera_perspective_settings';
|
|
1451
|
+
} | {
|
|
1452
|
+
data: EntityMakeHelix_type;
|
|
1453
|
+
type: 'entity_make_helix';
|
|
1454
|
+
} | {
|
|
1455
|
+
data: EntityMirror_type;
|
|
1456
|
+
type: 'entity_mirror';
|
|
1457
|
+
} | {
|
|
1458
|
+
data: EntityMirrorAcrossEdge_type;
|
|
1459
|
+
type: 'entity_mirror_across_edge';
|
|
1460
|
+
} | {
|
|
1461
|
+
data: SelectAdd_type;
|
|
1462
|
+
type: 'select_add';
|
|
1463
|
+
} | {
|
|
1464
|
+
data: SelectRemove_type;
|
|
1465
|
+
type: 'select_remove';
|
|
1466
|
+
} | {
|
|
1467
|
+
data: SceneClearAll_type;
|
|
1468
|
+
type: 'scene_clear_all';
|
|
1469
|
+
} | {
|
|
1470
|
+
data: SelectReplace_type;
|
|
1471
|
+
type: 'select_replace';
|
|
1472
|
+
} | {
|
|
1473
|
+
data: HighlightSetEntities_type;
|
|
1474
|
+
type: 'highlight_set_entities';
|
|
1475
|
+
} | {
|
|
1476
|
+
data: NewAnnotation_type;
|
|
1477
|
+
type: 'new_annotation';
|
|
1478
|
+
} | {
|
|
1479
|
+
data: UpdateAnnotation_type;
|
|
1480
|
+
type: 'update_annotation';
|
|
1481
|
+
} | {
|
|
1482
|
+
data: EdgeLinesVisible_type;
|
|
1483
|
+
type: 'edge_lines_visible';
|
|
1484
|
+
} | {
|
|
1485
|
+
data: ObjectVisible_type;
|
|
1486
|
+
type: 'object_visible';
|
|
1487
|
+
} | {
|
|
1488
|
+
data: ObjectBringToFront_type;
|
|
1489
|
+
type: 'object_bring_to_front';
|
|
1490
|
+
} | {
|
|
1491
|
+
data: ObjectSetMaterialParamsPbr_type;
|
|
1492
|
+
type: 'object_set_material_params_pbr';
|
|
1493
|
+
} | {
|
|
1494
|
+
data: Solid2dAddHole_type;
|
|
1495
|
+
type: 'solid2d_add_hole';
|
|
1496
|
+
} | {
|
|
1497
|
+
data: Solid3dFilletEdge_type;
|
|
1498
|
+
type: 'solid3d_fillet_edge';
|
|
1499
|
+
} | {
|
|
1500
|
+
data: SendObject_type;
|
|
1501
|
+
type: 'send_object';
|
|
1502
|
+
} | {
|
|
1503
|
+
data: EntitySetOpacity_type;
|
|
1504
|
+
type: 'entity_set_opacity';
|
|
1505
|
+
} | {
|
|
1506
|
+
data: EntityFade_type;
|
|
1507
|
+
type: 'entity_fade';
|
|
1508
|
+
} | {
|
|
1509
|
+
data: MakePlane_type;
|
|
1510
|
+
type: 'make_plane';
|
|
1511
|
+
} | {
|
|
1512
|
+
data: PlaneSetColor_type;
|
|
1513
|
+
type: 'plane_set_color';
|
|
1514
|
+
} | {
|
|
1515
|
+
data: SetTool_type;
|
|
1516
|
+
type: 'set_tool';
|
|
1517
|
+
} | {
|
|
1518
|
+
data: MouseMove_type;
|
|
1519
|
+
type: 'mouse_move';
|
|
1520
|
+
} | {
|
|
1521
|
+
data: SketchModeDisable_type;
|
|
1522
|
+
type: 'sketch_mode_disable';
|
|
1523
|
+
} | {
|
|
1524
|
+
data: EnableDryRun_type;
|
|
1525
|
+
type: 'enable_dry_run';
|
|
1526
|
+
} | {
|
|
1527
|
+
data: DisableDryRun_type;
|
|
1528
|
+
type: 'disable_dry_run';
|
|
1529
|
+
} | {
|
|
1530
|
+
data: CurveSetConstraint_type;
|
|
1531
|
+
type: 'curve_set_constraint';
|
|
1532
|
+
} | {
|
|
1533
|
+
data: EnableSketchMode_type;
|
|
1534
|
+
type: 'enable_sketch_mode';
|
|
1535
|
+
} | {
|
|
1536
|
+
data: SetBackgroundColor_type;
|
|
1537
|
+
type: 'set_background_color';
|
|
1538
|
+
} | {
|
|
1539
|
+
data: SetCurrentToolProperties_type;
|
|
1540
|
+
type: 'set_current_tool_properties';
|
|
1541
|
+
} | {
|
|
1542
|
+
data: SetDefaultSystemProperties_type;
|
|
1543
|
+
type: 'set_default_system_properties';
|
|
1544
|
+
} | {
|
|
1545
|
+
data: MakeAxesGizmo_type;
|
|
1546
|
+
type: 'make_axes_gizmo';
|
|
1547
|
+
} | {
|
|
1548
|
+
data: HandleMouseDragStart_type;
|
|
1549
|
+
type: 'handle_mouse_drag_start';
|
|
1550
|
+
} | {
|
|
1551
|
+
data: HandleMouseDragMove_type;
|
|
1552
|
+
type: 'handle_mouse_drag_move';
|
|
1553
|
+
} | {
|
|
1554
|
+
data: HandleMouseDragEnd_type;
|
|
1555
|
+
type: 'handle_mouse_drag_end';
|
|
1556
|
+
} | {
|
|
1557
|
+
data: RemoveSceneObjects_type;
|
|
1558
|
+
type: 'remove_scene_objects';
|
|
1559
|
+
} | {
|
|
1560
|
+
data: ReconfigureStream_type;
|
|
1561
|
+
type: 'reconfigure_stream';
|
|
1562
|
+
} | {
|
|
1563
|
+
data: SetSceneUnits_type;
|
|
1564
|
+
type: 'set_scene_units';
|
|
1565
|
+
} | {
|
|
1566
|
+
data: SetSelectionType_type;
|
|
1567
|
+
type: 'set_selection_type';
|
|
1568
|
+
} | {
|
|
1569
|
+
data: SetSelectionFilter_type;
|
|
1570
|
+
type: 'set_selection_filter';
|
|
1571
|
+
} | {
|
|
1572
|
+
data: DefaultCameraSetOrthographic_type;
|
|
1573
|
+
type: 'default_camera_set_orthographic';
|
|
1574
|
+
} | {
|
|
1575
|
+
data: DefaultCameraSetPerspective_type;
|
|
1576
|
+
type: 'default_camera_set_perspective';
|
|
1577
|
+
} | {
|
|
1578
|
+
data: DefaultCameraCenterToSelection_type;
|
|
1579
|
+
type: 'default_camera_center_to_selection';
|
|
1580
|
+
} | {
|
|
1581
|
+
data: SelectClear_type;
|
|
1582
|
+
type: 'select_clear';
|
|
1329
1583
|
} | {
|
|
1330
1584
|
data: Export_type;
|
|
1331
1585
|
type: 'export';
|
|
@@ -1350,6 +1604,9 @@ export declare type OkModelingCmdResponse_type = {
|
|
|
1350
1604
|
} | {
|
|
1351
1605
|
data: EntityGetSketchPaths_type;
|
|
1352
1606
|
type: 'entity_get_sketch_paths';
|
|
1607
|
+
} | {
|
|
1608
|
+
data: Loft_type;
|
|
1609
|
+
type: 'loft';
|
|
1353
1610
|
} | {
|
|
1354
1611
|
data: ClosePath_type;
|
|
1355
1612
|
type: 'close_path';
|
|
@@ -1524,6 +1781,11 @@ export declare type OkWebSocketResponseData_type = {
|
|
|
1524
1781
|
} | {
|
|
1525
1782
|
data: object;
|
|
1526
1783
|
type: 'metrics_request';
|
|
1784
|
+
} | {
|
|
1785
|
+
data: {
|
|
1786
|
+
session: ModelingSessionData_type;
|
|
1787
|
+
};
|
|
1788
|
+
type: 'modeling_session_data';
|
|
1527
1789
|
} | {
|
|
1528
1790
|
data: object;
|
|
1529
1791
|
type: 'pong';
|
|
@@ -1581,6 +1843,14 @@ export interface OrgResultsPage_type {
|
|
|
1581
1843
|
next_page?: string;
|
|
1582
1844
|
}
|
|
1583
1845
|
export declare type OrgRole_type = 'admin' | 'member' | 'service_account';
|
|
1846
|
+
export declare type OriginType_type = {
|
|
1847
|
+
type: 'local';
|
|
1848
|
+
} | {
|
|
1849
|
+
type: 'global';
|
|
1850
|
+
} | {
|
|
1851
|
+
origin: Point3d_type;
|
|
1852
|
+
type: 'custom';
|
|
1853
|
+
};
|
|
1584
1854
|
export interface OutputFile_type {
|
|
1585
1855
|
contents?: string;
|
|
1586
1856
|
name: string;
|
|
@@ -1689,6 +1959,8 @@ export declare type PlanInterval_type = 'day' | 'month' | 'week' | 'year';
|
|
|
1689
1959
|
export interface PlaneIntersectAndProject_type {
|
|
1690
1960
|
plane_coordinates?: Point2d_type;
|
|
1691
1961
|
}
|
|
1962
|
+
export interface PlaneSetColor_type {
|
|
1963
|
+
}
|
|
1692
1964
|
export declare type PlyStorage_type = 'ascii' | 'binary_little_endian' | 'binary_big_endian';
|
|
1693
1965
|
export interface Point2d_type {
|
|
1694
1966
|
x: LengthUnit_type;
|
|
@@ -1716,6 +1988,19 @@ export interface RawFile_type {
|
|
|
1716
1988
|
contents: number[];
|
|
1717
1989
|
name: string;
|
|
1718
1990
|
}
|
|
1991
|
+
export interface ReconfigureStream_type {
|
|
1992
|
+
}
|
|
1993
|
+
export interface RemoveSceneObjects_type {
|
|
1994
|
+
}
|
|
1995
|
+
export interface Revolve_type {
|
|
1996
|
+
}
|
|
1997
|
+
export interface RevolveAboutEdge_type {
|
|
1998
|
+
}
|
|
1999
|
+
export interface Rotation_type {
|
|
2000
|
+
angle: Angle_type;
|
|
2001
|
+
axis: Point3d_type;
|
|
2002
|
+
origin: OriginType_type;
|
|
2003
|
+
}
|
|
1719
2004
|
export interface RtcIceCandidateInit_type {
|
|
1720
2005
|
candidate: string;
|
|
1721
2006
|
sdpMLineIndex?: number;
|
|
@@ -1746,11 +2031,21 @@ export interface SamlIdentityProviderCreate_type {
|
|
|
1746
2031
|
signing_keypair?: DerEncodedKeyPair_type;
|
|
1747
2032
|
technical_contact_email: string;
|
|
1748
2033
|
}
|
|
2034
|
+
export interface SceneClearAll_type {
|
|
2035
|
+
}
|
|
1749
2036
|
export declare type SceneSelectionType_type = 'replace' | 'add' | 'remove';
|
|
1750
2037
|
export declare type SceneToolType_type = 'camera_revolve' | 'select' | 'move' | 'sketch_line' | 'sketch_tangential_arc' | 'sketch_curve' | 'sketch_curve_mod';
|
|
2038
|
+
export interface SelectAdd_type {
|
|
2039
|
+
}
|
|
2040
|
+
export interface SelectClear_type {
|
|
2041
|
+
}
|
|
1751
2042
|
export interface SelectGet_type {
|
|
1752
2043
|
entity_ids: string[];
|
|
1753
2044
|
}
|
|
2045
|
+
export interface SelectRemove_type {
|
|
2046
|
+
}
|
|
2047
|
+
export interface SelectReplace_type {
|
|
2048
|
+
}
|
|
1754
2049
|
export interface SelectWithPoint_type {
|
|
1755
2050
|
entity_id?: string;
|
|
1756
2051
|
}
|
|
@@ -1769,28 +2064,51 @@ export declare type Selection_type = {
|
|
|
1769
2064
|
name: string;
|
|
1770
2065
|
type: 'mesh_by_name';
|
|
1771
2066
|
};
|
|
2067
|
+
export interface SendObject_type {
|
|
2068
|
+
}
|
|
1772
2069
|
export interface ServiceAccount_type {
|
|
1773
2070
|
created_at: string;
|
|
1774
2071
|
id: Uuid_type;
|
|
1775
2072
|
is_valid: boolean;
|
|
1776
2073
|
label?: string;
|
|
1777
2074
|
org_id: Uuid_type;
|
|
1778
|
-
token:
|
|
2075
|
+
token: ServiceAccountUuid_type;
|
|
1779
2076
|
updated_at: string;
|
|
1780
2077
|
}
|
|
1781
2078
|
export interface ServiceAccountResultsPage_type {
|
|
1782
2079
|
items: ServiceAccount_type[];
|
|
1783
2080
|
next_page?: string;
|
|
1784
2081
|
}
|
|
2082
|
+
export declare type ServiceAccountUuid_type = string;
|
|
1785
2083
|
export interface Session_type {
|
|
1786
2084
|
created_at: string;
|
|
1787
2085
|
expires: string;
|
|
1788
2086
|
id: Uuid_type;
|
|
1789
|
-
session_token:
|
|
2087
|
+
session_token: SessionUuid_type;
|
|
1790
2088
|
updated_at: string;
|
|
1791
2089
|
user_id: Uuid_type;
|
|
1792
2090
|
}
|
|
1793
|
-
export declare type
|
|
2091
|
+
export declare type SessionUuid_type = string;
|
|
2092
|
+
export interface SetBackgroundColor_type {
|
|
2093
|
+
}
|
|
2094
|
+
export interface SetCurrentToolProperties_type {
|
|
2095
|
+
}
|
|
2096
|
+
export interface SetDefaultSystemProperties_type {
|
|
2097
|
+
}
|
|
2098
|
+
export interface SetSceneUnits_type {
|
|
2099
|
+
}
|
|
2100
|
+
export interface SetSelectionFilter_type {
|
|
2101
|
+
}
|
|
2102
|
+
export interface SetSelectionType_type {
|
|
2103
|
+
}
|
|
2104
|
+
export interface SetTool_type {
|
|
2105
|
+
}
|
|
2106
|
+
export interface SketchModeDisable_type {
|
|
2107
|
+
}
|
|
2108
|
+
export interface Solid2dAddHole_type {
|
|
2109
|
+
}
|
|
2110
|
+
export interface Solid3dFilletEdge_type {
|
|
2111
|
+
}
|
|
1794
2112
|
export interface Solid3dGetAllEdgeFaces_type {
|
|
1795
2113
|
faces: string[];
|
|
1796
2114
|
}
|
|
@@ -1809,11 +2127,26 @@ export interface Solid3dGetOppositeEdge_type {
|
|
|
1809
2127
|
export interface Solid3dGetPrevAdjacentEdge_type {
|
|
1810
2128
|
edge?: string;
|
|
1811
2129
|
}
|
|
2130
|
+
export interface Solid3dShellFace_type {
|
|
2131
|
+
}
|
|
2132
|
+
export interface SourcePosition_type {
|
|
2133
|
+
column: number;
|
|
2134
|
+
line: number;
|
|
2135
|
+
}
|
|
2136
|
+
export interface SourceRange_type {
|
|
2137
|
+
end: SourcePosition_type;
|
|
2138
|
+
start: SourcePosition_type;
|
|
2139
|
+
}
|
|
2140
|
+
export interface SourceRangePrompt_type {
|
|
2141
|
+
prompt: string;
|
|
2142
|
+
range: SourceRange_type;
|
|
2143
|
+
}
|
|
2144
|
+
export interface StartPath_type {
|
|
2145
|
+
}
|
|
1812
2146
|
export declare type StlStorage_type = 'ascii' | 'binary';
|
|
1813
2147
|
export interface StoreCouponParams_type {
|
|
1814
2148
|
percent_off: number;
|
|
1815
2149
|
}
|
|
1816
|
-
export declare type StringUuid_type = string;
|
|
1817
2150
|
export interface SubscriptionTierFeature_type {
|
|
1818
2151
|
info: string;
|
|
1819
2152
|
}
|
|
@@ -1857,7 +2190,7 @@ export interface TextToCad_type {
|
|
|
1857
2190
|
completed_at?: string;
|
|
1858
2191
|
created_at: string;
|
|
1859
2192
|
error?: string;
|
|
1860
|
-
feedback?:
|
|
2193
|
+
feedback?: MlFeedback_type;
|
|
1861
2194
|
id: Uuid_type;
|
|
1862
2195
|
model: TextToCadModel_type;
|
|
1863
2196
|
model_version: string;
|
|
@@ -1874,11 +2207,44 @@ export interface TextToCad_type {
|
|
|
1874
2207
|
export interface TextToCadCreateBody_type {
|
|
1875
2208
|
prompt: string;
|
|
1876
2209
|
}
|
|
1877
|
-
export
|
|
2210
|
+
export interface TextToCadIteration_type {
|
|
2211
|
+
code: string;
|
|
2212
|
+
completed_at?: string;
|
|
2213
|
+
created_at: string;
|
|
2214
|
+
error?: string;
|
|
2215
|
+
feedback?: MlFeedback_type;
|
|
2216
|
+
id: Uuid_type;
|
|
2217
|
+
model: TextToCadModel_type;
|
|
2218
|
+
model_version: string;
|
|
2219
|
+
original_source_code: string;
|
|
2220
|
+
prompt?: string;
|
|
2221
|
+
source_ranges: SourceRangePrompt_type[];
|
|
2222
|
+
started_at?: string;
|
|
2223
|
+
status: ApiCallStatus_type;
|
|
2224
|
+
updated_at: string;
|
|
2225
|
+
user_id: Uuid_type;
|
|
2226
|
+
}
|
|
2227
|
+
export interface TextToCadIterationBody_type {
|
|
2228
|
+
original_source_code: string;
|
|
2229
|
+
prompt?: string;
|
|
2230
|
+
source_ranges: SourceRangePrompt_type[];
|
|
2231
|
+
}
|
|
2232
|
+
export declare type TextToCadModel_type = 'cad' | 'kcl' | 'kcl_iteration';
|
|
1878
2233
|
export interface TextToCadResultsPage_type {
|
|
1879
2234
|
items: TextToCad_type[];
|
|
1880
2235
|
next_page?: string;
|
|
1881
2236
|
}
|
|
2237
|
+
export interface TokenRevokeRequestForm_type {
|
|
2238
|
+
client_id: string;
|
|
2239
|
+
client_secret?: string;
|
|
2240
|
+
token: DeviceAccessTokenUuid_type;
|
|
2241
|
+
}
|
|
2242
|
+
export interface Transform_type {
|
|
2243
|
+
replicate: boolean;
|
|
2244
|
+
rotation: Rotation_type;
|
|
2245
|
+
scale: Point3d_type;
|
|
2246
|
+
translate: Point3d_type;
|
|
2247
|
+
}
|
|
1882
2248
|
export declare type UnitAngle_type = 'degrees' | 'radians';
|
|
1883
2249
|
export interface UnitAngleConversion_type {
|
|
1884
2250
|
completed_at?: string;
|
|
@@ -2075,6 +2441,8 @@ export interface UnitVolumeConversion_type {
|
|
|
2075
2441
|
updated_at: string;
|
|
2076
2442
|
user_id: Uuid_type;
|
|
2077
2443
|
}
|
|
2444
|
+
export interface UpdateAnnotation_type {
|
|
2445
|
+
}
|
|
2078
2446
|
export interface UpdateMemberToOrgBody_type {
|
|
2079
2447
|
role: UserOrgRole_type;
|
|
2080
2448
|
}
|
|
@@ -2209,11 +2577,6 @@ export interface Models {
|
|
|
2209
2577
|
AccountProvider_type: AccountProvider_type;
|
|
2210
2578
|
AddOrgMember_type: AddOrgMember_type;
|
|
2211
2579
|
AddressDetails_type: AddressDetails_type;
|
|
2212
|
-
AiFeedback_type: AiFeedback_type;
|
|
2213
|
-
AiPrompt_type: AiPrompt_type;
|
|
2214
|
-
AiPromptMetadata_type: AiPromptMetadata_type;
|
|
2215
|
-
AiPromptResultsPage_type: AiPromptResultsPage_type;
|
|
2216
|
-
AiPromptType_type: AiPromptType_type;
|
|
2217
2580
|
Angle_type: Angle_type;
|
|
2218
2581
|
AnnotationLineEnd_type: AnnotationLineEnd_type;
|
|
2219
2582
|
AnnotationLineEndOptions_type: AnnotationLineEndOptions_type;
|
|
@@ -2230,6 +2593,7 @@ export interface Models {
|
|
|
2230
2593
|
ApiError_type: ApiError_type;
|
|
2231
2594
|
ApiToken_type: ApiToken_type;
|
|
2232
2595
|
ApiTokenResultsPage_type: ApiTokenResultsPage_type;
|
|
2596
|
+
ApiTokenUuid_type: ApiTokenUuid_type;
|
|
2233
2597
|
AppClientInfo_type: AppClientInfo_type;
|
|
2234
2598
|
AsyncApiCall_type: AsyncApiCall_type;
|
|
2235
2599
|
AsyncApiCallOutput_type: AsyncApiCallOutput_type;
|
|
@@ -2245,6 +2609,7 @@ export interface Models {
|
|
|
2245
2609
|
CameraDragEnd_type: CameraDragEnd_type;
|
|
2246
2610
|
CameraDragInteractionType_type: CameraDragInteractionType_type;
|
|
2247
2611
|
CameraDragMove_type: CameraDragMove_type;
|
|
2612
|
+
CameraDragStart_type: CameraDragStart_type;
|
|
2248
2613
|
CameraSettings_type: CameraSettings_type;
|
|
2249
2614
|
CardDetails_type: CardDetails_type;
|
|
2250
2615
|
CenterOfMass_type: CenterOfMass_type;
|
|
@@ -2262,24 +2627,36 @@ export interface Models {
|
|
|
2262
2627
|
CurveGetControlPoints_type: CurveGetControlPoints_type;
|
|
2263
2628
|
CurveGetEndPoints_type: CurveGetEndPoints_type;
|
|
2264
2629
|
CurveGetType_type: CurveGetType_type;
|
|
2630
|
+
CurveSetConstraint_type: CurveSetConstraint_type;
|
|
2265
2631
|
CurveType_type: CurveType_type;
|
|
2266
2632
|
Customer_type: Customer_type;
|
|
2267
2633
|
CustomerBalance_type: CustomerBalance_type;
|
|
2268
2634
|
CutType_type: CutType_type;
|
|
2635
|
+
DefaultCameraCenterToSelection_type: DefaultCameraCenterToSelection_type;
|
|
2269
2636
|
DefaultCameraFocusOn_type: DefaultCameraFocusOn_type;
|
|
2270
2637
|
DefaultCameraGetSettings_type: DefaultCameraGetSettings_type;
|
|
2638
|
+
DefaultCameraLookAt_type: DefaultCameraLookAt_type;
|
|
2639
|
+
DefaultCameraPerspectiveSettings_type: DefaultCameraPerspectiveSettings_type;
|
|
2640
|
+
DefaultCameraSetOrthographic_type: DefaultCameraSetOrthographic_type;
|
|
2641
|
+
DefaultCameraSetPerspective_type: DefaultCameraSetPerspective_type;
|
|
2271
2642
|
DefaultCameraZoom_type: DefaultCameraZoom_type;
|
|
2272
2643
|
Density_type: Density_type;
|
|
2273
2644
|
DerEncodedKeyPair_type: DerEncodedKeyPair_type;
|
|
2274
2645
|
DeviceAccessTokenRequestForm_type: DeviceAccessTokenRequestForm_type;
|
|
2646
|
+
DeviceAccessTokenUuid_type: DeviceAccessTokenUuid_type;
|
|
2275
2647
|
DeviceAuthRequestForm_type: DeviceAuthRequestForm_type;
|
|
2276
2648
|
DeviceAuthVerifyParams_type: DeviceAuthVerifyParams_type;
|
|
2277
2649
|
Direction_type: Direction_type;
|
|
2650
|
+
DisableDryRun_type: DisableDryRun_type;
|
|
2278
2651
|
Discount_type: Discount_type;
|
|
2279
2652
|
DiscountCode_type: DiscountCode_type;
|
|
2280
2653
|
DistanceType_type: DistanceType_type;
|
|
2654
|
+
EdgeLinesVisible_type: EdgeLinesVisible_type;
|
|
2281
2655
|
EmailAuthenticationForm_type: EmailAuthenticationForm_type;
|
|
2656
|
+
EnableDryRun_type: EnableDryRun_type;
|
|
2657
|
+
EnableSketchMode_type: EnableSketchMode_type;
|
|
2282
2658
|
EntityCircularPattern_type: EntityCircularPattern_type;
|
|
2659
|
+
EntityFade_type: EntityFade_type;
|
|
2283
2660
|
EntityGetAllChildUuids_type: EntityGetAllChildUuids_type;
|
|
2284
2661
|
EntityGetChildUuid_type: EntityGetChildUuid_type;
|
|
2285
2662
|
EntityGetDistance_type: EntityGetDistance_type;
|
|
@@ -2288,6 +2665,10 @@ export interface Models {
|
|
|
2288
2665
|
EntityGetSketchPaths_type: EntityGetSketchPaths_type;
|
|
2289
2666
|
EntityLinearPattern_type: EntityLinearPattern_type;
|
|
2290
2667
|
EntityLinearPatternTransform_type: EntityLinearPatternTransform_type;
|
|
2668
|
+
EntityMakeHelix_type: EntityMakeHelix_type;
|
|
2669
|
+
EntityMirror_type: EntityMirror_type;
|
|
2670
|
+
EntityMirrorAcrossEdge_type: EntityMirrorAcrossEdge_type;
|
|
2671
|
+
EntitySetOpacity_type: EntitySetOpacity_type;
|
|
2291
2672
|
EntityType_type: EntityType_type;
|
|
2292
2673
|
Environment_type: Environment_type;
|
|
2293
2674
|
Error_type: Error_type;
|
|
@@ -2295,8 +2676,10 @@ export interface Models {
|
|
|
2295
2676
|
Event_type: Event_type;
|
|
2296
2677
|
Export_type: Export_type;
|
|
2297
2678
|
ExportFile_type: ExportFile_type;
|
|
2679
|
+
ExtendPath_type: ExtendPath_type;
|
|
2298
2680
|
ExtendedUser_type: ExtendedUser_type;
|
|
2299
2681
|
ExtendedUserResultsPage_type: ExtendedUserResultsPage_type;
|
|
2682
|
+
Extrude_type: Extrude_type;
|
|
2300
2683
|
ExtrusionFaceCapType_type: ExtrusionFaceCapType_type;
|
|
2301
2684
|
ExtrusionFaceInfo_type: ExtrusionFaceInfo_type;
|
|
2302
2685
|
FaceGetCenter_type: FaceGetCenter_type;
|
|
@@ -2321,6 +2704,10 @@ export interface Models {
|
|
|
2321
2704
|
GlobalAxis_type: GlobalAxis_type;
|
|
2322
2705
|
GltfPresentation_type: GltfPresentation_type;
|
|
2323
2706
|
GltfStorage_type: GltfStorage_type;
|
|
2707
|
+
HandleMouseDragEnd_type: HandleMouseDragEnd_type;
|
|
2708
|
+
HandleMouseDragMove_type: HandleMouseDragMove_type;
|
|
2709
|
+
HandleMouseDragStart_type: HandleMouseDragStart_type;
|
|
2710
|
+
HighlightSetEntities_type: HighlightSetEntities_type;
|
|
2324
2711
|
HighlightSetEntity_type: HighlightSetEntity_type;
|
|
2325
2712
|
IceServer_type: IceServer_type;
|
|
2326
2713
|
IdpMetadataSource_type: IdpMetadataSource_type;
|
|
@@ -2342,11 +2729,18 @@ export interface Models {
|
|
|
2342
2729
|
KclCodeCompletionResponse_type: KclCodeCompletionResponse_type;
|
|
2343
2730
|
LeafNode_type: LeafNode_type;
|
|
2344
2731
|
LengthUnit_type: LengthUnit_type;
|
|
2345
|
-
|
|
2732
|
+
Loft_type: Loft_type;
|
|
2733
|
+
MakeAxesGizmo_type: MakeAxesGizmo_type;
|
|
2734
|
+
MakePlane_type: MakePlane_type;
|
|
2346
2735
|
Mass_type: Mass_type;
|
|
2347
2736
|
MetaClusterInfo_type: MetaClusterInfo_type;
|
|
2348
2737
|
Metadata_type: Metadata_type;
|
|
2349
2738
|
Method_type: Method_type;
|
|
2739
|
+
MlFeedback_type: MlFeedback_type;
|
|
2740
|
+
MlPrompt_type: MlPrompt_type;
|
|
2741
|
+
MlPromptMetadata_type: MlPromptMetadata_type;
|
|
2742
|
+
MlPromptResultsPage_type: MlPromptResultsPage_type;
|
|
2743
|
+
MlPromptType_type: MlPromptType_type;
|
|
2350
2744
|
ModelingAppEventType_type: ModelingAppEventType_type;
|
|
2351
2745
|
ModelingAppIndividualSubscriptionTier_type: ModelingAppIndividualSubscriptionTier_type;
|
|
2352
2746
|
ModelingAppOrganizationSubscriptionTier_type: ModelingAppOrganizationSubscriptionTier_type;
|
|
@@ -2355,9 +2749,16 @@ export interface Models {
|
|
|
2355
2749
|
ModelingCmd_type: ModelingCmd_type;
|
|
2356
2750
|
ModelingCmdId_type: ModelingCmdId_type;
|
|
2357
2751
|
ModelingCmdReq_type: ModelingCmdReq_type;
|
|
2752
|
+
ModelingSessionData_type: ModelingSessionData_type;
|
|
2358
2753
|
MouseClick_type: MouseClick_type;
|
|
2754
|
+
MouseMove_type: MouseMove_type;
|
|
2755
|
+
MovePathPen_type: MovePathPen_type;
|
|
2756
|
+
NewAnnotation_type: NewAnnotation_type;
|
|
2359
2757
|
OAuth2ClientInfo_type: OAuth2ClientInfo_type;
|
|
2360
2758
|
OAuth2GrantType_type: OAuth2GrantType_type;
|
|
2759
|
+
ObjectBringToFront_type: ObjectBringToFront_type;
|
|
2760
|
+
ObjectSetMaterialParamsPbr_type: ObjectSetMaterialParamsPbr_type;
|
|
2761
|
+
ObjectVisible_type: ObjectVisible_type;
|
|
2361
2762
|
OkModelingCmdResponse_type: OkModelingCmdResponse_type;
|
|
2362
2763
|
OkWebSocketResponseData_type: OkWebSocketResponseData_type;
|
|
2363
2764
|
Onboarding_type: Onboarding_type;
|
|
@@ -2367,6 +2768,7 @@ export interface Models {
|
|
|
2367
2768
|
OrgMemberResultsPage_type: OrgMemberResultsPage_type;
|
|
2368
2769
|
OrgResultsPage_type: OrgResultsPage_type;
|
|
2369
2770
|
OrgRole_type: OrgRole_type;
|
|
2771
|
+
OriginType_type: OriginType_type;
|
|
2370
2772
|
OutputFile_type: OutputFile_type;
|
|
2371
2773
|
OutputFormat_type: OutputFormat_type;
|
|
2372
2774
|
PathCommand_type: PathCommand_type;
|
|
@@ -2386,6 +2788,7 @@ export interface Models {
|
|
|
2386
2788
|
PerspectiveCameraParameters_type: PerspectiveCameraParameters_type;
|
|
2387
2789
|
PlanInterval_type: PlanInterval_type;
|
|
2388
2790
|
PlaneIntersectAndProject_type: PlaneIntersectAndProject_type;
|
|
2791
|
+
PlaneSetColor_type: PlaneSetColor_type;
|
|
2389
2792
|
PlyStorage_type: PlyStorage_type;
|
|
2390
2793
|
Point2d_type: Point2d_type;
|
|
2391
2794
|
Point3d_type: Point3d_type;
|
|
@@ -2394,29 +2797,55 @@ export interface Models {
|
|
|
2394
2797
|
PostEffectType_type: PostEffectType_type;
|
|
2395
2798
|
PrivacySettings_type: PrivacySettings_type;
|
|
2396
2799
|
RawFile_type: RawFile_type;
|
|
2800
|
+
ReconfigureStream_type: ReconfigureStream_type;
|
|
2801
|
+
RemoveSceneObjects_type: RemoveSceneObjects_type;
|
|
2802
|
+
Revolve_type: Revolve_type;
|
|
2803
|
+
RevolveAboutEdge_type: RevolveAboutEdge_type;
|
|
2804
|
+
Rotation_type: Rotation_type;
|
|
2397
2805
|
RtcIceCandidateInit_type: RtcIceCandidateInit_type;
|
|
2398
2806
|
RtcSdpType_type: RtcSdpType_type;
|
|
2399
2807
|
RtcSessionDescription_type: RtcSessionDescription_type;
|
|
2400
2808
|
SamlIdentityProvider_type: SamlIdentityProvider_type;
|
|
2401
2809
|
SamlIdentityProviderCreate_type: SamlIdentityProviderCreate_type;
|
|
2810
|
+
SceneClearAll_type: SceneClearAll_type;
|
|
2402
2811
|
SceneSelectionType_type: SceneSelectionType_type;
|
|
2403
2812
|
SceneToolType_type: SceneToolType_type;
|
|
2813
|
+
SelectAdd_type: SelectAdd_type;
|
|
2814
|
+
SelectClear_type: SelectClear_type;
|
|
2404
2815
|
SelectGet_type: SelectGet_type;
|
|
2816
|
+
SelectRemove_type: SelectRemove_type;
|
|
2817
|
+
SelectReplace_type: SelectReplace_type;
|
|
2405
2818
|
SelectWithPoint_type: SelectWithPoint_type;
|
|
2406
2819
|
Selection_type: Selection_type;
|
|
2820
|
+
SendObject_type: SendObject_type;
|
|
2407
2821
|
ServiceAccount_type: ServiceAccount_type;
|
|
2408
2822
|
ServiceAccountResultsPage_type: ServiceAccountResultsPage_type;
|
|
2823
|
+
ServiceAccountUuid_type: ServiceAccountUuid_type;
|
|
2409
2824
|
Session_type: Session_type;
|
|
2410
|
-
|
|
2825
|
+
SessionUuid_type: SessionUuid_type;
|
|
2826
|
+
SetBackgroundColor_type: SetBackgroundColor_type;
|
|
2827
|
+
SetCurrentToolProperties_type: SetCurrentToolProperties_type;
|
|
2828
|
+
SetDefaultSystemProperties_type: SetDefaultSystemProperties_type;
|
|
2829
|
+
SetSceneUnits_type: SetSceneUnits_type;
|
|
2830
|
+
SetSelectionFilter_type: SetSelectionFilter_type;
|
|
2831
|
+
SetSelectionType_type: SetSelectionType_type;
|
|
2832
|
+
SetTool_type: SetTool_type;
|
|
2833
|
+
SketchModeDisable_type: SketchModeDisable_type;
|
|
2834
|
+
Solid2dAddHole_type: Solid2dAddHole_type;
|
|
2835
|
+
Solid3dFilletEdge_type: Solid3dFilletEdge_type;
|
|
2411
2836
|
Solid3dGetAllEdgeFaces_type: Solid3dGetAllEdgeFaces_type;
|
|
2412
2837
|
Solid3dGetAllOppositeEdges_type: Solid3dGetAllOppositeEdges_type;
|
|
2413
2838
|
Solid3dGetExtrusionFaceInfo_type: Solid3dGetExtrusionFaceInfo_type;
|
|
2414
2839
|
Solid3dGetNextAdjacentEdge_type: Solid3dGetNextAdjacentEdge_type;
|
|
2415
2840
|
Solid3dGetOppositeEdge_type: Solid3dGetOppositeEdge_type;
|
|
2416
2841
|
Solid3dGetPrevAdjacentEdge_type: Solid3dGetPrevAdjacentEdge_type;
|
|
2842
|
+
Solid3dShellFace_type: Solid3dShellFace_type;
|
|
2843
|
+
SourcePosition_type: SourcePosition_type;
|
|
2844
|
+
SourceRange_type: SourceRange_type;
|
|
2845
|
+
SourceRangePrompt_type: SourceRangePrompt_type;
|
|
2846
|
+
StartPath_type: StartPath_type;
|
|
2417
2847
|
StlStorage_type: StlStorage_type;
|
|
2418
2848
|
StoreCouponParams_type: StoreCouponParams_type;
|
|
2419
|
-
StringUuid_type: StringUuid_type;
|
|
2420
2849
|
SubscriptionTierFeature_type: SubscriptionTierFeature_type;
|
|
2421
2850
|
SubscriptionTierPrice_type: SubscriptionTierPrice_type;
|
|
2422
2851
|
SubscriptionTierType_type: SubscriptionTierType_type;
|
|
@@ -2428,8 +2857,12 @@ export interface Models {
|
|
|
2428
2857
|
TakeSnapshot_type: TakeSnapshot_type;
|
|
2429
2858
|
TextToCad_type: TextToCad_type;
|
|
2430
2859
|
TextToCadCreateBody_type: TextToCadCreateBody_type;
|
|
2860
|
+
TextToCadIteration_type: TextToCadIteration_type;
|
|
2861
|
+
TextToCadIterationBody_type: TextToCadIterationBody_type;
|
|
2431
2862
|
TextToCadModel_type: TextToCadModel_type;
|
|
2432
2863
|
TextToCadResultsPage_type: TextToCadResultsPage_type;
|
|
2864
|
+
TokenRevokeRequestForm_type: TokenRevokeRequestForm_type;
|
|
2865
|
+
Transform_type: Transform_type;
|
|
2433
2866
|
UnitAngle_type: UnitAngle_type;
|
|
2434
2867
|
UnitAngleConversion_type: UnitAngleConversion_type;
|
|
2435
2868
|
UnitArea_type: UnitArea_type;
|
|
@@ -2457,6 +2890,7 @@ export interface Models {
|
|
|
2457
2890
|
UnitTorqueConversion_type: UnitTorqueConversion_type;
|
|
2458
2891
|
UnitVolume_type: UnitVolume_type;
|
|
2459
2892
|
UnitVolumeConversion_type: UnitVolumeConversion_type;
|
|
2893
|
+
UpdateAnnotation_type: UpdateAnnotation_type;
|
|
2460
2894
|
UpdateMemberToOrgBody_type: UpdateMemberToOrgBody_type;
|
|
2461
2895
|
UpdatePaymentBalance_type: UpdatePaymentBalance_type;
|
|
2462
2896
|
UpdateUser_type: UpdateUser_type;
|