@supernova-studio/client 1.19.2 → 1.19.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.mjs CHANGED
@@ -9128,9 +9128,20 @@ var DTOFeatureAgentResponseTracker = z310.object({
9128
9128
  });
9129
9129
  var DTOFeatureArtifact = z310.object({
9130
9130
  id: Id,
9131
- url: z310.string()
9132
- // Implied:
9133
- // type: z.literal("Build"),
9131
+ /**
9132
+ * Name of the artifact, can include path like `src/components/button.tsx`
9133
+ */
9134
+ name: z310.string(),
9135
+ /**
9136
+ * Id of the project file that holds content of this artifact
9137
+ */
9138
+ fileId: z310.string(),
9139
+ /**
9140
+ * URL of the feature artifact's contents
9141
+ */
9142
+ url: z310.string(),
9143
+ createdAt: z310.coerce.date(),
9144
+ updatedAt: z310.coerce.date()
9134
9145
  });
9135
9146
  var DTOFeatureIteration = z310.object({
9136
9147
  id: Id,
@@ -9168,6 +9179,14 @@ var DTOFeatureMessageReactionDeleteInput = z310.object({
9168
9179
  messageId: Id,
9169
9180
  emoji: z310.string()
9170
9181
  });
9182
+ var DTOFeatureArtifactCreateInput = z310.object({
9183
+ id: Id,
9184
+ name: z310.string(),
9185
+ fileId: z310.string()
9186
+ });
9187
+ var DTOFeatureArtifactDeleteInput = z310.object({
9188
+ id: Id
9189
+ });
9171
9190
  var DTOFeatureMessageResponse = z310.object({
9172
9191
  message: DTOFeatureMessage
9173
9192
  });
@@ -9179,6 +9198,12 @@ var DTOFeatureMessageListResponse = z310.object({
9179
9198
  reactions: DTOFeatureMessageReaction.array(),
9180
9199
  lastSeenMessageId: z310.string().optional()
9181
9200
  });
9201
+ var DTOFeatureArtifactResponse = z310.object({
9202
+ artifact: DTOFeatureArtifact
9203
+ });
9204
+ var DTOFeatureArtifactListResponse = z310.object({
9205
+ artifacts: DTOFeatureArtifact.array()
9206
+ });
9182
9207
  var DTOFeatureEventMessagesSent = z310.object({
9183
9208
  type: z310.literal("MessagesSent"),
9184
9209
  data: DTOFeatureMessage.array()
@@ -18046,6 +18071,10 @@ export {
18046
18071
  DTOExporterUpdateInput,
18047
18072
  DTOFeatureAgentResponseTracker,
18048
18073
  DTOFeatureArtifact,
18074
+ DTOFeatureArtifactCreateInput,
18075
+ DTOFeatureArtifactDeleteInput,
18076
+ DTOFeatureArtifactListResponse,
18077
+ DTOFeatureArtifactResponse,
18049
18078
  DTOFeatureEvent,
18050
18079
  DTOFeatureEventAgentResponseFinished,
18051
18080
  DTOFeatureEventMessagesSent,