@supernova-studio/client 1.65.3 → 1.66.0
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 +42 -12
- package/dist/index.d.ts +42 -12
- package/dist/index.js +5 -3
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +4 -2
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -10211,7 +10211,7 @@ var DTOForgeProjectPublishedFeature = z322.object({
|
|
|
10211
10211
|
iterationName: z322.string(),
|
|
10212
10212
|
hideSupernovaUI: z322.boolean(),
|
|
10213
10213
|
thumbnailUrl: z322.string().optional(),
|
|
10214
|
-
staticPreviewUrl: z322.string(),
|
|
10214
|
+
staticPreviewUrl: z322.string().optional(),
|
|
10215
10215
|
// These are only included when authenticated user has access to the project (for both public & private published features)
|
|
10216
10216
|
projectId: z322.string().optional(),
|
|
10217
10217
|
projectName: z322.string().optional(),
|
|
@@ -10482,7 +10482,7 @@ var DTOForgeProjectContextUpdateV2 = DTOForgeProjectContextV2.omit({
|
|
|
10482
10482
|
updatedAt: true,
|
|
10483
10483
|
thumbnail: true
|
|
10484
10484
|
}).partial().extend({
|
|
10485
|
-
thumbnailFileId: z325.string().
|
|
10485
|
+
thumbnailFileId: z325.string().nullish()
|
|
10486
10486
|
});
|
|
10487
10487
|
var DTOForgeProjectContextResponseV2 = z325.object({ context: DTOForgeProjectContextV2 });
|
|
10488
10488
|
var DTOForgeProjectContextListQueryV2 = z325.object({
|
|
@@ -10898,6 +10898,7 @@ var DTOForgeProjectFeaturePreview = z333.object({
|
|
|
10898
10898
|
id: z333.string(),
|
|
10899
10899
|
name: z333.string(),
|
|
10900
10900
|
thumbnail: DTOFileReference.optional(),
|
|
10901
|
+
isPublished: z333.boolean().optional(),
|
|
10901
10902
|
createdAt: z333.string(),
|
|
10902
10903
|
updatedAt: z333.string()
|
|
10903
10904
|
});
|
|
@@ -20846,6 +20847,7 @@ export {
|
|
|
20846
20847
|
ForgeDocumentsEndpoint,
|
|
20847
20848
|
ForgeEndpoint,
|
|
20848
20849
|
ForgeFeatureArtifactsEndpoint,
|
|
20850
|
+
ForgeFeatureIterationTagsEndpoint,
|
|
20849
20851
|
ForgeFeatureIterationsEndpoint,
|
|
20850
20852
|
ForgeFeatureMessagesEndpoint,
|
|
20851
20853
|
ForgeMemoryEndpoint,
|