@supernova-studio/client 0.48.0 → 0.48.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 +868 -11
- package/dist/index.d.ts +868 -11
- package/dist/index.js +24 -2
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +23 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/api/dto/documentation/block-definition.ts +28 -0
- package/src/api/dto/documentation/block.ts +6 -0
- package/src/api/dto/documentation/index.ts +2 -0
- package/src/api/payloads/documentation/block-definitions.ts +2 -2
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(
|
|
4824
|
+
definitions: z172.array(DTOPageBlockDefinition)
|
|
4814
4825
|
});
|
|
4815
4826
|
|
|
4816
4827
|
// src/api/payloads/documentation/design-data-doc-diff.ts
|
|
@@ -5015,6 +5026,9 @@ var DTOGetDocumentationPageAnchorsResponse = z181.object({
|
|
|
5015
5026
|
anchors: z181.array(DTODocumentationPageAnchor)
|
|
5016
5027
|
});
|
|
5017
5028
|
|
|
5029
|
+
// src/api/dto/documentation/block.ts
|
|
5030
|
+
var DTOPageBlockItemV2 = PageBlockItemV2;
|
|
5031
|
+
|
|
5018
5032
|
// src/api/dto/documentation/documentation-page-snapshot.ts
|
|
5019
5033
|
import { z as z185 } from "zod";
|
|
5020
5034
|
|
|
@@ -10891,6 +10905,14 @@ export {
|
|
|
10891
10905
|
DTOMoveDocumentationPageInputV2,
|
|
10892
10906
|
DTONpmRegistryConfig,
|
|
10893
10907
|
DTONpmRegistryConfigConstants,
|
|
10908
|
+
DTOPageBlockColorV2,
|
|
10909
|
+
DTOPageBlockDefinition,
|
|
10910
|
+
DTOPageBlockDefinitionBehavior,
|
|
10911
|
+
DTOPageBlockDefinitionItem,
|
|
10912
|
+
DTOPageBlockDefinitionLayout,
|
|
10913
|
+
DTOPageBlockDefinitionProperty,
|
|
10914
|
+
DTOPageBlockDefinitionVariant,
|
|
10915
|
+
DTOPageBlockItemV2,
|
|
10894
10916
|
DTOPipeline,
|
|
10895
10917
|
DTOPipelineCreateBody,
|
|
10896
10918
|
DTOPipelineTriggerBody,
|