Skip to content

Commit b37f9e3

Browse files
Update api spec (#341)
* YOYO NEW API SPEC! * Generated new lib * 2.0.43 --------- Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
1 parent f0f6aa9 commit b37f9e3

File tree

3 files changed

+20
-2
lines changed

3 files changed

+20
-2
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@kittycad/lib",
3-
"version": "2.0.42",
3+
"version": "2.0.43",
44
"description": "Javascript library for KittyCAD API",
55
"type": "module",
66
"keywords": [

spec.json

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24268,6 +24268,13 @@
2426824268
"free"
2426924269
]
2427024270
},
24271+
{
24272+
"description": "The plus tier.",
24273+
"type": "string",
24274+
"enum": [
24275+
"plus"
24276+
]
24277+
},
2427124278
{
2427224279
"description": "The pro tier.",
2427324280
"type": "string",
@@ -24447,6 +24454,13 @@
2444724454
"free"
2444824455
]
2444924456
},
24457+
{
24458+
"description": "The plus tier.",
24459+
"type": "string",
24460+
"enum": [
24461+
"plus"
24462+
]
24463+
},
2445024464
{
2445124465
"description": "The pro tier.",
2445224466
"type": "string",

src/models.ts

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2363,7 +2363,10 @@ export type MlPromptType_type =
23632363

23642364
export type ModelingAppEventType_type = 'successful_compile_before_close';
23652365

2366-
export type ModelingAppIndividualSubscriptionTier_type = 'free' | 'pro';
2366+
export type ModelingAppIndividualSubscriptionTier_type =
2367+
| 'free'
2368+
| 'plus'
2369+
| 'pro';
23672370

23682371
export type ModelingAppOrganizationSubscriptionTier_type =
23692372
| 'team'
@@ -2416,6 +2419,7 @@ export interface ModelingAppSubscriptionTier_type {
24162419

24172420
export type ModelingAppSubscriptionTierName_type =
24182421
| 'free'
2422+
| 'plus'
24192423
| 'pro'
24202424
| 'team'
24212425
| 'enterprise';

0 commit comments

Comments
 (0)