@supernova-studio/client 0.52.17 → 0.52.19
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 +165 -267
- package/dist/index.d.ts +165 -267
- package/dist/index.js +489 -255
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1039 -805
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/api/dto/elements/components/figma-component.ts +1 -0
- package/src/yjs/docs-editor/blocks-to-prosemirror.ts +59 -2
- package/src/yjs/docs-editor/prosemirror/index.ts +2 -1
- package/src/yjs/docs-editor/prosemirror/inner-editor-schema.ts +145 -0
- package/src/yjs/docs-editor/prosemirror/{schema.ts → main-editor-schema.ts} +2 -2
- package/src/yjs/docs-editor/prosemirror/types.ts +1 -1
- package/src/yjs/docs-editor/prosemirror-to-blocks.ts +53 -0
package/dist/index.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { DocumentationGroupV1, DocumentationPageV1, DocumentationPageV2, DocumentationPageApproval, PageBlockDefinitionLayout as PageBlockDefinitionLayout$1, PageBlockV1, ElementGroup, DocumentationItemConfigurationV1, DocumentationItemConfigurationV2, Pipeline, GitOrganization, GitProject, GitRepository, GitBranch, ExtendedIntegration, IntegrationCredentials, SsoProvider, PageBlockItemUntypedValue, PageBlockDefinition, PageBlockText, PageBlockDefinitionProperty, PageBlockDefinitionMultiRichTextPropertyStyle, PageBlockItemV2, PageBlockItemRichTextValue, PageBlockItemMultiRichTextValue, PageBlockItemTableValue, PageBlockItemEmbedValue, PageBlockDefinitionPropertyType, DocumentationPageSnapshot, ElementGroupSnapshot } from '@supernova-studio/model';
|
|
1
|
+
import { DocumentationGroupV1, DocumentationPageV1, DocumentationPageV2, DocumentationPageApproval, PageBlockDefinitionLayout as PageBlockDefinitionLayout$1, PageBlockV1, ElementGroup, DocumentationItemConfigurationV1, DocumentationItemConfigurationV2, Pipeline, GitOrganization, GitProject, GitRepository, GitBranch, ExtendedIntegration, IntegrationCredentials, SsoProvider, PageBlockItemUntypedValue, PageBlockDefinition, PageBlockItemRichTextEditorValue, PageBlockText, PageBlockDefinitionProperty, PageBlockDefinitionMultiRichTextPropertyStyle, PageBlockItemV2, PageBlockItemRichTextValue, PageBlockItemMultiRichTextValue, PageBlockItemTableValue, PageBlockItemEmbedValue, PageBlockDefinitionPropertyType, DocumentationPageSnapshot, ElementGroupSnapshot } from '@supernova-studio/model';
|
|
2
2
|
import * as zod from 'zod';
|
|
3
3
|
import { z, ZodTypeDef } from 'zod';
|
|
4
4
|
import * as Y from 'yjs';
|
|
@@ -6034,15 +6034,15 @@ declare const DTOPageBlockDefinitionItem: z.ZodObject<{
|
|
|
6034
6034
|
};
|
|
6035
6035
|
description?: string | undefined;
|
|
6036
6036
|
image?: string | undefined;
|
|
6037
|
+
documentationLink?: string | undefined;
|
|
6038
|
+
maxColumns?: number | undefined;
|
|
6039
|
+
defaultColumns?: number | undefined;
|
|
6037
6040
|
appearance?: {
|
|
6038
6041
|
isBordered?: boolean | undefined;
|
|
6039
6042
|
hasBackground?: boolean | undefined;
|
|
6040
6043
|
isEditorPresentationDifferent?: boolean | undefined;
|
|
6041
6044
|
showBlockHeaderInEditor?: boolean | undefined;
|
|
6042
6045
|
} | undefined;
|
|
6043
|
-
documentationLink?: string | undefined;
|
|
6044
|
-
maxColumns?: number | undefined;
|
|
6045
|
-
defaultColumns?: number | undefined;
|
|
6046
6046
|
}, {
|
|
6047
6047
|
id: string;
|
|
6048
6048
|
name: string;
|
|
@@ -6056,15 +6056,15 @@ declare const DTOPageBlockDefinitionItem: z.ZodObject<{
|
|
|
6056
6056
|
};
|
|
6057
6057
|
description?: string | undefined;
|
|
6058
6058
|
image?: string | undefined;
|
|
6059
|
+
documentationLink?: string | undefined;
|
|
6060
|
+
maxColumns?: number | undefined;
|
|
6061
|
+
defaultColumns?: number | undefined;
|
|
6059
6062
|
appearance?: {
|
|
6060
6063
|
isBordered?: boolean | undefined;
|
|
6061
6064
|
hasBackground?: boolean | undefined;
|
|
6062
6065
|
isEditorPresentationDifferent?: boolean | undefined;
|
|
6063
6066
|
showBlockHeaderInEditor?: boolean | undefined;
|
|
6064
6067
|
} | undefined;
|
|
6065
|
-
documentationLink?: string | undefined;
|
|
6066
|
-
maxColumns?: number | undefined;
|
|
6067
|
-
defaultColumns?: number | undefined;
|
|
6068
6068
|
}>, "many">;
|
|
6069
6069
|
defaultVariantKey: z.ZodString;
|
|
6070
6070
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -6089,15 +6089,15 @@ declare const DTOPageBlockDefinitionItem: z.ZodObject<{
|
|
|
6089
6089
|
};
|
|
6090
6090
|
description?: string | undefined;
|
|
6091
6091
|
image?: string | undefined;
|
|
6092
|
+
documentationLink?: string | undefined;
|
|
6093
|
+
maxColumns?: number | undefined;
|
|
6094
|
+
defaultColumns?: number | undefined;
|
|
6092
6095
|
appearance?: {
|
|
6093
6096
|
isBordered?: boolean | undefined;
|
|
6094
6097
|
hasBackground?: boolean | undefined;
|
|
6095
6098
|
isEditorPresentationDifferent?: boolean | undefined;
|
|
6096
6099
|
showBlockHeaderInEditor?: boolean | undefined;
|
|
6097
6100
|
} | undefined;
|
|
6098
|
-
documentationLink?: string | undefined;
|
|
6099
|
-
maxColumns?: number | undefined;
|
|
6100
|
-
defaultColumns?: number | undefined;
|
|
6101
6101
|
}[];
|
|
6102
6102
|
defaultVariantKey: string;
|
|
6103
6103
|
appearance?: {
|
|
@@ -6128,15 +6128,15 @@ declare const DTOPageBlockDefinitionItem: z.ZodObject<{
|
|
|
6128
6128
|
};
|
|
6129
6129
|
description?: string | undefined;
|
|
6130
6130
|
image?: string | undefined;
|
|
6131
|
+
documentationLink?: string | undefined;
|
|
6132
|
+
maxColumns?: number | undefined;
|
|
6133
|
+
defaultColumns?: number | undefined;
|
|
6131
6134
|
appearance?: {
|
|
6132
6135
|
isBordered?: boolean | undefined;
|
|
6133
6136
|
hasBackground?: boolean | undefined;
|
|
6134
6137
|
isEditorPresentationDifferent?: boolean | undefined;
|
|
6135
6138
|
showBlockHeaderInEditor?: boolean | undefined;
|
|
6136
6139
|
} | undefined;
|
|
6137
|
-
documentationLink?: string | undefined;
|
|
6138
|
-
maxColumns?: number | undefined;
|
|
6139
|
-
defaultColumns?: number | undefined;
|
|
6140
6140
|
}[];
|
|
6141
6141
|
defaultVariantKey: string;
|
|
6142
6142
|
appearance?: {
|
|
@@ -6187,15 +6187,15 @@ declare const DTOPageBlockDefinitionVariant: z.ZodObject<{
|
|
|
6187
6187
|
};
|
|
6188
6188
|
description?: string | undefined;
|
|
6189
6189
|
image?: string | undefined;
|
|
6190
|
+
documentationLink?: string | undefined;
|
|
6191
|
+
maxColumns?: number | undefined;
|
|
6192
|
+
defaultColumns?: number | undefined;
|
|
6190
6193
|
appearance?: {
|
|
6191
6194
|
isBordered?: boolean | undefined;
|
|
6192
6195
|
hasBackground?: boolean | undefined;
|
|
6193
6196
|
isEditorPresentationDifferent?: boolean | undefined;
|
|
6194
6197
|
showBlockHeaderInEditor?: boolean | undefined;
|
|
6195
6198
|
} | undefined;
|
|
6196
|
-
documentationLink?: string | undefined;
|
|
6197
|
-
maxColumns?: number | undefined;
|
|
6198
|
-
defaultColumns?: number | undefined;
|
|
6199
6199
|
}, {
|
|
6200
6200
|
id: string;
|
|
6201
6201
|
name: string;
|
|
@@ -6209,15 +6209,15 @@ declare const DTOPageBlockDefinitionVariant: z.ZodObject<{
|
|
|
6209
6209
|
};
|
|
6210
6210
|
description?: string | undefined;
|
|
6211
6211
|
image?: string | undefined;
|
|
6212
|
+
documentationLink?: string | undefined;
|
|
6213
|
+
maxColumns?: number | undefined;
|
|
6214
|
+
defaultColumns?: number | undefined;
|
|
6212
6215
|
appearance?: {
|
|
6213
6216
|
isBordered?: boolean | undefined;
|
|
6214
6217
|
hasBackground?: boolean | undefined;
|
|
6215
6218
|
isEditorPresentationDifferent?: boolean | undefined;
|
|
6216
6219
|
showBlockHeaderInEditor?: boolean | undefined;
|
|
6217
6220
|
} | undefined;
|
|
6218
|
-
documentationLink?: string | undefined;
|
|
6219
|
-
maxColumns?: number | undefined;
|
|
6220
|
-
defaultColumns?: number | undefined;
|
|
6221
6221
|
}>;
|
|
6222
6222
|
type DTOPageBlockDefinitionVariant = z.infer<typeof DTOPageBlockDefinitionVariant>;
|
|
6223
6223
|
declare const DTOPageBlockDefinitionProperty: z.ZodObject<{
|
|
@@ -6339,15 +6339,15 @@ declare const DTOPageBlockDefinition: z.ZodObject<{
|
|
|
6339
6339
|
};
|
|
6340
6340
|
description?: string | undefined;
|
|
6341
6341
|
image?: string | undefined;
|
|
6342
|
+
documentationLink?: string | undefined;
|
|
6343
|
+
maxColumns?: number | undefined;
|
|
6344
|
+
defaultColumns?: number | undefined;
|
|
6342
6345
|
appearance?: {
|
|
6343
6346
|
isBordered?: boolean | undefined;
|
|
6344
6347
|
hasBackground?: boolean | undefined;
|
|
6345
6348
|
isEditorPresentationDifferent?: boolean | undefined;
|
|
6346
6349
|
showBlockHeaderInEditor?: boolean | undefined;
|
|
6347
6350
|
} | undefined;
|
|
6348
|
-
documentationLink?: string | undefined;
|
|
6349
|
-
maxColumns?: number | undefined;
|
|
6350
|
-
defaultColumns?: number | undefined;
|
|
6351
6351
|
}, {
|
|
6352
6352
|
id: string;
|
|
6353
6353
|
name: string;
|
|
@@ -6361,15 +6361,15 @@ declare const DTOPageBlockDefinition: z.ZodObject<{
|
|
|
6361
6361
|
};
|
|
6362
6362
|
description?: string | undefined;
|
|
6363
6363
|
image?: string | undefined;
|
|
6364
|
+
documentationLink?: string | undefined;
|
|
6365
|
+
maxColumns?: number | undefined;
|
|
6366
|
+
defaultColumns?: number | undefined;
|
|
6364
6367
|
appearance?: {
|
|
6365
6368
|
isBordered?: boolean | undefined;
|
|
6366
6369
|
hasBackground?: boolean | undefined;
|
|
6367
6370
|
isEditorPresentationDifferent?: boolean | undefined;
|
|
6368
6371
|
showBlockHeaderInEditor?: boolean | undefined;
|
|
6369
6372
|
} | undefined;
|
|
6370
|
-
documentationLink?: string | undefined;
|
|
6371
|
-
maxColumns?: number | undefined;
|
|
6372
|
-
defaultColumns?: number | undefined;
|
|
6373
6373
|
}>, "many">;
|
|
6374
6374
|
defaultVariantKey: z.ZodString;
|
|
6375
6375
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -6394,15 +6394,15 @@ declare const DTOPageBlockDefinition: z.ZodObject<{
|
|
|
6394
6394
|
};
|
|
6395
6395
|
description?: string | undefined;
|
|
6396
6396
|
image?: string | undefined;
|
|
6397
|
+
documentationLink?: string | undefined;
|
|
6398
|
+
maxColumns?: number | undefined;
|
|
6399
|
+
defaultColumns?: number | undefined;
|
|
6397
6400
|
appearance?: {
|
|
6398
6401
|
isBordered?: boolean | undefined;
|
|
6399
6402
|
hasBackground?: boolean | undefined;
|
|
6400
6403
|
isEditorPresentationDifferent?: boolean | undefined;
|
|
6401
6404
|
showBlockHeaderInEditor?: boolean | undefined;
|
|
6402
6405
|
} | undefined;
|
|
6403
|
-
documentationLink?: string | undefined;
|
|
6404
|
-
maxColumns?: number | undefined;
|
|
6405
|
-
defaultColumns?: number | undefined;
|
|
6406
6406
|
}[];
|
|
6407
6407
|
defaultVariantKey: string;
|
|
6408
6408
|
appearance?: {
|
|
@@ -6433,15 +6433,15 @@ declare const DTOPageBlockDefinition: z.ZodObject<{
|
|
|
6433
6433
|
};
|
|
6434
6434
|
description?: string | undefined;
|
|
6435
6435
|
image?: string | undefined;
|
|
6436
|
+
documentationLink?: string | undefined;
|
|
6437
|
+
maxColumns?: number | undefined;
|
|
6438
|
+
defaultColumns?: number | undefined;
|
|
6436
6439
|
appearance?: {
|
|
6437
6440
|
isBordered?: boolean | undefined;
|
|
6438
6441
|
hasBackground?: boolean | undefined;
|
|
6439
6442
|
isEditorPresentationDifferent?: boolean | undefined;
|
|
6440
6443
|
showBlockHeaderInEditor?: boolean | undefined;
|
|
6441
6444
|
} | undefined;
|
|
6442
|
-
documentationLink?: string | undefined;
|
|
6443
|
-
maxColumns?: number | undefined;
|
|
6444
|
-
defaultColumns?: number | undefined;
|
|
6445
6445
|
}[];
|
|
6446
6446
|
defaultVariantKey: string;
|
|
6447
6447
|
appearance?: {
|
|
@@ -6567,15 +6567,15 @@ declare const DTOPageBlockDefinition: z.ZodObject<{
|
|
|
6567
6567
|
};
|
|
6568
6568
|
description?: string | undefined;
|
|
6569
6569
|
image?: string | undefined;
|
|
6570
|
+
documentationLink?: string | undefined;
|
|
6571
|
+
maxColumns?: number | undefined;
|
|
6572
|
+
defaultColumns?: number | undefined;
|
|
6570
6573
|
appearance?: {
|
|
6571
6574
|
isBordered?: boolean | undefined;
|
|
6572
6575
|
hasBackground?: boolean | undefined;
|
|
6573
6576
|
isEditorPresentationDifferent?: boolean | undefined;
|
|
6574
6577
|
showBlockHeaderInEditor?: boolean | undefined;
|
|
6575
6578
|
} | undefined;
|
|
6576
|
-
documentationLink?: string | undefined;
|
|
6577
|
-
maxColumns?: number | undefined;
|
|
6578
|
-
defaultColumns?: number | undefined;
|
|
6579
6579
|
}[];
|
|
6580
6580
|
defaultVariantKey: string;
|
|
6581
6581
|
appearance?: {
|
|
@@ -6605,13 +6605,13 @@ declare const DTOPageBlockDefinition: z.ZodObject<{
|
|
|
6605
6605
|
} | undefined;
|
|
6606
6606
|
};
|
|
6607
6607
|
icon?: string | undefined;
|
|
6608
|
+
documentationLink?: string | undefined;
|
|
6608
6609
|
appearance?: {
|
|
6609
6610
|
isBordered?: boolean | undefined;
|
|
6610
6611
|
hasBackground?: boolean | undefined;
|
|
6611
6612
|
isEditorPresentationDifferent?: boolean | undefined;
|
|
6612
6613
|
showBlockHeaderInEditor?: boolean | undefined;
|
|
6613
6614
|
} | undefined;
|
|
6614
|
-
documentationLink?: string | undefined;
|
|
6615
6615
|
searchKeywords?: string[] | undefined;
|
|
6616
6616
|
}, {
|
|
6617
6617
|
id: string;
|
|
@@ -6640,15 +6640,15 @@ declare const DTOPageBlockDefinition: z.ZodObject<{
|
|
|
6640
6640
|
};
|
|
6641
6641
|
description?: string | undefined;
|
|
6642
6642
|
image?: string | undefined;
|
|
6643
|
+
documentationLink?: string | undefined;
|
|
6644
|
+
maxColumns?: number | undefined;
|
|
6645
|
+
defaultColumns?: number | undefined;
|
|
6643
6646
|
appearance?: {
|
|
6644
6647
|
isBordered?: boolean | undefined;
|
|
6645
6648
|
hasBackground?: boolean | undefined;
|
|
6646
6649
|
isEditorPresentationDifferent?: boolean | undefined;
|
|
6647
6650
|
showBlockHeaderInEditor?: boolean | undefined;
|
|
6648
6651
|
} | undefined;
|
|
6649
|
-
documentationLink?: string | undefined;
|
|
6650
|
-
maxColumns?: number | undefined;
|
|
6651
|
-
defaultColumns?: number | undefined;
|
|
6652
6652
|
}[];
|
|
6653
6653
|
defaultVariantKey: string;
|
|
6654
6654
|
appearance?: {
|
|
@@ -6678,13 +6678,13 @@ declare const DTOPageBlockDefinition: z.ZodObject<{
|
|
|
6678
6678
|
} | undefined;
|
|
6679
6679
|
};
|
|
6680
6680
|
icon?: string | undefined;
|
|
6681
|
+
documentationLink?: string | undefined;
|
|
6681
6682
|
appearance?: {
|
|
6682
6683
|
isBordered?: boolean | undefined;
|
|
6683
6684
|
hasBackground?: boolean | undefined;
|
|
6684
6685
|
isEditorPresentationDifferent?: boolean | undefined;
|
|
6685
6686
|
showBlockHeaderInEditor?: boolean | undefined;
|
|
6686
6687
|
} | undefined;
|
|
6687
|
-
documentationLink?: string | undefined;
|
|
6688
6688
|
searchKeywords?: string[] | undefined;
|
|
6689
6689
|
}>;
|
|
6690
6690
|
type DTOPageBlockDefinition = z.infer<typeof DTOPageBlockDefinition>;
|
|
@@ -8976,30 +8976,12 @@ type DTOFigmaComponentBooleanProperty = z.infer<typeof DTOFigmaComponentBooleanP
|
|
|
8976
8976
|
declare const DTOFigmaComponentInstanceSwapProperty: z.ZodObject<{
|
|
8977
8977
|
type: z.ZodLiteral<"InstanceSwap">;
|
|
8978
8978
|
defaultValue: z.ZodString;
|
|
8979
|
-
preferredValues: z.ZodArray<z.ZodObject<{
|
|
8980
|
-
type: z.ZodEnum<["Component", "ComponentSet"]>;
|
|
8981
|
-
key: z.ZodString;
|
|
8982
|
-
}, "strip", z.ZodTypeAny, {
|
|
8983
|
-
type: "Component" | "ComponentSet";
|
|
8984
|
-
key: string;
|
|
8985
|
-
}, {
|
|
8986
|
-
type: "Component" | "ComponentSet";
|
|
8987
|
-
key: string;
|
|
8988
|
-
}>, "many">;
|
|
8989
8979
|
}, "strip", z.ZodTypeAny, {
|
|
8990
8980
|
type: "InstanceSwap";
|
|
8991
8981
|
defaultValue: string;
|
|
8992
|
-
preferredValues: {
|
|
8993
|
-
type: "Component" | "ComponentSet";
|
|
8994
|
-
key: string;
|
|
8995
|
-
}[];
|
|
8996
8982
|
}, {
|
|
8997
8983
|
type: "InstanceSwap";
|
|
8998
8984
|
defaultValue: string;
|
|
8999
|
-
preferredValues: {
|
|
9000
|
-
type: "Component" | "ComponentSet";
|
|
9001
|
-
key: string;
|
|
9002
|
-
}[];
|
|
9003
8985
|
}>;
|
|
9004
8986
|
type DTOFigmaComponentInstanceSwapProperty = z.infer<typeof DTOFigmaComponentInstanceSwapProperty>;
|
|
9005
8987
|
declare const DTOFigmaComponentTextProperty: z.ZodObject<{
|
|
@@ -9039,30 +9021,12 @@ declare const DTOFigmaComponentProperty: z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
|
9039
9021
|
}>, z.ZodObject<{
|
|
9040
9022
|
type: z.ZodLiteral<"InstanceSwap">;
|
|
9041
9023
|
defaultValue: z.ZodString;
|
|
9042
|
-
preferredValues: z.ZodArray<z.ZodObject<{
|
|
9043
|
-
type: z.ZodEnum<["Component", "ComponentSet"]>;
|
|
9044
|
-
key: z.ZodString;
|
|
9045
|
-
}, "strip", z.ZodTypeAny, {
|
|
9046
|
-
type: "Component" | "ComponentSet";
|
|
9047
|
-
key: string;
|
|
9048
|
-
}, {
|
|
9049
|
-
type: "Component" | "ComponentSet";
|
|
9050
|
-
key: string;
|
|
9051
|
-
}>, "many">;
|
|
9052
9024
|
}, "strip", z.ZodTypeAny, {
|
|
9053
9025
|
type: "InstanceSwap";
|
|
9054
9026
|
defaultValue: string;
|
|
9055
|
-
preferredValues: {
|
|
9056
|
-
type: "Component" | "ComponentSet";
|
|
9057
|
-
key: string;
|
|
9058
|
-
}[];
|
|
9059
9027
|
}, {
|
|
9060
9028
|
type: "InstanceSwap";
|
|
9061
9029
|
defaultValue: string;
|
|
9062
|
-
preferredValues: {
|
|
9063
|
-
type: "Component" | "ComponentSet";
|
|
9064
|
-
key: string;
|
|
9065
|
-
}[];
|
|
9066
9030
|
}>, z.ZodObject<{
|
|
9067
9031
|
type: z.ZodLiteral<"Text">;
|
|
9068
9032
|
defaultValue: z.ZodString;
|
|
@@ -9086,30 +9050,12 @@ declare const DTOFigmaComponentPropertyMap: z.ZodRecord<z.ZodString, z.ZodDiscri
|
|
|
9086
9050
|
}>, z.ZodObject<{
|
|
9087
9051
|
type: z.ZodLiteral<"InstanceSwap">;
|
|
9088
9052
|
defaultValue: z.ZodString;
|
|
9089
|
-
preferredValues: z.ZodArray<z.ZodObject<{
|
|
9090
|
-
type: z.ZodEnum<["Component", "ComponentSet"]>;
|
|
9091
|
-
key: z.ZodString;
|
|
9092
|
-
}, "strip", z.ZodTypeAny, {
|
|
9093
|
-
type: "Component" | "ComponentSet";
|
|
9094
|
-
key: string;
|
|
9095
|
-
}, {
|
|
9096
|
-
type: "Component" | "ComponentSet";
|
|
9097
|
-
key: string;
|
|
9098
|
-
}>, "many">;
|
|
9099
9053
|
}, "strip", z.ZodTypeAny, {
|
|
9100
9054
|
type: "InstanceSwap";
|
|
9101
9055
|
defaultValue: string;
|
|
9102
|
-
preferredValues: {
|
|
9103
|
-
type: "Component" | "ComponentSet";
|
|
9104
|
-
key: string;
|
|
9105
|
-
}[];
|
|
9106
9056
|
}, {
|
|
9107
9057
|
type: "InstanceSwap";
|
|
9108
9058
|
defaultValue: string;
|
|
9109
|
-
preferredValues: {
|
|
9110
|
-
type: "Component" | "ComponentSet";
|
|
9111
|
-
key: string;
|
|
9112
|
-
}[];
|
|
9113
9059
|
}>, z.ZodObject<{
|
|
9114
9060
|
type: z.ZodLiteral<"Text">;
|
|
9115
9061
|
defaultValue: z.ZodString;
|
|
@@ -9183,30 +9129,12 @@ declare const DTOFigmaComponent: z.ZodObject<{
|
|
|
9183
9129
|
}>, z.ZodObject<{
|
|
9184
9130
|
type: z.ZodLiteral<"InstanceSwap">;
|
|
9185
9131
|
defaultValue: z.ZodString;
|
|
9186
|
-
preferredValues: z.ZodArray<z.ZodObject<{
|
|
9187
|
-
type: z.ZodEnum<["Component", "ComponentSet"]>;
|
|
9188
|
-
key: z.ZodString;
|
|
9189
|
-
}, "strip", z.ZodTypeAny, {
|
|
9190
|
-
type: "Component" | "ComponentSet";
|
|
9191
|
-
key: string;
|
|
9192
|
-
}, {
|
|
9193
|
-
type: "Component" | "ComponentSet";
|
|
9194
|
-
key: string;
|
|
9195
|
-
}>, "many">;
|
|
9196
9132
|
}, "strip", z.ZodTypeAny, {
|
|
9197
9133
|
type: "InstanceSwap";
|
|
9198
9134
|
defaultValue: string;
|
|
9199
|
-
preferredValues: {
|
|
9200
|
-
type: "Component" | "ComponentSet";
|
|
9201
|
-
key: string;
|
|
9202
|
-
}[];
|
|
9203
9135
|
}, {
|
|
9204
9136
|
type: "InstanceSwap";
|
|
9205
9137
|
defaultValue: string;
|
|
9206
|
-
preferredValues: {
|
|
9207
|
-
type: "Component" | "ComponentSet";
|
|
9208
|
-
key: string;
|
|
9209
|
-
}[];
|
|
9210
9138
|
}>, z.ZodObject<{
|
|
9211
9139
|
type: z.ZodLiteral<"Text">;
|
|
9212
9140
|
defaultValue: z.ZodString;
|
|
@@ -9217,6 +9145,7 @@ declare const DTOFigmaComponent: z.ZodObject<{
|
|
|
9217
9145
|
type: "Text";
|
|
9218
9146
|
defaultValue: string;
|
|
9219
9147
|
}>]>>>;
|
|
9148
|
+
childrenPersistentIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
9220
9149
|
}, "strip", z.ZodTypeAny, {
|
|
9221
9150
|
id: string;
|
|
9222
9151
|
persistentId: string;
|
|
@@ -9248,14 +9177,11 @@ declare const DTOFigmaComponent: z.ZodObject<{
|
|
|
9248
9177
|
} | {
|
|
9249
9178
|
type: "InstanceSwap";
|
|
9250
9179
|
defaultValue: string;
|
|
9251
|
-
preferredValues: {
|
|
9252
|
-
type: "Component" | "ComponentSet";
|
|
9253
|
-
key: string;
|
|
9254
|
-
}[];
|
|
9255
9180
|
} | {
|
|
9256
9181
|
type: "Text";
|
|
9257
9182
|
defaultValue: string;
|
|
9258
9183
|
}> | undefined;
|
|
9184
|
+
childrenPersistentIds?: string[] | undefined;
|
|
9259
9185
|
}, {
|
|
9260
9186
|
id: string;
|
|
9261
9187
|
persistentId: string;
|
|
@@ -9287,14 +9213,11 @@ declare const DTOFigmaComponent: z.ZodObject<{
|
|
|
9287
9213
|
} | {
|
|
9288
9214
|
type: "InstanceSwap";
|
|
9289
9215
|
defaultValue: string;
|
|
9290
|
-
preferredValues: {
|
|
9291
|
-
type: "Component" | "ComponentSet";
|
|
9292
|
-
key: string;
|
|
9293
|
-
}[];
|
|
9294
9216
|
} | {
|
|
9295
9217
|
type: "Text";
|
|
9296
9218
|
defaultValue: string;
|
|
9297
9219
|
}> | undefined;
|
|
9220
|
+
childrenPersistentIds?: string[] | undefined;
|
|
9298
9221
|
}>;
|
|
9299
9222
|
type DTOFigmaComponent = z.infer<typeof DTOFigmaComponent>;
|
|
9300
9223
|
declare const DTOFigmaComponentListResponse: z.ZodObject<{
|
|
@@ -9360,30 +9283,12 @@ declare const DTOFigmaComponentListResponse: z.ZodObject<{
|
|
|
9360
9283
|
}>, z.ZodObject<{
|
|
9361
9284
|
type: z.ZodLiteral<"InstanceSwap">;
|
|
9362
9285
|
defaultValue: z.ZodString;
|
|
9363
|
-
preferredValues: z.ZodArray<z.ZodObject<{
|
|
9364
|
-
type: z.ZodEnum<["Component", "ComponentSet"]>;
|
|
9365
|
-
key: z.ZodString;
|
|
9366
|
-
}, "strip", z.ZodTypeAny, {
|
|
9367
|
-
type: "Component" | "ComponentSet";
|
|
9368
|
-
key: string;
|
|
9369
|
-
}, {
|
|
9370
|
-
type: "Component" | "ComponentSet";
|
|
9371
|
-
key: string;
|
|
9372
|
-
}>, "many">;
|
|
9373
9286
|
}, "strip", z.ZodTypeAny, {
|
|
9374
9287
|
type: "InstanceSwap";
|
|
9375
9288
|
defaultValue: string;
|
|
9376
|
-
preferredValues: {
|
|
9377
|
-
type: "Component" | "ComponentSet";
|
|
9378
|
-
key: string;
|
|
9379
|
-
}[];
|
|
9380
9289
|
}, {
|
|
9381
9290
|
type: "InstanceSwap";
|
|
9382
9291
|
defaultValue: string;
|
|
9383
|
-
preferredValues: {
|
|
9384
|
-
type: "Component" | "ComponentSet";
|
|
9385
|
-
key: string;
|
|
9386
|
-
}[];
|
|
9387
9292
|
}>, z.ZodObject<{
|
|
9388
9293
|
type: z.ZodLiteral<"Text">;
|
|
9389
9294
|
defaultValue: z.ZodString;
|
|
@@ -9394,6 +9299,7 @@ declare const DTOFigmaComponentListResponse: z.ZodObject<{
|
|
|
9394
9299
|
type: "Text";
|
|
9395
9300
|
defaultValue: string;
|
|
9396
9301
|
}>]>>>;
|
|
9302
|
+
childrenPersistentIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
9397
9303
|
}, "strip", z.ZodTypeAny, {
|
|
9398
9304
|
id: string;
|
|
9399
9305
|
persistentId: string;
|
|
@@ -9425,14 +9331,11 @@ declare const DTOFigmaComponentListResponse: z.ZodObject<{
|
|
|
9425
9331
|
} | {
|
|
9426
9332
|
type: "InstanceSwap";
|
|
9427
9333
|
defaultValue: string;
|
|
9428
|
-
preferredValues: {
|
|
9429
|
-
type: "Component" | "ComponentSet";
|
|
9430
|
-
key: string;
|
|
9431
|
-
}[];
|
|
9432
9334
|
} | {
|
|
9433
9335
|
type: "Text";
|
|
9434
9336
|
defaultValue: string;
|
|
9435
9337
|
}> | undefined;
|
|
9338
|
+
childrenPersistentIds?: string[] | undefined;
|
|
9436
9339
|
}, {
|
|
9437
9340
|
id: string;
|
|
9438
9341
|
persistentId: string;
|
|
@@ -9464,14 +9367,11 @@ declare const DTOFigmaComponentListResponse: z.ZodObject<{
|
|
|
9464
9367
|
} | {
|
|
9465
9368
|
type: "InstanceSwap";
|
|
9466
9369
|
defaultValue: string;
|
|
9467
|
-
preferredValues: {
|
|
9468
|
-
type: "Component" | "ComponentSet";
|
|
9469
|
-
key: string;
|
|
9470
|
-
}[];
|
|
9471
9370
|
} | {
|
|
9472
9371
|
type: "Text";
|
|
9473
9372
|
defaultValue: string;
|
|
9474
9373
|
}> | undefined;
|
|
9374
|
+
childrenPersistentIds?: string[] | undefined;
|
|
9475
9375
|
}>, "many">;
|
|
9476
9376
|
}, "strip", z.ZodTypeAny, {
|
|
9477
9377
|
components: {
|
|
@@ -9505,14 +9405,11 @@ declare const DTOFigmaComponentListResponse: z.ZodObject<{
|
|
|
9505
9405
|
} | {
|
|
9506
9406
|
type: "InstanceSwap";
|
|
9507
9407
|
defaultValue: string;
|
|
9508
|
-
preferredValues: {
|
|
9509
|
-
type: "Component" | "ComponentSet";
|
|
9510
|
-
key: string;
|
|
9511
|
-
}[];
|
|
9512
9408
|
} | {
|
|
9513
9409
|
type: "Text";
|
|
9514
9410
|
defaultValue: string;
|
|
9515
9411
|
}> | undefined;
|
|
9412
|
+
childrenPersistentIds?: string[] | undefined;
|
|
9516
9413
|
}[];
|
|
9517
9414
|
}, {
|
|
9518
9415
|
components: {
|
|
@@ -9546,14 +9443,11 @@ declare const DTOFigmaComponentListResponse: z.ZodObject<{
|
|
|
9546
9443
|
} | {
|
|
9547
9444
|
type: "InstanceSwap";
|
|
9548
9445
|
defaultValue: string;
|
|
9549
|
-
preferredValues: {
|
|
9550
|
-
type: "Component" | "ComponentSet";
|
|
9551
|
-
key: string;
|
|
9552
|
-
}[];
|
|
9553
9446
|
} | {
|
|
9554
9447
|
type: "Text";
|
|
9555
9448
|
defaultValue: string;
|
|
9556
9449
|
}> | undefined;
|
|
9450
|
+
childrenPersistentIds?: string[] | undefined;
|
|
9557
9451
|
}[];
|
|
9558
9452
|
}>;
|
|
9559
9453
|
type DTOFigmaComponentListResponse = z.infer<typeof DTOFigmaComponentListResponse>;
|
|
@@ -17831,7 +17725,6 @@ declare const DTODocumentationPageContent: z.ZodObject<{
|
|
|
17831
17725
|
} | undefined;
|
|
17832
17726
|
}[];
|
|
17833
17727
|
indentLevel: number;
|
|
17834
|
-
variantId?: string | undefined;
|
|
17835
17728
|
appearance?: {
|
|
17836
17729
|
numberOfColumns?: number | undefined;
|
|
17837
17730
|
itemBackgroundColor?: {
|
|
@@ -17839,6 +17732,7 @@ declare const DTODocumentationPageContent: z.ZodObject<{
|
|
|
17839
17732
|
referencedTokenId?: string | undefined;
|
|
17840
17733
|
} | undefined;
|
|
17841
17734
|
} | undefined;
|
|
17735
|
+
variantId?: string | undefined;
|
|
17842
17736
|
}, {
|
|
17843
17737
|
packageId: string;
|
|
17844
17738
|
items: {
|
|
@@ -17855,7 +17749,6 @@ declare const DTODocumentationPageContent: z.ZodObject<{
|
|
|
17855
17749
|
} | undefined;
|
|
17856
17750
|
}[];
|
|
17857
17751
|
indentLevel: number;
|
|
17858
|
-
variantId?: string | undefined;
|
|
17859
17752
|
appearance?: {
|
|
17860
17753
|
numberOfColumns?: number | undefined;
|
|
17861
17754
|
itemBackgroundColor?: {
|
|
@@ -17863,6 +17756,7 @@ declare const DTODocumentationPageContent: z.ZodObject<{
|
|
|
17863
17756
|
referencedTokenId?: string | undefined;
|
|
17864
17757
|
} | undefined;
|
|
17865
17758
|
} | undefined;
|
|
17759
|
+
variantId?: string | undefined;
|
|
17866
17760
|
}>;
|
|
17867
17761
|
}, "strip", z.ZodTypeAny, {
|
|
17868
17762
|
id: string;
|
|
@@ -17883,7 +17777,6 @@ declare const DTODocumentationPageContent: z.ZodObject<{
|
|
|
17883
17777
|
} | undefined;
|
|
17884
17778
|
}[];
|
|
17885
17779
|
indentLevel: number;
|
|
17886
|
-
variantId?: string | undefined;
|
|
17887
17780
|
appearance?: {
|
|
17888
17781
|
numberOfColumns?: number | undefined;
|
|
17889
17782
|
itemBackgroundColor?: {
|
|
@@ -17891,6 +17784,7 @@ declare const DTODocumentationPageContent: z.ZodObject<{
|
|
|
17891
17784
|
referencedTokenId?: string | undefined;
|
|
17892
17785
|
} | undefined;
|
|
17893
17786
|
} | undefined;
|
|
17787
|
+
variantId?: string | undefined;
|
|
17894
17788
|
};
|
|
17895
17789
|
}, {
|
|
17896
17790
|
id: string;
|
|
@@ -17911,7 +17805,6 @@ declare const DTODocumentationPageContent: z.ZodObject<{
|
|
|
17911
17805
|
} | undefined;
|
|
17912
17806
|
}[];
|
|
17913
17807
|
indentLevel: number;
|
|
17914
|
-
variantId?: string | undefined;
|
|
17915
17808
|
appearance?: {
|
|
17916
17809
|
numberOfColumns?: number | undefined;
|
|
17917
17810
|
itemBackgroundColor?: {
|
|
@@ -17919,6 +17812,7 @@ declare const DTODocumentationPageContent: z.ZodObject<{
|
|
|
17919
17812
|
referencedTokenId?: string | undefined;
|
|
17920
17813
|
} | undefined;
|
|
17921
17814
|
} | undefined;
|
|
17815
|
+
variantId?: string | undefined;
|
|
17922
17816
|
};
|
|
17923
17817
|
}>, z.ZodObject<{
|
|
17924
17818
|
id: z.ZodString;
|
|
@@ -18105,7 +17999,6 @@ declare const DTODocumentationPageContent: z.ZodObject<{
|
|
|
18105
17999
|
} | undefined;
|
|
18106
18000
|
}[];
|
|
18107
18001
|
indentLevel: number;
|
|
18108
|
-
variantId?: string | undefined;
|
|
18109
18002
|
appearance?: {
|
|
18110
18003
|
numberOfColumns?: number | undefined;
|
|
18111
18004
|
itemBackgroundColor?: {
|
|
@@ -18113,6 +18006,7 @@ declare const DTODocumentationPageContent: z.ZodObject<{
|
|
|
18113
18006
|
referencedTokenId?: string | undefined;
|
|
18114
18007
|
} | undefined;
|
|
18115
18008
|
} | undefined;
|
|
18009
|
+
variantId?: string | undefined;
|
|
18116
18010
|
}, {
|
|
18117
18011
|
packageId: string;
|
|
18118
18012
|
items: {
|
|
@@ -18129,7 +18023,6 @@ declare const DTODocumentationPageContent: z.ZodObject<{
|
|
|
18129
18023
|
} | undefined;
|
|
18130
18024
|
}[];
|
|
18131
18025
|
indentLevel: number;
|
|
18132
|
-
variantId?: string | undefined;
|
|
18133
18026
|
appearance?: {
|
|
18134
18027
|
numberOfColumns?: number | undefined;
|
|
18135
18028
|
itemBackgroundColor?: {
|
|
@@ -18137,6 +18030,7 @@ declare const DTODocumentationPageContent: z.ZodObject<{
|
|
|
18137
18030
|
referencedTokenId?: string | undefined;
|
|
18138
18031
|
} | undefined;
|
|
18139
18032
|
} | undefined;
|
|
18033
|
+
variantId?: string | undefined;
|
|
18140
18034
|
}>;
|
|
18141
18035
|
}, "strip", z.ZodTypeAny, {
|
|
18142
18036
|
id: string;
|
|
@@ -18157,7 +18051,6 @@ declare const DTODocumentationPageContent: z.ZodObject<{
|
|
|
18157
18051
|
} | undefined;
|
|
18158
18052
|
}[];
|
|
18159
18053
|
indentLevel: number;
|
|
18160
|
-
variantId?: string | undefined;
|
|
18161
18054
|
appearance?: {
|
|
18162
18055
|
numberOfColumns?: number | undefined;
|
|
18163
18056
|
itemBackgroundColor?: {
|
|
@@ -18165,6 +18058,7 @@ declare const DTODocumentationPageContent: z.ZodObject<{
|
|
|
18165
18058
|
referencedTokenId?: string | undefined;
|
|
18166
18059
|
} | undefined;
|
|
18167
18060
|
} | undefined;
|
|
18061
|
+
variantId?: string | undefined;
|
|
18168
18062
|
};
|
|
18169
18063
|
}, {
|
|
18170
18064
|
id: string;
|
|
@@ -18185,7 +18079,6 @@ declare const DTODocumentationPageContent: z.ZodObject<{
|
|
|
18185
18079
|
} | undefined;
|
|
18186
18080
|
}[];
|
|
18187
18081
|
indentLevel: number;
|
|
18188
|
-
variantId?: string | undefined;
|
|
18189
18082
|
appearance?: {
|
|
18190
18083
|
numberOfColumns?: number | undefined;
|
|
18191
18084
|
itemBackgroundColor?: {
|
|
@@ -18193,6 +18086,7 @@ declare const DTODocumentationPageContent: z.ZodObject<{
|
|
|
18193
18086
|
referencedTokenId?: string | undefined;
|
|
18194
18087
|
} | undefined;
|
|
18195
18088
|
} | undefined;
|
|
18089
|
+
variantId?: string | undefined;
|
|
18196
18090
|
};
|
|
18197
18091
|
}>, "many">;
|
|
18198
18092
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -18216,7 +18110,6 @@ declare const DTODocumentationPageContent: z.ZodObject<{
|
|
|
18216
18110
|
} | undefined;
|
|
18217
18111
|
}[];
|
|
18218
18112
|
indentLevel: number;
|
|
18219
|
-
variantId?: string | undefined;
|
|
18220
18113
|
appearance?: {
|
|
18221
18114
|
numberOfColumns?: number | undefined;
|
|
18222
18115
|
itemBackgroundColor?: {
|
|
@@ -18224,6 +18117,7 @@ declare const DTODocumentationPageContent: z.ZodObject<{
|
|
|
18224
18117
|
referencedTokenId?: string | undefined;
|
|
18225
18118
|
} | undefined;
|
|
18226
18119
|
} | undefined;
|
|
18120
|
+
variantId?: string | undefined;
|
|
18227
18121
|
};
|
|
18228
18122
|
}[];
|
|
18229
18123
|
}, {
|
|
@@ -18247,7 +18141,6 @@ declare const DTODocumentationPageContent: z.ZodObject<{
|
|
|
18247
18141
|
} | undefined;
|
|
18248
18142
|
}[];
|
|
18249
18143
|
indentLevel: number;
|
|
18250
|
-
variantId?: string | undefined;
|
|
18251
18144
|
appearance?: {
|
|
18252
18145
|
numberOfColumns?: number | undefined;
|
|
18253
18146
|
itemBackgroundColor?: {
|
|
@@ -18255,6 +18148,7 @@ declare const DTODocumentationPageContent: z.ZodObject<{
|
|
|
18255
18148
|
referencedTokenId?: string | undefined;
|
|
18256
18149
|
} | undefined;
|
|
18257
18150
|
} | undefined;
|
|
18151
|
+
variantId?: string | undefined;
|
|
18258
18152
|
};
|
|
18259
18153
|
}[];
|
|
18260
18154
|
}>, "many">;
|
|
@@ -18282,7 +18176,6 @@ declare const DTODocumentationPageContent: z.ZodObject<{
|
|
|
18282
18176
|
} | undefined;
|
|
18283
18177
|
}[];
|
|
18284
18178
|
indentLevel: number;
|
|
18285
|
-
variantId?: string | undefined;
|
|
18286
18179
|
appearance?: {
|
|
18287
18180
|
numberOfColumns?: number | undefined;
|
|
18288
18181
|
itemBackgroundColor?: {
|
|
@@ -18290,6 +18183,7 @@ declare const DTODocumentationPageContent: z.ZodObject<{
|
|
|
18290
18183
|
referencedTokenId?: string | undefined;
|
|
18291
18184
|
} | undefined;
|
|
18292
18185
|
} | undefined;
|
|
18186
|
+
variantId?: string | undefined;
|
|
18293
18187
|
};
|
|
18294
18188
|
}[];
|
|
18295
18189
|
}[];
|
|
@@ -18317,7 +18211,6 @@ declare const DTODocumentationPageContent: z.ZodObject<{
|
|
|
18317
18211
|
} | undefined;
|
|
18318
18212
|
}[];
|
|
18319
18213
|
indentLevel: number;
|
|
18320
|
-
variantId?: string | undefined;
|
|
18321
18214
|
appearance?: {
|
|
18322
18215
|
numberOfColumns?: number | undefined;
|
|
18323
18216
|
itemBackgroundColor?: {
|
|
@@ -18325,6 +18218,7 @@ declare const DTODocumentationPageContent: z.ZodObject<{
|
|
|
18325
18218
|
referencedTokenId?: string | undefined;
|
|
18326
18219
|
} | undefined;
|
|
18327
18220
|
} | undefined;
|
|
18221
|
+
variantId?: string | undefined;
|
|
18328
18222
|
};
|
|
18329
18223
|
}[];
|
|
18330
18224
|
}[];
|
|
@@ -18356,7 +18250,6 @@ declare const DTODocumentationPageContent: z.ZodObject<{
|
|
|
18356
18250
|
} | undefined;
|
|
18357
18251
|
}[];
|
|
18358
18252
|
indentLevel: number;
|
|
18359
|
-
variantId?: string | undefined;
|
|
18360
18253
|
appearance?: {
|
|
18361
18254
|
numberOfColumns?: number | undefined;
|
|
18362
18255
|
itemBackgroundColor?: {
|
|
@@ -18364,6 +18257,7 @@ declare const DTODocumentationPageContent: z.ZodObject<{
|
|
|
18364
18257
|
referencedTokenId?: string | undefined;
|
|
18365
18258
|
} | undefined;
|
|
18366
18259
|
} | undefined;
|
|
18260
|
+
variantId?: string | undefined;
|
|
18367
18261
|
};
|
|
18368
18262
|
}[];
|
|
18369
18263
|
}[];
|
|
@@ -18415,7 +18309,6 @@ declare const DTODocumentationPageContent: z.ZodObject<{
|
|
|
18415
18309
|
} | undefined;
|
|
18416
18310
|
}[];
|
|
18417
18311
|
indentLevel: number;
|
|
18418
|
-
variantId?: string | undefined;
|
|
18419
18312
|
appearance?: {
|
|
18420
18313
|
numberOfColumns?: number | undefined;
|
|
18421
18314
|
itemBackgroundColor?: {
|
|
@@ -18423,6 +18316,7 @@ declare const DTODocumentationPageContent: z.ZodObject<{
|
|
|
18423
18316
|
referencedTokenId?: string | undefined;
|
|
18424
18317
|
} | undefined;
|
|
18425
18318
|
} | undefined;
|
|
18319
|
+
variantId?: string | undefined;
|
|
18426
18320
|
};
|
|
18427
18321
|
}[];
|
|
18428
18322
|
}[];
|
|
@@ -18468,7 +18362,6 @@ declare const DTODocumentationPageContent: z.ZodObject<{
|
|
|
18468
18362
|
} | undefined;
|
|
18469
18363
|
}[];
|
|
18470
18364
|
indentLevel: number;
|
|
18471
|
-
variantId?: string | undefined;
|
|
18472
18365
|
appearance?: {
|
|
18473
18366
|
numberOfColumns?: number | undefined;
|
|
18474
18367
|
itemBackgroundColor?: {
|
|
@@ -18476,6 +18369,7 @@ declare const DTODocumentationPageContent: z.ZodObject<{
|
|
|
18476
18369
|
referencedTokenId?: string | undefined;
|
|
18477
18370
|
} | undefined;
|
|
18478
18371
|
} | undefined;
|
|
18372
|
+
variantId?: string | undefined;
|
|
18479
18373
|
};
|
|
18480
18374
|
} | {
|
|
18481
18375
|
id: string;
|
|
@@ -18504,7 +18398,6 @@ declare const DTODocumentationPageContent: z.ZodObject<{
|
|
|
18504
18398
|
} | undefined;
|
|
18505
18399
|
}[];
|
|
18506
18400
|
indentLevel: number;
|
|
18507
|
-
variantId?: string | undefined;
|
|
18508
18401
|
appearance?: {
|
|
18509
18402
|
numberOfColumns?: number | undefined;
|
|
18510
18403
|
itemBackgroundColor?: {
|
|
@@ -18512,6 +18405,7 @@ declare const DTODocumentationPageContent: z.ZodObject<{
|
|
|
18512
18405
|
referencedTokenId?: string | undefined;
|
|
18513
18406
|
} | undefined;
|
|
18514
18407
|
} | undefined;
|
|
18408
|
+
variantId?: string | undefined;
|
|
18515
18409
|
};
|
|
18516
18410
|
}[];
|
|
18517
18411
|
}[];
|
|
@@ -18557,7 +18451,6 @@ declare const DTODocumentationPageContent: z.ZodObject<{
|
|
|
18557
18451
|
} | undefined;
|
|
18558
18452
|
}[];
|
|
18559
18453
|
indentLevel: number;
|
|
18560
|
-
variantId?: string | undefined;
|
|
18561
18454
|
appearance?: {
|
|
18562
18455
|
numberOfColumns?: number | undefined;
|
|
18563
18456
|
itemBackgroundColor?: {
|
|
@@ -18565,6 +18458,7 @@ declare const DTODocumentationPageContent: z.ZodObject<{
|
|
|
18565
18458
|
referencedTokenId?: string | undefined;
|
|
18566
18459
|
} | undefined;
|
|
18567
18460
|
} | undefined;
|
|
18461
|
+
variantId?: string | undefined;
|
|
18568
18462
|
};
|
|
18569
18463
|
} | {
|
|
18570
18464
|
id: string;
|
|
@@ -18593,7 +18487,6 @@ declare const DTODocumentationPageContent: z.ZodObject<{
|
|
|
18593
18487
|
} | undefined;
|
|
18594
18488
|
}[];
|
|
18595
18489
|
indentLevel: number;
|
|
18596
|
-
variantId?: string | undefined;
|
|
18597
18490
|
appearance?: {
|
|
18598
18491
|
numberOfColumns?: number | undefined;
|
|
18599
18492
|
itemBackgroundColor?: {
|
|
@@ -18601,6 +18494,7 @@ declare const DTODocumentationPageContent: z.ZodObject<{
|
|
|
18601
18494
|
referencedTokenId?: string | undefined;
|
|
18602
18495
|
} | undefined;
|
|
18603
18496
|
} | undefined;
|
|
18497
|
+
variantId?: string | undefined;
|
|
18604
18498
|
};
|
|
18605
18499
|
}[];
|
|
18606
18500
|
}[];
|
|
@@ -18652,7 +18546,6 @@ declare const DTODocumentationPageContent: z.ZodObject<{
|
|
|
18652
18546
|
} | undefined;
|
|
18653
18547
|
}[];
|
|
18654
18548
|
indentLevel: number;
|
|
18655
|
-
variantId?: string | undefined;
|
|
18656
18549
|
appearance?: {
|
|
18657
18550
|
numberOfColumns?: number | undefined;
|
|
18658
18551
|
itemBackgroundColor?: {
|
|
@@ -18660,6 +18553,7 @@ declare const DTODocumentationPageContent: z.ZodObject<{
|
|
|
18660
18553
|
referencedTokenId?: string | undefined;
|
|
18661
18554
|
} | undefined;
|
|
18662
18555
|
} | undefined;
|
|
18556
|
+
variantId?: string | undefined;
|
|
18663
18557
|
};
|
|
18664
18558
|
} | {
|
|
18665
18559
|
id: string;
|
|
@@ -18688,7 +18582,6 @@ declare const DTODocumentationPageContent: z.ZodObject<{
|
|
|
18688
18582
|
} | undefined;
|
|
18689
18583
|
}[];
|
|
18690
18584
|
indentLevel: number;
|
|
18691
|
-
variantId?: string | undefined;
|
|
18692
18585
|
appearance?: {
|
|
18693
18586
|
numberOfColumns?: number | undefined;
|
|
18694
18587
|
itemBackgroundColor?: {
|
|
@@ -18696,6 +18589,7 @@ declare const DTODocumentationPageContent: z.ZodObject<{
|
|
|
18696
18589
|
referencedTokenId?: string | undefined;
|
|
18697
18590
|
} | undefined;
|
|
18698
18591
|
} | undefined;
|
|
18592
|
+
variantId?: string | undefined;
|
|
18699
18593
|
};
|
|
18700
18594
|
}[];
|
|
18701
18595
|
}[];
|
|
@@ -18748,7 +18642,6 @@ declare const DTODocumentationPageContent: z.ZodObject<{
|
|
|
18748
18642
|
} | undefined;
|
|
18749
18643
|
}[];
|
|
18750
18644
|
indentLevel: number;
|
|
18751
|
-
variantId?: string | undefined;
|
|
18752
18645
|
appearance?: {
|
|
18753
18646
|
numberOfColumns?: number | undefined;
|
|
18754
18647
|
itemBackgroundColor?: {
|
|
@@ -18756,6 +18649,7 @@ declare const DTODocumentationPageContent: z.ZodObject<{
|
|
|
18756
18649
|
referencedTokenId?: string | undefined;
|
|
18757
18650
|
} | undefined;
|
|
18758
18651
|
} | undefined;
|
|
18652
|
+
variantId?: string | undefined;
|
|
18759
18653
|
};
|
|
18760
18654
|
} | {
|
|
18761
18655
|
id: string;
|
|
@@ -18784,7 +18678,6 @@ declare const DTODocumentationPageContent: z.ZodObject<{
|
|
|
18784
18678
|
} | undefined;
|
|
18785
18679
|
}[];
|
|
18786
18680
|
indentLevel: number;
|
|
18787
|
-
variantId?: string | undefined;
|
|
18788
18681
|
appearance?: {
|
|
18789
18682
|
numberOfColumns?: number | undefined;
|
|
18790
18683
|
itemBackgroundColor?: {
|
|
@@ -18792,6 +18685,7 @@ declare const DTODocumentationPageContent: z.ZodObject<{
|
|
|
18792
18685
|
referencedTokenId?: string | undefined;
|
|
18793
18686
|
} | undefined;
|
|
18794
18687
|
} | undefined;
|
|
18688
|
+
variantId?: string | undefined;
|
|
18795
18689
|
};
|
|
18796
18690
|
}[];
|
|
18797
18691
|
}[];
|
|
@@ -18930,7 +18824,6 @@ declare const DTODocumentationPageContentGetResponse: z.ZodObject<{
|
|
|
18930
18824
|
} | undefined;
|
|
18931
18825
|
}[];
|
|
18932
18826
|
indentLevel: number;
|
|
18933
|
-
variantId?: string | undefined;
|
|
18934
18827
|
appearance?: {
|
|
18935
18828
|
numberOfColumns?: number | undefined;
|
|
18936
18829
|
itemBackgroundColor?: {
|
|
@@ -18938,6 +18831,7 @@ declare const DTODocumentationPageContentGetResponse: z.ZodObject<{
|
|
|
18938
18831
|
referencedTokenId?: string | undefined;
|
|
18939
18832
|
} | undefined;
|
|
18940
18833
|
} | undefined;
|
|
18834
|
+
variantId?: string | undefined;
|
|
18941
18835
|
}, {
|
|
18942
18836
|
packageId: string;
|
|
18943
18837
|
items: {
|
|
@@ -18954,7 +18848,6 @@ declare const DTODocumentationPageContentGetResponse: z.ZodObject<{
|
|
|
18954
18848
|
} | undefined;
|
|
18955
18849
|
}[];
|
|
18956
18850
|
indentLevel: number;
|
|
18957
|
-
variantId?: string | undefined;
|
|
18958
18851
|
appearance?: {
|
|
18959
18852
|
numberOfColumns?: number | undefined;
|
|
18960
18853
|
itemBackgroundColor?: {
|
|
@@ -18962,6 +18855,7 @@ declare const DTODocumentationPageContentGetResponse: z.ZodObject<{
|
|
|
18962
18855
|
referencedTokenId?: string | undefined;
|
|
18963
18856
|
} | undefined;
|
|
18964
18857
|
} | undefined;
|
|
18858
|
+
variantId?: string | undefined;
|
|
18965
18859
|
}>;
|
|
18966
18860
|
}, "strip", z.ZodTypeAny, {
|
|
18967
18861
|
id: string;
|
|
@@ -18982,7 +18876,6 @@ declare const DTODocumentationPageContentGetResponse: z.ZodObject<{
|
|
|
18982
18876
|
} | undefined;
|
|
18983
18877
|
}[];
|
|
18984
18878
|
indentLevel: number;
|
|
18985
|
-
variantId?: string | undefined;
|
|
18986
18879
|
appearance?: {
|
|
18987
18880
|
numberOfColumns?: number | undefined;
|
|
18988
18881
|
itemBackgroundColor?: {
|
|
@@ -18990,6 +18883,7 @@ declare const DTODocumentationPageContentGetResponse: z.ZodObject<{
|
|
|
18990
18883
|
referencedTokenId?: string | undefined;
|
|
18991
18884
|
} | undefined;
|
|
18992
18885
|
} | undefined;
|
|
18886
|
+
variantId?: string | undefined;
|
|
18993
18887
|
};
|
|
18994
18888
|
}, {
|
|
18995
18889
|
id: string;
|
|
@@ -19010,7 +18904,6 @@ declare const DTODocumentationPageContentGetResponse: z.ZodObject<{
|
|
|
19010
18904
|
} | undefined;
|
|
19011
18905
|
}[];
|
|
19012
18906
|
indentLevel: number;
|
|
19013
|
-
variantId?: string | undefined;
|
|
19014
18907
|
appearance?: {
|
|
19015
18908
|
numberOfColumns?: number | undefined;
|
|
19016
18909
|
itemBackgroundColor?: {
|
|
@@ -19018,6 +18911,7 @@ declare const DTODocumentationPageContentGetResponse: z.ZodObject<{
|
|
|
19018
18911
|
referencedTokenId?: string | undefined;
|
|
19019
18912
|
} | undefined;
|
|
19020
18913
|
} | undefined;
|
|
18914
|
+
variantId?: string | undefined;
|
|
19021
18915
|
};
|
|
19022
18916
|
}>, z.ZodObject<{
|
|
19023
18917
|
id: z.ZodString;
|
|
@@ -19204,7 +19098,6 @@ declare const DTODocumentationPageContentGetResponse: z.ZodObject<{
|
|
|
19204
19098
|
} | undefined;
|
|
19205
19099
|
}[];
|
|
19206
19100
|
indentLevel: number;
|
|
19207
|
-
variantId?: string | undefined;
|
|
19208
19101
|
appearance?: {
|
|
19209
19102
|
numberOfColumns?: number | undefined;
|
|
19210
19103
|
itemBackgroundColor?: {
|
|
@@ -19212,6 +19105,7 @@ declare const DTODocumentationPageContentGetResponse: z.ZodObject<{
|
|
|
19212
19105
|
referencedTokenId?: string | undefined;
|
|
19213
19106
|
} | undefined;
|
|
19214
19107
|
} | undefined;
|
|
19108
|
+
variantId?: string | undefined;
|
|
19215
19109
|
}, {
|
|
19216
19110
|
packageId: string;
|
|
19217
19111
|
items: {
|
|
@@ -19228,7 +19122,6 @@ declare const DTODocumentationPageContentGetResponse: z.ZodObject<{
|
|
|
19228
19122
|
} | undefined;
|
|
19229
19123
|
}[];
|
|
19230
19124
|
indentLevel: number;
|
|
19231
|
-
variantId?: string | undefined;
|
|
19232
19125
|
appearance?: {
|
|
19233
19126
|
numberOfColumns?: number | undefined;
|
|
19234
19127
|
itemBackgroundColor?: {
|
|
@@ -19236,6 +19129,7 @@ declare const DTODocumentationPageContentGetResponse: z.ZodObject<{
|
|
|
19236
19129
|
referencedTokenId?: string | undefined;
|
|
19237
19130
|
} | undefined;
|
|
19238
19131
|
} | undefined;
|
|
19132
|
+
variantId?: string | undefined;
|
|
19239
19133
|
}>;
|
|
19240
19134
|
}, "strip", z.ZodTypeAny, {
|
|
19241
19135
|
id: string;
|
|
@@ -19256,7 +19150,6 @@ declare const DTODocumentationPageContentGetResponse: z.ZodObject<{
|
|
|
19256
19150
|
} | undefined;
|
|
19257
19151
|
}[];
|
|
19258
19152
|
indentLevel: number;
|
|
19259
|
-
variantId?: string | undefined;
|
|
19260
19153
|
appearance?: {
|
|
19261
19154
|
numberOfColumns?: number | undefined;
|
|
19262
19155
|
itemBackgroundColor?: {
|
|
@@ -19264,6 +19157,7 @@ declare const DTODocumentationPageContentGetResponse: z.ZodObject<{
|
|
|
19264
19157
|
referencedTokenId?: string | undefined;
|
|
19265
19158
|
} | undefined;
|
|
19266
19159
|
} | undefined;
|
|
19160
|
+
variantId?: string | undefined;
|
|
19267
19161
|
};
|
|
19268
19162
|
}, {
|
|
19269
19163
|
id: string;
|
|
@@ -19284,7 +19178,6 @@ declare const DTODocumentationPageContentGetResponse: z.ZodObject<{
|
|
|
19284
19178
|
} | undefined;
|
|
19285
19179
|
}[];
|
|
19286
19180
|
indentLevel: number;
|
|
19287
|
-
variantId?: string | undefined;
|
|
19288
19181
|
appearance?: {
|
|
19289
19182
|
numberOfColumns?: number | undefined;
|
|
19290
19183
|
itemBackgroundColor?: {
|
|
@@ -19292,6 +19185,7 @@ declare const DTODocumentationPageContentGetResponse: z.ZodObject<{
|
|
|
19292
19185
|
referencedTokenId?: string | undefined;
|
|
19293
19186
|
} | undefined;
|
|
19294
19187
|
} | undefined;
|
|
19188
|
+
variantId?: string | undefined;
|
|
19295
19189
|
};
|
|
19296
19190
|
}>, "many">;
|
|
19297
19191
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -19315,7 +19209,6 @@ declare const DTODocumentationPageContentGetResponse: z.ZodObject<{
|
|
|
19315
19209
|
} | undefined;
|
|
19316
19210
|
}[];
|
|
19317
19211
|
indentLevel: number;
|
|
19318
|
-
variantId?: string | undefined;
|
|
19319
19212
|
appearance?: {
|
|
19320
19213
|
numberOfColumns?: number | undefined;
|
|
19321
19214
|
itemBackgroundColor?: {
|
|
@@ -19323,6 +19216,7 @@ declare const DTODocumentationPageContentGetResponse: z.ZodObject<{
|
|
|
19323
19216
|
referencedTokenId?: string | undefined;
|
|
19324
19217
|
} | undefined;
|
|
19325
19218
|
} | undefined;
|
|
19219
|
+
variantId?: string | undefined;
|
|
19326
19220
|
};
|
|
19327
19221
|
}[];
|
|
19328
19222
|
}, {
|
|
@@ -19346,7 +19240,6 @@ declare const DTODocumentationPageContentGetResponse: z.ZodObject<{
|
|
|
19346
19240
|
} | undefined;
|
|
19347
19241
|
}[];
|
|
19348
19242
|
indentLevel: number;
|
|
19349
|
-
variantId?: string | undefined;
|
|
19350
19243
|
appearance?: {
|
|
19351
19244
|
numberOfColumns?: number | undefined;
|
|
19352
19245
|
itemBackgroundColor?: {
|
|
@@ -19354,6 +19247,7 @@ declare const DTODocumentationPageContentGetResponse: z.ZodObject<{
|
|
|
19354
19247
|
referencedTokenId?: string | undefined;
|
|
19355
19248
|
} | undefined;
|
|
19356
19249
|
} | undefined;
|
|
19250
|
+
variantId?: string | undefined;
|
|
19357
19251
|
};
|
|
19358
19252
|
}[];
|
|
19359
19253
|
}>, "many">;
|
|
@@ -19381,7 +19275,6 @@ declare const DTODocumentationPageContentGetResponse: z.ZodObject<{
|
|
|
19381
19275
|
} | undefined;
|
|
19382
19276
|
}[];
|
|
19383
19277
|
indentLevel: number;
|
|
19384
|
-
variantId?: string | undefined;
|
|
19385
19278
|
appearance?: {
|
|
19386
19279
|
numberOfColumns?: number | undefined;
|
|
19387
19280
|
itemBackgroundColor?: {
|
|
@@ -19389,6 +19282,7 @@ declare const DTODocumentationPageContentGetResponse: z.ZodObject<{
|
|
|
19389
19282
|
referencedTokenId?: string | undefined;
|
|
19390
19283
|
} | undefined;
|
|
19391
19284
|
} | undefined;
|
|
19285
|
+
variantId?: string | undefined;
|
|
19392
19286
|
};
|
|
19393
19287
|
}[];
|
|
19394
19288
|
}[];
|
|
@@ -19416,7 +19310,6 @@ declare const DTODocumentationPageContentGetResponse: z.ZodObject<{
|
|
|
19416
19310
|
} | undefined;
|
|
19417
19311
|
}[];
|
|
19418
19312
|
indentLevel: number;
|
|
19419
|
-
variantId?: string | undefined;
|
|
19420
19313
|
appearance?: {
|
|
19421
19314
|
numberOfColumns?: number | undefined;
|
|
19422
19315
|
itemBackgroundColor?: {
|
|
@@ -19424,6 +19317,7 @@ declare const DTODocumentationPageContentGetResponse: z.ZodObject<{
|
|
|
19424
19317
|
referencedTokenId?: string | undefined;
|
|
19425
19318
|
} | undefined;
|
|
19426
19319
|
} | undefined;
|
|
19320
|
+
variantId?: string | undefined;
|
|
19427
19321
|
};
|
|
19428
19322
|
}[];
|
|
19429
19323
|
}[];
|
|
@@ -19455,7 +19349,6 @@ declare const DTODocumentationPageContentGetResponse: z.ZodObject<{
|
|
|
19455
19349
|
} | undefined;
|
|
19456
19350
|
}[];
|
|
19457
19351
|
indentLevel: number;
|
|
19458
|
-
variantId?: string | undefined;
|
|
19459
19352
|
appearance?: {
|
|
19460
19353
|
numberOfColumns?: number | undefined;
|
|
19461
19354
|
itemBackgroundColor?: {
|
|
@@ -19463,6 +19356,7 @@ declare const DTODocumentationPageContentGetResponse: z.ZodObject<{
|
|
|
19463
19356
|
referencedTokenId?: string | undefined;
|
|
19464
19357
|
} | undefined;
|
|
19465
19358
|
} | undefined;
|
|
19359
|
+
variantId?: string | undefined;
|
|
19466
19360
|
};
|
|
19467
19361
|
}[];
|
|
19468
19362
|
}[];
|
|
@@ -19514,7 +19408,6 @@ declare const DTODocumentationPageContentGetResponse: z.ZodObject<{
|
|
|
19514
19408
|
} | undefined;
|
|
19515
19409
|
}[];
|
|
19516
19410
|
indentLevel: number;
|
|
19517
|
-
variantId?: string | undefined;
|
|
19518
19411
|
appearance?: {
|
|
19519
19412
|
numberOfColumns?: number | undefined;
|
|
19520
19413
|
itemBackgroundColor?: {
|
|
@@ -19522,6 +19415,7 @@ declare const DTODocumentationPageContentGetResponse: z.ZodObject<{
|
|
|
19522
19415
|
referencedTokenId?: string | undefined;
|
|
19523
19416
|
} | undefined;
|
|
19524
19417
|
} | undefined;
|
|
19418
|
+
variantId?: string | undefined;
|
|
19525
19419
|
};
|
|
19526
19420
|
}[];
|
|
19527
19421
|
}[];
|
|
@@ -19567,7 +19461,6 @@ declare const DTODocumentationPageContentGetResponse: z.ZodObject<{
|
|
|
19567
19461
|
} | undefined;
|
|
19568
19462
|
}[];
|
|
19569
19463
|
indentLevel: number;
|
|
19570
|
-
variantId?: string | undefined;
|
|
19571
19464
|
appearance?: {
|
|
19572
19465
|
numberOfColumns?: number | undefined;
|
|
19573
19466
|
itemBackgroundColor?: {
|
|
@@ -19575,6 +19468,7 @@ declare const DTODocumentationPageContentGetResponse: z.ZodObject<{
|
|
|
19575
19468
|
referencedTokenId?: string | undefined;
|
|
19576
19469
|
} | undefined;
|
|
19577
19470
|
} | undefined;
|
|
19471
|
+
variantId?: string | undefined;
|
|
19578
19472
|
};
|
|
19579
19473
|
} | {
|
|
19580
19474
|
id: string;
|
|
@@ -19603,7 +19497,6 @@ declare const DTODocumentationPageContentGetResponse: z.ZodObject<{
|
|
|
19603
19497
|
} | undefined;
|
|
19604
19498
|
}[];
|
|
19605
19499
|
indentLevel: number;
|
|
19606
|
-
variantId?: string | undefined;
|
|
19607
19500
|
appearance?: {
|
|
19608
19501
|
numberOfColumns?: number | undefined;
|
|
19609
19502
|
itemBackgroundColor?: {
|
|
@@ -19611,6 +19504,7 @@ declare const DTODocumentationPageContentGetResponse: z.ZodObject<{
|
|
|
19611
19504
|
referencedTokenId?: string | undefined;
|
|
19612
19505
|
} | undefined;
|
|
19613
19506
|
} | undefined;
|
|
19507
|
+
variantId?: string | undefined;
|
|
19614
19508
|
};
|
|
19615
19509
|
}[];
|
|
19616
19510
|
}[];
|
|
@@ -19656,7 +19550,6 @@ declare const DTODocumentationPageContentGetResponse: z.ZodObject<{
|
|
|
19656
19550
|
} | undefined;
|
|
19657
19551
|
}[];
|
|
19658
19552
|
indentLevel: number;
|
|
19659
|
-
variantId?: string | undefined;
|
|
19660
19553
|
appearance?: {
|
|
19661
19554
|
numberOfColumns?: number | undefined;
|
|
19662
19555
|
itemBackgroundColor?: {
|
|
@@ -19664,6 +19557,7 @@ declare const DTODocumentationPageContentGetResponse: z.ZodObject<{
|
|
|
19664
19557
|
referencedTokenId?: string | undefined;
|
|
19665
19558
|
} | undefined;
|
|
19666
19559
|
} | undefined;
|
|
19560
|
+
variantId?: string | undefined;
|
|
19667
19561
|
};
|
|
19668
19562
|
} | {
|
|
19669
19563
|
id: string;
|
|
@@ -19692,7 +19586,6 @@ declare const DTODocumentationPageContentGetResponse: z.ZodObject<{
|
|
|
19692
19586
|
} | undefined;
|
|
19693
19587
|
}[];
|
|
19694
19588
|
indentLevel: number;
|
|
19695
|
-
variantId?: string | undefined;
|
|
19696
19589
|
appearance?: {
|
|
19697
19590
|
numberOfColumns?: number | undefined;
|
|
19698
19591
|
itemBackgroundColor?: {
|
|
@@ -19700,6 +19593,7 @@ declare const DTODocumentationPageContentGetResponse: z.ZodObject<{
|
|
|
19700
19593
|
referencedTokenId?: string | undefined;
|
|
19701
19594
|
} | undefined;
|
|
19702
19595
|
} | undefined;
|
|
19596
|
+
variantId?: string | undefined;
|
|
19703
19597
|
};
|
|
19704
19598
|
}[];
|
|
19705
19599
|
}[];
|
|
@@ -19751,7 +19645,6 @@ declare const DTODocumentationPageContentGetResponse: z.ZodObject<{
|
|
|
19751
19645
|
} | undefined;
|
|
19752
19646
|
}[];
|
|
19753
19647
|
indentLevel: number;
|
|
19754
|
-
variantId?: string | undefined;
|
|
19755
19648
|
appearance?: {
|
|
19756
19649
|
numberOfColumns?: number | undefined;
|
|
19757
19650
|
itemBackgroundColor?: {
|
|
@@ -19759,6 +19652,7 @@ declare const DTODocumentationPageContentGetResponse: z.ZodObject<{
|
|
|
19759
19652
|
referencedTokenId?: string | undefined;
|
|
19760
19653
|
} | undefined;
|
|
19761
19654
|
} | undefined;
|
|
19655
|
+
variantId?: string | undefined;
|
|
19762
19656
|
};
|
|
19763
19657
|
} | {
|
|
19764
19658
|
id: string;
|
|
@@ -19787,7 +19681,6 @@ declare const DTODocumentationPageContentGetResponse: z.ZodObject<{
|
|
|
19787
19681
|
} | undefined;
|
|
19788
19682
|
}[];
|
|
19789
19683
|
indentLevel: number;
|
|
19790
|
-
variantId?: string | undefined;
|
|
19791
19684
|
appearance?: {
|
|
19792
19685
|
numberOfColumns?: number | undefined;
|
|
19793
19686
|
itemBackgroundColor?: {
|
|
@@ -19795,6 +19688,7 @@ declare const DTODocumentationPageContentGetResponse: z.ZodObject<{
|
|
|
19795
19688
|
referencedTokenId?: string | undefined;
|
|
19796
19689
|
} | undefined;
|
|
19797
19690
|
} | undefined;
|
|
19691
|
+
variantId?: string | undefined;
|
|
19798
19692
|
};
|
|
19799
19693
|
}[];
|
|
19800
19694
|
}[];
|
|
@@ -19847,7 +19741,6 @@ declare const DTODocumentationPageContentGetResponse: z.ZodObject<{
|
|
|
19847
19741
|
} | undefined;
|
|
19848
19742
|
}[];
|
|
19849
19743
|
indentLevel: number;
|
|
19850
|
-
variantId?: string | undefined;
|
|
19851
19744
|
appearance?: {
|
|
19852
19745
|
numberOfColumns?: number | undefined;
|
|
19853
19746
|
itemBackgroundColor?: {
|
|
@@ -19855,6 +19748,7 @@ declare const DTODocumentationPageContentGetResponse: z.ZodObject<{
|
|
|
19855
19748
|
referencedTokenId?: string | undefined;
|
|
19856
19749
|
} | undefined;
|
|
19857
19750
|
} | undefined;
|
|
19751
|
+
variantId?: string | undefined;
|
|
19858
19752
|
};
|
|
19859
19753
|
} | {
|
|
19860
19754
|
id: string;
|
|
@@ -19883,7 +19777,6 @@ declare const DTODocumentationPageContentGetResponse: z.ZodObject<{
|
|
|
19883
19777
|
} | undefined;
|
|
19884
19778
|
}[];
|
|
19885
19779
|
indentLevel: number;
|
|
19886
|
-
variantId?: string | undefined;
|
|
19887
19780
|
appearance?: {
|
|
19888
19781
|
numberOfColumns?: number | undefined;
|
|
19889
19782
|
itemBackgroundColor?: {
|
|
@@ -19891,6 +19784,7 @@ declare const DTODocumentationPageContentGetResponse: z.ZodObject<{
|
|
|
19891
19784
|
referencedTokenId?: string | undefined;
|
|
19892
19785
|
} | undefined;
|
|
19893
19786
|
} | undefined;
|
|
19787
|
+
variantId?: string | undefined;
|
|
19894
19788
|
};
|
|
19895
19789
|
}[];
|
|
19896
19790
|
}[];
|
|
@@ -19945,7 +19839,6 @@ declare const DTODocumentationPageContentGetResponse: z.ZodObject<{
|
|
|
19945
19839
|
} | undefined;
|
|
19946
19840
|
}[];
|
|
19947
19841
|
indentLevel: number;
|
|
19948
|
-
variantId?: string | undefined;
|
|
19949
19842
|
appearance?: {
|
|
19950
19843
|
numberOfColumns?: number | undefined;
|
|
19951
19844
|
itemBackgroundColor?: {
|
|
@@ -19953,6 +19846,7 @@ declare const DTODocumentationPageContentGetResponse: z.ZodObject<{
|
|
|
19953
19846
|
referencedTokenId?: string | undefined;
|
|
19954
19847
|
} | undefined;
|
|
19955
19848
|
} | undefined;
|
|
19849
|
+
variantId?: string | undefined;
|
|
19956
19850
|
};
|
|
19957
19851
|
} | {
|
|
19958
19852
|
id: string;
|
|
@@ -19981,7 +19875,6 @@ declare const DTODocumentationPageContentGetResponse: z.ZodObject<{
|
|
|
19981
19875
|
} | undefined;
|
|
19982
19876
|
}[];
|
|
19983
19877
|
indentLevel: number;
|
|
19984
|
-
variantId?: string | undefined;
|
|
19985
19878
|
appearance?: {
|
|
19986
19879
|
numberOfColumns?: number | undefined;
|
|
19987
19880
|
itemBackgroundColor?: {
|
|
@@ -19989,6 +19882,7 @@ declare const DTODocumentationPageContentGetResponse: z.ZodObject<{
|
|
|
19989
19882
|
referencedTokenId?: string | undefined;
|
|
19990
19883
|
} | undefined;
|
|
19991
19884
|
} | undefined;
|
|
19885
|
+
variantId?: string | undefined;
|
|
19992
19886
|
};
|
|
19993
19887
|
}[];
|
|
19994
19888
|
}[];
|
|
@@ -20043,7 +19937,6 @@ declare const DTODocumentationPageContentGetResponse: z.ZodObject<{
|
|
|
20043
19937
|
} | undefined;
|
|
20044
19938
|
}[];
|
|
20045
19939
|
indentLevel: number;
|
|
20046
|
-
variantId?: string | undefined;
|
|
20047
19940
|
appearance?: {
|
|
20048
19941
|
numberOfColumns?: number | undefined;
|
|
20049
19942
|
itemBackgroundColor?: {
|
|
@@ -20051,6 +19944,7 @@ declare const DTODocumentationPageContentGetResponse: z.ZodObject<{
|
|
|
20051
19944
|
referencedTokenId?: string | undefined;
|
|
20052
19945
|
} | undefined;
|
|
20053
19946
|
} | undefined;
|
|
19947
|
+
variantId?: string | undefined;
|
|
20054
19948
|
};
|
|
20055
19949
|
} | {
|
|
20056
19950
|
id: string;
|
|
@@ -20079,7 +19973,6 @@ declare const DTODocumentationPageContentGetResponse: z.ZodObject<{
|
|
|
20079
19973
|
} | undefined;
|
|
20080
19974
|
}[];
|
|
20081
19975
|
indentLevel: number;
|
|
20082
|
-
variantId?: string | undefined;
|
|
20083
19976
|
appearance?: {
|
|
20084
19977
|
numberOfColumns?: number | undefined;
|
|
20085
19978
|
itemBackgroundColor?: {
|
|
@@ -20087,6 +19980,7 @@ declare const DTODocumentationPageContentGetResponse: z.ZodObject<{
|
|
|
20087
19980
|
referencedTokenId?: string | undefined;
|
|
20088
19981
|
} | undefined;
|
|
20089
19982
|
} | undefined;
|
|
19983
|
+
variantId?: string | undefined;
|
|
20090
19984
|
};
|
|
20091
19985
|
}[];
|
|
20092
19986
|
}[];
|
|
@@ -39589,12 +39483,12 @@ declare const PageBlockDefinitionLayoutBase: z.ZodObject<{
|
|
|
39589
39483
|
columnResizing: z.ZodOptional<z.ZodEnum<["Fill", "Hug"]>>;
|
|
39590
39484
|
}, "strip", z.ZodTypeAny, {
|
|
39591
39485
|
type: "Column" | "Row";
|
|
39592
|
-
gap?: "
|
|
39486
|
+
gap?: "Small" | "Medium" | "Large" | "None" | undefined;
|
|
39593
39487
|
columnAlign?: "Center" | "Start" | "End" | undefined;
|
|
39594
39488
|
columnResizing?: "Fill" | "Hug" | undefined;
|
|
39595
39489
|
}, {
|
|
39596
39490
|
type: "Column" | "Row";
|
|
39597
|
-
gap?: "
|
|
39491
|
+
gap?: "Small" | "Medium" | "Large" | "None" | undefined;
|
|
39598
39492
|
columnAlign?: "Center" | "Start" | "End" | undefined;
|
|
39599
39493
|
columnResizing?: "Fill" | "Hug" | undefined;
|
|
39600
39494
|
}>;
|
|
@@ -39689,15 +39583,15 @@ declare const DTOGetBlockDefinitionsOutput: z.ZodObject<{
|
|
|
39689
39583
|
};
|
|
39690
39584
|
description?: string | undefined;
|
|
39691
39585
|
image?: string | undefined;
|
|
39586
|
+
documentationLink?: string | undefined;
|
|
39587
|
+
maxColumns?: number | undefined;
|
|
39588
|
+
defaultColumns?: number | undefined;
|
|
39692
39589
|
appearance?: {
|
|
39693
39590
|
isBordered?: boolean | undefined;
|
|
39694
39591
|
hasBackground?: boolean | undefined;
|
|
39695
39592
|
isEditorPresentationDifferent?: boolean | undefined;
|
|
39696
39593
|
showBlockHeaderInEditor?: boolean | undefined;
|
|
39697
39594
|
} | undefined;
|
|
39698
|
-
documentationLink?: string | undefined;
|
|
39699
|
-
maxColumns?: number | undefined;
|
|
39700
|
-
defaultColumns?: number | undefined;
|
|
39701
39595
|
}, {
|
|
39702
39596
|
id: string;
|
|
39703
39597
|
name: string;
|
|
@@ -39711,15 +39605,15 @@ declare const DTOGetBlockDefinitionsOutput: z.ZodObject<{
|
|
|
39711
39605
|
};
|
|
39712
39606
|
description?: string | undefined;
|
|
39713
39607
|
image?: string | undefined;
|
|
39608
|
+
documentationLink?: string | undefined;
|
|
39609
|
+
maxColumns?: number | undefined;
|
|
39610
|
+
defaultColumns?: number | undefined;
|
|
39714
39611
|
appearance?: {
|
|
39715
39612
|
isBordered?: boolean | undefined;
|
|
39716
39613
|
hasBackground?: boolean | undefined;
|
|
39717
39614
|
isEditorPresentationDifferent?: boolean | undefined;
|
|
39718
39615
|
showBlockHeaderInEditor?: boolean | undefined;
|
|
39719
39616
|
} | undefined;
|
|
39720
|
-
documentationLink?: string | undefined;
|
|
39721
|
-
maxColumns?: number | undefined;
|
|
39722
|
-
defaultColumns?: number | undefined;
|
|
39723
39617
|
}>, "many">;
|
|
39724
39618
|
defaultVariantKey: z.ZodString;
|
|
39725
39619
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -39744,15 +39638,15 @@ declare const DTOGetBlockDefinitionsOutput: z.ZodObject<{
|
|
|
39744
39638
|
};
|
|
39745
39639
|
description?: string | undefined;
|
|
39746
39640
|
image?: string | undefined;
|
|
39641
|
+
documentationLink?: string | undefined;
|
|
39642
|
+
maxColumns?: number | undefined;
|
|
39643
|
+
defaultColumns?: number | undefined;
|
|
39747
39644
|
appearance?: {
|
|
39748
39645
|
isBordered?: boolean | undefined;
|
|
39749
39646
|
hasBackground?: boolean | undefined;
|
|
39750
39647
|
isEditorPresentationDifferent?: boolean | undefined;
|
|
39751
39648
|
showBlockHeaderInEditor?: boolean | undefined;
|
|
39752
39649
|
} | undefined;
|
|
39753
|
-
documentationLink?: string | undefined;
|
|
39754
|
-
maxColumns?: number | undefined;
|
|
39755
|
-
defaultColumns?: number | undefined;
|
|
39756
39650
|
}[];
|
|
39757
39651
|
defaultVariantKey: string;
|
|
39758
39652
|
appearance?: {
|
|
@@ -39783,15 +39677,15 @@ declare const DTOGetBlockDefinitionsOutput: z.ZodObject<{
|
|
|
39783
39677
|
};
|
|
39784
39678
|
description?: string | undefined;
|
|
39785
39679
|
image?: string | undefined;
|
|
39680
|
+
documentationLink?: string | undefined;
|
|
39681
|
+
maxColumns?: number | undefined;
|
|
39682
|
+
defaultColumns?: number | undefined;
|
|
39786
39683
|
appearance?: {
|
|
39787
39684
|
isBordered?: boolean | undefined;
|
|
39788
39685
|
hasBackground?: boolean | undefined;
|
|
39789
39686
|
isEditorPresentationDifferent?: boolean | undefined;
|
|
39790
39687
|
showBlockHeaderInEditor?: boolean | undefined;
|
|
39791
39688
|
} | undefined;
|
|
39792
|
-
documentationLink?: string | undefined;
|
|
39793
|
-
maxColumns?: number | undefined;
|
|
39794
|
-
defaultColumns?: number | undefined;
|
|
39795
39689
|
}[];
|
|
39796
39690
|
defaultVariantKey: string;
|
|
39797
39691
|
appearance?: {
|
|
@@ -39917,15 +39811,15 @@ declare const DTOGetBlockDefinitionsOutput: z.ZodObject<{
|
|
|
39917
39811
|
};
|
|
39918
39812
|
description?: string | undefined;
|
|
39919
39813
|
image?: string | undefined;
|
|
39814
|
+
documentationLink?: string | undefined;
|
|
39815
|
+
maxColumns?: number | undefined;
|
|
39816
|
+
defaultColumns?: number | undefined;
|
|
39920
39817
|
appearance?: {
|
|
39921
39818
|
isBordered?: boolean | undefined;
|
|
39922
39819
|
hasBackground?: boolean | undefined;
|
|
39923
39820
|
isEditorPresentationDifferent?: boolean | undefined;
|
|
39924
39821
|
showBlockHeaderInEditor?: boolean | undefined;
|
|
39925
39822
|
} | undefined;
|
|
39926
|
-
documentationLink?: string | undefined;
|
|
39927
|
-
maxColumns?: number | undefined;
|
|
39928
|
-
defaultColumns?: number | undefined;
|
|
39929
39823
|
}[];
|
|
39930
39824
|
defaultVariantKey: string;
|
|
39931
39825
|
appearance?: {
|
|
@@ -39955,13 +39849,13 @@ declare const DTOGetBlockDefinitionsOutput: z.ZodObject<{
|
|
|
39955
39849
|
} | undefined;
|
|
39956
39850
|
};
|
|
39957
39851
|
icon?: string | undefined;
|
|
39852
|
+
documentationLink?: string | undefined;
|
|
39958
39853
|
appearance?: {
|
|
39959
39854
|
isBordered?: boolean | undefined;
|
|
39960
39855
|
hasBackground?: boolean | undefined;
|
|
39961
39856
|
isEditorPresentationDifferent?: boolean | undefined;
|
|
39962
39857
|
showBlockHeaderInEditor?: boolean | undefined;
|
|
39963
39858
|
} | undefined;
|
|
39964
|
-
documentationLink?: string | undefined;
|
|
39965
39859
|
searchKeywords?: string[] | undefined;
|
|
39966
39860
|
}, {
|
|
39967
39861
|
id: string;
|
|
@@ -39990,15 +39884,15 @@ declare const DTOGetBlockDefinitionsOutput: z.ZodObject<{
|
|
|
39990
39884
|
};
|
|
39991
39885
|
description?: string | undefined;
|
|
39992
39886
|
image?: string | undefined;
|
|
39887
|
+
documentationLink?: string | undefined;
|
|
39888
|
+
maxColumns?: number | undefined;
|
|
39889
|
+
defaultColumns?: number | undefined;
|
|
39993
39890
|
appearance?: {
|
|
39994
39891
|
isBordered?: boolean | undefined;
|
|
39995
39892
|
hasBackground?: boolean | undefined;
|
|
39996
39893
|
isEditorPresentationDifferent?: boolean | undefined;
|
|
39997
39894
|
showBlockHeaderInEditor?: boolean | undefined;
|
|
39998
39895
|
} | undefined;
|
|
39999
|
-
documentationLink?: string | undefined;
|
|
40000
|
-
maxColumns?: number | undefined;
|
|
40001
|
-
defaultColumns?: number | undefined;
|
|
40002
39896
|
}[];
|
|
40003
39897
|
defaultVariantKey: string;
|
|
40004
39898
|
appearance?: {
|
|
@@ -40028,13 +39922,13 @@ declare const DTOGetBlockDefinitionsOutput: z.ZodObject<{
|
|
|
40028
39922
|
} | undefined;
|
|
40029
39923
|
};
|
|
40030
39924
|
icon?: string | undefined;
|
|
39925
|
+
documentationLink?: string | undefined;
|
|
40031
39926
|
appearance?: {
|
|
40032
39927
|
isBordered?: boolean | undefined;
|
|
40033
39928
|
hasBackground?: boolean | undefined;
|
|
40034
39929
|
isEditorPresentationDifferent?: boolean | undefined;
|
|
40035
39930
|
showBlockHeaderInEditor?: boolean | undefined;
|
|
40036
39931
|
} | undefined;
|
|
40037
|
-
documentationLink?: string | undefined;
|
|
40038
39932
|
searchKeywords?: string[] | undefined;
|
|
40039
39933
|
}>, "many">;
|
|
40040
39934
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -40065,15 +39959,15 @@ declare const DTOGetBlockDefinitionsOutput: z.ZodObject<{
|
|
|
40065
39959
|
};
|
|
40066
39960
|
description?: string | undefined;
|
|
40067
39961
|
image?: string | undefined;
|
|
39962
|
+
documentationLink?: string | undefined;
|
|
39963
|
+
maxColumns?: number | undefined;
|
|
39964
|
+
defaultColumns?: number | undefined;
|
|
40068
39965
|
appearance?: {
|
|
40069
39966
|
isBordered?: boolean | undefined;
|
|
40070
39967
|
hasBackground?: boolean | undefined;
|
|
40071
39968
|
isEditorPresentationDifferent?: boolean | undefined;
|
|
40072
39969
|
showBlockHeaderInEditor?: boolean | undefined;
|
|
40073
39970
|
} | undefined;
|
|
40074
|
-
documentationLink?: string | undefined;
|
|
40075
|
-
maxColumns?: number | undefined;
|
|
40076
|
-
defaultColumns?: number | undefined;
|
|
40077
39971
|
}[];
|
|
40078
39972
|
defaultVariantKey: string;
|
|
40079
39973
|
appearance?: {
|
|
@@ -40103,13 +39997,13 @@ declare const DTOGetBlockDefinitionsOutput: z.ZodObject<{
|
|
|
40103
39997
|
} | undefined;
|
|
40104
39998
|
};
|
|
40105
39999
|
icon?: string | undefined;
|
|
40000
|
+
documentationLink?: string | undefined;
|
|
40106
40001
|
appearance?: {
|
|
40107
40002
|
isBordered?: boolean | undefined;
|
|
40108
40003
|
hasBackground?: boolean | undefined;
|
|
40109
40004
|
isEditorPresentationDifferent?: boolean | undefined;
|
|
40110
40005
|
showBlockHeaderInEditor?: boolean | undefined;
|
|
40111
40006
|
} | undefined;
|
|
40112
|
-
documentationLink?: string | undefined;
|
|
40113
40007
|
searchKeywords?: string[] | undefined;
|
|
40114
40008
|
}[];
|
|
40115
40009
|
}, {
|
|
@@ -40140,15 +40034,15 @@ declare const DTOGetBlockDefinitionsOutput: z.ZodObject<{
|
|
|
40140
40034
|
};
|
|
40141
40035
|
description?: string | undefined;
|
|
40142
40036
|
image?: string | undefined;
|
|
40037
|
+
documentationLink?: string | undefined;
|
|
40038
|
+
maxColumns?: number | undefined;
|
|
40039
|
+
defaultColumns?: number | undefined;
|
|
40143
40040
|
appearance?: {
|
|
40144
40041
|
isBordered?: boolean | undefined;
|
|
40145
40042
|
hasBackground?: boolean | undefined;
|
|
40146
40043
|
isEditorPresentationDifferent?: boolean | undefined;
|
|
40147
40044
|
showBlockHeaderInEditor?: boolean | undefined;
|
|
40148
40045
|
} | undefined;
|
|
40149
|
-
documentationLink?: string | undefined;
|
|
40150
|
-
maxColumns?: number | undefined;
|
|
40151
|
-
defaultColumns?: number | undefined;
|
|
40152
40046
|
}[];
|
|
40153
40047
|
defaultVariantKey: string;
|
|
40154
40048
|
appearance?: {
|
|
@@ -40178,13 +40072,13 @@ declare const DTOGetBlockDefinitionsOutput: z.ZodObject<{
|
|
|
40178
40072
|
} | undefined;
|
|
40179
40073
|
};
|
|
40180
40074
|
icon?: string | undefined;
|
|
40075
|
+
documentationLink?: string | undefined;
|
|
40181
40076
|
appearance?: {
|
|
40182
40077
|
isBordered?: boolean | undefined;
|
|
40183
40078
|
hasBackground?: boolean | undefined;
|
|
40184
40079
|
isEditorPresentationDifferent?: boolean | undefined;
|
|
40185
40080
|
showBlockHeaderInEditor?: boolean | undefined;
|
|
40186
40081
|
} | undefined;
|
|
40187
|
-
documentationLink?: string | undefined;
|
|
40188
40082
|
searchKeywords?: string[] | undefined;
|
|
40189
40083
|
}[];
|
|
40190
40084
|
}>;
|
|
@@ -42571,7 +42465,6 @@ declare const PageBlockEditorModel: z.ZodObject<{
|
|
|
42571
42465
|
} | undefined;
|
|
42572
42466
|
}[];
|
|
42573
42467
|
indentLevel: number;
|
|
42574
|
-
variantId?: string | undefined;
|
|
42575
42468
|
appearance?: {
|
|
42576
42469
|
numberOfColumns?: number | undefined;
|
|
42577
42470
|
itemBackgroundColor?: {
|
|
@@ -42579,6 +42472,7 @@ declare const PageBlockEditorModel: z.ZodObject<{
|
|
|
42579
42472
|
referencedTokenId?: string | undefined;
|
|
42580
42473
|
} | undefined;
|
|
42581
42474
|
} | undefined;
|
|
42475
|
+
variantId?: string | undefined;
|
|
42582
42476
|
}, {
|
|
42583
42477
|
packageId: string;
|
|
42584
42478
|
items: {
|
|
@@ -42595,7 +42489,6 @@ declare const PageBlockEditorModel: z.ZodObject<{
|
|
|
42595
42489
|
} | undefined;
|
|
42596
42490
|
}[];
|
|
42597
42491
|
indentLevel: number;
|
|
42598
|
-
variantId?: string | undefined;
|
|
42599
42492
|
appearance?: {
|
|
42600
42493
|
numberOfColumns?: number | undefined;
|
|
42601
42494
|
itemBackgroundColor?: {
|
|
@@ -42603,6 +42496,7 @@ declare const PageBlockEditorModel: z.ZodObject<{
|
|
|
42603
42496
|
referencedTokenId?: string | undefined;
|
|
42604
42497
|
} | undefined;
|
|
42605
42498
|
} | undefined;
|
|
42499
|
+
variantId?: string | undefined;
|
|
42606
42500
|
}>;
|
|
42607
42501
|
}, "strip", z.ZodTypeAny, {
|
|
42608
42502
|
id: string;
|
|
@@ -42623,7 +42517,6 @@ declare const PageBlockEditorModel: z.ZodObject<{
|
|
|
42623
42517
|
} | undefined;
|
|
42624
42518
|
}[];
|
|
42625
42519
|
indentLevel: number;
|
|
42626
|
-
variantId?: string | undefined;
|
|
42627
42520
|
appearance?: {
|
|
42628
42521
|
numberOfColumns?: number | undefined;
|
|
42629
42522
|
itemBackgroundColor?: {
|
|
@@ -42631,6 +42524,7 @@ declare const PageBlockEditorModel: z.ZodObject<{
|
|
|
42631
42524
|
referencedTokenId?: string | undefined;
|
|
42632
42525
|
} | undefined;
|
|
42633
42526
|
} | undefined;
|
|
42527
|
+
variantId?: string | undefined;
|
|
42634
42528
|
};
|
|
42635
42529
|
}, {
|
|
42636
42530
|
id: string;
|
|
@@ -42651,7 +42545,6 @@ declare const PageBlockEditorModel: z.ZodObject<{
|
|
|
42651
42545
|
} | undefined;
|
|
42652
42546
|
}[];
|
|
42653
42547
|
indentLevel: number;
|
|
42654
|
-
variantId?: string | undefined;
|
|
42655
42548
|
appearance?: {
|
|
42656
42549
|
numberOfColumns?: number | undefined;
|
|
42657
42550
|
itemBackgroundColor?: {
|
|
@@ -42659,6 +42552,7 @@ declare const PageBlockEditorModel: z.ZodObject<{
|
|
|
42659
42552
|
referencedTokenId?: string | undefined;
|
|
42660
42553
|
} | undefined;
|
|
42661
42554
|
} | undefined;
|
|
42555
|
+
variantId?: string | undefined;
|
|
42662
42556
|
};
|
|
42663
42557
|
}>;
|
|
42664
42558
|
type PageBlockEditorModel = z.infer<typeof PageBlockEditorModel>;
|
|
@@ -42847,7 +42741,6 @@ declare const PageSectionEditorModel: z.ZodObject<{
|
|
|
42847
42741
|
} | undefined;
|
|
42848
42742
|
}[];
|
|
42849
42743
|
indentLevel: number;
|
|
42850
|
-
variantId?: string | undefined;
|
|
42851
42744
|
appearance?: {
|
|
42852
42745
|
numberOfColumns?: number | undefined;
|
|
42853
42746
|
itemBackgroundColor?: {
|
|
@@ -42855,6 +42748,7 @@ declare const PageSectionEditorModel: z.ZodObject<{
|
|
|
42855
42748
|
referencedTokenId?: string | undefined;
|
|
42856
42749
|
} | undefined;
|
|
42857
42750
|
} | undefined;
|
|
42751
|
+
variantId?: string | undefined;
|
|
42858
42752
|
}, {
|
|
42859
42753
|
packageId: string;
|
|
42860
42754
|
items: {
|
|
@@ -42871,7 +42765,6 @@ declare const PageSectionEditorModel: z.ZodObject<{
|
|
|
42871
42765
|
} | undefined;
|
|
42872
42766
|
}[];
|
|
42873
42767
|
indentLevel: number;
|
|
42874
|
-
variantId?: string | undefined;
|
|
42875
42768
|
appearance?: {
|
|
42876
42769
|
numberOfColumns?: number | undefined;
|
|
42877
42770
|
itemBackgroundColor?: {
|
|
@@ -42879,6 +42772,7 @@ declare const PageSectionEditorModel: z.ZodObject<{
|
|
|
42879
42772
|
referencedTokenId?: string | undefined;
|
|
42880
42773
|
} | undefined;
|
|
42881
42774
|
} | undefined;
|
|
42775
|
+
variantId?: string | undefined;
|
|
42882
42776
|
}>;
|
|
42883
42777
|
}, "strip", z.ZodTypeAny, {
|
|
42884
42778
|
id: string;
|
|
@@ -42899,7 +42793,6 @@ declare const PageSectionEditorModel: z.ZodObject<{
|
|
|
42899
42793
|
} | undefined;
|
|
42900
42794
|
}[];
|
|
42901
42795
|
indentLevel: number;
|
|
42902
|
-
variantId?: string | undefined;
|
|
42903
42796
|
appearance?: {
|
|
42904
42797
|
numberOfColumns?: number | undefined;
|
|
42905
42798
|
itemBackgroundColor?: {
|
|
@@ -42907,6 +42800,7 @@ declare const PageSectionEditorModel: z.ZodObject<{
|
|
|
42907
42800
|
referencedTokenId?: string | undefined;
|
|
42908
42801
|
} | undefined;
|
|
42909
42802
|
} | undefined;
|
|
42803
|
+
variantId?: string | undefined;
|
|
42910
42804
|
};
|
|
42911
42805
|
}, {
|
|
42912
42806
|
id: string;
|
|
@@ -42927,7 +42821,6 @@ declare const PageSectionEditorModel: z.ZodObject<{
|
|
|
42927
42821
|
} | undefined;
|
|
42928
42822
|
}[];
|
|
42929
42823
|
indentLevel: number;
|
|
42930
|
-
variantId?: string | undefined;
|
|
42931
42824
|
appearance?: {
|
|
42932
42825
|
numberOfColumns?: number | undefined;
|
|
42933
42826
|
itemBackgroundColor?: {
|
|
@@ -42935,6 +42828,7 @@ declare const PageSectionEditorModel: z.ZodObject<{
|
|
|
42935
42828
|
referencedTokenId?: string | undefined;
|
|
42936
42829
|
} | undefined;
|
|
42937
42830
|
} | undefined;
|
|
42831
|
+
variantId?: string | undefined;
|
|
42938
42832
|
};
|
|
42939
42833
|
}>, "many">;
|
|
42940
42834
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -42958,7 +42852,6 @@ declare const PageSectionEditorModel: z.ZodObject<{
|
|
|
42958
42852
|
} | undefined;
|
|
42959
42853
|
}[];
|
|
42960
42854
|
indentLevel: number;
|
|
42961
|
-
variantId?: string | undefined;
|
|
42962
42855
|
appearance?: {
|
|
42963
42856
|
numberOfColumns?: number | undefined;
|
|
42964
42857
|
itemBackgroundColor?: {
|
|
@@ -42966,6 +42859,7 @@ declare const PageSectionEditorModel: z.ZodObject<{
|
|
|
42966
42859
|
referencedTokenId?: string | undefined;
|
|
42967
42860
|
} | undefined;
|
|
42968
42861
|
} | undefined;
|
|
42862
|
+
variantId?: string | undefined;
|
|
42969
42863
|
};
|
|
42970
42864
|
}[];
|
|
42971
42865
|
}, {
|
|
@@ -42989,7 +42883,6 @@ declare const PageSectionEditorModel: z.ZodObject<{
|
|
|
42989
42883
|
} | undefined;
|
|
42990
42884
|
}[];
|
|
42991
42885
|
indentLevel: number;
|
|
42992
|
-
variantId?: string | undefined;
|
|
42993
42886
|
appearance?: {
|
|
42994
42887
|
numberOfColumns?: number | undefined;
|
|
42995
42888
|
itemBackgroundColor?: {
|
|
@@ -42997,6 +42890,7 @@ declare const PageSectionEditorModel: z.ZodObject<{
|
|
|
42997
42890
|
referencedTokenId?: string | undefined;
|
|
42998
42891
|
} | undefined;
|
|
42999
42892
|
} | undefined;
|
|
42893
|
+
variantId?: string | undefined;
|
|
43000
42894
|
};
|
|
43001
42895
|
}[];
|
|
43002
42896
|
}>, "many">;
|
|
@@ -43024,7 +42918,6 @@ declare const PageSectionEditorModel: z.ZodObject<{
|
|
|
43024
42918
|
} | undefined;
|
|
43025
42919
|
}[];
|
|
43026
42920
|
indentLevel: number;
|
|
43027
|
-
variantId?: string | undefined;
|
|
43028
42921
|
appearance?: {
|
|
43029
42922
|
numberOfColumns?: number | undefined;
|
|
43030
42923
|
itemBackgroundColor?: {
|
|
@@ -43032,6 +42925,7 @@ declare const PageSectionEditorModel: z.ZodObject<{
|
|
|
43032
42925
|
referencedTokenId?: string | undefined;
|
|
43033
42926
|
} | undefined;
|
|
43034
42927
|
} | undefined;
|
|
42928
|
+
variantId?: string | undefined;
|
|
43035
42929
|
};
|
|
43036
42930
|
}[];
|
|
43037
42931
|
}[];
|
|
@@ -43059,7 +42953,6 @@ declare const PageSectionEditorModel: z.ZodObject<{
|
|
|
43059
42953
|
} | undefined;
|
|
43060
42954
|
}[];
|
|
43061
42955
|
indentLevel: number;
|
|
43062
|
-
variantId?: string | undefined;
|
|
43063
42956
|
appearance?: {
|
|
43064
42957
|
numberOfColumns?: number | undefined;
|
|
43065
42958
|
itemBackgroundColor?: {
|
|
@@ -43067,6 +42960,7 @@ declare const PageSectionEditorModel: z.ZodObject<{
|
|
|
43067
42960
|
referencedTokenId?: string | undefined;
|
|
43068
42961
|
} | undefined;
|
|
43069
42962
|
} | undefined;
|
|
42963
|
+
variantId?: string | undefined;
|
|
43070
42964
|
};
|
|
43071
42965
|
}[];
|
|
43072
42966
|
}[];
|
|
@@ -43098,7 +42992,6 @@ declare const PageSectionEditorModel: z.ZodObject<{
|
|
|
43098
42992
|
} | undefined;
|
|
43099
42993
|
}[];
|
|
43100
42994
|
indentLevel: number;
|
|
43101
|
-
variantId?: string | undefined;
|
|
43102
42995
|
appearance?: {
|
|
43103
42996
|
numberOfColumns?: number | undefined;
|
|
43104
42997
|
itemBackgroundColor?: {
|
|
@@ -43106,6 +42999,7 @@ declare const PageSectionEditorModel: z.ZodObject<{
|
|
|
43106
42999
|
referencedTokenId?: string | undefined;
|
|
43107
43000
|
} | undefined;
|
|
43108
43001
|
} | undefined;
|
|
43002
|
+
variantId?: string | undefined;
|
|
43109
43003
|
};
|
|
43110
43004
|
}[];
|
|
43111
43005
|
}[];
|
|
@@ -43157,7 +43051,6 @@ declare const PageSectionEditorModel: z.ZodObject<{
|
|
|
43157
43051
|
} | undefined;
|
|
43158
43052
|
}[];
|
|
43159
43053
|
indentLevel: number;
|
|
43160
|
-
variantId?: string | undefined;
|
|
43161
43054
|
appearance?: {
|
|
43162
43055
|
numberOfColumns?: number | undefined;
|
|
43163
43056
|
itemBackgroundColor?: {
|
|
@@ -43165,6 +43058,7 @@ declare const PageSectionEditorModel: z.ZodObject<{
|
|
|
43165
43058
|
referencedTokenId?: string | undefined;
|
|
43166
43059
|
} | undefined;
|
|
43167
43060
|
} | undefined;
|
|
43061
|
+
variantId?: string | undefined;
|
|
43168
43062
|
};
|
|
43169
43063
|
}[];
|
|
43170
43064
|
}[];
|
|
@@ -43294,7 +43188,6 @@ declare const DocumentationPageEditorModel: z.ZodObject<{
|
|
|
43294
43188
|
} | undefined;
|
|
43295
43189
|
}[];
|
|
43296
43190
|
indentLevel: number;
|
|
43297
|
-
variantId?: string | undefined;
|
|
43298
43191
|
appearance?: {
|
|
43299
43192
|
numberOfColumns?: number | undefined;
|
|
43300
43193
|
itemBackgroundColor?: {
|
|
@@ -43302,6 +43195,7 @@ declare const DocumentationPageEditorModel: z.ZodObject<{
|
|
|
43302
43195
|
referencedTokenId?: string | undefined;
|
|
43303
43196
|
} | undefined;
|
|
43304
43197
|
} | undefined;
|
|
43198
|
+
variantId?: string | undefined;
|
|
43305
43199
|
}, {
|
|
43306
43200
|
packageId: string;
|
|
43307
43201
|
items: {
|
|
@@ -43318,7 +43212,6 @@ declare const DocumentationPageEditorModel: z.ZodObject<{
|
|
|
43318
43212
|
} | undefined;
|
|
43319
43213
|
}[];
|
|
43320
43214
|
indentLevel: number;
|
|
43321
|
-
variantId?: string | undefined;
|
|
43322
43215
|
appearance?: {
|
|
43323
43216
|
numberOfColumns?: number | undefined;
|
|
43324
43217
|
itemBackgroundColor?: {
|
|
@@ -43326,6 +43219,7 @@ declare const DocumentationPageEditorModel: z.ZodObject<{
|
|
|
43326
43219
|
referencedTokenId?: string | undefined;
|
|
43327
43220
|
} | undefined;
|
|
43328
43221
|
} | undefined;
|
|
43222
|
+
variantId?: string | undefined;
|
|
43329
43223
|
}>;
|
|
43330
43224
|
}, "strip", z.ZodTypeAny, {
|
|
43331
43225
|
id: string;
|
|
@@ -43346,7 +43240,6 @@ declare const DocumentationPageEditorModel: z.ZodObject<{
|
|
|
43346
43240
|
} | undefined;
|
|
43347
43241
|
}[];
|
|
43348
43242
|
indentLevel: number;
|
|
43349
|
-
variantId?: string | undefined;
|
|
43350
43243
|
appearance?: {
|
|
43351
43244
|
numberOfColumns?: number | undefined;
|
|
43352
43245
|
itemBackgroundColor?: {
|
|
@@ -43354,6 +43247,7 @@ declare const DocumentationPageEditorModel: z.ZodObject<{
|
|
|
43354
43247
|
referencedTokenId?: string | undefined;
|
|
43355
43248
|
} | undefined;
|
|
43356
43249
|
} | undefined;
|
|
43250
|
+
variantId?: string | undefined;
|
|
43357
43251
|
};
|
|
43358
43252
|
}, {
|
|
43359
43253
|
id: string;
|
|
@@ -43374,7 +43268,6 @@ declare const DocumentationPageEditorModel: z.ZodObject<{
|
|
|
43374
43268
|
} | undefined;
|
|
43375
43269
|
}[];
|
|
43376
43270
|
indentLevel: number;
|
|
43377
|
-
variantId?: string | undefined;
|
|
43378
43271
|
appearance?: {
|
|
43379
43272
|
numberOfColumns?: number | undefined;
|
|
43380
43273
|
itemBackgroundColor?: {
|
|
@@ -43382,6 +43275,7 @@ declare const DocumentationPageEditorModel: z.ZodObject<{
|
|
|
43382
43275
|
referencedTokenId?: string | undefined;
|
|
43383
43276
|
} | undefined;
|
|
43384
43277
|
} | undefined;
|
|
43278
|
+
variantId?: string | undefined;
|
|
43385
43279
|
};
|
|
43386
43280
|
}>, z.ZodObject<{
|
|
43387
43281
|
id: z.ZodString;
|
|
@@ -43568,7 +43462,6 @@ declare const DocumentationPageEditorModel: z.ZodObject<{
|
|
|
43568
43462
|
} | undefined;
|
|
43569
43463
|
}[];
|
|
43570
43464
|
indentLevel: number;
|
|
43571
|
-
variantId?: string | undefined;
|
|
43572
43465
|
appearance?: {
|
|
43573
43466
|
numberOfColumns?: number | undefined;
|
|
43574
43467
|
itemBackgroundColor?: {
|
|
@@ -43576,6 +43469,7 @@ declare const DocumentationPageEditorModel: z.ZodObject<{
|
|
|
43576
43469
|
referencedTokenId?: string | undefined;
|
|
43577
43470
|
} | undefined;
|
|
43578
43471
|
} | undefined;
|
|
43472
|
+
variantId?: string | undefined;
|
|
43579
43473
|
}, {
|
|
43580
43474
|
packageId: string;
|
|
43581
43475
|
items: {
|
|
@@ -43592,7 +43486,6 @@ declare const DocumentationPageEditorModel: z.ZodObject<{
|
|
|
43592
43486
|
} | undefined;
|
|
43593
43487
|
}[];
|
|
43594
43488
|
indentLevel: number;
|
|
43595
|
-
variantId?: string | undefined;
|
|
43596
43489
|
appearance?: {
|
|
43597
43490
|
numberOfColumns?: number | undefined;
|
|
43598
43491
|
itemBackgroundColor?: {
|
|
@@ -43600,6 +43493,7 @@ declare const DocumentationPageEditorModel: z.ZodObject<{
|
|
|
43600
43493
|
referencedTokenId?: string | undefined;
|
|
43601
43494
|
} | undefined;
|
|
43602
43495
|
} | undefined;
|
|
43496
|
+
variantId?: string | undefined;
|
|
43603
43497
|
}>;
|
|
43604
43498
|
}, "strip", z.ZodTypeAny, {
|
|
43605
43499
|
id: string;
|
|
@@ -43620,7 +43514,6 @@ declare const DocumentationPageEditorModel: z.ZodObject<{
|
|
|
43620
43514
|
} | undefined;
|
|
43621
43515
|
}[];
|
|
43622
43516
|
indentLevel: number;
|
|
43623
|
-
variantId?: string | undefined;
|
|
43624
43517
|
appearance?: {
|
|
43625
43518
|
numberOfColumns?: number | undefined;
|
|
43626
43519
|
itemBackgroundColor?: {
|
|
@@ -43628,6 +43521,7 @@ declare const DocumentationPageEditorModel: z.ZodObject<{
|
|
|
43628
43521
|
referencedTokenId?: string | undefined;
|
|
43629
43522
|
} | undefined;
|
|
43630
43523
|
} | undefined;
|
|
43524
|
+
variantId?: string | undefined;
|
|
43631
43525
|
};
|
|
43632
43526
|
}, {
|
|
43633
43527
|
id: string;
|
|
@@ -43648,7 +43542,6 @@ declare const DocumentationPageEditorModel: z.ZodObject<{
|
|
|
43648
43542
|
} | undefined;
|
|
43649
43543
|
}[];
|
|
43650
43544
|
indentLevel: number;
|
|
43651
|
-
variantId?: string | undefined;
|
|
43652
43545
|
appearance?: {
|
|
43653
43546
|
numberOfColumns?: number | undefined;
|
|
43654
43547
|
itemBackgroundColor?: {
|
|
@@ -43656,6 +43549,7 @@ declare const DocumentationPageEditorModel: z.ZodObject<{
|
|
|
43656
43549
|
referencedTokenId?: string | undefined;
|
|
43657
43550
|
} | undefined;
|
|
43658
43551
|
} | undefined;
|
|
43552
|
+
variantId?: string | undefined;
|
|
43659
43553
|
};
|
|
43660
43554
|
}>, "many">;
|
|
43661
43555
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -43679,7 +43573,6 @@ declare const DocumentationPageEditorModel: z.ZodObject<{
|
|
|
43679
43573
|
} | undefined;
|
|
43680
43574
|
}[];
|
|
43681
43575
|
indentLevel: number;
|
|
43682
|
-
variantId?: string | undefined;
|
|
43683
43576
|
appearance?: {
|
|
43684
43577
|
numberOfColumns?: number | undefined;
|
|
43685
43578
|
itemBackgroundColor?: {
|
|
@@ -43687,6 +43580,7 @@ declare const DocumentationPageEditorModel: z.ZodObject<{
|
|
|
43687
43580
|
referencedTokenId?: string | undefined;
|
|
43688
43581
|
} | undefined;
|
|
43689
43582
|
} | undefined;
|
|
43583
|
+
variantId?: string | undefined;
|
|
43690
43584
|
};
|
|
43691
43585
|
}[];
|
|
43692
43586
|
}, {
|
|
@@ -43710,7 +43604,6 @@ declare const DocumentationPageEditorModel: z.ZodObject<{
|
|
|
43710
43604
|
} | undefined;
|
|
43711
43605
|
}[];
|
|
43712
43606
|
indentLevel: number;
|
|
43713
|
-
variantId?: string | undefined;
|
|
43714
43607
|
appearance?: {
|
|
43715
43608
|
numberOfColumns?: number | undefined;
|
|
43716
43609
|
itemBackgroundColor?: {
|
|
@@ -43718,6 +43611,7 @@ declare const DocumentationPageEditorModel: z.ZodObject<{
|
|
|
43718
43611
|
referencedTokenId?: string | undefined;
|
|
43719
43612
|
} | undefined;
|
|
43720
43613
|
} | undefined;
|
|
43614
|
+
variantId?: string | undefined;
|
|
43721
43615
|
};
|
|
43722
43616
|
}[];
|
|
43723
43617
|
}>, "many">;
|
|
@@ -43745,7 +43639,6 @@ declare const DocumentationPageEditorModel: z.ZodObject<{
|
|
|
43745
43639
|
} | undefined;
|
|
43746
43640
|
}[];
|
|
43747
43641
|
indentLevel: number;
|
|
43748
|
-
variantId?: string | undefined;
|
|
43749
43642
|
appearance?: {
|
|
43750
43643
|
numberOfColumns?: number | undefined;
|
|
43751
43644
|
itemBackgroundColor?: {
|
|
@@ -43753,6 +43646,7 @@ declare const DocumentationPageEditorModel: z.ZodObject<{
|
|
|
43753
43646
|
referencedTokenId?: string | undefined;
|
|
43754
43647
|
} | undefined;
|
|
43755
43648
|
} | undefined;
|
|
43649
|
+
variantId?: string | undefined;
|
|
43756
43650
|
};
|
|
43757
43651
|
}[];
|
|
43758
43652
|
}[];
|
|
@@ -43780,7 +43674,6 @@ declare const DocumentationPageEditorModel: z.ZodObject<{
|
|
|
43780
43674
|
} | undefined;
|
|
43781
43675
|
}[];
|
|
43782
43676
|
indentLevel: number;
|
|
43783
|
-
variantId?: string | undefined;
|
|
43784
43677
|
appearance?: {
|
|
43785
43678
|
numberOfColumns?: number | undefined;
|
|
43786
43679
|
itemBackgroundColor?: {
|
|
@@ -43788,6 +43681,7 @@ declare const DocumentationPageEditorModel: z.ZodObject<{
|
|
|
43788
43681
|
referencedTokenId?: string | undefined;
|
|
43789
43682
|
} | undefined;
|
|
43790
43683
|
} | undefined;
|
|
43684
|
+
variantId?: string | undefined;
|
|
43791
43685
|
};
|
|
43792
43686
|
}[];
|
|
43793
43687
|
}[];
|
|
@@ -43819,7 +43713,6 @@ declare const DocumentationPageEditorModel: z.ZodObject<{
|
|
|
43819
43713
|
} | undefined;
|
|
43820
43714
|
}[];
|
|
43821
43715
|
indentLevel: number;
|
|
43822
|
-
variantId?: string | undefined;
|
|
43823
43716
|
appearance?: {
|
|
43824
43717
|
numberOfColumns?: number | undefined;
|
|
43825
43718
|
itemBackgroundColor?: {
|
|
@@ -43827,6 +43720,7 @@ declare const DocumentationPageEditorModel: z.ZodObject<{
|
|
|
43827
43720
|
referencedTokenId?: string | undefined;
|
|
43828
43721
|
} | undefined;
|
|
43829
43722
|
} | undefined;
|
|
43723
|
+
variantId?: string | undefined;
|
|
43830
43724
|
};
|
|
43831
43725
|
}[];
|
|
43832
43726
|
}[];
|
|
@@ -43878,7 +43772,6 @@ declare const DocumentationPageEditorModel: z.ZodObject<{
|
|
|
43878
43772
|
} | undefined;
|
|
43879
43773
|
}[];
|
|
43880
43774
|
indentLevel: number;
|
|
43881
|
-
variantId?: string | undefined;
|
|
43882
43775
|
appearance?: {
|
|
43883
43776
|
numberOfColumns?: number | undefined;
|
|
43884
43777
|
itemBackgroundColor?: {
|
|
@@ -43886,6 +43779,7 @@ declare const DocumentationPageEditorModel: z.ZodObject<{
|
|
|
43886
43779
|
referencedTokenId?: string | undefined;
|
|
43887
43780
|
} | undefined;
|
|
43888
43781
|
} | undefined;
|
|
43782
|
+
variantId?: string | undefined;
|
|
43889
43783
|
};
|
|
43890
43784
|
}[];
|
|
43891
43785
|
}[];
|
|
@@ -43931,7 +43825,6 @@ declare const DocumentationPageEditorModel: z.ZodObject<{
|
|
|
43931
43825
|
} | undefined;
|
|
43932
43826
|
}[];
|
|
43933
43827
|
indentLevel: number;
|
|
43934
|
-
variantId?: string | undefined;
|
|
43935
43828
|
appearance?: {
|
|
43936
43829
|
numberOfColumns?: number | undefined;
|
|
43937
43830
|
itemBackgroundColor?: {
|
|
@@ -43939,6 +43832,7 @@ declare const DocumentationPageEditorModel: z.ZodObject<{
|
|
|
43939
43832
|
referencedTokenId?: string | undefined;
|
|
43940
43833
|
} | undefined;
|
|
43941
43834
|
} | undefined;
|
|
43835
|
+
variantId?: string | undefined;
|
|
43942
43836
|
};
|
|
43943
43837
|
} | {
|
|
43944
43838
|
id: string;
|
|
@@ -43967,7 +43861,6 @@ declare const DocumentationPageEditorModel: z.ZodObject<{
|
|
|
43967
43861
|
} | undefined;
|
|
43968
43862
|
}[];
|
|
43969
43863
|
indentLevel: number;
|
|
43970
|
-
variantId?: string | undefined;
|
|
43971
43864
|
appearance?: {
|
|
43972
43865
|
numberOfColumns?: number | undefined;
|
|
43973
43866
|
itemBackgroundColor?: {
|
|
@@ -43975,6 +43868,7 @@ declare const DocumentationPageEditorModel: z.ZodObject<{
|
|
|
43975
43868
|
referencedTokenId?: string | undefined;
|
|
43976
43869
|
} | undefined;
|
|
43977
43870
|
} | undefined;
|
|
43871
|
+
variantId?: string | undefined;
|
|
43978
43872
|
};
|
|
43979
43873
|
}[];
|
|
43980
43874
|
}[];
|
|
@@ -44020,7 +43914,6 @@ declare const DocumentationPageEditorModel: z.ZodObject<{
|
|
|
44020
43914
|
} | undefined;
|
|
44021
43915
|
}[];
|
|
44022
43916
|
indentLevel: number;
|
|
44023
|
-
variantId?: string | undefined;
|
|
44024
43917
|
appearance?: {
|
|
44025
43918
|
numberOfColumns?: number | undefined;
|
|
44026
43919
|
itemBackgroundColor?: {
|
|
@@ -44028,6 +43921,7 @@ declare const DocumentationPageEditorModel: z.ZodObject<{
|
|
|
44028
43921
|
referencedTokenId?: string | undefined;
|
|
44029
43922
|
} | undefined;
|
|
44030
43923
|
} | undefined;
|
|
43924
|
+
variantId?: string | undefined;
|
|
44031
43925
|
};
|
|
44032
43926
|
} | {
|
|
44033
43927
|
id: string;
|
|
@@ -44056,7 +43950,6 @@ declare const DocumentationPageEditorModel: z.ZodObject<{
|
|
|
44056
43950
|
} | undefined;
|
|
44057
43951
|
}[];
|
|
44058
43952
|
indentLevel: number;
|
|
44059
|
-
variantId?: string | undefined;
|
|
44060
43953
|
appearance?: {
|
|
44061
43954
|
numberOfColumns?: number | undefined;
|
|
44062
43955
|
itemBackgroundColor?: {
|
|
@@ -44064,6 +43957,7 @@ declare const DocumentationPageEditorModel: z.ZodObject<{
|
|
|
44064
43957
|
referencedTokenId?: string | undefined;
|
|
44065
43958
|
} | undefined;
|
|
44066
43959
|
} | undefined;
|
|
43960
|
+
variantId?: string | undefined;
|
|
44067
43961
|
};
|
|
44068
43962
|
}[];
|
|
44069
43963
|
}[];
|
|
@@ -44092,7 +43986,9 @@ declare const DocumentationPageEditorModel: z.ZodObject<{
|
|
|
44092
43986
|
}>;
|
|
44093
43987
|
type DocumentationPageEditorModel = z.infer<typeof DocumentationPageEditorModel>;
|
|
44094
43988
|
|
|
44095
|
-
declare const
|
|
43989
|
+
declare const innerEditorProsemirrorSchema: Schema<"doc" | "paragraph" | "listItem" | "hardBreak" | "text" | "bulletList" | "orderedList", "code" | "bold" | "link" | "strike" | "italic">;
|
|
43990
|
+
|
|
43991
|
+
declare const mainEditorProsemirrorSchema: Schema<"image" | "doc" | "paragraph" | "listItem" | "hardBreak" | "text" | "bulletList" | "orderedList" | "table" | "tableContainer" | "blockquote" | "sectionItem" | "sectionItemColumn" | "callout" | "reactComponent" | "tableRow" | "tableCell" | "tableHeader" | "heading" | "horizontalRule" | "plainSection" | "tabsSection" | "blockNode", "code" | "bold" | "link" | "strike" | "italic" | "commentHighlight">;
|
|
44096
43992
|
|
|
44097
43993
|
type ProsemirrorNode = {
|
|
44098
43994
|
type: string;
|
|
@@ -44103,7 +43999,7 @@ type ProsemirrorNode = {
|
|
|
44103
43999
|
};
|
|
44104
44000
|
type ProsemirrorMark = {
|
|
44105
44001
|
type: string;
|
|
44106
|
-
attrs
|
|
44002
|
+
attrs?: Record<string, any>;
|
|
44107
44003
|
};
|
|
44108
44004
|
type ProsemirrorBlockItem = {
|
|
44109
44005
|
id: string;
|
|
@@ -44114,6 +44010,7 @@ declare function pageToYDoc(doc: Y.Doc, page: DocumentationPageEditorModel, defi
|
|
|
44114
44010
|
declare function pageToYXmlFragment(page: DocumentationPageEditorModel, definitions: PageBlockDefinition[], fragment: Y.XmlFragment): Y.XmlFragment;
|
|
44115
44011
|
declare function pageToProsemirrorDoc(page: DocumentationPageEditorModel, definitions: PageBlockDefinition[]): ProsemirrorNode;
|
|
44116
44012
|
declare function blockToProsemirrorNode(block: PageBlockEditorModel, definition: PageBlockDefinition): ProsemirrorNode | null;
|
|
44013
|
+
declare function richTextPropertyValueToProsemirror(richTextEditorValue: PageBlockItemRichTextEditorValue): ProsemirrorNode;
|
|
44117
44014
|
declare function serializeAsCustomBlock(block: PageBlockEditorModel, definition: PageBlockDefinition): ProsemirrorNode;
|
|
44118
44015
|
|
|
44119
44016
|
type Node = ListNode | ListItemNode;
|
|
@@ -44143,6 +44040,7 @@ declare function yDocToPage(yDoc: Y.Doc, definitions: PageBlockDefinition[]): Do
|
|
|
44143
44040
|
declare function yXmlFragmentToPage(fragment: Y.XmlFragment, definitions: PageBlockDefinition[]): DocumentationPageEditorModel;
|
|
44144
44041
|
declare function prosemirrorDocToPage(prosemirrorDoc: ProsemirrorNode, definitions: PageBlockDefinition[]): DocumentationPageEditorModel;
|
|
44145
44042
|
declare function shallowProsemirrorNodeToBlock(prosemirrorNode: ProsemirrorNode, definition: PageBlockDefinition): PageBlockEditorModel | null;
|
|
44043
|
+
declare function prosemirrorDocToRichTextPropertyValue(prosemirrorNode: ProsemirrorNode): PageBlockItemRichTextEditorValue;
|
|
44146
44044
|
declare function prosemirrorNodeToSection(prosemirrorNode: ProsemirrorNode, definitions: PageBlockDefinition[]): PageSectionEditorModel | null;
|
|
44147
44045
|
declare function prosemirrorNodesToBlocks(prosemirrorNodes: ProsemirrorNode[], definitions: PageBlockDefinition[]): {
|
|
44148
44046
|
id: string;
|
|
@@ -44163,7 +44061,6 @@ declare function prosemirrorNodesToBlocks(prosemirrorNodes: ProsemirrorNode[], d
|
|
|
44163
44061
|
} | undefined;
|
|
44164
44062
|
}[];
|
|
44165
44063
|
indentLevel: number;
|
|
44166
|
-
variantId?: string | undefined;
|
|
44167
44064
|
appearance?: {
|
|
44168
44065
|
numberOfColumns?: number | undefined;
|
|
44169
44066
|
itemBackgroundColor?: {
|
|
@@ -44171,6 +44068,7 @@ declare function prosemirrorNodesToBlocks(prosemirrorNodes: ProsemirrorNode[], d
|
|
|
44171
44068
|
referencedTokenId?: string | undefined;
|
|
44172
44069
|
} | undefined;
|
|
44173
44070
|
} | undefined;
|
|
44071
|
+
variantId?: string | undefined;
|
|
44174
44072
|
};
|
|
44175
44073
|
}[];
|
|
44176
44074
|
|
|
@@ -44341,4 +44239,4 @@ declare class FrontendVersionRoomYDoc {
|
|
|
44341
44239
|
|
|
44342
44240
|
declare function generatePageContentHash(content: DocumentationPageEditorModel, definitions: PageBlockDefinition[], debug?: boolean): string;
|
|
44343
44241
|
|
|
44344
|
-
export { BackendVersionRoomYDoc, BlockDefinitionUtils, BlockParsingUtils, DTOAssetRenderConfiguration, DTOBrand, DTOBrandCreateResponse, DTOBrandGetResponse, DTOBrandsListResponse, DTOCreateBrandInput, DTOCreateDocumentationGroupInput, DTOCreateDocumentationPageInputV2, DTOCreateDocumentationTabInput, DTOCreateElementPropertyDefinitionInputV2, DTOCreateVersionInput, DTODataSource, DTODataSourceCreationResponse, DTODataSourceFigma, DTODataSourceFigmaCloud, DTODataSourceFigmaVariablesPlugin, DTODataSourceTokenStudio, DTODataSourcesListResponse, DTODeleteDocumentationGroupInput, DTODeleteDocumentationPageInputV2, DTODeleteDocumentationTabGroupInput, DTODeleteElementPropertyDefinitionInputV2, DTODesignElementsDataDiffResponse, DTODesignSystem, DTODesignSystemUpdateInput, DTODesignSystemVersion, DTODesignSystemVersionCreationResponse, DTODesignSystemVersionGetResponse, DTODesignSystemVersionJobStatusResponse, DTODesignSystemVersionJobsResponse, DTODesignSystemVersionsListResponse, DTODiffCountBase, DTODocumentationDraftChangeType, DTODocumentationDraftState, DTODocumentationDraftStateCreated, DTODocumentationDraftStateDeleted, DTODocumentationDraftStateUpdated, DTODocumentationGroupApprovalState, DTODocumentationGroupCreateActionInputV2, DTODocumentationGroupCreateActionOutputV2, DTODocumentationGroupDeleteActionInputV2, DTODocumentationGroupDeleteActionOutputV2, DTODocumentationGroupDuplicateActionInputV2, DTODocumentationGroupDuplicateActionOutputV2, DTODocumentationGroupMoveActionInputV2, DTODocumentationGroupMoveActionOutputV2, DTODocumentationGroupRestoreActionInput, DTODocumentationGroupRestoreActionOutput, DTODocumentationGroupStructureV1, DTODocumentationGroupUpdateActionInputV2, DTODocumentationGroupUpdateActionOutputV2, DTODocumentationGroupV1, DTODocumentationGroupV2, DTODocumentationHierarchyV2, DTODocumentationItemConfigurationV1, DTODocumentationItemConfigurationV2, DTODocumentationItemHeaderV2, DTODocumentationLinkPreviewRequest, DTODocumentationLinkPreviewResponse, DTODocumentationPageAnchor, DTODocumentationPageApprovalState, DTODocumentationPageApprovalStateChangeActionInput, DTODocumentationPageApprovalStateChangeActionOutput, DTODocumentationPageApprovalStateChangeInput, DTODocumentationPageContent, DTODocumentationPageContentGetResponse, DTODocumentationPageCreateActionInputV2, DTODocumentationPageCreateActionOutputV2, DTODocumentationPageDeleteActionInputV2, DTODocumentationPageDeleteActionOutputV2, DTODocumentationPageDuplicateActionInputV2, DTODocumentationPageDuplicateActionOutputV2, DTODocumentationPageMoveActionInputV2, DTODocumentationPageMoveActionOutputV2, DTODocumentationPageRestoreActionInput, DTODocumentationPageRestoreActionOutput, DTODocumentationPageRoomHeaderData, DTODocumentationPageRoomHeaderDataUpdate, DTODocumentationPageSnapshot, DTODocumentationPageUpdateActionInputV2, DTODocumentationPageUpdateActionOutputV2, DTODocumentationPageV2, DTODocumentationPublishMetadata, DTODocumentationPublishTypeQueryParams, DTODocumentationTabCreateActionInputV2, DTODocumentationTabCreateActionOutputV2, type DTODocumentationTabGroupCreateActionInputV2, DTODocumentationTabGroupDeleteActionInputV2, DTODocumentationTabGroupDeleteActionOutputV2, DTODownloadAssetsRequest, DTODownloadAssetsResponse, DTODuplicateDocumentationGroupInput, DTODuplicateDocumentationPageInputV2, DTOElementActionInput, DTOElementActionOutput, DTOElementPropertyDefinition, DTOElementPropertyDefinitionsGetResponse, DTOElementPropertyValue, DTOElementPropertyValuesGetResponse, DTOElementView, DTOElementViewBasePropertyColumn, DTOElementViewColumn, DTOElementViewColumnSharedAttributes, DTOElementViewPropertyDefinitionColumn, DTOElementViewThemeColumn, DTOElementViewsListResponse, DTOElementsGetOutput, type DTOElementsGetQueryParsed, type DTOElementsGetQueryRaw, DTOElementsGetQuerySchema, DTOElementsGetTypeFilter, DTOExportJob, DTOExportJobCreatedBy, DTOExportJobDesignSystemPreview, DTOExportJobDesignSystemVersionPreview, DTOExportJobDestinations, DTOExportJobResponse, DTOExportJobResult, DTOExportJobsListFilter, DTOExporter, DTOExporterCreateInput, DTOExporterCreateOutput, DTOExporterGitProviderEnum, DTOExporterMembership, DTOExporterMembershipRole, DTOExporterProperty, DTOExporterPropertyListResponse, DTOExporterSource, DTOExporterType, DTOExporterUpdateInput, DTOFigmaComponent, DTOFigmaComponentBooleanProperty, DTOFigmaComponentInstanceSwapProperty, DTOFigmaComponentListResponse, DTOFigmaComponentProperty, DTOFigmaComponentPropertyMap, DTOFigmaComponentTextProperty, DTOFigmaComponentVariantProperty, DTOFigmaNode, DTOFigmaNodeData, DTOFigmaNodeOrigin, DTOFigmaNodeRenderActionInput, DTOFigmaNodeRenderActionOutput, DTOFigmaNodeRenderFormat, DTOFigmaNodeRenderInput, DTOGetBlockDefinitionsOutput, DTOGetDocumentationPageAnchorsResponse, DTOGitBranch, DTOGitOrganization, DTOGitProject, DTOGitRepository, DTOIntegration, DTOIntegrationCredentials, DTOIntegrationOAuthGetResponse, DTOIntegrationPostResponse, DTOIntegrationsGetListResponse, DTOLiveblocksAuthRequest, DTOLiveblocksAuthResponse, DTOMoveDocumentationGroupInput, DTOMoveDocumentationPageInputV2, DTONpmRegistryConfig, DTONpmRegistryConfigConstants, DTOPageBlockColorV2, DTOPageBlockDefinition, DTOPageBlockDefinitionBehavior, DTOPageBlockDefinitionItem, DTOPageBlockDefinitionLayout, DTOPageBlockDefinitionProperty, DTOPageBlockDefinitionVariant, DTOPageBlockItemV2, DTOPagination, DTOPipeline, DTOPipelineCreateBody, DTOPipelineTriggerBody, DTOPipelineUpdateBody, DTOPropertyDefinitionCreateActionInputV2, DTOPropertyDefinitionCreateActionOutputV2, DTOPropertyDefinitionDeleteActionInputV2, DTOPropertyDefinitionDeleteActionOutputV2, DTOPropertyDefinitionUpdateActionInputV2, DTOPropertyDefinitionUpdateActionOutputV2, DTOPublishDocumentationChanges, DTOPublishDocumentationRequest, DTOPublishDocumentationResponse, DTORenderedAssetFile, DTORestoreDocumentationGroupInput, DTORestoreDocumentationPageInput, DTOUpdateDocumentationGroupInput, DTOUpdateDocumentationPageInputV2, DTOUpdateElementPropertyDefinitionInputV2, DTOUpdateUserNotificationSettingsPayload, DTOUpdateVersionInput, DTOUserNotificationSettingsResponse, DTOUserProfileUpdatePayload, DTOUserProfileUpdateResponse, DTOUserWorkspaceMembership, DTOUserWorkspaceMembershipsResponse, DTOWorkspace, DTOWorkspaceIntegrationGetGitObjectsInput, DTOWorkspaceIntegrationOauthInput, DTOWorkspaceIntegrationPATInput, DTOWorkspaceRole, DocumentationHierarchySettings, DocumentationPageEditorModel, DocumentationPageV1DTO, FrontendVersionRoomYDoc, type ListItemNode, type ListNode, ListTreeBuilder, NpmRegistryInput, ObjectMeta, PageBlockEditorModel, PageSectionEditorModel, type ProsemirrorBlockItem, type ProsemirrorMark, type ProsemirrorNode, VersionRoomBaseYDoc, VersionSQSPayload, WorkspaceConfigurationPayload, applyPrivacyConfigurationToNestedItems, blockToProsemirrorNode, buildDocPagePublishPaths, calculateElementParentChain, documentationItemConfigurationToDTOV1, documentationItemConfigurationToDTOV2, documentationPageToDTOV2, documentationPagesFixedConfigurationToDTOV1, documentationPagesFixedConfigurationToDTOV2, documentationPagesToDTOV1, documentationPagesToDTOV2, elementGroupsToDocumentationGroupDTOV1, elementGroupsToDocumentationGroupDTOV2, elementGroupsToDocumentationGroupFixedConfigurationDTOV1, elementGroupsToDocumentationGroupFixedConfigurationDTOV2, elementGroupsToDocumentationGroupStructureDTOV1, generateHash, generatePageContentHash, getDtoDefaultItemConfigurationV1, getDtoDefaultItemConfigurationV2, getMockPageBlockDefinitions, gitBranchToDto, gitOrganizationToDto, gitProjectToDto, gitRepositoryToDto, integrationCredentialToDto, integrationToDto, itemConfigurationToYjs, pageToProsemirrorDoc, pageToYDoc, pageToYXmlFragment, pipelineToDto,
|
|
44242
|
+
export { BackendVersionRoomYDoc, BlockDefinitionUtils, BlockParsingUtils, DTOAssetRenderConfiguration, DTOBrand, DTOBrandCreateResponse, DTOBrandGetResponse, DTOBrandsListResponse, DTOCreateBrandInput, DTOCreateDocumentationGroupInput, DTOCreateDocumentationPageInputV2, DTOCreateDocumentationTabInput, DTOCreateElementPropertyDefinitionInputV2, DTOCreateVersionInput, DTODataSource, DTODataSourceCreationResponse, DTODataSourceFigma, DTODataSourceFigmaCloud, DTODataSourceFigmaVariablesPlugin, DTODataSourceTokenStudio, DTODataSourcesListResponse, DTODeleteDocumentationGroupInput, DTODeleteDocumentationPageInputV2, DTODeleteDocumentationTabGroupInput, DTODeleteElementPropertyDefinitionInputV2, DTODesignElementsDataDiffResponse, DTODesignSystem, DTODesignSystemUpdateInput, DTODesignSystemVersion, DTODesignSystemVersionCreationResponse, DTODesignSystemVersionGetResponse, DTODesignSystemVersionJobStatusResponse, DTODesignSystemVersionJobsResponse, DTODesignSystemVersionsListResponse, DTODiffCountBase, DTODocumentationDraftChangeType, DTODocumentationDraftState, DTODocumentationDraftStateCreated, DTODocumentationDraftStateDeleted, DTODocumentationDraftStateUpdated, DTODocumentationGroupApprovalState, DTODocumentationGroupCreateActionInputV2, DTODocumentationGroupCreateActionOutputV2, DTODocumentationGroupDeleteActionInputV2, DTODocumentationGroupDeleteActionOutputV2, DTODocumentationGroupDuplicateActionInputV2, DTODocumentationGroupDuplicateActionOutputV2, DTODocumentationGroupMoveActionInputV2, DTODocumentationGroupMoveActionOutputV2, DTODocumentationGroupRestoreActionInput, DTODocumentationGroupRestoreActionOutput, DTODocumentationGroupStructureV1, DTODocumentationGroupUpdateActionInputV2, DTODocumentationGroupUpdateActionOutputV2, DTODocumentationGroupV1, DTODocumentationGroupV2, DTODocumentationHierarchyV2, DTODocumentationItemConfigurationV1, DTODocumentationItemConfigurationV2, DTODocumentationItemHeaderV2, DTODocumentationLinkPreviewRequest, DTODocumentationLinkPreviewResponse, DTODocumentationPageAnchor, DTODocumentationPageApprovalState, DTODocumentationPageApprovalStateChangeActionInput, DTODocumentationPageApprovalStateChangeActionOutput, DTODocumentationPageApprovalStateChangeInput, DTODocumentationPageContent, DTODocumentationPageContentGetResponse, DTODocumentationPageCreateActionInputV2, DTODocumentationPageCreateActionOutputV2, DTODocumentationPageDeleteActionInputV2, DTODocumentationPageDeleteActionOutputV2, DTODocumentationPageDuplicateActionInputV2, DTODocumentationPageDuplicateActionOutputV2, DTODocumentationPageMoveActionInputV2, DTODocumentationPageMoveActionOutputV2, DTODocumentationPageRestoreActionInput, DTODocumentationPageRestoreActionOutput, DTODocumentationPageRoomHeaderData, DTODocumentationPageRoomHeaderDataUpdate, DTODocumentationPageSnapshot, DTODocumentationPageUpdateActionInputV2, DTODocumentationPageUpdateActionOutputV2, DTODocumentationPageV2, DTODocumentationPublishMetadata, DTODocumentationPublishTypeQueryParams, DTODocumentationTabCreateActionInputV2, DTODocumentationTabCreateActionOutputV2, type DTODocumentationTabGroupCreateActionInputV2, DTODocumentationTabGroupDeleteActionInputV2, DTODocumentationTabGroupDeleteActionOutputV2, DTODownloadAssetsRequest, DTODownloadAssetsResponse, DTODuplicateDocumentationGroupInput, DTODuplicateDocumentationPageInputV2, DTOElementActionInput, DTOElementActionOutput, DTOElementPropertyDefinition, DTOElementPropertyDefinitionsGetResponse, DTOElementPropertyValue, DTOElementPropertyValuesGetResponse, DTOElementView, DTOElementViewBasePropertyColumn, DTOElementViewColumn, DTOElementViewColumnSharedAttributes, DTOElementViewPropertyDefinitionColumn, DTOElementViewThemeColumn, DTOElementViewsListResponse, DTOElementsGetOutput, type DTOElementsGetQueryParsed, type DTOElementsGetQueryRaw, DTOElementsGetQuerySchema, DTOElementsGetTypeFilter, DTOExportJob, DTOExportJobCreatedBy, DTOExportJobDesignSystemPreview, DTOExportJobDesignSystemVersionPreview, DTOExportJobDestinations, DTOExportJobResponse, DTOExportJobResult, DTOExportJobsListFilter, DTOExporter, DTOExporterCreateInput, DTOExporterCreateOutput, DTOExporterGitProviderEnum, DTOExporterMembership, DTOExporterMembershipRole, DTOExporterProperty, DTOExporterPropertyListResponse, DTOExporterSource, DTOExporterType, DTOExporterUpdateInput, DTOFigmaComponent, DTOFigmaComponentBooleanProperty, DTOFigmaComponentInstanceSwapProperty, DTOFigmaComponentListResponse, DTOFigmaComponentProperty, DTOFigmaComponentPropertyMap, DTOFigmaComponentTextProperty, DTOFigmaComponentVariantProperty, DTOFigmaNode, DTOFigmaNodeData, DTOFigmaNodeOrigin, DTOFigmaNodeRenderActionInput, DTOFigmaNodeRenderActionOutput, DTOFigmaNodeRenderFormat, DTOFigmaNodeRenderInput, DTOGetBlockDefinitionsOutput, DTOGetDocumentationPageAnchorsResponse, DTOGitBranch, DTOGitOrganization, DTOGitProject, DTOGitRepository, DTOIntegration, DTOIntegrationCredentials, DTOIntegrationOAuthGetResponse, DTOIntegrationPostResponse, DTOIntegrationsGetListResponse, DTOLiveblocksAuthRequest, DTOLiveblocksAuthResponse, DTOMoveDocumentationGroupInput, DTOMoveDocumentationPageInputV2, DTONpmRegistryConfig, DTONpmRegistryConfigConstants, DTOPageBlockColorV2, DTOPageBlockDefinition, DTOPageBlockDefinitionBehavior, DTOPageBlockDefinitionItem, DTOPageBlockDefinitionLayout, DTOPageBlockDefinitionProperty, DTOPageBlockDefinitionVariant, DTOPageBlockItemV2, DTOPagination, DTOPipeline, DTOPipelineCreateBody, DTOPipelineTriggerBody, DTOPipelineUpdateBody, DTOPropertyDefinitionCreateActionInputV2, DTOPropertyDefinitionCreateActionOutputV2, DTOPropertyDefinitionDeleteActionInputV2, DTOPropertyDefinitionDeleteActionOutputV2, DTOPropertyDefinitionUpdateActionInputV2, DTOPropertyDefinitionUpdateActionOutputV2, DTOPublishDocumentationChanges, DTOPublishDocumentationRequest, DTOPublishDocumentationResponse, DTORenderedAssetFile, DTORestoreDocumentationGroupInput, DTORestoreDocumentationPageInput, DTOUpdateDocumentationGroupInput, DTOUpdateDocumentationPageInputV2, DTOUpdateElementPropertyDefinitionInputV2, DTOUpdateUserNotificationSettingsPayload, DTOUpdateVersionInput, DTOUserNotificationSettingsResponse, DTOUserProfileUpdatePayload, DTOUserProfileUpdateResponse, DTOUserWorkspaceMembership, DTOUserWorkspaceMembershipsResponse, DTOWorkspace, DTOWorkspaceIntegrationGetGitObjectsInput, DTOWorkspaceIntegrationOauthInput, DTOWorkspaceIntegrationPATInput, DTOWorkspaceRole, DocumentationHierarchySettings, DocumentationPageEditorModel, DocumentationPageV1DTO, FrontendVersionRoomYDoc, type ListItemNode, type ListNode, ListTreeBuilder, NpmRegistryInput, ObjectMeta, PageBlockEditorModel, PageSectionEditorModel, type ProsemirrorBlockItem, type ProsemirrorMark, type ProsemirrorNode, VersionRoomBaseYDoc, VersionSQSPayload, WorkspaceConfigurationPayload, applyPrivacyConfigurationToNestedItems, blockToProsemirrorNode, buildDocPagePublishPaths, calculateElementParentChain, documentationItemConfigurationToDTOV1, documentationItemConfigurationToDTOV2, documentationPageToDTOV2, documentationPagesFixedConfigurationToDTOV1, documentationPagesFixedConfigurationToDTOV2, documentationPagesToDTOV1, documentationPagesToDTOV2, elementGroupsToDocumentationGroupDTOV1, elementGroupsToDocumentationGroupDTOV2, elementGroupsToDocumentationGroupFixedConfigurationDTOV1, elementGroupsToDocumentationGroupFixedConfigurationDTOV2, elementGroupsToDocumentationGroupStructureDTOV1, generateHash, generatePageContentHash, getDtoDefaultItemConfigurationV1, getDtoDefaultItemConfigurationV2, getMockPageBlockDefinitions, gitBranchToDto, gitOrganizationToDto, gitProjectToDto, gitRepositoryToDto, innerEditorProsemirrorSchema, integrationCredentialToDto, integrationToDto, itemConfigurationToYjs, mainEditorProsemirrorSchema, pageToProsemirrorDoc, pageToYDoc, pageToYXmlFragment, pipelineToDto, prosemirrorDocToPage, prosemirrorDocToRichTextPropertyValue, prosemirrorNodeToSection, prosemirrorNodesToBlocks, richTextPropertyValueToProsemirror, serializeAsCustomBlock, shallowProsemirrorNodeToBlock, validateDesignSystemVersion, validateSsoPayload, yDocToPage, yXmlFragmentToPage, yjsToDocumentationHierarchy, yjsToItemConfiguration };
|