@kittycad/lib 3.2.27 → 3.2.28
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.cjs +1 -1
- package/dist/mjs/index.js +1 -1
- package/dist/types/__tests__/gen/projects-get_project_thumbnail.test.d.ts +2 -0
- package/dist/types/__tests__/gen/projects-get_project_thumbnail.test.d.ts.map +1 -0
- package/dist/types/src/api/projects/get_project_thumbnail.d.ts +20 -0
- package/dist/types/src/api/projects/get_project_thumbnail.d.ts.map +1 -0
- package/dist/types/src/index.d.ts +2 -0
- package/dist/types/src/index.d.ts.map +1 -1
- package/dist/types/src/models.d.ts +27 -4
- package/dist/types/src/models.d.ts.map +1 -1
- package/package.json +1 -1
|
@@ -4538,6 +4538,8 @@ export type ModelingCmd = {
|
|
|
4538
4538
|
/** The maximum acceptable surface gap computed between the filleted surfaces. Must be positive (i.e. greater than zero). */
|
|
4539
4539
|
tolerance: LengthUnit;
|
|
4540
4540
|
type: 'solid3d_fillet_edge';
|
|
4541
|
+
/** If true, use the legacy CSG algorithm. */
|
|
4542
|
+
use_legacy?: boolean;
|
|
4541
4543
|
} | {
|
|
4542
4544
|
/** The cut type and information required to perform the cut. */
|
|
4543
4545
|
cut_type: CutTypeV2;
|
|
@@ -4560,6 +4562,8 @@ export type ModelingCmd = {
|
|
|
4560
4562
|
/** The maximum acceptable surface gap computed between the cut surfaces. Must be positive (i.e. greater than zero). */
|
|
4561
4563
|
tolerance: LengthUnit;
|
|
4562
4564
|
type: 'solid3d_cut_edges';
|
|
4565
|
+
/** If true, use the legacy CSG algorithm. */
|
|
4566
|
+
use_legacy?: boolean;
|
|
4563
4567
|
} | {
|
|
4564
4568
|
/** format:uuid, description:Which face is being queried. */
|
|
4565
4569
|
object_id: string;
|
|
@@ -4697,6 +4701,10 @@ export type ModelingCmd = {
|
|
|
4697
4701
|
backface_color?: Color;
|
|
4698
4702
|
/** nullable:true, description:The default system color. */
|
|
4699
4703
|
color?: Color;
|
|
4704
|
+
/** nullable:true, description:The default color to use for highlight */
|
|
4705
|
+
highlight_color?: Color;
|
|
4706
|
+
/** nullable:true, description:The default color to use for selection */
|
|
4707
|
+
selection_color?: Color;
|
|
4700
4708
|
type: 'set_default_system_properties';
|
|
4701
4709
|
} | {
|
|
4702
4710
|
/** format:uuid, description:Which curve to query. */
|
|
@@ -5050,6 +5058,8 @@ export type ModelingCmd = {
|
|
|
5050
5058
|
/** The maximum acceptable surface gap computed between the joined solids. Must be positive (i.e. greater than zero). */
|
|
5051
5059
|
tolerance: LengthUnit;
|
|
5052
5060
|
type: 'boolean_union';
|
|
5061
|
+
/** If true, use the legacy CSG algorithm. */
|
|
5062
|
+
use_legacy?: boolean;
|
|
5053
5063
|
} | {
|
|
5054
5064
|
/**
|
|
5055
5065
|
* {
|
|
@@ -5067,6 +5077,8 @@ export type ModelingCmd = {
|
|
|
5067
5077
|
/** The maximum acceptable surface gap computed between the joined solids. Must be positive (i.e. greater than zero). */
|
|
5068
5078
|
tolerance: LengthUnit;
|
|
5069
5079
|
type: 'boolean_intersection';
|
|
5080
|
+
/** If true, use the legacy CSG algorithm. */
|
|
5081
|
+
use_legacy?: boolean;
|
|
5070
5082
|
} | {
|
|
5071
5083
|
/**
|
|
5072
5084
|
* {
|
|
@@ -5090,6 +5102,8 @@ export type ModelingCmd = {
|
|
|
5090
5102
|
*/
|
|
5091
5103
|
tool_ids: string[];
|
|
5092
5104
|
type: 'boolean_subtract';
|
|
5105
|
+
/** If true, use the legacy CSG algorithm. */
|
|
5106
|
+
use_legacy?: boolean;
|
|
5093
5107
|
} | {
|
|
5094
5108
|
/**
|
|
5095
5109
|
* {
|
|
@@ -5120,6 +5134,8 @@ export type ModelingCmd = {
|
|
|
5120
5134
|
*/
|
|
5121
5135
|
tool_ids?: string[];
|
|
5122
5136
|
type: 'boolean_imprint';
|
|
5137
|
+
/** If true, use the legacy CSG algorithm. */
|
|
5138
|
+
use_legacy?: boolean;
|
|
5123
5139
|
} | {
|
|
5124
5140
|
/**
|
|
5125
5141
|
* {
|
|
@@ -7689,10 +7705,10 @@ export interface ProjectResponse {
|
|
|
7689
7705
|
/**
|
|
7690
7706
|
* {
|
|
7691
7707
|
* "nullable": true,
|
|
7692
|
-
* "description": "
|
|
7708
|
+
* "description": "Stable authenticated thumbnail URL, when one exists."
|
|
7693
7709
|
* }
|
|
7694
7710
|
*/
|
|
7695
|
-
|
|
7711
|
+
preview_url?: string;
|
|
7696
7712
|
/** Relative path to the project's manifest file. */
|
|
7697
7713
|
project_toml_path: string;
|
|
7698
7714
|
/** Owner-facing publication metadata for the current and last live version. */
|
|
@@ -7732,10 +7748,10 @@ export interface ProjectSummaryResponse {
|
|
|
7732
7748
|
/**
|
|
7733
7749
|
* {
|
|
7734
7750
|
* "nullable": true,
|
|
7735
|
-
* "description": "
|
|
7751
|
+
* "description": "Stable authenticated thumbnail URL, when one exists."
|
|
7736
7752
|
* }
|
|
7737
7753
|
*/
|
|
7738
|
-
|
|
7754
|
+
preview_url?: string;
|
|
7739
7755
|
/** Relative path to the project's manifest file. */
|
|
7740
7756
|
project_toml_path: string;
|
|
7741
7757
|
/** Owner-facing publication metadata for the current and last live version. */
|
|
@@ -7768,6 +7784,13 @@ export interface PublicProjectResponse {
|
|
|
7768
7784
|
id: Uuid;
|
|
7769
7785
|
/** format:int64, description:Current total public like count for the project. */
|
|
7770
7786
|
like_count: number;
|
|
7787
|
+
/**
|
|
7788
|
+
* {
|
|
7789
|
+
* "nullable": true,
|
|
7790
|
+
* "description": "Whether the authenticated viewer currently likes the project."
|
|
7791
|
+
* }
|
|
7792
|
+
*/
|
|
7793
|
+
liked?: boolean;
|
|
7771
7794
|
/** Public creator metadata. */
|
|
7772
7795
|
owner: PublicProjectOwnerResponse;
|
|
7773
7796
|
/** nullable:true, description:Stable public thumbnail URL, when one exists. */
|