@kittycad/lib 0.0.36 → 0.0.38
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/index.d.ts +0 -4
- package/dist/types/src/index.d.ts.map +1 -1
- package/dist/types/src/models.d.ts +83 -177
- package/dist/types/src/models.d.ts.map +1 -1
- package/dist/umd/index.js +1 -1
- package/package.json +1 -1
- package/dist/types/__tests__/gen/modeling-cmd.test.d.ts +0 -2
- package/dist/types/__tests__/gen/modeling-cmd.test.d.ts.map +0 -1
- package/dist/types/__tests__/gen/modeling-cmd_batch.test.d.ts +0 -2
- package/dist/types/__tests__/gen/modeling-cmd_batch.test.d.ts.map +0 -1
- package/dist/types/src/api/modeling/cmd.d.ts +0 -9
- package/dist/types/src/api/modeling/cmd.d.ts.map +0 -1
- package/dist/types/src/api/modeling/cmd_batch.d.ts +0 -9
- package/dist/types/src/api/modeling/cmd_batch.d.ts.map +0 -1
|
@@ -23,6 +23,10 @@ export interface AiPluginManifest_type {
|
|
|
23
23
|
name_for_model: string;
|
|
24
24
|
schema_version: string;
|
|
25
25
|
}
|
|
26
|
+
export interface Angle_type {
|
|
27
|
+
unit: UnitAngle_type;
|
|
28
|
+
value: number;
|
|
29
|
+
}
|
|
26
30
|
export declare type AnnotationLineEnd_type = 'none' | 'arrow';
|
|
27
31
|
export interface AnnotationLineEndOptions_type {
|
|
28
32
|
end: AnnotationLineEnd_type;
|
|
@@ -62,7 +66,7 @@ export interface ApiCallWithPrice_type {
|
|
|
62
66
|
method: Method_type;
|
|
63
67
|
minutes?: number;
|
|
64
68
|
origin: string;
|
|
65
|
-
price?:
|
|
69
|
+
price?: string;
|
|
66
70
|
request_body?: string;
|
|
67
71
|
request_query_params: string;
|
|
68
72
|
response_body?: string;
|
|
@@ -227,6 +231,16 @@ export interface CardDetails_type {
|
|
|
227
231
|
funding: string;
|
|
228
232
|
last4: string;
|
|
229
233
|
}
|
|
234
|
+
export interface ClientMetrics_type {
|
|
235
|
+
rtc_frames_decoded: number;
|
|
236
|
+
rtc_frames_dropped: number;
|
|
237
|
+
rtc_frames_per_second: number;
|
|
238
|
+
rtc_frames_received: number;
|
|
239
|
+
rtc_freeze_count: number;
|
|
240
|
+
rtc_jitter_sec: number;
|
|
241
|
+
rtc_keyframes_decoded: number;
|
|
242
|
+
rtc_total_freezes_duration_sec: number;
|
|
243
|
+
}
|
|
230
244
|
export interface Cluster_type {
|
|
231
245
|
addr?: string;
|
|
232
246
|
auth_timeout: number;
|
|
@@ -247,17 +261,13 @@ export interface Color_type {
|
|
|
247
261
|
g: number;
|
|
248
262
|
r: number;
|
|
249
263
|
}
|
|
250
|
-
export interface Commit_type {
|
|
251
|
-
expected?: string;
|
|
252
|
-
id?: string;
|
|
253
|
-
}
|
|
254
264
|
export interface Connection_type {
|
|
255
265
|
auth_timeout: number;
|
|
256
266
|
cluster: Cluster_type;
|
|
257
267
|
config_load_time: string;
|
|
258
268
|
connections: number;
|
|
259
269
|
cores: number;
|
|
260
|
-
cpu
|
|
270
|
+
cpu: number;
|
|
261
271
|
gateway: Gateway_type;
|
|
262
272
|
git_commit: string;
|
|
263
273
|
go: string;
|
|
@@ -301,25 +311,29 @@ export interface Connection_type {
|
|
|
301
311
|
version: string;
|
|
302
312
|
write_deadline: number;
|
|
303
313
|
}
|
|
304
|
-
export declare type CountryCode_type =
|
|
314
|
+
export declare type CountryCode_type = string;
|
|
305
315
|
export interface Coupon_type {
|
|
306
|
-
amount_off?:
|
|
316
|
+
amount_off?: string;
|
|
307
317
|
deleted: boolean;
|
|
308
318
|
id: string;
|
|
309
319
|
percent_off?: number;
|
|
310
320
|
}
|
|
311
321
|
export declare type CreatedAtSortMode_type = 'created_at_ascending' | 'created_at_descending';
|
|
312
|
-
export declare type Currency_type =
|
|
322
|
+
export declare type Currency_type = string;
|
|
313
323
|
export interface CurveGetControlPoints_type {
|
|
314
324
|
control_points: Point3d_type[];
|
|
315
325
|
}
|
|
326
|
+
export interface CurveGetEndPoints_type {
|
|
327
|
+
end: Point3d_type;
|
|
328
|
+
start: Point3d_type;
|
|
329
|
+
}
|
|
316
330
|
export interface CurveGetType_type {
|
|
317
331
|
curve_type: CurveType_type;
|
|
318
332
|
}
|
|
319
|
-
export declare type CurveType_type = 'line' | 'nurbs';
|
|
333
|
+
export declare type CurveType_type = 'line' | 'arc' | 'nurbs';
|
|
320
334
|
export interface Customer_type {
|
|
321
335
|
address: NewAddress_type;
|
|
322
|
-
balance:
|
|
336
|
+
balance: string;
|
|
323
337
|
created_at: string;
|
|
324
338
|
currency: Currency_type;
|
|
325
339
|
delinquent: boolean;
|
|
@@ -334,10 +348,10 @@ export interface Customer_type {
|
|
|
334
348
|
export interface CustomerBalance_type {
|
|
335
349
|
created_at: string;
|
|
336
350
|
id: Uuid_type;
|
|
337
|
-
monthly_credits_remaining:
|
|
338
|
-
pre_pay_cash_remaining:
|
|
339
|
-
pre_pay_credits_remaining:
|
|
340
|
-
total_due:
|
|
351
|
+
monthly_credits_remaining: string;
|
|
352
|
+
pre_pay_cash_remaining: string;
|
|
353
|
+
pre_pay_credits_remaining: string;
|
|
354
|
+
total_due: string;
|
|
341
355
|
updated_at: string;
|
|
342
356
|
user_id: string;
|
|
343
357
|
}
|
|
@@ -356,82 +370,10 @@ export declare type Direction_type = 'positive' | 'negative';
|
|
|
356
370
|
export interface Discount_type {
|
|
357
371
|
coupon: Coupon_type;
|
|
358
372
|
}
|
|
359
|
-
export interface DockerSystemInfo_type {
|
|
360
|
-
architecture?: string;
|
|
361
|
-
bridge_nf_ip6tables?: boolean;
|
|
362
|
-
bridge_nf_iptables?: boolean;
|
|
363
|
-
cgroup_driver: SystemInfoCgroupDriverEnum_type;
|
|
364
|
-
cgroup_version: SystemInfoCgroupVersionEnum_type;
|
|
365
|
-
cluster_advertise?: string;
|
|
366
|
-
cluster_store?: string;
|
|
367
|
-
containerd_commit: Commit_type;
|
|
368
|
-
containers?: number;
|
|
369
|
-
containers_paused?: number;
|
|
370
|
-
containers_running?: number;
|
|
371
|
-
containers_stopped?: number;
|
|
372
|
-
cpu_cfs_period?: boolean;
|
|
373
|
-
cpu_cfs_quota?: boolean;
|
|
374
|
-
cpu_set?: boolean;
|
|
375
|
-
cpu_shares?: boolean;
|
|
376
|
-
debug?: boolean;
|
|
377
|
-
default_address_pools: SystemInfoDefaultAddressPools_type[];
|
|
378
|
-
default_runtime?: string;
|
|
379
|
-
docker_root_dir?: string;
|
|
380
|
-
driver?: string;
|
|
381
|
-
driver_status: string[][];
|
|
382
|
-
experimental_build?: boolean;
|
|
383
|
-
http_proxy?: string;
|
|
384
|
-
https_proxy?: string;
|
|
385
|
-
id?: string;
|
|
386
|
-
images?: number;
|
|
387
|
-
index_server_address?: string;
|
|
388
|
-
init_binary?: string;
|
|
389
|
-
init_commit: Commit_type;
|
|
390
|
-
ipv4_forwarding?: boolean;
|
|
391
|
-
isolation: SystemInfoIsolationEnum_type;
|
|
392
|
-
kernel_memory?: boolean;
|
|
393
|
-
kernel_memory_tcp?: boolean;
|
|
394
|
-
kernel_version?: string;
|
|
395
|
-
labels: string[];
|
|
396
|
-
live_restore_enabled?: boolean;
|
|
397
|
-
logging_driver?: string;
|
|
398
|
-
mem_total?: number;
|
|
399
|
-
memory_limit?: boolean;
|
|
400
|
-
n_events_listener?: number;
|
|
401
|
-
n_fd?: number;
|
|
402
|
-
name?: string;
|
|
403
|
-
ncpu?: number;
|
|
404
|
-
no_proxy?: string;
|
|
405
|
-
oom_kill_disable?: boolean;
|
|
406
|
-
operating_system?: string;
|
|
407
|
-
os_type?: string;
|
|
408
|
-
os_version?: string;
|
|
409
|
-
pids_limit?: boolean;
|
|
410
|
-
plugins: PluginsInfo_type;
|
|
411
|
-
product_license?: string;
|
|
412
|
-
registry_config: RegistryServiceConfig_type;
|
|
413
|
-
runc_commit: Commit_type;
|
|
414
|
-
runtimes: {
|
|
415
|
-
[key: string]: Runtime_type;
|
|
416
|
-
};
|
|
417
|
-
security_options: string[];
|
|
418
|
-
server_version?: string;
|
|
419
|
-
swap_limit?: boolean;
|
|
420
|
-
system_time?: string;
|
|
421
|
-
warnings: string[];
|
|
422
|
-
}
|
|
423
373
|
export interface EmailAuthenticationForm_type {
|
|
424
374
|
callback_url?: string;
|
|
425
375
|
email: string;
|
|
426
376
|
}
|
|
427
|
-
export interface EngineMetadata_type {
|
|
428
|
-
async_jobs_running: boolean;
|
|
429
|
-
cache: CacheMetadata_type;
|
|
430
|
-
environment: Environment_type;
|
|
431
|
-
fs: FileSystemMetadata_type;
|
|
432
|
-
git_hash: string;
|
|
433
|
-
pubsub: Connection_type;
|
|
434
|
-
}
|
|
435
377
|
export interface EntityGetAllChildUuids_type {
|
|
436
378
|
entity_ids: string[];
|
|
437
379
|
}
|
|
@@ -452,11 +394,6 @@ export interface Error_type {
|
|
|
452
394
|
request_id: string;
|
|
453
395
|
}
|
|
454
396
|
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';
|
|
455
|
-
export interface ExecutorMetadata_type {
|
|
456
|
-
docker_info: DockerSystemInfo_type;
|
|
457
|
-
environment: Environment_type;
|
|
458
|
-
git_hash: string;
|
|
459
|
-
}
|
|
460
397
|
export interface Export_type {
|
|
461
398
|
files: ExportFile_type[];
|
|
462
399
|
}
|
|
@@ -606,12 +543,6 @@ export interface IceServer_type {
|
|
|
606
543
|
}
|
|
607
544
|
export declare type ImageFormat_type = 'png' | 'jpeg';
|
|
608
545
|
export declare type ImageType_type = 'png' | 'jpg';
|
|
609
|
-
export interface IndexInfo_type {
|
|
610
|
-
mirrors: string[];
|
|
611
|
-
name?: string;
|
|
612
|
-
official?: boolean;
|
|
613
|
-
secure?: boolean;
|
|
614
|
-
}
|
|
615
546
|
export declare type InputFormat_type = {
|
|
616
547
|
type: 'fbx';
|
|
617
548
|
} | {
|
|
@@ -634,9 +565,9 @@ export declare type InputFormat_type = {
|
|
|
634
565
|
units: UnitLength_type;
|
|
635
566
|
};
|
|
636
567
|
export interface Invoice_type {
|
|
637
|
-
amount_due:
|
|
638
|
-
amount_paid:
|
|
639
|
-
amount_remaining:
|
|
568
|
+
amount_due: string;
|
|
569
|
+
amount_paid: string;
|
|
570
|
+
amount_remaining: string;
|
|
640
571
|
attempt_count: number;
|
|
641
572
|
attempted: boolean;
|
|
642
573
|
created_at: string;
|
|
@@ -657,13 +588,13 @@ export interface Invoice_type {
|
|
|
657
588
|
receipt_number: string;
|
|
658
589
|
statement_descriptor: string;
|
|
659
590
|
status: InvoiceStatus_type;
|
|
660
|
-
subtotal:
|
|
661
|
-
tax:
|
|
662
|
-
total:
|
|
591
|
+
subtotal: string;
|
|
592
|
+
tax: string;
|
|
593
|
+
total: string;
|
|
663
594
|
url?: string;
|
|
664
595
|
}
|
|
665
596
|
export interface InvoiceLineItem_type {
|
|
666
|
-
amount:
|
|
597
|
+
amount: string;
|
|
667
598
|
currency: Currency_type;
|
|
668
599
|
description: string;
|
|
669
600
|
id: string;
|
|
@@ -714,9 +645,7 @@ export interface MetaClusterInfo_type {
|
|
|
714
645
|
}
|
|
715
646
|
export interface Metadata_type {
|
|
716
647
|
cache: CacheMetadata_type;
|
|
717
|
-
engine: EngineMetadata_type;
|
|
718
648
|
environment: Environment_type;
|
|
719
|
-
executor: ExecutorMetadata_type;
|
|
720
649
|
fs: FileSystemMetadata_type;
|
|
721
650
|
git_hash: string;
|
|
722
651
|
point_e: PointEMetadata_type;
|
|
@@ -915,6 +844,10 @@ export declare type ModelingCmd_type = {
|
|
|
915
844
|
} | {
|
|
916
845
|
path_id: string;
|
|
917
846
|
type: 'path_get_info';
|
|
847
|
+
} | {
|
|
848
|
+
path_id: string;
|
|
849
|
+
type: 'path_get_curve_uuids_for_vertices';
|
|
850
|
+
vertex_ids: string[];
|
|
918
851
|
} | {
|
|
919
852
|
type: 'handle_mouse_drag_start';
|
|
920
853
|
window: Point2d_type;
|
|
@@ -928,37 +861,23 @@ export declare type ModelingCmd_type = {
|
|
|
928
861
|
} | {
|
|
929
862
|
object_ids: string[];
|
|
930
863
|
type: 'remove_scene_objects';
|
|
931
|
-
};
|
|
932
|
-
export declare type ModelingCmdId_type = string;
|
|
933
|
-
export interface ModelingCmdReq_type {
|
|
934
|
-
cmd: ModelingCmd_type;
|
|
935
|
-
cmd_id: ModelingCmdId_type;
|
|
936
|
-
}
|
|
937
|
-
export interface ModelingCmdReqBatch_type {
|
|
938
|
-
cmds: {
|
|
939
|
-
[key: string]: ModelingCmdReq_type;
|
|
940
|
-
};
|
|
941
|
-
}
|
|
942
|
-
export interface ModelingError_type {
|
|
943
|
-
error_code: string;
|
|
944
|
-
external_message: string;
|
|
945
|
-
internal_message: string;
|
|
946
|
-
status_code: number;
|
|
947
|
-
}
|
|
948
|
-
export declare type ModelingOutcome_type = {
|
|
949
|
-
success: OkModelingCmdResponse_type;
|
|
950
864
|
} | {
|
|
951
|
-
|
|
865
|
+
angle_snap_increment: Angle_type;
|
|
866
|
+
to: Point3d_type;
|
|
867
|
+
type: 'path_tangential_arc_to';
|
|
952
868
|
} | {
|
|
953
|
-
|
|
954
|
-
|
|
955
|
-
|
|
869
|
+
offset: Angle_type;
|
|
870
|
+
radius: number;
|
|
871
|
+
type: 'path_tangential_arc';
|
|
872
|
+
} | {
|
|
873
|
+
plane_id: string;
|
|
874
|
+
type: 'plane_intersect_and_project';
|
|
875
|
+
window: Point2d_type;
|
|
876
|
+
} | {
|
|
877
|
+
curve_id: string;
|
|
878
|
+
type: 'curve_get_end_points';
|
|
956
879
|
};
|
|
957
|
-
export
|
|
958
|
-
outcomes: {
|
|
959
|
-
[key: string]: ModelingOutcome_type;
|
|
960
|
-
};
|
|
961
|
-
}
|
|
880
|
+
export declare type ModelingCmdId_type = string;
|
|
962
881
|
export interface MouseClick_type {
|
|
963
882
|
entities_modified: string[];
|
|
964
883
|
entities_selected: string[];
|
|
@@ -1037,6 +956,15 @@ export declare type OkModelingCmdResponse_type = {
|
|
|
1037
956
|
} | {
|
|
1038
957
|
data: PathGetInfo_type;
|
|
1039
958
|
type: 'path_get_info';
|
|
959
|
+
} | {
|
|
960
|
+
data: PathGetCurveUuidsForVertices_type;
|
|
961
|
+
type: 'path_get_curve_uuids_for_vertices';
|
|
962
|
+
} | {
|
|
963
|
+
data: PlaneIntersectAndProject_type;
|
|
964
|
+
type: 'plane_intersect_and_project';
|
|
965
|
+
} | {
|
|
966
|
+
data: CurveGetEndPoints_type;
|
|
967
|
+
type: 'curve_get_end_points';
|
|
1040
968
|
};
|
|
1041
969
|
export declare type OkWebSocketResponseData_type = {
|
|
1042
970
|
data: {
|
|
@@ -1063,6 +991,9 @@ export declare type OkWebSocketResponseData_type = {
|
|
|
1063
991
|
files: RawFile_type[];
|
|
1064
992
|
};
|
|
1065
993
|
type: 'export';
|
|
994
|
+
} | {
|
|
995
|
+
data: object;
|
|
996
|
+
type: 'metrics_request';
|
|
1066
997
|
};
|
|
1067
998
|
export interface Onboarding_type {
|
|
1068
999
|
first_call_from_their_machine_date: string;
|
|
@@ -1096,27 +1027,34 @@ export declare type OutputFormat_type = {
|
|
|
1096
1027
|
type: 'stl';
|
|
1097
1028
|
};
|
|
1098
1029
|
export declare type PathCommand_type = 'move_to' | 'line_to' | 'bez_curve_to' | 'nurbs_curve_to' | 'add_arc';
|
|
1030
|
+
export interface PathGetCurveUuidsForVertices_type {
|
|
1031
|
+
curve_ids: string[];
|
|
1032
|
+
}
|
|
1099
1033
|
export interface PathGetInfo_type {
|
|
1100
1034
|
segments: PathSegmentInfo_type[];
|
|
1101
1035
|
}
|
|
1102
1036
|
export declare type PathSegment_type = {
|
|
1103
1037
|
end: Point3d_type;
|
|
1038
|
+
relative: boolean;
|
|
1104
1039
|
type: 'line';
|
|
1105
1040
|
} | {
|
|
1106
1041
|
angle_end: number;
|
|
1107
1042
|
angle_start: number;
|
|
1108
1043
|
center: Point2d_type;
|
|
1109
1044
|
radius: number;
|
|
1045
|
+
relative: boolean;
|
|
1110
1046
|
type: 'arc';
|
|
1111
1047
|
} | {
|
|
1112
1048
|
control1: Point3d_type;
|
|
1113
1049
|
control2: Point3d_type;
|
|
1114
1050
|
end: Point3d_type;
|
|
1051
|
+
relative: boolean;
|
|
1115
1052
|
type: 'bezier';
|
|
1116
1053
|
};
|
|
1117
1054
|
export interface PathSegmentInfo_type {
|
|
1118
1055
|
command: PathCommand_type;
|
|
1119
1056
|
command_id: ModelingCmdId_type;
|
|
1057
|
+
relative: boolean;
|
|
1120
1058
|
}
|
|
1121
1059
|
export interface PaymentIntent_type {
|
|
1122
1060
|
client_secret: string;
|
|
@@ -1137,11 +1075,8 @@ export interface PaymentMethodCardChecks_type {
|
|
|
1137
1075
|
cvc_check: string;
|
|
1138
1076
|
}
|
|
1139
1077
|
export declare type PaymentMethodType_type = 'card';
|
|
1140
|
-
export interface
|
|
1141
|
-
|
|
1142
|
-
log: string[];
|
|
1143
|
-
network: string[];
|
|
1144
|
-
volume: string[];
|
|
1078
|
+
export interface PlaneIntersectAndProject_type {
|
|
1079
|
+
plane_coordinates: Point2d_type;
|
|
1145
1080
|
}
|
|
1146
1081
|
export declare type PlyStorage_type = 'ascii' | 'binary_little_endian' | 'binary_big_endian';
|
|
1147
1082
|
export interface Point2d_type {
|
|
@@ -1163,15 +1098,6 @@ export interface RawFile_type {
|
|
|
1163
1098
|
contents: number[];
|
|
1164
1099
|
name: string;
|
|
1165
1100
|
}
|
|
1166
|
-
export interface RegistryServiceConfig_type {
|
|
1167
|
-
allow_nondistributable_artifacts_cid_rs: string[];
|
|
1168
|
-
allow_nondistributable_artifacts_hostnames: string[];
|
|
1169
|
-
index_configs: {
|
|
1170
|
-
[key: string]: IndexInfo_type;
|
|
1171
|
-
};
|
|
1172
|
-
insecure_registry_cid_rs: string[];
|
|
1173
|
-
mirrors: string[];
|
|
1174
|
-
}
|
|
1175
1101
|
export interface RtcIceCandidateInit_type {
|
|
1176
1102
|
candidate: string;
|
|
1177
1103
|
sdpMLineIndex?: number;
|
|
@@ -1183,10 +1109,6 @@ export interface RtcSessionDescription_type {
|
|
|
1183
1109
|
sdp: string;
|
|
1184
1110
|
type: RtcSdpType_type;
|
|
1185
1111
|
}
|
|
1186
|
-
export interface Runtime_type {
|
|
1187
|
-
path?: string;
|
|
1188
|
-
runtime_args: string[];
|
|
1189
|
-
}
|
|
1190
1112
|
export declare type SceneSelectionType_type = 'replace' | 'add' | 'remove';
|
|
1191
1113
|
export declare type SceneToolType_type = 'camera_revolve' | 'select' | 'move' | 'sketch_line' | 'sketch_curve' | 'sketch_curve_mod';
|
|
1192
1114
|
export interface SelectGet_type {
|
|
@@ -1228,13 +1150,6 @@ export interface System_type {
|
|
|
1228
1150
|
forward: AxisDirectionPair_type;
|
|
1229
1151
|
up: AxisDirectionPair_type;
|
|
1230
1152
|
}
|
|
1231
|
-
export declare type SystemInfoCgroupDriverEnum_type = '' | 'cgroupfs' | 'systemd' | 'none';
|
|
1232
|
-
export declare type SystemInfoCgroupVersionEnum_type = '' | '1' | '2';
|
|
1233
|
-
export interface SystemInfoDefaultAddressPools_type {
|
|
1234
|
-
base?: string;
|
|
1235
|
-
size?: number;
|
|
1236
|
-
}
|
|
1237
|
-
export declare type SystemInfoIsolationEnum_type = '' | 'default' | 'hyperv' | 'process';
|
|
1238
1153
|
export interface TakeSnapshot_type {
|
|
1239
1154
|
contents: string;
|
|
1240
1155
|
}
|
|
@@ -1481,6 +1396,9 @@ export declare type WebSocketRequest_type = {
|
|
|
1481
1396
|
type: 'modeling_cmd_req';
|
|
1482
1397
|
} | {
|
|
1483
1398
|
type: 'ping';
|
|
1399
|
+
} | {
|
|
1400
|
+
metrics: ClientMetrics_type;
|
|
1401
|
+
type: 'metrics_response';
|
|
1484
1402
|
};
|
|
1485
1403
|
export declare type WebSocketResponse_type = {
|
|
1486
1404
|
request_id?: string;
|
|
@@ -1499,6 +1417,7 @@ export interface Models {
|
|
|
1499
1417
|
AiPluginAuthType_type: AiPluginAuthType_type;
|
|
1500
1418
|
AiPluginHttpAuthType_type: AiPluginHttpAuthType_type;
|
|
1501
1419
|
AiPluginManifest_type: AiPluginManifest_type;
|
|
1420
|
+
Angle_type: Angle_type;
|
|
1502
1421
|
AnnotationLineEnd_type: AnnotationLineEnd_type;
|
|
1503
1422
|
AnnotationLineEndOptions_type: AnnotationLineEndOptions_type;
|
|
1504
1423
|
AnnotationOptions_type: AnnotationOptions_type;
|
|
@@ -1525,17 +1444,18 @@ export interface Models {
|
|
|
1525
1444
|
CacheMetadata_type: CacheMetadata_type;
|
|
1526
1445
|
CameraDragInteractionType_type: CameraDragInteractionType_type;
|
|
1527
1446
|
CardDetails_type: CardDetails_type;
|
|
1447
|
+
ClientMetrics_type: ClientMetrics_type;
|
|
1528
1448
|
Cluster_type: Cluster_type;
|
|
1529
1449
|
CodeLanguage_type: CodeLanguage_type;
|
|
1530
1450
|
CodeOutput_type: CodeOutput_type;
|
|
1531
1451
|
Color_type: Color_type;
|
|
1532
|
-
Commit_type: Commit_type;
|
|
1533
1452
|
Connection_type: Connection_type;
|
|
1534
1453
|
CountryCode_type: CountryCode_type;
|
|
1535
1454
|
Coupon_type: Coupon_type;
|
|
1536
1455
|
CreatedAtSortMode_type: CreatedAtSortMode_type;
|
|
1537
1456
|
Currency_type: Currency_type;
|
|
1538
1457
|
CurveGetControlPoints_type: CurveGetControlPoints_type;
|
|
1458
|
+
CurveGetEndPoints_type: CurveGetEndPoints_type;
|
|
1539
1459
|
CurveGetType_type: CurveGetType_type;
|
|
1540
1460
|
CurveType_type: CurveType_type;
|
|
1541
1461
|
Customer_type: Customer_type;
|
|
@@ -1545,9 +1465,7 @@ export interface Models {
|
|
|
1545
1465
|
DeviceAuthVerifyParams_type: DeviceAuthVerifyParams_type;
|
|
1546
1466
|
Direction_type: Direction_type;
|
|
1547
1467
|
Discount_type: Discount_type;
|
|
1548
|
-
DockerSystemInfo_type: DockerSystemInfo_type;
|
|
1549
1468
|
EmailAuthenticationForm_type: EmailAuthenticationForm_type;
|
|
1550
|
-
EngineMetadata_type: EngineMetadata_type;
|
|
1551
1469
|
EntityGetAllChildUuids_type: EntityGetAllChildUuids_type;
|
|
1552
1470
|
EntityGetChildUuid_type: EntityGetChildUuid_type;
|
|
1553
1471
|
EntityGetNumChildren_type: EntityGetNumChildren_type;
|
|
@@ -1556,7 +1474,6 @@ export interface Models {
|
|
|
1556
1474
|
Environment_type: Environment_type;
|
|
1557
1475
|
Error_type: Error_type;
|
|
1558
1476
|
ErrorCode_type: ErrorCode_type;
|
|
1559
|
-
ExecutorMetadata_type: ExecutorMetadata_type;
|
|
1560
1477
|
Export_type: Export_type;
|
|
1561
1478
|
ExportFile_type: ExportFile_type;
|
|
1562
1479
|
ExtendedUser_type: ExtendedUser_type;
|
|
@@ -1580,7 +1497,6 @@ export interface Models {
|
|
|
1580
1497
|
IceServer_type: IceServer_type;
|
|
1581
1498
|
ImageFormat_type: ImageFormat_type;
|
|
1582
1499
|
ImageType_type: ImageType_type;
|
|
1583
|
-
IndexInfo_type: IndexInfo_type;
|
|
1584
1500
|
InputFormat_type: InputFormat_type;
|
|
1585
1501
|
Invoice_type: Invoice_type;
|
|
1586
1502
|
InvoiceLineItem_type: InvoiceLineItem_type;
|
|
@@ -1596,11 +1512,6 @@ export interface Models {
|
|
|
1596
1512
|
Method_type: Method_type;
|
|
1597
1513
|
ModelingCmd_type: ModelingCmd_type;
|
|
1598
1514
|
ModelingCmdId_type: ModelingCmdId_type;
|
|
1599
|
-
ModelingCmdReq_type: ModelingCmdReq_type;
|
|
1600
|
-
ModelingCmdReqBatch_type: ModelingCmdReqBatch_type;
|
|
1601
|
-
ModelingError_type: ModelingError_type;
|
|
1602
|
-
ModelingOutcome_type: ModelingOutcome_type;
|
|
1603
|
-
ModelingOutcomes_type: ModelingOutcomes_type;
|
|
1604
1515
|
MouseClick_type: MouseClick_type;
|
|
1605
1516
|
NewAddress_type: NewAddress_type;
|
|
1606
1517
|
OAuth2ClientInfo_type: OAuth2ClientInfo_type;
|
|
@@ -1611,6 +1522,7 @@ export interface Models {
|
|
|
1611
1522
|
OutputFile_type: OutputFile_type;
|
|
1612
1523
|
OutputFormat_type: OutputFormat_type;
|
|
1613
1524
|
PathCommand_type: PathCommand_type;
|
|
1525
|
+
PathGetCurveUuidsForVertices_type: PathGetCurveUuidsForVertices_type;
|
|
1614
1526
|
PathGetInfo_type: PathGetInfo_type;
|
|
1615
1527
|
PathSegment_type: PathSegment_type;
|
|
1616
1528
|
PathSegmentInfo_type: PathSegmentInfo_type;
|
|
@@ -1618,18 +1530,16 @@ export interface Models {
|
|
|
1618
1530
|
PaymentMethod_type: PaymentMethod_type;
|
|
1619
1531
|
PaymentMethodCardChecks_type: PaymentMethodCardChecks_type;
|
|
1620
1532
|
PaymentMethodType_type: PaymentMethodType_type;
|
|
1621
|
-
|
|
1533
|
+
PlaneIntersectAndProject_type: PlaneIntersectAndProject_type;
|
|
1622
1534
|
PlyStorage_type: PlyStorage_type;
|
|
1623
1535
|
Point2d_type: Point2d_type;
|
|
1624
1536
|
Point3d_type: Point3d_type;
|
|
1625
1537
|
PointEMetadata_type: PointEMetadata_type;
|
|
1626
1538
|
Pong_type: Pong_type;
|
|
1627
1539
|
RawFile_type: RawFile_type;
|
|
1628
|
-
RegistryServiceConfig_type: RegistryServiceConfig_type;
|
|
1629
1540
|
RtcIceCandidateInit_type: RtcIceCandidateInit_type;
|
|
1630
1541
|
RtcSdpType_type: RtcSdpType_type;
|
|
1631
1542
|
RtcSessionDescription_type: RtcSessionDescription_type;
|
|
1632
|
-
Runtime_type: Runtime_type;
|
|
1633
1543
|
SceneSelectionType_type: SceneSelectionType_type;
|
|
1634
1544
|
SceneToolType_type: SceneToolType_type;
|
|
1635
1545
|
SelectGet_type: SelectGet_type;
|
|
@@ -1643,10 +1553,6 @@ export interface Models {
|
|
|
1643
1553
|
StlStorage_type: StlStorage_type;
|
|
1644
1554
|
SuccessWebSocketResponse_type: SuccessWebSocketResponse_type;
|
|
1645
1555
|
System_type: System_type;
|
|
1646
|
-
SystemInfoCgroupDriverEnum_type: SystemInfoCgroupDriverEnum_type;
|
|
1647
|
-
SystemInfoCgroupVersionEnum_type: SystemInfoCgroupVersionEnum_type;
|
|
1648
|
-
SystemInfoDefaultAddressPools_type: SystemInfoDefaultAddressPools_type;
|
|
1649
|
-
SystemInfoIsolationEnum_type: SystemInfoIsolationEnum_type;
|
|
1650
1556
|
TakeSnapshot_type: TakeSnapshot_type;
|
|
1651
1557
|
UnitAngle_type: UnitAngle_type;
|
|
1652
1558
|
UnitAngleConversion_type: UnitAngleConversion_type;
|