@supernova-studio/model 1.13.0 → 1.14.1

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
@@ -6257,180 +6257,184 @@ var ForgeBuildArtifact = Artifact.extend({
6257
6257
  });
6258
6258
  var ForgeArtifact = z192.union([ForgeBuildArtifact, ForgeSpecArtifact, ForgeFigmaArtifact, ForgeFileArtifact]);
6259
6259
 
6260
+ // src/forge/id.ts
6261
+ import { z as z193 } from "zod";
6262
+ var Id = z193.string().uuid();
6263
+
6260
6264
  // src/forge/iteration-message.ts
6261
- import { z as z194 } from "zod";
6265
+ import { z as z195 } from "zod";
6262
6266
 
6263
6267
  // src/forge/participant.ts
6264
- import { z as z193 } from "zod";
6265
- var ForgeParticipant = z193.object({
6266
- id: z193.string(),
6267
- agentId: z193.string().optional(),
6268
+ import { z as z194 } from "zod";
6269
+ var ForgeParticipant = z194.object({
6270
+ id: z194.string(),
6271
+ agentId: z194.string().optional(),
6268
6272
  agent: ForgeAgent.optional(),
6269
- projectIterationId: z193.string(),
6270
- role: z193.enum(["Editor", "Viewer"]),
6271
- type: z193.enum(["Agent", "User"]),
6272
- userId: z193.string().optional(),
6273
+ projectIterationId: z194.string(),
6274
+ role: z194.enum(["Editor", "Viewer"]),
6275
+ type: z194.enum(["Agent", "User"]),
6276
+ userId: z194.string().optional(),
6273
6277
  user: User.optional()
6274
6278
  });
6275
6279
 
6276
6280
  // src/forge/iteration-message.ts
6277
- var ForgeIterationMessageStep = z194.object({
6278
- name: z194.string(),
6279
- text: z194.string(),
6280
- status: z194.enum(["pending", "started", "completed", "error"])
6281
+ var ForgeIterationMessageStep = z195.object({
6282
+ name: z195.string(),
6283
+ text: z195.string(),
6284
+ status: z195.enum(["pending", "started", "completed", "error"])
6281
6285
  });
6282
- var ForgeIterationMessage = z194.object({
6283
- id: z194.string(),
6284
- createdAt: z194.coerce.date(),
6285
- participantId: z194.string(),
6286
+ var ForgeIterationMessage = z195.object({
6287
+ id: z195.string(),
6288
+ createdAt: z195.coerce.date(),
6289
+ participantId: z195.string(),
6286
6290
  participant: ForgeParticipant,
6287
- projectIterationId: z194.string(),
6288
- steps: z194.array(ForgeIterationMessageStep).optional(),
6289
- type: z194.enum(["Note", "Action", "Steps"]),
6290
- text: z194.string()
6291
+ projectIterationId: z195.string(),
6292
+ steps: z195.array(ForgeIterationMessageStep).optional(),
6293
+ type: z195.enum(["Note", "Action", "Steps"]),
6294
+ text: z195.string()
6291
6295
  });
6292
6296
 
6293
6297
  // src/forge/meta.ts
6294
- import { z as z195 } from "zod";
6295
- var ForgeMeta = z195.object({
6296
- name: z195.string(),
6297
- description: z195.string().optional()
6298
- });
6299
-
6300
- // src/forge/project-artifact-content.ts
6301
6298
  import { z as z196 } from "zod";
6302
- var ForgeProjectArtifactContentData = DocumentationPageContentData;
6303
- var ForgeProjectArtifactContent = z196.object({
6304
- id: z196.string(),
6305
- artifactId: z196.string(),
6306
- projectId: z196.string(),
6307
- createdAt: z196.coerce.date(),
6308
- updatedAt: z196.coerce.date(),
6309
- data: ForgeProjectArtifactContentData
6299
+ var ForgeMeta = z196.object({
6300
+ name: z196.string(),
6301
+ description: z196.string().optional()
6310
6302
  });
6311
6303
 
6312
- // src/forge/project-artifact.ts
6304
+ // src/forge/project-artifact-content.ts
6313
6305
  import { z as z197 } from "zod";
6314
- var ForgeProjectArtifact = z197.object({
6306
+ var ForgeProjectArtifactContentData = DocumentationPageContentData;
6307
+ var ForgeProjectArtifactContent = z197.object({
6315
6308
  id: z197.string(),
6309
+ artifactId: z197.string(),
6316
6310
  projectId: z197.string(),
6317
- iterationId: z197.string().nullish(),
6318
- title: z197.string(),
6319
- previewUrl: z197.string().nullish(),
6320
- path: z197.string(),
6321
- sortOrder: z197.number().default(0),
6322
6311
  createdAt: z197.coerce.date(),
6323
6312
  updatedAt: z197.coerce.date(),
6324
- createdByUserId: z197.string()
6313
+ data: ForgeProjectArtifactContentData
6325
6314
  });
6326
6315
 
6327
- // src/forge/project-context.ts
6316
+ // src/forge/project-artifact.ts
6328
6317
  import { z as z198 } from "zod";
6329
- var ForgeProjectContextDependency = z198.object({
6330
- packageName: z198.string(),
6331
- type: z198.literal("npm"),
6332
- version: z198.string().default("latest")
6318
+ var ForgeProjectArtifact = z198.object({
6319
+ id: z198.string(),
6320
+ projectId: z198.string(),
6321
+ iterationId: z198.string().nullish(),
6322
+ title: z198.string(),
6323
+ previewUrl: z198.string().nullish(),
6324
+ path: z198.string(),
6325
+ sortOrder: z198.number().default(0),
6326
+ createdAt: z198.coerce.date(),
6327
+ updatedAt: z198.coerce.date(),
6328
+ createdByUserId: z198.string()
6329
+ });
6330
+
6331
+ // src/forge/project-context.ts
6332
+ import { z as z199 } from "zod";
6333
+ var ForgeProjectContextDependency = z199.object({
6334
+ packageName: z199.string(),
6335
+ type: z199.literal("npm"),
6336
+ version: z199.string().default("latest")
6333
6337
  });
6334
- var ForgeProjectContextTailwindConfig = z198.object({
6335
- content: z198.string(),
6336
- version: z198.string()
6338
+ var ForgeProjectContextTailwindConfig = z199.object({
6339
+ content: z199.string(),
6340
+ version: z199.string()
6337
6341
  });
6338
- var ForgeProjectContext = z198.object({
6339
- createdAt: z198.coerce.date(),
6340
- definition: z198.string(),
6341
- dependencies: z198.array(ForgeProjectContextDependency),
6342
- designSystemId: z198.string(),
6343
- id: z198.string(),
6342
+ var ForgeProjectContext = z199.object({
6343
+ createdAt: z199.coerce.date(),
6344
+ definition: z199.string(),
6345
+ dependencies: z199.array(ForgeProjectContextDependency),
6346
+ designSystemId: z199.string(),
6347
+ id: z199.string(),
6344
6348
  meta: ForgeMeta,
6345
- name: z198.string(),
6349
+ name: z199.string(),
6346
6350
  npmProxySettings: NpmRegistryConfig,
6347
- platform: z198.enum(["React", "Vue", "Angular"]),
6348
- styling: z198.enum(["CSS", "Tailwind"]),
6351
+ platform: z199.enum(["React", "Vue", "Angular"]),
6352
+ styling: z199.enum(["CSS", "Tailwind"]),
6349
6353
  tailwindConfig: ForgeProjectContextTailwindConfig.optional(),
6350
- updatedAt: z198.coerce.date(),
6351
- workspaceId: z198.string()
6354
+ updatedAt: z199.coerce.date(),
6355
+ workspaceId: z199.string()
6352
6356
  });
6353
6357
 
6354
6358
  // src/forge/project-feature.ts
6355
- import { z as z199 } from "zod";
6356
- var ProjectFeature = z199.object({
6357
- createdAt: z199.coerce.date(),
6358
- createdByUserId: z199.string().optional(),
6359
- description: z199.string(),
6360
- id: z199.string().uuid(),
6361
- isArchived: z199.boolean().optional(),
6362
- name: z199.string(),
6363
- projectId: z199.string(),
6364
- sectionId: z199.string().uuid().optional(),
6365
- sortOrder: z199.number().int().min(0),
6366
- updatedAt: z199.coerce.date().optional()
6359
+ import { z as z200 } from "zod";
6360
+ var ProjectFeature = z200.object({
6361
+ createdAt: z200.coerce.date(),
6362
+ createdByUserId: z200.string(),
6363
+ description: z200.string(),
6364
+ id: z200.string().uuid(),
6365
+ isArchived: z200.boolean().optional(),
6366
+ name: Id,
6367
+ projectId: z200.string(),
6368
+ sectionId: Id.optional(),
6369
+ sortOrder: z200.number().int().min(0),
6370
+ updatedAt: z200.coerce.date().optional()
6367
6371
  });
6368
6372
 
6369
6373
  // src/forge/project-invitation.ts
6370
- import { z as z201 } from "zod";
6374
+ import { z as z202 } from "zod";
6371
6375
 
6372
6376
  // src/forge/project-membership.ts
6373
- import { z as z200 } from "zod";
6374
- var ForgeProjectRole = z200.enum(["Viewer", "Editor", "Admin"]);
6375
- var ForgeProjectMembership = z200.object({
6376
- userId: z200.string(),
6377
- forgeProjectId: z200.string(),
6378
- workspaceMembershipId: z200.string(),
6377
+ import { z as z201 } from "zod";
6378
+ var ForgeProjectRole = z201.enum(["Viewer", "Editor", "Admin"]);
6379
+ var ForgeProjectMembership = z201.object({
6380
+ userId: z201.string(),
6381
+ forgeProjectId: z201.string(),
6382
+ workspaceMembershipId: z201.string(),
6379
6383
  workspaceRole: WorkspaceRoleSchema,
6380
6384
  role: ForgeProjectRole
6381
6385
  });
6382
6386
 
6383
6387
  // src/forge/project-invitation.ts
6384
- var ForgeProjectInvitation = z201.object({
6385
- email: z201.string().email(),
6386
- forgeProjectId: z201.string(),
6387
- workspaceInvitationId: z201.string(),
6388
+ var ForgeProjectInvitation = z202.object({
6389
+ email: z202.string().email(),
6390
+ forgeProjectId: z202.string(),
6391
+ workspaceInvitationId: z202.string(),
6388
6392
  role: ForgeProjectRole,
6389
- createdAt: z201.coerce.date(),
6390
- updatedAt: z201.coerce.date(),
6391
- createdById: z201.string()
6393
+ createdAt: z202.coerce.date(),
6394
+ updatedAt: z202.coerce.date(),
6395
+ createdById: z202.string()
6392
6396
  });
6393
6397
 
6394
6398
  // src/forge/project-iteration.ts
6395
- import { z as z202 } from "zod";
6396
- var ForgeProjectIterationMergeMeta = z202.object({ mergeByUserId: z202.string(), mergeAt: z202.date() });
6397
- var ForgeProjectIteration = z202.object({
6398
- branchId: z202.string().optional(),
6399
- buildArtifactId: z202.string(),
6400
- createdAt: z202.coerce.date(),
6401
- forgeProjectId: z202.string(),
6402
- id: z202.string(),
6403
- locked: z202.boolean(),
6404
- messages: z202.array(ForgeIterationMessage),
6405
- artifacts: z202.array(ForgeArtifact),
6406
- previousIterationId: z202.string().optional(),
6399
+ import { z as z203 } from "zod";
6400
+ var ForgeProjectIterationMergeMeta = z203.object({ mergeByUserId: z203.string(), mergeAt: z203.date() });
6401
+ var ForgeProjectIteration = z203.object({
6402
+ branchId: z203.string().optional(),
6403
+ buildArtifactId: z203.string(),
6404
+ createdAt: z203.coerce.date(),
6405
+ forgeProjectId: z203.string(),
6406
+ id: z203.string(),
6407
+ locked: z203.boolean(),
6408
+ messages: z203.array(ForgeIterationMessage),
6409
+ artifacts: z203.array(ForgeArtifact),
6410
+ previousIterationId: z203.string().optional(),
6407
6411
  mergeMeta: ForgeProjectIterationMergeMeta.optional()
6408
6412
  });
6409
6413
 
6410
6414
  // src/forge/project.ts
6411
- import { z as z203 } from "zod";
6412
- var ForgeProjectTag = z203.array(z203.string()).default([]);
6413
- var ForgeProjectAccessMode = z203.enum(["InviteOnly", "Open"]);
6414
- var ForgeProject = z203.object({
6415
- createdAt: z203.coerce.date(),
6416
- createdByUserId: z203.string().optional(),
6417
- fpContextId: z203.string(),
6418
- id: z203.string(),
6419
- instruction: z203.string().nullable(),
6415
+ import { z as z204 } from "zod";
6416
+ var ForgeProjectTag = z204.array(z204.string()).default([]);
6417
+ var ForgeProjectAccessMode = z204.enum(["InviteOnly", "Open"]);
6418
+ var ForgeProject = z204.object({
6419
+ createdAt: z204.coerce.date(),
6420
+ createdByUserId: z204.string().optional(),
6421
+ fpContextId: z204.string(),
6422
+ id: z204.string(),
6423
+ instruction: z204.string().nullable(),
6420
6424
  meta: ForgeMeta,
6421
- name: z203.string(),
6425
+ name: z204.string(),
6422
6426
  tags: ForgeProjectTag,
6423
- updatedAt: z203.coerce.date().optional(),
6424
- workspaceId: z203.string(),
6427
+ updatedAt: z204.coerce.date().optional(),
6428
+ workspaceId: z204.string(),
6425
6429
  accessMode: ForgeProjectAccessMode,
6426
- isArchived: z203.boolean().optional()
6430
+ isArchived: z204.boolean().optional()
6427
6431
  });
6428
6432
 
6429
6433
  // src/integrations/external-oauth-request.ts
6430
- import { z as z205 } from "zod";
6434
+ import { z as z206 } from "zod";
6431
6435
 
6432
6436
  // src/integrations/oauth-providers.ts
6433
- import { z as z204 } from "zod";
6437
+ import { z as z205 } from "zod";
6434
6438
  var OAuthProviderNames = /* @__PURE__ */ ((OAuthProviderNames2) => {
6435
6439
  OAuthProviderNames2["Figma"] = "figma";
6436
6440
  OAuthProviderNames2["Azure"] = "azure";
@@ -6439,152 +6443,152 @@ var OAuthProviderNames = /* @__PURE__ */ ((OAuthProviderNames2) => {
6439
6443
  OAuthProviderNames2["Bitbucket"] = "bitbucket";
6440
6444
  return OAuthProviderNames2;
6441
6445
  })(OAuthProviderNames || {});
6442
- var OAuthProviderSchema = z204.nativeEnum(OAuthProviderNames);
6446
+ var OAuthProviderSchema = z205.nativeEnum(OAuthProviderNames);
6443
6447
  var OAuthProvider = OAuthProviderSchema.enum;
6444
6448
 
6445
6449
  // src/integrations/external-oauth-request.ts
6446
- var ExternalOAuthRequest = z205.object({
6447
- id: z205.string(),
6450
+ var ExternalOAuthRequest = z206.object({
6451
+ id: z206.string(),
6448
6452
  provider: OAuthProviderSchema,
6449
- userId: z205.string(),
6450
- state: z205.string(),
6451
- createdAt: z205.coerce.date()
6453
+ userId: z206.string(),
6454
+ state: z206.string(),
6455
+ createdAt: z206.coerce.date()
6452
6456
  });
6453
6457
 
6454
6458
  // src/integrations/git.ts
6455
- import { z as z206 } from "zod";
6456
- var GitObjectsQuery = z206.object({
6457
- organization: z206.string().optional(),
6459
+ import { z as z207 } from "zod";
6460
+ var GitObjectsQuery = z207.object({
6461
+ organization: z207.string().optional(),
6458
6462
  // Azure Organization | Bitbucket Workspace slug | Gitlab Group | Github Account (User or Organization)
6459
- project: z206.string().optional(),
6463
+ project: z207.string().optional(),
6460
6464
  // Only for Bitbucket and Azure
6461
- repository: z206.string().optional(),
6465
+ repository: z207.string().optional(),
6462
6466
  // For all providers. For Gitlab, it's called "project".
6463
- branch: z206.string().optional(),
6467
+ branch: z207.string().optional(),
6464
6468
  // For all providers.
6465
- user: z206.string().optional()
6469
+ user: z207.string().optional()
6466
6470
  // Gitlab user
6467
6471
  });
6468
- var GitOrganization = z206.object({
6469
- id: z206.string(),
6470
- name: z206.string(),
6471
- url: z206.string(),
6472
- slug: z206.string()
6472
+ var GitOrganization = z207.object({
6473
+ id: z207.string(),
6474
+ name: z207.string(),
6475
+ url: z207.string(),
6476
+ slug: z207.string()
6473
6477
  });
6474
- var GitProject = z206.object({
6475
- id: z206.string(),
6476
- name: z206.string(),
6477
- url: z206.string(),
6478
- slug: z206.string()
6478
+ var GitProject = z207.object({
6479
+ id: z207.string(),
6480
+ name: z207.string(),
6481
+ url: z207.string(),
6482
+ slug: z207.string()
6479
6483
  });
6480
- var GitRepository = z206.object({
6481
- id: z206.string(),
6482
- name: z206.string(),
6483
- url: z206.string(),
6484
- slug: z206.string(),
6484
+ var GitRepository = z207.object({
6485
+ id: z207.string(),
6486
+ name: z207.string(),
6487
+ url: z207.string(),
6488
+ slug: z207.string(),
6485
6489
  /**
6486
6490
  * Can be undefined when:
6487
6491
  * - there are no branches in the repository yet
6488
6492
  * - Git provider doesn't expose this information on a repository via their API
6489
6493
  */
6490
- defaultBranch: z206.string().optional()
6494
+ defaultBranch: z207.string().optional()
6491
6495
  });
6492
- var GitBranch = z206.object({
6493
- name: z206.string(),
6494
- lastCommitId: z206.string()
6496
+ var GitBranch = z207.object({
6497
+ name: z207.string(),
6498
+ lastCommitId: z207.string()
6495
6499
  });
6496
6500
 
6497
6501
  // src/integrations/oauth-token.ts
6498
- import { z as z207 } from "zod";
6499
- var IntegrationTokenSchemaOld = z207.object({
6500
- id: z207.string(),
6502
+ import { z as z208 } from "zod";
6503
+ var IntegrationTokenSchemaOld = z208.object({
6504
+ id: z208.string(),
6501
6505
  provider: OAuthProviderSchema,
6502
- scope: z207.string(),
6503
- userId: z207.string(),
6504
- accessToken: z207.string(),
6505
- refreshToken: z207.string(),
6506
- expiresAt: z207.coerce.date(),
6507
- externalUserId: z207.string().nullish()
6506
+ scope: z208.string(),
6507
+ userId: z208.string(),
6508
+ accessToken: z208.string(),
6509
+ refreshToken: z208.string(),
6510
+ expiresAt: z208.coerce.date(),
6511
+ externalUserId: z208.string().nullish()
6508
6512
  });
6509
6513
 
6510
6514
  // src/integrations/workspace-oauth-requests.ts
6511
- import { z as z208 } from "zod";
6512
- var WorkspaceOAuthRequestSchema = z208.object({
6513
- id: z208.string(),
6514
- workspaceId: z208.string(),
6515
+ import { z as z209 } from "zod";
6516
+ var WorkspaceOAuthRequestSchema = z209.object({
6517
+ id: z209.string(),
6518
+ workspaceId: z209.string(),
6515
6519
  provider: OAuthProviderSchema,
6516
- userId: z208.string(),
6517
- createdAt: z208.coerce.date()
6520
+ userId: z209.string(),
6521
+ createdAt: z209.coerce.date()
6518
6522
  });
6519
6523
 
6520
6524
  // src/npm/npm-package.ts
6521
- import { z as z209 } from "zod";
6522
- var AnyRecord = z209.record(z209.any());
6525
+ import { z as z210 } from "zod";
6526
+ var AnyRecord = z210.record(z210.any());
6523
6527
  var NpmPackageVersionDist = AnyRecord.and(
6524
- z209.object({
6525
- tarball: z209.string()
6528
+ z210.object({
6529
+ tarball: z210.string()
6526
6530
  })
6527
6531
  );
6528
6532
  var NpmPackageVersion = AnyRecord.and(
6529
- z209.object({
6533
+ z210.object({
6530
6534
  dist: NpmPackageVersionDist
6531
6535
  })
6532
6536
  );
6533
6537
  var NpmPackage = AnyRecord.and(
6534
- z209.object({
6535
- _id: z209.string(),
6536
- name: z209.string(),
6538
+ z210.object({
6539
+ _id: z210.string(),
6540
+ name: z210.string(),
6537
6541
  // e.g. "latest": "1.2.3"
6538
- "dist-tags": z209.record(z209.string(), z209.string()),
6542
+ "dist-tags": z210.record(z210.string(), z210.string()),
6539
6543
  // "1.2.3": {...}
6540
- versions: z209.record(NpmPackageVersion)
6544
+ versions: z210.record(NpmPackageVersion)
6541
6545
  })
6542
6546
  );
6543
6547
 
6544
6548
  // src/npm/npm-proxy-token-payload.ts
6545
- import { z as z210 } from "zod";
6546
- var NpmProxyTokenPayload = z210.object({
6547
- npmProxyRegistryConfigId: z210.string()
6549
+ import { z as z211 } from "zod";
6550
+ var NpmProxyTokenPayload = z211.object({
6551
+ npmProxyRegistryConfigId: z211.string()
6548
6552
  });
6549
6553
 
6550
6554
  // src/portal/portal-settings.ts
6551
- import { z as z211 } from "zod";
6555
+ import { z as z212 } from "zod";
6552
6556
  var PortalSettingsTheme = UserTheme;
6553
- var PortalSettingsSidebarLink = z211.object({
6554
- name: z211.string(),
6555
- url: z211.string(),
6556
- emoji: z211.string()
6557
- });
6558
- var PortalSettingsSidebarSection = z211.object({
6559
- sectionName: z211.string(),
6560
- links: z211.array(PortalSettingsSidebarLink)
6561
- });
6562
- var PortalSettingsSidebar = z211.array(PortalSettingsSidebarSection);
6563
- var PortalSettings = z211.object({
6564
- id: z211.string(),
6565
- workspaceId: z211.string(),
6566
- enabledDesignSystemIds: z211.array(z211.string()),
6567
- enabledBrandPersistentIds: z211.array(z211.string()),
6557
+ var PortalSettingsSidebarLink = z212.object({
6558
+ name: z212.string(),
6559
+ url: z212.string(),
6560
+ emoji: z212.string()
6561
+ });
6562
+ var PortalSettingsSidebarSection = z212.object({
6563
+ sectionName: z212.string(),
6564
+ links: z212.array(PortalSettingsSidebarLink)
6565
+ });
6566
+ var PortalSettingsSidebar = z212.array(PortalSettingsSidebarSection);
6567
+ var PortalSettings = z212.object({
6568
+ id: z212.string(),
6569
+ workspaceId: z212.string(),
6570
+ enabledDesignSystemIds: z212.array(z212.string()),
6571
+ enabledBrandPersistentIds: z212.array(z212.string()),
6568
6572
  theme: PortalSettingsTheme.nullish(),
6569
6573
  sidebar: PortalSettingsSidebar.nullish(),
6570
- createdAt: z211.coerce.date(),
6571
- updatedAt: z211.coerce.date()
6574
+ createdAt: z212.coerce.date(),
6575
+ updatedAt: z212.coerce.date()
6572
6576
  });
6573
6577
 
6574
6578
  // src/tokens/personal-access-token.ts
6575
- import { z as z212 } from "zod";
6576
- var PersonalAccessToken = z212.object({
6577
- id: z212.string(),
6578
- userId: z212.string(),
6579
- workspaceId: z212.string().optional(),
6580
- designSystemId: z212.string().optional(),
6579
+ import { z as z213 } from "zod";
6580
+ var PersonalAccessToken = z213.object({
6581
+ id: z213.string(),
6582
+ userId: z213.string(),
6583
+ workspaceId: z213.string().optional(),
6584
+ designSystemId: z213.string().optional(),
6581
6585
  workspaceRole: WorkspaceRoleSchema.optional(),
6582
- name: z212.string(),
6583
- hidden: z212.boolean(),
6584
- token: z212.string(),
6585
- scope: z212.string().optional(),
6586
- createdAt: z212.coerce.date(),
6587
- expireAt: z212.coerce.date().optional()
6586
+ name: z213.string(),
6587
+ hidden: z213.boolean(),
6588
+ token: z213.string(),
6589
+ scope: z213.string().optional(),
6590
+ createdAt: z213.coerce.date(),
6591
+ expireAt: z213.coerce.date().optional()
6588
6592
  });
6589
6593
  export {
6590
6594
  Address,
@@ -6947,6 +6951,7 @@ export {
6947
6951
  HANDLE_MIN_LENGTH,
6948
6952
  HierarchicalElements,
6949
6953
  IconSet,
6954
+ Id,
6950
6955
  ImageImportModel,
6951
6956
  ImageImportModelType,
6952
6957
  ImportFunctionInput,