@supernova-studio/model 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 +15 -5
- package/dist/index.d.ts +15 -5
- package/dist/index.js +6 -2
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +6 -2
- package/dist/index.mjs.map +1 -1
- package/package.json +2 -2
package/dist/index.mjs
CHANGED
|
@@ -1054,7 +1054,9 @@ async function promiseWithTimeout(timeoutMs, promise, onTimeout) {
|
|
|
1054
1054
|
return result;
|
|
1055
1055
|
}
|
|
1056
1056
|
async function sleep(ms) {
|
|
1057
|
-
return new Promise((resolve) =>
|
|
1057
|
+
return new Promise((resolve) => {
|
|
1058
|
+
setTimeout(resolve, ms);
|
|
1059
|
+
});
|
|
1058
1060
|
}
|
|
1059
1061
|
function uniqueBy(items, prop) {
|
|
1060
1062
|
return Array.from(mapByUnique(items, prop).values());
|
|
@@ -3760,7 +3762,7 @@ var ThemeOriginSource = z93.object({
|
|
|
3760
3762
|
var ThemeOrigin = z93.object({
|
|
3761
3763
|
sources: z93.array(ThemeOriginSource)
|
|
3762
3764
|
});
|
|
3763
|
-
var Theme =
|
|
3765
|
+
var Theme = DesignElementGroupableBase.extend(DesignElementBrandedPart.shape).extend({
|
|
3764
3766
|
origin: ThemeOrigin.optional(),
|
|
3765
3767
|
overrides: z93.array(ThemeOverride),
|
|
3766
3768
|
codeName: z93.string()
|
|
@@ -4103,6 +4105,7 @@ var Collection = z99.object({
|
|
|
4103
4105
|
name: z99.string(),
|
|
4104
4106
|
description: z99.string(),
|
|
4105
4107
|
backgroundColor: ColorTokenInlineData.optional(),
|
|
4108
|
+
parentPersistentId: z99.string().optional(),
|
|
4106
4109
|
/**
|
|
4107
4110
|
* ID of Select element property definition's option that corresponds to this collection.
|
|
4108
4111
|
*
|
|
@@ -6667,6 +6670,7 @@ var FlaggedFeature = z208.enum([
|
|
|
6667
6670
|
"ForgeE2BTemplate",
|
|
6668
6671
|
"ForgeOnDemandIterations",
|
|
6669
6672
|
"ForgeAutoRetryOnErrors",
|
|
6673
|
+
"ForgeAiBackendMigrated",
|
|
6670
6674
|
"CustomForgeTemplate"
|
|
6671
6675
|
]);
|
|
6672
6676
|
var FeatureFlagDefaults = {
|