@supernova-studio/client 1.60.0 → 1.60.2
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 +53 -4
- package/dist/index.d.ts +53 -4
- package/dist/index.js +11 -2
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +10 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +5 -5
package/dist/index.mjs
CHANGED
|
@@ -3385,7 +3385,7 @@ var ThemeOriginSource = z93.object({
|
|
|
3385
3385
|
var ThemeOrigin = z93.object({
|
|
3386
3386
|
sources: z93.array(ThemeOriginSource)
|
|
3387
3387
|
});
|
|
3388
|
-
var Theme =
|
|
3388
|
+
var Theme = DesignElementGroupableBase.extend(DesignElementBrandedPart.shape).extend({
|
|
3389
3389
|
origin: ThemeOrigin.optional(),
|
|
3390
3390
|
overrides: z93.array(ThemeOverride),
|
|
3391
3391
|
codeName: z93.string()
|
|
@@ -3693,6 +3693,7 @@ var Collection = z99.object({
|
|
|
3693
3693
|
name: z99.string(),
|
|
3694
3694
|
description: z99.string(),
|
|
3695
3695
|
backgroundColor: ColorTokenInlineData.optional(),
|
|
3696
|
+
parentPersistentId: z99.string().optional(),
|
|
3696
3697
|
/**
|
|
3697
3698
|
* ID of Select element property definition's option that corresponds to this collection.
|
|
3698
3699
|
*
|
|
@@ -5809,6 +5810,7 @@ var FlaggedFeature = z208.enum([
|
|
|
5809
5810
|
"ForgeE2BTemplate",
|
|
5810
5811
|
"ForgeOnDemandIterations",
|
|
5811
5812
|
"ForgeAutoRetryOnErrors",
|
|
5813
|
+
"ForgeAiBackendMigrated",
|
|
5812
5814
|
"CustomForgeTemplate"
|
|
5813
5815
|
]);
|
|
5814
5816
|
var FeatureFlagMap = z208.record(FlaggedFeature, z208.boolean());
|
|
@@ -8144,6 +8146,7 @@ var DTOTokenCollection = z270.object({
|
|
|
8144
8146
|
elementPropertyOptionId: z270.string(),
|
|
8145
8147
|
createdAt: z270.coerce.date(),
|
|
8146
8148
|
updatedAt: z270.coerce.date(),
|
|
8149
|
+
parentPersistentId: z270.string().optional(),
|
|
8147
8150
|
origin: CollectionOrigin.optional()
|
|
8148
8151
|
});
|
|
8149
8152
|
var DTOTokenCollectionsListReponse = z270.object({
|
|
@@ -11341,6 +11344,9 @@ var DTOThemeOverrideCreatePayload = DesignTokenTypedData.and(
|
|
|
11341
11344
|
|
|
11342
11345
|
// src/api/dto/themes/theme.ts
|
|
11343
11346
|
import { z as z346 } from "zod";
|
|
11347
|
+
var DTOThemesListQuery = z346.object({
|
|
11348
|
+
brandId: z346.string().optional()
|
|
11349
|
+
});
|
|
11344
11350
|
var DTOTheme = z346.object({
|
|
11345
11351
|
id: z346.string(),
|
|
11346
11352
|
persistentId: z346.string(),
|
|
@@ -11348,6 +11354,8 @@ var DTOTheme = z346.object({
|
|
|
11348
11354
|
brandId: z346.string(),
|
|
11349
11355
|
meta: ObjectMeta,
|
|
11350
11356
|
codeName: z346.string(),
|
|
11357
|
+
parentPersistentId: z346.string().optional(),
|
|
11358
|
+
collectionPersistentIds: z346.string().array(),
|
|
11351
11359
|
overrides: DTOThemeOverride.array()
|
|
11352
11360
|
});
|
|
11353
11361
|
var DTOThemeResponse = z346.object({
|
|
@@ -20653,6 +20661,7 @@ export {
|
|
|
20653
20661
|
DTOThemeOverride,
|
|
20654
20662
|
DTOThemeOverrideCreatePayload,
|
|
20655
20663
|
DTOThemeResponse,
|
|
20664
|
+
DTOThemesListQuery,
|
|
20656
20665
|
DTOThread,
|
|
20657
20666
|
DTOThreadAgentResponseTracker,
|
|
20658
20667
|
DTOThreadAgentType,
|