@supernova-studio/client 1.75.0 → 1.76.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 +342 -22
- package/dist/index.d.ts +342 -22
- package/dist/index.js +13 -13
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +13 -13
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -3721,18 +3721,14 @@ var Collection = _zod.z.object({
|
|
|
3721
3721
|
});
|
|
3722
3722
|
var CollectionImportModelInput = _zod.z.object({
|
|
3723
3723
|
id: _zod.z.string(),
|
|
3724
|
-
legacyId: _zod.z.string(),
|
|
3725
3724
|
name: _zod.z.string(),
|
|
3726
3725
|
parentId: _zod.z.string().optional(),
|
|
3727
|
-
parentLegacyId: _zod.z.string().optional(),
|
|
3728
3726
|
parentPersistentId: _zod.z.string().optional(),
|
|
3729
3727
|
collectionKeyMigrated: _zod.z.boolean()
|
|
3730
3728
|
});
|
|
3731
3729
|
var CollectionImportModel = _zod.z.object({
|
|
3732
3730
|
id: _zod.z.string(),
|
|
3733
|
-
legacyId: _zod.z.string(),
|
|
3734
3731
|
parentId: _zod.z.string().optional(),
|
|
3735
|
-
parentLegacyId: _zod.z.string().optional(),
|
|
3736
3732
|
name: _zod.z.string(),
|
|
3737
3733
|
origin: CollectionOrigin,
|
|
3738
3734
|
parentPersistentId: _zod.z.string().optional()
|
|
@@ -3846,8 +3842,7 @@ var ThemeImportModel = _zod.z.object({
|
|
|
3846
3842
|
originSource: ThemeOriginSource,
|
|
3847
3843
|
overrides: _zod.z.array(ThemeOverrideImportModel),
|
|
3848
3844
|
sortOrder: _zod.z.number(),
|
|
3849
|
-
collectionIds: _zod.z.array(_zod.z.string()).optional()
|
|
3850
|
-
collectionLegacyIds: _zod.z.array(_zod.z.string()).optional()
|
|
3845
|
+
collectionIds: _zod.z.array(_zod.z.string()).optional()
|
|
3851
3846
|
});
|
|
3852
3847
|
var ThemeImportModelInput = _zod.z.object({
|
|
3853
3848
|
id: _zod.z.string(),
|
|
@@ -3855,8 +3850,7 @@ var ThemeImportModelInput = _zod.z.object({
|
|
|
3855
3850
|
meta: ObjectMeta,
|
|
3856
3851
|
originObjects: _zod.z.array(ThemeOriginObject),
|
|
3857
3852
|
overrides: _zod.z.array(ThemeOverrideImportModelInput),
|
|
3858
|
-
collectionIds: _zod.z.array(_zod.z.string()).optional()
|
|
3859
|
-
collectionLegacyIds: _zod.z.array(_zod.z.string()).optional()
|
|
3853
|
+
collectionIds: _zod.z.array(_zod.z.string()).optional()
|
|
3860
3854
|
});
|
|
3861
3855
|
var ThemeUpdateImportModel = _zod.z.object({
|
|
3862
3856
|
themePersistentId: _zod.z.string(),
|
|
@@ -3868,7 +3862,6 @@ var ThemeUpdateImportModelInput = _zod.z.object({
|
|
|
3868
3862
|
});
|
|
3869
3863
|
var DesignTokenImportModelPart = _zod.z.object({
|
|
3870
3864
|
collectionId: _zod.z.string().optional(),
|
|
3871
|
-
collectionLegacyId: _zod.z.string().optional(),
|
|
3872
3865
|
codeSyntax: _zod.z.record(_zod.z.coerce.string()).optional(),
|
|
3873
3866
|
scopes: _zod.z.array(_zod.z.string()).optional()
|
|
3874
3867
|
});
|
|
@@ -7058,7 +7051,7 @@ var Variable = _zod.z.object({
|
|
|
7058
7051
|
name: _zod.z.string(),
|
|
7059
7052
|
key: _zod.z.string(),
|
|
7060
7053
|
variableCollectionId: _zod.z.string(),
|
|
7061
|
-
variableCollectionKey: _zod.z.string()
|
|
7054
|
+
variableCollectionKey: _zod.z.string(),
|
|
7062
7055
|
resolvedType: ResolvedVariableType,
|
|
7063
7056
|
valuesByMode: _zod.z.record(VariableValue),
|
|
7064
7057
|
remote: _zod.z.boolean(),
|
|
@@ -7075,7 +7068,7 @@ var VariableMode = _zod.z.object({
|
|
|
7075
7068
|
var Collection2 = _zod.z.object({
|
|
7076
7069
|
id: _zod.z.string(),
|
|
7077
7070
|
name: _zod.z.string(),
|
|
7078
|
-
key: _zod.z.string()
|
|
7071
|
+
key: _zod.z.string(),
|
|
7079
7072
|
modes: _zod.z.array(VariableMode),
|
|
7080
7073
|
defaultModeId: _zod.z.string(),
|
|
7081
7074
|
remote: _zod.z.boolean(),
|
|
@@ -10108,7 +10101,8 @@ var DTOThreadReaction = _zod2.default.object({
|
|
|
10108
10101
|
});
|
|
10109
10102
|
var DTOThreadMessageAttachments = _zod2.default.object({
|
|
10110
10103
|
iterationId: Id.optional(),
|
|
10111
|
-
files: DTOFileReference.array().optional()
|
|
10104
|
+
files: DTOFileReference.array().optional(),
|
|
10105
|
+
templateId: _zod2.default.string().optional()
|
|
10112
10106
|
});
|
|
10113
10107
|
var DTOThreadMessage = _zod2.default.object({
|
|
10114
10108
|
id: Id,
|
|
@@ -11407,7 +11401,13 @@ var DTOSandboxTemplateVersion = _zod2.default.object({
|
|
|
11407
11401
|
name: _zod2.default.string(),
|
|
11408
11402
|
createdAt: _zod2.default.string(),
|
|
11409
11403
|
createdByUserId: _zod2.default.string(),
|
|
11410
|
-
e2bTemplateId: _zod2.default.string()
|
|
11404
|
+
e2bTemplateId: _zod2.default.string(),
|
|
11405
|
+
templates: _zod2.default.object({
|
|
11406
|
+
id: _zod2.default.string(),
|
|
11407
|
+
name: _zod2.default.string(),
|
|
11408
|
+
description: _zod2.default.string(),
|
|
11409
|
+
thumbnailUrl: _zod2.default.string().optional()
|
|
11410
|
+
}).array().optional()
|
|
11411
11411
|
});
|
|
11412
11412
|
var DTOSandboxTemplate = _zod2.default.object({
|
|
11413
11413
|
id: _zod2.default.string(),
|