@supernova-studio/client 0.47.1 → 0.47.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 +749 -10
- package/dist/index.d.ts +749 -10
- package/dist/index.js +166 -5
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +2210 -2049
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/api/conversion/integrations/git.ts +34 -0
- package/src/api/conversion/integrations/index.ts +1 -0
- package/src/api/dto/index.ts +1 -0
- package/src/api/dto/users/index.ts +1 -0
- package/src/api/dto/users/profile/index.ts +1 -0
- package/src/api/dto/users/profile/update.ts +7 -0
- package/src/api/dto/workspaces/git.ts +29 -0
- package/src/api/dto/workspaces/index.ts +1 -0
- package/src/api/payloads/users/index.ts +1 -0
- package/src/api/payloads/users/profile/index.ts +1 -0
- package/src/api/payloads/users/profile/update.ts +4 -0
package/dist/index.d.mts
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import * as _supernova_studio_model from '@supernova-studio/model';
|
|
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';
|
|
2
|
+
import { PageBlockV1, DocumentationPageV2, ElementGroup, DocumentationGroupV1, DocumentationPageV1, DocumentationItemConfigurationV1, DocumentationItemConfigurationV2, GitOrganization, GitProject, GitRepository, GitBranch, ExtendedIntegration, SsoProvider, PageBlockItemUntypedValue, PageBlockDefinition, PageBlockText, PageBlockDefinitionProperty, PageBlockDefinitionMultiRichTextPropertyStyle, PageBlockItemV2, PageBlockItemRichTextValue, PageBlockItemMultiRichTextValue, PageBlockItemTableValue, PageBlockItemEmbedValue, PageBlockDefinitionPropertyType } from '@supernova-studio/model';
|
|
3
|
+
import * as zod from 'zod';
|
|
3
4
|
import { z } from 'zod';
|
|
4
5
|
import * as Y from 'yjs';
|
|
5
6
|
import { Schema } from 'prosemirror-model';
|
|
@@ -8282,8 +8283,8 @@ declare const DocumentationPageV1DTO: z.ZodObject<{
|
|
|
8282
8283
|
};
|
|
8283
8284
|
}>;
|
|
8284
8285
|
blocks: z.ZodArray<z.ZodType<PageBlockV1, z.ZodTypeDef, {
|
|
8285
|
-
type: "Theme" | "Token" | "Component" | "Tabs" | "Text" | "Link" | "Custom" | "Image" | "Code" | "Table" | "Divider" | "Quote" | "Callout" | "Embed" | "Heading" | "UnorderedList" | "OrderedList" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "TabItem" | "TableRow" | "TableCell";
|
|
8286
8286
|
persistentId: string;
|
|
8287
|
+
type: "Theme" | "Token" | "Component" | "Tabs" | "Text" | "Link" | "Custom" | "Image" | "Code" | "Table" | "Divider" | "Quote" | "Callout" | "Embed" | "Heading" | "UnorderedList" | "OrderedList" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "TabItem" | "TableRow" | "TableCell";
|
|
8287
8288
|
designObjectId?: string | null | undefined;
|
|
8288
8289
|
designObjectIds?: string[] | null | undefined;
|
|
8289
8290
|
tokenType?: "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | null | undefined;
|
|
@@ -8465,8 +8466,8 @@ declare const DocumentationPageV1DTO: z.ZodObject<{
|
|
|
8465
8466
|
userMetadata?: string | null | undefined;
|
|
8466
8467
|
} & {
|
|
8467
8468
|
children: ({
|
|
8468
|
-
type: "Theme" | "Token" | "Component" | "Tabs" | "Text" | "Link" | "Custom" | "Image" | "Code" | "Table" | "Divider" | "Quote" | "Callout" | "Embed" | "Heading" | "UnorderedList" | "OrderedList" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "TabItem" | "TableRow" | "TableCell";
|
|
8469
8469
|
persistentId: string;
|
|
8470
|
+
type: "Theme" | "Token" | "Component" | "Tabs" | "Text" | "Link" | "Custom" | "Image" | "Code" | "Table" | "Divider" | "Quote" | "Callout" | "Embed" | "Heading" | "UnorderedList" | "OrderedList" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "TabItem" | "TableRow" | "TableCell";
|
|
8470
8471
|
designObjectId?: string | null | undefined;
|
|
8471
8472
|
designObjectIds?: string[] | null | undefined;
|
|
8472
8473
|
tokenType?: "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | null | undefined;
|
|
@@ -8766,8 +8767,8 @@ declare const DocumentationPageV1DTO: z.ZodObject<{
|
|
|
8766
8767
|
};
|
|
8767
8768
|
};
|
|
8768
8769
|
blocks: ({
|
|
8769
|
-
type: "Theme" | "Token" | "Component" | "Tabs" | "Text" | "Link" | "Custom" | "Image" | "Code" | "Table" | "Divider" | "Quote" | "Callout" | "Embed" | "Heading" | "UnorderedList" | "OrderedList" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "TabItem" | "TableRow" | "TableCell";
|
|
8770
8770
|
persistentId: string;
|
|
8771
|
+
type: "Theme" | "Token" | "Component" | "Tabs" | "Text" | "Link" | "Custom" | "Image" | "Code" | "Table" | "Divider" | "Quote" | "Callout" | "Embed" | "Heading" | "UnorderedList" | "OrderedList" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "TabItem" | "TableRow" | "TableCell";
|
|
8771
8772
|
designObjectId?: string | null | undefined;
|
|
8772
8773
|
designObjectIds?: string[] | null | undefined;
|
|
8773
8774
|
tokenType?: "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | null | undefined;
|
|
@@ -8949,8 +8950,8 @@ declare const DocumentationPageV1DTO: z.ZodObject<{
|
|
|
8949
8950
|
userMetadata?: string | null | undefined;
|
|
8950
8951
|
} & {
|
|
8951
8952
|
children: ({
|
|
8952
|
-
type: "Theme" | "Token" | "Component" | "Tabs" | "Text" | "Link" | "Custom" | "Image" | "Code" | "Table" | "Divider" | "Quote" | "Callout" | "Embed" | "Heading" | "UnorderedList" | "OrderedList" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "TabItem" | "TableRow" | "TableCell";
|
|
8953
8953
|
persistentId: string;
|
|
8954
|
+
type: "Theme" | "Token" | "Component" | "Tabs" | "Text" | "Link" | "Custom" | "Image" | "Code" | "Table" | "Divider" | "Quote" | "Callout" | "Embed" | "Heading" | "UnorderedList" | "OrderedList" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "TabItem" | "TableRow" | "TableCell";
|
|
8954
8955
|
designObjectId?: string | null | undefined;
|
|
8955
8956
|
designObjectIds?: string[] | null | undefined;
|
|
8956
8957
|
tokenType?: "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | null | undefined;
|
|
@@ -15756,6 +15757,595 @@ declare const DTOLiveblocksAuthResponse: z.ZodObject<{
|
|
|
15756
15757
|
}>;
|
|
15757
15758
|
type DTOLiveblocksAuthResponse = z.infer<typeof DTOLiveblocksAuthResponse>;
|
|
15758
15759
|
|
|
15760
|
+
declare const DTOUserProfileUpdateResponse: z.ZodObject<{
|
|
15761
|
+
user: z.ZodObject<{
|
|
15762
|
+
id: z.ZodString;
|
|
15763
|
+
email: z.ZodString;
|
|
15764
|
+
emailVerified: z.ZodBoolean;
|
|
15765
|
+
createdAt: z.ZodDate;
|
|
15766
|
+
trialExpiresAt: z.ZodOptional<z.ZodDate>;
|
|
15767
|
+
profile: z.ZodObject<{
|
|
15768
|
+
name: z.ZodString;
|
|
15769
|
+
avatar: z.ZodOptional<z.ZodString>;
|
|
15770
|
+
nickname: z.ZodOptional<z.ZodString>;
|
|
15771
|
+
onboarding: z.ZodOptional<z.ZodObject<{
|
|
15772
|
+
companyName: z.ZodOptional<z.ZodString>;
|
|
15773
|
+
numberOfPeopleInOrg: z.ZodOptional<z.ZodString>;
|
|
15774
|
+
numberOfPeopleInDesignTeam: z.ZodOptional<z.ZodString>;
|
|
15775
|
+
department: z.ZodOptional<z.ZodEnum<["Design", "Engineering", "Product", "Brand", "Other"]>>;
|
|
15776
|
+
jobTitle: z.ZodOptional<z.ZodString>;
|
|
15777
|
+
phase: z.ZodOptional<z.ZodString>;
|
|
15778
|
+
jobLevel: z.ZodOptional<z.ZodEnum<["Executive", "Manager", "IndividualContributor", "Other"]>>;
|
|
15779
|
+
designSystemName: z.ZodOptional<z.ZodString>;
|
|
15780
|
+
}, "strip", z.ZodTypeAny, {
|
|
15781
|
+
companyName?: string | undefined;
|
|
15782
|
+
numberOfPeopleInOrg?: string | undefined;
|
|
15783
|
+
numberOfPeopleInDesignTeam?: string | undefined;
|
|
15784
|
+
department?: "Other" | "Design" | "Engineering" | "Product" | "Brand" | undefined;
|
|
15785
|
+
jobTitle?: string | undefined;
|
|
15786
|
+
phase?: string | undefined;
|
|
15787
|
+
jobLevel?: "Other" | "Executive" | "Manager" | "IndividualContributor" | undefined;
|
|
15788
|
+
designSystemName?: string | undefined;
|
|
15789
|
+
}, {
|
|
15790
|
+
companyName?: string | undefined;
|
|
15791
|
+
numberOfPeopleInOrg?: string | undefined;
|
|
15792
|
+
numberOfPeopleInDesignTeam?: string | undefined;
|
|
15793
|
+
department?: "Other" | "Design" | "Engineering" | "Product" | "Brand" | undefined;
|
|
15794
|
+
jobTitle?: string | undefined;
|
|
15795
|
+
phase?: string | undefined;
|
|
15796
|
+
jobLevel?: "Other" | "Executive" | "Manager" | "IndividualContributor" | undefined;
|
|
15797
|
+
designSystemName?: string | undefined;
|
|
15798
|
+
}>>;
|
|
15799
|
+
}, "strip", z.ZodTypeAny, {
|
|
15800
|
+
name: string;
|
|
15801
|
+
avatar?: string | undefined;
|
|
15802
|
+
nickname?: string | undefined;
|
|
15803
|
+
onboarding?: {
|
|
15804
|
+
companyName?: string | undefined;
|
|
15805
|
+
numberOfPeopleInOrg?: string | undefined;
|
|
15806
|
+
numberOfPeopleInDesignTeam?: string | undefined;
|
|
15807
|
+
department?: "Other" | "Design" | "Engineering" | "Product" | "Brand" | undefined;
|
|
15808
|
+
jobTitle?: string | undefined;
|
|
15809
|
+
phase?: string | undefined;
|
|
15810
|
+
jobLevel?: "Other" | "Executive" | "Manager" | "IndividualContributor" | undefined;
|
|
15811
|
+
designSystemName?: string | undefined;
|
|
15812
|
+
} | undefined;
|
|
15813
|
+
}, {
|
|
15814
|
+
name: string;
|
|
15815
|
+
avatar?: string | undefined;
|
|
15816
|
+
nickname?: string | undefined;
|
|
15817
|
+
onboarding?: {
|
|
15818
|
+
companyName?: string | undefined;
|
|
15819
|
+
numberOfPeopleInOrg?: string | undefined;
|
|
15820
|
+
numberOfPeopleInDesignTeam?: string | undefined;
|
|
15821
|
+
department?: "Other" | "Design" | "Engineering" | "Product" | "Brand" | undefined;
|
|
15822
|
+
jobTitle?: string | undefined;
|
|
15823
|
+
phase?: string | undefined;
|
|
15824
|
+
jobLevel?: "Other" | "Executive" | "Manager" | "IndividualContributor" | undefined;
|
|
15825
|
+
designSystemName?: string | undefined;
|
|
15826
|
+
} | undefined;
|
|
15827
|
+
}>;
|
|
15828
|
+
linkedIntegrations: z.ZodOptional<z.ZodObject<{
|
|
15829
|
+
figma: z.ZodOptional<z.ZodObject<{
|
|
15830
|
+
id: z.ZodString;
|
|
15831
|
+
handle: z.ZodOptional<z.ZodString>;
|
|
15832
|
+
avatarUrl: z.ZodOptional<z.ZodString>;
|
|
15833
|
+
email: z.ZodOptional<z.ZodString>;
|
|
15834
|
+
authType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"OAuth2">, z.ZodLiteral<"PAT">]>>;
|
|
15835
|
+
customUrl: z.ZodOptional<z.ZodString>;
|
|
15836
|
+
}, "strip", z.ZodTypeAny, {
|
|
15837
|
+
id: string;
|
|
15838
|
+
handle?: string | undefined;
|
|
15839
|
+
avatarUrl?: string | undefined;
|
|
15840
|
+
email?: string | undefined;
|
|
15841
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
15842
|
+
customUrl?: string | undefined;
|
|
15843
|
+
}, {
|
|
15844
|
+
id: string;
|
|
15845
|
+
handle?: string | undefined;
|
|
15846
|
+
avatarUrl?: string | undefined;
|
|
15847
|
+
email?: string | undefined;
|
|
15848
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
15849
|
+
customUrl?: string | undefined;
|
|
15850
|
+
}>>;
|
|
15851
|
+
github: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
15852
|
+
id: z.ZodString;
|
|
15853
|
+
handle: z.ZodOptional<z.ZodString>;
|
|
15854
|
+
avatarUrl: z.ZodOptional<z.ZodString>;
|
|
15855
|
+
email: z.ZodOptional<z.ZodString>;
|
|
15856
|
+
authType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"OAuth2">, z.ZodLiteral<"PAT">]>>;
|
|
15857
|
+
customUrl: z.ZodOptional<z.ZodString>;
|
|
15858
|
+
}, "strip", z.ZodTypeAny, {
|
|
15859
|
+
id: string;
|
|
15860
|
+
handle?: string | undefined;
|
|
15861
|
+
avatarUrl?: string | undefined;
|
|
15862
|
+
email?: string | undefined;
|
|
15863
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
15864
|
+
customUrl?: string | undefined;
|
|
15865
|
+
}, {
|
|
15866
|
+
id: string;
|
|
15867
|
+
handle?: string | undefined;
|
|
15868
|
+
avatarUrl?: string | undefined;
|
|
15869
|
+
email?: string | undefined;
|
|
15870
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
15871
|
+
customUrl?: string | undefined;
|
|
15872
|
+
}>, "many">>;
|
|
15873
|
+
azure: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
15874
|
+
id: z.ZodString;
|
|
15875
|
+
handle: z.ZodOptional<z.ZodString>;
|
|
15876
|
+
avatarUrl: z.ZodOptional<z.ZodString>;
|
|
15877
|
+
email: z.ZodOptional<z.ZodString>;
|
|
15878
|
+
authType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"OAuth2">, z.ZodLiteral<"PAT">]>>;
|
|
15879
|
+
customUrl: z.ZodOptional<z.ZodString>;
|
|
15880
|
+
}, "strip", z.ZodTypeAny, {
|
|
15881
|
+
id: string;
|
|
15882
|
+
handle?: string | undefined;
|
|
15883
|
+
avatarUrl?: string | undefined;
|
|
15884
|
+
email?: string | undefined;
|
|
15885
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
15886
|
+
customUrl?: string | undefined;
|
|
15887
|
+
}, {
|
|
15888
|
+
id: string;
|
|
15889
|
+
handle?: string | undefined;
|
|
15890
|
+
avatarUrl?: string | undefined;
|
|
15891
|
+
email?: string | undefined;
|
|
15892
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
15893
|
+
customUrl?: string | undefined;
|
|
15894
|
+
}>, "many">>;
|
|
15895
|
+
gitlab: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
15896
|
+
id: z.ZodString;
|
|
15897
|
+
handle: z.ZodOptional<z.ZodString>;
|
|
15898
|
+
avatarUrl: z.ZodOptional<z.ZodString>;
|
|
15899
|
+
email: z.ZodOptional<z.ZodString>;
|
|
15900
|
+
authType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"OAuth2">, z.ZodLiteral<"PAT">]>>;
|
|
15901
|
+
customUrl: z.ZodOptional<z.ZodString>;
|
|
15902
|
+
}, "strip", z.ZodTypeAny, {
|
|
15903
|
+
id: string;
|
|
15904
|
+
handle?: string | undefined;
|
|
15905
|
+
avatarUrl?: string | undefined;
|
|
15906
|
+
email?: string | undefined;
|
|
15907
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
15908
|
+
customUrl?: string | undefined;
|
|
15909
|
+
}, {
|
|
15910
|
+
id: string;
|
|
15911
|
+
handle?: string | undefined;
|
|
15912
|
+
avatarUrl?: string | undefined;
|
|
15913
|
+
email?: string | undefined;
|
|
15914
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
15915
|
+
customUrl?: string | undefined;
|
|
15916
|
+
}>, "many">>;
|
|
15917
|
+
bitbucket: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
15918
|
+
id: z.ZodString;
|
|
15919
|
+
handle: z.ZodOptional<z.ZodString>;
|
|
15920
|
+
avatarUrl: z.ZodOptional<z.ZodString>;
|
|
15921
|
+
email: z.ZodOptional<z.ZodString>;
|
|
15922
|
+
authType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"OAuth2">, z.ZodLiteral<"PAT">]>>;
|
|
15923
|
+
customUrl: z.ZodOptional<z.ZodString>;
|
|
15924
|
+
}, "strip", z.ZodTypeAny, {
|
|
15925
|
+
id: string;
|
|
15926
|
+
handle?: string | undefined;
|
|
15927
|
+
avatarUrl?: string | undefined;
|
|
15928
|
+
email?: string | undefined;
|
|
15929
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
15930
|
+
customUrl?: string | undefined;
|
|
15931
|
+
}, {
|
|
15932
|
+
id: string;
|
|
15933
|
+
handle?: string | undefined;
|
|
15934
|
+
avatarUrl?: string | undefined;
|
|
15935
|
+
email?: string | undefined;
|
|
15936
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
15937
|
+
customUrl?: string | undefined;
|
|
15938
|
+
}>, "many">>;
|
|
15939
|
+
}, "strip", z.ZodTypeAny, {
|
|
15940
|
+
figma?: {
|
|
15941
|
+
id: string;
|
|
15942
|
+
handle?: string | undefined;
|
|
15943
|
+
avatarUrl?: string | undefined;
|
|
15944
|
+
email?: string | undefined;
|
|
15945
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
15946
|
+
customUrl?: string | undefined;
|
|
15947
|
+
} | undefined;
|
|
15948
|
+
github?: {
|
|
15949
|
+
id: string;
|
|
15950
|
+
handle?: string | undefined;
|
|
15951
|
+
avatarUrl?: string | undefined;
|
|
15952
|
+
email?: string | undefined;
|
|
15953
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
15954
|
+
customUrl?: string | undefined;
|
|
15955
|
+
}[] | undefined;
|
|
15956
|
+
azure?: {
|
|
15957
|
+
id: string;
|
|
15958
|
+
handle?: string | undefined;
|
|
15959
|
+
avatarUrl?: string | undefined;
|
|
15960
|
+
email?: string | undefined;
|
|
15961
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
15962
|
+
customUrl?: string | undefined;
|
|
15963
|
+
}[] | undefined;
|
|
15964
|
+
gitlab?: {
|
|
15965
|
+
id: string;
|
|
15966
|
+
handle?: string | undefined;
|
|
15967
|
+
avatarUrl?: string | undefined;
|
|
15968
|
+
email?: string | undefined;
|
|
15969
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
15970
|
+
customUrl?: string | undefined;
|
|
15971
|
+
}[] | undefined;
|
|
15972
|
+
bitbucket?: {
|
|
15973
|
+
id: string;
|
|
15974
|
+
handle?: string | undefined;
|
|
15975
|
+
avatarUrl?: string | undefined;
|
|
15976
|
+
email?: string | undefined;
|
|
15977
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
15978
|
+
customUrl?: string | undefined;
|
|
15979
|
+
}[] | undefined;
|
|
15980
|
+
}, {
|
|
15981
|
+
figma?: {
|
|
15982
|
+
id: string;
|
|
15983
|
+
handle?: string | undefined;
|
|
15984
|
+
avatarUrl?: string | undefined;
|
|
15985
|
+
email?: string | undefined;
|
|
15986
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
15987
|
+
customUrl?: string | undefined;
|
|
15988
|
+
} | undefined;
|
|
15989
|
+
github?: {
|
|
15990
|
+
id: string;
|
|
15991
|
+
handle?: string | undefined;
|
|
15992
|
+
avatarUrl?: string | undefined;
|
|
15993
|
+
email?: string | undefined;
|
|
15994
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
15995
|
+
customUrl?: string | undefined;
|
|
15996
|
+
}[] | undefined;
|
|
15997
|
+
azure?: {
|
|
15998
|
+
id: string;
|
|
15999
|
+
handle?: string | undefined;
|
|
16000
|
+
avatarUrl?: string | undefined;
|
|
16001
|
+
email?: string | undefined;
|
|
16002
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
16003
|
+
customUrl?: string | undefined;
|
|
16004
|
+
}[] | undefined;
|
|
16005
|
+
gitlab?: {
|
|
16006
|
+
id: string;
|
|
16007
|
+
handle?: string | undefined;
|
|
16008
|
+
avatarUrl?: string | undefined;
|
|
16009
|
+
email?: string | undefined;
|
|
16010
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
16011
|
+
customUrl?: string | undefined;
|
|
16012
|
+
}[] | undefined;
|
|
16013
|
+
bitbucket?: {
|
|
16014
|
+
id: string;
|
|
16015
|
+
handle?: string | undefined;
|
|
16016
|
+
avatarUrl?: string | undefined;
|
|
16017
|
+
email?: string | undefined;
|
|
16018
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
16019
|
+
customUrl?: string | undefined;
|
|
16020
|
+
}[] | undefined;
|
|
16021
|
+
}>>;
|
|
16022
|
+
loggedOutAt: z.ZodOptional<z.ZodDate>;
|
|
16023
|
+
isProtected: z.ZodBoolean;
|
|
16024
|
+
}, "strip", z.ZodTypeAny, {
|
|
16025
|
+
id: string;
|
|
16026
|
+
createdAt: Date;
|
|
16027
|
+
email: string;
|
|
16028
|
+
emailVerified: boolean;
|
|
16029
|
+
profile: {
|
|
16030
|
+
name: string;
|
|
16031
|
+
avatar?: string | undefined;
|
|
16032
|
+
nickname?: string | undefined;
|
|
16033
|
+
onboarding?: {
|
|
16034
|
+
companyName?: string | undefined;
|
|
16035
|
+
numberOfPeopleInOrg?: string | undefined;
|
|
16036
|
+
numberOfPeopleInDesignTeam?: string | undefined;
|
|
16037
|
+
department?: "Other" | "Design" | "Engineering" | "Product" | "Brand" | undefined;
|
|
16038
|
+
jobTitle?: string | undefined;
|
|
16039
|
+
phase?: string | undefined;
|
|
16040
|
+
jobLevel?: "Other" | "Executive" | "Manager" | "IndividualContributor" | undefined;
|
|
16041
|
+
designSystemName?: string | undefined;
|
|
16042
|
+
} | undefined;
|
|
16043
|
+
};
|
|
16044
|
+
isProtected: boolean;
|
|
16045
|
+
trialExpiresAt?: Date | undefined;
|
|
16046
|
+
linkedIntegrations?: {
|
|
16047
|
+
figma?: {
|
|
16048
|
+
id: string;
|
|
16049
|
+
handle?: string | undefined;
|
|
16050
|
+
avatarUrl?: string | undefined;
|
|
16051
|
+
email?: string | undefined;
|
|
16052
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
16053
|
+
customUrl?: string | undefined;
|
|
16054
|
+
} | undefined;
|
|
16055
|
+
github?: {
|
|
16056
|
+
id: string;
|
|
16057
|
+
handle?: string | undefined;
|
|
16058
|
+
avatarUrl?: string | undefined;
|
|
16059
|
+
email?: string | undefined;
|
|
16060
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
16061
|
+
customUrl?: string | undefined;
|
|
16062
|
+
}[] | undefined;
|
|
16063
|
+
azure?: {
|
|
16064
|
+
id: string;
|
|
16065
|
+
handle?: string | undefined;
|
|
16066
|
+
avatarUrl?: string | undefined;
|
|
16067
|
+
email?: string | undefined;
|
|
16068
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
16069
|
+
customUrl?: string | undefined;
|
|
16070
|
+
}[] | undefined;
|
|
16071
|
+
gitlab?: {
|
|
16072
|
+
id: string;
|
|
16073
|
+
handle?: string | undefined;
|
|
16074
|
+
avatarUrl?: string | undefined;
|
|
16075
|
+
email?: string | undefined;
|
|
16076
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
16077
|
+
customUrl?: string | undefined;
|
|
16078
|
+
}[] | undefined;
|
|
16079
|
+
bitbucket?: {
|
|
16080
|
+
id: string;
|
|
16081
|
+
handle?: string | undefined;
|
|
16082
|
+
avatarUrl?: string | undefined;
|
|
16083
|
+
email?: string | undefined;
|
|
16084
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
16085
|
+
customUrl?: string | undefined;
|
|
16086
|
+
}[] | undefined;
|
|
16087
|
+
} | undefined;
|
|
16088
|
+
loggedOutAt?: Date | undefined;
|
|
16089
|
+
}, {
|
|
16090
|
+
id: string;
|
|
16091
|
+
createdAt: Date;
|
|
16092
|
+
email: string;
|
|
16093
|
+
emailVerified: boolean;
|
|
16094
|
+
profile: {
|
|
16095
|
+
name: string;
|
|
16096
|
+
avatar?: string | undefined;
|
|
16097
|
+
nickname?: string | undefined;
|
|
16098
|
+
onboarding?: {
|
|
16099
|
+
companyName?: string | undefined;
|
|
16100
|
+
numberOfPeopleInOrg?: string | undefined;
|
|
16101
|
+
numberOfPeopleInDesignTeam?: string | undefined;
|
|
16102
|
+
department?: "Other" | "Design" | "Engineering" | "Product" | "Brand" | undefined;
|
|
16103
|
+
jobTitle?: string | undefined;
|
|
16104
|
+
phase?: string | undefined;
|
|
16105
|
+
jobLevel?: "Other" | "Executive" | "Manager" | "IndividualContributor" | undefined;
|
|
16106
|
+
designSystemName?: string | undefined;
|
|
16107
|
+
} | undefined;
|
|
16108
|
+
};
|
|
16109
|
+
isProtected: boolean;
|
|
16110
|
+
trialExpiresAt?: Date | undefined;
|
|
16111
|
+
linkedIntegrations?: {
|
|
16112
|
+
figma?: {
|
|
16113
|
+
id: string;
|
|
16114
|
+
handle?: string | undefined;
|
|
16115
|
+
avatarUrl?: string | undefined;
|
|
16116
|
+
email?: string | undefined;
|
|
16117
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
16118
|
+
customUrl?: string | undefined;
|
|
16119
|
+
} | undefined;
|
|
16120
|
+
github?: {
|
|
16121
|
+
id: string;
|
|
16122
|
+
handle?: string | undefined;
|
|
16123
|
+
avatarUrl?: string | undefined;
|
|
16124
|
+
email?: string | undefined;
|
|
16125
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
16126
|
+
customUrl?: string | undefined;
|
|
16127
|
+
}[] | undefined;
|
|
16128
|
+
azure?: {
|
|
16129
|
+
id: string;
|
|
16130
|
+
handle?: string | undefined;
|
|
16131
|
+
avatarUrl?: string | undefined;
|
|
16132
|
+
email?: string | undefined;
|
|
16133
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
16134
|
+
customUrl?: string | undefined;
|
|
16135
|
+
}[] | undefined;
|
|
16136
|
+
gitlab?: {
|
|
16137
|
+
id: string;
|
|
16138
|
+
handle?: string | undefined;
|
|
16139
|
+
avatarUrl?: string | undefined;
|
|
16140
|
+
email?: string | undefined;
|
|
16141
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
16142
|
+
customUrl?: string | undefined;
|
|
16143
|
+
}[] | undefined;
|
|
16144
|
+
bitbucket?: {
|
|
16145
|
+
id: string;
|
|
16146
|
+
handle?: string | undefined;
|
|
16147
|
+
avatarUrl?: string | undefined;
|
|
16148
|
+
email?: string | undefined;
|
|
16149
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
16150
|
+
customUrl?: string | undefined;
|
|
16151
|
+
}[] | undefined;
|
|
16152
|
+
} | undefined;
|
|
16153
|
+
loggedOutAt?: Date | undefined;
|
|
16154
|
+
}>;
|
|
16155
|
+
}, "strip", z.ZodTypeAny, {
|
|
16156
|
+
user: {
|
|
16157
|
+
id: string;
|
|
16158
|
+
createdAt: Date;
|
|
16159
|
+
email: string;
|
|
16160
|
+
emailVerified: boolean;
|
|
16161
|
+
profile: {
|
|
16162
|
+
name: string;
|
|
16163
|
+
avatar?: string | undefined;
|
|
16164
|
+
nickname?: string | undefined;
|
|
16165
|
+
onboarding?: {
|
|
16166
|
+
companyName?: string | undefined;
|
|
16167
|
+
numberOfPeopleInOrg?: string | undefined;
|
|
16168
|
+
numberOfPeopleInDesignTeam?: string | undefined;
|
|
16169
|
+
department?: "Other" | "Design" | "Engineering" | "Product" | "Brand" | undefined;
|
|
16170
|
+
jobTitle?: string | undefined;
|
|
16171
|
+
phase?: string | undefined;
|
|
16172
|
+
jobLevel?: "Other" | "Executive" | "Manager" | "IndividualContributor" | undefined;
|
|
16173
|
+
designSystemName?: string | undefined;
|
|
16174
|
+
} | undefined;
|
|
16175
|
+
};
|
|
16176
|
+
isProtected: boolean;
|
|
16177
|
+
trialExpiresAt?: Date | undefined;
|
|
16178
|
+
linkedIntegrations?: {
|
|
16179
|
+
figma?: {
|
|
16180
|
+
id: string;
|
|
16181
|
+
handle?: string | undefined;
|
|
16182
|
+
avatarUrl?: string | undefined;
|
|
16183
|
+
email?: string | undefined;
|
|
16184
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
16185
|
+
customUrl?: string | undefined;
|
|
16186
|
+
} | undefined;
|
|
16187
|
+
github?: {
|
|
16188
|
+
id: string;
|
|
16189
|
+
handle?: string | undefined;
|
|
16190
|
+
avatarUrl?: string | undefined;
|
|
16191
|
+
email?: string | undefined;
|
|
16192
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
16193
|
+
customUrl?: string | undefined;
|
|
16194
|
+
}[] | undefined;
|
|
16195
|
+
azure?: {
|
|
16196
|
+
id: string;
|
|
16197
|
+
handle?: string | undefined;
|
|
16198
|
+
avatarUrl?: string | undefined;
|
|
16199
|
+
email?: string | undefined;
|
|
16200
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
16201
|
+
customUrl?: string | undefined;
|
|
16202
|
+
}[] | undefined;
|
|
16203
|
+
gitlab?: {
|
|
16204
|
+
id: string;
|
|
16205
|
+
handle?: string | undefined;
|
|
16206
|
+
avatarUrl?: string | undefined;
|
|
16207
|
+
email?: string | undefined;
|
|
16208
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
16209
|
+
customUrl?: string | undefined;
|
|
16210
|
+
}[] | undefined;
|
|
16211
|
+
bitbucket?: {
|
|
16212
|
+
id: string;
|
|
16213
|
+
handle?: string | undefined;
|
|
16214
|
+
avatarUrl?: string | undefined;
|
|
16215
|
+
email?: string | undefined;
|
|
16216
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
16217
|
+
customUrl?: string | undefined;
|
|
16218
|
+
}[] | undefined;
|
|
16219
|
+
} | undefined;
|
|
16220
|
+
loggedOutAt?: Date | undefined;
|
|
16221
|
+
};
|
|
16222
|
+
}, {
|
|
16223
|
+
user: {
|
|
16224
|
+
id: string;
|
|
16225
|
+
createdAt: Date;
|
|
16226
|
+
email: string;
|
|
16227
|
+
emailVerified: boolean;
|
|
16228
|
+
profile: {
|
|
16229
|
+
name: string;
|
|
16230
|
+
avatar?: string | undefined;
|
|
16231
|
+
nickname?: string | undefined;
|
|
16232
|
+
onboarding?: {
|
|
16233
|
+
companyName?: string | undefined;
|
|
16234
|
+
numberOfPeopleInOrg?: string | undefined;
|
|
16235
|
+
numberOfPeopleInDesignTeam?: string | undefined;
|
|
16236
|
+
department?: "Other" | "Design" | "Engineering" | "Product" | "Brand" | undefined;
|
|
16237
|
+
jobTitle?: string | undefined;
|
|
16238
|
+
phase?: string | undefined;
|
|
16239
|
+
jobLevel?: "Other" | "Executive" | "Manager" | "IndividualContributor" | undefined;
|
|
16240
|
+
designSystemName?: string | undefined;
|
|
16241
|
+
} | undefined;
|
|
16242
|
+
};
|
|
16243
|
+
isProtected: boolean;
|
|
16244
|
+
trialExpiresAt?: Date | undefined;
|
|
16245
|
+
linkedIntegrations?: {
|
|
16246
|
+
figma?: {
|
|
16247
|
+
id: string;
|
|
16248
|
+
handle?: string | undefined;
|
|
16249
|
+
avatarUrl?: string | undefined;
|
|
16250
|
+
email?: string | undefined;
|
|
16251
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
16252
|
+
customUrl?: string | undefined;
|
|
16253
|
+
} | undefined;
|
|
16254
|
+
github?: {
|
|
16255
|
+
id: string;
|
|
16256
|
+
handle?: string | undefined;
|
|
16257
|
+
avatarUrl?: string | undefined;
|
|
16258
|
+
email?: string | undefined;
|
|
16259
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
16260
|
+
customUrl?: string | undefined;
|
|
16261
|
+
}[] | undefined;
|
|
16262
|
+
azure?: {
|
|
16263
|
+
id: string;
|
|
16264
|
+
handle?: string | undefined;
|
|
16265
|
+
avatarUrl?: string | undefined;
|
|
16266
|
+
email?: string | undefined;
|
|
16267
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
16268
|
+
customUrl?: string | undefined;
|
|
16269
|
+
}[] | undefined;
|
|
16270
|
+
gitlab?: {
|
|
16271
|
+
id: string;
|
|
16272
|
+
handle?: string | undefined;
|
|
16273
|
+
avatarUrl?: string | undefined;
|
|
16274
|
+
email?: string | undefined;
|
|
16275
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
16276
|
+
customUrl?: string | undefined;
|
|
16277
|
+
}[] | undefined;
|
|
16278
|
+
bitbucket?: {
|
|
16279
|
+
id: string;
|
|
16280
|
+
handle?: string | undefined;
|
|
16281
|
+
avatarUrl?: string | undefined;
|
|
16282
|
+
email?: string | undefined;
|
|
16283
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
16284
|
+
customUrl?: string | undefined;
|
|
16285
|
+
}[] | undefined;
|
|
16286
|
+
} | undefined;
|
|
16287
|
+
loggedOutAt?: Date | undefined;
|
|
16288
|
+
};
|
|
16289
|
+
}>;
|
|
16290
|
+
type DTOUserProfileUpdateResponse = z.infer<typeof DTOUserProfileUpdateResponse>;
|
|
16291
|
+
|
|
16292
|
+
declare const DTOGitOrganization: z.ZodObject<{
|
|
16293
|
+
id: z.ZodString;
|
|
16294
|
+
name: z.ZodString;
|
|
16295
|
+
url: z.ZodString;
|
|
16296
|
+
}, "strip", z.ZodTypeAny, {
|
|
16297
|
+
id: string;
|
|
16298
|
+
name: string;
|
|
16299
|
+
url: string;
|
|
16300
|
+
}, {
|
|
16301
|
+
id: string;
|
|
16302
|
+
name: string;
|
|
16303
|
+
url: string;
|
|
16304
|
+
}>;
|
|
16305
|
+
type DTOGitOrganization = z.infer<typeof DTOGitOrganization>;
|
|
16306
|
+
declare const DTOGitProject: z.ZodObject<{
|
|
16307
|
+
id: z.ZodString;
|
|
16308
|
+
name: z.ZodString;
|
|
16309
|
+
url: z.ZodString;
|
|
16310
|
+
}, "strip", z.ZodTypeAny, {
|
|
16311
|
+
id: string;
|
|
16312
|
+
name: string;
|
|
16313
|
+
url: string;
|
|
16314
|
+
}, {
|
|
16315
|
+
id: string;
|
|
16316
|
+
name: string;
|
|
16317
|
+
url: string;
|
|
16318
|
+
}>;
|
|
16319
|
+
type DTOGitProject = z.infer<typeof DTOGitProject>;
|
|
16320
|
+
declare const DTOGitRepository: z.ZodObject<{
|
|
16321
|
+
id: z.ZodString;
|
|
16322
|
+
name: z.ZodString;
|
|
16323
|
+
url: z.ZodString;
|
|
16324
|
+
defaultBranch: z.ZodString;
|
|
16325
|
+
}, "strip", z.ZodTypeAny, {
|
|
16326
|
+
id: string;
|
|
16327
|
+
name: string;
|
|
16328
|
+
url: string;
|
|
16329
|
+
defaultBranch: string;
|
|
16330
|
+
}, {
|
|
16331
|
+
id: string;
|
|
16332
|
+
name: string;
|
|
16333
|
+
url: string;
|
|
16334
|
+
defaultBranch: string;
|
|
16335
|
+
}>;
|
|
16336
|
+
type DTOGitRepository = z.infer<typeof DTOGitRepository>;
|
|
16337
|
+
declare const DTOGitBranch: z.ZodObject<{
|
|
16338
|
+
name: z.ZodString;
|
|
16339
|
+
lastCommitId: z.ZodString;
|
|
16340
|
+
}, "strip", z.ZodTypeAny, {
|
|
16341
|
+
name: string;
|
|
16342
|
+
lastCommitId: string;
|
|
16343
|
+
}, {
|
|
16344
|
+
name: string;
|
|
16345
|
+
lastCommitId: string;
|
|
16346
|
+
}>;
|
|
16347
|
+
type DTOGitBranch = z.infer<typeof DTOGitBranch>;
|
|
16348
|
+
|
|
15759
16349
|
declare const DTOIntegration: z.ZodObject<{
|
|
15760
16350
|
id: z.ZodString;
|
|
15761
16351
|
workspaceId: z.ZodString;
|
|
@@ -15775,17 +16365,26 @@ declare const DTOIntegration: z.ZodObject<{
|
|
|
15775
16365
|
id: z.ZodString;
|
|
15776
16366
|
email: z.ZodOptional<z.ZodString>;
|
|
15777
16367
|
handle: z.ZodOptional<z.ZodString>;
|
|
16368
|
+
type: z.ZodOptional<z.ZodString>;
|
|
15778
16369
|
avatarUrl: z.ZodOptional<z.ZodString>;
|
|
16370
|
+
organization: z.ZodOptional<z.ZodString>;
|
|
16371
|
+
installation: z.ZodOptional<z.ZodString>;
|
|
15779
16372
|
}, "strip", z.ZodTypeAny, {
|
|
15780
16373
|
id: string;
|
|
15781
16374
|
email?: string | undefined;
|
|
15782
16375
|
handle?: string | undefined;
|
|
16376
|
+
type?: string | undefined;
|
|
15783
16377
|
avatarUrl?: string | undefined;
|
|
16378
|
+
organization?: string | undefined;
|
|
16379
|
+
installation?: string | undefined;
|
|
15784
16380
|
}, {
|
|
15785
16381
|
id: string;
|
|
15786
16382
|
email?: string | undefined;
|
|
15787
16383
|
handle?: string | undefined;
|
|
16384
|
+
type?: string | undefined;
|
|
15788
16385
|
avatarUrl?: string | undefined;
|
|
16386
|
+
organization?: string | undefined;
|
|
16387
|
+
installation?: string | undefined;
|
|
15789
16388
|
}>>;
|
|
15790
16389
|
customUrl: z.ZodOptional<z.ZodString>;
|
|
15791
16390
|
user: z.ZodOptional<z.ZodObject<{
|
|
@@ -15818,7 +16417,10 @@ declare const DTOIntegration: z.ZodObject<{
|
|
|
15818
16417
|
id: string;
|
|
15819
16418
|
email?: string | undefined;
|
|
15820
16419
|
handle?: string | undefined;
|
|
16420
|
+
type?: string | undefined;
|
|
15821
16421
|
avatarUrl?: string | undefined;
|
|
16422
|
+
organization?: string | undefined;
|
|
16423
|
+
installation?: string | undefined;
|
|
15822
16424
|
} | undefined;
|
|
15823
16425
|
customUrl?: string | undefined;
|
|
15824
16426
|
user?: {
|
|
@@ -15841,7 +16443,10 @@ declare const DTOIntegration: z.ZodObject<{
|
|
|
15841
16443
|
id: string;
|
|
15842
16444
|
email?: string | undefined;
|
|
15843
16445
|
handle?: string | undefined;
|
|
16446
|
+
type?: string | undefined;
|
|
15844
16447
|
avatarUrl?: string | undefined;
|
|
16448
|
+
organization?: string | undefined;
|
|
16449
|
+
installation?: string | undefined;
|
|
15845
16450
|
} | undefined;
|
|
15846
16451
|
customUrl?: string | undefined;
|
|
15847
16452
|
user?: {
|
|
@@ -15889,7 +16494,10 @@ declare const DTOIntegration: z.ZodObject<{
|
|
|
15889
16494
|
id: string;
|
|
15890
16495
|
email?: string | undefined;
|
|
15891
16496
|
handle?: string | undefined;
|
|
16497
|
+
type?: string | undefined;
|
|
15892
16498
|
avatarUrl?: string | undefined;
|
|
16499
|
+
organization?: string | undefined;
|
|
16500
|
+
installation?: string | undefined;
|
|
15893
16501
|
} | undefined;
|
|
15894
16502
|
customUrl?: string | undefined;
|
|
15895
16503
|
user?: {
|
|
@@ -15925,7 +16533,10 @@ declare const DTOIntegration: z.ZodObject<{
|
|
|
15925
16533
|
id: string;
|
|
15926
16534
|
email?: string | undefined;
|
|
15927
16535
|
handle?: string | undefined;
|
|
16536
|
+
type?: string | undefined;
|
|
15928
16537
|
avatarUrl?: string | undefined;
|
|
16538
|
+
organization?: string | undefined;
|
|
16539
|
+
installation?: string | undefined;
|
|
15929
16540
|
} | undefined;
|
|
15930
16541
|
customUrl?: string | undefined;
|
|
15931
16542
|
user?: {
|
|
@@ -15972,17 +16583,26 @@ declare const DTOIntegrationPostResponse: z.ZodObject<{
|
|
|
15972
16583
|
id: z.ZodString;
|
|
15973
16584
|
email: z.ZodOptional<z.ZodString>;
|
|
15974
16585
|
handle: z.ZodOptional<z.ZodString>;
|
|
16586
|
+
type: z.ZodOptional<z.ZodString>;
|
|
15975
16587
|
avatarUrl: z.ZodOptional<z.ZodString>;
|
|
16588
|
+
organization: z.ZodOptional<z.ZodString>;
|
|
16589
|
+
installation: z.ZodOptional<z.ZodString>;
|
|
15976
16590
|
}, "strip", z.ZodTypeAny, {
|
|
15977
16591
|
id: string;
|
|
15978
16592
|
email?: string | undefined;
|
|
15979
16593
|
handle?: string | undefined;
|
|
16594
|
+
type?: string | undefined;
|
|
15980
16595
|
avatarUrl?: string | undefined;
|
|
16596
|
+
organization?: string | undefined;
|
|
16597
|
+
installation?: string | undefined;
|
|
15981
16598
|
}, {
|
|
15982
16599
|
id: string;
|
|
15983
16600
|
email?: string | undefined;
|
|
15984
16601
|
handle?: string | undefined;
|
|
16602
|
+
type?: string | undefined;
|
|
15985
16603
|
avatarUrl?: string | undefined;
|
|
16604
|
+
organization?: string | undefined;
|
|
16605
|
+
installation?: string | undefined;
|
|
15986
16606
|
}>>;
|
|
15987
16607
|
customUrl: z.ZodOptional<z.ZodString>;
|
|
15988
16608
|
user: z.ZodOptional<z.ZodObject<{
|
|
@@ -16015,7 +16635,10 @@ declare const DTOIntegrationPostResponse: z.ZodObject<{
|
|
|
16015
16635
|
id: string;
|
|
16016
16636
|
email?: string | undefined;
|
|
16017
16637
|
handle?: string | undefined;
|
|
16638
|
+
type?: string | undefined;
|
|
16018
16639
|
avatarUrl?: string | undefined;
|
|
16640
|
+
organization?: string | undefined;
|
|
16641
|
+
installation?: string | undefined;
|
|
16019
16642
|
} | undefined;
|
|
16020
16643
|
customUrl?: string | undefined;
|
|
16021
16644
|
user?: {
|
|
@@ -16038,7 +16661,10 @@ declare const DTOIntegrationPostResponse: z.ZodObject<{
|
|
|
16038
16661
|
id: string;
|
|
16039
16662
|
email?: string | undefined;
|
|
16040
16663
|
handle?: string | undefined;
|
|
16664
|
+
type?: string | undefined;
|
|
16041
16665
|
avatarUrl?: string | undefined;
|
|
16666
|
+
organization?: string | undefined;
|
|
16667
|
+
installation?: string | undefined;
|
|
16042
16668
|
} | undefined;
|
|
16043
16669
|
customUrl?: string | undefined;
|
|
16044
16670
|
user?: {
|
|
@@ -16086,7 +16712,10 @@ declare const DTOIntegrationPostResponse: z.ZodObject<{
|
|
|
16086
16712
|
id: string;
|
|
16087
16713
|
email?: string | undefined;
|
|
16088
16714
|
handle?: string | undefined;
|
|
16715
|
+
type?: string | undefined;
|
|
16089
16716
|
avatarUrl?: string | undefined;
|
|
16717
|
+
organization?: string | undefined;
|
|
16718
|
+
installation?: string | undefined;
|
|
16090
16719
|
} | undefined;
|
|
16091
16720
|
customUrl?: string | undefined;
|
|
16092
16721
|
user?: {
|
|
@@ -16122,7 +16751,10 @@ declare const DTOIntegrationPostResponse: z.ZodObject<{
|
|
|
16122
16751
|
id: string;
|
|
16123
16752
|
email?: string | undefined;
|
|
16124
16753
|
handle?: string | undefined;
|
|
16754
|
+
type?: string | undefined;
|
|
16125
16755
|
avatarUrl?: string | undefined;
|
|
16756
|
+
organization?: string | undefined;
|
|
16757
|
+
installation?: string | undefined;
|
|
16126
16758
|
} | undefined;
|
|
16127
16759
|
customUrl?: string | undefined;
|
|
16128
16760
|
user?: {
|
|
@@ -16160,7 +16792,10 @@ declare const DTOIntegrationPostResponse: z.ZodObject<{
|
|
|
16160
16792
|
id: string;
|
|
16161
16793
|
email?: string | undefined;
|
|
16162
16794
|
handle?: string | undefined;
|
|
16795
|
+
type?: string | undefined;
|
|
16163
16796
|
avatarUrl?: string | undefined;
|
|
16797
|
+
organization?: string | undefined;
|
|
16798
|
+
installation?: string | undefined;
|
|
16164
16799
|
} | undefined;
|
|
16165
16800
|
customUrl?: string | undefined;
|
|
16166
16801
|
user?: {
|
|
@@ -16198,7 +16833,10 @@ declare const DTOIntegrationPostResponse: z.ZodObject<{
|
|
|
16198
16833
|
id: string;
|
|
16199
16834
|
email?: string | undefined;
|
|
16200
16835
|
handle?: string | undefined;
|
|
16836
|
+
type?: string | undefined;
|
|
16201
16837
|
avatarUrl?: string | undefined;
|
|
16838
|
+
organization?: string | undefined;
|
|
16839
|
+
installation?: string | undefined;
|
|
16202
16840
|
} | undefined;
|
|
16203
16841
|
customUrl?: string | undefined;
|
|
16204
16842
|
user?: {
|
|
@@ -16238,17 +16876,26 @@ declare const DTOIntegrationsGetListResponse: z.ZodObject<{
|
|
|
16238
16876
|
id: z.ZodString;
|
|
16239
16877
|
email: z.ZodOptional<z.ZodString>;
|
|
16240
16878
|
handle: z.ZodOptional<z.ZodString>;
|
|
16879
|
+
type: z.ZodOptional<z.ZodString>;
|
|
16241
16880
|
avatarUrl: z.ZodOptional<z.ZodString>;
|
|
16881
|
+
organization: z.ZodOptional<z.ZodString>;
|
|
16882
|
+
installation: z.ZodOptional<z.ZodString>;
|
|
16242
16883
|
}, "strip", z.ZodTypeAny, {
|
|
16243
16884
|
id: string;
|
|
16244
16885
|
email?: string | undefined;
|
|
16245
16886
|
handle?: string | undefined;
|
|
16887
|
+
type?: string | undefined;
|
|
16246
16888
|
avatarUrl?: string | undefined;
|
|
16889
|
+
organization?: string | undefined;
|
|
16890
|
+
installation?: string | undefined;
|
|
16247
16891
|
}, {
|
|
16248
16892
|
id: string;
|
|
16249
16893
|
email?: string | undefined;
|
|
16250
16894
|
handle?: string | undefined;
|
|
16895
|
+
type?: string | undefined;
|
|
16251
16896
|
avatarUrl?: string | undefined;
|
|
16897
|
+
organization?: string | undefined;
|
|
16898
|
+
installation?: string | undefined;
|
|
16252
16899
|
}>>;
|
|
16253
16900
|
customUrl: z.ZodOptional<z.ZodString>;
|
|
16254
16901
|
user: z.ZodOptional<z.ZodObject<{
|
|
@@ -16281,7 +16928,10 @@ declare const DTOIntegrationsGetListResponse: z.ZodObject<{
|
|
|
16281
16928
|
id: string;
|
|
16282
16929
|
email?: string | undefined;
|
|
16283
16930
|
handle?: string | undefined;
|
|
16931
|
+
type?: string | undefined;
|
|
16284
16932
|
avatarUrl?: string | undefined;
|
|
16933
|
+
organization?: string | undefined;
|
|
16934
|
+
installation?: string | undefined;
|
|
16285
16935
|
} | undefined;
|
|
16286
16936
|
customUrl?: string | undefined;
|
|
16287
16937
|
user?: {
|
|
@@ -16304,7 +16954,10 @@ declare const DTOIntegrationsGetListResponse: z.ZodObject<{
|
|
|
16304
16954
|
id: string;
|
|
16305
16955
|
email?: string | undefined;
|
|
16306
16956
|
handle?: string | undefined;
|
|
16957
|
+
type?: string | undefined;
|
|
16307
16958
|
avatarUrl?: string | undefined;
|
|
16959
|
+
organization?: string | undefined;
|
|
16960
|
+
installation?: string | undefined;
|
|
16308
16961
|
} | undefined;
|
|
16309
16962
|
customUrl?: string | undefined;
|
|
16310
16963
|
user?: {
|
|
@@ -16352,7 +17005,10 @@ declare const DTOIntegrationsGetListResponse: z.ZodObject<{
|
|
|
16352
17005
|
id: string;
|
|
16353
17006
|
email?: string | undefined;
|
|
16354
17007
|
handle?: string | undefined;
|
|
17008
|
+
type?: string | undefined;
|
|
16355
17009
|
avatarUrl?: string | undefined;
|
|
17010
|
+
organization?: string | undefined;
|
|
17011
|
+
installation?: string | undefined;
|
|
16356
17012
|
} | undefined;
|
|
16357
17013
|
customUrl?: string | undefined;
|
|
16358
17014
|
user?: {
|
|
@@ -16388,7 +17044,10 @@ declare const DTOIntegrationsGetListResponse: z.ZodObject<{
|
|
|
16388
17044
|
id: string;
|
|
16389
17045
|
email?: string | undefined;
|
|
16390
17046
|
handle?: string | undefined;
|
|
17047
|
+
type?: string | undefined;
|
|
16391
17048
|
avatarUrl?: string | undefined;
|
|
17049
|
+
organization?: string | undefined;
|
|
17050
|
+
installation?: string | undefined;
|
|
16392
17051
|
} | undefined;
|
|
16393
17052
|
customUrl?: string | undefined;
|
|
16394
17053
|
user?: {
|
|
@@ -16426,7 +17085,10 @@ declare const DTOIntegrationsGetListResponse: z.ZodObject<{
|
|
|
16426
17085
|
id: string;
|
|
16427
17086
|
email?: string | undefined;
|
|
16428
17087
|
handle?: string | undefined;
|
|
17088
|
+
type?: string | undefined;
|
|
16429
17089
|
avatarUrl?: string | undefined;
|
|
17090
|
+
organization?: string | undefined;
|
|
17091
|
+
installation?: string | undefined;
|
|
16430
17092
|
} | undefined;
|
|
16431
17093
|
customUrl?: string | undefined;
|
|
16432
17094
|
user?: {
|
|
@@ -16464,7 +17126,10 @@ declare const DTOIntegrationsGetListResponse: z.ZodObject<{
|
|
|
16464
17126
|
id: string;
|
|
16465
17127
|
email?: string | undefined;
|
|
16466
17128
|
handle?: string | undefined;
|
|
17129
|
+
type?: string | undefined;
|
|
16467
17130
|
avatarUrl?: string | undefined;
|
|
17131
|
+
organization?: string | undefined;
|
|
17132
|
+
installation?: string | undefined;
|
|
16468
17133
|
} | undefined;
|
|
16469
17134
|
customUrl?: string | undefined;
|
|
16470
17135
|
user?: {
|
|
@@ -21221,6 +21886,11 @@ declare function documentationPagesToStructureDTOV2(pages: DocumentationPageV2[]
|
|
|
21221
21886
|
declare function documentationPagesToDTOV2(pages: DocumentationPageV2[], groups: ElementGroup[], routingVersion: string): DTODocumentationPageV2[];
|
|
21222
21887
|
declare function documentationPagesFixedConfigurationToDTOV2(pages: DocumentationPageV2[], groups: ElementGroup[], routingVersion: string): DTODocumentationPageV2[];
|
|
21223
21888
|
|
|
21889
|
+
declare function gitOrganizationToDto(org: GitOrganization): DTOGitOrganization;
|
|
21890
|
+
declare function gitProjectToDto(project: GitProject): DTOGitProject;
|
|
21891
|
+
declare function gitRepositoryToDto(repo: GitRepository): DTOGitRepository;
|
|
21892
|
+
declare function gitBranchToDto(branch: GitBranch): DTOGitBranch;
|
|
21893
|
+
|
|
21224
21894
|
declare function integrationToDto(integration: ExtendedIntegration): DTOIntegration;
|
|
21225
21895
|
|
|
21226
21896
|
declare const DTOCreateBrandInput: z.ZodObject<{
|
|
@@ -21523,12 +22193,15 @@ declare const DTOGetBlockDefinitionsOutput: z.ZodObject<{
|
|
|
21523
22193
|
items: z.ZodOptional<z.ZodObject<{
|
|
21524
22194
|
numberOfItems: z.ZodNumber;
|
|
21525
22195
|
allowLinks: z.ZodBoolean;
|
|
22196
|
+
newItemLabel: z.ZodOptional<z.ZodString>;
|
|
21526
22197
|
}, "strip", z.ZodTypeAny, {
|
|
21527
22198
|
numberOfItems: number;
|
|
21528
22199
|
allowLinks: boolean;
|
|
22200
|
+
newItemLabel?: string | undefined;
|
|
21529
22201
|
}, {
|
|
21530
22202
|
numberOfItems: number;
|
|
21531
22203
|
allowLinks: boolean;
|
|
22204
|
+
newItemLabel?: string | undefined;
|
|
21532
22205
|
}>>;
|
|
21533
22206
|
entities: z.ZodOptional<z.ZodObject<{
|
|
21534
22207
|
selectionType: z.ZodEnum<["Entity", "Group", "EntityAndGroup"]>;
|
|
@@ -21545,6 +22218,7 @@ declare const DTOGetBlockDefinitionsOutput: z.ZodObject<{
|
|
|
21545
22218
|
items?: {
|
|
21546
22219
|
numberOfItems: number;
|
|
21547
22220
|
allowLinks: boolean;
|
|
22221
|
+
newItemLabel?: string | undefined;
|
|
21548
22222
|
} | undefined;
|
|
21549
22223
|
entities?: {
|
|
21550
22224
|
selectionType: "Group" | "Entity" | "EntityAndGroup";
|
|
@@ -21555,6 +22229,7 @@ declare const DTOGetBlockDefinitionsOutput: z.ZodObject<{
|
|
|
21555
22229
|
items?: {
|
|
21556
22230
|
numberOfItems: number;
|
|
21557
22231
|
allowLinks: boolean;
|
|
22232
|
+
newItemLabel?: string | undefined;
|
|
21558
22233
|
} | undefined;
|
|
21559
22234
|
entities?: {
|
|
21560
22235
|
selectionType: "Group" | "Entity" | "EntityAndGroup";
|
|
@@ -21601,8 +22276,8 @@ declare const DTOGetBlockDefinitionsOutput: z.ZodObject<{
|
|
|
21601
22276
|
}>>;
|
|
21602
22277
|
}, "strip", z.ZodTypeAny, {
|
|
21603
22278
|
id: string;
|
|
21604
|
-
name: string;
|
|
21605
22279
|
description: string;
|
|
22280
|
+
name: string;
|
|
21606
22281
|
item: {
|
|
21607
22282
|
properties: {
|
|
21608
22283
|
id: string;
|
|
@@ -21649,6 +22324,7 @@ declare const DTOGetBlockDefinitionsOutput: z.ZodObject<{
|
|
|
21649
22324
|
items?: {
|
|
21650
22325
|
numberOfItems: number;
|
|
21651
22326
|
allowLinks: boolean;
|
|
22327
|
+
newItemLabel?: string | undefined;
|
|
21652
22328
|
} | undefined;
|
|
21653
22329
|
entities?: {
|
|
21654
22330
|
selectionType: "Group" | "Entity" | "EntityAndGroup";
|
|
@@ -21672,8 +22348,8 @@ declare const DTOGetBlockDefinitionsOutput: z.ZodObject<{
|
|
|
21672
22348
|
} | undefined;
|
|
21673
22349
|
}, {
|
|
21674
22350
|
id: string;
|
|
21675
|
-
name: string;
|
|
21676
22351
|
description: string;
|
|
22352
|
+
name: string;
|
|
21677
22353
|
item: {
|
|
21678
22354
|
properties: {
|
|
21679
22355
|
id: string;
|
|
@@ -21720,6 +22396,7 @@ declare const DTOGetBlockDefinitionsOutput: z.ZodObject<{
|
|
|
21720
22396
|
items?: {
|
|
21721
22397
|
numberOfItems: number;
|
|
21722
22398
|
allowLinks: boolean;
|
|
22399
|
+
newItemLabel?: string | undefined;
|
|
21723
22400
|
} | undefined;
|
|
21724
22401
|
entities?: {
|
|
21725
22402
|
selectionType: "Group" | "Entity" | "EntityAndGroup";
|
|
@@ -21745,8 +22422,8 @@ declare const DTOGetBlockDefinitionsOutput: z.ZodObject<{
|
|
|
21745
22422
|
}, "strip", z.ZodTypeAny, {
|
|
21746
22423
|
definitions: {
|
|
21747
22424
|
id: string;
|
|
21748
|
-
name: string;
|
|
21749
22425
|
description: string;
|
|
22426
|
+
name: string;
|
|
21750
22427
|
item: {
|
|
21751
22428
|
properties: {
|
|
21752
22429
|
id: string;
|
|
@@ -21793,6 +22470,7 @@ declare const DTOGetBlockDefinitionsOutput: z.ZodObject<{
|
|
|
21793
22470
|
items?: {
|
|
21794
22471
|
numberOfItems: number;
|
|
21795
22472
|
allowLinks: boolean;
|
|
22473
|
+
newItemLabel?: string | undefined;
|
|
21796
22474
|
} | undefined;
|
|
21797
22475
|
entities?: {
|
|
21798
22476
|
selectionType: "Group" | "Entity" | "EntityAndGroup";
|
|
@@ -21818,8 +22496,8 @@ declare const DTOGetBlockDefinitionsOutput: z.ZodObject<{
|
|
|
21818
22496
|
}, {
|
|
21819
22497
|
definitions: {
|
|
21820
22498
|
id: string;
|
|
21821
|
-
name: string;
|
|
21822
22499
|
description: string;
|
|
22500
|
+
name: string;
|
|
21823
22501
|
item: {
|
|
21824
22502
|
properties: {
|
|
21825
22503
|
id: string;
|
|
@@ -21866,6 +22544,7 @@ declare const DTOGetBlockDefinitionsOutput: z.ZodObject<{
|
|
|
21866
22544
|
items?: {
|
|
21867
22545
|
numberOfItems: number;
|
|
21868
22546
|
allowLinks: boolean;
|
|
22547
|
+
newItemLabel?: string | undefined;
|
|
21869
22548
|
} | undefined;
|
|
21870
22549
|
entities?: {
|
|
21871
22550
|
selectionType: "Group" | "Entity" | "EntityAndGroup";
|
|
@@ -21971,6 +22650,66 @@ declare const DTOUserNotificationSettingsResponse: z.ZodObject<{
|
|
|
21971
22650
|
}>;
|
|
21972
22651
|
type DTOUserNotificationSettingsResponse = z.infer<typeof DTOUserNotificationSettingsResponse>;
|
|
21973
22652
|
|
|
22653
|
+
declare const DTOUserProfileUpdatePayload: zod.ZodObject<Omit<{
|
|
22654
|
+
name: zod.ZodOptional<zod.ZodString>;
|
|
22655
|
+
avatar: zod.ZodOptional<zod.ZodOptional<zod.ZodString>>;
|
|
22656
|
+
nickname: zod.ZodOptional<zod.ZodOptional<zod.ZodString>>;
|
|
22657
|
+
onboarding: zod.ZodOptional<zod.ZodOptional<zod.ZodObject<{
|
|
22658
|
+
companyName: zod.ZodOptional<zod.ZodString>;
|
|
22659
|
+
numberOfPeopleInOrg: zod.ZodOptional<zod.ZodString>;
|
|
22660
|
+
numberOfPeopleInDesignTeam: zod.ZodOptional<zod.ZodString>;
|
|
22661
|
+
department: zod.ZodOptional<zod.ZodEnum<["Design", "Engineering", "Product", "Brand", "Other"]>>;
|
|
22662
|
+
jobTitle: zod.ZodOptional<zod.ZodString>;
|
|
22663
|
+
phase: zod.ZodOptional<zod.ZodString>;
|
|
22664
|
+
jobLevel: zod.ZodOptional<zod.ZodEnum<["Executive", "Manager", "IndividualContributor", "Other"]>>;
|
|
22665
|
+
designSystemName: zod.ZodOptional<zod.ZodString>;
|
|
22666
|
+
}, "strip", zod.ZodTypeAny, {
|
|
22667
|
+
companyName?: string | undefined;
|
|
22668
|
+
numberOfPeopleInOrg?: string | undefined;
|
|
22669
|
+
numberOfPeopleInDesignTeam?: string | undefined;
|
|
22670
|
+
department?: "Other" | "Design" | "Engineering" | "Product" | "Brand" | undefined;
|
|
22671
|
+
jobTitle?: string | undefined;
|
|
22672
|
+
phase?: string | undefined;
|
|
22673
|
+
jobLevel?: "Other" | "Executive" | "Manager" | "IndividualContributor" | undefined;
|
|
22674
|
+
designSystemName?: string | undefined;
|
|
22675
|
+
}, {
|
|
22676
|
+
companyName?: string | undefined;
|
|
22677
|
+
numberOfPeopleInOrg?: string | undefined;
|
|
22678
|
+
numberOfPeopleInDesignTeam?: string | undefined;
|
|
22679
|
+
department?: "Other" | "Design" | "Engineering" | "Product" | "Brand" | undefined;
|
|
22680
|
+
jobTitle?: string | undefined;
|
|
22681
|
+
phase?: string | undefined;
|
|
22682
|
+
jobLevel?: "Other" | "Executive" | "Manager" | "IndividualContributor" | undefined;
|
|
22683
|
+
designSystemName?: string | undefined;
|
|
22684
|
+
}>>>;
|
|
22685
|
+
}, "avatar">, "strip", zod.ZodTypeAny, {
|
|
22686
|
+
name?: string | undefined;
|
|
22687
|
+
nickname?: string | undefined;
|
|
22688
|
+
onboarding?: {
|
|
22689
|
+
companyName?: string | undefined;
|
|
22690
|
+
numberOfPeopleInOrg?: string | undefined;
|
|
22691
|
+
numberOfPeopleInDesignTeam?: string | undefined;
|
|
22692
|
+
department?: "Other" | "Design" | "Engineering" | "Product" | "Brand" | undefined;
|
|
22693
|
+
jobTitle?: string | undefined;
|
|
22694
|
+
phase?: string | undefined;
|
|
22695
|
+
jobLevel?: "Other" | "Executive" | "Manager" | "IndividualContributor" | undefined;
|
|
22696
|
+
designSystemName?: string | undefined;
|
|
22697
|
+
} | undefined;
|
|
22698
|
+
}, {
|
|
22699
|
+
name?: string | undefined;
|
|
22700
|
+
nickname?: string | undefined;
|
|
22701
|
+
onboarding?: {
|
|
22702
|
+
companyName?: string | undefined;
|
|
22703
|
+
numberOfPeopleInOrg?: string | undefined;
|
|
22704
|
+
numberOfPeopleInDesignTeam?: string | undefined;
|
|
22705
|
+
department?: "Other" | "Design" | "Engineering" | "Product" | "Brand" | undefined;
|
|
22706
|
+
jobTitle?: string | undefined;
|
|
22707
|
+
phase?: string | undefined;
|
|
22708
|
+
jobLevel?: "Other" | "Executive" | "Manager" | "IndividualContributor" | undefined;
|
|
22709
|
+
designSystemName?: string | undefined;
|
|
22710
|
+
} | undefined;
|
|
22711
|
+
}>;
|
|
22712
|
+
|
|
21974
22713
|
declare function validateSsoPayload(ssoPayload: Partial<SsoProvider> | undefined): {
|
|
21975
22714
|
valid: boolean;
|
|
21976
22715
|
keys: string[];
|
|
@@ -24767,4 +25506,4 @@ declare const BlockDefinitionUtils: {
|
|
|
24767
25506
|
};
|
|
24768
25507
|
};
|
|
24769
25508
|
|
|
24770
|
-
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, DTOExportJob, DTOExportJobCreatedBy, DTOExportJobDesignSystemPreview, DTOExportJobDesignSystemVersionPreview, DTOExportJobDestinations, DTOExporterProperty, DTOExporterPropertyListResponse, DTOFigmaNode, DTOFigmaNodeData, DTOFigmaNodeOrigin, DTOFigmaNodeRenderActionInput, DTOFigmaNodeRenderActionOutput, DTOFigmaNodeRenderInput, DTOGetBlockDefinitionsOutput, DTOGetDocumentationPageAnchorsResponse, DTOIntegration, DTOIntegrationOAuthGetResponse, DTOIntegrationPostResponse, DTOIntegrationsGetListResponse, DTOLiveblocksAuthRequest, DTOLiveblocksAuthResponse, DTOMoveDocumentationGroupInput, DTOMoveDocumentationPageInputV2, DTONpmRegistryConfig, DTONpmRegistryConfigConstants, DTOPropertyDefinitionCreateActionInputV2, DTOPropertyDefinitionCreateActionOutputV2, DTOPropertyDefinitionDeleteActionInputV2, DTOPropertyDefinitionDeleteActionOutputV2, DTOPropertyDefinitionUpdateActionInputV2, DTOPropertyDefinitionUpdateActionOutputV2, DTOUpdateDocumentationGroupInput, DTOUpdateDocumentationPageInputV2, DTOUpdateElementPropertyDefinitionInputV2, DTOUpdateUserNotificationSettingsPayload, DTOUpdateVersionInput, DTOUserNotificationSettingsResponse, 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 };
|
|
25509
|
+
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, DTOExportJob, DTOExportJobCreatedBy, DTOExportJobDesignSystemPreview, DTOExportJobDesignSystemVersionPreview, DTOExportJobDestinations, DTOExporterProperty, DTOExporterPropertyListResponse, DTOFigmaNode, DTOFigmaNodeData, DTOFigmaNodeOrigin, DTOFigmaNodeRenderActionInput, DTOFigmaNodeRenderActionOutput, DTOFigmaNodeRenderInput, DTOGetBlockDefinitionsOutput, DTOGetDocumentationPageAnchorsResponse, DTOGitBranch, DTOGitOrganization, DTOGitProject, DTOGitRepository, DTOIntegration, DTOIntegrationOAuthGetResponse, DTOIntegrationPostResponse, DTOIntegrationsGetListResponse, DTOLiveblocksAuthRequest, DTOLiveblocksAuthResponse, DTOMoveDocumentationGroupInput, DTOMoveDocumentationPageInputV2, DTONpmRegistryConfig, DTONpmRegistryConfigConstants, DTOPropertyDefinitionCreateActionInputV2, DTOPropertyDefinitionCreateActionOutputV2, DTOPropertyDefinitionDeleteActionInputV2, DTOPropertyDefinitionDeleteActionOutputV2, DTOPropertyDefinitionUpdateActionInputV2, DTOPropertyDefinitionUpdateActionOutputV2, DTOUpdateDocumentationGroupInput, DTOUpdateDocumentationPageInputV2, DTOUpdateElementPropertyDefinitionInputV2, DTOUpdateUserNotificationSettingsPayload, DTOUpdateVersionInput, DTOUserNotificationSettingsResponse, DTOUserProfileUpdatePayload, DTOUserProfileUpdateResponse, 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, gitBranchToDto, gitOrganizationToDto, gitProjectToDto, gitRepositoryToDto, integrationToDto, itemConfigurationToYjs, pageToProsemirrorDoc, pageToYXmlFragment, pmSchema, prosemirrorDocToPage, prosemirrorNodeToSection, prosemirrorNodesToBlocks, serializeAsCustomBlock, shallowProsemirrorNodeToBlock, validateDesignSystemVersion, validateSsoPayload, yDocToPage, yXmlFragmentToPage, yjsToDocumentationHierarchy, yjsToItemConfiguration };
|