@kittycad/lib 0.0.29 → 0.0.31
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/src/api/modeling/cmd.d.ts +2 -2
- package/dist/types/src/api/modeling/cmd.d.ts.map +1 -1
- 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/models.d.ts +201 -68
- package/dist/types/src/models.d.ts.map +1 -1
- package/dist/umd/index.js +1 -1
- package/package.json +1 -1
|
@@ -78,6 +78,10 @@ export interface ApiCallWithPriceResultsPage_type {
|
|
|
78
78
|
items: ApiCallWithPrice_type[];
|
|
79
79
|
next_page?: string;
|
|
80
80
|
}
|
|
81
|
+
export interface ApiError_type {
|
|
82
|
+
error_code: ErrorCode_type;
|
|
83
|
+
message: string;
|
|
84
|
+
}
|
|
81
85
|
export interface ApiToken_type {
|
|
82
86
|
created_at: string;
|
|
83
87
|
id: string;
|
|
@@ -90,6 +94,12 @@ export interface ApiTokenResultsPage_type {
|
|
|
90
94
|
items: ApiToken_type[];
|
|
91
95
|
next_page?: string;
|
|
92
96
|
}
|
|
97
|
+
export interface ApiWebSocketResponse_type {
|
|
98
|
+
errors: ApiError_type[];
|
|
99
|
+
request_id?: string;
|
|
100
|
+
resp: OkWebSocketResponseData_type;
|
|
101
|
+
success: boolean;
|
|
102
|
+
}
|
|
93
103
|
export interface AppClientInfo_type {
|
|
94
104
|
url: string;
|
|
95
105
|
}
|
|
@@ -307,6 +317,13 @@ export interface Coupon_type {
|
|
|
307
317
|
}
|
|
308
318
|
export declare type CreatedAtSortMode_type = 'created_at_ascending' | 'created_at_descending';
|
|
309
319
|
export declare type Currency_type = 'aed' | 'afn' | 'all' | 'amd' | 'ang' | 'aoa' | 'ars' | 'aud' | 'awg' | 'azn' | 'bam' | 'bbd' | 'bdt' | 'bgn' | 'bif' | 'bmd' | 'bnd' | 'bob' | 'brl' | 'bsd' | 'bwp' | 'bzd' | 'cad' | 'cdf' | 'chf' | 'clp' | 'cny' | 'cop' | 'crc' | 'cve' | 'czk' | 'djf' | 'dkk' | 'dop' | 'dzd' | 'eek' | 'egp' | 'etb' | 'eur' | 'fjd' | 'fkp' | 'gbp' | 'gel' | 'gip' | 'gmd' | 'gnf' | 'gtq' | 'gyd' | 'hkd' | 'hnl' | 'hrk' | 'htg' | 'huf' | 'idr' | 'ils' | 'inr' | 'isk' | 'jmd' | 'jpy' | 'kes' | 'kgs' | 'khr' | 'kmf' | 'krw' | 'kyd' | 'kzt' | 'lak' | 'lbp' | 'lkr' | 'lrd' | 'lsl' | 'ltl' | 'lvl' | 'mad' | 'mdl' | 'mga' | 'mkd' | 'mnt' | 'mop' | 'mro' | 'mur' | 'mvr' | 'mwk' | 'mxn' | 'myr' | 'mzn' | 'nad' | 'ngn' | 'nio' | 'nok' | 'npr' | 'nzd' | 'pab' | 'pen' | 'pgk' | 'php' | 'pkr' | 'pln' | 'pyg' | 'qar' | 'ron' | 'rsd' | 'rub' | 'rwf' | 'sar' | 'sbd' | 'scr' | 'sek' | 'sgd' | 'shp' | 'sll' | 'sos' | 'srd' | 'std' | 'svc' | 'szl' | 'thb' | 'tjs' | 'top' | 'try' | 'ttd' | 'twd' | 'tzs' | 'uah' | 'ugx' | 'usd' | 'uyu' | 'uzs' | 'vef' | 'vnd' | 'vuv' | 'wst' | 'xaf' | 'xcd' | 'xof' | 'xpf' | 'yer' | 'zar' | 'zmw';
|
|
320
|
+
export interface CurveGetControlPoints_type {
|
|
321
|
+
control_points: Point3d_type[];
|
|
322
|
+
}
|
|
323
|
+
export interface CurveGetType_type {
|
|
324
|
+
curve_type: CurveType_type;
|
|
325
|
+
}
|
|
326
|
+
export declare type CurveType_type = 'line' | 'nurbs';
|
|
310
327
|
export interface Customer_type {
|
|
311
328
|
address: NewAddress_type;
|
|
312
329
|
balance: number;
|
|
@@ -414,10 +431,6 @@ export interface EmailAuthenticationForm_type {
|
|
|
414
431
|
callback_url?: string;
|
|
415
432
|
email: string;
|
|
416
433
|
}
|
|
417
|
-
export interface EngineError_type {
|
|
418
|
-
error_code: ErrorCode_type;
|
|
419
|
-
message: string;
|
|
420
|
-
}
|
|
421
434
|
export interface EngineMetadata_type {
|
|
422
435
|
async_jobs_running: boolean;
|
|
423
436
|
cache: CacheMetadata_type;
|
|
@@ -426,22 +439,34 @@ export interface EngineMetadata_type {
|
|
|
426
439
|
git_hash: string;
|
|
427
440
|
pubsub: Connection_type;
|
|
428
441
|
}
|
|
429
|
-
export
|
|
442
|
+
export interface EntityGetAllChildUuids_type {
|
|
443
|
+
entity_ids: string[];
|
|
444
|
+
}
|
|
445
|
+
export interface EntityGetChildUuid_type {
|
|
446
|
+
entity_id: string;
|
|
447
|
+
}
|
|
448
|
+
export interface EntityGetNumChildren_type {
|
|
449
|
+
num: number;
|
|
450
|
+
}
|
|
451
|
+
export interface EntityGetParentId_type {
|
|
452
|
+
entity_id: string;
|
|
453
|
+
}
|
|
454
|
+
export declare type EntityType_type = 'entity' | 'object' | 'path' | 'curve' | 'solid2d' | 'solid3d' | 'edge' | 'face' | 'plane';
|
|
430
455
|
export declare type Environment_type = 'DEVELOPMENT' | 'PREVIEW' | 'PRODUCTION';
|
|
431
456
|
export interface Error_type {
|
|
432
457
|
error_code: string;
|
|
433
458
|
message: string;
|
|
434
459
|
request_id: string;
|
|
435
460
|
}
|
|
436
|
-
export declare type ErrorCode_type = 'bad_request' | '
|
|
437
|
-
export interface ErrorResponse_type {
|
|
438
|
-
errors: EngineError_type[];
|
|
439
|
-
}
|
|
461
|
+
export declare type ErrorCode_type = 'internal_engine' | 'internal_api' | 'bad_request' | 'invalid_json' | 'connection_problem' | 'message_type_not_accepted' | 'message_type_not_accepted_for_web_r_t_c';
|
|
440
462
|
export interface ExecutorMetadata_type {
|
|
441
463
|
docker_info: DockerSystemInfo_type;
|
|
442
464
|
environment: Environment_type;
|
|
443
465
|
git_hash: string;
|
|
444
466
|
}
|
|
467
|
+
export interface Export_type {
|
|
468
|
+
files: ExportFile_type[];
|
|
469
|
+
}
|
|
445
470
|
export interface ExportFile_type {
|
|
446
471
|
contents: string;
|
|
447
472
|
name: string;
|
|
@@ -514,7 +539,7 @@ export interface FileDensity_type {
|
|
|
514
539
|
updated_at: string;
|
|
515
540
|
user_id: string;
|
|
516
541
|
}
|
|
517
|
-
export declare type FileExportFormat_type = 'gltf' | 'obj' | 'ply' | 'step' | 'stl';
|
|
542
|
+
export declare type FileExportFormat_type = 'glb' | 'gltf' | 'obj' | 'ply' | 'step' | 'stl';
|
|
518
543
|
export declare type FileImportFormat_type = 'gltf' | 'obj' | 'ply' | 'step' | 'stl';
|
|
519
544
|
export interface FileMass_type {
|
|
520
545
|
completed_at?: string;
|
|
@@ -567,11 +592,19 @@ export interface Gateway_type {
|
|
|
567
592
|
port: number;
|
|
568
593
|
tls_timeout: number;
|
|
569
594
|
}
|
|
595
|
+
export interface GetEntityType_type {
|
|
596
|
+
entity_type: EntityType_type;
|
|
597
|
+
}
|
|
598
|
+
export interface HighlightSetEntity_type {
|
|
599
|
+
entity_id?: string;
|
|
600
|
+
sequence?: number;
|
|
601
|
+
}
|
|
570
602
|
export interface IceServer_type {
|
|
571
603
|
credential?: string;
|
|
572
604
|
urls: string[];
|
|
573
605
|
username?: string;
|
|
574
606
|
}
|
|
607
|
+
export declare type ImageFormat_type = 'png';
|
|
575
608
|
export declare type ImageType_type = 'png' | 'jpg';
|
|
576
609
|
export interface IndexInfo_type {
|
|
577
610
|
mirrors: string[];
|
|
@@ -821,6 +854,55 @@ export declare type ModelingCmd_type = {
|
|
|
821
854
|
face_id: string;
|
|
822
855
|
object_id: string;
|
|
823
856
|
type: 'solid3d_get_prev_adjacent_edge';
|
|
857
|
+
} | {
|
|
858
|
+
front: boolean;
|
|
859
|
+
object_id: string;
|
|
860
|
+
type: 'send_object';
|
|
861
|
+
} | {
|
|
862
|
+
entity_id: string;
|
|
863
|
+
opacity: number;
|
|
864
|
+
type: 'entity_set_opacity';
|
|
865
|
+
} | {
|
|
866
|
+
duration_seconds: number;
|
|
867
|
+
entity_id: string;
|
|
868
|
+
fade_in: boolean;
|
|
869
|
+
type: 'entity_fade';
|
|
870
|
+
} | {
|
|
871
|
+
clobber: boolean;
|
|
872
|
+
origin: Point3d_type;
|
|
873
|
+
size: number;
|
|
874
|
+
type: 'make_plane';
|
|
875
|
+
x_axis: Point3d_type;
|
|
876
|
+
y_axis: Point3d_type;
|
|
877
|
+
} | {
|
|
878
|
+
color: Color_type;
|
|
879
|
+
plane_id: string;
|
|
880
|
+
type: 'plane_set_color';
|
|
881
|
+
} | {
|
|
882
|
+
tool: SceneToolType_type;
|
|
883
|
+
type: 'set_tool';
|
|
884
|
+
} | {
|
|
885
|
+
type: 'mouse_move';
|
|
886
|
+
window: Point2d_type;
|
|
887
|
+
} | {
|
|
888
|
+
type: 'mouse_click';
|
|
889
|
+
window: Point2d_type;
|
|
890
|
+
} | {
|
|
891
|
+
animated: boolean;
|
|
892
|
+
ortho: boolean;
|
|
893
|
+
plane_id: string;
|
|
894
|
+
type: 'sketch_mode_enable';
|
|
895
|
+
} | {
|
|
896
|
+
type: 'sketch_mode_disable';
|
|
897
|
+
} | {
|
|
898
|
+
curve_id: string;
|
|
899
|
+
type: 'curve_get_type';
|
|
900
|
+
} | {
|
|
901
|
+
curve_id: string;
|
|
902
|
+
type: 'curve_get_control_points';
|
|
903
|
+
} | {
|
|
904
|
+
format: ImageFormat_type;
|
|
905
|
+
type: 'take_snapshot';
|
|
824
906
|
};
|
|
825
907
|
export declare type ModelingCmdId_type = string;
|
|
826
908
|
export interface ModelingCmdReq_type {
|
|
@@ -852,6 +934,10 @@ export interface ModelingOutcomes_type {
|
|
|
852
934
|
[key: string]: ModelingOutcome_type;
|
|
853
935
|
};
|
|
854
936
|
}
|
|
937
|
+
export interface MouseClick_type {
|
|
938
|
+
entities_modified: string[];
|
|
939
|
+
entities_selected: string[];
|
|
940
|
+
}
|
|
855
941
|
export interface NewAddress_type {
|
|
856
942
|
city: string;
|
|
857
943
|
country: CountryCode_type;
|
|
@@ -870,48 +956,85 @@ export declare type OAuth2GrantType_type = 'urn:ietf:params:oauth:grant-type:dev
|
|
|
870
956
|
export declare type OkModelingCmdResponse_type = {
|
|
871
957
|
type: 'empty';
|
|
872
958
|
} | {
|
|
873
|
-
|
|
959
|
+
data: any;
|
|
874
960
|
type: 'export';
|
|
875
961
|
} | {
|
|
876
|
-
|
|
962
|
+
data: any;
|
|
877
963
|
type: 'select_with_point';
|
|
878
964
|
} | {
|
|
879
|
-
|
|
880
|
-
sequence?: number;
|
|
965
|
+
data: any;
|
|
881
966
|
type: 'highlight_set_entity';
|
|
882
967
|
} | {
|
|
883
|
-
|
|
968
|
+
data: any;
|
|
884
969
|
type: 'entity_get_child_uuid';
|
|
885
970
|
} | {
|
|
886
|
-
|
|
971
|
+
data: any;
|
|
887
972
|
type: 'entity_get_num_children';
|
|
888
973
|
} | {
|
|
889
|
-
|
|
974
|
+
data: any;
|
|
890
975
|
type: 'entity_get_parent_id';
|
|
891
976
|
} | {
|
|
892
|
-
|
|
977
|
+
data: any;
|
|
893
978
|
type: 'entity_get_all_child_uuids';
|
|
894
979
|
} | {
|
|
895
|
-
|
|
980
|
+
data: any;
|
|
896
981
|
type: 'select_get';
|
|
897
982
|
} | {
|
|
898
|
-
|
|
983
|
+
data: any;
|
|
899
984
|
type: 'get_entity_type';
|
|
900
985
|
} | {
|
|
901
|
-
|
|
986
|
+
data: any;
|
|
902
987
|
type: 'solid3d_get_all_edge_faces';
|
|
903
988
|
} | {
|
|
904
|
-
|
|
989
|
+
data: any;
|
|
905
990
|
type: 'solid3d_get_all_opposite_edges';
|
|
906
991
|
} | {
|
|
907
|
-
|
|
992
|
+
data: any;
|
|
908
993
|
type: 'solid3d_get_opposite_edge';
|
|
909
994
|
} | {
|
|
910
|
-
|
|
995
|
+
data: any;
|
|
911
996
|
type: 'solid3d_get_prev_adjacent_edge';
|
|
912
997
|
} | {
|
|
913
|
-
|
|
998
|
+
data: any;
|
|
914
999
|
type: 'solid3d_get_next_adjacent_edge';
|
|
1000
|
+
} | {
|
|
1001
|
+
data: any;
|
|
1002
|
+
type: 'mouse_click';
|
|
1003
|
+
} | {
|
|
1004
|
+
data: any;
|
|
1005
|
+
type: 'curve_get_type';
|
|
1006
|
+
} | {
|
|
1007
|
+
data: any;
|
|
1008
|
+
type: 'curve_get_control_points';
|
|
1009
|
+
} | {
|
|
1010
|
+
data: any;
|
|
1011
|
+
type: 'take_snapshot';
|
|
1012
|
+
};
|
|
1013
|
+
export declare type OkWebSocketResponseData_type = {
|
|
1014
|
+
data: {
|
|
1015
|
+
ice_servers: IceServer_type[];
|
|
1016
|
+
};
|
|
1017
|
+
type: 'ice_server_info';
|
|
1018
|
+
} | {
|
|
1019
|
+
data: {
|
|
1020
|
+
candidate: RtcIceCandidateInit_type;
|
|
1021
|
+
};
|
|
1022
|
+
type: 'trickle_ice';
|
|
1023
|
+
} | {
|
|
1024
|
+
data: {
|
|
1025
|
+
answer: RtcSessionDescription_type;
|
|
1026
|
+
};
|
|
1027
|
+
type: 'sdp_answer';
|
|
1028
|
+
} | {
|
|
1029
|
+
data: {
|
|
1030
|
+
modeling_response: OkModelingCmdResponse_type;
|
|
1031
|
+
};
|
|
1032
|
+
type: 'modeling';
|
|
1033
|
+
} | {
|
|
1034
|
+
data: {
|
|
1035
|
+
files: RawFile_type[];
|
|
1036
|
+
};
|
|
1037
|
+
type: 'export';
|
|
915
1038
|
};
|
|
916
1039
|
export interface Onboarding_type {
|
|
917
1040
|
first_call_from_their_machine_date: string;
|
|
@@ -923,6 +1046,7 @@ export interface OutputFile_type {
|
|
|
923
1046
|
name: string;
|
|
924
1047
|
}
|
|
925
1048
|
export declare type OutputFormat_type = {
|
|
1049
|
+
presentation: Presentation_type;
|
|
926
1050
|
storage: Storage_type;
|
|
927
1051
|
type: 'gltf';
|
|
928
1052
|
} | {
|
|
@@ -995,6 +1119,7 @@ export interface PointEMetadata_type {
|
|
|
995
1119
|
export interface Pong_type {
|
|
996
1120
|
message: string;
|
|
997
1121
|
}
|
|
1122
|
+
export declare type Presentation_type = 'compact' | 'pretty';
|
|
998
1123
|
export interface RawFile_type {
|
|
999
1124
|
contents: number[];
|
|
1000
1125
|
name: string;
|
|
@@ -1008,27 +1133,12 @@ export interface RegistryServiceConfig_type {
|
|
|
1008
1133
|
insecure_registry_cid_rs: string[];
|
|
1009
1134
|
mirrors: string[];
|
|
1010
1135
|
}
|
|
1011
|
-
export interface RtcIceCandidate_type {
|
|
1012
|
-
address: string;
|
|
1013
|
-
component: number;
|
|
1014
|
-
foundation: string;
|
|
1015
|
-
port: number;
|
|
1016
|
-
priority: number;
|
|
1017
|
-
protocol: RtcIceProtocol_type;
|
|
1018
|
-
related_address: string;
|
|
1019
|
-
related_port: number;
|
|
1020
|
-
stats_id: string;
|
|
1021
|
-
tcp_type: string;
|
|
1022
|
-
typ: RtcIceCandidateType_type;
|
|
1023
|
-
}
|
|
1024
1136
|
export interface RtcIceCandidateInit_type {
|
|
1025
1137
|
candidate: string;
|
|
1026
1138
|
sdpMLineIndex?: number;
|
|
1027
1139
|
sdpMid?: string;
|
|
1028
1140
|
usernameFragment?: string;
|
|
1029
1141
|
}
|
|
1030
|
-
export declare type RtcIceCandidateType_type = 'unspecified' | 'host' | 'srflx' | 'prflx' | 'relay';
|
|
1031
|
-
export declare type RtcIceProtocol_type = 'unspecified' | 'udp' | 'tcp';
|
|
1032
1142
|
export declare type RtcSdpType_type = 'unspecified' | 'offer' | 'pranswer' | 'answer' | 'rollback';
|
|
1033
1143
|
export interface RtcSessionDescription_type {
|
|
1034
1144
|
sdp: string;
|
|
@@ -1039,6 +1149,13 @@ export interface Runtime_type {
|
|
|
1039
1149
|
runtime_args: string[];
|
|
1040
1150
|
}
|
|
1041
1151
|
export declare type SceneSelectionType_type = 'replace' | 'add' | 'remove';
|
|
1152
|
+
export declare type SceneToolType_type = 'camera_revolve' | 'select' | 'move' | 'sketch_line' | 'sketch_curve' | 'sketch_curve_mod';
|
|
1153
|
+
export interface SelectGet_type {
|
|
1154
|
+
entity_ids: string[];
|
|
1155
|
+
}
|
|
1156
|
+
export interface SelectWithPoint_type {
|
|
1157
|
+
entity_id?: string;
|
|
1158
|
+
}
|
|
1042
1159
|
export interface Session_type {
|
|
1043
1160
|
created_at: string;
|
|
1044
1161
|
expires: string;
|
|
@@ -1047,11 +1164,21 @@ export interface Session_type {
|
|
|
1047
1164
|
updated_at: string;
|
|
1048
1165
|
user_id: string;
|
|
1049
1166
|
}
|
|
1050
|
-
export
|
|
1051
|
-
|
|
1052
|
-
}
|
|
1053
|
-
|
|
1054
|
-
|
|
1167
|
+
export interface Solid3dGetAllEdgeFaces_type {
|
|
1168
|
+
faces: string[];
|
|
1169
|
+
}
|
|
1170
|
+
export interface Solid3dGetAllOppositeEdges_type {
|
|
1171
|
+
edges: string[];
|
|
1172
|
+
}
|
|
1173
|
+
export interface Solid3dGetNextAdjacentEdge_type {
|
|
1174
|
+
edge: string;
|
|
1175
|
+
}
|
|
1176
|
+
export interface Solid3dGetOppositeEdge_type {
|
|
1177
|
+
edge: string;
|
|
1178
|
+
}
|
|
1179
|
+
export interface Solid3dGetPrevAdjacentEdge_type {
|
|
1180
|
+
edge: string;
|
|
1181
|
+
}
|
|
1055
1182
|
export declare type Storage_type = 'binary' | 'standard' | 'embedded';
|
|
1056
1183
|
export interface System_type {
|
|
1057
1184
|
forward: AxisDirectionPair_type;
|
|
@@ -1064,6 +1191,9 @@ export interface SystemInfoDefaultAddressPools_type {
|
|
|
1064
1191
|
size?: number;
|
|
1065
1192
|
}
|
|
1066
1193
|
export declare type SystemInfoIsolationEnum_type = '' | 'default' | 'hyperv' | 'process';
|
|
1194
|
+
export interface TakeSnapshot_type {
|
|
1195
|
+
contents: number[];
|
|
1196
|
+
}
|
|
1067
1197
|
export declare type UnitAngle_type = 'degrees' | 'radians';
|
|
1068
1198
|
export interface UnitAngleConversion_type {
|
|
1069
1199
|
completed_at?: string;
|
|
@@ -1305,23 +1435,8 @@ export declare type WebSocketMessages_type = {
|
|
|
1305
1435
|
cmd: ModelingCmd_type;
|
|
1306
1436
|
cmd_id: ModelingCmdId_type;
|
|
1307
1437
|
type: 'modeling_cmd_req';
|
|
1308
|
-
};
|
|
1309
|
-
export declare type WebSocketResponses_type = {
|
|
1310
|
-
candidate: RtcIceCandidate_type;
|
|
1311
|
-
type: 'trickle_ice';
|
|
1312
|
-
} | {
|
|
1313
|
-
answer: RtcSessionDescription_type;
|
|
1314
|
-
type: 'sdp_answer';
|
|
1315
|
-
} | {
|
|
1316
|
-
ice_servers: IceServer_type[];
|
|
1317
|
-
type: 'ice_server_info';
|
|
1318
1438
|
} | {
|
|
1319
|
-
|
|
1320
|
-
result: SnakeCaseResult_type;
|
|
1321
|
-
type: 'modeling';
|
|
1322
|
-
} | {
|
|
1323
|
-
files: RawFile_type[];
|
|
1324
|
-
type: 'export';
|
|
1439
|
+
type: 'ping';
|
|
1325
1440
|
};
|
|
1326
1441
|
export interface Models {
|
|
1327
1442
|
AccountProvider_type: AccountProvider_type;
|
|
@@ -1343,8 +1458,10 @@ export interface Models {
|
|
|
1343
1458
|
ApiCallStatus_type: ApiCallStatus_type;
|
|
1344
1459
|
ApiCallWithPrice_type: ApiCallWithPrice_type;
|
|
1345
1460
|
ApiCallWithPriceResultsPage_type: ApiCallWithPriceResultsPage_type;
|
|
1461
|
+
ApiError_type: ApiError_type;
|
|
1346
1462
|
ApiToken_type: ApiToken_type;
|
|
1347
1463
|
ApiTokenResultsPage_type: ApiTokenResultsPage_type;
|
|
1464
|
+
ApiWebSocketResponse_type: ApiWebSocketResponse_type;
|
|
1348
1465
|
AppClientInfo_type: AppClientInfo_type;
|
|
1349
1466
|
AsyncApiCall_type: AsyncApiCall_type;
|
|
1350
1467
|
AsyncApiCallOutput_type: AsyncApiCallOutput_type;
|
|
@@ -1366,6 +1483,9 @@ export interface Models {
|
|
|
1366
1483
|
Coupon_type: Coupon_type;
|
|
1367
1484
|
CreatedAtSortMode_type: CreatedAtSortMode_type;
|
|
1368
1485
|
Currency_type: Currency_type;
|
|
1486
|
+
CurveGetControlPoints_type: CurveGetControlPoints_type;
|
|
1487
|
+
CurveGetType_type: CurveGetType_type;
|
|
1488
|
+
CurveType_type: CurveType_type;
|
|
1369
1489
|
Customer_type: Customer_type;
|
|
1370
1490
|
CustomerBalance_type: CustomerBalance_type;
|
|
1371
1491
|
DeviceAccessTokenRequestForm_type: DeviceAccessTokenRequestForm_type;
|
|
@@ -1375,14 +1495,17 @@ export interface Models {
|
|
|
1375
1495
|
Discount_type: Discount_type;
|
|
1376
1496
|
DockerSystemInfo_type: DockerSystemInfo_type;
|
|
1377
1497
|
EmailAuthenticationForm_type: EmailAuthenticationForm_type;
|
|
1378
|
-
EngineError_type: EngineError_type;
|
|
1379
1498
|
EngineMetadata_type: EngineMetadata_type;
|
|
1499
|
+
EntityGetAllChildUuids_type: EntityGetAllChildUuids_type;
|
|
1500
|
+
EntityGetChildUuid_type: EntityGetChildUuid_type;
|
|
1501
|
+
EntityGetNumChildren_type: EntityGetNumChildren_type;
|
|
1502
|
+
EntityGetParentId_type: EntityGetParentId_type;
|
|
1380
1503
|
EntityType_type: EntityType_type;
|
|
1381
1504
|
Environment_type: Environment_type;
|
|
1382
1505
|
Error_type: Error_type;
|
|
1383
1506
|
ErrorCode_type: ErrorCode_type;
|
|
1384
|
-
ErrorResponse_type: ErrorResponse_type;
|
|
1385
1507
|
ExecutorMetadata_type: ExecutorMetadata_type;
|
|
1508
|
+
Export_type: Export_type;
|
|
1386
1509
|
ExportFile_type: ExportFile_type;
|
|
1387
1510
|
ExtendedUser_type: ExtendedUser_type;
|
|
1388
1511
|
ExtendedUserResultsPage_type: ExtendedUserResultsPage_type;
|
|
@@ -1396,7 +1519,10 @@ export interface Models {
|
|
|
1396
1519
|
FileSystemMetadata_type: FileSystemMetadata_type;
|
|
1397
1520
|
FileVolume_type: FileVolume_type;
|
|
1398
1521
|
Gateway_type: Gateway_type;
|
|
1522
|
+
GetEntityType_type: GetEntityType_type;
|
|
1523
|
+
HighlightSetEntity_type: HighlightSetEntity_type;
|
|
1399
1524
|
IceServer_type: IceServer_type;
|
|
1525
|
+
ImageFormat_type: ImageFormat_type;
|
|
1400
1526
|
ImageType_type: ImageType_type;
|
|
1401
1527
|
IndexInfo_type: IndexInfo_type;
|
|
1402
1528
|
InputFormat_type: InputFormat_type;
|
|
@@ -1419,10 +1545,12 @@ export interface Models {
|
|
|
1419
1545
|
ModelingError_type: ModelingError_type;
|
|
1420
1546
|
ModelingOutcome_type: ModelingOutcome_type;
|
|
1421
1547
|
ModelingOutcomes_type: ModelingOutcomes_type;
|
|
1548
|
+
MouseClick_type: MouseClick_type;
|
|
1422
1549
|
NewAddress_type: NewAddress_type;
|
|
1423
1550
|
OAuth2ClientInfo_type: OAuth2ClientInfo_type;
|
|
1424
1551
|
OAuth2GrantType_type: OAuth2GrantType_type;
|
|
1425
1552
|
OkModelingCmdResponse_type: OkModelingCmdResponse_type;
|
|
1553
|
+
OkWebSocketResponseData_type: OkWebSocketResponseData_type;
|
|
1426
1554
|
Onboarding_type: Onboarding_type;
|
|
1427
1555
|
OutputFile_type: OutputFile_type;
|
|
1428
1556
|
OutputFormat_type: OutputFormat_type;
|
|
@@ -1436,24 +1564,30 @@ export interface Models {
|
|
|
1436
1564
|
Point3d_type: Point3d_type;
|
|
1437
1565
|
PointEMetadata_type: PointEMetadata_type;
|
|
1438
1566
|
Pong_type: Pong_type;
|
|
1567
|
+
Presentation_type: Presentation_type;
|
|
1439
1568
|
RawFile_type: RawFile_type;
|
|
1440
1569
|
RegistryServiceConfig_type: RegistryServiceConfig_type;
|
|
1441
|
-
RtcIceCandidate_type: RtcIceCandidate_type;
|
|
1442
1570
|
RtcIceCandidateInit_type: RtcIceCandidateInit_type;
|
|
1443
|
-
RtcIceCandidateType_type: RtcIceCandidateType_type;
|
|
1444
|
-
RtcIceProtocol_type: RtcIceProtocol_type;
|
|
1445
1571
|
RtcSdpType_type: RtcSdpType_type;
|
|
1446
1572
|
RtcSessionDescription_type: RtcSessionDescription_type;
|
|
1447
1573
|
Runtime_type: Runtime_type;
|
|
1448
1574
|
SceneSelectionType_type: SceneSelectionType_type;
|
|
1575
|
+
SceneToolType_type: SceneToolType_type;
|
|
1576
|
+
SelectGet_type: SelectGet_type;
|
|
1577
|
+
SelectWithPoint_type: SelectWithPoint_type;
|
|
1449
1578
|
Session_type: Session_type;
|
|
1450
|
-
|
|
1579
|
+
Solid3dGetAllEdgeFaces_type: Solid3dGetAllEdgeFaces_type;
|
|
1580
|
+
Solid3dGetAllOppositeEdges_type: Solid3dGetAllOppositeEdges_type;
|
|
1581
|
+
Solid3dGetNextAdjacentEdge_type: Solid3dGetNextAdjacentEdge_type;
|
|
1582
|
+
Solid3dGetOppositeEdge_type: Solid3dGetOppositeEdge_type;
|
|
1583
|
+
Solid3dGetPrevAdjacentEdge_type: Solid3dGetPrevAdjacentEdge_type;
|
|
1451
1584
|
Storage_type: Storage_type;
|
|
1452
1585
|
System_type: System_type;
|
|
1453
1586
|
SystemInfoCgroupDriverEnum_type: SystemInfoCgroupDriverEnum_type;
|
|
1454
1587
|
SystemInfoCgroupVersionEnum_type: SystemInfoCgroupVersionEnum_type;
|
|
1455
1588
|
SystemInfoDefaultAddressPools_type: SystemInfoDefaultAddressPools_type;
|
|
1456
1589
|
SystemInfoIsolationEnum_type: SystemInfoIsolationEnum_type;
|
|
1590
|
+
TakeSnapshot_type: TakeSnapshot_type;
|
|
1457
1591
|
UnitAngle_type: UnitAngle_type;
|
|
1458
1592
|
UnitAngleConversion_type: UnitAngleConversion_type;
|
|
1459
1593
|
UnitArea_type: UnitArea_type;
|
|
@@ -1487,6 +1621,5 @@ export interface Models {
|
|
|
1487
1621
|
Uuid_type: Uuid_type;
|
|
1488
1622
|
VerificationToken_type: VerificationToken_type;
|
|
1489
1623
|
WebSocketMessages_type: WebSocketMessages_type;
|
|
1490
|
-
WebSocketResponses_type: WebSocketResponses_type;
|
|
1491
1624
|
}
|
|
1492
1625
|
//# sourceMappingURL=models.d.ts.map
|