@supernova-studio/client 0.47.75 → 0.48.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.mjs CHANGED
@@ -4809,8 +4809,19 @@ var DTOUpdateVersionInput = z171.object({
4809
4809
 
4810
4810
  // src/api/payloads/documentation/block-definitions.ts
4811
4811
  import { z as z172 } from "zod";
4812
+
4813
+ // src/api/dto/documentation/block-definition.ts
4814
+ var DTOPageBlockDefinitionBehavior = PageBlockDefinitionBehavior;
4815
+ var DTOPageBlockDefinitionItem = PageBlockDefinitionItem;
4816
+ var DTOPageBlockDefinitionLayout = PageBlockDefinitionLayout;
4817
+ var DTOPageBlockDefinitionVariant = PageBlockDefinitionVariant;
4818
+ var DTOPageBlockDefinitionProperty = PageBlockDefinitionProperty;
4819
+ var DTOPageBlockColorV2 = PageBlockColorV2;
4820
+ var DTOPageBlockDefinition = PageBlockDefinition;
4821
+
4822
+ // src/api/payloads/documentation/block-definitions.ts
4812
4823
  var DTOGetBlockDefinitionsOutput = z172.object({
4813
- definitions: z172.array(PageBlockDefinition)
4824
+ definitions: z172.array(DTOPageBlockDefinition)
4814
4825
  });
4815
4826
 
4816
4827
  // src/api/payloads/documentation/design-data-doc-diff.ts
@@ -6231,7 +6242,9 @@ var FrontendVersionRoomYDoc = class {
6231
6242
  }
6232
6243
  updatedDraftState.changes.previousTitle = publishedState.title;
6233
6244
  }
6234
- if (generateHash(currentState.configuration) !== generateHash(publishedState.configuration)) {
6245
+ const currentConfigHash = generateHash(currentState.configuration, this.debug);
6246
+ const publishedConfigHash = generateHash(publishedState.configuration, this.debug);
6247
+ if (currentConfigHash !== publishedConfigHash) {
6235
6248
  if (this.debug) {
6236
6249
  console.log(`Item ${itemPersistentId} (${currentState.title}): updated configuration`);
6237
6250
  }
@@ -10889,6 +10902,13 @@ export {
10889
10902
  DTOMoveDocumentationPageInputV2,
10890
10903
  DTONpmRegistryConfig,
10891
10904
  DTONpmRegistryConfigConstants,
10905
+ DTOPageBlockColorV2,
10906
+ DTOPageBlockDefinition,
10907
+ DTOPageBlockDefinitionBehavior,
10908
+ DTOPageBlockDefinitionItem,
10909
+ DTOPageBlockDefinitionLayout,
10910
+ DTOPageBlockDefinitionProperty,
10911
+ DTOPageBlockDefinitionVariant,
10892
10912
  DTOPipeline,
10893
10913
  DTOPipelineCreateBody,
10894
10914
  DTOPipelineTriggerBody,