@supernova-studio/client 1.51.0 → 1.52.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.d.mts +93 -8
- package/dist/index.d.ts +93 -8
- package/dist/index.js +7 -4
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +7 -4
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -350,7 +350,8 @@ var FeaturesSummary = z7.object({
|
|
|
350
350
|
forgeActiveFeaturesPerProject: featureLimitedSchema,
|
|
351
351
|
forgeActiveDocumentsPerProject: featureLimitedSchema,
|
|
352
352
|
forgePrivateProjects: featureToggleSchema,
|
|
353
|
-
forgeActiveProjectContexts: featureLimitedSchema
|
|
353
|
+
forgeActiveProjectContexts: featureLimitedSchema,
|
|
354
|
+
sandboxTemplates: featureToggleSchema
|
|
354
355
|
});
|
|
355
356
|
var InvoiceSchema = z8.object({
|
|
356
357
|
id: z8.string(),
|
|
@@ -10961,13 +10962,15 @@ var DTOSandboxTemplateBuildCreateInput = z342.object({
|
|
|
10961
10962
|
workspaceId: z342.string(),
|
|
10962
10963
|
designSystemId: z342.string(),
|
|
10963
10964
|
name: z342.string(),
|
|
10964
|
-
version: z342.string()
|
|
10965
|
+
version: z342.string(),
|
|
10966
|
+
isExistingVersionUpdateAllowed: z342.boolean()
|
|
10965
10967
|
});
|
|
10966
10968
|
var DTOSandboxTemplateBuildCreateResponse = z342.object({
|
|
10967
10969
|
/** @deprecated use domain + build.dockerImagePath */
|
|
10968
|
-
dockerUrl: z342.string(),
|
|
10970
|
+
dockerUrl: z342.string().optional(),
|
|
10969
10971
|
dockerRegistryDomain: z342.string(),
|
|
10970
|
-
|
|
10972
|
+
/** @deprecated use docker-login endpoint */
|
|
10973
|
+
dockerAccessToken: z342.string().optional(),
|
|
10971
10974
|
build: DTOSandboxTemplateBuild
|
|
10972
10975
|
});
|
|
10973
10976
|
var DTOSandboxTemplateBuildFinalizeResponse = z342.object({
|