@supernova-studio/client 1.76.2 → 1.77.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 +36 -8
- package/dist/index.d.ts +36 -8
- package/dist/index.js +9 -5
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +9 -5
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -3723,15 +3723,13 @@ var CollectionImportModelInput = z100.object({
|
|
|
3723
3723
|
id: z100.string(),
|
|
3724
3724
|
name: z100.string(),
|
|
3725
3725
|
parentId: z100.string().optional(),
|
|
3726
|
-
parentPersistentId: z100.string().optional(),
|
|
3727
3726
|
collectionKeyMigrated: z100.boolean()
|
|
3728
3727
|
});
|
|
3729
3728
|
var CollectionImportModel = z100.object({
|
|
3730
3729
|
id: z100.string(),
|
|
3731
3730
|
parentId: z100.string().optional(),
|
|
3732
3731
|
name: z100.string(),
|
|
3733
|
-
origin: CollectionOrigin
|
|
3734
|
-
parentPersistentId: z100.string().optional()
|
|
3732
|
+
origin: CollectionOrigin
|
|
3735
3733
|
});
|
|
3736
3734
|
var ImportModelBase = z101.object({
|
|
3737
3735
|
id: z101.string(),
|
|
@@ -7080,7 +7078,7 @@ var Collection2 = z235.object({
|
|
|
7080
7078
|
});
|
|
7081
7079
|
var VariablesMapping = z235.object({
|
|
7082
7080
|
variableCollections: z235.array(z235.string()).min(1),
|
|
7083
|
-
variableCollectionKeys: z235.array(z235.string())
|
|
7081
|
+
variableCollectionKeys: z235.array(z235.string()),
|
|
7084
7082
|
variableMode: z235.string().min(1),
|
|
7085
7083
|
supernovaBrand: z235.string().min(1),
|
|
7086
7084
|
supernovaTheme: z235.string().min(1).nullable().optional()
|
|
@@ -11458,7 +11456,13 @@ var DTOSandboxTemplateBuildCreateInput = z346.object({
|
|
|
11458
11456
|
designSystemId: z346.string(),
|
|
11459
11457
|
name: z346.string(),
|
|
11460
11458
|
version: z346.string(),
|
|
11461
|
-
isExistingVersionUpdateAllowed: z346.boolean()
|
|
11459
|
+
isExistingVersionUpdateAllowed: z346.boolean(),
|
|
11460
|
+
templates: z346.object({
|
|
11461
|
+
id: z346.string(),
|
|
11462
|
+
name: z346.string(),
|
|
11463
|
+
description: z346.string(),
|
|
11464
|
+
thumbnailUrl: z346.string().optional()
|
|
11465
|
+
}).array().optional()
|
|
11462
11466
|
});
|
|
11463
11467
|
var DTOSandboxTemplateBuildCreateResponse = z346.object({
|
|
11464
11468
|
/** @deprecated use domain + build.dockerImagePath */
|