@supernova-studio/model 1.42.6 → 1.42.7

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 CHANGED
@@ -155281,45 +155281,6 @@ declare const ForgeParticipant: z.ZodObject<{
155281
155281
  }>;
155282
155282
  type ForgeParticipant = z.infer<typeof ForgeParticipant>;
155283
155283
 
155284
- declare const ForgeProjectArtifact: z.ZodObject<{
155285
- id: z.ZodString;
155286
- projectId: z.ZodString;
155287
- iterationId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
155288
- title: z.ZodString;
155289
- previewUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
155290
- sortOrder: z.ZodDefault<z.ZodNumber>;
155291
- createdAt: z.ZodDate;
155292
- updatedAt: z.ZodDate;
155293
- createdByUserId: z.ZodString;
155294
- sectionId: z.ZodOptional<z.ZodString>;
155295
- threadId: z.ZodOptional<z.ZodString>;
155296
- }, "strip", z.ZodTypeAny, {
155297
- id: string;
155298
- createdAt: Date;
155299
- updatedAt: Date;
155300
- title: string;
155301
- sortOrder: number;
155302
- createdByUserId: string;
155303
- projectId: string;
155304
- threadId?: string | undefined;
155305
- previewUrl?: string | null | undefined;
155306
- iterationId?: string | null | undefined;
155307
- sectionId?: string | undefined;
155308
- }, {
155309
- id: string;
155310
- createdAt: Date;
155311
- updatedAt: Date;
155312
- title: string;
155313
- createdByUserId: string;
155314
- projectId: string;
155315
- threadId?: string | undefined;
155316
- sortOrder?: number | undefined;
155317
- previewUrl?: string | null | undefined;
155318
- iterationId?: string | null | undefined;
155319
- sectionId?: string | undefined;
155320
- }>;
155321
- type ForgeProjectArtifact = z.infer<typeof ForgeProjectArtifact>;
155322
-
155323
155284
  declare const ForgeProjectArtifactContent: z.ZodObject<{
155324
155285
  id: z.ZodString;
155325
155286
  artifactId: z.ZodString;
@@ -157318,6 +157279,45 @@ declare const ForgeProjectArtifactContentData: z.ZodObject<{
157318
157279
  }>;
157319
157280
  type ForgeProjectArtifactContentData = z.infer<typeof ForgeProjectArtifactContentData>;
157320
157281
 
157282
+ declare const ForgeProjectArtifact: z.ZodObject<{
157283
+ id: z.ZodString;
157284
+ projectId: z.ZodString;
157285
+ iterationId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
157286
+ title: z.ZodString;
157287
+ previewUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
157288
+ sortOrder: z.ZodDefault<z.ZodNumber>;
157289
+ createdAt: z.ZodDate;
157290
+ updatedAt: z.ZodDate;
157291
+ createdByUserId: z.ZodString;
157292
+ sectionId: z.ZodOptional<z.ZodString>;
157293
+ threadId: z.ZodOptional<z.ZodString>;
157294
+ }, "strip", z.ZodTypeAny, {
157295
+ id: string;
157296
+ createdAt: Date;
157297
+ updatedAt: Date;
157298
+ title: string;
157299
+ sortOrder: number;
157300
+ createdByUserId: string;
157301
+ projectId: string;
157302
+ threadId?: string | undefined;
157303
+ previewUrl?: string | null | undefined;
157304
+ iterationId?: string | null | undefined;
157305
+ sectionId?: string | undefined;
157306
+ }, {
157307
+ id: string;
157308
+ createdAt: Date;
157309
+ updatedAt: Date;
157310
+ title: string;
157311
+ createdByUserId: string;
157312
+ projectId: string;
157313
+ threadId?: string | undefined;
157314
+ sortOrder?: number | undefined;
157315
+ previewUrl?: string | null | undefined;
157316
+ iterationId?: string | null | undefined;
157317
+ sectionId?: string | undefined;
157318
+ }>;
157319
+ type ForgeProjectArtifact = z.infer<typeof ForgeProjectArtifact>;
157320
+
157321
157321
  declare const ProjectFeatureStatus: z.ZodEnum<["Draft", "ReadyForDevelopment"]>;
157322
157322
  declare const ProjectFeature: z.ZodObject<{
157323
157323
  createdAt: z.ZodDate;
package/dist/index.d.ts CHANGED
@@ -155281,45 +155281,6 @@ declare const ForgeParticipant: z.ZodObject<{
155281
155281
  }>;
155282
155282
  type ForgeParticipant = z.infer<typeof ForgeParticipant>;
155283
155283
 
155284
- declare const ForgeProjectArtifact: z.ZodObject<{
155285
- id: z.ZodString;
155286
- projectId: z.ZodString;
155287
- iterationId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
155288
- title: z.ZodString;
155289
- previewUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
155290
- sortOrder: z.ZodDefault<z.ZodNumber>;
155291
- createdAt: z.ZodDate;
155292
- updatedAt: z.ZodDate;
155293
- createdByUserId: z.ZodString;
155294
- sectionId: z.ZodOptional<z.ZodString>;
155295
- threadId: z.ZodOptional<z.ZodString>;
155296
- }, "strip", z.ZodTypeAny, {
155297
- id: string;
155298
- createdAt: Date;
155299
- updatedAt: Date;
155300
- title: string;
155301
- sortOrder: number;
155302
- createdByUserId: string;
155303
- projectId: string;
155304
- threadId?: string | undefined;
155305
- previewUrl?: string | null | undefined;
155306
- iterationId?: string | null | undefined;
155307
- sectionId?: string | undefined;
155308
- }, {
155309
- id: string;
155310
- createdAt: Date;
155311
- updatedAt: Date;
155312
- title: string;
155313
- createdByUserId: string;
155314
- projectId: string;
155315
- threadId?: string | undefined;
155316
- sortOrder?: number | undefined;
155317
- previewUrl?: string | null | undefined;
155318
- iterationId?: string | null | undefined;
155319
- sectionId?: string | undefined;
155320
- }>;
155321
- type ForgeProjectArtifact = z.infer<typeof ForgeProjectArtifact>;
155322
-
155323
155284
  declare const ForgeProjectArtifactContent: z.ZodObject<{
155324
155285
  id: z.ZodString;
155325
155286
  artifactId: z.ZodString;
@@ -157318,6 +157279,45 @@ declare const ForgeProjectArtifactContentData: z.ZodObject<{
157318
157279
  }>;
157319
157280
  type ForgeProjectArtifactContentData = z.infer<typeof ForgeProjectArtifactContentData>;
157320
157281
 
157282
+ declare const ForgeProjectArtifact: z.ZodObject<{
157283
+ id: z.ZodString;
157284
+ projectId: z.ZodString;
157285
+ iterationId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
157286
+ title: z.ZodString;
157287
+ previewUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
157288
+ sortOrder: z.ZodDefault<z.ZodNumber>;
157289
+ createdAt: z.ZodDate;
157290
+ updatedAt: z.ZodDate;
157291
+ createdByUserId: z.ZodString;
157292
+ sectionId: z.ZodOptional<z.ZodString>;
157293
+ threadId: z.ZodOptional<z.ZodString>;
157294
+ }, "strip", z.ZodTypeAny, {
157295
+ id: string;
157296
+ createdAt: Date;
157297
+ updatedAt: Date;
157298
+ title: string;
157299
+ sortOrder: number;
157300
+ createdByUserId: string;
157301
+ projectId: string;
157302
+ threadId?: string | undefined;
157303
+ previewUrl?: string | null | undefined;
157304
+ iterationId?: string | null | undefined;
157305
+ sectionId?: string | undefined;
157306
+ }, {
157307
+ id: string;
157308
+ createdAt: Date;
157309
+ updatedAt: Date;
157310
+ title: string;
157311
+ createdByUserId: string;
157312
+ projectId: string;
157313
+ threadId?: string | undefined;
157314
+ sortOrder?: number | undefined;
157315
+ previewUrl?: string | null | undefined;
157316
+ iterationId?: string | null | undefined;
157317
+ sectionId?: string | undefined;
157318
+ }>;
157319
+ type ForgeProjectArtifact = z.infer<typeof ForgeProjectArtifact>;
157320
+
157321
157321
  declare const ProjectFeatureStatus: z.ZodEnum<["Draft", "ReadyForDevelopment"]>;
157322
157322
  declare const ProjectFeature: z.ZodObject<{
157323
157323
  createdAt: z.ZodDate;
package/dist/index.js CHANGED
@@ -5882,6 +5882,18 @@ var ForgeIterationMessage = _zod.z.object({
5882
5882
  text: _zod.z.string()
5883
5883
  });
5884
5884
 
5885
+ // src/forge/project-artifact-content.ts
5886
+
5887
+ var ForgeProjectArtifactContentData = DocumentationPageContentData;
5888
+ var ForgeProjectArtifactContent = _zod.z.object({
5889
+ id: _zod.z.string(),
5890
+ artifactId: _zod.z.string(),
5891
+ projectId: _zod.z.string(),
5892
+ createdAt: _zod.z.coerce.date(),
5893
+ updatedAt: _zod.z.coerce.date(),
5894
+ data: ForgeProjectArtifactContentData
5895
+ });
5896
+
5885
5897
  // src/forge/project-artifact.ts
5886
5898
 
5887
5899
 
@@ -5914,18 +5926,6 @@ var ForgeProjectArtifact = _zod.z.object({
5914
5926
  threadId: _zod.z.string().optional()
5915
5927
  });
5916
5928
 
5917
- // src/forge/project-artifact-content.ts
5918
-
5919
- var ForgeProjectArtifactContentData = DocumentationPageContentData;
5920
- var ForgeProjectArtifactContent = _zod.z.object({
5921
- id: _zod.z.string(),
5922
- artifactId: _zod.z.string(),
5923
- projectId: _zod.z.string(),
5924
- createdAt: _zod.z.coerce.date(),
5925
- updatedAt: _zod.z.coerce.date(),
5926
- data: ForgeProjectArtifactContentData
5927
- });
5928
-
5929
5929
  // src/forge/project-feature.ts
5930
5930
 
5931
5931
  var ProjectFeatureStatus = _zod.z.enum(["Draft", "ReadyForDevelopment"]);