@supernova-studio/client 0.46.1 → 0.46.5
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 +483 -63
- package/dist/index.d.ts +483 -63
- package/dist/index.js +182 -96
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +954 -868
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -2
- package/src/api/conversion/integrations/integration.ts +10 -2
- package/src/api/dto/design-systems/version.ts +7 -3
- package/src/api/dto/workspaces/integrations.ts +3 -2
- package/src/api/payloads/design-systems/version.ts +4 -6
- package/src/yjs/design-system-content/index.ts +0 -1
- package/src/yjs/design-system-content/item-title.ts +0 -0
package/dist/index.d.mts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as _supernova_studio_model from '@supernova-studio/model';
|
|
2
|
-
import { PageBlockV1, DocumentationPageV2, ElementGroup, DocumentationGroupV1, DocumentationPageV1, DocumentationItemConfigurationV1, DocumentationItemConfigurationV2,
|
|
2
|
+
import { PageBlockV1, DocumentationPageV2, ElementGroup, DocumentationGroupV1, DocumentationPageV1, DocumentationItemConfigurationV1, DocumentationItemConfigurationV2, ExtendedIntegration, SsoProvider, PageBlockItemUntypedValue, PageBlockDefinition, PageBlockText, PageBlockDefinitionProperty, PageBlockDefinitionMultiRichTextPropertyStyle, PageBlockItemV2, PageBlockItemRichTextValue, PageBlockItemMultiRichTextValue, PageBlockItemTableValue, PageBlockItemEmbedValue, PageBlockDefinitionPropertyType } from '@supernova-studio/model';
|
|
3
3
|
import { z } from 'zod';
|
|
4
4
|
import * as Y from 'yjs';
|
|
5
5
|
import { Schema } from 'prosemirror-model';
|
|
@@ -563,40 +563,87 @@ declare const DTODesignSystemVersionGetResponse: z.ZodObject<{
|
|
|
563
563
|
};
|
|
564
564
|
}>;
|
|
565
565
|
type DTODesignSystemVersionGetResponse = z.infer<typeof DTODesignSystemVersionGetResponse>;
|
|
566
|
-
declare const
|
|
567
|
-
|
|
568
|
-
|
|
566
|
+
declare const DTODesignSystemVersionJobsResponse: z.ZodObject<{
|
|
567
|
+
jobs: z.ZodArray<z.ZodObject<{
|
|
568
|
+
id: z.ZodString;
|
|
569
569
|
version: z.ZodString;
|
|
570
570
|
designSystemId: z.ZodString;
|
|
571
571
|
designSystemVersionId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
572
572
|
status: z.ZodEnum<["Success", "InProgress", "Error"]>;
|
|
573
573
|
errorMessage: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
574
|
-
}, "
|
|
575
|
-
|
|
576
|
-
|
|
574
|
+
}, "strip", z.ZodTypeAny, {
|
|
575
|
+
id: string;
|
|
576
|
+
status: "Success" | "Error" | "InProgress";
|
|
577
577
|
designSystemId: string;
|
|
578
|
+
version: string;
|
|
578
579
|
designSystemVersionId?: string | undefined;
|
|
579
580
|
errorMessage?: string | undefined;
|
|
580
581
|
}, {
|
|
581
|
-
|
|
582
|
+
id: string;
|
|
583
|
+
status: "Success" | "Error" | "InProgress";
|
|
584
|
+
designSystemId: string;
|
|
585
|
+
version: string;
|
|
586
|
+
designSystemVersionId?: string | null | undefined;
|
|
587
|
+
errorMessage?: string | null | undefined;
|
|
588
|
+
}>, "many">;
|
|
589
|
+
}, "strip", z.ZodTypeAny, {
|
|
590
|
+
jobs: {
|
|
591
|
+
id: string;
|
|
592
|
+
status: "Success" | "Error" | "InProgress";
|
|
593
|
+
designSystemId: string;
|
|
582
594
|
version: string;
|
|
595
|
+
designSystemVersionId?: string | undefined;
|
|
596
|
+
errorMessage?: string | undefined;
|
|
597
|
+
}[];
|
|
598
|
+
}, {
|
|
599
|
+
jobs: {
|
|
600
|
+
id: string;
|
|
601
|
+
status: "Success" | "Error" | "InProgress";
|
|
583
602
|
designSystemId: string;
|
|
603
|
+
version: string;
|
|
604
|
+
designSystemVersionId?: string | null | undefined;
|
|
605
|
+
errorMessage?: string | null | undefined;
|
|
606
|
+
}[];
|
|
607
|
+
}>;
|
|
608
|
+
type DTODesignSystemVersionJobsResponse = z.infer<typeof DTODesignSystemVersionJobsResponse>;
|
|
609
|
+
declare const DTODesignSystemVersionJobStatusResponse: z.ZodObject<{
|
|
610
|
+
job: z.ZodObject<{
|
|
611
|
+
id: z.ZodString;
|
|
612
|
+
version: z.ZodString;
|
|
613
|
+
designSystemId: z.ZodString;
|
|
614
|
+
designSystemVersionId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
615
|
+
status: z.ZodEnum<["Success", "InProgress", "Error"]>;
|
|
616
|
+
errorMessage: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
617
|
+
}, "strip", z.ZodTypeAny, {
|
|
618
|
+
id: string;
|
|
619
|
+
status: "Success" | "Error" | "InProgress";
|
|
620
|
+
designSystemId: string;
|
|
621
|
+
version: string;
|
|
622
|
+
designSystemVersionId?: string | undefined;
|
|
623
|
+
errorMessage?: string | undefined;
|
|
624
|
+
}, {
|
|
625
|
+
id: string;
|
|
626
|
+
status: "Success" | "Error" | "InProgress";
|
|
627
|
+
designSystemId: string;
|
|
628
|
+
version: string;
|
|
584
629
|
designSystemVersionId?: string | null | undefined;
|
|
585
630
|
errorMessage?: string | null | undefined;
|
|
586
631
|
}>;
|
|
587
632
|
}, "strip", z.ZodTypeAny, {
|
|
588
633
|
job: {
|
|
589
|
-
|
|
590
|
-
|
|
634
|
+
id: string;
|
|
635
|
+
status: "Success" | "Error" | "InProgress";
|
|
591
636
|
designSystemId: string;
|
|
637
|
+
version: string;
|
|
592
638
|
designSystemVersionId?: string | undefined;
|
|
593
639
|
errorMessage?: string | undefined;
|
|
594
640
|
};
|
|
595
641
|
}, {
|
|
596
642
|
job: {
|
|
597
|
-
|
|
598
|
-
|
|
643
|
+
id: string;
|
|
644
|
+
status: "Success" | "Error" | "InProgress";
|
|
599
645
|
designSystemId: string;
|
|
646
|
+
version: string;
|
|
600
647
|
designSystemVersionId?: string | null | undefined;
|
|
601
648
|
errorMessage?: string | null | undefined;
|
|
602
649
|
};
|
|
@@ -8257,7 +8304,7 @@ declare const DocumentationPageV1DTO: z.ZodObject<{
|
|
|
8257
8304
|
caption?: string | null | undefined;
|
|
8258
8305
|
headingType?: number | null | undefined;
|
|
8259
8306
|
codeLanguage?: "Markdown" | "Plain" | "Angular" | "Bash" | "C" | "Cpp" | "Csharp" | "CSS" | "Dart" | "Handlebars" | "HTML" | "Java" | "Javascript" | "JSON" | "ReactJSX" | "ReactTSX" | "Kotlin" | "Lua" | "ObjectiveC" | "PHP" | "Python" | "Ruby" | "Rust" | "Sass" | "SCSS" | "Svetle" | "Swift" | "Twig" | "Typescript" | "Vue" | "XML" | "YAML" | null | undefined;
|
|
8260
|
-
calloutType?: "
|
|
8307
|
+
calloutType?: "Info" | "Primary" | "Success" | "Warning" | "Error" | null | undefined;
|
|
8261
8308
|
urlInput?: string | null | undefined;
|
|
8262
8309
|
url?: string | null | undefined;
|
|
8263
8310
|
urlPreview?: {
|
|
@@ -8439,7 +8486,7 @@ declare const DocumentationPageV1DTO: z.ZodObject<{
|
|
|
8439
8486
|
caption?: string | null | undefined;
|
|
8440
8487
|
headingType?: number | null | undefined;
|
|
8441
8488
|
codeLanguage?: "Markdown" | "Plain" | "Angular" | "Bash" | "C" | "Cpp" | "Csharp" | "CSS" | "Dart" | "Handlebars" | "HTML" | "Java" | "Javascript" | "JSON" | "ReactJSX" | "ReactTSX" | "Kotlin" | "Lua" | "ObjectiveC" | "PHP" | "Python" | "Ruby" | "Rust" | "Sass" | "SCSS" | "Svetle" | "Swift" | "Twig" | "Typescript" | "Vue" | "XML" | "YAML" | null | undefined;
|
|
8442
|
-
calloutType?: "
|
|
8489
|
+
calloutType?: "Info" | "Primary" | "Success" | "Warning" | "Error" | null | undefined;
|
|
8443
8490
|
urlInput?: string | null | undefined;
|
|
8444
8491
|
url?: string | null | undefined;
|
|
8445
8492
|
urlPreview?: {
|
|
@@ -8739,7 +8786,7 @@ declare const DocumentationPageV1DTO: z.ZodObject<{
|
|
|
8739
8786
|
caption?: string | null | undefined;
|
|
8740
8787
|
headingType?: number | null | undefined;
|
|
8741
8788
|
codeLanguage?: "Markdown" | "Plain" | "Angular" | "Bash" | "C" | "Cpp" | "Csharp" | "CSS" | "Dart" | "Handlebars" | "HTML" | "Java" | "Javascript" | "JSON" | "ReactJSX" | "ReactTSX" | "Kotlin" | "Lua" | "ObjectiveC" | "PHP" | "Python" | "Ruby" | "Rust" | "Sass" | "SCSS" | "Svetle" | "Swift" | "Twig" | "Typescript" | "Vue" | "XML" | "YAML" | null | undefined;
|
|
8742
|
-
calloutType?: "
|
|
8789
|
+
calloutType?: "Info" | "Primary" | "Success" | "Warning" | "Error" | null | undefined;
|
|
8743
8790
|
urlInput?: string | null | undefined;
|
|
8744
8791
|
url?: string | null | undefined;
|
|
8745
8792
|
urlPreview?: {
|
|
@@ -8921,7 +8968,7 @@ declare const DocumentationPageV1DTO: z.ZodObject<{
|
|
|
8921
8968
|
caption?: string | null | undefined;
|
|
8922
8969
|
headingType?: number | null | undefined;
|
|
8923
8970
|
codeLanguage?: "Markdown" | "Plain" | "Angular" | "Bash" | "C" | "Cpp" | "Csharp" | "CSS" | "Dart" | "Handlebars" | "HTML" | "Java" | "Javascript" | "JSON" | "ReactJSX" | "ReactTSX" | "Kotlin" | "Lua" | "ObjectiveC" | "PHP" | "Python" | "Ruby" | "Rust" | "Sass" | "SCSS" | "Svetle" | "Swift" | "Twig" | "Typescript" | "Vue" | "XML" | "YAML" | null | undefined;
|
|
8924
|
-
calloutType?: "
|
|
8971
|
+
calloutType?: "Info" | "Primary" | "Success" | "Warning" | "Error" | null | undefined;
|
|
8925
8972
|
urlInput?: string | null | undefined;
|
|
8926
8973
|
url?: string | null | undefined;
|
|
8927
8974
|
urlPreview?: {
|
|
@@ -14977,7 +15024,7 @@ type DTOElementsGetTypeFilter = z.infer<typeof DTOElementsGetTypeFilter>;
|
|
|
14977
15024
|
declare const DTOIntegration: z.ZodObject<{
|
|
14978
15025
|
id: z.ZodString;
|
|
14979
15026
|
workspaceId: z.ZodString;
|
|
14980
|
-
type: z.ZodEnum<["Figma", "Github", "Gitlab", "Bitbucket", "Azure"]>;
|
|
15027
|
+
type: z.ZodEnum<["Figma", "Github", "Gitlab", "Bitbucket", "Azure", "TokenStudio", "FigmaVariablesPlugin"]>;
|
|
14981
15028
|
createdAt: z.ZodDate;
|
|
14982
15029
|
integrationCredentials: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
14983
15030
|
id: z.ZodString;
|
|
@@ -14987,20 +15034,41 @@ declare const DTOIntegration: z.ZodObject<{
|
|
|
14987
15034
|
userId: z.ZodString;
|
|
14988
15035
|
createdAt: z.ZodDate;
|
|
14989
15036
|
refreshToken: z.ZodOptional<z.ZodString>;
|
|
15037
|
+
tokenName: z.ZodOptional<z.ZodString>;
|
|
15038
|
+
expiresAt: z.ZodOptional<z.ZodDate>;
|
|
14990
15039
|
profile: z.ZodOptional<z.ZodObject<{
|
|
14991
15040
|
id: z.ZodString;
|
|
14992
|
-
|
|
15041
|
+
email: z.ZodOptional<z.ZodString>;
|
|
15042
|
+
handle: z.ZodOptional<z.ZodString>;
|
|
14993
15043
|
avatarUrl: z.ZodOptional<z.ZodString>;
|
|
14994
15044
|
}, "strip", z.ZodTypeAny, {
|
|
14995
15045
|
id: string;
|
|
14996
|
-
|
|
15046
|
+
email?: string | undefined;
|
|
15047
|
+
handle?: string | undefined;
|
|
14997
15048
|
avatarUrl?: string | undefined;
|
|
14998
15049
|
}, {
|
|
14999
15050
|
id: string;
|
|
15000
|
-
|
|
15051
|
+
email?: string | undefined;
|
|
15052
|
+
handle?: string | undefined;
|
|
15001
15053
|
avatarUrl?: string | undefined;
|
|
15002
15054
|
}>>;
|
|
15003
15055
|
customUrl: z.ZodOptional<z.ZodString>;
|
|
15056
|
+
user: z.ZodOptional<z.ZodObject<{
|
|
15057
|
+
id: z.ZodString;
|
|
15058
|
+
name: z.ZodString;
|
|
15059
|
+
email: z.ZodString;
|
|
15060
|
+
avatar: z.ZodOptional<z.ZodString>;
|
|
15061
|
+
}, "strip", z.ZodTypeAny, {
|
|
15062
|
+
id: string;
|
|
15063
|
+
name: string;
|
|
15064
|
+
email: string;
|
|
15065
|
+
avatar?: string | undefined;
|
|
15066
|
+
}, {
|
|
15067
|
+
id: string;
|
|
15068
|
+
name: string;
|
|
15069
|
+
email: string;
|
|
15070
|
+
avatar?: string | undefined;
|
|
15071
|
+
}>>;
|
|
15004
15072
|
}, "strip", z.ZodTypeAny, {
|
|
15005
15073
|
id: string;
|
|
15006
15074
|
createdAt: Date;
|
|
@@ -15009,12 +15077,21 @@ declare const DTOIntegration: z.ZodObject<{
|
|
|
15009
15077
|
userId: string;
|
|
15010
15078
|
integrationId: string;
|
|
15011
15079
|
refreshToken?: string | undefined;
|
|
15080
|
+
tokenName?: string | undefined;
|
|
15081
|
+
expiresAt?: Date | undefined;
|
|
15012
15082
|
profile?: {
|
|
15013
15083
|
id: string;
|
|
15014
|
-
|
|
15084
|
+
email?: string | undefined;
|
|
15085
|
+
handle?: string | undefined;
|
|
15015
15086
|
avatarUrl?: string | undefined;
|
|
15016
15087
|
} | undefined;
|
|
15017
15088
|
customUrl?: string | undefined;
|
|
15089
|
+
user?: {
|
|
15090
|
+
id: string;
|
|
15091
|
+
name: string;
|
|
15092
|
+
email: string;
|
|
15093
|
+
avatar?: string | undefined;
|
|
15094
|
+
} | undefined;
|
|
15018
15095
|
}, {
|
|
15019
15096
|
id: string;
|
|
15020
15097
|
createdAt: Date;
|
|
@@ -15023,16 +15100,44 @@ declare const DTOIntegration: z.ZodObject<{
|
|
|
15023
15100
|
userId: string;
|
|
15024
15101
|
integrationId: string;
|
|
15025
15102
|
refreshToken?: string | undefined;
|
|
15103
|
+
tokenName?: string | undefined;
|
|
15104
|
+
expiresAt?: Date | undefined;
|
|
15026
15105
|
profile?: {
|
|
15027
15106
|
id: string;
|
|
15028
|
-
|
|
15107
|
+
email?: string | undefined;
|
|
15108
|
+
handle?: string | undefined;
|
|
15029
15109
|
avatarUrl?: string | undefined;
|
|
15030
15110
|
} | undefined;
|
|
15031
15111
|
customUrl?: string | undefined;
|
|
15112
|
+
user?: {
|
|
15113
|
+
id: string;
|
|
15114
|
+
name: string;
|
|
15115
|
+
email: string;
|
|
15116
|
+
avatar?: string | undefined;
|
|
15117
|
+
} | undefined;
|
|
15118
|
+
}>, "many">>;
|
|
15119
|
+
integrationDesignSystems: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
15120
|
+
designSystemId: z.ZodString;
|
|
15121
|
+
brandId: z.ZodString;
|
|
15122
|
+
title: z.ZodOptional<z.ZodString>;
|
|
15123
|
+
userId: z.ZodOptional<z.ZodString>;
|
|
15124
|
+
date: z.ZodOptional<z.ZodDate>;
|
|
15125
|
+
}, "strip", z.ZodTypeAny, {
|
|
15126
|
+
designSystemId: string;
|
|
15127
|
+
brandId: string;
|
|
15128
|
+
title?: string | undefined;
|
|
15129
|
+
userId?: string | undefined;
|
|
15130
|
+
date?: Date | undefined;
|
|
15131
|
+
}, {
|
|
15132
|
+
designSystemId: string;
|
|
15133
|
+
brandId: string;
|
|
15134
|
+
title?: string | undefined;
|
|
15135
|
+
userId?: string | undefined;
|
|
15136
|
+
date?: Date | undefined;
|
|
15032
15137
|
}>, "many">>;
|
|
15033
15138
|
}, "strip", z.ZodTypeAny, {
|
|
15034
15139
|
id: string;
|
|
15035
|
-
type: "Figma" | "Github" | "Gitlab" | "Bitbucket" | "Azure";
|
|
15140
|
+
type: "Figma" | "Github" | "Gitlab" | "Bitbucket" | "Azure" | "TokenStudio" | "FigmaVariablesPlugin";
|
|
15036
15141
|
workspaceId: string;
|
|
15037
15142
|
createdAt: Date;
|
|
15038
15143
|
integrationCredentials?: {
|
|
@@ -15043,16 +15148,32 @@ declare const DTOIntegration: z.ZodObject<{
|
|
|
15043
15148
|
userId: string;
|
|
15044
15149
|
integrationId: string;
|
|
15045
15150
|
refreshToken?: string | undefined;
|
|
15151
|
+
tokenName?: string | undefined;
|
|
15152
|
+
expiresAt?: Date | undefined;
|
|
15046
15153
|
profile?: {
|
|
15047
15154
|
id: string;
|
|
15048
|
-
|
|
15155
|
+
email?: string | undefined;
|
|
15156
|
+
handle?: string | undefined;
|
|
15049
15157
|
avatarUrl?: string | undefined;
|
|
15050
15158
|
} | undefined;
|
|
15051
15159
|
customUrl?: string | undefined;
|
|
15160
|
+
user?: {
|
|
15161
|
+
id: string;
|
|
15162
|
+
name: string;
|
|
15163
|
+
email: string;
|
|
15164
|
+
avatar?: string | undefined;
|
|
15165
|
+
} | undefined;
|
|
15166
|
+
}[] | undefined;
|
|
15167
|
+
integrationDesignSystems?: {
|
|
15168
|
+
designSystemId: string;
|
|
15169
|
+
brandId: string;
|
|
15170
|
+
title?: string | undefined;
|
|
15171
|
+
userId?: string | undefined;
|
|
15172
|
+
date?: Date | undefined;
|
|
15052
15173
|
}[] | undefined;
|
|
15053
15174
|
}, {
|
|
15054
15175
|
id: string;
|
|
15055
|
-
type: "Figma" | "Github" | "Gitlab" | "Bitbucket" | "Azure";
|
|
15176
|
+
type: "Figma" | "Github" | "Gitlab" | "Bitbucket" | "Azure" | "TokenStudio" | "FigmaVariablesPlugin";
|
|
15056
15177
|
workspaceId: string;
|
|
15057
15178
|
createdAt: Date;
|
|
15058
15179
|
integrationCredentials?: {
|
|
@@ -15063,12 +15184,28 @@ declare const DTOIntegration: z.ZodObject<{
|
|
|
15063
15184
|
userId: string;
|
|
15064
15185
|
integrationId: string;
|
|
15065
15186
|
refreshToken?: string | undefined;
|
|
15187
|
+
tokenName?: string | undefined;
|
|
15188
|
+
expiresAt?: Date | undefined;
|
|
15066
15189
|
profile?: {
|
|
15067
15190
|
id: string;
|
|
15068
|
-
|
|
15191
|
+
email?: string | undefined;
|
|
15192
|
+
handle?: string | undefined;
|
|
15069
15193
|
avatarUrl?: string | undefined;
|
|
15070
15194
|
} | undefined;
|
|
15071
15195
|
customUrl?: string | undefined;
|
|
15196
|
+
user?: {
|
|
15197
|
+
id: string;
|
|
15198
|
+
name: string;
|
|
15199
|
+
email: string;
|
|
15200
|
+
avatar?: string | undefined;
|
|
15201
|
+
} | undefined;
|
|
15202
|
+
}[] | undefined;
|
|
15203
|
+
integrationDesignSystems?: {
|
|
15204
|
+
designSystemId: string;
|
|
15205
|
+
brandId: string;
|
|
15206
|
+
title?: string | undefined;
|
|
15207
|
+
userId?: string | undefined;
|
|
15208
|
+
date?: Date | undefined;
|
|
15072
15209
|
}[] | undefined;
|
|
15073
15210
|
}>;
|
|
15074
15211
|
type DTOIntegration = z.infer<typeof DTOIntegration>;
|
|
@@ -15084,7 +15221,7 @@ declare const DTOIntegrationPostResponse: z.ZodObject<{
|
|
|
15084
15221
|
integration: z.ZodObject<{
|
|
15085
15222
|
id: z.ZodString;
|
|
15086
15223
|
workspaceId: z.ZodString;
|
|
15087
|
-
type: z.ZodEnum<["Figma", "Github", "Gitlab", "Bitbucket", "Azure"]>;
|
|
15224
|
+
type: z.ZodEnum<["Figma", "Github", "Gitlab", "Bitbucket", "Azure", "TokenStudio", "FigmaVariablesPlugin"]>;
|
|
15088
15225
|
createdAt: z.ZodDate;
|
|
15089
15226
|
integrationCredentials: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
15090
15227
|
id: z.ZodString;
|
|
@@ -15094,20 +15231,41 @@ declare const DTOIntegrationPostResponse: z.ZodObject<{
|
|
|
15094
15231
|
userId: z.ZodString;
|
|
15095
15232
|
createdAt: z.ZodDate;
|
|
15096
15233
|
refreshToken: z.ZodOptional<z.ZodString>;
|
|
15234
|
+
tokenName: z.ZodOptional<z.ZodString>;
|
|
15235
|
+
expiresAt: z.ZodOptional<z.ZodDate>;
|
|
15097
15236
|
profile: z.ZodOptional<z.ZodObject<{
|
|
15098
15237
|
id: z.ZodString;
|
|
15099
|
-
|
|
15238
|
+
email: z.ZodOptional<z.ZodString>;
|
|
15239
|
+
handle: z.ZodOptional<z.ZodString>;
|
|
15100
15240
|
avatarUrl: z.ZodOptional<z.ZodString>;
|
|
15101
15241
|
}, "strip", z.ZodTypeAny, {
|
|
15102
15242
|
id: string;
|
|
15103
|
-
|
|
15243
|
+
email?: string | undefined;
|
|
15244
|
+
handle?: string | undefined;
|
|
15104
15245
|
avatarUrl?: string | undefined;
|
|
15105
15246
|
}, {
|
|
15106
15247
|
id: string;
|
|
15107
|
-
|
|
15248
|
+
email?: string | undefined;
|
|
15249
|
+
handle?: string | undefined;
|
|
15108
15250
|
avatarUrl?: string | undefined;
|
|
15109
15251
|
}>>;
|
|
15110
15252
|
customUrl: z.ZodOptional<z.ZodString>;
|
|
15253
|
+
user: z.ZodOptional<z.ZodObject<{
|
|
15254
|
+
id: z.ZodString;
|
|
15255
|
+
name: z.ZodString;
|
|
15256
|
+
email: z.ZodString;
|
|
15257
|
+
avatar: z.ZodOptional<z.ZodString>;
|
|
15258
|
+
}, "strip", z.ZodTypeAny, {
|
|
15259
|
+
id: string;
|
|
15260
|
+
name: string;
|
|
15261
|
+
email: string;
|
|
15262
|
+
avatar?: string | undefined;
|
|
15263
|
+
}, {
|
|
15264
|
+
id: string;
|
|
15265
|
+
name: string;
|
|
15266
|
+
email: string;
|
|
15267
|
+
avatar?: string | undefined;
|
|
15268
|
+
}>>;
|
|
15111
15269
|
}, "strip", z.ZodTypeAny, {
|
|
15112
15270
|
id: string;
|
|
15113
15271
|
createdAt: Date;
|
|
@@ -15116,12 +15274,21 @@ declare const DTOIntegrationPostResponse: z.ZodObject<{
|
|
|
15116
15274
|
userId: string;
|
|
15117
15275
|
integrationId: string;
|
|
15118
15276
|
refreshToken?: string | undefined;
|
|
15277
|
+
tokenName?: string | undefined;
|
|
15278
|
+
expiresAt?: Date | undefined;
|
|
15119
15279
|
profile?: {
|
|
15120
15280
|
id: string;
|
|
15121
|
-
|
|
15281
|
+
email?: string | undefined;
|
|
15282
|
+
handle?: string | undefined;
|
|
15122
15283
|
avatarUrl?: string | undefined;
|
|
15123
15284
|
} | undefined;
|
|
15124
15285
|
customUrl?: string | undefined;
|
|
15286
|
+
user?: {
|
|
15287
|
+
id: string;
|
|
15288
|
+
name: string;
|
|
15289
|
+
email: string;
|
|
15290
|
+
avatar?: string | undefined;
|
|
15291
|
+
} | undefined;
|
|
15125
15292
|
}, {
|
|
15126
15293
|
id: string;
|
|
15127
15294
|
createdAt: Date;
|
|
@@ -15130,16 +15297,44 @@ declare const DTOIntegrationPostResponse: z.ZodObject<{
|
|
|
15130
15297
|
userId: string;
|
|
15131
15298
|
integrationId: string;
|
|
15132
15299
|
refreshToken?: string | undefined;
|
|
15300
|
+
tokenName?: string | undefined;
|
|
15301
|
+
expiresAt?: Date | undefined;
|
|
15133
15302
|
profile?: {
|
|
15134
15303
|
id: string;
|
|
15135
|
-
|
|
15304
|
+
email?: string | undefined;
|
|
15305
|
+
handle?: string | undefined;
|
|
15136
15306
|
avatarUrl?: string | undefined;
|
|
15137
15307
|
} | undefined;
|
|
15138
15308
|
customUrl?: string | undefined;
|
|
15309
|
+
user?: {
|
|
15310
|
+
id: string;
|
|
15311
|
+
name: string;
|
|
15312
|
+
email: string;
|
|
15313
|
+
avatar?: string | undefined;
|
|
15314
|
+
} | undefined;
|
|
15315
|
+
}>, "many">>;
|
|
15316
|
+
integrationDesignSystems: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
15317
|
+
designSystemId: z.ZodString;
|
|
15318
|
+
brandId: z.ZodString;
|
|
15319
|
+
title: z.ZodOptional<z.ZodString>;
|
|
15320
|
+
userId: z.ZodOptional<z.ZodString>;
|
|
15321
|
+
date: z.ZodOptional<z.ZodDate>;
|
|
15322
|
+
}, "strip", z.ZodTypeAny, {
|
|
15323
|
+
designSystemId: string;
|
|
15324
|
+
brandId: string;
|
|
15325
|
+
title?: string | undefined;
|
|
15326
|
+
userId?: string | undefined;
|
|
15327
|
+
date?: Date | undefined;
|
|
15328
|
+
}, {
|
|
15329
|
+
designSystemId: string;
|
|
15330
|
+
brandId: string;
|
|
15331
|
+
title?: string | undefined;
|
|
15332
|
+
userId?: string | undefined;
|
|
15333
|
+
date?: Date | undefined;
|
|
15139
15334
|
}>, "many">>;
|
|
15140
15335
|
}, "strip", z.ZodTypeAny, {
|
|
15141
15336
|
id: string;
|
|
15142
|
-
type: "Figma" | "Github" | "Gitlab" | "Bitbucket" | "Azure";
|
|
15337
|
+
type: "Figma" | "Github" | "Gitlab" | "Bitbucket" | "Azure" | "TokenStudio" | "FigmaVariablesPlugin";
|
|
15143
15338
|
workspaceId: string;
|
|
15144
15339
|
createdAt: Date;
|
|
15145
15340
|
integrationCredentials?: {
|
|
@@ -15150,16 +15345,32 @@ declare const DTOIntegrationPostResponse: z.ZodObject<{
|
|
|
15150
15345
|
userId: string;
|
|
15151
15346
|
integrationId: string;
|
|
15152
15347
|
refreshToken?: string | undefined;
|
|
15348
|
+
tokenName?: string | undefined;
|
|
15349
|
+
expiresAt?: Date | undefined;
|
|
15153
15350
|
profile?: {
|
|
15154
15351
|
id: string;
|
|
15155
|
-
|
|
15352
|
+
email?: string | undefined;
|
|
15353
|
+
handle?: string | undefined;
|
|
15156
15354
|
avatarUrl?: string | undefined;
|
|
15157
15355
|
} | undefined;
|
|
15158
15356
|
customUrl?: string | undefined;
|
|
15357
|
+
user?: {
|
|
15358
|
+
id: string;
|
|
15359
|
+
name: string;
|
|
15360
|
+
email: string;
|
|
15361
|
+
avatar?: string | undefined;
|
|
15362
|
+
} | undefined;
|
|
15363
|
+
}[] | undefined;
|
|
15364
|
+
integrationDesignSystems?: {
|
|
15365
|
+
designSystemId: string;
|
|
15366
|
+
brandId: string;
|
|
15367
|
+
title?: string | undefined;
|
|
15368
|
+
userId?: string | undefined;
|
|
15369
|
+
date?: Date | undefined;
|
|
15159
15370
|
}[] | undefined;
|
|
15160
15371
|
}, {
|
|
15161
15372
|
id: string;
|
|
15162
|
-
type: "Figma" | "Github" | "Gitlab" | "Bitbucket" | "Azure";
|
|
15373
|
+
type: "Figma" | "Github" | "Gitlab" | "Bitbucket" | "Azure" | "TokenStudio" | "FigmaVariablesPlugin";
|
|
15163
15374
|
workspaceId: string;
|
|
15164
15375
|
createdAt: Date;
|
|
15165
15376
|
integrationCredentials?: {
|
|
@@ -15170,18 +15381,34 @@ declare const DTOIntegrationPostResponse: z.ZodObject<{
|
|
|
15170
15381
|
userId: string;
|
|
15171
15382
|
integrationId: string;
|
|
15172
15383
|
refreshToken?: string | undefined;
|
|
15384
|
+
tokenName?: string | undefined;
|
|
15385
|
+
expiresAt?: Date | undefined;
|
|
15173
15386
|
profile?: {
|
|
15174
15387
|
id: string;
|
|
15175
|
-
|
|
15388
|
+
email?: string | undefined;
|
|
15389
|
+
handle?: string | undefined;
|
|
15176
15390
|
avatarUrl?: string | undefined;
|
|
15177
15391
|
} | undefined;
|
|
15178
15392
|
customUrl?: string | undefined;
|
|
15393
|
+
user?: {
|
|
15394
|
+
id: string;
|
|
15395
|
+
name: string;
|
|
15396
|
+
email: string;
|
|
15397
|
+
avatar?: string | undefined;
|
|
15398
|
+
} | undefined;
|
|
15399
|
+
}[] | undefined;
|
|
15400
|
+
integrationDesignSystems?: {
|
|
15401
|
+
designSystemId: string;
|
|
15402
|
+
brandId: string;
|
|
15403
|
+
title?: string | undefined;
|
|
15404
|
+
userId?: string | undefined;
|
|
15405
|
+
date?: Date | undefined;
|
|
15179
15406
|
}[] | undefined;
|
|
15180
15407
|
}>;
|
|
15181
15408
|
}, "strip", z.ZodTypeAny, {
|
|
15182
15409
|
integration: {
|
|
15183
15410
|
id: string;
|
|
15184
|
-
type: "Figma" | "Github" | "Gitlab" | "Bitbucket" | "Azure";
|
|
15411
|
+
type: "Figma" | "Github" | "Gitlab" | "Bitbucket" | "Azure" | "TokenStudio" | "FigmaVariablesPlugin";
|
|
15185
15412
|
workspaceId: string;
|
|
15186
15413
|
createdAt: Date;
|
|
15187
15414
|
integrationCredentials?: {
|
|
@@ -15192,18 +15419,34 @@ declare const DTOIntegrationPostResponse: z.ZodObject<{
|
|
|
15192
15419
|
userId: string;
|
|
15193
15420
|
integrationId: string;
|
|
15194
15421
|
refreshToken?: string | undefined;
|
|
15422
|
+
tokenName?: string | undefined;
|
|
15423
|
+
expiresAt?: Date | undefined;
|
|
15195
15424
|
profile?: {
|
|
15196
15425
|
id: string;
|
|
15197
|
-
|
|
15426
|
+
email?: string | undefined;
|
|
15427
|
+
handle?: string | undefined;
|
|
15198
15428
|
avatarUrl?: string | undefined;
|
|
15199
15429
|
} | undefined;
|
|
15200
15430
|
customUrl?: string | undefined;
|
|
15431
|
+
user?: {
|
|
15432
|
+
id: string;
|
|
15433
|
+
name: string;
|
|
15434
|
+
email: string;
|
|
15435
|
+
avatar?: string | undefined;
|
|
15436
|
+
} | undefined;
|
|
15437
|
+
}[] | undefined;
|
|
15438
|
+
integrationDesignSystems?: {
|
|
15439
|
+
designSystemId: string;
|
|
15440
|
+
brandId: string;
|
|
15441
|
+
title?: string | undefined;
|
|
15442
|
+
userId?: string | undefined;
|
|
15443
|
+
date?: Date | undefined;
|
|
15201
15444
|
}[] | undefined;
|
|
15202
15445
|
};
|
|
15203
15446
|
}, {
|
|
15204
15447
|
integration: {
|
|
15205
15448
|
id: string;
|
|
15206
|
-
type: "Figma" | "Github" | "Gitlab" | "Bitbucket" | "Azure";
|
|
15449
|
+
type: "Figma" | "Github" | "Gitlab" | "Bitbucket" | "Azure" | "TokenStudio" | "FigmaVariablesPlugin";
|
|
15207
15450
|
workspaceId: string;
|
|
15208
15451
|
createdAt: Date;
|
|
15209
15452
|
integrationCredentials?: {
|
|
@@ -15214,12 +15457,28 @@ declare const DTOIntegrationPostResponse: z.ZodObject<{
|
|
|
15214
15457
|
userId: string;
|
|
15215
15458
|
integrationId: string;
|
|
15216
15459
|
refreshToken?: string | undefined;
|
|
15460
|
+
tokenName?: string | undefined;
|
|
15461
|
+
expiresAt?: Date | undefined;
|
|
15217
15462
|
profile?: {
|
|
15218
15463
|
id: string;
|
|
15219
|
-
|
|
15464
|
+
email?: string | undefined;
|
|
15465
|
+
handle?: string | undefined;
|
|
15220
15466
|
avatarUrl?: string | undefined;
|
|
15221
15467
|
} | undefined;
|
|
15222
15468
|
customUrl?: string | undefined;
|
|
15469
|
+
user?: {
|
|
15470
|
+
id: string;
|
|
15471
|
+
name: string;
|
|
15472
|
+
email: string;
|
|
15473
|
+
avatar?: string | undefined;
|
|
15474
|
+
} | undefined;
|
|
15475
|
+
}[] | undefined;
|
|
15476
|
+
integrationDesignSystems?: {
|
|
15477
|
+
designSystemId: string;
|
|
15478
|
+
brandId: string;
|
|
15479
|
+
title?: string | undefined;
|
|
15480
|
+
userId?: string | undefined;
|
|
15481
|
+
date?: Date | undefined;
|
|
15223
15482
|
}[] | undefined;
|
|
15224
15483
|
};
|
|
15225
15484
|
}>;
|
|
@@ -15228,7 +15487,7 @@ declare const DTOIntegrationsGetListResponse: z.ZodObject<{
|
|
|
15228
15487
|
integrations: z.ZodArray<z.ZodObject<{
|
|
15229
15488
|
id: z.ZodString;
|
|
15230
15489
|
workspaceId: z.ZodString;
|
|
15231
|
-
type: z.ZodEnum<["Figma", "Github", "Gitlab", "Bitbucket", "Azure"]>;
|
|
15490
|
+
type: z.ZodEnum<["Figma", "Github", "Gitlab", "Bitbucket", "Azure", "TokenStudio", "FigmaVariablesPlugin"]>;
|
|
15232
15491
|
createdAt: z.ZodDate;
|
|
15233
15492
|
integrationCredentials: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
15234
15493
|
id: z.ZodString;
|
|
@@ -15238,20 +15497,41 @@ declare const DTOIntegrationsGetListResponse: z.ZodObject<{
|
|
|
15238
15497
|
userId: z.ZodString;
|
|
15239
15498
|
createdAt: z.ZodDate;
|
|
15240
15499
|
refreshToken: z.ZodOptional<z.ZodString>;
|
|
15500
|
+
tokenName: z.ZodOptional<z.ZodString>;
|
|
15501
|
+
expiresAt: z.ZodOptional<z.ZodDate>;
|
|
15241
15502
|
profile: z.ZodOptional<z.ZodObject<{
|
|
15242
15503
|
id: z.ZodString;
|
|
15243
|
-
|
|
15504
|
+
email: z.ZodOptional<z.ZodString>;
|
|
15505
|
+
handle: z.ZodOptional<z.ZodString>;
|
|
15244
15506
|
avatarUrl: z.ZodOptional<z.ZodString>;
|
|
15245
15507
|
}, "strip", z.ZodTypeAny, {
|
|
15246
15508
|
id: string;
|
|
15247
|
-
|
|
15509
|
+
email?: string | undefined;
|
|
15510
|
+
handle?: string | undefined;
|
|
15248
15511
|
avatarUrl?: string | undefined;
|
|
15249
15512
|
}, {
|
|
15250
15513
|
id: string;
|
|
15251
|
-
|
|
15514
|
+
email?: string | undefined;
|
|
15515
|
+
handle?: string | undefined;
|
|
15252
15516
|
avatarUrl?: string | undefined;
|
|
15253
15517
|
}>>;
|
|
15254
15518
|
customUrl: z.ZodOptional<z.ZodString>;
|
|
15519
|
+
user: z.ZodOptional<z.ZodObject<{
|
|
15520
|
+
id: z.ZodString;
|
|
15521
|
+
name: z.ZodString;
|
|
15522
|
+
email: z.ZodString;
|
|
15523
|
+
avatar: z.ZodOptional<z.ZodString>;
|
|
15524
|
+
}, "strip", z.ZodTypeAny, {
|
|
15525
|
+
id: string;
|
|
15526
|
+
name: string;
|
|
15527
|
+
email: string;
|
|
15528
|
+
avatar?: string | undefined;
|
|
15529
|
+
}, {
|
|
15530
|
+
id: string;
|
|
15531
|
+
name: string;
|
|
15532
|
+
email: string;
|
|
15533
|
+
avatar?: string | undefined;
|
|
15534
|
+
}>>;
|
|
15255
15535
|
}, "strip", z.ZodTypeAny, {
|
|
15256
15536
|
id: string;
|
|
15257
15537
|
createdAt: Date;
|
|
@@ -15260,12 +15540,21 @@ declare const DTOIntegrationsGetListResponse: z.ZodObject<{
|
|
|
15260
15540
|
userId: string;
|
|
15261
15541
|
integrationId: string;
|
|
15262
15542
|
refreshToken?: string | undefined;
|
|
15543
|
+
tokenName?: string | undefined;
|
|
15544
|
+
expiresAt?: Date | undefined;
|
|
15263
15545
|
profile?: {
|
|
15264
15546
|
id: string;
|
|
15265
|
-
|
|
15547
|
+
email?: string | undefined;
|
|
15548
|
+
handle?: string | undefined;
|
|
15266
15549
|
avatarUrl?: string | undefined;
|
|
15267
15550
|
} | undefined;
|
|
15268
15551
|
customUrl?: string | undefined;
|
|
15552
|
+
user?: {
|
|
15553
|
+
id: string;
|
|
15554
|
+
name: string;
|
|
15555
|
+
email: string;
|
|
15556
|
+
avatar?: string | undefined;
|
|
15557
|
+
} | undefined;
|
|
15269
15558
|
}, {
|
|
15270
15559
|
id: string;
|
|
15271
15560
|
createdAt: Date;
|
|
@@ -15274,16 +15563,44 @@ declare const DTOIntegrationsGetListResponse: z.ZodObject<{
|
|
|
15274
15563
|
userId: string;
|
|
15275
15564
|
integrationId: string;
|
|
15276
15565
|
refreshToken?: string | undefined;
|
|
15566
|
+
tokenName?: string | undefined;
|
|
15567
|
+
expiresAt?: Date | undefined;
|
|
15277
15568
|
profile?: {
|
|
15278
15569
|
id: string;
|
|
15279
|
-
|
|
15570
|
+
email?: string | undefined;
|
|
15571
|
+
handle?: string | undefined;
|
|
15280
15572
|
avatarUrl?: string | undefined;
|
|
15281
15573
|
} | undefined;
|
|
15282
15574
|
customUrl?: string | undefined;
|
|
15575
|
+
user?: {
|
|
15576
|
+
id: string;
|
|
15577
|
+
name: string;
|
|
15578
|
+
email: string;
|
|
15579
|
+
avatar?: string | undefined;
|
|
15580
|
+
} | undefined;
|
|
15581
|
+
}>, "many">>;
|
|
15582
|
+
integrationDesignSystems: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
15583
|
+
designSystemId: z.ZodString;
|
|
15584
|
+
brandId: z.ZodString;
|
|
15585
|
+
title: z.ZodOptional<z.ZodString>;
|
|
15586
|
+
userId: z.ZodOptional<z.ZodString>;
|
|
15587
|
+
date: z.ZodOptional<z.ZodDate>;
|
|
15588
|
+
}, "strip", z.ZodTypeAny, {
|
|
15589
|
+
designSystemId: string;
|
|
15590
|
+
brandId: string;
|
|
15591
|
+
title?: string | undefined;
|
|
15592
|
+
userId?: string | undefined;
|
|
15593
|
+
date?: Date | undefined;
|
|
15594
|
+
}, {
|
|
15595
|
+
designSystemId: string;
|
|
15596
|
+
brandId: string;
|
|
15597
|
+
title?: string | undefined;
|
|
15598
|
+
userId?: string | undefined;
|
|
15599
|
+
date?: Date | undefined;
|
|
15283
15600
|
}>, "many">>;
|
|
15284
15601
|
}, "strip", z.ZodTypeAny, {
|
|
15285
15602
|
id: string;
|
|
15286
|
-
type: "Figma" | "Github" | "Gitlab" | "Bitbucket" | "Azure";
|
|
15603
|
+
type: "Figma" | "Github" | "Gitlab" | "Bitbucket" | "Azure" | "TokenStudio" | "FigmaVariablesPlugin";
|
|
15287
15604
|
workspaceId: string;
|
|
15288
15605
|
createdAt: Date;
|
|
15289
15606
|
integrationCredentials?: {
|
|
@@ -15294,16 +15611,32 @@ declare const DTOIntegrationsGetListResponse: z.ZodObject<{
|
|
|
15294
15611
|
userId: string;
|
|
15295
15612
|
integrationId: string;
|
|
15296
15613
|
refreshToken?: string | undefined;
|
|
15614
|
+
tokenName?: string | undefined;
|
|
15615
|
+
expiresAt?: Date | undefined;
|
|
15297
15616
|
profile?: {
|
|
15298
15617
|
id: string;
|
|
15299
|
-
|
|
15618
|
+
email?: string | undefined;
|
|
15619
|
+
handle?: string | undefined;
|
|
15300
15620
|
avatarUrl?: string | undefined;
|
|
15301
15621
|
} | undefined;
|
|
15302
15622
|
customUrl?: string | undefined;
|
|
15623
|
+
user?: {
|
|
15624
|
+
id: string;
|
|
15625
|
+
name: string;
|
|
15626
|
+
email: string;
|
|
15627
|
+
avatar?: string | undefined;
|
|
15628
|
+
} | undefined;
|
|
15629
|
+
}[] | undefined;
|
|
15630
|
+
integrationDesignSystems?: {
|
|
15631
|
+
designSystemId: string;
|
|
15632
|
+
brandId: string;
|
|
15633
|
+
title?: string | undefined;
|
|
15634
|
+
userId?: string | undefined;
|
|
15635
|
+
date?: Date | undefined;
|
|
15303
15636
|
}[] | undefined;
|
|
15304
15637
|
}, {
|
|
15305
15638
|
id: string;
|
|
15306
|
-
type: "Figma" | "Github" | "Gitlab" | "Bitbucket" | "Azure";
|
|
15639
|
+
type: "Figma" | "Github" | "Gitlab" | "Bitbucket" | "Azure" | "TokenStudio" | "FigmaVariablesPlugin";
|
|
15307
15640
|
workspaceId: string;
|
|
15308
15641
|
createdAt: Date;
|
|
15309
15642
|
integrationCredentials?: {
|
|
@@ -15314,18 +15647,34 @@ declare const DTOIntegrationsGetListResponse: z.ZodObject<{
|
|
|
15314
15647
|
userId: string;
|
|
15315
15648
|
integrationId: string;
|
|
15316
15649
|
refreshToken?: string | undefined;
|
|
15650
|
+
tokenName?: string | undefined;
|
|
15651
|
+
expiresAt?: Date | undefined;
|
|
15317
15652
|
profile?: {
|
|
15318
15653
|
id: string;
|
|
15319
|
-
|
|
15654
|
+
email?: string | undefined;
|
|
15655
|
+
handle?: string | undefined;
|
|
15320
15656
|
avatarUrl?: string | undefined;
|
|
15321
15657
|
} | undefined;
|
|
15322
15658
|
customUrl?: string | undefined;
|
|
15659
|
+
user?: {
|
|
15660
|
+
id: string;
|
|
15661
|
+
name: string;
|
|
15662
|
+
email: string;
|
|
15663
|
+
avatar?: string | undefined;
|
|
15664
|
+
} | undefined;
|
|
15665
|
+
}[] | undefined;
|
|
15666
|
+
integrationDesignSystems?: {
|
|
15667
|
+
designSystemId: string;
|
|
15668
|
+
brandId: string;
|
|
15669
|
+
title?: string | undefined;
|
|
15670
|
+
userId?: string | undefined;
|
|
15671
|
+
date?: Date | undefined;
|
|
15323
15672
|
}[] | undefined;
|
|
15324
15673
|
}>, "many">;
|
|
15325
15674
|
}, "strip", z.ZodTypeAny, {
|
|
15326
15675
|
integrations: {
|
|
15327
15676
|
id: string;
|
|
15328
|
-
type: "Figma" | "Github" | "Gitlab" | "Bitbucket" | "Azure";
|
|
15677
|
+
type: "Figma" | "Github" | "Gitlab" | "Bitbucket" | "Azure" | "TokenStudio" | "FigmaVariablesPlugin";
|
|
15329
15678
|
workspaceId: string;
|
|
15330
15679
|
createdAt: Date;
|
|
15331
15680
|
integrationCredentials?: {
|
|
@@ -15336,18 +15685,34 @@ declare const DTOIntegrationsGetListResponse: z.ZodObject<{
|
|
|
15336
15685
|
userId: string;
|
|
15337
15686
|
integrationId: string;
|
|
15338
15687
|
refreshToken?: string | undefined;
|
|
15688
|
+
tokenName?: string | undefined;
|
|
15689
|
+
expiresAt?: Date | undefined;
|
|
15339
15690
|
profile?: {
|
|
15340
15691
|
id: string;
|
|
15341
|
-
|
|
15692
|
+
email?: string | undefined;
|
|
15693
|
+
handle?: string | undefined;
|
|
15342
15694
|
avatarUrl?: string | undefined;
|
|
15343
15695
|
} | undefined;
|
|
15344
15696
|
customUrl?: string | undefined;
|
|
15697
|
+
user?: {
|
|
15698
|
+
id: string;
|
|
15699
|
+
name: string;
|
|
15700
|
+
email: string;
|
|
15701
|
+
avatar?: string | undefined;
|
|
15702
|
+
} | undefined;
|
|
15703
|
+
}[] | undefined;
|
|
15704
|
+
integrationDesignSystems?: {
|
|
15705
|
+
designSystemId: string;
|
|
15706
|
+
brandId: string;
|
|
15707
|
+
title?: string | undefined;
|
|
15708
|
+
userId?: string | undefined;
|
|
15709
|
+
date?: Date | undefined;
|
|
15345
15710
|
}[] | undefined;
|
|
15346
15711
|
}[];
|
|
15347
15712
|
}, {
|
|
15348
15713
|
integrations: {
|
|
15349
15714
|
id: string;
|
|
15350
|
-
type: "Figma" | "Github" | "Gitlab" | "Bitbucket" | "Azure";
|
|
15715
|
+
type: "Figma" | "Github" | "Gitlab" | "Bitbucket" | "Azure" | "TokenStudio" | "FigmaVariablesPlugin";
|
|
15351
15716
|
workspaceId: string;
|
|
15352
15717
|
createdAt: Date;
|
|
15353
15718
|
integrationCredentials?: {
|
|
@@ -15358,12 +15723,28 @@ declare const DTOIntegrationsGetListResponse: z.ZodObject<{
|
|
|
15358
15723
|
userId: string;
|
|
15359
15724
|
integrationId: string;
|
|
15360
15725
|
refreshToken?: string | undefined;
|
|
15726
|
+
tokenName?: string | undefined;
|
|
15727
|
+
expiresAt?: Date | undefined;
|
|
15361
15728
|
profile?: {
|
|
15362
15729
|
id: string;
|
|
15363
|
-
|
|
15730
|
+
email?: string | undefined;
|
|
15731
|
+
handle?: string | undefined;
|
|
15364
15732
|
avatarUrl?: string | undefined;
|
|
15365
15733
|
} | undefined;
|
|
15366
15734
|
customUrl?: string | undefined;
|
|
15735
|
+
user?: {
|
|
15736
|
+
id: string;
|
|
15737
|
+
name: string;
|
|
15738
|
+
email: string;
|
|
15739
|
+
avatar?: string | undefined;
|
|
15740
|
+
} | undefined;
|
|
15741
|
+
}[] | undefined;
|
|
15742
|
+
integrationDesignSystems?: {
|
|
15743
|
+
designSystemId: string;
|
|
15744
|
+
brandId: string;
|
|
15745
|
+
title?: string | undefined;
|
|
15746
|
+
userId?: string | undefined;
|
|
15747
|
+
date?: Date | undefined;
|
|
15367
15748
|
}[] | undefined;
|
|
15368
15749
|
}[];
|
|
15369
15750
|
}>;
|
|
@@ -20102,7 +20483,7 @@ declare function documentationPagesToStructureDTOV2(pages: DocumentationPageV2[]
|
|
|
20102
20483
|
declare function documentationPagesToDTOV2(pages: DocumentationPageV2[], groups: ElementGroup[], routingVersion: string): DTODocumentationPageV2[];
|
|
20103
20484
|
declare function documentationPagesFixedConfigurationToDTOV2(pages: DocumentationPageV2[], groups: ElementGroup[], routingVersion: string): DTODocumentationPageV2[];
|
|
20104
20485
|
|
|
20105
|
-
declare function integrationToDto(integration:
|
|
20486
|
+
declare function integrationToDto(integration: ExtendedIntegration): DTOIntegration;
|
|
20106
20487
|
|
|
20107
20488
|
declare const DTOCreateBrandInput: z.ZodObject<{
|
|
20108
20489
|
persistentId: z.ZodString;
|
|
@@ -20141,7 +20522,7 @@ declare const ObjectMeta: z.ZodObject<{
|
|
|
20141
20522
|
name?: string | undefined;
|
|
20142
20523
|
description?: string | undefined;
|
|
20143
20524
|
}>;
|
|
20144
|
-
declare function
|
|
20525
|
+
declare function validateDesignSystemVersion(version: string): boolean;
|
|
20145
20526
|
declare const DTOCreateVersionInput: z.ZodObject<{
|
|
20146
20527
|
meta: z.ZodObject<{
|
|
20147
20528
|
name: z.ZodOptional<z.ZodString>;
|
|
@@ -21133,35 +21514,68 @@ type DTOWorkspaceIntegrationOauthInput = z.infer<typeof DTOWorkspaceIntegrationO
|
|
|
21133
21514
|
declare const DTOWorkspaceIntegrationPATInput: z.ZodObject<{
|
|
21134
21515
|
userId: z.ZodString;
|
|
21135
21516
|
type: z.ZodEnum<["Figma", "Github", "Gitlab", "Bitbucket", "Azure"]>;
|
|
21136
|
-
token: z.ZodEffects<z.ZodObject<{
|
|
21517
|
+
token: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
21137
21518
|
access_token: z.ZodString;
|
|
21138
21519
|
refresh_token: z.ZodOptional<z.ZodString>;
|
|
21139
|
-
expires_in: z.ZodOptional<z.ZodNumber>;
|
|
21520
|
+
expires_in: z.ZodUnion<[z.ZodOptional<z.ZodNumber>, z.ZodOptional<z.ZodString>]>;
|
|
21140
21521
|
token_type: z.ZodOptional<z.ZodString>;
|
|
21522
|
+
token_name: z.ZodOptional<z.ZodString>;
|
|
21523
|
+
token_azure_organization_name: z.ZodOptional<z.ZodString>;
|
|
21524
|
+
token_bitbucket_username: z.ZodOptional<z.ZodString>;
|
|
21141
21525
|
custom_url: z.ZodEffects<z.ZodOptional<z.ZodString>, string | undefined, string | undefined>;
|
|
21142
21526
|
}, "strip", z.ZodTypeAny, {
|
|
21143
21527
|
access_token: string;
|
|
21144
21528
|
refresh_token?: string | undefined;
|
|
21145
|
-
expires_in?: number | undefined;
|
|
21529
|
+
expires_in?: string | number | undefined;
|
|
21530
|
+
token_type?: string | undefined;
|
|
21531
|
+
token_name?: string | undefined;
|
|
21532
|
+
token_azure_organization_name?: string | undefined;
|
|
21533
|
+
token_bitbucket_username?: string | undefined;
|
|
21534
|
+
custom_url?: string | undefined;
|
|
21535
|
+
}, {
|
|
21536
|
+
access_token: string;
|
|
21537
|
+
refresh_token?: string | undefined;
|
|
21538
|
+
expires_in?: string | number | undefined;
|
|
21539
|
+
token_type?: string | undefined;
|
|
21540
|
+
token_name?: string | undefined;
|
|
21541
|
+
token_azure_organization_name?: string | undefined;
|
|
21542
|
+
token_bitbucket_username?: string | undefined;
|
|
21543
|
+
custom_url?: string | undefined;
|
|
21544
|
+
}>, {
|
|
21545
|
+
access_token: string;
|
|
21546
|
+
refresh_token?: string | undefined;
|
|
21547
|
+
expires_in?: string | number | undefined;
|
|
21146
21548
|
token_type?: string | undefined;
|
|
21549
|
+
token_name?: string | undefined;
|
|
21550
|
+
token_azure_organization_name?: string | undefined;
|
|
21551
|
+
token_bitbucket_username?: string | undefined;
|
|
21147
21552
|
custom_url?: string | undefined;
|
|
21148
21553
|
}, {
|
|
21149
21554
|
access_token: string;
|
|
21150
21555
|
refresh_token?: string | undefined;
|
|
21151
|
-
expires_in?: number | undefined;
|
|
21556
|
+
expires_in?: string | number | undefined;
|
|
21152
21557
|
token_type?: string | undefined;
|
|
21558
|
+
token_name?: string | undefined;
|
|
21559
|
+
token_azure_organization_name?: string | undefined;
|
|
21560
|
+
token_bitbucket_username?: string | undefined;
|
|
21153
21561
|
custom_url?: string | undefined;
|
|
21154
21562
|
}>, {
|
|
21155
21563
|
accessToken: string;
|
|
21156
21564
|
refreshToken: string | undefined;
|
|
21157
21565
|
expiresIn: number | undefined;
|
|
21158
21566
|
tokenType: string | undefined;
|
|
21567
|
+
tokenName: string | undefined;
|
|
21568
|
+
tokenBitbucketUsername: string | undefined;
|
|
21569
|
+
tokenAzureOrganizationName: string | undefined;
|
|
21159
21570
|
customUrl: string | undefined;
|
|
21160
21571
|
}, {
|
|
21161
21572
|
access_token: string;
|
|
21162
21573
|
refresh_token?: string | undefined;
|
|
21163
|
-
expires_in?: number | undefined;
|
|
21574
|
+
expires_in?: string | number | undefined;
|
|
21164
21575
|
token_type?: string | undefined;
|
|
21576
|
+
token_name?: string | undefined;
|
|
21577
|
+
token_azure_organization_name?: string | undefined;
|
|
21578
|
+
token_bitbucket_username?: string | undefined;
|
|
21165
21579
|
custom_url?: string | undefined;
|
|
21166
21580
|
}>;
|
|
21167
21581
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -21172,6 +21586,9 @@ declare const DTOWorkspaceIntegrationPATInput: z.ZodObject<{
|
|
|
21172
21586
|
refreshToken: string | undefined;
|
|
21173
21587
|
expiresIn: number | undefined;
|
|
21174
21588
|
tokenType: string | undefined;
|
|
21589
|
+
tokenName: string | undefined;
|
|
21590
|
+
tokenBitbucketUsername: string | undefined;
|
|
21591
|
+
tokenAzureOrganizationName: string | undefined;
|
|
21175
21592
|
customUrl: string | undefined;
|
|
21176
21593
|
};
|
|
21177
21594
|
}, {
|
|
@@ -21180,8 +21597,11 @@ declare const DTOWorkspaceIntegrationPATInput: z.ZodObject<{
|
|
|
21180
21597
|
token: {
|
|
21181
21598
|
access_token: string;
|
|
21182
21599
|
refresh_token?: string | undefined;
|
|
21183
|
-
expires_in?: number | undefined;
|
|
21600
|
+
expires_in?: string | number | undefined;
|
|
21184
21601
|
token_type?: string | undefined;
|
|
21602
|
+
token_name?: string | undefined;
|
|
21603
|
+
token_azure_organization_name?: string | undefined;
|
|
21604
|
+
token_bitbucket_username?: string | undefined;
|
|
21185
21605
|
custom_url?: string | undefined;
|
|
21186
21606
|
};
|
|
21187
21607
|
}>;
|
|
@@ -23509,4 +23929,4 @@ declare const BlockDefinitionUtils: {
|
|
|
23509
23929
|
};
|
|
23510
23930
|
};
|
|
23511
23931
|
|
|
23512
|
-
export { BlockDefinitionUtils, BlockParsingUtils, DTOBrand, DTOBrandCreateResponse, DTOBrandGetResponse, DTOBrandsListResponse, DTOCreateBrandInput, DTOCreateDocumentationGroupInput, DTOCreateDocumentationPageInputV2, DTOCreateDocumentationTabInput, DTOCreateElementPropertyDefinitionInputV2, DTOCreateVersionInput, DTODeleteDocumentationGroupInput, DTODeleteDocumentationPageInputV2, DTODeleteDocumentationTabGroupInput, DTODeleteElementPropertyDefinitionInputV2, DTODesignSystem, DTODesignSystemVersion, DTODesignSystemVersionCreationResponse, DTODesignSystemVersionGetResponse, DTODesignSystemVersionJobStatusResponse, DTODesignSystemVersionsListResponse, DTODocumentationGroupCreateActionInputV2, DTODocumentationGroupCreateActionOutputV2, DTODocumentationGroupDeleteActionInputV2, DTODocumentationGroupDeleteActionOutputV2, DTODocumentationGroupDuplicateActionInputV2, DTODocumentationGroupDuplicateActionOutputV2, DTODocumentationGroupMoveActionInputV2, DTODocumentationGroupMoveActionOutputV2, DTODocumentationGroupStructureV1, DTODocumentationGroupStructureV2, DTODocumentationGroupUpdateActionInputV2, DTODocumentationGroupUpdateActionOutputV2, DTODocumentationGroupV1, DTODocumentationGroupV2, DTODocumentationHierarchyV2, DTODocumentationItemConfigurationV1, DTODocumentationItemConfigurationV2, DTODocumentationItemHeaderV2, DTODocumentationLinkPreviewRequest, DTODocumentationLinkPreviewResponse, DTODocumentationPageAnchor, DTODocumentationPageContent, DTODocumentationPageContentGetResponse, DTODocumentationPageCreateActionInputV2, DTODocumentationPageCreateActionOutputV2, DTODocumentationPageDeleteActionInputV2, DTODocumentationPageDeleteActionOutputV2, DTODocumentationPageDuplicateActionInputV2, DTODocumentationPageDuplicateActionOutputV2, DTODocumentationPageMoveActionInputV2, DTODocumentationPageMoveActionOutputV2, DTODocumentationPageRoomHeaderData, DTODocumentationPageRoomHeaderDataUpdate, DTODocumentationPageStructureV2, DTODocumentationPageUpdateActionInputV2, DTODocumentationPageUpdateActionOutputV2, DTODocumentationPageV2, DTODocumentationTabCreateActionInputV2, DTODocumentationTabCreateActionOutputV2, type DTODocumentationTabGroupCreateActionInputV2, DTODocumentationTabGroupDeleteActionInputV2, DTODocumentationTabGroupDeleteActionOutputV2, DTODuplicateDocumentationGroupInput, DTODuplicateDocumentationPageInputV2, DTOElementActionInput, DTOElementActionOutput, DTOElementPropertyDefinition, DTOElementPropertyDefinitionsGetResponse, DTOElementPropertyValue, DTOElementPropertyValuesGetResponse, DTOElementView, DTOElementViewBasePropertyColumn, DTOElementViewColumn, DTOElementViewColumnSharedAttributes, DTOElementViewPropertyDefinitionColumn, DTOElementViewThemeColumn, DTOElementViewsListResponse, DTOElementsGetOutput, type DTOElementsGetQueryParsed, type DTOElementsGetQueryRaw, DTOElementsGetQuerySchema, DTOElementsGetTypeFilter, DTOExporterProperty, DTOExporterPropertyListResponse, DTOFigmaNode, DTOFigmaNodeData, DTOFigmaNodeOrigin, DTOFigmaNodeRenderActionInput, DTOFigmaNodeRenderActionOutput, DTOFigmaNodeRenderInput, DTOGetBlockDefinitionsOutput, DTOGetDocumentationPageAnchorsResponse, DTOIntegration, DTOIntegrationOAuthGetResponse, DTOIntegrationPostResponse, DTOIntegrationsGetListResponse, DTOLiveblocksAuthRequest, DTOMoveDocumentationGroupInput, DTOMoveDocumentationPageInputV2, DTONpmRegistryConfig, DTOPropertyDefinitionCreateActionInputV2, DTOPropertyDefinitionCreateActionOutputV2, DTOPropertyDefinitionDeleteActionInputV2, DTOPropertyDefinitionDeleteActionOutputV2, DTOPropertyDefinitionUpdateActionInputV2, DTOPropertyDefinitionUpdateActionOutputV2, DTOUpdateDocumentationGroupInput, DTOUpdateDocumentationPageInputV2, DTOUpdateElementPropertyDefinitionInputV2, DTOUserWorkspaceMembership, DTOUserWorkspaceMembershipsResponse, DTOWorkspace, DTOWorkspaceIntegrationOauthInput, DTOWorkspaceIntegrationPATInput, DTOWorkspaceRole, DocumentationHierarchySettings, DocumentationPageEditorModel, DocumentationPageV1DTO, type ListItemNode, type ListNode, ListTreeBuilder, NpmRegistryInput, ObjectMeta, PageBlockEditorModel, PageSectionEditorModel, type ProsemirrorBlockItem, type ProsemirrorMark, type ProsemirrorNode, VersionSQSPayload, WorkspaceConfigurationPayload, applyPrivacyConfigurationToNestedItems, blockToProsemirrorNode, buildDocPagePublishPaths, calculateElementParentChain, documentationElementsToHierarchyDto, documentationHierarchyToYjs, documentationItemConfigurationToDTOV1, documentationItemConfigurationToDTOV2, documentationPagesFixedConfigurationToDTOV1, documentationPagesFixedConfigurationToDTOV2, documentationPagesToDTOV1, documentationPagesToDTOV2, documentationPagesToStructureDTOV2, elementGroupsToDocumentationGroupDTOV1, elementGroupsToDocumentationGroupDTOV2, elementGroupsToDocumentationGroupFixedConfigurationDTOV1, elementGroupsToDocumentationGroupFixedConfigurationDTOV2, elementGroupsToDocumentationGroupStructureDTOV1, elementGroupsToDocumentationGroupStructureDTOV2, getDtoDefaultItemConfigurationV1, getDtoDefaultItemConfigurationV2, getMockPageBlockDefinitions, integrationToDto, itemConfigurationToYjs, pageToProsemirrorDoc, pageToYXmlFragment, pmSchema, prosemirrorDocToPage, prosemirrorNodeToSection, prosemirrorNodesToBlocks, serializeAsCustomBlock, shallowProsemirrorNodeToBlock,
|
|
23932
|
+
export { BlockDefinitionUtils, BlockParsingUtils, DTOBrand, DTOBrandCreateResponse, DTOBrandGetResponse, DTOBrandsListResponse, DTOCreateBrandInput, DTOCreateDocumentationGroupInput, DTOCreateDocumentationPageInputV2, DTOCreateDocumentationTabInput, DTOCreateElementPropertyDefinitionInputV2, DTOCreateVersionInput, DTODeleteDocumentationGroupInput, DTODeleteDocumentationPageInputV2, DTODeleteDocumentationTabGroupInput, DTODeleteElementPropertyDefinitionInputV2, DTODesignSystem, DTODesignSystemVersion, DTODesignSystemVersionCreationResponse, DTODesignSystemVersionGetResponse, DTODesignSystemVersionJobStatusResponse, DTODesignSystemVersionJobsResponse, DTODesignSystemVersionsListResponse, DTODocumentationGroupCreateActionInputV2, DTODocumentationGroupCreateActionOutputV2, DTODocumentationGroupDeleteActionInputV2, DTODocumentationGroupDeleteActionOutputV2, DTODocumentationGroupDuplicateActionInputV2, DTODocumentationGroupDuplicateActionOutputV2, DTODocumentationGroupMoveActionInputV2, DTODocumentationGroupMoveActionOutputV2, DTODocumentationGroupStructureV1, DTODocumentationGroupStructureV2, DTODocumentationGroupUpdateActionInputV2, DTODocumentationGroupUpdateActionOutputV2, DTODocumentationGroupV1, DTODocumentationGroupV2, DTODocumentationHierarchyV2, DTODocumentationItemConfigurationV1, DTODocumentationItemConfigurationV2, DTODocumentationItemHeaderV2, DTODocumentationLinkPreviewRequest, DTODocumentationLinkPreviewResponse, DTODocumentationPageAnchor, DTODocumentationPageContent, DTODocumentationPageContentGetResponse, DTODocumentationPageCreateActionInputV2, DTODocumentationPageCreateActionOutputV2, DTODocumentationPageDeleteActionInputV2, DTODocumentationPageDeleteActionOutputV2, DTODocumentationPageDuplicateActionInputV2, DTODocumentationPageDuplicateActionOutputV2, DTODocumentationPageMoveActionInputV2, DTODocumentationPageMoveActionOutputV2, DTODocumentationPageRoomHeaderData, DTODocumentationPageRoomHeaderDataUpdate, DTODocumentationPageStructureV2, DTODocumentationPageUpdateActionInputV2, DTODocumentationPageUpdateActionOutputV2, DTODocumentationPageV2, DTODocumentationTabCreateActionInputV2, DTODocumentationTabCreateActionOutputV2, type DTODocumentationTabGroupCreateActionInputV2, DTODocumentationTabGroupDeleteActionInputV2, DTODocumentationTabGroupDeleteActionOutputV2, DTODuplicateDocumentationGroupInput, DTODuplicateDocumentationPageInputV2, DTOElementActionInput, DTOElementActionOutput, DTOElementPropertyDefinition, DTOElementPropertyDefinitionsGetResponse, DTOElementPropertyValue, DTOElementPropertyValuesGetResponse, DTOElementView, DTOElementViewBasePropertyColumn, DTOElementViewColumn, DTOElementViewColumnSharedAttributes, DTOElementViewPropertyDefinitionColumn, DTOElementViewThemeColumn, DTOElementViewsListResponse, DTOElementsGetOutput, type DTOElementsGetQueryParsed, type DTOElementsGetQueryRaw, DTOElementsGetQuerySchema, DTOElementsGetTypeFilter, DTOExporterProperty, DTOExporterPropertyListResponse, DTOFigmaNode, DTOFigmaNodeData, DTOFigmaNodeOrigin, DTOFigmaNodeRenderActionInput, DTOFigmaNodeRenderActionOutput, DTOFigmaNodeRenderInput, DTOGetBlockDefinitionsOutput, DTOGetDocumentationPageAnchorsResponse, DTOIntegration, DTOIntegrationOAuthGetResponse, DTOIntegrationPostResponse, DTOIntegrationsGetListResponse, DTOLiveblocksAuthRequest, DTOMoveDocumentationGroupInput, DTOMoveDocumentationPageInputV2, DTONpmRegistryConfig, DTOPropertyDefinitionCreateActionInputV2, DTOPropertyDefinitionCreateActionOutputV2, DTOPropertyDefinitionDeleteActionInputV2, DTOPropertyDefinitionDeleteActionOutputV2, DTOPropertyDefinitionUpdateActionInputV2, DTOPropertyDefinitionUpdateActionOutputV2, DTOUpdateDocumentationGroupInput, DTOUpdateDocumentationPageInputV2, DTOUpdateElementPropertyDefinitionInputV2, DTOUserWorkspaceMembership, DTOUserWorkspaceMembershipsResponse, DTOWorkspace, DTOWorkspaceIntegrationOauthInput, DTOWorkspaceIntegrationPATInput, DTOWorkspaceRole, DocumentationHierarchySettings, DocumentationPageEditorModel, DocumentationPageV1DTO, type ListItemNode, type ListNode, ListTreeBuilder, NpmRegistryInput, ObjectMeta, PageBlockEditorModel, PageSectionEditorModel, type ProsemirrorBlockItem, type ProsemirrorMark, type ProsemirrorNode, VersionSQSPayload, WorkspaceConfigurationPayload, applyPrivacyConfigurationToNestedItems, blockToProsemirrorNode, buildDocPagePublishPaths, calculateElementParentChain, documentationElementsToHierarchyDto, documentationHierarchyToYjs, documentationItemConfigurationToDTOV1, documentationItemConfigurationToDTOV2, documentationPagesFixedConfigurationToDTOV1, documentationPagesFixedConfigurationToDTOV2, documentationPagesToDTOV1, documentationPagesToDTOV2, documentationPagesToStructureDTOV2, elementGroupsToDocumentationGroupDTOV1, elementGroupsToDocumentationGroupDTOV2, elementGroupsToDocumentationGroupFixedConfigurationDTOV1, elementGroupsToDocumentationGroupFixedConfigurationDTOV2, elementGroupsToDocumentationGroupStructureDTOV1, elementGroupsToDocumentationGroupStructureDTOV2, getDtoDefaultItemConfigurationV1, getDtoDefaultItemConfigurationV2, getMockPageBlockDefinitions, integrationToDto, itemConfigurationToYjs, pageToProsemirrorDoc, pageToYXmlFragment, pmSchema, prosemirrorDocToPage, prosemirrorNodeToSection, prosemirrorNodesToBlocks, serializeAsCustomBlock, shallowProsemirrorNodeToBlock, validateDesignSystemVersion, validateSsoPayload, yDocToPage, yXmlFragmentToPage, yjsToDocumentationHierarchy, yjsToItemConfiguration };
|