@kittycad/lib 0.0.20 → 0.0.21
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 -3
- package/dist/mjs/index.js +1 -3
- package/dist/types/src/api/file/create_file_center_of_mass.d.ts +3 -2
- package/dist/types/src/api/file/create_file_center_of_mass.d.ts.map +1 -1
- package/dist/types/src/api/file/create_file_density.d.ts +4 -2
- package/dist/types/src/api/file/create_file_density.d.ts.map +1 -1
- package/dist/types/src/api/file/create_file_mass.d.ts +4 -2
- package/dist/types/src/api/file/create_file_mass.d.ts.map +1 -1
- package/dist/types/src/api/file/create_file_surface_area.d.ts +3 -2
- package/dist/types/src/api/file/create_file_surface_area.d.ts.map +1 -1
- package/dist/types/src/api/file/create_file_volume.d.ts +3 -2
- package/dist/types/src/api/file/create_file_volume.d.ts.map +1 -1
- package/dist/types/src/apiGen.d.ts.map +1 -1
- package/dist/types/src/models.d.ts +198 -17
- package/dist/types/src/models.d.ts.map +1 -1
- package/dist/umd/index.js +1 -3
- package/package.json +13 -12
|
@@ -93,18 +93,27 @@ export declare type AsyncApiCallOutput_type = {
|
|
|
93
93
|
id: Uuid_type;
|
|
94
94
|
output?: string;
|
|
95
95
|
output_format: FileExportFormat_type;
|
|
96
|
+
output_format_options: OutputFormat_type;
|
|
97
|
+
outputs: {
|
|
98
|
+
[key: string]: string;
|
|
99
|
+
};
|
|
96
100
|
src_format: FileImportFormat_type;
|
|
101
|
+
src_format_options: InputFormat_type;
|
|
97
102
|
started_at?: string;
|
|
98
103
|
status: ApiCallStatus_type;
|
|
99
104
|
type: 'FileConversion';
|
|
100
105
|
updated_at: string;
|
|
101
106
|
user_id: string;
|
|
102
107
|
} | {
|
|
103
|
-
center_of_mass:
|
|
108
|
+
center_of_mass: Point3d_type;
|
|
109
|
+
centers_of_mass: {
|
|
110
|
+
[key: string]: Point3d_type;
|
|
111
|
+
};
|
|
104
112
|
completed_at?: string;
|
|
105
113
|
created_at: string;
|
|
106
114
|
error?: string;
|
|
107
115
|
id: Uuid_type;
|
|
116
|
+
output_unit: UnitLength_type;
|
|
108
117
|
src_format: FileImportFormat_type;
|
|
109
118
|
started_at?: string;
|
|
110
119
|
status: ApiCallStatus_type;
|
|
@@ -117,7 +126,12 @@ export declare type AsyncApiCallOutput_type = {
|
|
|
117
126
|
error?: string;
|
|
118
127
|
id: Uuid_type;
|
|
119
128
|
mass?: number;
|
|
129
|
+
masses: {
|
|
130
|
+
[key: string]: number;
|
|
131
|
+
};
|
|
120
132
|
material_density: number;
|
|
133
|
+
material_density_unit: UnitDensity_type;
|
|
134
|
+
output_unit: UnitMass_type;
|
|
121
135
|
src_format: FileImportFormat_type;
|
|
122
136
|
started_at?: string;
|
|
123
137
|
status: ApiCallStatus_type;
|
|
@@ -129,6 +143,7 @@ export declare type AsyncApiCallOutput_type = {
|
|
|
129
143
|
created_at: string;
|
|
130
144
|
error?: string;
|
|
131
145
|
id: Uuid_type;
|
|
146
|
+
output_unit: UnitVolume_type;
|
|
132
147
|
src_format: FileImportFormat_type;
|
|
133
148
|
started_at?: string;
|
|
134
149
|
status: ApiCallStatus_type;
|
|
@@ -136,13 +151,21 @@ export declare type AsyncApiCallOutput_type = {
|
|
|
136
151
|
updated_at: string;
|
|
137
152
|
user_id: string;
|
|
138
153
|
volume?: number;
|
|
154
|
+
volumes: {
|
|
155
|
+
[key: string]: number;
|
|
156
|
+
};
|
|
139
157
|
} | {
|
|
140
158
|
completed_at?: string;
|
|
141
159
|
created_at: string;
|
|
160
|
+
densities: {
|
|
161
|
+
[key: string]: number;
|
|
162
|
+
};
|
|
142
163
|
density?: number;
|
|
143
164
|
error?: string;
|
|
144
165
|
id: Uuid_type;
|
|
145
166
|
material_mass: number;
|
|
167
|
+
material_mass_unit: UnitMass_type;
|
|
168
|
+
output_unit: UnitDensity_type;
|
|
146
169
|
src_format: FileImportFormat_type;
|
|
147
170
|
started_at?: string;
|
|
148
171
|
status: ApiCallStatus_type;
|
|
@@ -154,10 +177,14 @@ export declare type AsyncApiCallOutput_type = {
|
|
|
154
177
|
created_at: string;
|
|
155
178
|
error?: string;
|
|
156
179
|
id: Uuid_type;
|
|
180
|
+
output_unit: UnitArea_type;
|
|
157
181
|
src_format: FileImportFormat_type;
|
|
158
182
|
started_at?: string;
|
|
159
183
|
status: ApiCallStatus_type;
|
|
160
184
|
surface_area?: number;
|
|
185
|
+
surface_areas: {
|
|
186
|
+
[key: string]: number;
|
|
187
|
+
};
|
|
161
188
|
type: 'FileSurfaceArea';
|
|
162
189
|
updated_at: string;
|
|
163
190
|
user_id: string;
|
|
@@ -167,6 +194,11 @@ export interface AsyncApiCallResultsPage_type {
|
|
|
167
194
|
next_page?: string;
|
|
168
195
|
}
|
|
169
196
|
export declare type AsyncApiCallType_type = 'FileConversion' | 'FileVolume' | 'FileCenterOfMass' | 'FileMass' | 'FileDensity' | 'FileSurfaceArea';
|
|
197
|
+
export declare type Axis_type = 'y' | 'z';
|
|
198
|
+
export interface AxisDirectionPair_type {
|
|
199
|
+
axis: Axis_type;
|
|
200
|
+
direction: Direction_type;
|
|
201
|
+
}
|
|
170
202
|
export interface BillingInfo_type {
|
|
171
203
|
address: NewAddress_type;
|
|
172
204
|
name: string;
|
|
@@ -175,6 +207,7 @@ export interface BillingInfo_type {
|
|
|
175
207
|
export interface CacheMetadata_type {
|
|
176
208
|
ok: boolean;
|
|
177
209
|
}
|
|
210
|
+
export declare type CameraDragInteractionType_type = 'pan' | 'rotate' | 'zoom';
|
|
178
211
|
export interface CardDetails_type {
|
|
179
212
|
brand: string;
|
|
180
213
|
checks: PaymentMethodCardChecks_type;
|
|
@@ -254,6 +287,12 @@ export interface Connection_type {
|
|
|
254
287
|
write_deadline: number;
|
|
255
288
|
}
|
|
256
289
|
export declare type CountryCode_type = 'AF' | 'AX' | 'AL' | 'DZ' | 'AS' | 'AD' | 'AO' | 'AI' | 'AQ' | 'AG' | 'AR' | 'AM' | 'AW' | 'AU' | 'AT' | 'AZ' | 'BS' | 'BH' | 'BD' | 'BB' | 'BY' | 'BE' | 'BZ' | 'BJ' | 'BM' | 'BT' | 'BO' | 'BQ' | 'BA' | 'BW' | 'BV' | 'BR' | 'IO' | 'BN' | 'BG' | 'BF' | 'BI' | 'CV' | 'KH' | 'CM' | 'CA' | 'KY' | 'CF' | 'TD' | 'CL' | 'CN' | 'CX' | 'CC' | 'CO' | 'KM' | 'CG' | 'CD' | 'CK' | 'CR' | 'CI' | 'HR' | 'CU' | 'CW' | 'CY' | 'CZ' | 'DK' | 'DJ' | 'DM' | 'DO' | 'EC' | 'EG' | 'SV' | 'GQ' | 'ER' | 'EE' | 'ET' | 'FK' | 'FO' | 'FJ' | 'FI' | 'FR' | 'GF' | 'PF' | 'TF' | 'GA' | 'GM' | 'GE' | 'DE' | 'GH' | 'GI' | 'GR' | 'GL' | 'GD' | 'GP' | 'GU' | 'GT' | 'GG' | 'GN' | 'GW' | 'GY' | 'HT' | 'HM' | 'VA' | 'HN' | 'HK' | 'HU' | 'IS' | 'IN' | 'ID' | 'IR' | 'IQ' | 'IE' | 'IM' | 'IL' | 'IT' | 'JM' | 'JP' | 'JE' | 'JO' | 'KZ' | 'KE' | 'KI' | 'KP' | 'KR' | 'KW' | 'KG' | 'LA' | 'LV' | 'LB' | 'LS' | 'LR' | 'LY' | 'LI' | 'LT' | 'LU' | 'MO' | 'MK' | 'MG' | 'MW' | 'MY' | 'MV' | 'ML' | 'MT' | 'MH' | 'MQ' | 'MR' | 'MU' | 'YT' | 'MX' | 'FM' | 'MD' | 'MC' | 'MN' | 'ME' | 'MS' | 'MA' | 'MZ' | 'MM' | 'NA' | 'NR' | 'NP' | 'NL' | 'NC' | 'NZ' | 'NI' | 'NE' | 'NG' | 'NU' | 'NF' | 'MP' | 'NO' | 'OM' | 'PK' | 'PW' | 'PS' | 'PA' | 'PG' | 'PY' | 'PE' | 'PH' | 'PN' | 'PL' | 'PT' | 'PR' | 'QA' | 'RE' | 'RO' | 'RU' | 'RW' | 'BL' | 'SH' | 'KN' | 'LC' | 'MF' | 'PM' | 'VC' | 'WS' | 'SM' | 'ST' | 'SA' | 'SN' | 'RS' | 'SC' | 'SL' | 'SG' | 'SX' | 'SK' | 'SI' | 'SB' | 'SO' | 'ZA' | 'GS' | 'SS' | 'ES' | 'LK' | 'SD' | 'SR' | 'SJ' | 'SZ' | 'SE' | 'CH' | 'SY' | 'TW' | 'TJ' | 'TZ' | 'TH' | 'TL' | 'TG' | 'TK' | 'TO' | 'TT' | 'TN' | 'TR' | 'TM' | 'TC' | 'TV' | 'UG' | 'UA' | 'AE' | 'GB' | 'US' | 'UM' | 'UY' | 'UZ' | 'VU' | 'VE' | 'VN' | 'VG' | 'VI' | 'WF' | 'EH' | 'YE' | 'ZM' | 'ZW';
|
|
290
|
+
export interface Coupon_type {
|
|
291
|
+
amount_off?: number;
|
|
292
|
+
deleted: boolean;
|
|
293
|
+
id: string;
|
|
294
|
+
percent_off?: number;
|
|
295
|
+
}
|
|
257
296
|
export declare type CreatedAtSortMode_type = 'created-at-ascending' | 'created-at-descending';
|
|
258
297
|
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';
|
|
259
298
|
export interface Customer_type {
|
|
@@ -291,6 +330,10 @@ export interface DeviceAuthRequestForm_type {
|
|
|
291
330
|
export interface DeviceAuthVerifyParams_type {
|
|
292
331
|
user_code: string;
|
|
293
332
|
}
|
|
333
|
+
export declare type Direction_type = 'positive' | 'negative';
|
|
334
|
+
export interface Discount_type {
|
|
335
|
+
coupon: Coupon_type;
|
|
336
|
+
}
|
|
294
337
|
export interface DockerSystemInfo_type {
|
|
295
338
|
architecture?: string;
|
|
296
339
|
bridge_nf_ip6tables?: boolean;
|
|
@@ -401,15 +444,20 @@ export interface ExtendedUserResultsPage_type {
|
|
|
401
444
|
next_page?: string;
|
|
402
445
|
}
|
|
403
446
|
export interface Extrude_type {
|
|
447
|
+
cap: boolean;
|
|
404
448
|
distance: number;
|
|
405
449
|
target: ModelingCmdId_type;
|
|
406
450
|
}
|
|
407
451
|
export interface FileCenterOfMass_type {
|
|
408
|
-
center_of_mass:
|
|
452
|
+
center_of_mass: Point3d_type;
|
|
453
|
+
centers_of_mass: {
|
|
454
|
+
[key: string]: Point3d_type;
|
|
455
|
+
};
|
|
409
456
|
completed_at?: string;
|
|
410
457
|
created_at: string;
|
|
411
458
|
error?: string;
|
|
412
459
|
id: Uuid_type;
|
|
460
|
+
output_unit: UnitLength_type;
|
|
413
461
|
src_format: FileImportFormat_type;
|
|
414
462
|
started_at?: string;
|
|
415
463
|
status: ApiCallStatus_type;
|
|
@@ -423,7 +471,12 @@ export interface FileConversion_type {
|
|
|
423
471
|
id: Uuid_type;
|
|
424
472
|
output?: string;
|
|
425
473
|
output_format: FileExportFormat_type;
|
|
474
|
+
output_format_options: OutputFormat_type;
|
|
475
|
+
outputs: {
|
|
476
|
+
[key: string]: string;
|
|
477
|
+
};
|
|
426
478
|
src_format: FileImportFormat_type;
|
|
479
|
+
src_format_options: InputFormat_type;
|
|
427
480
|
started_at?: string;
|
|
428
481
|
status: ApiCallStatus_type;
|
|
429
482
|
updated_at: string;
|
|
@@ -432,25 +485,35 @@ export interface FileConversion_type {
|
|
|
432
485
|
export interface FileDensity_type {
|
|
433
486
|
completed_at?: string;
|
|
434
487
|
created_at: string;
|
|
488
|
+
densities: {
|
|
489
|
+
[key: string]: number;
|
|
490
|
+
};
|
|
435
491
|
density?: number;
|
|
436
492
|
error?: string;
|
|
437
493
|
id: Uuid_type;
|
|
438
494
|
material_mass: number;
|
|
495
|
+
material_mass_unit: UnitMass_type;
|
|
496
|
+
output_unit: UnitDensity_type;
|
|
439
497
|
src_format: FileImportFormat_type;
|
|
440
498
|
started_at?: string;
|
|
441
499
|
status: ApiCallStatus_type;
|
|
442
500
|
updated_at: string;
|
|
443
501
|
user_id: string;
|
|
444
502
|
}
|
|
445
|
-
export declare type FileExportFormat_type = 'dae' | '
|
|
446
|
-
export declare type FileImportFormat_type = 'dae' | '
|
|
503
|
+
export declare type FileExportFormat_type = 'dae' | 'fbx' | 'fbxb' | 'gltf' | 'obj' | 'ply' | 'step' | 'stl';
|
|
504
|
+
export declare type FileImportFormat_type = 'dae' | 'fbx' | 'gltf' | 'obj' | 'ply' | 'step' | 'stl';
|
|
447
505
|
export interface FileMass_type {
|
|
448
506
|
completed_at?: string;
|
|
449
507
|
created_at: string;
|
|
450
508
|
error?: string;
|
|
451
509
|
id: Uuid_type;
|
|
452
510
|
mass?: number;
|
|
511
|
+
masses: {
|
|
512
|
+
[key: string]: number;
|
|
513
|
+
};
|
|
453
514
|
material_density: number;
|
|
515
|
+
material_density_unit: UnitDensity_type;
|
|
516
|
+
output_unit: UnitMass_type;
|
|
454
517
|
src_format: FileImportFormat_type;
|
|
455
518
|
started_at?: string;
|
|
456
519
|
status: ApiCallStatus_type;
|
|
@@ -462,10 +525,14 @@ export interface FileSurfaceArea_type {
|
|
|
462
525
|
created_at: string;
|
|
463
526
|
error?: string;
|
|
464
527
|
id: Uuid_type;
|
|
528
|
+
output_unit: UnitArea_type;
|
|
465
529
|
src_format: FileImportFormat_type;
|
|
466
530
|
started_at?: string;
|
|
467
531
|
status: ApiCallStatus_type;
|
|
468
532
|
surface_area?: number;
|
|
533
|
+
surface_areas: {
|
|
534
|
+
[key: string]: number;
|
|
535
|
+
};
|
|
469
536
|
updated_at: string;
|
|
470
537
|
user_id: string;
|
|
471
538
|
}
|
|
@@ -477,12 +544,16 @@ export interface FileVolume_type {
|
|
|
477
544
|
created_at: string;
|
|
478
545
|
error?: string;
|
|
479
546
|
id: Uuid_type;
|
|
547
|
+
output_unit: UnitVolume_type;
|
|
480
548
|
src_format: FileImportFormat_type;
|
|
481
549
|
started_at?: string;
|
|
482
550
|
status: ApiCallStatus_type;
|
|
483
551
|
updated_at: string;
|
|
484
552
|
user_id: string;
|
|
485
553
|
volume?: number;
|
|
554
|
+
volumes: {
|
|
555
|
+
[key: string]: number;
|
|
556
|
+
};
|
|
486
557
|
}
|
|
487
558
|
export interface Gateway_type {
|
|
488
559
|
auth_timeout: number;
|
|
@@ -498,6 +569,24 @@ export interface IndexInfo_type {
|
|
|
498
569
|
official?: boolean;
|
|
499
570
|
secure?: boolean;
|
|
500
571
|
}
|
|
572
|
+
export declare type InputFormat_type = {
|
|
573
|
+
type: 'Gltf';
|
|
574
|
+
} | {
|
|
575
|
+
coords: System_type;
|
|
576
|
+
type: 'Step';
|
|
577
|
+
} | {
|
|
578
|
+
coords: System_type;
|
|
579
|
+
type: 'Obj';
|
|
580
|
+
units: UnitLength_type;
|
|
581
|
+
} | {
|
|
582
|
+
coords: System_type;
|
|
583
|
+
type: 'Ply';
|
|
584
|
+
units: UnitLength_type;
|
|
585
|
+
} | {
|
|
586
|
+
coords: System_type;
|
|
587
|
+
type: 'Stl';
|
|
588
|
+
units: UnitLength_type;
|
|
589
|
+
};
|
|
501
590
|
export interface Invoice_type {
|
|
502
591
|
amount_due: number;
|
|
503
592
|
amount_paid: number;
|
|
@@ -510,6 +599,7 @@ export interface Invoice_type {
|
|
|
510
599
|
customer_id: string;
|
|
511
600
|
default_payment_method: string;
|
|
512
601
|
description: string;
|
|
602
|
+
discounts: Discount_type[];
|
|
513
603
|
id: string;
|
|
514
604
|
lines: InvoiceLineItem_type[];
|
|
515
605
|
metadata: {
|
|
@@ -568,10 +658,6 @@ export interface LeafNode_type {
|
|
|
568
658
|
port: number;
|
|
569
659
|
tls_timeout: number;
|
|
570
660
|
}
|
|
571
|
-
export interface Line3d_type {
|
|
572
|
-
from: Point3d_type;
|
|
573
|
-
to: Point3d_type;
|
|
574
|
-
}
|
|
575
661
|
export interface Mesh_type {
|
|
576
662
|
mesh: string;
|
|
577
663
|
}
|
|
@@ -591,13 +677,55 @@ export interface Metadata_type {
|
|
|
591
677
|
pubsub: Connection_type;
|
|
592
678
|
}
|
|
593
679
|
export declare type Method_type = 'OPTIONS' | 'GET' | 'POST' | 'PUT' | 'DELETE' | 'HEAD' | 'TRACE' | 'CONNECT' | 'PATCH' | 'EXTENSION';
|
|
594
|
-
export declare type ModelingCmd_type = {
|
|
595
|
-
|
|
680
|
+
export declare type ModelingCmd_type = 'StartPath' | {
|
|
681
|
+
MovePathPen: {
|
|
682
|
+
path: ModelingCmdId_type;
|
|
683
|
+
to: Point3d_type;
|
|
684
|
+
};
|
|
685
|
+
} | {
|
|
686
|
+
ExtendPath: {
|
|
687
|
+
path: ModelingCmdId_type;
|
|
688
|
+
segment: PathSegment_type;
|
|
689
|
+
};
|
|
596
690
|
} | {
|
|
597
691
|
Extrude: any;
|
|
598
692
|
} | {
|
|
599
|
-
|
|
600
|
-
|
|
693
|
+
ClosePath: {
|
|
694
|
+
path_id: string;
|
|
695
|
+
};
|
|
696
|
+
} | {
|
|
697
|
+
CameraDragStart: {
|
|
698
|
+
interaction: CameraDragInteractionType_type;
|
|
699
|
+
window: Point2d_type;
|
|
700
|
+
};
|
|
701
|
+
} | {
|
|
702
|
+
CameraDragMove: {
|
|
703
|
+
interaction: CameraDragInteractionType_type;
|
|
704
|
+
sequence?: number;
|
|
705
|
+
window: Point2d_type;
|
|
706
|
+
};
|
|
707
|
+
} | {
|
|
708
|
+
CameraDragEnd: {
|
|
709
|
+
interaction: CameraDragInteractionType_type;
|
|
710
|
+
window: Point2d_type;
|
|
711
|
+
};
|
|
712
|
+
} | {
|
|
713
|
+
DefaultCameraLookAt: {
|
|
714
|
+
center: Point3d_type;
|
|
715
|
+
up: Point3d_type;
|
|
716
|
+
vantage: Point3d_type;
|
|
717
|
+
};
|
|
718
|
+
} | {
|
|
719
|
+
DefaultCameraEnableSketchMode: {
|
|
720
|
+
distance_to_plane: number;
|
|
721
|
+
origin: Point3d_type;
|
|
722
|
+
ortho: boolean;
|
|
723
|
+
x_axis: Point3d_type;
|
|
724
|
+
y_axis: Point3d_type;
|
|
725
|
+
};
|
|
726
|
+
} | 'DefaultCameraDisableSketchMode' | {
|
|
727
|
+
Export: {
|
|
728
|
+
format: OutputFormat_type;
|
|
601
729
|
};
|
|
602
730
|
};
|
|
603
731
|
export declare type ModelingCmdId_type = string;
|
|
@@ -656,6 +784,42 @@ export interface OutputFile_type {
|
|
|
656
784
|
contents?: string;
|
|
657
785
|
name: string;
|
|
658
786
|
}
|
|
787
|
+
export declare type OutputFormat_type = {
|
|
788
|
+
storage: Storage_type;
|
|
789
|
+
type: 'Gltf';
|
|
790
|
+
} | {
|
|
791
|
+
coords: System_type;
|
|
792
|
+
type: 'Obj';
|
|
793
|
+
} | {
|
|
794
|
+
coords: System_type;
|
|
795
|
+
storage: Storage_type;
|
|
796
|
+
type: 'Ply';
|
|
797
|
+
} | {
|
|
798
|
+
coords: System_type;
|
|
799
|
+
type: 'Step';
|
|
800
|
+
} | {
|
|
801
|
+
coords: System_type;
|
|
802
|
+
storage: Storage_type;
|
|
803
|
+
type: 'Stl';
|
|
804
|
+
};
|
|
805
|
+
export declare type PathSegment_type = {
|
|
806
|
+
Line: {
|
|
807
|
+
end: Point3d_type;
|
|
808
|
+
};
|
|
809
|
+
} | {
|
|
810
|
+
Arc: {
|
|
811
|
+
angle_end: number;
|
|
812
|
+
angle_start: number;
|
|
813
|
+
center: Point2d_type;
|
|
814
|
+
radius: number;
|
|
815
|
+
};
|
|
816
|
+
} | {
|
|
817
|
+
Bezier: {
|
|
818
|
+
control1: Point3d_type;
|
|
819
|
+
control2: Point3d_type;
|
|
820
|
+
end: Point3d_type;
|
|
821
|
+
};
|
|
822
|
+
};
|
|
659
823
|
export interface PaymentIntent_type {
|
|
660
824
|
client_secret: string;
|
|
661
825
|
}
|
|
@@ -730,6 +894,11 @@ export interface Session_type {
|
|
|
730
894
|
updated_at: string;
|
|
731
895
|
user_id: string;
|
|
732
896
|
}
|
|
897
|
+
export declare type Storage_type = 'binary' | 'standard' | 'embedded';
|
|
898
|
+
export interface System_type {
|
|
899
|
+
forward: AxisDirectionPair_type;
|
|
900
|
+
up: AxisDirectionPair_type;
|
|
901
|
+
}
|
|
733
902
|
export declare type SystemInfoCgroupDriverEnum_type = '' | 'cgroupfs' | 'systemd' | 'none';
|
|
734
903
|
export declare type SystemInfoCgroupVersionEnum_type = '' | '1' | '2';
|
|
735
904
|
export interface SystemInfoDefaultAddressPools_type {
|
|
@@ -752,7 +921,7 @@ export interface UnitAngleConversion_type {
|
|
|
752
921
|
updated_at: string;
|
|
753
922
|
user_id: string;
|
|
754
923
|
}
|
|
755
|
-
export declare type UnitArea_type = '
|
|
924
|
+
export declare type UnitArea_type = 'cm2' | 'dm2' | 'ft2' | 'in2' | 'km2' | 'm2' | 'mm2' | 'yd2';
|
|
756
925
|
export interface UnitAreaConversion_type {
|
|
757
926
|
completed_at?: string;
|
|
758
927
|
created_at: string;
|
|
@@ -782,6 +951,7 @@ export interface UnitCurrentConversion_type {
|
|
|
782
951
|
updated_at: string;
|
|
783
952
|
user_id: string;
|
|
784
953
|
}
|
|
954
|
+
export declare type UnitDensity_type = 'lb:ft3' | 'kg:m3';
|
|
785
955
|
export declare type UnitEnergy_type = 'btu' | 'electronvolts' | 'joules' | 'kilocalories' | 'kilowatt_hours' | 'watt_hours';
|
|
786
956
|
export interface UnitEnergyConversion_type {
|
|
787
957
|
completed_at?: string;
|
|
@@ -827,7 +997,7 @@ export interface UnitFrequencyConversion_type {
|
|
|
827
997
|
updated_at: string;
|
|
828
998
|
user_id: string;
|
|
829
999
|
}
|
|
830
|
-
export declare type UnitLength_type = '
|
|
1000
|
+
export declare type UnitLength_type = 'cm' | 'ft' | 'in' | 'm' | 'mm' | 'yd';
|
|
831
1001
|
export interface UnitLengthConversion_type {
|
|
832
1002
|
completed_at?: string;
|
|
833
1003
|
created_at: string;
|
|
@@ -842,7 +1012,7 @@ export interface UnitLengthConversion_type {
|
|
|
842
1012
|
updated_at: string;
|
|
843
1013
|
user_id: string;
|
|
844
1014
|
}
|
|
845
|
-
export declare type UnitMass_type = '
|
|
1015
|
+
export declare type UnitMass_type = 'g' | 'kg' | 'lb';
|
|
846
1016
|
export interface UnitMassConversion_type {
|
|
847
1017
|
completed_at?: string;
|
|
848
1018
|
created_at: string;
|
|
@@ -917,7 +1087,7 @@ export interface UnitTorqueConversion_type {
|
|
|
917
1087
|
updated_at: string;
|
|
918
1088
|
user_id: string;
|
|
919
1089
|
}
|
|
920
|
-
export declare type UnitVolume_type = '
|
|
1090
|
+
export declare type UnitVolume_type = 'cm3' | 'ft3' | 'in3' | 'm3' | 'yd3' | 'usfloz' | 'usgal' | 'l' | 'ml';
|
|
921
1091
|
export interface UnitVolumeConversion_type {
|
|
922
1092
|
completed_at?: string;
|
|
923
1093
|
created_at: string;
|
|
@@ -987,8 +1157,11 @@ export interface Models {
|
|
|
987
1157
|
AsyncApiCallOutput_type: AsyncApiCallOutput_type;
|
|
988
1158
|
AsyncApiCallResultsPage_type: AsyncApiCallResultsPage_type;
|
|
989
1159
|
AsyncApiCallType_type: AsyncApiCallType_type;
|
|
1160
|
+
Axis_type: Axis_type;
|
|
1161
|
+
AxisDirectionPair_type: AxisDirectionPair_type;
|
|
990
1162
|
BillingInfo_type: BillingInfo_type;
|
|
991
1163
|
CacheMetadata_type: CacheMetadata_type;
|
|
1164
|
+
CameraDragInteractionType_type: CameraDragInteractionType_type;
|
|
992
1165
|
CardDetails_type: CardDetails_type;
|
|
993
1166
|
Cluster_type: Cluster_type;
|
|
994
1167
|
CodeLanguage_type: CodeLanguage_type;
|
|
@@ -996,6 +1169,7 @@ export interface Models {
|
|
|
996
1169
|
Commit_type: Commit_type;
|
|
997
1170
|
Connection_type: Connection_type;
|
|
998
1171
|
CountryCode_type: CountryCode_type;
|
|
1172
|
+
Coupon_type: Coupon_type;
|
|
999
1173
|
CreatedAtSortMode_type: CreatedAtSortMode_type;
|
|
1000
1174
|
Currency_type: Currency_type;
|
|
1001
1175
|
Customer_type: Customer_type;
|
|
@@ -1003,6 +1177,8 @@ export interface Models {
|
|
|
1003
1177
|
DeviceAccessTokenRequestForm_type: DeviceAccessTokenRequestForm_type;
|
|
1004
1178
|
DeviceAuthRequestForm_type: DeviceAuthRequestForm_type;
|
|
1005
1179
|
DeviceAuthVerifyParams_type: DeviceAuthVerifyParams_type;
|
|
1180
|
+
Direction_type: Direction_type;
|
|
1181
|
+
Discount_type: Discount_type;
|
|
1006
1182
|
DockerSystemInfo_type: DockerSystemInfo_type;
|
|
1007
1183
|
EmailAuthenticationForm_type: EmailAuthenticationForm_type;
|
|
1008
1184
|
EngineMetadata_type: EngineMetadata_type;
|
|
@@ -1024,6 +1200,7 @@ export interface Models {
|
|
|
1024
1200
|
Gateway_type: Gateway_type;
|
|
1025
1201
|
ImageType_type: ImageType_type;
|
|
1026
1202
|
IndexInfo_type: IndexInfo_type;
|
|
1203
|
+
InputFormat_type: InputFormat_type;
|
|
1027
1204
|
Invoice_type: Invoice_type;
|
|
1028
1205
|
InvoiceLineItem_type: InvoiceLineItem_type;
|
|
1029
1206
|
InvoiceStatus_type: InvoiceStatus_type;
|
|
@@ -1032,7 +1209,6 @@ export interface Models {
|
|
|
1032
1209
|
JetstreamConfig_type: JetstreamConfig_type;
|
|
1033
1210
|
JetstreamStats_type: JetstreamStats_type;
|
|
1034
1211
|
LeafNode_type: LeafNode_type;
|
|
1035
|
-
Line3d_type: Line3d_type;
|
|
1036
1212
|
Mesh_type: Mesh_type;
|
|
1037
1213
|
MetaClusterInfo_type: MetaClusterInfo_type;
|
|
1038
1214
|
Metadata_type: Metadata_type;
|
|
@@ -1049,6 +1225,8 @@ export interface Models {
|
|
|
1049
1225
|
OAuth2GrantType_type: OAuth2GrantType_type;
|
|
1050
1226
|
Onboarding_type: Onboarding_type;
|
|
1051
1227
|
OutputFile_type: OutputFile_type;
|
|
1228
|
+
OutputFormat_type: OutputFormat_type;
|
|
1229
|
+
PathSegment_type: PathSegment_type;
|
|
1052
1230
|
PaymentIntent_type: PaymentIntent_type;
|
|
1053
1231
|
PaymentMethod_type: PaymentMethod_type;
|
|
1054
1232
|
PaymentMethodCardChecks_type: PaymentMethodCardChecks_type;
|
|
@@ -1063,6 +1241,8 @@ export interface Models {
|
|
|
1063
1241
|
RegistryServiceConfig_type: RegistryServiceConfig_type;
|
|
1064
1242
|
Runtime_type: Runtime_type;
|
|
1065
1243
|
Session_type: Session_type;
|
|
1244
|
+
Storage_type: Storage_type;
|
|
1245
|
+
System_type: System_type;
|
|
1066
1246
|
SystemInfoCgroupDriverEnum_type: SystemInfoCgroupDriverEnum_type;
|
|
1067
1247
|
SystemInfoCgroupVersionEnum_type: SystemInfoCgroupVersionEnum_type;
|
|
1068
1248
|
SystemInfoDefaultAddressPools_type: SystemInfoDefaultAddressPools_type;
|
|
@@ -1073,6 +1253,7 @@ export interface Models {
|
|
|
1073
1253
|
UnitAreaConversion_type: UnitAreaConversion_type;
|
|
1074
1254
|
UnitCurrent_type: UnitCurrent_type;
|
|
1075
1255
|
UnitCurrentConversion_type: UnitCurrentConversion_type;
|
|
1256
|
+
UnitDensity_type: UnitDensity_type;
|
|
1076
1257
|
UnitEnergy_type: UnitEnergy_type;
|
|
1077
1258
|
UnitEnergyConversion_type: UnitEnergyConversion_type;
|
|
1078
1259
|
UnitForce_type: UnitForce_type;
|