@supernova-studio/model 1.37.8 → 1.38.0
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/index.d.mts +50 -50
- package/dist/index.d.ts +50 -50
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -1406,9 +1406,9 @@ declare const PriceSchema: z.ZodObject<{
|
|
|
1406
1406
|
type BillingInterval = z.infer<typeof BillingIntervalSchema>;
|
|
1407
1407
|
type Price = z.infer<typeof PriceSchema>;
|
|
1408
1408
|
|
|
1409
|
-
declare const ProductCodeSchema: z.ZodEnum<["free", "team", "company", "enterprise"]>;
|
|
1409
|
+
declare const ProductCodeSchema: z.ZodEnum<["free", "team", "company", "enterprise", "pro"]>;
|
|
1410
1410
|
type ProductCode = z.infer<typeof ProductCodeSchema>;
|
|
1411
|
-
declare const ProductCode: z.Values<["free", "team", "company", "enterprise"]>;
|
|
1411
|
+
declare const ProductCode: z.Values<["free", "team", "company", "enterprise", "pro"]>;
|
|
1412
1412
|
|
|
1413
1413
|
declare const StripeSubscriptionStatusSchema: z.ZodEnum<["trialing", "active", "past_due", "canceled", "unpaid", "incomplete_expired", "incomplete", "unknown"]>;
|
|
1414
1414
|
declare const InternalStatusSchema: z.ZodEnum<["active", "suspended", "gracePeriod", "cancelled", "downgraded_to_free"]>;
|
|
@@ -1462,7 +1462,7 @@ declare const Subscription: z.ZodObject<{
|
|
|
1462
1462
|
internalStatus: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<"active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free", z.ZodTypeDef, "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free">>>, NonNullable<"active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free"> | undefined, "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | null | undefined>;
|
|
1463
1463
|
stripeSubscriptionId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
1464
1464
|
stripeCustomerId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
1465
|
-
product: z.ZodEnum<["free", "team", "company", "enterprise"]>;
|
|
1465
|
+
product: z.ZodEnum<["free", "team", "company", "enterprise", "pro"]>;
|
|
1466
1466
|
planPriceId: z.ZodString;
|
|
1467
1467
|
planInterval: z.ZodEnum<["daily", "monthly", "weekly", "yearly"]>;
|
|
1468
1468
|
currentPeriodStart: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
@@ -1470,7 +1470,7 @@ declare const Subscription: z.ZodObject<{
|
|
|
1470
1470
|
cancelAt: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
1471
1471
|
subscriptionStatusUpdatedAt: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
1472
1472
|
}, "strip", z.ZodTypeAny, {
|
|
1473
|
-
product: "company" | "enterprise" | "free" | "team";
|
|
1473
|
+
product: "company" | "enterprise" | "free" | "team" | "pro";
|
|
1474
1474
|
seats: number;
|
|
1475
1475
|
seatLimit: number;
|
|
1476
1476
|
planPriceId: string;
|
|
@@ -1499,7 +1499,7 @@ declare const Subscription: z.ZodObject<{
|
|
|
1499
1499
|
cancelAt?: string | undefined;
|
|
1500
1500
|
subscriptionStatusUpdatedAt?: string | undefined;
|
|
1501
1501
|
}, {
|
|
1502
|
-
product: "company" | "enterprise" | "free" | "team";
|
|
1502
|
+
product: "company" | "enterprise" | "free" | "team" | "pro";
|
|
1503
1503
|
seats: number;
|
|
1504
1504
|
seatLimit: number;
|
|
1505
1505
|
planPriceId: string;
|
|
@@ -12012,7 +12012,7 @@ declare const UserDump: z.ZodObject<{
|
|
|
12012
12012
|
internalStatus: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<"active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free", z.ZodTypeDef, "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free">>>, NonNullable<"active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free"> | undefined, "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | null | undefined>;
|
|
12013
12013
|
stripeSubscriptionId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
12014
12014
|
stripeCustomerId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
12015
|
-
product: z.ZodEnum<["free", "team", "company", "enterprise"]>;
|
|
12015
|
+
product: z.ZodEnum<["free", "team", "company", "enterprise", "pro"]>;
|
|
12016
12016
|
planPriceId: z.ZodString;
|
|
12017
12017
|
planInterval: z.ZodEnum<["daily", "monthly", "weekly", "yearly"]>;
|
|
12018
12018
|
currentPeriodStart: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
@@ -12020,7 +12020,7 @@ declare const UserDump: z.ZodObject<{
|
|
|
12020
12020
|
cancelAt: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
12021
12021
|
subscriptionStatusUpdatedAt: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
12022
12022
|
}, "strip", z.ZodTypeAny, {
|
|
12023
|
-
product: "company" | "enterprise" | "free" | "team";
|
|
12023
|
+
product: "company" | "enterprise" | "free" | "team" | "pro";
|
|
12024
12024
|
seats: number;
|
|
12025
12025
|
seatLimit: number;
|
|
12026
12026
|
planPriceId: string;
|
|
@@ -12049,7 +12049,7 @@ declare const UserDump: z.ZodObject<{
|
|
|
12049
12049
|
cancelAt?: string | undefined;
|
|
12050
12050
|
subscriptionStatusUpdatedAt?: string | undefined;
|
|
12051
12051
|
}, {
|
|
12052
|
-
product: "company" | "enterprise" | "free" | "team";
|
|
12052
|
+
product: "company" | "enterprise" | "free" | "team" | "pro";
|
|
12053
12053
|
seats: number;
|
|
12054
12054
|
seatLimit: number;
|
|
12055
12055
|
planPriceId: string;
|
|
@@ -12258,7 +12258,7 @@ declare const UserDump: z.ZodObject<{
|
|
|
12258
12258
|
} | undefined;
|
|
12259
12259
|
};
|
|
12260
12260
|
subscription: {
|
|
12261
|
-
product: "company" | "enterprise" | "free" | "team";
|
|
12261
|
+
product: "company" | "enterprise" | "free" | "team" | "pro";
|
|
12262
12262
|
seats: number;
|
|
12263
12263
|
seatLimit: number;
|
|
12264
12264
|
planPriceId: string;
|
|
@@ -12356,7 +12356,7 @@ declare const UserDump: z.ZodObject<{
|
|
|
12356
12356
|
} | null | undefined;
|
|
12357
12357
|
};
|
|
12358
12358
|
subscription: {
|
|
12359
|
-
product: "company" | "enterprise" | "free" | "team";
|
|
12359
|
+
product: "company" | "enterprise" | "free" | "team" | "pro";
|
|
12360
12360
|
seats: number;
|
|
12361
12361
|
seatLimit: number;
|
|
12362
12362
|
planPriceId: string;
|
|
@@ -19273,7 +19273,7 @@ declare const UserDump: z.ZodObject<{
|
|
|
19273
19273
|
} | undefined;
|
|
19274
19274
|
};
|
|
19275
19275
|
subscription: {
|
|
19276
|
-
product: "company" | "enterprise" | "free" | "team";
|
|
19276
|
+
product: "company" | "enterprise" | "free" | "team" | "pro";
|
|
19277
19277
|
seats: number;
|
|
19278
19278
|
seatLimit: number;
|
|
19279
19279
|
planPriceId: string;
|
|
@@ -20165,7 +20165,7 @@ declare const UserDump: z.ZodObject<{
|
|
|
20165
20165
|
} | null | undefined;
|
|
20166
20166
|
};
|
|
20167
20167
|
subscription: {
|
|
20168
|
-
product: "company" | "enterprise" | "free" | "team";
|
|
20168
|
+
product: "company" | "enterprise" | "free" | "team" | "pro";
|
|
20169
20169
|
seats: number;
|
|
20170
20170
|
seatLimit: number;
|
|
20171
20171
|
planPriceId: string;
|
|
@@ -21059,7 +21059,7 @@ declare const UserDump: z.ZodObject<{
|
|
|
21059
21059
|
} | undefined;
|
|
21060
21060
|
};
|
|
21061
21061
|
subscription: {
|
|
21062
|
-
product: "company" | "enterprise" | "free" | "team";
|
|
21062
|
+
product: "company" | "enterprise" | "free" | "team" | "pro";
|
|
21063
21063
|
seats: number;
|
|
21064
21064
|
seatLimit: number;
|
|
21065
21065
|
planPriceId: string;
|
|
@@ -21993,7 +21993,7 @@ declare const UserDump: z.ZodObject<{
|
|
|
21993
21993
|
} | null | undefined;
|
|
21994
21994
|
};
|
|
21995
21995
|
subscription: {
|
|
21996
|
-
product: "company" | "enterprise" | "free" | "team";
|
|
21996
|
+
product: "company" | "enterprise" | "free" | "team" | "pro";
|
|
21997
21997
|
seats: number;
|
|
21998
21998
|
seatLimit: number;
|
|
21999
21999
|
planPriceId: string;
|
|
@@ -23058,7 +23058,7 @@ declare const WorkspaceDump: z.ZodObject<{
|
|
|
23058
23058
|
internalStatus: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<"active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free", z.ZodTypeDef, "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free">>>, NonNullable<"active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free"> | undefined, "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | null | undefined>;
|
|
23059
23059
|
stripeSubscriptionId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
23060
23060
|
stripeCustomerId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
23061
|
-
product: z.ZodEnum<["free", "team", "company", "enterprise"]>;
|
|
23061
|
+
product: z.ZodEnum<["free", "team", "company", "enterprise", "pro"]>;
|
|
23062
23062
|
planPriceId: z.ZodString;
|
|
23063
23063
|
planInterval: z.ZodEnum<["daily", "monthly", "weekly", "yearly"]>;
|
|
23064
23064
|
currentPeriodStart: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
@@ -23066,7 +23066,7 @@ declare const WorkspaceDump: z.ZodObject<{
|
|
|
23066
23066
|
cancelAt: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
23067
23067
|
subscriptionStatusUpdatedAt: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
23068
23068
|
}, "strip", z.ZodTypeAny, {
|
|
23069
|
-
product: "company" | "enterprise" | "free" | "team";
|
|
23069
|
+
product: "company" | "enterprise" | "free" | "team" | "pro";
|
|
23070
23070
|
seats: number;
|
|
23071
23071
|
seatLimit: number;
|
|
23072
23072
|
planPriceId: string;
|
|
@@ -23095,7 +23095,7 @@ declare const WorkspaceDump: z.ZodObject<{
|
|
|
23095
23095
|
cancelAt?: string | undefined;
|
|
23096
23096
|
subscriptionStatusUpdatedAt?: string | undefined;
|
|
23097
23097
|
}, {
|
|
23098
|
-
product: "company" | "enterprise" | "free" | "team";
|
|
23098
|
+
product: "company" | "enterprise" | "free" | "team" | "pro";
|
|
23099
23099
|
seats: number;
|
|
23100
23100
|
seatLimit: number;
|
|
23101
23101
|
planPriceId: string;
|
|
@@ -23304,7 +23304,7 @@ declare const WorkspaceDump: z.ZodObject<{
|
|
|
23304
23304
|
} | undefined;
|
|
23305
23305
|
};
|
|
23306
23306
|
subscription: {
|
|
23307
|
-
product: "company" | "enterprise" | "free" | "team";
|
|
23307
|
+
product: "company" | "enterprise" | "free" | "team" | "pro";
|
|
23308
23308
|
seats: number;
|
|
23309
23309
|
seatLimit: number;
|
|
23310
23310
|
planPriceId: string;
|
|
@@ -23402,7 +23402,7 @@ declare const WorkspaceDump: z.ZodObject<{
|
|
|
23402
23402
|
} | null | undefined;
|
|
23403
23403
|
};
|
|
23404
23404
|
subscription: {
|
|
23405
|
-
product: "company" | "enterprise" | "free" | "team";
|
|
23405
|
+
product: "company" | "enterprise" | "free" | "team" | "pro";
|
|
23406
23406
|
seats: number;
|
|
23407
23407
|
seatLimit: number;
|
|
23408
23408
|
planPriceId: string;
|
|
@@ -30319,7 +30319,7 @@ declare const WorkspaceDump: z.ZodObject<{
|
|
|
30319
30319
|
} | undefined;
|
|
30320
30320
|
};
|
|
30321
30321
|
subscription: {
|
|
30322
|
-
product: "company" | "enterprise" | "free" | "team";
|
|
30322
|
+
product: "company" | "enterprise" | "free" | "team" | "pro";
|
|
30323
30323
|
seats: number;
|
|
30324
30324
|
seatLimit: number;
|
|
30325
30325
|
planPriceId: string;
|
|
@@ -31211,7 +31211,7 @@ declare const WorkspaceDump: z.ZodObject<{
|
|
|
31211
31211
|
} | null | undefined;
|
|
31212
31212
|
};
|
|
31213
31213
|
subscription: {
|
|
31214
|
-
product: "company" | "enterprise" | "free" | "team";
|
|
31214
|
+
product: "company" | "enterprise" | "free" | "team" | "pro";
|
|
31215
31215
|
seats: number;
|
|
31216
31216
|
seatLimit: number;
|
|
31217
31217
|
planPriceId: string;
|
|
@@ -138540,7 +138540,7 @@ type WorkspaceConfigurationUpdate = z.infer<typeof WorkspaceConfigurationUpdate>
|
|
|
138540
138540
|
|
|
138541
138541
|
declare const WorkspaceContext: z.ZodObject<{
|
|
138542
138542
|
workspaceId: z.ZodString;
|
|
138543
|
-
product: z.ZodEnum<["free", "team", "company", "enterprise"]>;
|
|
138543
|
+
product: z.ZodEnum<["free", "team", "company", "enterprise", "pro"]>;
|
|
138544
138544
|
ipWhitelist: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
138545
138545
|
entries: {
|
|
138546
138546
|
name: string;
|
|
@@ -138576,7 +138576,7 @@ declare const WorkspaceContext: z.ZodObject<{
|
|
|
138576
138576
|
} | null | undefined>;
|
|
138577
138577
|
publicDesignSystem: z.ZodOptional<z.ZodBoolean>;
|
|
138578
138578
|
}, "strip", z.ZodTypeAny, {
|
|
138579
|
-
product: "company" | "enterprise" | "free" | "team";
|
|
138579
|
+
product: "company" | "enterprise" | "free" | "team" | "pro";
|
|
138580
138580
|
workspaceId: string;
|
|
138581
138581
|
ipWhitelist?: {
|
|
138582
138582
|
entries: {
|
|
@@ -138589,7 +138589,7 @@ declare const WorkspaceContext: z.ZodObject<{
|
|
|
138589
138589
|
} | undefined;
|
|
138590
138590
|
publicDesignSystem?: boolean | undefined;
|
|
138591
138591
|
}, {
|
|
138592
|
-
product: "company" | "enterprise" | "free" | "team";
|
|
138592
|
+
product: "company" | "enterprise" | "free" | "team" | "pro";
|
|
138593
138593
|
workspaceId: string;
|
|
138594
138594
|
ipWhitelist?: {
|
|
138595
138595
|
entries: {
|
|
@@ -139169,7 +139169,7 @@ declare const Workspace: z.ZodObject<{
|
|
|
139169
139169
|
internalStatus: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<"active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free", z.ZodTypeDef, "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free">>>, NonNullable<"active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free"> | undefined, "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | null | undefined>;
|
|
139170
139170
|
stripeSubscriptionId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
139171
139171
|
stripeCustomerId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
139172
|
-
product: z.ZodEnum<["free", "team", "company", "enterprise"]>;
|
|
139172
|
+
product: z.ZodEnum<["free", "team", "company", "enterprise", "pro"]>;
|
|
139173
139173
|
planPriceId: z.ZodString;
|
|
139174
139174
|
planInterval: z.ZodEnum<["daily", "monthly", "weekly", "yearly"]>;
|
|
139175
139175
|
currentPeriodStart: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
@@ -139177,7 +139177,7 @@ declare const Workspace: z.ZodObject<{
|
|
|
139177
139177
|
cancelAt: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
139178
139178
|
subscriptionStatusUpdatedAt: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
139179
139179
|
}, "strip", z.ZodTypeAny, {
|
|
139180
|
-
product: "company" | "enterprise" | "free" | "team";
|
|
139180
|
+
product: "company" | "enterprise" | "free" | "team" | "pro";
|
|
139181
139181
|
seats: number;
|
|
139182
139182
|
seatLimit: number;
|
|
139183
139183
|
planPriceId: string;
|
|
@@ -139206,7 +139206,7 @@ declare const Workspace: z.ZodObject<{
|
|
|
139206
139206
|
cancelAt?: string | undefined;
|
|
139207
139207
|
subscriptionStatusUpdatedAt?: string | undefined;
|
|
139208
139208
|
}, {
|
|
139209
|
-
product: "company" | "enterprise" | "free" | "team";
|
|
139209
|
+
product: "company" | "enterprise" | "free" | "team" | "pro";
|
|
139210
139210
|
seats: number;
|
|
139211
139211
|
seatLimit: number;
|
|
139212
139212
|
planPriceId: string;
|
|
@@ -139415,7 +139415,7 @@ declare const Workspace: z.ZodObject<{
|
|
|
139415
139415
|
} | undefined;
|
|
139416
139416
|
};
|
|
139417
139417
|
subscription: {
|
|
139418
|
-
product: "company" | "enterprise" | "free" | "team";
|
|
139418
|
+
product: "company" | "enterprise" | "free" | "team" | "pro";
|
|
139419
139419
|
seats: number;
|
|
139420
139420
|
seatLimit: number;
|
|
139421
139421
|
planPriceId: string;
|
|
@@ -139513,7 +139513,7 @@ declare const Workspace: z.ZodObject<{
|
|
|
139513
139513
|
} | null | undefined;
|
|
139514
139514
|
};
|
|
139515
139515
|
subscription: {
|
|
139516
|
-
product: "company" | "enterprise" | "free" | "team";
|
|
139516
|
+
product: "company" | "enterprise" | "free" | "team" | "pro";
|
|
139517
139517
|
seats: number;
|
|
139518
139518
|
seatLimit: number;
|
|
139519
139519
|
planPriceId: string;
|
|
@@ -139743,7 +139743,7 @@ declare const WorkspaceWithDesignSystems: z.ZodObject<{
|
|
|
139743
139743
|
internalStatus: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<"active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free", z.ZodTypeDef, "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free">>>, NonNullable<"active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free"> | undefined, "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | null | undefined>;
|
|
139744
139744
|
stripeSubscriptionId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
139745
139745
|
stripeCustomerId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
139746
|
-
product: z.ZodEnum<["free", "team", "company", "enterprise"]>;
|
|
139746
|
+
product: z.ZodEnum<["free", "team", "company", "enterprise", "pro"]>;
|
|
139747
139747
|
planPriceId: z.ZodString;
|
|
139748
139748
|
planInterval: z.ZodEnum<["daily", "monthly", "weekly", "yearly"]>;
|
|
139749
139749
|
currentPeriodStart: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
@@ -139751,7 +139751,7 @@ declare const WorkspaceWithDesignSystems: z.ZodObject<{
|
|
|
139751
139751
|
cancelAt: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
139752
139752
|
subscriptionStatusUpdatedAt: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
139753
139753
|
}, "strip", z.ZodTypeAny, {
|
|
139754
|
-
product: "company" | "enterprise" | "free" | "team";
|
|
139754
|
+
product: "company" | "enterprise" | "free" | "team" | "pro";
|
|
139755
139755
|
seats: number;
|
|
139756
139756
|
seatLimit: number;
|
|
139757
139757
|
planPriceId: string;
|
|
@@ -139780,7 +139780,7 @@ declare const WorkspaceWithDesignSystems: z.ZodObject<{
|
|
|
139780
139780
|
cancelAt?: string | undefined;
|
|
139781
139781
|
subscriptionStatusUpdatedAt?: string | undefined;
|
|
139782
139782
|
}, {
|
|
139783
|
-
product: "company" | "enterprise" | "free" | "team";
|
|
139783
|
+
product: "company" | "enterprise" | "free" | "team" | "pro";
|
|
139784
139784
|
seats: number;
|
|
139785
139785
|
seatLimit: number;
|
|
139786
139786
|
planPriceId: string;
|
|
@@ -139989,7 +139989,7 @@ declare const WorkspaceWithDesignSystems: z.ZodObject<{
|
|
|
139989
139989
|
} | undefined;
|
|
139990
139990
|
};
|
|
139991
139991
|
subscription: {
|
|
139992
|
-
product: "company" | "enterprise" | "free" | "team";
|
|
139992
|
+
product: "company" | "enterprise" | "free" | "team" | "pro";
|
|
139993
139993
|
seats: number;
|
|
139994
139994
|
seatLimit: number;
|
|
139995
139995
|
planPriceId: string;
|
|
@@ -140087,7 +140087,7 @@ declare const WorkspaceWithDesignSystems: z.ZodObject<{
|
|
|
140087
140087
|
} | null | undefined;
|
|
140088
140088
|
};
|
|
140089
140089
|
subscription: {
|
|
140090
|
-
product: "company" | "enterprise" | "free" | "team";
|
|
140090
|
+
product: "company" | "enterprise" | "free" | "team" | "pro";
|
|
140091
140091
|
seats: number;
|
|
140092
140092
|
seatLimit: number;
|
|
140093
140093
|
planPriceId: string;
|
|
@@ -140263,7 +140263,7 @@ declare const WorkspaceWithDesignSystems: z.ZodObject<{
|
|
|
140263
140263
|
} | undefined;
|
|
140264
140264
|
};
|
|
140265
140265
|
subscription: {
|
|
140266
|
-
product: "company" | "enterprise" | "free" | "team";
|
|
140266
|
+
product: "company" | "enterprise" | "free" | "team" | "pro";
|
|
140267
140267
|
seats: number;
|
|
140268
140268
|
seatLimit: number;
|
|
140269
140269
|
planPriceId: string;
|
|
@@ -140386,7 +140386,7 @@ declare const WorkspaceWithDesignSystems: z.ZodObject<{
|
|
|
140386
140386
|
} | null | undefined;
|
|
140387
140387
|
};
|
|
140388
140388
|
subscription: {
|
|
140389
|
-
product: "company" | "enterprise" | "free" | "team";
|
|
140389
|
+
product: "company" | "enterprise" | "free" | "team" | "pro";
|
|
140390
140390
|
seats: number;
|
|
140391
140391
|
seatLimit: number;
|
|
140392
140392
|
planPriceId: string;
|
|
@@ -143924,7 +143924,7 @@ declare const DesignSystemInviteEmailData: z.ZodObject<{
|
|
|
143924
143924
|
internalStatus: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<"active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free", z.ZodTypeDef, "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free">>>, NonNullable<"active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free"> | undefined, "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | null | undefined>;
|
|
143925
143925
|
stripeSubscriptionId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
143926
143926
|
stripeCustomerId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
143927
|
-
product: z.ZodEnum<["free", "team", "company", "enterprise"]>;
|
|
143927
|
+
product: z.ZodEnum<["free", "team", "company", "enterprise", "pro"]>;
|
|
143928
143928
|
planPriceId: z.ZodString;
|
|
143929
143929
|
planInterval: z.ZodEnum<["daily", "monthly", "weekly", "yearly"]>;
|
|
143930
143930
|
currentPeriodStart: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
@@ -143932,7 +143932,7 @@ declare const DesignSystemInviteEmailData: z.ZodObject<{
|
|
|
143932
143932
|
cancelAt: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
143933
143933
|
subscriptionStatusUpdatedAt: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
143934
143934
|
}, "strip", z.ZodTypeAny, {
|
|
143935
|
-
product: "company" | "enterprise" | "free" | "team";
|
|
143935
|
+
product: "company" | "enterprise" | "free" | "team" | "pro";
|
|
143936
143936
|
seats: number;
|
|
143937
143937
|
seatLimit: number;
|
|
143938
143938
|
planPriceId: string;
|
|
@@ -143961,7 +143961,7 @@ declare const DesignSystemInviteEmailData: z.ZodObject<{
|
|
|
143961
143961
|
cancelAt?: string | undefined;
|
|
143962
143962
|
subscriptionStatusUpdatedAt?: string | undefined;
|
|
143963
143963
|
}, {
|
|
143964
|
-
product: "company" | "enterprise" | "free" | "team";
|
|
143964
|
+
product: "company" | "enterprise" | "free" | "team" | "pro";
|
|
143965
143965
|
seats: number;
|
|
143966
143966
|
seatLimit: number;
|
|
143967
143967
|
planPriceId: string;
|
|
@@ -144170,7 +144170,7 @@ declare const DesignSystemInviteEmailData: z.ZodObject<{
|
|
|
144170
144170
|
} | undefined;
|
|
144171
144171
|
};
|
|
144172
144172
|
subscription: {
|
|
144173
|
-
product: "company" | "enterprise" | "free" | "team";
|
|
144173
|
+
product: "company" | "enterprise" | "free" | "team" | "pro";
|
|
144174
144174
|
seats: number;
|
|
144175
144175
|
seatLimit: number;
|
|
144176
144176
|
planPriceId: string;
|
|
@@ -144268,7 +144268,7 @@ declare const DesignSystemInviteEmailData: z.ZodObject<{
|
|
|
144268
144268
|
} | null | undefined;
|
|
144269
144269
|
};
|
|
144270
144270
|
subscription: {
|
|
144271
|
-
product: "company" | "enterprise" | "free" | "team";
|
|
144271
|
+
product: "company" | "enterprise" | "free" | "team" | "pro";
|
|
144272
144272
|
seats: number;
|
|
144273
144273
|
seatLimit: number;
|
|
144274
144274
|
planPriceId: string;
|
|
@@ -144724,7 +144724,7 @@ declare const DesignSystemInviteEmailData: z.ZodObject<{
|
|
|
144724
144724
|
} | undefined;
|
|
144725
144725
|
};
|
|
144726
144726
|
subscription: {
|
|
144727
|
-
product: "company" | "enterprise" | "free" | "team";
|
|
144727
|
+
product: "company" | "enterprise" | "free" | "team" | "pro";
|
|
144728
144728
|
seats: number;
|
|
144729
144729
|
seatLimit: number;
|
|
144730
144730
|
planPriceId: string;
|
|
@@ -144895,7 +144895,7 @@ declare const DesignSystemInviteEmailData: z.ZodObject<{
|
|
|
144895
144895
|
} | null | undefined;
|
|
144896
144896
|
};
|
|
144897
144897
|
subscription: {
|
|
144898
|
-
product: "company" | "enterprise" | "free" | "team";
|
|
144898
|
+
product: "company" | "enterprise" | "free" | "team" | "pro";
|
|
144899
144899
|
seats: number;
|
|
144900
144900
|
seatLimit: number;
|
|
144901
144901
|
planPriceId: string;
|
|
@@ -145220,7 +145220,7 @@ declare const WorkspaceInviteEmailData: z.ZodObject<{
|
|
|
145220
145220
|
internalStatus: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<"active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free", z.ZodTypeDef, "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free">>>, NonNullable<"active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free"> | undefined, "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | null | undefined>;
|
|
145221
145221
|
stripeSubscriptionId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
145222
145222
|
stripeCustomerId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
145223
|
-
product: z.ZodEnum<["free", "team", "company", "enterprise"]>;
|
|
145223
|
+
product: z.ZodEnum<["free", "team", "company", "enterprise", "pro"]>;
|
|
145224
145224
|
planPriceId: z.ZodString;
|
|
145225
145225
|
planInterval: z.ZodEnum<["daily", "monthly", "weekly", "yearly"]>;
|
|
145226
145226
|
currentPeriodStart: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
@@ -145228,7 +145228,7 @@ declare const WorkspaceInviteEmailData: z.ZodObject<{
|
|
|
145228
145228
|
cancelAt: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
145229
145229
|
subscriptionStatusUpdatedAt: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
145230
145230
|
}, "strip", z.ZodTypeAny, {
|
|
145231
|
-
product: "company" | "enterprise" | "free" | "team";
|
|
145231
|
+
product: "company" | "enterprise" | "free" | "team" | "pro";
|
|
145232
145232
|
seats: number;
|
|
145233
145233
|
seatLimit: number;
|
|
145234
145234
|
planPriceId: string;
|
|
@@ -145257,7 +145257,7 @@ declare const WorkspaceInviteEmailData: z.ZodObject<{
|
|
|
145257
145257
|
cancelAt?: string | undefined;
|
|
145258
145258
|
subscriptionStatusUpdatedAt?: string | undefined;
|
|
145259
145259
|
}, {
|
|
145260
|
-
product: "company" | "enterprise" | "free" | "team";
|
|
145260
|
+
product: "company" | "enterprise" | "free" | "team" | "pro";
|
|
145261
145261
|
seats: number;
|
|
145262
145262
|
seatLimit: number;
|
|
145263
145263
|
planPriceId: string;
|
|
@@ -145466,7 +145466,7 @@ declare const WorkspaceInviteEmailData: z.ZodObject<{
|
|
|
145466
145466
|
} | undefined;
|
|
145467
145467
|
};
|
|
145468
145468
|
subscription: {
|
|
145469
|
-
product: "company" | "enterprise" | "free" | "team";
|
|
145469
|
+
product: "company" | "enterprise" | "free" | "team" | "pro";
|
|
145470
145470
|
seats: number;
|
|
145471
145471
|
seatLimit: number;
|
|
145472
145472
|
planPriceId: string;
|
|
@@ -145564,7 +145564,7 @@ declare const WorkspaceInviteEmailData: z.ZodObject<{
|
|
|
145564
145564
|
} | null | undefined;
|
|
145565
145565
|
};
|
|
145566
145566
|
subscription: {
|
|
145567
|
-
product: "company" | "enterprise" | "free" | "team";
|
|
145567
|
+
product: "company" | "enterprise" | "free" | "team" | "pro";
|
|
145568
145568
|
seats: number;
|
|
145569
145569
|
seatLimit: number;
|
|
145570
145570
|
planPriceId: string;
|
|
@@ -145944,7 +145944,7 @@ declare const WorkspaceInviteEmailData: z.ZodObject<{
|
|
|
145944
145944
|
} | undefined;
|
|
145945
145945
|
};
|
|
145946
145946
|
subscription: {
|
|
145947
|
-
product: "company" | "enterprise" | "free" | "team";
|
|
145947
|
+
product: "company" | "enterprise" | "free" | "team" | "pro";
|
|
145948
145948
|
seats: number;
|
|
145949
145949
|
seatLimit: number;
|
|
145950
145950
|
planPriceId: string;
|
|
@@ -146092,7 +146092,7 @@ declare const WorkspaceInviteEmailData: z.ZodObject<{
|
|
|
146092
146092
|
} | null | undefined;
|
|
146093
146093
|
};
|
|
146094
146094
|
subscription: {
|
|
146095
|
-
product: "company" | "enterprise" | "free" | "team";
|
|
146095
|
+
product: "company" | "enterprise" | "free" | "team" | "pro";
|
|
146096
146096
|
seats: number;
|
|
146097
146097
|
seatLimit: number;
|
|
146098
146098
|
planPriceId: string;
|