@supernova-studio/client 0.52.18 → 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 +157 -153
- package/dist/index.d.ts +157 -153
- package/dist/index.js +486 -249
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1036 -799
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- 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>;
|
|
@@ -17725,7 +17725,6 @@ declare const DTODocumentationPageContent: z.ZodObject<{
|
|
|
17725
17725
|
} | undefined;
|
|
17726
17726
|
}[];
|
|
17727
17727
|
indentLevel: number;
|
|
17728
|
-
variantId?: string | undefined;
|
|
17729
17728
|
appearance?: {
|
|
17730
17729
|
numberOfColumns?: number | undefined;
|
|
17731
17730
|
itemBackgroundColor?: {
|
|
@@ -17733,6 +17732,7 @@ declare const DTODocumentationPageContent: z.ZodObject<{
|
|
|
17733
17732
|
referencedTokenId?: string | undefined;
|
|
17734
17733
|
} | undefined;
|
|
17735
17734
|
} | undefined;
|
|
17735
|
+
variantId?: string | undefined;
|
|
17736
17736
|
}, {
|
|
17737
17737
|
packageId: string;
|
|
17738
17738
|
items: {
|
|
@@ -17749,7 +17749,6 @@ declare const DTODocumentationPageContent: z.ZodObject<{
|
|
|
17749
17749
|
} | undefined;
|
|
17750
17750
|
}[];
|
|
17751
17751
|
indentLevel: number;
|
|
17752
|
-
variantId?: string | undefined;
|
|
17753
17752
|
appearance?: {
|
|
17754
17753
|
numberOfColumns?: number | undefined;
|
|
17755
17754
|
itemBackgroundColor?: {
|
|
@@ -17757,6 +17756,7 @@ declare const DTODocumentationPageContent: z.ZodObject<{
|
|
|
17757
17756
|
referencedTokenId?: string | undefined;
|
|
17758
17757
|
} | undefined;
|
|
17759
17758
|
} | undefined;
|
|
17759
|
+
variantId?: string | undefined;
|
|
17760
17760
|
}>;
|
|
17761
17761
|
}, "strip", z.ZodTypeAny, {
|
|
17762
17762
|
id: string;
|
|
@@ -17777,7 +17777,6 @@ declare const DTODocumentationPageContent: z.ZodObject<{
|
|
|
17777
17777
|
} | undefined;
|
|
17778
17778
|
}[];
|
|
17779
17779
|
indentLevel: number;
|
|
17780
|
-
variantId?: string | undefined;
|
|
17781
17780
|
appearance?: {
|
|
17782
17781
|
numberOfColumns?: number | undefined;
|
|
17783
17782
|
itemBackgroundColor?: {
|
|
@@ -17785,6 +17784,7 @@ declare const DTODocumentationPageContent: z.ZodObject<{
|
|
|
17785
17784
|
referencedTokenId?: string | undefined;
|
|
17786
17785
|
} | undefined;
|
|
17787
17786
|
} | undefined;
|
|
17787
|
+
variantId?: string | undefined;
|
|
17788
17788
|
};
|
|
17789
17789
|
}, {
|
|
17790
17790
|
id: string;
|
|
@@ -17805,7 +17805,6 @@ declare const DTODocumentationPageContent: z.ZodObject<{
|
|
|
17805
17805
|
} | undefined;
|
|
17806
17806
|
}[];
|
|
17807
17807
|
indentLevel: number;
|
|
17808
|
-
variantId?: string | undefined;
|
|
17809
17808
|
appearance?: {
|
|
17810
17809
|
numberOfColumns?: number | undefined;
|
|
17811
17810
|
itemBackgroundColor?: {
|
|
@@ -17813,6 +17812,7 @@ declare const DTODocumentationPageContent: z.ZodObject<{
|
|
|
17813
17812
|
referencedTokenId?: string | undefined;
|
|
17814
17813
|
} | undefined;
|
|
17815
17814
|
} | undefined;
|
|
17815
|
+
variantId?: string | undefined;
|
|
17816
17816
|
};
|
|
17817
17817
|
}>, z.ZodObject<{
|
|
17818
17818
|
id: z.ZodString;
|
|
@@ -17999,7 +17999,6 @@ declare const DTODocumentationPageContent: z.ZodObject<{
|
|
|
17999
17999
|
} | undefined;
|
|
18000
18000
|
}[];
|
|
18001
18001
|
indentLevel: number;
|
|
18002
|
-
variantId?: string | undefined;
|
|
18003
18002
|
appearance?: {
|
|
18004
18003
|
numberOfColumns?: number | undefined;
|
|
18005
18004
|
itemBackgroundColor?: {
|
|
@@ -18007,6 +18006,7 @@ declare const DTODocumentationPageContent: z.ZodObject<{
|
|
|
18007
18006
|
referencedTokenId?: string | undefined;
|
|
18008
18007
|
} | undefined;
|
|
18009
18008
|
} | undefined;
|
|
18009
|
+
variantId?: string | undefined;
|
|
18010
18010
|
}, {
|
|
18011
18011
|
packageId: string;
|
|
18012
18012
|
items: {
|
|
@@ -18023,7 +18023,6 @@ declare const DTODocumentationPageContent: z.ZodObject<{
|
|
|
18023
18023
|
} | undefined;
|
|
18024
18024
|
}[];
|
|
18025
18025
|
indentLevel: number;
|
|
18026
|
-
variantId?: string | undefined;
|
|
18027
18026
|
appearance?: {
|
|
18028
18027
|
numberOfColumns?: number | undefined;
|
|
18029
18028
|
itemBackgroundColor?: {
|
|
@@ -18031,6 +18030,7 @@ declare const DTODocumentationPageContent: z.ZodObject<{
|
|
|
18031
18030
|
referencedTokenId?: string | undefined;
|
|
18032
18031
|
} | undefined;
|
|
18033
18032
|
} | undefined;
|
|
18033
|
+
variantId?: string | undefined;
|
|
18034
18034
|
}>;
|
|
18035
18035
|
}, "strip", z.ZodTypeAny, {
|
|
18036
18036
|
id: string;
|
|
@@ -18051,7 +18051,6 @@ declare const DTODocumentationPageContent: z.ZodObject<{
|
|
|
18051
18051
|
} | undefined;
|
|
18052
18052
|
}[];
|
|
18053
18053
|
indentLevel: number;
|
|
18054
|
-
variantId?: string | undefined;
|
|
18055
18054
|
appearance?: {
|
|
18056
18055
|
numberOfColumns?: number | undefined;
|
|
18057
18056
|
itemBackgroundColor?: {
|
|
@@ -18059,6 +18058,7 @@ declare const DTODocumentationPageContent: z.ZodObject<{
|
|
|
18059
18058
|
referencedTokenId?: string | undefined;
|
|
18060
18059
|
} | undefined;
|
|
18061
18060
|
} | undefined;
|
|
18061
|
+
variantId?: string | undefined;
|
|
18062
18062
|
};
|
|
18063
18063
|
}, {
|
|
18064
18064
|
id: string;
|
|
@@ -18079,7 +18079,6 @@ declare const DTODocumentationPageContent: z.ZodObject<{
|
|
|
18079
18079
|
} | undefined;
|
|
18080
18080
|
}[];
|
|
18081
18081
|
indentLevel: number;
|
|
18082
|
-
variantId?: string | undefined;
|
|
18083
18082
|
appearance?: {
|
|
18084
18083
|
numberOfColumns?: number | undefined;
|
|
18085
18084
|
itemBackgroundColor?: {
|
|
@@ -18087,6 +18086,7 @@ declare const DTODocumentationPageContent: z.ZodObject<{
|
|
|
18087
18086
|
referencedTokenId?: string | undefined;
|
|
18088
18087
|
} | undefined;
|
|
18089
18088
|
} | undefined;
|
|
18089
|
+
variantId?: string | undefined;
|
|
18090
18090
|
};
|
|
18091
18091
|
}>, "many">;
|
|
18092
18092
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -18110,7 +18110,6 @@ declare const DTODocumentationPageContent: z.ZodObject<{
|
|
|
18110
18110
|
} | undefined;
|
|
18111
18111
|
}[];
|
|
18112
18112
|
indentLevel: number;
|
|
18113
|
-
variantId?: string | undefined;
|
|
18114
18113
|
appearance?: {
|
|
18115
18114
|
numberOfColumns?: number | undefined;
|
|
18116
18115
|
itemBackgroundColor?: {
|
|
@@ -18118,6 +18117,7 @@ declare const DTODocumentationPageContent: z.ZodObject<{
|
|
|
18118
18117
|
referencedTokenId?: string | undefined;
|
|
18119
18118
|
} | undefined;
|
|
18120
18119
|
} | undefined;
|
|
18120
|
+
variantId?: string | undefined;
|
|
18121
18121
|
};
|
|
18122
18122
|
}[];
|
|
18123
18123
|
}, {
|
|
@@ -18141,7 +18141,6 @@ declare const DTODocumentationPageContent: z.ZodObject<{
|
|
|
18141
18141
|
} | undefined;
|
|
18142
18142
|
}[];
|
|
18143
18143
|
indentLevel: number;
|
|
18144
|
-
variantId?: string | undefined;
|
|
18145
18144
|
appearance?: {
|
|
18146
18145
|
numberOfColumns?: number | undefined;
|
|
18147
18146
|
itemBackgroundColor?: {
|
|
@@ -18149,6 +18148,7 @@ declare const DTODocumentationPageContent: z.ZodObject<{
|
|
|
18149
18148
|
referencedTokenId?: string | undefined;
|
|
18150
18149
|
} | undefined;
|
|
18151
18150
|
} | undefined;
|
|
18151
|
+
variantId?: string | undefined;
|
|
18152
18152
|
};
|
|
18153
18153
|
}[];
|
|
18154
18154
|
}>, "many">;
|
|
@@ -18176,7 +18176,6 @@ declare const DTODocumentationPageContent: z.ZodObject<{
|
|
|
18176
18176
|
} | undefined;
|
|
18177
18177
|
}[];
|
|
18178
18178
|
indentLevel: number;
|
|
18179
|
-
variantId?: string | undefined;
|
|
18180
18179
|
appearance?: {
|
|
18181
18180
|
numberOfColumns?: number | undefined;
|
|
18182
18181
|
itemBackgroundColor?: {
|
|
@@ -18184,6 +18183,7 @@ declare const DTODocumentationPageContent: z.ZodObject<{
|
|
|
18184
18183
|
referencedTokenId?: string | undefined;
|
|
18185
18184
|
} | undefined;
|
|
18186
18185
|
} | undefined;
|
|
18186
|
+
variantId?: string | undefined;
|
|
18187
18187
|
};
|
|
18188
18188
|
}[];
|
|
18189
18189
|
}[];
|
|
@@ -18211,7 +18211,6 @@ declare const DTODocumentationPageContent: z.ZodObject<{
|
|
|
18211
18211
|
} | undefined;
|
|
18212
18212
|
}[];
|
|
18213
18213
|
indentLevel: number;
|
|
18214
|
-
variantId?: string | undefined;
|
|
18215
18214
|
appearance?: {
|
|
18216
18215
|
numberOfColumns?: number | undefined;
|
|
18217
18216
|
itemBackgroundColor?: {
|
|
@@ -18219,6 +18218,7 @@ declare const DTODocumentationPageContent: z.ZodObject<{
|
|
|
18219
18218
|
referencedTokenId?: string | undefined;
|
|
18220
18219
|
} | undefined;
|
|
18221
18220
|
} | undefined;
|
|
18221
|
+
variantId?: string | undefined;
|
|
18222
18222
|
};
|
|
18223
18223
|
}[];
|
|
18224
18224
|
}[];
|
|
@@ -18250,7 +18250,6 @@ declare const DTODocumentationPageContent: z.ZodObject<{
|
|
|
18250
18250
|
} | undefined;
|
|
18251
18251
|
}[];
|
|
18252
18252
|
indentLevel: number;
|
|
18253
|
-
variantId?: string | undefined;
|
|
18254
18253
|
appearance?: {
|
|
18255
18254
|
numberOfColumns?: number | undefined;
|
|
18256
18255
|
itemBackgroundColor?: {
|
|
@@ -18258,6 +18257,7 @@ declare const DTODocumentationPageContent: z.ZodObject<{
|
|
|
18258
18257
|
referencedTokenId?: string | undefined;
|
|
18259
18258
|
} | undefined;
|
|
18260
18259
|
} | undefined;
|
|
18260
|
+
variantId?: string | undefined;
|
|
18261
18261
|
};
|
|
18262
18262
|
}[];
|
|
18263
18263
|
}[];
|
|
@@ -18309,7 +18309,6 @@ declare const DTODocumentationPageContent: z.ZodObject<{
|
|
|
18309
18309
|
} | undefined;
|
|
18310
18310
|
}[];
|
|
18311
18311
|
indentLevel: number;
|
|
18312
|
-
variantId?: string | undefined;
|
|
18313
18312
|
appearance?: {
|
|
18314
18313
|
numberOfColumns?: number | undefined;
|
|
18315
18314
|
itemBackgroundColor?: {
|
|
@@ -18317,6 +18316,7 @@ declare const DTODocumentationPageContent: z.ZodObject<{
|
|
|
18317
18316
|
referencedTokenId?: string | undefined;
|
|
18318
18317
|
} | undefined;
|
|
18319
18318
|
} | undefined;
|
|
18319
|
+
variantId?: string | undefined;
|
|
18320
18320
|
};
|
|
18321
18321
|
}[];
|
|
18322
18322
|
}[];
|
|
@@ -18362,7 +18362,6 @@ declare const DTODocumentationPageContent: z.ZodObject<{
|
|
|
18362
18362
|
} | undefined;
|
|
18363
18363
|
}[];
|
|
18364
18364
|
indentLevel: number;
|
|
18365
|
-
variantId?: string | undefined;
|
|
18366
18365
|
appearance?: {
|
|
18367
18366
|
numberOfColumns?: number | undefined;
|
|
18368
18367
|
itemBackgroundColor?: {
|
|
@@ -18370,6 +18369,7 @@ declare const DTODocumentationPageContent: z.ZodObject<{
|
|
|
18370
18369
|
referencedTokenId?: string | undefined;
|
|
18371
18370
|
} | undefined;
|
|
18372
18371
|
} | undefined;
|
|
18372
|
+
variantId?: string | undefined;
|
|
18373
18373
|
};
|
|
18374
18374
|
} | {
|
|
18375
18375
|
id: string;
|
|
@@ -18398,7 +18398,6 @@ declare const DTODocumentationPageContent: z.ZodObject<{
|
|
|
18398
18398
|
} | undefined;
|
|
18399
18399
|
}[];
|
|
18400
18400
|
indentLevel: number;
|
|
18401
|
-
variantId?: string | undefined;
|
|
18402
18401
|
appearance?: {
|
|
18403
18402
|
numberOfColumns?: number | undefined;
|
|
18404
18403
|
itemBackgroundColor?: {
|
|
@@ -18406,6 +18405,7 @@ declare const DTODocumentationPageContent: z.ZodObject<{
|
|
|
18406
18405
|
referencedTokenId?: string | undefined;
|
|
18407
18406
|
} | undefined;
|
|
18408
18407
|
} | undefined;
|
|
18408
|
+
variantId?: string | undefined;
|
|
18409
18409
|
};
|
|
18410
18410
|
}[];
|
|
18411
18411
|
}[];
|
|
@@ -18451,7 +18451,6 @@ declare const DTODocumentationPageContent: z.ZodObject<{
|
|
|
18451
18451
|
} | undefined;
|
|
18452
18452
|
}[];
|
|
18453
18453
|
indentLevel: number;
|
|
18454
|
-
variantId?: string | undefined;
|
|
18455
18454
|
appearance?: {
|
|
18456
18455
|
numberOfColumns?: number | undefined;
|
|
18457
18456
|
itemBackgroundColor?: {
|
|
@@ -18459,6 +18458,7 @@ declare const DTODocumentationPageContent: z.ZodObject<{
|
|
|
18459
18458
|
referencedTokenId?: string | undefined;
|
|
18460
18459
|
} | undefined;
|
|
18461
18460
|
} | undefined;
|
|
18461
|
+
variantId?: string | undefined;
|
|
18462
18462
|
};
|
|
18463
18463
|
} | {
|
|
18464
18464
|
id: string;
|
|
@@ -18487,7 +18487,6 @@ declare const DTODocumentationPageContent: z.ZodObject<{
|
|
|
18487
18487
|
} | undefined;
|
|
18488
18488
|
}[];
|
|
18489
18489
|
indentLevel: number;
|
|
18490
|
-
variantId?: string | undefined;
|
|
18491
18490
|
appearance?: {
|
|
18492
18491
|
numberOfColumns?: number | undefined;
|
|
18493
18492
|
itemBackgroundColor?: {
|
|
@@ -18495,6 +18494,7 @@ declare const DTODocumentationPageContent: z.ZodObject<{
|
|
|
18495
18494
|
referencedTokenId?: string | undefined;
|
|
18496
18495
|
} | undefined;
|
|
18497
18496
|
} | undefined;
|
|
18497
|
+
variantId?: string | undefined;
|
|
18498
18498
|
};
|
|
18499
18499
|
}[];
|
|
18500
18500
|
}[];
|
|
@@ -18546,7 +18546,6 @@ declare const DTODocumentationPageContent: z.ZodObject<{
|
|
|
18546
18546
|
} | undefined;
|
|
18547
18547
|
}[];
|
|
18548
18548
|
indentLevel: number;
|
|
18549
|
-
variantId?: string | undefined;
|
|
18550
18549
|
appearance?: {
|
|
18551
18550
|
numberOfColumns?: number | undefined;
|
|
18552
18551
|
itemBackgroundColor?: {
|
|
@@ -18554,6 +18553,7 @@ declare const DTODocumentationPageContent: z.ZodObject<{
|
|
|
18554
18553
|
referencedTokenId?: string | undefined;
|
|
18555
18554
|
} | undefined;
|
|
18556
18555
|
} | undefined;
|
|
18556
|
+
variantId?: string | undefined;
|
|
18557
18557
|
};
|
|
18558
18558
|
} | {
|
|
18559
18559
|
id: string;
|
|
@@ -18582,7 +18582,6 @@ declare const DTODocumentationPageContent: z.ZodObject<{
|
|
|
18582
18582
|
} | undefined;
|
|
18583
18583
|
}[];
|
|
18584
18584
|
indentLevel: number;
|
|
18585
|
-
variantId?: string | undefined;
|
|
18586
18585
|
appearance?: {
|
|
18587
18586
|
numberOfColumns?: number | undefined;
|
|
18588
18587
|
itemBackgroundColor?: {
|
|
@@ -18590,6 +18589,7 @@ declare const DTODocumentationPageContent: z.ZodObject<{
|
|
|
18590
18589
|
referencedTokenId?: string | undefined;
|
|
18591
18590
|
} | undefined;
|
|
18592
18591
|
} | undefined;
|
|
18592
|
+
variantId?: string | undefined;
|
|
18593
18593
|
};
|
|
18594
18594
|
}[];
|
|
18595
18595
|
}[];
|
|
@@ -18642,7 +18642,6 @@ declare const DTODocumentationPageContent: z.ZodObject<{
|
|
|
18642
18642
|
} | undefined;
|
|
18643
18643
|
}[];
|
|
18644
18644
|
indentLevel: number;
|
|
18645
|
-
variantId?: string | undefined;
|
|
18646
18645
|
appearance?: {
|
|
18647
18646
|
numberOfColumns?: number | undefined;
|
|
18648
18647
|
itemBackgroundColor?: {
|
|
@@ -18650,6 +18649,7 @@ declare const DTODocumentationPageContent: z.ZodObject<{
|
|
|
18650
18649
|
referencedTokenId?: string | undefined;
|
|
18651
18650
|
} | undefined;
|
|
18652
18651
|
} | undefined;
|
|
18652
|
+
variantId?: string | undefined;
|
|
18653
18653
|
};
|
|
18654
18654
|
} | {
|
|
18655
18655
|
id: string;
|
|
@@ -18678,7 +18678,6 @@ declare const DTODocumentationPageContent: z.ZodObject<{
|
|
|
18678
18678
|
} | undefined;
|
|
18679
18679
|
}[];
|
|
18680
18680
|
indentLevel: number;
|
|
18681
|
-
variantId?: string | undefined;
|
|
18682
18681
|
appearance?: {
|
|
18683
18682
|
numberOfColumns?: number | undefined;
|
|
18684
18683
|
itemBackgroundColor?: {
|
|
@@ -18686,6 +18685,7 @@ declare const DTODocumentationPageContent: z.ZodObject<{
|
|
|
18686
18685
|
referencedTokenId?: string | undefined;
|
|
18687
18686
|
} | undefined;
|
|
18688
18687
|
} | undefined;
|
|
18688
|
+
variantId?: string | undefined;
|
|
18689
18689
|
};
|
|
18690
18690
|
}[];
|
|
18691
18691
|
}[];
|
|
@@ -18824,7 +18824,6 @@ declare const DTODocumentationPageContentGetResponse: z.ZodObject<{
|
|
|
18824
18824
|
} | undefined;
|
|
18825
18825
|
}[];
|
|
18826
18826
|
indentLevel: number;
|
|
18827
|
-
variantId?: string | undefined;
|
|
18828
18827
|
appearance?: {
|
|
18829
18828
|
numberOfColumns?: number | undefined;
|
|
18830
18829
|
itemBackgroundColor?: {
|
|
@@ -18832,6 +18831,7 @@ declare const DTODocumentationPageContentGetResponse: z.ZodObject<{
|
|
|
18832
18831
|
referencedTokenId?: string | undefined;
|
|
18833
18832
|
} | undefined;
|
|
18834
18833
|
} | undefined;
|
|
18834
|
+
variantId?: string | undefined;
|
|
18835
18835
|
}, {
|
|
18836
18836
|
packageId: string;
|
|
18837
18837
|
items: {
|
|
@@ -18848,7 +18848,6 @@ declare const DTODocumentationPageContentGetResponse: z.ZodObject<{
|
|
|
18848
18848
|
} | undefined;
|
|
18849
18849
|
}[];
|
|
18850
18850
|
indentLevel: number;
|
|
18851
|
-
variantId?: string | undefined;
|
|
18852
18851
|
appearance?: {
|
|
18853
18852
|
numberOfColumns?: number | undefined;
|
|
18854
18853
|
itemBackgroundColor?: {
|
|
@@ -18856,6 +18855,7 @@ declare const DTODocumentationPageContentGetResponse: z.ZodObject<{
|
|
|
18856
18855
|
referencedTokenId?: string | undefined;
|
|
18857
18856
|
} | undefined;
|
|
18858
18857
|
} | undefined;
|
|
18858
|
+
variantId?: string | undefined;
|
|
18859
18859
|
}>;
|
|
18860
18860
|
}, "strip", z.ZodTypeAny, {
|
|
18861
18861
|
id: string;
|
|
@@ -18876,7 +18876,6 @@ declare const DTODocumentationPageContentGetResponse: z.ZodObject<{
|
|
|
18876
18876
|
} | undefined;
|
|
18877
18877
|
}[];
|
|
18878
18878
|
indentLevel: number;
|
|
18879
|
-
variantId?: string | undefined;
|
|
18880
18879
|
appearance?: {
|
|
18881
18880
|
numberOfColumns?: number | undefined;
|
|
18882
18881
|
itemBackgroundColor?: {
|
|
@@ -18884,6 +18883,7 @@ declare const DTODocumentationPageContentGetResponse: z.ZodObject<{
|
|
|
18884
18883
|
referencedTokenId?: string | undefined;
|
|
18885
18884
|
} | undefined;
|
|
18886
18885
|
} | undefined;
|
|
18886
|
+
variantId?: string | undefined;
|
|
18887
18887
|
};
|
|
18888
18888
|
}, {
|
|
18889
18889
|
id: string;
|
|
@@ -18904,7 +18904,6 @@ declare const DTODocumentationPageContentGetResponse: z.ZodObject<{
|
|
|
18904
18904
|
} | undefined;
|
|
18905
18905
|
}[];
|
|
18906
18906
|
indentLevel: number;
|
|
18907
|
-
variantId?: string | undefined;
|
|
18908
18907
|
appearance?: {
|
|
18909
18908
|
numberOfColumns?: number | undefined;
|
|
18910
18909
|
itemBackgroundColor?: {
|
|
@@ -18912,6 +18911,7 @@ declare const DTODocumentationPageContentGetResponse: z.ZodObject<{
|
|
|
18912
18911
|
referencedTokenId?: string | undefined;
|
|
18913
18912
|
} | undefined;
|
|
18914
18913
|
} | undefined;
|
|
18914
|
+
variantId?: string | undefined;
|
|
18915
18915
|
};
|
|
18916
18916
|
}>, z.ZodObject<{
|
|
18917
18917
|
id: z.ZodString;
|
|
@@ -19098,7 +19098,6 @@ declare const DTODocumentationPageContentGetResponse: z.ZodObject<{
|
|
|
19098
19098
|
} | undefined;
|
|
19099
19099
|
}[];
|
|
19100
19100
|
indentLevel: number;
|
|
19101
|
-
variantId?: string | undefined;
|
|
19102
19101
|
appearance?: {
|
|
19103
19102
|
numberOfColumns?: number | undefined;
|
|
19104
19103
|
itemBackgroundColor?: {
|
|
@@ -19106,6 +19105,7 @@ declare const DTODocumentationPageContentGetResponse: z.ZodObject<{
|
|
|
19106
19105
|
referencedTokenId?: string | undefined;
|
|
19107
19106
|
} | undefined;
|
|
19108
19107
|
} | undefined;
|
|
19108
|
+
variantId?: string | undefined;
|
|
19109
19109
|
}, {
|
|
19110
19110
|
packageId: string;
|
|
19111
19111
|
items: {
|
|
@@ -19122,7 +19122,6 @@ declare const DTODocumentationPageContentGetResponse: z.ZodObject<{
|
|
|
19122
19122
|
} | undefined;
|
|
19123
19123
|
}[];
|
|
19124
19124
|
indentLevel: number;
|
|
19125
|
-
variantId?: string | undefined;
|
|
19126
19125
|
appearance?: {
|
|
19127
19126
|
numberOfColumns?: number | undefined;
|
|
19128
19127
|
itemBackgroundColor?: {
|
|
@@ -19130,6 +19129,7 @@ declare const DTODocumentationPageContentGetResponse: z.ZodObject<{
|
|
|
19130
19129
|
referencedTokenId?: string | undefined;
|
|
19131
19130
|
} | undefined;
|
|
19132
19131
|
} | undefined;
|
|
19132
|
+
variantId?: string | undefined;
|
|
19133
19133
|
}>;
|
|
19134
19134
|
}, "strip", z.ZodTypeAny, {
|
|
19135
19135
|
id: string;
|
|
@@ -19150,7 +19150,6 @@ declare const DTODocumentationPageContentGetResponse: z.ZodObject<{
|
|
|
19150
19150
|
} | undefined;
|
|
19151
19151
|
}[];
|
|
19152
19152
|
indentLevel: number;
|
|
19153
|
-
variantId?: string | undefined;
|
|
19154
19153
|
appearance?: {
|
|
19155
19154
|
numberOfColumns?: number | undefined;
|
|
19156
19155
|
itemBackgroundColor?: {
|
|
@@ -19158,6 +19157,7 @@ declare const DTODocumentationPageContentGetResponse: z.ZodObject<{
|
|
|
19158
19157
|
referencedTokenId?: string | undefined;
|
|
19159
19158
|
} | undefined;
|
|
19160
19159
|
} | undefined;
|
|
19160
|
+
variantId?: string | undefined;
|
|
19161
19161
|
};
|
|
19162
19162
|
}, {
|
|
19163
19163
|
id: string;
|
|
@@ -19178,7 +19178,6 @@ declare const DTODocumentationPageContentGetResponse: z.ZodObject<{
|
|
|
19178
19178
|
} | undefined;
|
|
19179
19179
|
}[];
|
|
19180
19180
|
indentLevel: number;
|
|
19181
|
-
variantId?: string | undefined;
|
|
19182
19181
|
appearance?: {
|
|
19183
19182
|
numberOfColumns?: number | undefined;
|
|
19184
19183
|
itemBackgroundColor?: {
|
|
@@ -19186,6 +19185,7 @@ declare const DTODocumentationPageContentGetResponse: z.ZodObject<{
|
|
|
19186
19185
|
referencedTokenId?: string | undefined;
|
|
19187
19186
|
} | undefined;
|
|
19188
19187
|
} | undefined;
|
|
19188
|
+
variantId?: string | undefined;
|
|
19189
19189
|
};
|
|
19190
19190
|
}>, "many">;
|
|
19191
19191
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -19209,7 +19209,6 @@ declare const DTODocumentationPageContentGetResponse: z.ZodObject<{
|
|
|
19209
19209
|
} | undefined;
|
|
19210
19210
|
}[];
|
|
19211
19211
|
indentLevel: number;
|
|
19212
|
-
variantId?: string | undefined;
|
|
19213
19212
|
appearance?: {
|
|
19214
19213
|
numberOfColumns?: number | undefined;
|
|
19215
19214
|
itemBackgroundColor?: {
|
|
@@ -19217,6 +19216,7 @@ declare const DTODocumentationPageContentGetResponse: z.ZodObject<{
|
|
|
19217
19216
|
referencedTokenId?: string | undefined;
|
|
19218
19217
|
} | undefined;
|
|
19219
19218
|
} | undefined;
|
|
19219
|
+
variantId?: string | undefined;
|
|
19220
19220
|
};
|
|
19221
19221
|
}[];
|
|
19222
19222
|
}, {
|
|
@@ -19240,7 +19240,6 @@ declare const DTODocumentationPageContentGetResponse: z.ZodObject<{
|
|
|
19240
19240
|
} | undefined;
|
|
19241
19241
|
}[];
|
|
19242
19242
|
indentLevel: number;
|
|
19243
|
-
variantId?: string | undefined;
|
|
19244
19243
|
appearance?: {
|
|
19245
19244
|
numberOfColumns?: number | undefined;
|
|
19246
19245
|
itemBackgroundColor?: {
|
|
@@ -19248,6 +19247,7 @@ declare const DTODocumentationPageContentGetResponse: z.ZodObject<{
|
|
|
19248
19247
|
referencedTokenId?: string | undefined;
|
|
19249
19248
|
} | undefined;
|
|
19250
19249
|
} | undefined;
|
|
19250
|
+
variantId?: string | undefined;
|
|
19251
19251
|
};
|
|
19252
19252
|
}[];
|
|
19253
19253
|
}>, "many">;
|
|
@@ -19275,7 +19275,6 @@ declare const DTODocumentationPageContentGetResponse: z.ZodObject<{
|
|
|
19275
19275
|
} | undefined;
|
|
19276
19276
|
}[];
|
|
19277
19277
|
indentLevel: number;
|
|
19278
|
-
variantId?: string | undefined;
|
|
19279
19278
|
appearance?: {
|
|
19280
19279
|
numberOfColumns?: number | undefined;
|
|
19281
19280
|
itemBackgroundColor?: {
|
|
@@ -19283,6 +19282,7 @@ declare const DTODocumentationPageContentGetResponse: z.ZodObject<{
|
|
|
19283
19282
|
referencedTokenId?: string | undefined;
|
|
19284
19283
|
} | undefined;
|
|
19285
19284
|
} | undefined;
|
|
19285
|
+
variantId?: string | undefined;
|
|
19286
19286
|
};
|
|
19287
19287
|
}[];
|
|
19288
19288
|
}[];
|
|
@@ -19310,7 +19310,6 @@ declare const DTODocumentationPageContentGetResponse: z.ZodObject<{
|
|
|
19310
19310
|
} | undefined;
|
|
19311
19311
|
}[];
|
|
19312
19312
|
indentLevel: number;
|
|
19313
|
-
variantId?: string | undefined;
|
|
19314
19313
|
appearance?: {
|
|
19315
19314
|
numberOfColumns?: number | undefined;
|
|
19316
19315
|
itemBackgroundColor?: {
|
|
@@ -19318,6 +19317,7 @@ declare const DTODocumentationPageContentGetResponse: z.ZodObject<{
|
|
|
19318
19317
|
referencedTokenId?: string | undefined;
|
|
19319
19318
|
} | undefined;
|
|
19320
19319
|
} | undefined;
|
|
19320
|
+
variantId?: string | undefined;
|
|
19321
19321
|
};
|
|
19322
19322
|
}[];
|
|
19323
19323
|
}[];
|
|
@@ -19349,7 +19349,6 @@ declare const DTODocumentationPageContentGetResponse: z.ZodObject<{
|
|
|
19349
19349
|
} | undefined;
|
|
19350
19350
|
}[];
|
|
19351
19351
|
indentLevel: number;
|
|
19352
|
-
variantId?: string | undefined;
|
|
19353
19352
|
appearance?: {
|
|
19354
19353
|
numberOfColumns?: number | undefined;
|
|
19355
19354
|
itemBackgroundColor?: {
|
|
@@ -19357,6 +19356,7 @@ declare const DTODocumentationPageContentGetResponse: z.ZodObject<{
|
|
|
19357
19356
|
referencedTokenId?: string | undefined;
|
|
19358
19357
|
} | undefined;
|
|
19359
19358
|
} | undefined;
|
|
19359
|
+
variantId?: string | undefined;
|
|
19360
19360
|
};
|
|
19361
19361
|
}[];
|
|
19362
19362
|
}[];
|
|
@@ -19408,7 +19408,6 @@ declare const DTODocumentationPageContentGetResponse: z.ZodObject<{
|
|
|
19408
19408
|
} | undefined;
|
|
19409
19409
|
}[];
|
|
19410
19410
|
indentLevel: number;
|
|
19411
|
-
variantId?: string | undefined;
|
|
19412
19411
|
appearance?: {
|
|
19413
19412
|
numberOfColumns?: number | undefined;
|
|
19414
19413
|
itemBackgroundColor?: {
|
|
@@ -19416,6 +19415,7 @@ declare const DTODocumentationPageContentGetResponse: z.ZodObject<{
|
|
|
19416
19415
|
referencedTokenId?: string | undefined;
|
|
19417
19416
|
} | undefined;
|
|
19418
19417
|
} | undefined;
|
|
19418
|
+
variantId?: string | undefined;
|
|
19419
19419
|
};
|
|
19420
19420
|
}[];
|
|
19421
19421
|
}[];
|
|
@@ -19461,7 +19461,6 @@ declare const DTODocumentationPageContentGetResponse: z.ZodObject<{
|
|
|
19461
19461
|
} | undefined;
|
|
19462
19462
|
}[];
|
|
19463
19463
|
indentLevel: number;
|
|
19464
|
-
variantId?: string | undefined;
|
|
19465
19464
|
appearance?: {
|
|
19466
19465
|
numberOfColumns?: number | undefined;
|
|
19467
19466
|
itemBackgroundColor?: {
|
|
@@ -19469,6 +19468,7 @@ declare const DTODocumentationPageContentGetResponse: z.ZodObject<{
|
|
|
19469
19468
|
referencedTokenId?: string | undefined;
|
|
19470
19469
|
} | undefined;
|
|
19471
19470
|
} | undefined;
|
|
19471
|
+
variantId?: string | undefined;
|
|
19472
19472
|
};
|
|
19473
19473
|
} | {
|
|
19474
19474
|
id: string;
|
|
@@ -19497,7 +19497,6 @@ declare const DTODocumentationPageContentGetResponse: z.ZodObject<{
|
|
|
19497
19497
|
} | undefined;
|
|
19498
19498
|
}[];
|
|
19499
19499
|
indentLevel: number;
|
|
19500
|
-
variantId?: string | undefined;
|
|
19501
19500
|
appearance?: {
|
|
19502
19501
|
numberOfColumns?: number | undefined;
|
|
19503
19502
|
itemBackgroundColor?: {
|
|
@@ -19505,6 +19504,7 @@ declare const DTODocumentationPageContentGetResponse: z.ZodObject<{
|
|
|
19505
19504
|
referencedTokenId?: string | undefined;
|
|
19506
19505
|
} | undefined;
|
|
19507
19506
|
} | undefined;
|
|
19507
|
+
variantId?: string | undefined;
|
|
19508
19508
|
};
|
|
19509
19509
|
}[];
|
|
19510
19510
|
}[];
|
|
@@ -19550,7 +19550,6 @@ declare const DTODocumentationPageContentGetResponse: z.ZodObject<{
|
|
|
19550
19550
|
} | undefined;
|
|
19551
19551
|
}[];
|
|
19552
19552
|
indentLevel: number;
|
|
19553
|
-
variantId?: string | undefined;
|
|
19554
19553
|
appearance?: {
|
|
19555
19554
|
numberOfColumns?: number | undefined;
|
|
19556
19555
|
itemBackgroundColor?: {
|
|
@@ -19558,6 +19557,7 @@ declare const DTODocumentationPageContentGetResponse: z.ZodObject<{
|
|
|
19558
19557
|
referencedTokenId?: string | undefined;
|
|
19559
19558
|
} | undefined;
|
|
19560
19559
|
} | undefined;
|
|
19560
|
+
variantId?: string | undefined;
|
|
19561
19561
|
};
|
|
19562
19562
|
} | {
|
|
19563
19563
|
id: string;
|
|
@@ -19586,7 +19586,6 @@ declare const DTODocumentationPageContentGetResponse: z.ZodObject<{
|
|
|
19586
19586
|
} | undefined;
|
|
19587
19587
|
}[];
|
|
19588
19588
|
indentLevel: number;
|
|
19589
|
-
variantId?: string | undefined;
|
|
19590
19589
|
appearance?: {
|
|
19591
19590
|
numberOfColumns?: number | undefined;
|
|
19592
19591
|
itemBackgroundColor?: {
|
|
@@ -19594,6 +19593,7 @@ declare const DTODocumentationPageContentGetResponse: z.ZodObject<{
|
|
|
19594
19593
|
referencedTokenId?: string | undefined;
|
|
19595
19594
|
} | undefined;
|
|
19596
19595
|
} | undefined;
|
|
19596
|
+
variantId?: string | undefined;
|
|
19597
19597
|
};
|
|
19598
19598
|
}[];
|
|
19599
19599
|
}[];
|
|
@@ -19645,7 +19645,6 @@ declare const DTODocumentationPageContentGetResponse: z.ZodObject<{
|
|
|
19645
19645
|
} | undefined;
|
|
19646
19646
|
}[];
|
|
19647
19647
|
indentLevel: number;
|
|
19648
|
-
variantId?: string | undefined;
|
|
19649
19648
|
appearance?: {
|
|
19650
19649
|
numberOfColumns?: number | undefined;
|
|
19651
19650
|
itemBackgroundColor?: {
|
|
@@ -19653,6 +19652,7 @@ declare const DTODocumentationPageContentGetResponse: z.ZodObject<{
|
|
|
19653
19652
|
referencedTokenId?: string | undefined;
|
|
19654
19653
|
} | undefined;
|
|
19655
19654
|
} | undefined;
|
|
19655
|
+
variantId?: string | undefined;
|
|
19656
19656
|
};
|
|
19657
19657
|
} | {
|
|
19658
19658
|
id: string;
|
|
@@ -19681,7 +19681,6 @@ declare const DTODocumentationPageContentGetResponse: z.ZodObject<{
|
|
|
19681
19681
|
} | undefined;
|
|
19682
19682
|
}[];
|
|
19683
19683
|
indentLevel: number;
|
|
19684
|
-
variantId?: string | undefined;
|
|
19685
19684
|
appearance?: {
|
|
19686
19685
|
numberOfColumns?: number | undefined;
|
|
19687
19686
|
itemBackgroundColor?: {
|
|
@@ -19689,6 +19688,7 @@ declare const DTODocumentationPageContentGetResponse: z.ZodObject<{
|
|
|
19689
19688
|
referencedTokenId?: string | undefined;
|
|
19690
19689
|
} | undefined;
|
|
19691
19690
|
} | undefined;
|
|
19691
|
+
variantId?: string | undefined;
|
|
19692
19692
|
};
|
|
19693
19693
|
}[];
|
|
19694
19694
|
}[];
|
|
@@ -19741,7 +19741,6 @@ declare const DTODocumentationPageContentGetResponse: z.ZodObject<{
|
|
|
19741
19741
|
} | undefined;
|
|
19742
19742
|
}[];
|
|
19743
19743
|
indentLevel: number;
|
|
19744
|
-
variantId?: string | undefined;
|
|
19745
19744
|
appearance?: {
|
|
19746
19745
|
numberOfColumns?: number | undefined;
|
|
19747
19746
|
itemBackgroundColor?: {
|
|
@@ -19749,6 +19748,7 @@ declare const DTODocumentationPageContentGetResponse: z.ZodObject<{
|
|
|
19749
19748
|
referencedTokenId?: string | undefined;
|
|
19750
19749
|
} | undefined;
|
|
19751
19750
|
} | undefined;
|
|
19751
|
+
variantId?: string | undefined;
|
|
19752
19752
|
};
|
|
19753
19753
|
} | {
|
|
19754
19754
|
id: string;
|
|
@@ -19777,7 +19777,6 @@ declare const DTODocumentationPageContentGetResponse: z.ZodObject<{
|
|
|
19777
19777
|
} | undefined;
|
|
19778
19778
|
}[];
|
|
19779
19779
|
indentLevel: number;
|
|
19780
|
-
variantId?: string | undefined;
|
|
19781
19780
|
appearance?: {
|
|
19782
19781
|
numberOfColumns?: number | undefined;
|
|
19783
19782
|
itemBackgroundColor?: {
|
|
@@ -19785,6 +19784,7 @@ declare const DTODocumentationPageContentGetResponse: z.ZodObject<{
|
|
|
19785
19784
|
referencedTokenId?: string | undefined;
|
|
19786
19785
|
} | undefined;
|
|
19787
19786
|
} | undefined;
|
|
19787
|
+
variantId?: string | undefined;
|
|
19788
19788
|
};
|
|
19789
19789
|
}[];
|
|
19790
19790
|
}[];
|
|
@@ -19839,7 +19839,6 @@ declare const DTODocumentationPageContentGetResponse: z.ZodObject<{
|
|
|
19839
19839
|
} | undefined;
|
|
19840
19840
|
}[];
|
|
19841
19841
|
indentLevel: number;
|
|
19842
|
-
variantId?: string | undefined;
|
|
19843
19842
|
appearance?: {
|
|
19844
19843
|
numberOfColumns?: number | undefined;
|
|
19845
19844
|
itemBackgroundColor?: {
|
|
@@ -19847,6 +19846,7 @@ declare const DTODocumentationPageContentGetResponse: z.ZodObject<{
|
|
|
19847
19846
|
referencedTokenId?: string | undefined;
|
|
19848
19847
|
} | undefined;
|
|
19849
19848
|
} | undefined;
|
|
19849
|
+
variantId?: string | undefined;
|
|
19850
19850
|
};
|
|
19851
19851
|
} | {
|
|
19852
19852
|
id: string;
|
|
@@ -19875,7 +19875,6 @@ declare const DTODocumentationPageContentGetResponse: z.ZodObject<{
|
|
|
19875
19875
|
} | undefined;
|
|
19876
19876
|
}[];
|
|
19877
19877
|
indentLevel: number;
|
|
19878
|
-
variantId?: string | undefined;
|
|
19879
19878
|
appearance?: {
|
|
19880
19879
|
numberOfColumns?: number | undefined;
|
|
19881
19880
|
itemBackgroundColor?: {
|
|
@@ -19883,6 +19882,7 @@ declare const DTODocumentationPageContentGetResponse: z.ZodObject<{
|
|
|
19883
19882
|
referencedTokenId?: string | undefined;
|
|
19884
19883
|
} | undefined;
|
|
19885
19884
|
} | undefined;
|
|
19885
|
+
variantId?: string | undefined;
|
|
19886
19886
|
};
|
|
19887
19887
|
}[];
|
|
19888
19888
|
}[];
|
|
@@ -19937,7 +19937,6 @@ declare const DTODocumentationPageContentGetResponse: z.ZodObject<{
|
|
|
19937
19937
|
} | undefined;
|
|
19938
19938
|
}[];
|
|
19939
19939
|
indentLevel: number;
|
|
19940
|
-
variantId?: string | undefined;
|
|
19941
19940
|
appearance?: {
|
|
19942
19941
|
numberOfColumns?: number | undefined;
|
|
19943
19942
|
itemBackgroundColor?: {
|
|
@@ -19945,6 +19944,7 @@ declare const DTODocumentationPageContentGetResponse: z.ZodObject<{
|
|
|
19945
19944
|
referencedTokenId?: string | undefined;
|
|
19946
19945
|
} | undefined;
|
|
19947
19946
|
} | undefined;
|
|
19947
|
+
variantId?: string | undefined;
|
|
19948
19948
|
};
|
|
19949
19949
|
} | {
|
|
19950
19950
|
id: string;
|
|
@@ -19973,7 +19973,6 @@ declare const DTODocumentationPageContentGetResponse: z.ZodObject<{
|
|
|
19973
19973
|
} | undefined;
|
|
19974
19974
|
}[];
|
|
19975
19975
|
indentLevel: number;
|
|
19976
|
-
variantId?: string | undefined;
|
|
19977
19976
|
appearance?: {
|
|
19978
19977
|
numberOfColumns?: number | undefined;
|
|
19979
19978
|
itemBackgroundColor?: {
|
|
@@ -19981,6 +19980,7 @@ declare const DTODocumentationPageContentGetResponse: z.ZodObject<{
|
|
|
19981
19980
|
referencedTokenId?: string | undefined;
|
|
19982
19981
|
} | undefined;
|
|
19983
19982
|
} | undefined;
|
|
19983
|
+
variantId?: string | undefined;
|
|
19984
19984
|
};
|
|
19985
19985
|
}[];
|
|
19986
19986
|
}[];
|
|
@@ -39483,12 +39483,12 @@ declare const PageBlockDefinitionLayoutBase: z.ZodObject<{
|
|
|
39483
39483
|
columnResizing: z.ZodOptional<z.ZodEnum<["Fill", "Hug"]>>;
|
|
39484
39484
|
}, "strip", z.ZodTypeAny, {
|
|
39485
39485
|
type: "Column" | "Row";
|
|
39486
|
-
gap?: "
|
|
39486
|
+
gap?: "Small" | "Medium" | "Large" | "None" | undefined;
|
|
39487
39487
|
columnAlign?: "Center" | "Start" | "End" | undefined;
|
|
39488
39488
|
columnResizing?: "Fill" | "Hug" | undefined;
|
|
39489
39489
|
}, {
|
|
39490
39490
|
type: "Column" | "Row";
|
|
39491
|
-
gap?: "
|
|
39491
|
+
gap?: "Small" | "Medium" | "Large" | "None" | undefined;
|
|
39492
39492
|
columnAlign?: "Center" | "Start" | "End" | undefined;
|
|
39493
39493
|
columnResizing?: "Fill" | "Hug" | undefined;
|
|
39494
39494
|
}>;
|
|
@@ -39583,15 +39583,15 @@ declare const DTOGetBlockDefinitionsOutput: z.ZodObject<{
|
|
|
39583
39583
|
};
|
|
39584
39584
|
description?: string | undefined;
|
|
39585
39585
|
image?: string | undefined;
|
|
39586
|
+
documentationLink?: string | undefined;
|
|
39587
|
+
maxColumns?: number | undefined;
|
|
39588
|
+
defaultColumns?: number | undefined;
|
|
39586
39589
|
appearance?: {
|
|
39587
39590
|
isBordered?: boolean | undefined;
|
|
39588
39591
|
hasBackground?: boolean | undefined;
|
|
39589
39592
|
isEditorPresentationDifferent?: boolean | undefined;
|
|
39590
39593
|
showBlockHeaderInEditor?: boolean | undefined;
|
|
39591
39594
|
} | undefined;
|
|
39592
|
-
documentationLink?: string | undefined;
|
|
39593
|
-
maxColumns?: number | undefined;
|
|
39594
|
-
defaultColumns?: number | undefined;
|
|
39595
39595
|
}, {
|
|
39596
39596
|
id: string;
|
|
39597
39597
|
name: string;
|
|
@@ -39605,15 +39605,15 @@ declare const DTOGetBlockDefinitionsOutput: z.ZodObject<{
|
|
|
39605
39605
|
};
|
|
39606
39606
|
description?: string | undefined;
|
|
39607
39607
|
image?: string | undefined;
|
|
39608
|
+
documentationLink?: string | undefined;
|
|
39609
|
+
maxColumns?: number | undefined;
|
|
39610
|
+
defaultColumns?: number | undefined;
|
|
39608
39611
|
appearance?: {
|
|
39609
39612
|
isBordered?: boolean | undefined;
|
|
39610
39613
|
hasBackground?: boolean | undefined;
|
|
39611
39614
|
isEditorPresentationDifferent?: boolean | undefined;
|
|
39612
39615
|
showBlockHeaderInEditor?: boolean | undefined;
|
|
39613
39616
|
} | undefined;
|
|
39614
|
-
documentationLink?: string | undefined;
|
|
39615
|
-
maxColumns?: number | undefined;
|
|
39616
|
-
defaultColumns?: number | undefined;
|
|
39617
39617
|
}>, "many">;
|
|
39618
39618
|
defaultVariantKey: z.ZodString;
|
|
39619
39619
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -39638,15 +39638,15 @@ declare const DTOGetBlockDefinitionsOutput: z.ZodObject<{
|
|
|
39638
39638
|
};
|
|
39639
39639
|
description?: string | undefined;
|
|
39640
39640
|
image?: string | undefined;
|
|
39641
|
+
documentationLink?: string | undefined;
|
|
39642
|
+
maxColumns?: number | undefined;
|
|
39643
|
+
defaultColumns?: number | undefined;
|
|
39641
39644
|
appearance?: {
|
|
39642
39645
|
isBordered?: boolean | undefined;
|
|
39643
39646
|
hasBackground?: boolean | undefined;
|
|
39644
39647
|
isEditorPresentationDifferent?: boolean | undefined;
|
|
39645
39648
|
showBlockHeaderInEditor?: boolean | undefined;
|
|
39646
39649
|
} | undefined;
|
|
39647
|
-
documentationLink?: string | undefined;
|
|
39648
|
-
maxColumns?: number | undefined;
|
|
39649
|
-
defaultColumns?: number | undefined;
|
|
39650
39650
|
}[];
|
|
39651
39651
|
defaultVariantKey: string;
|
|
39652
39652
|
appearance?: {
|
|
@@ -39677,15 +39677,15 @@ declare const DTOGetBlockDefinitionsOutput: z.ZodObject<{
|
|
|
39677
39677
|
};
|
|
39678
39678
|
description?: string | undefined;
|
|
39679
39679
|
image?: string | undefined;
|
|
39680
|
+
documentationLink?: string | undefined;
|
|
39681
|
+
maxColumns?: number | undefined;
|
|
39682
|
+
defaultColumns?: number | undefined;
|
|
39680
39683
|
appearance?: {
|
|
39681
39684
|
isBordered?: boolean | undefined;
|
|
39682
39685
|
hasBackground?: boolean | undefined;
|
|
39683
39686
|
isEditorPresentationDifferent?: boolean | undefined;
|
|
39684
39687
|
showBlockHeaderInEditor?: boolean | undefined;
|
|
39685
39688
|
} | undefined;
|
|
39686
|
-
documentationLink?: string | undefined;
|
|
39687
|
-
maxColumns?: number | undefined;
|
|
39688
|
-
defaultColumns?: number | undefined;
|
|
39689
39689
|
}[];
|
|
39690
39690
|
defaultVariantKey: string;
|
|
39691
39691
|
appearance?: {
|
|
@@ -39811,15 +39811,15 @@ declare const DTOGetBlockDefinitionsOutput: z.ZodObject<{
|
|
|
39811
39811
|
};
|
|
39812
39812
|
description?: string | undefined;
|
|
39813
39813
|
image?: string | undefined;
|
|
39814
|
+
documentationLink?: string | undefined;
|
|
39815
|
+
maxColumns?: number | undefined;
|
|
39816
|
+
defaultColumns?: number | undefined;
|
|
39814
39817
|
appearance?: {
|
|
39815
39818
|
isBordered?: boolean | undefined;
|
|
39816
39819
|
hasBackground?: boolean | undefined;
|
|
39817
39820
|
isEditorPresentationDifferent?: boolean | undefined;
|
|
39818
39821
|
showBlockHeaderInEditor?: boolean | undefined;
|
|
39819
39822
|
} | undefined;
|
|
39820
|
-
documentationLink?: string | undefined;
|
|
39821
|
-
maxColumns?: number | undefined;
|
|
39822
|
-
defaultColumns?: number | undefined;
|
|
39823
39823
|
}[];
|
|
39824
39824
|
defaultVariantKey: string;
|
|
39825
39825
|
appearance?: {
|
|
@@ -39849,13 +39849,13 @@ declare const DTOGetBlockDefinitionsOutput: z.ZodObject<{
|
|
|
39849
39849
|
} | undefined;
|
|
39850
39850
|
};
|
|
39851
39851
|
icon?: string | undefined;
|
|
39852
|
+
documentationLink?: string | undefined;
|
|
39852
39853
|
appearance?: {
|
|
39853
39854
|
isBordered?: boolean | undefined;
|
|
39854
39855
|
hasBackground?: boolean | undefined;
|
|
39855
39856
|
isEditorPresentationDifferent?: boolean | undefined;
|
|
39856
39857
|
showBlockHeaderInEditor?: boolean | undefined;
|
|
39857
39858
|
} | undefined;
|
|
39858
|
-
documentationLink?: string | undefined;
|
|
39859
39859
|
searchKeywords?: string[] | undefined;
|
|
39860
39860
|
}, {
|
|
39861
39861
|
id: string;
|
|
@@ -39884,15 +39884,15 @@ declare const DTOGetBlockDefinitionsOutput: z.ZodObject<{
|
|
|
39884
39884
|
};
|
|
39885
39885
|
description?: string | undefined;
|
|
39886
39886
|
image?: string | undefined;
|
|
39887
|
+
documentationLink?: string | undefined;
|
|
39888
|
+
maxColumns?: number | undefined;
|
|
39889
|
+
defaultColumns?: number | undefined;
|
|
39887
39890
|
appearance?: {
|
|
39888
39891
|
isBordered?: boolean | undefined;
|
|
39889
39892
|
hasBackground?: boolean | undefined;
|
|
39890
39893
|
isEditorPresentationDifferent?: boolean | undefined;
|
|
39891
39894
|
showBlockHeaderInEditor?: boolean | undefined;
|
|
39892
39895
|
} | undefined;
|
|
39893
|
-
documentationLink?: string | undefined;
|
|
39894
|
-
maxColumns?: number | undefined;
|
|
39895
|
-
defaultColumns?: number | undefined;
|
|
39896
39896
|
}[];
|
|
39897
39897
|
defaultVariantKey: string;
|
|
39898
39898
|
appearance?: {
|
|
@@ -39922,13 +39922,13 @@ declare const DTOGetBlockDefinitionsOutput: z.ZodObject<{
|
|
|
39922
39922
|
} | undefined;
|
|
39923
39923
|
};
|
|
39924
39924
|
icon?: string | undefined;
|
|
39925
|
+
documentationLink?: string | undefined;
|
|
39925
39926
|
appearance?: {
|
|
39926
39927
|
isBordered?: boolean | undefined;
|
|
39927
39928
|
hasBackground?: boolean | undefined;
|
|
39928
39929
|
isEditorPresentationDifferent?: boolean | undefined;
|
|
39929
39930
|
showBlockHeaderInEditor?: boolean | undefined;
|
|
39930
39931
|
} | undefined;
|
|
39931
|
-
documentationLink?: string | undefined;
|
|
39932
39932
|
searchKeywords?: string[] | undefined;
|
|
39933
39933
|
}>, "many">;
|
|
39934
39934
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -39959,15 +39959,15 @@ declare const DTOGetBlockDefinitionsOutput: z.ZodObject<{
|
|
|
39959
39959
|
};
|
|
39960
39960
|
description?: string | undefined;
|
|
39961
39961
|
image?: string | undefined;
|
|
39962
|
+
documentationLink?: string | undefined;
|
|
39963
|
+
maxColumns?: number | undefined;
|
|
39964
|
+
defaultColumns?: number | undefined;
|
|
39962
39965
|
appearance?: {
|
|
39963
39966
|
isBordered?: boolean | undefined;
|
|
39964
39967
|
hasBackground?: boolean | undefined;
|
|
39965
39968
|
isEditorPresentationDifferent?: boolean | undefined;
|
|
39966
39969
|
showBlockHeaderInEditor?: boolean | undefined;
|
|
39967
39970
|
} | undefined;
|
|
39968
|
-
documentationLink?: string | undefined;
|
|
39969
|
-
maxColumns?: number | undefined;
|
|
39970
|
-
defaultColumns?: number | undefined;
|
|
39971
39971
|
}[];
|
|
39972
39972
|
defaultVariantKey: string;
|
|
39973
39973
|
appearance?: {
|
|
@@ -39997,13 +39997,13 @@ declare const DTOGetBlockDefinitionsOutput: z.ZodObject<{
|
|
|
39997
39997
|
} | undefined;
|
|
39998
39998
|
};
|
|
39999
39999
|
icon?: string | undefined;
|
|
40000
|
+
documentationLink?: string | undefined;
|
|
40000
40001
|
appearance?: {
|
|
40001
40002
|
isBordered?: boolean | undefined;
|
|
40002
40003
|
hasBackground?: boolean | undefined;
|
|
40003
40004
|
isEditorPresentationDifferent?: boolean | undefined;
|
|
40004
40005
|
showBlockHeaderInEditor?: boolean | undefined;
|
|
40005
40006
|
} | undefined;
|
|
40006
|
-
documentationLink?: string | undefined;
|
|
40007
40007
|
searchKeywords?: string[] | undefined;
|
|
40008
40008
|
}[];
|
|
40009
40009
|
}, {
|
|
@@ -40034,15 +40034,15 @@ declare const DTOGetBlockDefinitionsOutput: z.ZodObject<{
|
|
|
40034
40034
|
};
|
|
40035
40035
|
description?: string | undefined;
|
|
40036
40036
|
image?: string | undefined;
|
|
40037
|
+
documentationLink?: string | undefined;
|
|
40038
|
+
maxColumns?: number | undefined;
|
|
40039
|
+
defaultColumns?: number | undefined;
|
|
40037
40040
|
appearance?: {
|
|
40038
40041
|
isBordered?: boolean | undefined;
|
|
40039
40042
|
hasBackground?: boolean | undefined;
|
|
40040
40043
|
isEditorPresentationDifferent?: boolean | undefined;
|
|
40041
40044
|
showBlockHeaderInEditor?: boolean | undefined;
|
|
40042
40045
|
} | undefined;
|
|
40043
|
-
documentationLink?: string | undefined;
|
|
40044
|
-
maxColumns?: number | undefined;
|
|
40045
|
-
defaultColumns?: number | undefined;
|
|
40046
40046
|
}[];
|
|
40047
40047
|
defaultVariantKey: string;
|
|
40048
40048
|
appearance?: {
|
|
@@ -40072,13 +40072,13 @@ declare const DTOGetBlockDefinitionsOutput: z.ZodObject<{
|
|
|
40072
40072
|
} | undefined;
|
|
40073
40073
|
};
|
|
40074
40074
|
icon?: string | undefined;
|
|
40075
|
+
documentationLink?: string | undefined;
|
|
40075
40076
|
appearance?: {
|
|
40076
40077
|
isBordered?: boolean | undefined;
|
|
40077
40078
|
hasBackground?: boolean | undefined;
|
|
40078
40079
|
isEditorPresentationDifferent?: boolean | undefined;
|
|
40079
40080
|
showBlockHeaderInEditor?: boolean | undefined;
|
|
40080
40081
|
} | undefined;
|
|
40081
|
-
documentationLink?: string | undefined;
|
|
40082
40082
|
searchKeywords?: string[] | undefined;
|
|
40083
40083
|
}[];
|
|
40084
40084
|
}>;
|
|
@@ -42465,7 +42465,6 @@ declare const PageBlockEditorModel: z.ZodObject<{
|
|
|
42465
42465
|
} | undefined;
|
|
42466
42466
|
}[];
|
|
42467
42467
|
indentLevel: number;
|
|
42468
|
-
variantId?: string | undefined;
|
|
42469
42468
|
appearance?: {
|
|
42470
42469
|
numberOfColumns?: number | undefined;
|
|
42471
42470
|
itemBackgroundColor?: {
|
|
@@ -42473,6 +42472,7 @@ declare const PageBlockEditorModel: z.ZodObject<{
|
|
|
42473
42472
|
referencedTokenId?: string | undefined;
|
|
42474
42473
|
} | undefined;
|
|
42475
42474
|
} | undefined;
|
|
42475
|
+
variantId?: string | undefined;
|
|
42476
42476
|
}, {
|
|
42477
42477
|
packageId: string;
|
|
42478
42478
|
items: {
|
|
@@ -42489,7 +42489,6 @@ declare const PageBlockEditorModel: z.ZodObject<{
|
|
|
42489
42489
|
} | undefined;
|
|
42490
42490
|
}[];
|
|
42491
42491
|
indentLevel: number;
|
|
42492
|
-
variantId?: string | undefined;
|
|
42493
42492
|
appearance?: {
|
|
42494
42493
|
numberOfColumns?: number | undefined;
|
|
42495
42494
|
itemBackgroundColor?: {
|
|
@@ -42497,6 +42496,7 @@ declare const PageBlockEditorModel: z.ZodObject<{
|
|
|
42497
42496
|
referencedTokenId?: string | undefined;
|
|
42498
42497
|
} | undefined;
|
|
42499
42498
|
} | undefined;
|
|
42499
|
+
variantId?: string | undefined;
|
|
42500
42500
|
}>;
|
|
42501
42501
|
}, "strip", z.ZodTypeAny, {
|
|
42502
42502
|
id: string;
|
|
@@ -42517,7 +42517,6 @@ declare const PageBlockEditorModel: z.ZodObject<{
|
|
|
42517
42517
|
} | undefined;
|
|
42518
42518
|
}[];
|
|
42519
42519
|
indentLevel: number;
|
|
42520
|
-
variantId?: string | undefined;
|
|
42521
42520
|
appearance?: {
|
|
42522
42521
|
numberOfColumns?: number | undefined;
|
|
42523
42522
|
itemBackgroundColor?: {
|
|
@@ -42525,6 +42524,7 @@ declare const PageBlockEditorModel: z.ZodObject<{
|
|
|
42525
42524
|
referencedTokenId?: string | undefined;
|
|
42526
42525
|
} | undefined;
|
|
42527
42526
|
} | undefined;
|
|
42527
|
+
variantId?: string | undefined;
|
|
42528
42528
|
};
|
|
42529
42529
|
}, {
|
|
42530
42530
|
id: string;
|
|
@@ -42545,7 +42545,6 @@ declare const PageBlockEditorModel: z.ZodObject<{
|
|
|
42545
42545
|
} | undefined;
|
|
42546
42546
|
}[];
|
|
42547
42547
|
indentLevel: number;
|
|
42548
|
-
variantId?: string | undefined;
|
|
42549
42548
|
appearance?: {
|
|
42550
42549
|
numberOfColumns?: number | undefined;
|
|
42551
42550
|
itemBackgroundColor?: {
|
|
@@ -42553,6 +42552,7 @@ declare const PageBlockEditorModel: z.ZodObject<{
|
|
|
42553
42552
|
referencedTokenId?: string | undefined;
|
|
42554
42553
|
} | undefined;
|
|
42555
42554
|
} | undefined;
|
|
42555
|
+
variantId?: string | undefined;
|
|
42556
42556
|
};
|
|
42557
42557
|
}>;
|
|
42558
42558
|
type PageBlockEditorModel = z.infer<typeof PageBlockEditorModel>;
|
|
@@ -42741,7 +42741,6 @@ declare const PageSectionEditorModel: z.ZodObject<{
|
|
|
42741
42741
|
} | undefined;
|
|
42742
42742
|
}[];
|
|
42743
42743
|
indentLevel: number;
|
|
42744
|
-
variantId?: string | undefined;
|
|
42745
42744
|
appearance?: {
|
|
42746
42745
|
numberOfColumns?: number | undefined;
|
|
42747
42746
|
itemBackgroundColor?: {
|
|
@@ -42749,6 +42748,7 @@ declare const PageSectionEditorModel: z.ZodObject<{
|
|
|
42749
42748
|
referencedTokenId?: string | undefined;
|
|
42750
42749
|
} | undefined;
|
|
42751
42750
|
} | undefined;
|
|
42751
|
+
variantId?: string | undefined;
|
|
42752
42752
|
}, {
|
|
42753
42753
|
packageId: string;
|
|
42754
42754
|
items: {
|
|
@@ -42765,7 +42765,6 @@ declare const PageSectionEditorModel: z.ZodObject<{
|
|
|
42765
42765
|
} | undefined;
|
|
42766
42766
|
}[];
|
|
42767
42767
|
indentLevel: number;
|
|
42768
|
-
variantId?: string | undefined;
|
|
42769
42768
|
appearance?: {
|
|
42770
42769
|
numberOfColumns?: number | undefined;
|
|
42771
42770
|
itemBackgroundColor?: {
|
|
@@ -42773,6 +42772,7 @@ declare const PageSectionEditorModel: z.ZodObject<{
|
|
|
42773
42772
|
referencedTokenId?: string | undefined;
|
|
42774
42773
|
} | undefined;
|
|
42775
42774
|
} | undefined;
|
|
42775
|
+
variantId?: string | undefined;
|
|
42776
42776
|
}>;
|
|
42777
42777
|
}, "strip", z.ZodTypeAny, {
|
|
42778
42778
|
id: string;
|
|
@@ -42793,7 +42793,6 @@ declare const PageSectionEditorModel: z.ZodObject<{
|
|
|
42793
42793
|
} | undefined;
|
|
42794
42794
|
}[];
|
|
42795
42795
|
indentLevel: number;
|
|
42796
|
-
variantId?: string | undefined;
|
|
42797
42796
|
appearance?: {
|
|
42798
42797
|
numberOfColumns?: number | undefined;
|
|
42799
42798
|
itemBackgroundColor?: {
|
|
@@ -42801,6 +42800,7 @@ declare const PageSectionEditorModel: z.ZodObject<{
|
|
|
42801
42800
|
referencedTokenId?: string | undefined;
|
|
42802
42801
|
} | undefined;
|
|
42803
42802
|
} | undefined;
|
|
42803
|
+
variantId?: string | undefined;
|
|
42804
42804
|
};
|
|
42805
42805
|
}, {
|
|
42806
42806
|
id: string;
|
|
@@ -42821,7 +42821,6 @@ declare const PageSectionEditorModel: z.ZodObject<{
|
|
|
42821
42821
|
} | undefined;
|
|
42822
42822
|
}[];
|
|
42823
42823
|
indentLevel: number;
|
|
42824
|
-
variantId?: string | undefined;
|
|
42825
42824
|
appearance?: {
|
|
42826
42825
|
numberOfColumns?: number | undefined;
|
|
42827
42826
|
itemBackgroundColor?: {
|
|
@@ -42829,6 +42828,7 @@ declare const PageSectionEditorModel: z.ZodObject<{
|
|
|
42829
42828
|
referencedTokenId?: string | undefined;
|
|
42830
42829
|
} | undefined;
|
|
42831
42830
|
} | undefined;
|
|
42831
|
+
variantId?: string | undefined;
|
|
42832
42832
|
};
|
|
42833
42833
|
}>, "many">;
|
|
42834
42834
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -42852,7 +42852,6 @@ declare const PageSectionEditorModel: z.ZodObject<{
|
|
|
42852
42852
|
} | undefined;
|
|
42853
42853
|
}[];
|
|
42854
42854
|
indentLevel: number;
|
|
42855
|
-
variantId?: string | undefined;
|
|
42856
42855
|
appearance?: {
|
|
42857
42856
|
numberOfColumns?: number | undefined;
|
|
42858
42857
|
itemBackgroundColor?: {
|
|
@@ -42860,6 +42859,7 @@ declare const PageSectionEditorModel: z.ZodObject<{
|
|
|
42860
42859
|
referencedTokenId?: string | undefined;
|
|
42861
42860
|
} | undefined;
|
|
42862
42861
|
} | undefined;
|
|
42862
|
+
variantId?: string | undefined;
|
|
42863
42863
|
};
|
|
42864
42864
|
}[];
|
|
42865
42865
|
}, {
|
|
@@ -42883,7 +42883,6 @@ declare const PageSectionEditorModel: z.ZodObject<{
|
|
|
42883
42883
|
} | undefined;
|
|
42884
42884
|
}[];
|
|
42885
42885
|
indentLevel: number;
|
|
42886
|
-
variantId?: string | undefined;
|
|
42887
42886
|
appearance?: {
|
|
42888
42887
|
numberOfColumns?: number | undefined;
|
|
42889
42888
|
itemBackgroundColor?: {
|
|
@@ -42891,6 +42890,7 @@ declare const PageSectionEditorModel: z.ZodObject<{
|
|
|
42891
42890
|
referencedTokenId?: string | undefined;
|
|
42892
42891
|
} | undefined;
|
|
42893
42892
|
} | undefined;
|
|
42893
|
+
variantId?: string | undefined;
|
|
42894
42894
|
};
|
|
42895
42895
|
}[];
|
|
42896
42896
|
}>, "many">;
|
|
@@ -42918,7 +42918,6 @@ declare const PageSectionEditorModel: z.ZodObject<{
|
|
|
42918
42918
|
} | undefined;
|
|
42919
42919
|
}[];
|
|
42920
42920
|
indentLevel: number;
|
|
42921
|
-
variantId?: string | undefined;
|
|
42922
42921
|
appearance?: {
|
|
42923
42922
|
numberOfColumns?: number | undefined;
|
|
42924
42923
|
itemBackgroundColor?: {
|
|
@@ -42926,6 +42925,7 @@ declare const PageSectionEditorModel: z.ZodObject<{
|
|
|
42926
42925
|
referencedTokenId?: string | undefined;
|
|
42927
42926
|
} | undefined;
|
|
42928
42927
|
} | undefined;
|
|
42928
|
+
variantId?: string | undefined;
|
|
42929
42929
|
};
|
|
42930
42930
|
}[];
|
|
42931
42931
|
}[];
|
|
@@ -42953,7 +42953,6 @@ declare const PageSectionEditorModel: z.ZodObject<{
|
|
|
42953
42953
|
} | undefined;
|
|
42954
42954
|
}[];
|
|
42955
42955
|
indentLevel: number;
|
|
42956
|
-
variantId?: string | undefined;
|
|
42957
42956
|
appearance?: {
|
|
42958
42957
|
numberOfColumns?: number | undefined;
|
|
42959
42958
|
itemBackgroundColor?: {
|
|
@@ -42961,6 +42960,7 @@ declare const PageSectionEditorModel: z.ZodObject<{
|
|
|
42961
42960
|
referencedTokenId?: string | undefined;
|
|
42962
42961
|
} | undefined;
|
|
42963
42962
|
} | undefined;
|
|
42963
|
+
variantId?: string | undefined;
|
|
42964
42964
|
};
|
|
42965
42965
|
}[];
|
|
42966
42966
|
}[];
|
|
@@ -42992,7 +42992,6 @@ declare const PageSectionEditorModel: z.ZodObject<{
|
|
|
42992
42992
|
} | undefined;
|
|
42993
42993
|
}[];
|
|
42994
42994
|
indentLevel: number;
|
|
42995
|
-
variantId?: string | undefined;
|
|
42996
42995
|
appearance?: {
|
|
42997
42996
|
numberOfColumns?: number | undefined;
|
|
42998
42997
|
itemBackgroundColor?: {
|
|
@@ -43000,6 +42999,7 @@ declare const PageSectionEditorModel: z.ZodObject<{
|
|
|
43000
42999
|
referencedTokenId?: string | undefined;
|
|
43001
43000
|
} | undefined;
|
|
43002
43001
|
} | undefined;
|
|
43002
|
+
variantId?: string | undefined;
|
|
43003
43003
|
};
|
|
43004
43004
|
}[];
|
|
43005
43005
|
}[];
|
|
@@ -43051,7 +43051,6 @@ declare const PageSectionEditorModel: z.ZodObject<{
|
|
|
43051
43051
|
} | undefined;
|
|
43052
43052
|
}[];
|
|
43053
43053
|
indentLevel: number;
|
|
43054
|
-
variantId?: string | undefined;
|
|
43055
43054
|
appearance?: {
|
|
43056
43055
|
numberOfColumns?: number | undefined;
|
|
43057
43056
|
itemBackgroundColor?: {
|
|
@@ -43059,6 +43058,7 @@ declare const PageSectionEditorModel: z.ZodObject<{
|
|
|
43059
43058
|
referencedTokenId?: string | undefined;
|
|
43060
43059
|
} | undefined;
|
|
43061
43060
|
} | undefined;
|
|
43061
|
+
variantId?: string | undefined;
|
|
43062
43062
|
};
|
|
43063
43063
|
}[];
|
|
43064
43064
|
}[];
|
|
@@ -43188,7 +43188,6 @@ declare const DocumentationPageEditorModel: z.ZodObject<{
|
|
|
43188
43188
|
} | undefined;
|
|
43189
43189
|
}[];
|
|
43190
43190
|
indentLevel: number;
|
|
43191
|
-
variantId?: string | undefined;
|
|
43192
43191
|
appearance?: {
|
|
43193
43192
|
numberOfColumns?: number | undefined;
|
|
43194
43193
|
itemBackgroundColor?: {
|
|
@@ -43196,6 +43195,7 @@ declare const DocumentationPageEditorModel: z.ZodObject<{
|
|
|
43196
43195
|
referencedTokenId?: string | undefined;
|
|
43197
43196
|
} | undefined;
|
|
43198
43197
|
} | undefined;
|
|
43198
|
+
variantId?: string | undefined;
|
|
43199
43199
|
}, {
|
|
43200
43200
|
packageId: string;
|
|
43201
43201
|
items: {
|
|
@@ -43212,7 +43212,6 @@ declare const DocumentationPageEditorModel: z.ZodObject<{
|
|
|
43212
43212
|
} | undefined;
|
|
43213
43213
|
}[];
|
|
43214
43214
|
indentLevel: number;
|
|
43215
|
-
variantId?: string | undefined;
|
|
43216
43215
|
appearance?: {
|
|
43217
43216
|
numberOfColumns?: number | undefined;
|
|
43218
43217
|
itemBackgroundColor?: {
|
|
@@ -43220,6 +43219,7 @@ declare const DocumentationPageEditorModel: z.ZodObject<{
|
|
|
43220
43219
|
referencedTokenId?: string | undefined;
|
|
43221
43220
|
} | undefined;
|
|
43222
43221
|
} | undefined;
|
|
43222
|
+
variantId?: string | undefined;
|
|
43223
43223
|
}>;
|
|
43224
43224
|
}, "strip", z.ZodTypeAny, {
|
|
43225
43225
|
id: string;
|
|
@@ -43240,7 +43240,6 @@ declare const DocumentationPageEditorModel: z.ZodObject<{
|
|
|
43240
43240
|
} | undefined;
|
|
43241
43241
|
}[];
|
|
43242
43242
|
indentLevel: number;
|
|
43243
|
-
variantId?: string | undefined;
|
|
43244
43243
|
appearance?: {
|
|
43245
43244
|
numberOfColumns?: number | undefined;
|
|
43246
43245
|
itemBackgroundColor?: {
|
|
@@ -43248,6 +43247,7 @@ declare const DocumentationPageEditorModel: z.ZodObject<{
|
|
|
43248
43247
|
referencedTokenId?: string | undefined;
|
|
43249
43248
|
} | undefined;
|
|
43250
43249
|
} | undefined;
|
|
43250
|
+
variantId?: string | undefined;
|
|
43251
43251
|
};
|
|
43252
43252
|
}, {
|
|
43253
43253
|
id: string;
|
|
@@ -43268,7 +43268,6 @@ declare const DocumentationPageEditorModel: z.ZodObject<{
|
|
|
43268
43268
|
} | undefined;
|
|
43269
43269
|
}[];
|
|
43270
43270
|
indentLevel: number;
|
|
43271
|
-
variantId?: string | undefined;
|
|
43272
43271
|
appearance?: {
|
|
43273
43272
|
numberOfColumns?: number | undefined;
|
|
43274
43273
|
itemBackgroundColor?: {
|
|
@@ -43276,6 +43275,7 @@ declare const DocumentationPageEditorModel: z.ZodObject<{
|
|
|
43276
43275
|
referencedTokenId?: string | undefined;
|
|
43277
43276
|
} | undefined;
|
|
43278
43277
|
} | undefined;
|
|
43278
|
+
variantId?: string | undefined;
|
|
43279
43279
|
};
|
|
43280
43280
|
}>, z.ZodObject<{
|
|
43281
43281
|
id: z.ZodString;
|
|
@@ -43462,7 +43462,6 @@ declare const DocumentationPageEditorModel: z.ZodObject<{
|
|
|
43462
43462
|
} | undefined;
|
|
43463
43463
|
}[];
|
|
43464
43464
|
indentLevel: number;
|
|
43465
|
-
variantId?: string | undefined;
|
|
43466
43465
|
appearance?: {
|
|
43467
43466
|
numberOfColumns?: number | undefined;
|
|
43468
43467
|
itemBackgroundColor?: {
|
|
@@ -43470,6 +43469,7 @@ declare const DocumentationPageEditorModel: z.ZodObject<{
|
|
|
43470
43469
|
referencedTokenId?: string | undefined;
|
|
43471
43470
|
} | undefined;
|
|
43472
43471
|
} | undefined;
|
|
43472
|
+
variantId?: string | undefined;
|
|
43473
43473
|
}, {
|
|
43474
43474
|
packageId: string;
|
|
43475
43475
|
items: {
|
|
@@ -43486,7 +43486,6 @@ declare const DocumentationPageEditorModel: z.ZodObject<{
|
|
|
43486
43486
|
} | undefined;
|
|
43487
43487
|
}[];
|
|
43488
43488
|
indentLevel: number;
|
|
43489
|
-
variantId?: string | undefined;
|
|
43490
43489
|
appearance?: {
|
|
43491
43490
|
numberOfColumns?: number | undefined;
|
|
43492
43491
|
itemBackgroundColor?: {
|
|
@@ -43494,6 +43493,7 @@ declare const DocumentationPageEditorModel: z.ZodObject<{
|
|
|
43494
43493
|
referencedTokenId?: string | undefined;
|
|
43495
43494
|
} | undefined;
|
|
43496
43495
|
} | undefined;
|
|
43496
|
+
variantId?: string | undefined;
|
|
43497
43497
|
}>;
|
|
43498
43498
|
}, "strip", z.ZodTypeAny, {
|
|
43499
43499
|
id: string;
|
|
@@ -43514,7 +43514,6 @@ declare const DocumentationPageEditorModel: z.ZodObject<{
|
|
|
43514
43514
|
} | undefined;
|
|
43515
43515
|
}[];
|
|
43516
43516
|
indentLevel: number;
|
|
43517
|
-
variantId?: string | undefined;
|
|
43518
43517
|
appearance?: {
|
|
43519
43518
|
numberOfColumns?: number | undefined;
|
|
43520
43519
|
itemBackgroundColor?: {
|
|
@@ -43522,6 +43521,7 @@ declare const DocumentationPageEditorModel: z.ZodObject<{
|
|
|
43522
43521
|
referencedTokenId?: string | undefined;
|
|
43523
43522
|
} | undefined;
|
|
43524
43523
|
} | undefined;
|
|
43524
|
+
variantId?: string | undefined;
|
|
43525
43525
|
};
|
|
43526
43526
|
}, {
|
|
43527
43527
|
id: string;
|
|
@@ -43542,7 +43542,6 @@ declare const DocumentationPageEditorModel: z.ZodObject<{
|
|
|
43542
43542
|
} | undefined;
|
|
43543
43543
|
}[];
|
|
43544
43544
|
indentLevel: number;
|
|
43545
|
-
variantId?: string | undefined;
|
|
43546
43545
|
appearance?: {
|
|
43547
43546
|
numberOfColumns?: number | undefined;
|
|
43548
43547
|
itemBackgroundColor?: {
|
|
@@ -43550,6 +43549,7 @@ declare const DocumentationPageEditorModel: z.ZodObject<{
|
|
|
43550
43549
|
referencedTokenId?: string | undefined;
|
|
43551
43550
|
} | undefined;
|
|
43552
43551
|
} | undefined;
|
|
43552
|
+
variantId?: string | undefined;
|
|
43553
43553
|
};
|
|
43554
43554
|
}>, "many">;
|
|
43555
43555
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -43573,7 +43573,6 @@ declare const DocumentationPageEditorModel: z.ZodObject<{
|
|
|
43573
43573
|
} | undefined;
|
|
43574
43574
|
}[];
|
|
43575
43575
|
indentLevel: number;
|
|
43576
|
-
variantId?: string | undefined;
|
|
43577
43576
|
appearance?: {
|
|
43578
43577
|
numberOfColumns?: number | undefined;
|
|
43579
43578
|
itemBackgroundColor?: {
|
|
@@ -43581,6 +43580,7 @@ declare const DocumentationPageEditorModel: z.ZodObject<{
|
|
|
43581
43580
|
referencedTokenId?: string | undefined;
|
|
43582
43581
|
} | undefined;
|
|
43583
43582
|
} | undefined;
|
|
43583
|
+
variantId?: string | undefined;
|
|
43584
43584
|
};
|
|
43585
43585
|
}[];
|
|
43586
43586
|
}, {
|
|
@@ -43604,7 +43604,6 @@ declare const DocumentationPageEditorModel: z.ZodObject<{
|
|
|
43604
43604
|
} | undefined;
|
|
43605
43605
|
}[];
|
|
43606
43606
|
indentLevel: number;
|
|
43607
|
-
variantId?: string | undefined;
|
|
43608
43607
|
appearance?: {
|
|
43609
43608
|
numberOfColumns?: number | undefined;
|
|
43610
43609
|
itemBackgroundColor?: {
|
|
@@ -43612,6 +43611,7 @@ declare const DocumentationPageEditorModel: z.ZodObject<{
|
|
|
43612
43611
|
referencedTokenId?: string | undefined;
|
|
43613
43612
|
} | undefined;
|
|
43614
43613
|
} | undefined;
|
|
43614
|
+
variantId?: string | undefined;
|
|
43615
43615
|
};
|
|
43616
43616
|
}[];
|
|
43617
43617
|
}>, "many">;
|
|
@@ -43639,7 +43639,6 @@ declare const DocumentationPageEditorModel: z.ZodObject<{
|
|
|
43639
43639
|
} | undefined;
|
|
43640
43640
|
}[];
|
|
43641
43641
|
indentLevel: number;
|
|
43642
|
-
variantId?: string | undefined;
|
|
43643
43642
|
appearance?: {
|
|
43644
43643
|
numberOfColumns?: number | undefined;
|
|
43645
43644
|
itemBackgroundColor?: {
|
|
@@ -43647,6 +43646,7 @@ declare const DocumentationPageEditorModel: z.ZodObject<{
|
|
|
43647
43646
|
referencedTokenId?: string | undefined;
|
|
43648
43647
|
} | undefined;
|
|
43649
43648
|
} | undefined;
|
|
43649
|
+
variantId?: string | undefined;
|
|
43650
43650
|
};
|
|
43651
43651
|
}[];
|
|
43652
43652
|
}[];
|
|
@@ -43674,7 +43674,6 @@ declare const DocumentationPageEditorModel: z.ZodObject<{
|
|
|
43674
43674
|
} | undefined;
|
|
43675
43675
|
}[];
|
|
43676
43676
|
indentLevel: number;
|
|
43677
|
-
variantId?: string | undefined;
|
|
43678
43677
|
appearance?: {
|
|
43679
43678
|
numberOfColumns?: number | undefined;
|
|
43680
43679
|
itemBackgroundColor?: {
|
|
@@ -43682,6 +43681,7 @@ declare const DocumentationPageEditorModel: z.ZodObject<{
|
|
|
43682
43681
|
referencedTokenId?: string | undefined;
|
|
43683
43682
|
} | undefined;
|
|
43684
43683
|
} | undefined;
|
|
43684
|
+
variantId?: string | undefined;
|
|
43685
43685
|
};
|
|
43686
43686
|
}[];
|
|
43687
43687
|
}[];
|
|
@@ -43713,7 +43713,6 @@ declare const DocumentationPageEditorModel: z.ZodObject<{
|
|
|
43713
43713
|
} | undefined;
|
|
43714
43714
|
}[];
|
|
43715
43715
|
indentLevel: number;
|
|
43716
|
-
variantId?: string | undefined;
|
|
43717
43716
|
appearance?: {
|
|
43718
43717
|
numberOfColumns?: number | undefined;
|
|
43719
43718
|
itemBackgroundColor?: {
|
|
@@ -43721,6 +43720,7 @@ declare const DocumentationPageEditorModel: z.ZodObject<{
|
|
|
43721
43720
|
referencedTokenId?: string | undefined;
|
|
43722
43721
|
} | undefined;
|
|
43723
43722
|
} | undefined;
|
|
43723
|
+
variantId?: string | undefined;
|
|
43724
43724
|
};
|
|
43725
43725
|
}[];
|
|
43726
43726
|
}[];
|
|
@@ -43772,7 +43772,6 @@ declare const DocumentationPageEditorModel: z.ZodObject<{
|
|
|
43772
43772
|
} | undefined;
|
|
43773
43773
|
}[];
|
|
43774
43774
|
indentLevel: number;
|
|
43775
|
-
variantId?: string | undefined;
|
|
43776
43775
|
appearance?: {
|
|
43777
43776
|
numberOfColumns?: number | undefined;
|
|
43778
43777
|
itemBackgroundColor?: {
|
|
@@ -43780,6 +43779,7 @@ declare const DocumentationPageEditorModel: z.ZodObject<{
|
|
|
43780
43779
|
referencedTokenId?: string | undefined;
|
|
43781
43780
|
} | undefined;
|
|
43782
43781
|
} | undefined;
|
|
43782
|
+
variantId?: string | undefined;
|
|
43783
43783
|
};
|
|
43784
43784
|
}[];
|
|
43785
43785
|
}[];
|
|
@@ -43825,7 +43825,6 @@ declare const DocumentationPageEditorModel: z.ZodObject<{
|
|
|
43825
43825
|
} | undefined;
|
|
43826
43826
|
}[];
|
|
43827
43827
|
indentLevel: number;
|
|
43828
|
-
variantId?: string | undefined;
|
|
43829
43828
|
appearance?: {
|
|
43830
43829
|
numberOfColumns?: number | undefined;
|
|
43831
43830
|
itemBackgroundColor?: {
|
|
@@ -43833,6 +43832,7 @@ declare const DocumentationPageEditorModel: z.ZodObject<{
|
|
|
43833
43832
|
referencedTokenId?: string | undefined;
|
|
43834
43833
|
} | undefined;
|
|
43835
43834
|
} | undefined;
|
|
43835
|
+
variantId?: string | undefined;
|
|
43836
43836
|
};
|
|
43837
43837
|
} | {
|
|
43838
43838
|
id: string;
|
|
@@ -43861,7 +43861,6 @@ declare const DocumentationPageEditorModel: z.ZodObject<{
|
|
|
43861
43861
|
} | undefined;
|
|
43862
43862
|
}[];
|
|
43863
43863
|
indentLevel: number;
|
|
43864
|
-
variantId?: string | undefined;
|
|
43865
43864
|
appearance?: {
|
|
43866
43865
|
numberOfColumns?: number | undefined;
|
|
43867
43866
|
itemBackgroundColor?: {
|
|
@@ -43869,6 +43868,7 @@ declare const DocumentationPageEditorModel: z.ZodObject<{
|
|
|
43869
43868
|
referencedTokenId?: string | undefined;
|
|
43870
43869
|
} | undefined;
|
|
43871
43870
|
} | undefined;
|
|
43871
|
+
variantId?: string | undefined;
|
|
43872
43872
|
};
|
|
43873
43873
|
}[];
|
|
43874
43874
|
}[];
|
|
@@ -43914,7 +43914,6 @@ declare const DocumentationPageEditorModel: z.ZodObject<{
|
|
|
43914
43914
|
} | undefined;
|
|
43915
43915
|
}[];
|
|
43916
43916
|
indentLevel: number;
|
|
43917
|
-
variantId?: string | undefined;
|
|
43918
43917
|
appearance?: {
|
|
43919
43918
|
numberOfColumns?: number | undefined;
|
|
43920
43919
|
itemBackgroundColor?: {
|
|
@@ -43922,6 +43921,7 @@ declare const DocumentationPageEditorModel: z.ZodObject<{
|
|
|
43922
43921
|
referencedTokenId?: string | undefined;
|
|
43923
43922
|
} | undefined;
|
|
43924
43923
|
} | undefined;
|
|
43924
|
+
variantId?: string | undefined;
|
|
43925
43925
|
};
|
|
43926
43926
|
} | {
|
|
43927
43927
|
id: string;
|
|
@@ -43950,7 +43950,6 @@ declare const DocumentationPageEditorModel: z.ZodObject<{
|
|
|
43950
43950
|
} | undefined;
|
|
43951
43951
|
}[];
|
|
43952
43952
|
indentLevel: number;
|
|
43953
|
-
variantId?: string | undefined;
|
|
43954
43953
|
appearance?: {
|
|
43955
43954
|
numberOfColumns?: number | undefined;
|
|
43956
43955
|
itemBackgroundColor?: {
|
|
@@ -43958,6 +43957,7 @@ declare const DocumentationPageEditorModel: z.ZodObject<{
|
|
|
43958
43957
|
referencedTokenId?: string | undefined;
|
|
43959
43958
|
} | undefined;
|
|
43960
43959
|
} | undefined;
|
|
43960
|
+
variantId?: string | undefined;
|
|
43961
43961
|
};
|
|
43962
43962
|
}[];
|
|
43963
43963
|
}[];
|
|
@@ -43986,7 +43986,9 @@ declare const DocumentationPageEditorModel: z.ZodObject<{
|
|
|
43986
43986
|
}>;
|
|
43987
43987
|
type DocumentationPageEditorModel = z.infer<typeof DocumentationPageEditorModel>;
|
|
43988
43988
|
|
|
43989
|
-
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">;
|
|
43990
43992
|
|
|
43991
43993
|
type ProsemirrorNode = {
|
|
43992
43994
|
type: string;
|
|
@@ -43997,7 +43999,7 @@ type ProsemirrorNode = {
|
|
|
43997
43999
|
};
|
|
43998
44000
|
type ProsemirrorMark = {
|
|
43999
44001
|
type: string;
|
|
44000
|
-
attrs
|
|
44002
|
+
attrs?: Record<string, any>;
|
|
44001
44003
|
};
|
|
44002
44004
|
type ProsemirrorBlockItem = {
|
|
44003
44005
|
id: string;
|
|
@@ -44008,6 +44010,7 @@ declare function pageToYDoc(doc: Y.Doc, page: DocumentationPageEditorModel, defi
|
|
|
44008
44010
|
declare function pageToYXmlFragment(page: DocumentationPageEditorModel, definitions: PageBlockDefinition[], fragment: Y.XmlFragment): Y.XmlFragment;
|
|
44009
44011
|
declare function pageToProsemirrorDoc(page: DocumentationPageEditorModel, definitions: PageBlockDefinition[]): ProsemirrorNode;
|
|
44010
44012
|
declare function blockToProsemirrorNode(block: PageBlockEditorModel, definition: PageBlockDefinition): ProsemirrorNode | null;
|
|
44013
|
+
declare function richTextPropertyValueToProsemirror(richTextEditorValue: PageBlockItemRichTextEditorValue): ProsemirrorNode;
|
|
44011
44014
|
declare function serializeAsCustomBlock(block: PageBlockEditorModel, definition: PageBlockDefinition): ProsemirrorNode;
|
|
44012
44015
|
|
|
44013
44016
|
type Node = ListNode | ListItemNode;
|
|
@@ -44037,6 +44040,7 @@ declare function yDocToPage(yDoc: Y.Doc, definitions: PageBlockDefinition[]): Do
|
|
|
44037
44040
|
declare function yXmlFragmentToPage(fragment: Y.XmlFragment, definitions: PageBlockDefinition[]): DocumentationPageEditorModel;
|
|
44038
44041
|
declare function prosemirrorDocToPage(prosemirrorDoc: ProsemirrorNode, definitions: PageBlockDefinition[]): DocumentationPageEditorModel;
|
|
44039
44042
|
declare function shallowProsemirrorNodeToBlock(prosemirrorNode: ProsemirrorNode, definition: PageBlockDefinition): PageBlockEditorModel | null;
|
|
44043
|
+
declare function prosemirrorDocToRichTextPropertyValue(prosemirrorNode: ProsemirrorNode): PageBlockItemRichTextEditorValue;
|
|
44040
44044
|
declare function prosemirrorNodeToSection(prosemirrorNode: ProsemirrorNode, definitions: PageBlockDefinition[]): PageSectionEditorModel | null;
|
|
44041
44045
|
declare function prosemirrorNodesToBlocks(prosemirrorNodes: ProsemirrorNode[], definitions: PageBlockDefinition[]): {
|
|
44042
44046
|
id: string;
|
|
@@ -44057,7 +44061,6 @@ declare function prosemirrorNodesToBlocks(prosemirrorNodes: ProsemirrorNode[], d
|
|
|
44057
44061
|
} | undefined;
|
|
44058
44062
|
}[];
|
|
44059
44063
|
indentLevel: number;
|
|
44060
|
-
variantId?: string | undefined;
|
|
44061
44064
|
appearance?: {
|
|
44062
44065
|
numberOfColumns?: number | undefined;
|
|
44063
44066
|
itemBackgroundColor?: {
|
|
@@ -44065,6 +44068,7 @@ declare function prosemirrorNodesToBlocks(prosemirrorNodes: ProsemirrorNode[], d
|
|
|
44065
44068
|
referencedTokenId?: string | undefined;
|
|
44066
44069
|
} | undefined;
|
|
44067
44070
|
} | undefined;
|
|
44071
|
+
variantId?: string | undefined;
|
|
44068
44072
|
};
|
|
44069
44073
|
}[];
|
|
44070
44074
|
|
|
@@ -44235,4 +44239,4 @@ declare class FrontendVersionRoomYDoc {
|
|
|
44235
44239
|
|
|
44236
44240
|
declare function generatePageContentHash(content: DocumentationPageEditorModel, definitions: PageBlockDefinition[], debug?: boolean): string;
|
|
44237
44241
|
|
|
44238
|
-
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 };
|