@supernova-studio/model 1.10.3 → 1.10.5

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.mjs CHANGED
@@ -293,7 +293,7 @@ var ForgeChatMessage = z14.object({
293
293
  payload: z14.string(),
294
294
  createdAt: z14.coerce.date(),
295
295
  updatedAt: z14.coerce.date(),
296
- opikSpanId: z14.string().optional(),
296
+ opikTraceId: z14.string().optional(),
297
297
  sender: ForgeChatMessageSender
298
298
  });
299
299
 
@@ -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 = nullishToOptional(UserTheme);
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: nullishToOptional(z205.any()),
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,