@supernova-studio/model 1.10.3 → 1.10.4
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 +148 -47
- package/dist/index.d.ts +148 -47
- package/dist/index.js +17 -4
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +16 -3
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -6462,14 +6462,24 @@ var NpmProxyTokenPayload = z204.object({
|
|
|
6462
6462
|
|
|
6463
6463
|
// src/portal/portal-settings.ts
|
|
6464
6464
|
import { z as z205 } from "zod";
|
|
6465
|
-
var PortalSettingsTheme =
|
|
6465
|
+
var PortalSettingsTheme = UserTheme;
|
|
6466
|
+
var PortalSettingsSidebarLink = z205.object({
|
|
6467
|
+
name: z205.string(),
|
|
6468
|
+
url: z205.string(),
|
|
6469
|
+
emoji: z205.string()
|
|
6470
|
+
});
|
|
6471
|
+
var PortalSettingsSidebarSection = z205.object({
|
|
6472
|
+
sectionName: z205.string(),
|
|
6473
|
+
links: z205.array(PortalSettingsSidebarLink)
|
|
6474
|
+
});
|
|
6475
|
+
var PortalSettingsSidebar = z205.array(PortalSettingsSidebarSection);
|
|
6466
6476
|
var PortalSettings = z205.object({
|
|
6467
6477
|
id: z205.string(),
|
|
6468
6478
|
workspaceId: z205.string(),
|
|
6469
6479
|
enabledDesignSystemIds: z205.array(z205.string()),
|
|
6470
6480
|
enabledBrandPersistentIds: z205.array(z205.string()),
|
|
6471
|
-
theme: PortalSettingsTheme,
|
|
6472
|
-
sidebar:
|
|
6481
|
+
theme: PortalSettingsTheme.nullish(),
|
|
6482
|
+
sidebar: PortalSettingsSidebar.nullish(),
|
|
6473
6483
|
createdAt: z205.coerce.date(),
|
|
6474
6484
|
updatedAt: z205.coerce.date()
|
|
6475
6485
|
});
|
|
@@ -7057,6 +7067,9 @@ export {
|
|
|
7057
7067
|
PluginOAuthRequestSchema,
|
|
7058
7068
|
Point2D,
|
|
7059
7069
|
PortalSettings,
|
|
7070
|
+
PortalSettingsSidebar,
|
|
7071
|
+
PortalSettingsSidebarLink,
|
|
7072
|
+
PortalSettingsSidebarSection,
|
|
7060
7073
|
PortalSettingsTheme,
|
|
7061
7074
|
PostStripeCheckoutBodyInputSchema,
|
|
7062
7075
|
PostStripeCheckoutOutputSchema,
|