@supernova-studio/client 1.19.3 → 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.d.mts +140 -2
- package/dist/index.d.ts +140 -2
- package/dist/index.js +27 -3
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +26 -2
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -9133,9 +9133,15 @@ var DTOFeatureArtifact = z310.object({
|
|
|
9133
9133
|
*/
|
|
9134
9134
|
name: z310.string(),
|
|
9135
9135
|
/**
|
|
9136
|
-
*
|
|
9136
|
+
* Id of the project file that holds content of this artifact
|
|
9137
9137
|
*/
|
|
9138
|
-
|
|
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()
|
|
9139
9145
|
});
|
|
9140
9146
|
var DTOFeatureIteration = z310.object({
|
|
9141
9147
|
id: Id,
|
|
@@ -9173,6 +9179,14 @@ var DTOFeatureMessageReactionDeleteInput = z310.object({
|
|
|
9173
9179
|
messageId: Id,
|
|
9174
9180
|
emoji: z310.string()
|
|
9175
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
|
+
});
|
|
9176
9190
|
var DTOFeatureMessageResponse = z310.object({
|
|
9177
9191
|
message: DTOFeatureMessage
|
|
9178
9192
|
});
|
|
@@ -9184,6 +9198,12 @@ var DTOFeatureMessageListResponse = z310.object({
|
|
|
9184
9198
|
reactions: DTOFeatureMessageReaction.array(),
|
|
9185
9199
|
lastSeenMessageId: z310.string().optional()
|
|
9186
9200
|
});
|
|
9201
|
+
var DTOFeatureArtifactResponse = z310.object({
|
|
9202
|
+
artifact: DTOFeatureArtifact
|
|
9203
|
+
});
|
|
9204
|
+
var DTOFeatureArtifactListResponse = z310.object({
|
|
9205
|
+
artifacts: DTOFeatureArtifact.array()
|
|
9206
|
+
});
|
|
9187
9207
|
var DTOFeatureEventMessagesSent = z310.object({
|
|
9188
9208
|
type: z310.literal("MessagesSent"),
|
|
9189
9209
|
data: DTOFeatureMessage.array()
|
|
@@ -18051,6 +18071,10 @@ export {
|
|
|
18051
18071
|
DTOExporterUpdateInput,
|
|
18052
18072
|
DTOFeatureAgentResponseTracker,
|
|
18053
18073
|
DTOFeatureArtifact,
|
|
18074
|
+
DTOFeatureArtifactCreateInput,
|
|
18075
|
+
DTOFeatureArtifactDeleteInput,
|
|
18076
|
+
DTOFeatureArtifactListResponse,
|
|
18077
|
+
DTOFeatureArtifactResponse,
|
|
18054
18078
|
DTOFeatureEvent,
|
|
18055
18079
|
DTOFeatureEventAgentResponseFinished,
|
|
18056
18080
|
DTOFeatureEventMessagesSent,
|