@supernova-studio/client 0.58.6 → 0.58.8
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 +285 -1
- package/dist/index.d.ts +285 -1
- package/dist/index.js +42 -2
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +689 -649
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/api/dto/elements/properties/property-definitions.ts +3 -0
- package/src/api/endpoints/design-system/versions/documentation.ts +23 -0
- package/src/api/endpoints/design-system/versions/elements-action.ts +100 -0
- package/src/api/endpoints/design-system/versions/index.ts +2 -0
- package/src/api/endpoints/design-system/versions/versions.ts +3 -0
- package/src/api/endpoints/workspaces/workspaces.ts +8 -0
- package/src/api/payloads/workspaces/index.ts +1 -0
- package/src/api/payloads/workspaces/transfer-ownership.ts +7 -0
package/dist/index.d.ts
CHANGED
|
@@ -40817,6 +40817,8 @@ declare const DTOElementPropertyDefinition: z.ZodObject<{
|
|
|
40817
40817
|
} | undefined;
|
|
40818
40818
|
}[] | null | undefined>;
|
|
40819
40819
|
linkElementType: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<"DocumentationPage" | "FigmaComponent", z.ZodTypeDef, "DocumentationPage" | "FigmaComponent">>>, NonNullable<"DocumentationPage" | "FigmaComponent"> | undefined, "DocumentationPage" | "FigmaComponent" | null | undefined>;
|
|
40820
|
+
isImmutable: z.ZodBoolean;
|
|
40821
|
+
immutablePropertyType: z.ZodOptional<z.ZodEnum<["Collection"]>>;
|
|
40820
40822
|
}, "strip", z.ZodTypeAny, {
|
|
40821
40823
|
type: "Text" | "Number" | "Boolean" | "Select" | "Generic" | "Link" | "URL";
|
|
40822
40824
|
id: string;
|
|
@@ -40828,6 +40830,7 @@ declare const DTOElementPropertyDefinition: z.ZodObject<{
|
|
|
40828
40830
|
designSystemVersionId: string;
|
|
40829
40831
|
targetElementType: "Token" | "Component" | "DocumentationPage";
|
|
40830
40832
|
codeName: string;
|
|
40833
|
+
isImmutable: boolean;
|
|
40831
40834
|
options?: {
|
|
40832
40835
|
id: string;
|
|
40833
40836
|
name: string;
|
|
@@ -40836,6 +40839,7 @@ declare const DTOElementPropertyDefinition: z.ZodObject<{
|
|
|
40836
40839
|
} | undefined;
|
|
40837
40840
|
}[] | undefined;
|
|
40838
40841
|
linkElementType?: NonNullable<"DocumentationPage" | "FigmaComponent"> | undefined;
|
|
40842
|
+
immutablePropertyType?: "Collection" | undefined;
|
|
40839
40843
|
}, {
|
|
40840
40844
|
type: "Text" | "Number" | "Boolean" | "Select" | "Generic" | "Link" | "URL";
|
|
40841
40845
|
id: string;
|
|
@@ -40847,6 +40851,7 @@ declare const DTOElementPropertyDefinition: z.ZodObject<{
|
|
|
40847
40851
|
designSystemVersionId: string;
|
|
40848
40852
|
targetElementType: "Token" | "Component" | "DocumentationPage";
|
|
40849
40853
|
codeName: string;
|
|
40854
|
+
isImmutable: boolean;
|
|
40850
40855
|
options?: {
|
|
40851
40856
|
id: string;
|
|
40852
40857
|
name: string;
|
|
@@ -40855,6 +40860,7 @@ declare const DTOElementPropertyDefinition: z.ZodObject<{
|
|
|
40855
40860
|
} | undefined;
|
|
40856
40861
|
}[] | null | undefined;
|
|
40857
40862
|
linkElementType?: "DocumentationPage" | "FigmaComponent" | null | undefined;
|
|
40863
|
+
immutablePropertyType?: "Collection" | undefined;
|
|
40858
40864
|
}>;
|
|
40859
40865
|
type DTOElementPropertyDefinition = z.infer<typeof DTOElementPropertyDefinition>;
|
|
40860
40866
|
declare const DTOElementPropertyDefinitionListResponse: z.ZodObject<{
|
|
@@ -40901,6 +40907,8 @@ declare const DTOElementPropertyDefinitionListResponse: z.ZodObject<{
|
|
|
40901
40907
|
} | undefined;
|
|
40902
40908
|
}[] | null | undefined>;
|
|
40903
40909
|
linkElementType: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<"DocumentationPage" | "FigmaComponent", z.ZodTypeDef, "DocumentationPage" | "FigmaComponent">>>, NonNullable<"DocumentationPage" | "FigmaComponent"> | undefined, "DocumentationPage" | "FigmaComponent" | null | undefined>;
|
|
40910
|
+
isImmutable: z.ZodBoolean;
|
|
40911
|
+
immutablePropertyType: z.ZodOptional<z.ZodEnum<["Collection"]>>;
|
|
40904
40912
|
}, "strip", z.ZodTypeAny, {
|
|
40905
40913
|
type: "Text" | "Number" | "Boolean" | "Select" | "Generic" | "Link" | "URL";
|
|
40906
40914
|
id: string;
|
|
@@ -40912,6 +40920,7 @@ declare const DTOElementPropertyDefinitionListResponse: z.ZodObject<{
|
|
|
40912
40920
|
designSystemVersionId: string;
|
|
40913
40921
|
targetElementType: "Token" | "Component" | "DocumentationPage";
|
|
40914
40922
|
codeName: string;
|
|
40923
|
+
isImmutable: boolean;
|
|
40915
40924
|
options?: {
|
|
40916
40925
|
id: string;
|
|
40917
40926
|
name: string;
|
|
@@ -40920,6 +40929,7 @@ declare const DTOElementPropertyDefinitionListResponse: z.ZodObject<{
|
|
|
40920
40929
|
} | undefined;
|
|
40921
40930
|
}[] | undefined;
|
|
40922
40931
|
linkElementType?: NonNullable<"DocumentationPage" | "FigmaComponent"> | undefined;
|
|
40932
|
+
immutablePropertyType?: "Collection" | undefined;
|
|
40923
40933
|
}, {
|
|
40924
40934
|
type: "Text" | "Number" | "Boolean" | "Select" | "Generic" | "Link" | "URL";
|
|
40925
40935
|
id: string;
|
|
@@ -40931,6 +40941,7 @@ declare const DTOElementPropertyDefinitionListResponse: z.ZodObject<{
|
|
|
40931
40941
|
designSystemVersionId: string;
|
|
40932
40942
|
targetElementType: "Token" | "Component" | "DocumentationPage";
|
|
40933
40943
|
codeName: string;
|
|
40944
|
+
isImmutable: boolean;
|
|
40934
40945
|
options?: {
|
|
40935
40946
|
id: string;
|
|
40936
40947
|
name: string;
|
|
@@ -40939,6 +40950,7 @@ declare const DTOElementPropertyDefinitionListResponse: z.ZodObject<{
|
|
|
40939
40950
|
} | undefined;
|
|
40940
40951
|
}[] | null | undefined;
|
|
40941
40952
|
linkElementType?: "DocumentationPage" | "FigmaComponent" | null | undefined;
|
|
40953
|
+
immutablePropertyType?: "Collection" | undefined;
|
|
40942
40954
|
}>, "many">;
|
|
40943
40955
|
}, "strip", z.ZodTypeAny, {
|
|
40944
40956
|
definitions: {
|
|
@@ -40952,6 +40964,7 @@ declare const DTOElementPropertyDefinitionListResponse: z.ZodObject<{
|
|
|
40952
40964
|
designSystemVersionId: string;
|
|
40953
40965
|
targetElementType: "Token" | "Component" | "DocumentationPage";
|
|
40954
40966
|
codeName: string;
|
|
40967
|
+
isImmutable: boolean;
|
|
40955
40968
|
options?: {
|
|
40956
40969
|
id: string;
|
|
40957
40970
|
name: string;
|
|
@@ -40960,6 +40973,7 @@ declare const DTOElementPropertyDefinitionListResponse: z.ZodObject<{
|
|
|
40960
40973
|
} | undefined;
|
|
40961
40974
|
}[] | undefined;
|
|
40962
40975
|
linkElementType?: NonNullable<"DocumentationPage" | "FigmaComponent"> | undefined;
|
|
40976
|
+
immutablePropertyType?: "Collection" | undefined;
|
|
40963
40977
|
}[];
|
|
40964
40978
|
}, {
|
|
40965
40979
|
definitions: {
|
|
@@ -40973,6 +40987,7 @@ declare const DTOElementPropertyDefinitionListResponse: z.ZodObject<{
|
|
|
40973
40987
|
designSystemVersionId: string;
|
|
40974
40988
|
targetElementType: "Token" | "Component" | "DocumentationPage";
|
|
40975
40989
|
codeName: string;
|
|
40990
|
+
isImmutable: boolean;
|
|
40976
40991
|
options?: {
|
|
40977
40992
|
id: string;
|
|
40978
40993
|
name: string;
|
|
@@ -40981,6 +40996,7 @@ declare const DTOElementPropertyDefinitionListResponse: z.ZodObject<{
|
|
|
40981
40996
|
} | undefined;
|
|
40982
40997
|
}[] | null | undefined;
|
|
40983
40998
|
linkElementType?: "DocumentationPage" | "FigmaComponent" | null | undefined;
|
|
40999
|
+
immutablePropertyType?: "Collection" | undefined;
|
|
40984
41000
|
}[];
|
|
40985
41001
|
}>;
|
|
40986
41002
|
type DTOElementPropertyDefinitionListResponse = z.infer<typeof DTOElementPropertyDefinitionListResponse>;
|
|
@@ -41028,6 +41044,8 @@ declare const DTOElementPropertyDefinitionResponse: z.ZodObject<{
|
|
|
41028
41044
|
} | undefined;
|
|
41029
41045
|
}[] | null | undefined>;
|
|
41030
41046
|
linkElementType: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<"DocumentationPage" | "FigmaComponent", z.ZodTypeDef, "DocumentationPage" | "FigmaComponent">>>, NonNullable<"DocumentationPage" | "FigmaComponent"> | undefined, "DocumentationPage" | "FigmaComponent" | null | undefined>;
|
|
41047
|
+
isImmutable: z.ZodBoolean;
|
|
41048
|
+
immutablePropertyType: z.ZodOptional<z.ZodEnum<["Collection"]>>;
|
|
41031
41049
|
}, "strip", z.ZodTypeAny, {
|
|
41032
41050
|
type: "Text" | "Number" | "Boolean" | "Select" | "Generic" | "Link" | "URL";
|
|
41033
41051
|
id: string;
|
|
@@ -41039,6 +41057,7 @@ declare const DTOElementPropertyDefinitionResponse: z.ZodObject<{
|
|
|
41039
41057
|
designSystemVersionId: string;
|
|
41040
41058
|
targetElementType: "Token" | "Component" | "DocumentationPage";
|
|
41041
41059
|
codeName: string;
|
|
41060
|
+
isImmutable: boolean;
|
|
41042
41061
|
options?: {
|
|
41043
41062
|
id: string;
|
|
41044
41063
|
name: string;
|
|
@@ -41047,6 +41066,7 @@ declare const DTOElementPropertyDefinitionResponse: z.ZodObject<{
|
|
|
41047
41066
|
} | undefined;
|
|
41048
41067
|
}[] | undefined;
|
|
41049
41068
|
linkElementType?: NonNullable<"DocumentationPage" | "FigmaComponent"> | undefined;
|
|
41069
|
+
immutablePropertyType?: "Collection" | undefined;
|
|
41050
41070
|
}, {
|
|
41051
41071
|
type: "Text" | "Number" | "Boolean" | "Select" | "Generic" | "Link" | "URL";
|
|
41052
41072
|
id: string;
|
|
@@ -41058,6 +41078,7 @@ declare const DTOElementPropertyDefinitionResponse: z.ZodObject<{
|
|
|
41058
41078
|
designSystemVersionId: string;
|
|
41059
41079
|
targetElementType: "Token" | "Component" | "DocumentationPage";
|
|
41060
41080
|
codeName: string;
|
|
41081
|
+
isImmutable: boolean;
|
|
41061
41082
|
options?: {
|
|
41062
41083
|
id: string;
|
|
41063
41084
|
name: string;
|
|
@@ -41066,6 +41087,7 @@ declare const DTOElementPropertyDefinitionResponse: z.ZodObject<{
|
|
|
41066
41087
|
} | undefined;
|
|
41067
41088
|
}[] | null | undefined;
|
|
41068
41089
|
linkElementType?: "DocumentationPage" | "FigmaComponent" | null | undefined;
|
|
41090
|
+
immutablePropertyType?: "Collection" | undefined;
|
|
41069
41091
|
}>;
|
|
41070
41092
|
}, "strip", z.ZodTypeAny, {
|
|
41071
41093
|
definition: {
|
|
@@ -41079,6 +41101,7 @@ declare const DTOElementPropertyDefinitionResponse: z.ZodObject<{
|
|
|
41079
41101
|
designSystemVersionId: string;
|
|
41080
41102
|
targetElementType: "Token" | "Component" | "DocumentationPage";
|
|
41081
41103
|
codeName: string;
|
|
41104
|
+
isImmutable: boolean;
|
|
41082
41105
|
options?: {
|
|
41083
41106
|
id: string;
|
|
41084
41107
|
name: string;
|
|
@@ -41087,6 +41110,7 @@ declare const DTOElementPropertyDefinitionResponse: z.ZodObject<{
|
|
|
41087
41110
|
} | undefined;
|
|
41088
41111
|
}[] | undefined;
|
|
41089
41112
|
linkElementType?: NonNullable<"DocumentationPage" | "FigmaComponent"> | undefined;
|
|
41113
|
+
immutablePropertyType?: "Collection" | undefined;
|
|
41090
41114
|
};
|
|
41091
41115
|
}, {
|
|
41092
41116
|
definition: {
|
|
@@ -41100,6 +41124,7 @@ declare const DTOElementPropertyDefinitionResponse: z.ZodObject<{
|
|
|
41100
41124
|
designSystemVersionId: string;
|
|
41101
41125
|
targetElementType: "Token" | "Component" | "DocumentationPage";
|
|
41102
41126
|
codeName: string;
|
|
41127
|
+
isImmutable: boolean;
|
|
41103
41128
|
options?: {
|
|
41104
41129
|
id: string;
|
|
41105
41130
|
name: string;
|
|
@@ -41108,6 +41133,7 @@ declare const DTOElementPropertyDefinitionResponse: z.ZodObject<{
|
|
|
41108
41133
|
} | undefined;
|
|
41109
41134
|
}[] | null | undefined;
|
|
41110
41135
|
linkElementType?: "DocumentationPage" | "FigmaComponent" | null | undefined;
|
|
41136
|
+
immutablePropertyType?: "Collection" | undefined;
|
|
41111
41137
|
};
|
|
41112
41138
|
}>;
|
|
41113
41139
|
type DTOElementPropertyDefinitionResponse = z.infer<typeof DTOElementPropertyDefinitionResponse>;
|
|
@@ -83683,6 +83709,15 @@ declare const DTOUserProfileUpdatePayload: zod.ZodObject<Omit<{
|
|
|
83683
83709
|
} | undefined;
|
|
83684
83710
|
}>;
|
|
83685
83711
|
|
|
83712
|
+
declare const DTOTransferOwnershipPayload: z.ZodObject<{
|
|
83713
|
+
newOwnerId: z.ZodString;
|
|
83714
|
+
}, "strip", z.ZodTypeAny, {
|
|
83715
|
+
newOwnerId: string;
|
|
83716
|
+
}, {
|
|
83717
|
+
newOwnerId: string;
|
|
83718
|
+
}>;
|
|
83719
|
+
type DTOTransferOwnershipPayload = z.infer<typeof DTOTransferOwnershipPayload>;
|
|
83720
|
+
|
|
83686
83721
|
declare function validateSsoPayload(ssoPayload: Partial<SsoProvider> | undefined): {
|
|
83687
83722
|
valid: boolean;
|
|
83688
83723
|
keys: string[];
|
|
@@ -84935,6 +84970,7 @@ declare class ElementPropertyDefinitionsEndpoint {
|
|
|
84935
84970
|
designSystemVersionId: string;
|
|
84936
84971
|
targetElementType: "Token" | "Component" | "DocumentationPage";
|
|
84937
84972
|
codeName: string;
|
|
84973
|
+
isImmutable: boolean;
|
|
84938
84974
|
options?: {
|
|
84939
84975
|
id: string;
|
|
84940
84976
|
name: string;
|
|
@@ -84943,6 +84979,7 @@ declare class ElementPropertyDefinitionsEndpoint {
|
|
|
84943
84979
|
} | undefined;
|
|
84944
84980
|
}[] | undefined;
|
|
84945
84981
|
linkElementType?: NonNullable<"DocumentationPage" | "FigmaComponent"> | undefined;
|
|
84982
|
+
immutablePropertyType?: "Collection" | undefined;
|
|
84946
84983
|
}[];
|
|
84947
84984
|
}>;
|
|
84948
84985
|
create(designSystemId: string, versionId: string, body: DTOElementPropertyDefinitionCreatePayload): Promise<{
|
|
@@ -84957,6 +84994,7 @@ declare class ElementPropertyDefinitionsEndpoint {
|
|
|
84957
84994
|
designSystemVersionId: string;
|
|
84958
84995
|
targetElementType: "Token" | "Component" | "DocumentationPage";
|
|
84959
84996
|
codeName: string;
|
|
84997
|
+
isImmutable: boolean;
|
|
84960
84998
|
options?: {
|
|
84961
84999
|
id: string;
|
|
84962
85000
|
name: string;
|
|
@@ -84965,6 +85003,7 @@ declare class ElementPropertyDefinitionsEndpoint {
|
|
|
84965
85003
|
} | undefined;
|
|
84966
85004
|
}[] | undefined;
|
|
84967
85005
|
linkElementType?: NonNullable<"DocumentationPage" | "FigmaComponent"> | undefined;
|
|
85006
|
+
immutablePropertyType?: "Collection" | undefined;
|
|
84968
85007
|
};
|
|
84969
85008
|
}>;
|
|
84970
85009
|
update(designSystemId: string, versionId: string, defId: string, body: DTOElementPropertyDefinitionUpdatePayload): Promise<{
|
|
@@ -84979,6 +85018,7 @@ declare class ElementPropertyDefinitionsEndpoint {
|
|
|
84979
85018
|
designSystemVersionId: string;
|
|
84980
85019
|
targetElementType: "Token" | "Component" | "DocumentationPage";
|
|
84981
85020
|
codeName: string;
|
|
85021
|
+
isImmutable: boolean;
|
|
84982
85022
|
options?: {
|
|
84983
85023
|
id: string;
|
|
84984
85024
|
name: string;
|
|
@@ -84987,6 +85027,7 @@ declare class ElementPropertyDefinitionsEndpoint {
|
|
|
84987
85027
|
} | undefined;
|
|
84988
85028
|
}[] | undefined;
|
|
84989
85029
|
linkElementType?: NonNullable<"DocumentationPage" | "FigmaComponent"> | undefined;
|
|
85030
|
+
immutablePropertyType?: "Collection" | undefined;
|
|
84990
85031
|
};
|
|
84991
85032
|
}>;
|
|
84992
85033
|
delete(designSystemId: string, versionId: string, defId: string): Promise<any>;
|
|
@@ -86610,6 +86651,61 @@ declare class TokensEndpoint {
|
|
|
86610
86651
|
get(dsId: string, versionId: string, tokenId: string): Promise<DTODesignTokenListResponse>;
|
|
86611
86652
|
}
|
|
86612
86653
|
|
|
86654
|
+
declare class DocumentationEndpoint {
|
|
86655
|
+
private readonly requestExecutor;
|
|
86656
|
+
constructor(requestExecutor: RequestExecutor);
|
|
86657
|
+
getStructure(designSystemId: string, versionId: string): Promise<{
|
|
86658
|
+
items: ({
|
|
86659
|
+
type: "Group";
|
|
86660
|
+
id: string;
|
|
86661
|
+
persistentId: string;
|
|
86662
|
+
designSystemVersionId: string;
|
|
86663
|
+
createdAt: Date;
|
|
86664
|
+
updatedAt: Date;
|
|
86665
|
+
shortPersistentId: string;
|
|
86666
|
+
title: string;
|
|
86667
|
+
isRoot: boolean;
|
|
86668
|
+
childrenIds: string[];
|
|
86669
|
+
groupBehavior: string;
|
|
86670
|
+
} | {
|
|
86671
|
+
path: string;
|
|
86672
|
+
type: "Page";
|
|
86673
|
+
id: string;
|
|
86674
|
+
persistentId: string;
|
|
86675
|
+
designSystemVersionId: string;
|
|
86676
|
+
createdAt: Date;
|
|
86677
|
+
updatedAt: Date;
|
|
86678
|
+
shortPersistentId: string;
|
|
86679
|
+
title: string;
|
|
86680
|
+
})[];
|
|
86681
|
+
}>;
|
|
86682
|
+
getDocStructure(dsId: string, vId: string): Promise<{
|
|
86683
|
+
items: ({
|
|
86684
|
+
type: "Group";
|
|
86685
|
+
id: string;
|
|
86686
|
+
persistentId: string;
|
|
86687
|
+
designSystemVersionId: string;
|
|
86688
|
+
createdAt: Date;
|
|
86689
|
+
updatedAt: Date;
|
|
86690
|
+
shortPersistentId: string;
|
|
86691
|
+
title: string;
|
|
86692
|
+
isRoot: boolean;
|
|
86693
|
+
childrenIds: string[];
|
|
86694
|
+
groupBehavior: string;
|
|
86695
|
+
} | {
|
|
86696
|
+
path: string;
|
|
86697
|
+
type: "Page";
|
|
86698
|
+
id: string;
|
|
86699
|
+
persistentId: string;
|
|
86700
|
+
designSystemVersionId: string;
|
|
86701
|
+
createdAt: Date;
|
|
86702
|
+
updatedAt: Date;
|
|
86703
|
+
shortPersistentId: string;
|
|
86704
|
+
title: string;
|
|
86705
|
+
})[];
|
|
86706
|
+
}>;
|
|
86707
|
+
}
|
|
86708
|
+
|
|
86613
86709
|
declare class DesignSystemVersionsEndpoint {
|
|
86614
86710
|
private readonly requestExecutor;
|
|
86615
86711
|
readonly themes: ThemesEndpoint;
|
|
@@ -86623,6 +86719,7 @@ declare class DesignSystemVersionsEndpoint {
|
|
|
86623
86719
|
readonly elementPropertyValues: ElementPropertyValuesEndpoint;
|
|
86624
86720
|
readonly elementsActions: ElementsActionsEndpoint;
|
|
86625
86721
|
readonly designSystemComponents: DesignSystemComponentEndpoint;
|
|
86722
|
+
readonly documentation: DocumentationEndpoint;
|
|
86626
86723
|
constructor(requestExecutor: RequestExecutor);
|
|
86627
86724
|
list(dsId: string): Promise<{
|
|
86628
86725
|
designSystemVersions: {
|
|
@@ -88069,6 +88166,193 @@ declare class WorkspacesEndpoint {
|
|
|
88069
88166
|
}>;
|
|
88070
88167
|
delete(workspaceId: string): Promise<any>;
|
|
88071
88168
|
subscription(workspaceId: string): Promise<any>;
|
|
88169
|
+
transferOwnership(workspaceId: string, body: DTOTransferOwnershipPayload): Promise<{
|
|
88170
|
+
workspace: {
|
|
88171
|
+
id: string;
|
|
88172
|
+
profile: {
|
|
88173
|
+
name: string;
|
|
88174
|
+
color: string;
|
|
88175
|
+
handle: string;
|
|
88176
|
+
avatar?: string | undefined;
|
|
88177
|
+
billingDetails?: {
|
|
88178
|
+
address?: {
|
|
88179
|
+
street1?: string | undefined;
|
|
88180
|
+
street2?: string | undefined;
|
|
88181
|
+
city?: string | undefined;
|
|
88182
|
+
postal?: string | undefined;
|
|
88183
|
+
country?: string | undefined;
|
|
88184
|
+
state?: string | undefined;
|
|
88185
|
+
} | undefined;
|
|
88186
|
+
email?: string | undefined;
|
|
88187
|
+
companyName?: string | undefined;
|
|
88188
|
+
companyId?: string | undefined;
|
|
88189
|
+
notes?: string | undefined;
|
|
88190
|
+
vat?: string | undefined;
|
|
88191
|
+
poNumber?: string | undefined;
|
|
88192
|
+
} | undefined;
|
|
88193
|
+
};
|
|
88194
|
+
subscription: {
|
|
88195
|
+
product: "free" | "team" | "company" | "enterprise";
|
|
88196
|
+
planPriceId: string;
|
|
88197
|
+
planInterval: "yearly" | "daily" | "monthly" | "weekly";
|
|
88198
|
+
seats: number;
|
|
88199
|
+
seatLimit: number;
|
|
88200
|
+
status?: "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | undefined;
|
|
88201
|
+
card?: {
|
|
88202
|
+
cardId?: string | null | undefined;
|
|
88203
|
+
last4?: string | null | undefined;
|
|
88204
|
+
expiryMonth?: string | null | undefined;
|
|
88205
|
+
expiryYear?: string | null | undefined;
|
|
88206
|
+
brand?: string | null | undefined;
|
|
88207
|
+
name?: string | null | undefined;
|
|
88208
|
+
} | undefined;
|
|
88209
|
+
amount?: number | null | undefined;
|
|
88210
|
+
stripeProductDescription?: string | undefined;
|
|
88211
|
+
isPricePerCreator?: boolean | undefined;
|
|
88212
|
+
isTrial?: boolean | undefined;
|
|
88213
|
+
legacyVersion?: string | undefined;
|
|
88214
|
+
stripeProductFeatures?: string[] | undefined;
|
|
88215
|
+
stripeProductAdditionalFeatures?: string[] | undefined;
|
|
88216
|
+
stripeSubscriptionId?: string | null | undefined;
|
|
88217
|
+
stripeCustomerId?: string | null | undefined;
|
|
88218
|
+
subscriptionStatus?: "unknown" | "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete" | undefined;
|
|
88219
|
+
internalStatus?: "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | undefined;
|
|
88220
|
+
featuresSummary?: {
|
|
88221
|
+
designSystems: {
|
|
88222
|
+
max: number;
|
|
88223
|
+
errorMessage: string;
|
|
88224
|
+
errorReason: string;
|
|
88225
|
+
};
|
|
88226
|
+
designSystemSources: {
|
|
88227
|
+
max: number;
|
|
88228
|
+
errorMessage: string;
|
|
88229
|
+
errorReason: string;
|
|
88230
|
+
noImportJobsErrorMessage: string;
|
|
88231
|
+
noImportJobsErrorReason: string;
|
|
88232
|
+
};
|
|
88233
|
+
designSystemVersions: {
|
|
88234
|
+
max: number;
|
|
88235
|
+
errorMessage: string;
|
|
88236
|
+
errorReason: string;
|
|
88237
|
+
};
|
|
88238
|
+
themes: {
|
|
88239
|
+
max: number;
|
|
88240
|
+
errorMessage: string;
|
|
88241
|
+
errorReason: string;
|
|
88242
|
+
};
|
|
88243
|
+
brands: {
|
|
88244
|
+
max: number;
|
|
88245
|
+
errorMessage: string;
|
|
88246
|
+
errorReason: string;
|
|
88247
|
+
};
|
|
88248
|
+
codegenSchedules: {
|
|
88249
|
+
max: number;
|
|
88250
|
+
errorMessage: string;
|
|
88251
|
+
errorReason: string;
|
|
88252
|
+
};
|
|
88253
|
+
publicDocumentation: {
|
|
88254
|
+
errorMessage: string;
|
|
88255
|
+
errorReason: string;
|
|
88256
|
+
enabled: boolean;
|
|
88257
|
+
};
|
|
88258
|
+
customDocumentationUrl: {
|
|
88259
|
+
errorMessage: string;
|
|
88260
|
+
errorReason: string;
|
|
88261
|
+
enabled: boolean;
|
|
88262
|
+
};
|
|
88263
|
+
customDocumentationViewButton: {
|
|
88264
|
+
errorMessage: string;
|
|
88265
|
+
errorReason: string;
|
|
88266
|
+
enabled: boolean;
|
|
88267
|
+
};
|
|
88268
|
+
designSystemSourceAutoImport: {
|
|
88269
|
+
errorMessage: string;
|
|
88270
|
+
errorReason: string;
|
|
88271
|
+
enabled: boolean;
|
|
88272
|
+
};
|
|
88273
|
+
designSystemSlug: {
|
|
88274
|
+
errorMessage: string;
|
|
88275
|
+
errorReason: string;
|
|
88276
|
+
enabled: boolean;
|
|
88277
|
+
};
|
|
88278
|
+
ipWhitelisting: {
|
|
88279
|
+
errorMessage: string;
|
|
88280
|
+
errorReason: string;
|
|
88281
|
+
enabled: boolean;
|
|
88282
|
+
};
|
|
88283
|
+
npmRegistry: {
|
|
88284
|
+
errorMessage: string;
|
|
88285
|
+
errorReason: string;
|
|
88286
|
+
enabled: boolean;
|
|
88287
|
+
};
|
|
88288
|
+
sso: {
|
|
88289
|
+
errorMessage: string;
|
|
88290
|
+
errorReason: string;
|
|
88291
|
+
enabled: boolean;
|
|
88292
|
+
};
|
|
88293
|
+
workspacePaidSeats: {
|
|
88294
|
+
max: number;
|
|
88295
|
+
errorMessage: string;
|
|
88296
|
+
errorReason: string;
|
|
88297
|
+
};
|
|
88298
|
+
workspaceViewers: {
|
|
88299
|
+
max: number;
|
|
88300
|
+
errorMessage: string;
|
|
88301
|
+
errorReason: string;
|
|
88302
|
+
};
|
|
88303
|
+
customDocumentationExporter: {
|
|
88304
|
+
errorMessage: string;
|
|
88305
|
+
errorReason: string;
|
|
88306
|
+
enabled: boolean;
|
|
88307
|
+
};
|
|
88308
|
+
protectedPages: {
|
|
88309
|
+
errorMessage: string;
|
|
88310
|
+
errorReason: string;
|
|
88311
|
+
enabled: boolean;
|
|
88312
|
+
};
|
|
88313
|
+
approvals: {
|
|
88314
|
+
errorMessage: string;
|
|
88315
|
+
errorReason: string;
|
|
88316
|
+
enabled: boolean;
|
|
88317
|
+
};
|
|
88318
|
+
selectivePublishing: {
|
|
88319
|
+
errorMessage: string;
|
|
88320
|
+
errorReason: string;
|
|
88321
|
+
enabled: boolean;
|
|
88322
|
+
};
|
|
88323
|
+
designSystemAccessModes: {
|
|
88324
|
+
errorMessage: string;
|
|
88325
|
+
errorReason: string;
|
|
88326
|
+
enabled: boolean;
|
|
88327
|
+
};
|
|
88328
|
+
designSystemRoles: {
|
|
88329
|
+
errorMessage: string;
|
|
88330
|
+
errorReason: string;
|
|
88331
|
+
enabled: boolean;
|
|
88332
|
+
};
|
|
88333
|
+
} | undefined;
|
|
88334
|
+
stripeSubscriptionMainItemId?: string | undefined;
|
|
88335
|
+
currentPeriodStart?: string | undefined;
|
|
88336
|
+
currentPeriodEnd?: string | undefined;
|
|
88337
|
+
subscriptionStatusUpdatedAt?: string | undefined;
|
|
88338
|
+
cancelAt?: string | null | undefined;
|
|
88339
|
+
billingType?: "Auto" | "Invoice" | undefined;
|
|
88340
|
+
daysUntilDue?: number | undefined;
|
|
88341
|
+
};
|
|
88342
|
+
npmRegistry?: {
|
|
88343
|
+
enabledScopes: string[];
|
|
88344
|
+
bypassProxy: boolean;
|
|
88345
|
+
registryType: "Custom" | "NPMJS" | "GitHub" | "AzureDevOps" | "Artifactory";
|
|
88346
|
+
authType: "Custom" | "None" | "Basic" | "Bearer";
|
|
88347
|
+
registryUrl: string;
|
|
88348
|
+
proxyUrl: string;
|
|
88349
|
+
customRegistryUrl?: string | undefined;
|
|
88350
|
+
accessToken?: string | undefined;
|
|
88351
|
+
username?: string | undefined;
|
|
88352
|
+
password?: string | undefined;
|
|
88353
|
+
} | undefined;
|
|
88354
|
+
};
|
|
88355
|
+
}>;
|
|
88072
88356
|
}
|
|
88073
88357
|
|
|
88074
88358
|
declare class UsersEndpoint {
|
|
@@ -90910,4 +91194,4 @@ declare class FrontendVersionRoomYDoc {
|
|
|
90910
91194
|
|
|
90911
91195
|
declare function generatePageContentHash(content: DocumentationPageEditorModel, definitions: PageBlockDefinition[], debug?: boolean): string;
|
|
90912
91196
|
|
|
90913
|
-
export { BackendVersionRoomYDoc, BlockDefinitionUtils, BlockParsingUtils, BrandsEndpoint, CodegenEndpoint, Collection, DTOAppBootstrapDataQuery, DTOAppBootstrapDataResponse, DTOAssetRenderConfiguration, DTOAuthenticatedUser, DTOAuthenticatedUserProfile, DTOAuthenticatedUserResponse, DTOBffFigmaImportRequestBody, DTOBffImportRequestBody, DTOBffUploadImportRequestBody, DTOBrand, DTOBrandCreateResponse, DTOBrandGetResponse, DTOBrandsListResponse, DTOColorTokenInlineData, DTOCreateBrandInput, DTOCreateDocumentationGroupInput, DTOCreateDocumentationPageInputV2, DTOCreateDocumentationTabInput, DTOCreateVersionInput, DTODataSource, DTODataSourceCreationResponse, DTODataSourceFigma, DTODataSourceFigmaCloud, DTODataSourceFigmaVariablesPlugin, DTODataSourceTokenStudio, DTODataSourcesListResponse, DTODeleteDocumentationGroupInput, DTODeleteDocumentationPageInputV2, DTODeleteDocumentationTabGroupInput, DTODesignElementsDataDiffResponse, DTODesignSystem, DTODesignSystemComponentCreateInput, DTODesignSystemContactsResponse, DTODesignSystemCreateInput, DTODesignSystemInvitation, DTODesignSystemMember, DTODesignSystemMemberListResponse, DTODesignSystemMembersUpdatePayload, DTODesignSystemMembersUpdateResponse, DTODesignSystemResponse, DTODesignSystemRole, DTODesignSystemUpdateAccessModeInput, DTODesignSystemUpdateInput, DTODesignSystemVersion, DTODesignSystemVersionCreationResponse, DTODesignSystemVersionGetResponse, DTODesignSystemVersionJobStatusResponse, DTODesignSystemVersionJobsResponse, DTODesignSystemVersionStats, DTODesignSystemVersionStatsQuery, DTODesignSystemVersionsListResponse, DTODesignSystemsListResponse, DTODesignToken, DTODesignTokenCreatePayload, DTODesignTokenGroup, DTODesignTokenGroupCreatePayload, DTODesignTokenGroupListResponse, DTODesignTokenGroupResponse, DTODesignTokenListResponse, DTODesignTokenResponse, DTODiffCountBase, DTODocumentationDraftChangeType, DTODocumentationDraftState, DTODocumentationDraftStateCreated, DTODocumentationDraftStateDeleted, DTODocumentationDraftStateUpdated, DTODocumentationGroupApprovalState, DTODocumentationGroupCreateActionInputV2, DTODocumentationGroupCreateActionOutputV2, DTODocumentationGroupDeleteActionInputV2, DTODocumentationGroupDeleteActionOutputV2, DTODocumentationGroupDuplicateActionInputV2, DTODocumentationGroupDuplicateActionOutputV2, DTODocumentationGroupMoveActionInputV2, DTODocumentationGroupMoveActionOutputV2, DTODocumentationGroupRestoreActionInput, DTODocumentationGroupRestoreActionOutput, DTODocumentationGroupStructureV1, DTODocumentationGroupUpdateActionInputV2, DTODocumentationGroupUpdateActionOutputV2, DTODocumentationGroupV1, DTODocumentationGroupV2, DTODocumentationHierarchyV2, DTODocumentationItemConfigurationV1, DTODocumentationItemConfigurationV2, DTODocumentationItemHeaderV2, DTODocumentationLinkPreviewRequest, DTODocumentationLinkPreviewResponse, DTODocumentationPageAnchor, DTODocumentationPageApprovalState, DTODocumentationPageApprovalStateChangeActionInput, DTODocumentationPageApprovalStateChangeActionOutput, DTODocumentationPageApprovalStateChangeInput, DTODocumentationPageContent, DTODocumentationPageContentGetResponse, DTODocumentationPageCreateActionInputV2, DTODocumentationPageCreateActionOutputV2, DTODocumentationPageDeleteActionInputV2, DTODocumentationPageDeleteActionOutputV2, DTODocumentationPageDuplicateActionInputV2, DTODocumentationPageDuplicateActionOutputV2, DTODocumentationPageMoveActionInputV2, DTODocumentationPageMoveActionOutputV2, DTODocumentationPageRestoreActionInput, DTODocumentationPageRestoreActionOutput, DTODocumentationPageRoomHeaderData, DTODocumentationPageRoomHeaderDataUpdate, DTODocumentationPageSnapshot, DTODocumentationPageUpdateActionInputV2, DTODocumentationPageUpdateActionOutputV2, DTODocumentationPageV2, DTODocumentationPublishMetadata, DTODocumentationPublishTypeQueryParams, DTODocumentationStructure, DTODocumentationStructureGroupItem, DTODocumentationStructureItem, DTODocumentationStructurePageItem, DTODocumentationTabCreateActionInputV2, DTODocumentationTabCreateActionOutputV2, type DTODocumentationTabGroupCreateActionInputV2, DTODocumentationTabGroupDeleteActionInputV2, DTODocumentationTabGroupDeleteActionOutputV2, DTODownloadAssetsRequest, DTODownloadAssetsResponse, DTODuplicateDocumentationGroupInput, DTODuplicateDocumentationPageInputV2, DTOElementActionInput, DTOElementActionOutput, DTOElementPropertyDefinition, DTOElementPropertyDefinitionCreatePayload, DTOElementPropertyDefinitionListResponse, DTOElementPropertyDefinitionOption, DTOElementPropertyDefinitionResponse, DTOElementPropertyDefinitionUpdatePayload, DTOElementPropertyValue, DTOElementPropertyValueListResponse, DTOElementPropertyValueResponse, DTOElementPropertyValueUpsertPaylod, DTOElementView, DTOElementViewBasePropertyColumn, DTOElementViewColumn, DTOElementViewColumnSharedAttributes, DTOElementViewPropertyDefinitionColumn, DTOElementViewThemeColumn, DTOElementViewsListResponse, DTOElementsGetOutput, type DTOElementsGetQueryParsed, type DTOElementsGetQueryRaw, DTOElementsGetQuerySchema, DTOElementsGetTypeFilter, DTOExportJob, DTOExportJobCreatedBy, DTOExportJobDesignSystemPreview, DTOExportJobDesignSystemVersionPreview, DTOExportJobDestinations, DTOExportJobResponse, DTOExportJobResult, DTOExportJobsListFilter, DTOExporter, DTOExporterCreateInput, DTOExporterCreateOutput, DTOExporterGitProviderEnum, DTOExporterListQuery, DTOExporterListResponse, DTOExporterMembership, DTOExporterMembershipRole, DTOExporterProperty, DTOExporterPropertyListResponse, DTOExporterSource, DTOExporterType, DTOExporterUpdateInput, DTOFigmaComponent, DTOFigmaComponentBooleanProperty, DTOFigmaComponentInstanceSwapProperty, DTOFigmaComponentListResponse, DTOFigmaComponentProperty, DTOFigmaComponentPropertyMap, DTOFigmaComponentTextProperty, DTOFigmaComponentVariantProperty, DTOFigmaNode, DTOFigmaNodeData, DTOFigmaNodeOrigin, DTOFigmaNodeRenderActionInput, DTOFigmaNodeRenderActionOutput, DTOFigmaNodeRenderFormat, DTOFigmaNodeRenderInput, DTOGetBlockDefinitionsOutput, DTOGetDocumentationPageAnchorsResponse, DTOGitBranch, DTOGitOrganization, DTOGitProject, DTOGitRepository, DTOImportJob, DTOImportJobResponse, DTOIntegration, DTOIntegrationCredentials, DTOIntegrationOAuthGetResponse, DTOIntegrationPostResponse, DTOIntegrationsGetListResponse, DTOLiveblocksAuthRequest, DTOLiveblocksAuthResponse, DTOMoveDocumentationGroupInput, DTOMoveDocumentationPageInputV2, DTONpmRegistryConfig, DTONpmRegistryConfigConstants, DTOObjectMeta, DTOPageBlockColorV2, DTOPageBlockDefinition, DTOPageBlockDefinitionBehavior, DTOPageBlockDefinitionItem, DTOPageBlockDefinitionLayout, DTOPageBlockDefinitionProperty, DTOPageBlockDefinitionVariant, DTOPageBlockItemV2, DTOPagination, DTOPipeline, DTOPipelineCreateBody, DTOPipelineListQuery, DTOPipelineListResponse, DTOPipelineResponse, DTOPipelineTriggerBody, DTOPipelineUpdateBody, DTOPublishDocumentationChanges, DTOPublishDocumentationRequest, DTOPublishDocumentationResponse, DTORenderedAssetFile, DTORestoreDocumentationGroupInput, DTORestoreDocumentationPageInput, DTOTheme, DTOThemeCreatePayload, DTOThemeListResponse, DTOThemeOverride, DTOThemeOverrideCreatePayload, DTOThemeResponse, DTOTokenCollection, DTOTokenCollectionsListReponse, DTOUpdateDocumentationGroupInput, DTOUpdateDocumentationPageInputV2, DTOUpdateUserNotificationSettingsPayload, DTOUpdateVersionInput, DTOUser, DTOUserGetResponse, DTOUserNotificationSettingsResponse, DTOUserOnboarding, DTOUserOnboardingDepartment, DTOUserOnboardingJobLevel, DTOUserProfile, DTOUserProfileUpdate, DTOUserProfileUpdatePayload, DTOUserProfileUpdateResponse, DTOUserSource, DTOUserWorkspaceMembership, DTOUserWorkspaceMembershipsResponse, DTOWorkspace, DTOWorkspaceCreateInput, DTOWorkspaceIntegrationGetGitObjectsInput, DTOWorkspaceIntegrationOauthInput, DTOWorkspaceIntegrationPATInput, DTOWorkspaceInvitationInput, DTOWorkspaceInvitationUpdateResponse, DTOWorkspaceInvitationsListInput, DTOWorkspaceInvitationsResponse, DTOWorkspaceInviteUpdate, DTOWorkspaceMember, DTOWorkspaceMembersListResponse, DTOWorkspaceProfile, DTOWorkspaceResponse, DTOWorkspaceRole, DesignSystemBffEndpoint, DesignSystemComponentEndpoint, DesignSystemContactsEndpoint, DesignSystemMembersEndpoint, DesignSystemSourcesEndpoint, DesignSystemVersionsEndpoint, DesignSystemsEndpoint, DimensionsVariableScopeType, DocumentationHierarchySettings, DocumentationPageEditorModel, DocumentationPageV1DTO, ElementPropertyDefinitionsEndpoint, ElementPropertyValuesEndpoint, ElementsActionsEndpoint, ExportersEndpoint, FormattedCollections, FrontendVersionRoomYDoc, ImportJobsEndpoint, type ListItemNode, type ListNode, ListTreeBuilder, NpmRegistryInput, ObjectMeta, OverridesEndpoint, PageBlockEditorModel, PageSectionEditorModel, PipelinesEndpoint, type ProsemirrorBlockItem, type ProsemirrorMark, type ProsemirrorNode, RGB, RGBA, type RequestEexecutorServerErrorCode, RequestExecutor, type RequestExecutorConfig, RequestExecutorError, type RequestExecutorErrorType, type RequestExecutorJSONRequest, ResolvedVariableType, StringVariableScopeType, SupernovaApiClient, ThemesEndpoint, TokenCollectionsEndpoint, TokenGroupsEndpoint, TokensEndpoint, UsersEndpoint, Variable, VariableAlias, VariableMode, VariableValue, VariablesMapping, VersionRoomBaseYDoc, VersionSQSPayload, VersionStatsEndpoint, WorkspaceConfigurationPayload, WorkspaceInvitationsEndpoint, WorkspaceMembersEndpoint, WorkspacesEndpoint, applyPrivacyConfigurationToNestedItems, blockToProsemirrorNode, buildDocPagePublishPaths, calculateElementParentChain, documentationItemConfigurationToDTOV1, documentationItemConfigurationToDTOV2, documentationPageToDTOV2, documentationPagesFixedConfigurationToDTOV1, documentationPagesFixedConfigurationToDTOV2, documentationPagesToDTOV1, documentationPagesToDTOV2, elementGroupsToDocumentationGroupDTOV1, elementGroupsToDocumentationGroupDTOV2, elementGroupsToDocumentationGroupFixedConfigurationDTOV1, elementGroupsToDocumentationGroupFixedConfigurationDTOV2, elementGroupsToDocumentationGroupStructureDTOV1, generateHash, generatePageContentHash, getDtoDefaultItemConfigurationV1, getDtoDefaultItemConfigurationV2, getMockPageBlockDefinitions, gitBranchToDto, gitOrganizationToDto, gitProjectToDto, gitRepositoryToDto, innerEditorProsemirrorSchema, integrationCredentialToDto, integrationToDto, itemConfigurationToYjs, mainEditorProsemirrorSchema, pageToProsemirrorDoc, pageToYDoc, pageToYXmlFragment, pipelineToDto, prosemirrorDocToPage, prosemirrorDocToRichTextPropertyValue, prosemirrorNodeToSection, prosemirrorNodesToBlocks, richTextPropertyValueToProsemirror, serializeAsCustomBlock, shallowProsemirrorNodeToBlock, validateDesignSystemVersion, validateSsoPayload, yDocToPage, yXmlFragmentToPage, yjsToDocumentationHierarchy, yjsToItemConfiguration };
|
|
91197
|
+
export { BackendVersionRoomYDoc, BlockDefinitionUtils, BlockParsingUtils, BrandsEndpoint, CodegenEndpoint, Collection, DTOAppBootstrapDataQuery, DTOAppBootstrapDataResponse, DTOAssetRenderConfiguration, DTOAuthenticatedUser, DTOAuthenticatedUserProfile, DTOAuthenticatedUserResponse, DTOBffFigmaImportRequestBody, DTOBffImportRequestBody, DTOBffUploadImportRequestBody, DTOBrand, DTOBrandCreateResponse, DTOBrandGetResponse, DTOBrandsListResponse, DTOColorTokenInlineData, DTOCreateBrandInput, DTOCreateDocumentationGroupInput, DTOCreateDocumentationPageInputV2, DTOCreateDocumentationTabInput, DTOCreateVersionInput, DTODataSource, DTODataSourceCreationResponse, DTODataSourceFigma, DTODataSourceFigmaCloud, DTODataSourceFigmaVariablesPlugin, DTODataSourceTokenStudio, DTODataSourcesListResponse, DTODeleteDocumentationGroupInput, DTODeleteDocumentationPageInputV2, DTODeleteDocumentationTabGroupInput, DTODesignElementsDataDiffResponse, DTODesignSystem, DTODesignSystemComponentCreateInput, DTODesignSystemContactsResponse, DTODesignSystemCreateInput, DTODesignSystemInvitation, DTODesignSystemMember, DTODesignSystemMemberListResponse, DTODesignSystemMembersUpdatePayload, DTODesignSystemMembersUpdateResponse, DTODesignSystemResponse, DTODesignSystemRole, DTODesignSystemUpdateAccessModeInput, DTODesignSystemUpdateInput, DTODesignSystemVersion, DTODesignSystemVersionCreationResponse, DTODesignSystemVersionGetResponse, DTODesignSystemVersionJobStatusResponse, DTODesignSystemVersionJobsResponse, DTODesignSystemVersionStats, DTODesignSystemVersionStatsQuery, DTODesignSystemVersionsListResponse, DTODesignSystemsListResponse, DTODesignToken, DTODesignTokenCreatePayload, DTODesignTokenGroup, DTODesignTokenGroupCreatePayload, DTODesignTokenGroupListResponse, DTODesignTokenGroupResponse, DTODesignTokenListResponse, DTODesignTokenResponse, DTODiffCountBase, DTODocumentationDraftChangeType, DTODocumentationDraftState, DTODocumentationDraftStateCreated, DTODocumentationDraftStateDeleted, DTODocumentationDraftStateUpdated, DTODocumentationGroupApprovalState, DTODocumentationGroupCreateActionInputV2, DTODocumentationGroupCreateActionOutputV2, DTODocumentationGroupDeleteActionInputV2, DTODocumentationGroupDeleteActionOutputV2, DTODocumentationGroupDuplicateActionInputV2, DTODocumentationGroupDuplicateActionOutputV2, DTODocumentationGroupMoveActionInputV2, DTODocumentationGroupMoveActionOutputV2, DTODocumentationGroupRestoreActionInput, DTODocumentationGroupRestoreActionOutput, DTODocumentationGroupStructureV1, DTODocumentationGroupUpdateActionInputV2, DTODocumentationGroupUpdateActionOutputV2, DTODocumentationGroupV1, DTODocumentationGroupV2, DTODocumentationHierarchyV2, DTODocumentationItemConfigurationV1, DTODocumentationItemConfigurationV2, DTODocumentationItemHeaderV2, DTODocumentationLinkPreviewRequest, DTODocumentationLinkPreviewResponse, DTODocumentationPageAnchor, DTODocumentationPageApprovalState, DTODocumentationPageApprovalStateChangeActionInput, DTODocumentationPageApprovalStateChangeActionOutput, DTODocumentationPageApprovalStateChangeInput, DTODocumentationPageContent, DTODocumentationPageContentGetResponse, DTODocumentationPageCreateActionInputV2, DTODocumentationPageCreateActionOutputV2, DTODocumentationPageDeleteActionInputV2, DTODocumentationPageDeleteActionOutputV2, DTODocumentationPageDuplicateActionInputV2, DTODocumentationPageDuplicateActionOutputV2, DTODocumentationPageMoveActionInputV2, DTODocumentationPageMoveActionOutputV2, DTODocumentationPageRestoreActionInput, DTODocumentationPageRestoreActionOutput, DTODocumentationPageRoomHeaderData, DTODocumentationPageRoomHeaderDataUpdate, DTODocumentationPageSnapshot, DTODocumentationPageUpdateActionInputV2, DTODocumentationPageUpdateActionOutputV2, DTODocumentationPageV2, DTODocumentationPublishMetadata, DTODocumentationPublishTypeQueryParams, DTODocumentationStructure, DTODocumentationStructureGroupItem, DTODocumentationStructureItem, DTODocumentationStructurePageItem, DTODocumentationTabCreateActionInputV2, DTODocumentationTabCreateActionOutputV2, type DTODocumentationTabGroupCreateActionInputV2, DTODocumentationTabGroupDeleteActionInputV2, DTODocumentationTabGroupDeleteActionOutputV2, DTODownloadAssetsRequest, DTODownloadAssetsResponse, DTODuplicateDocumentationGroupInput, DTODuplicateDocumentationPageInputV2, DTOElementActionInput, DTOElementActionOutput, DTOElementPropertyDefinition, DTOElementPropertyDefinitionCreatePayload, DTOElementPropertyDefinitionListResponse, DTOElementPropertyDefinitionOption, DTOElementPropertyDefinitionResponse, DTOElementPropertyDefinitionUpdatePayload, DTOElementPropertyValue, DTOElementPropertyValueListResponse, DTOElementPropertyValueResponse, DTOElementPropertyValueUpsertPaylod, DTOElementView, DTOElementViewBasePropertyColumn, DTOElementViewColumn, DTOElementViewColumnSharedAttributes, DTOElementViewPropertyDefinitionColumn, DTOElementViewThemeColumn, DTOElementViewsListResponse, DTOElementsGetOutput, type DTOElementsGetQueryParsed, type DTOElementsGetQueryRaw, DTOElementsGetQuerySchema, DTOElementsGetTypeFilter, DTOExportJob, DTOExportJobCreatedBy, DTOExportJobDesignSystemPreview, DTOExportJobDesignSystemVersionPreview, DTOExportJobDestinations, DTOExportJobResponse, DTOExportJobResult, DTOExportJobsListFilter, DTOExporter, DTOExporterCreateInput, DTOExporterCreateOutput, DTOExporterGitProviderEnum, DTOExporterListQuery, DTOExporterListResponse, DTOExporterMembership, DTOExporterMembershipRole, DTOExporterProperty, DTOExporterPropertyListResponse, DTOExporterSource, DTOExporterType, DTOExporterUpdateInput, DTOFigmaComponent, DTOFigmaComponentBooleanProperty, DTOFigmaComponentInstanceSwapProperty, DTOFigmaComponentListResponse, DTOFigmaComponentProperty, DTOFigmaComponentPropertyMap, DTOFigmaComponentTextProperty, DTOFigmaComponentVariantProperty, DTOFigmaNode, DTOFigmaNodeData, DTOFigmaNodeOrigin, DTOFigmaNodeRenderActionInput, DTOFigmaNodeRenderActionOutput, DTOFigmaNodeRenderFormat, DTOFigmaNodeRenderInput, DTOGetBlockDefinitionsOutput, DTOGetDocumentationPageAnchorsResponse, DTOGitBranch, DTOGitOrganization, DTOGitProject, DTOGitRepository, DTOImportJob, DTOImportJobResponse, DTOIntegration, DTOIntegrationCredentials, DTOIntegrationOAuthGetResponse, DTOIntegrationPostResponse, DTOIntegrationsGetListResponse, DTOLiveblocksAuthRequest, DTOLiveblocksAuthResponse, DTOMoveDocumentationGroupInput, DTOMoveDocumentationPageInputV2, DTONpmRegistryConfig, DTONpmRegistryConfigConstants, DTOObjectMeta, DTOPageBlockColorV2, DTOPageBlockDefinition, DTOPageBlockDefinitionBehavior, DTOPageBlockDefinitionItem, DTOPageBlockDefinitionLayout, DTOPageBlockDefinitionProperty, DTOPageBlockDefinitionVariant, DTOPageBlockItemV2, DTOPagination, DTOPipeline, DTOPipelineCreateBody, DTOPipelineListQuery, DTOPipelineListResponse, DTOPipelineResponse, DTOPipelineTriggerBody, DTOPipelineUpdateBody, DTOPublishDocumentationChanges, DTOPublishDocumentationRequest, DTOPublishDocumentationResponse, DTORenderedAssetFile, DTORestoreDocumentationGroupInput, DTORestoreDocumentationPageInput, DTOTheme, DTOThemeCreatePayload, DTOThemeListResponse, DTOThemeOverride, DTOThemeOverrideCreatePayload, DTOThemeResponse, DTOTokenCollection, DTOTokenCollectionsListReponse, DTOTransferOwnershipPayload, DTOUpdateDocumentationGroupInput, DTOUpdateDocumentationPageInputV2, DTOUpdateUserNotificationSettingsPayload, DTOUpdateVersionInput, DTOUser, DTOUserGetResponse, DTOUserNotificationSettingsResponse, DTOUserOnboarding, DTOUserOnboardingDepartment, DTOUserOnboardingJobLevel, DTOUserProfile, DTOUserProfileUpdate, DTOUserProfileUpdatePayload, DTOUserProfileUpdateResponse, DTOUserSource, DTOUserWorkspaceMembership, DTOUserWorkspaceMembershipsResponse, DTOWorkspace, DTOWorkspaceCreateInput, DTOWorkspaceIntegrationGetGitObjectsInput, DTOWorkspaceIntegrationOauthInput, DTOWorkspaceIntegrationPATInput, DTOWorkspaceInvitationInput, DTOWorkspaceInvitationUpdateResponse, DTOWorkspaceInvitationsListInput, DTOWorkspaceInvitationsResponse, DTOWorkspaceInviteUpdate, DTOWorkspaceMember, DTOWorkspaceMembersListResponse, DTOWorkspaceProfile, DTOWorkspaceResponse, DTOWorkspaceRole, DesignSystemBffEndpoint, DesignSystemComponentEndpoint, DesignSystemContactsEndpoint, DesignSystemMembersEndpoint, DesignSystemSourcesEndpoint, DesignSystemVersionsEndpoint, DesignSystemsEndpoint, DimensionsVariableScopeType, DocumentationHierarchySettings, DocumentationPageEditorModel, DocumentationPageV1DTO, ElementPropertyDefinitionsEndpoint, ElementPropertyValuesEndpoint, ElementsActionsEndpoint, ExportersEndpoint, FormattedCollections, FrontendVersionRoomYDoc, ImportJobsEndpoint, type ListItemNode, type ListNode, ListTreeBuilder, NpmRegistryInput, ObjectMeta, OverridesEndpoint, PageBlockEditorModel, PageSectionEditorModel, PipelinesEndpoint, type ProsemirrorBlockItem, type ProsemirrorMark, type ProsemirrorNode, RGB, RGBA, type RequestEexecutorServerErrorCode, RequestExecutor, type RequestExecutorConfig, RequestExecutorError, type RequestExecutorErrorType, type RequestExecutorJSONRequest, ResolvedVariableType, StringVariableScopeType, SupernovaApiClient, ThemesEndpoint, TokenCollectionsEndpoint, TokenGroupsEndpoint, TokensEndpoint, UsersEndpoint, Variable, VariableAlias, VariableMode, VariableValue, VariablesMapping, VersionRoomBaseYDoc, VersionSQSPayload, VersionStatsEndpoint, WorkspaceConfigurationPayload, WorkspaceInvitationsEndpoint, WorkspaceMembersEndpoint, WorkspacesEndpoint, applyPrivacyConfigurationToNestedItems, blockToProsemirrorNode, buildDocPagePublishPaths, calculateElementParentChain, documentationItemConfigurationToDTOV1, documentationItemConfigurationToDTOV2, documentationPageToDTOV2, documentationPagesFixedConfigurationToDTOV1, documentationPagesFixedConfigurationToDTOV2, documentationPagesToDTOV1, documentationPagesToDTOV2, elementGroupsToDocumentationGroupDTOV1, elementGroupsToDocumentationGroupDTOV2, elementGroupsToDocumentationGroupFixedConfigurationDTOV1, elementGroupsToDocumentationGroupFixedConfigurationDTOV2, elementGroupsToDocumentationGroupStructureDTOV1, generateHash, generatePageContentHash, getDtoDefaultItemConfigurationV1, getDtoDefaultItemConfigurationV2, getMockPageBlockDefinitions, gitBranchToDto, gitOrganizationToDto, gitProjectToDto, gitRepositoryToDto, innerEditorProsemirrorSchema, integrationCredentialToDto, integrationToDto, itemConfigurationToYjs, mainEditorProsemirrorSchema, pageToProsemirrorDoc, pageToYDoc, pageToYXmlFragment, pipelineToDto, prosemirrorDocToPage, prosemirrorDocToRichTextPropertyValue, prosemirrorNodeToSection, prosemirrorNodesToBlocks, richTextPropertyValueToProsemirror, serializeAsCustomBlock, shallowProsemirrorNodeToBlock, validateDesignSystemVersion, validateSsoPayload, yDocToPage, yXmlFragmentToPage, yjsToDocumentationHierarchy, yjsToItemConfiguration };
|