@supernova-studio/client 0.57.10 → 0.57.11
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 +461 -378
- package/dist/index.d.ts +461 -378
- package/dist/index.js +116 -81
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +116 -81
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/api/dto/elements/properties/property-values.ts +23 -2
- package/src/api/endpoints/design-system/versions/index.ts +1 -0
- package/src/api/endpoints/design-system/versions/property-values.ts +25 -0
- package/src/api/endpoints/design-system/versions/versions.ts +3 -0
package/dist/index.d.mts
CHANGED
|
@@ -40985,7 +40985,7 @@ declare const DTOElementPropertyValue: z.ZodObject<{
|
|
|
40985
40985
|
valuePreview?: string | undefined;
|
|
40986
40986
|
}>;
|
|
40987
40987
|
type DTOElementPropertyValue = z.infer<typeof DTOElementPropertyValue>;
|
|
40988
|
-
declare const
|
|
40988
|
+
declare const DTOElementPropertyValueListResponse: z.ZodObject<{
|
|
40989
40989
|
values: z.ZodArray<z.ZodObject<{
|
|
40990
40990
|
id: z.ZodString;
|
|
40991
40991
|
designSystemVersionId: z.ZodString;
|
|
@@ -41027,7 +41027,64 @@ declare const DTOElementPropertyValuesGetResponse: z.ZodObject<{
|
|
|
41027
41027
|
valuePreview?: string | undefined;
|
|
41028
41028
|
}[];
|
|
41029
41029
|
}>;
|
|
41030
|
-
type
|
|
41030
|
+
type DTOElementPropertyValueListResponse = z.infer<typeof DTOElementPropertyValueListResponse>;
|
|
41031
|
+
declare const DTOElementPropertyValueResponse: z.ZodObject<{
|
|
41032
|
+
value: z.ZodObject<{
|
|
41033
|
+
id: z.ZodString;
|
|
41034
|
+
designSystemVersionId: z.ZodString;
|
|
41035
|
+
definitionId: z.ZodString;
|
|
41036
|
+
targetElementId: z.ZodString;
|
|
41037
|
+
value: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
|
|
41038
|
+
valuePreview: z.ZodOptional<z.ZodString>;
|
|
41039
|
+
}, "strip", z.ZodTypeAny, {
|
|
41040
|
+
id: string;
|
|
41041
|
+
designSystemVersionId: string;
|
|
41042
|
+
definitionId: string;
|
|
41043
|
+
targetElementId: string;
|
|
41044
|
+
value?: string | number | boolean | undefined;
|
|
41045
|
+
valuePreview?: string | undefined;
|
|
41046
|
+
}, {
|
|
41047
|
+
id: string;
|
|
41048
|
+
designSystemVersionId: string;
|
|
41049
|
+
definitionId: string;
|
|
41050
|
+
targetElementId: string;
|
|
41051
|
+
value?: string | number | boolean | undefined;
|
|
41052
|
+
valuePreview?: string | undefined;
|
|
41053
|
+
}>;
|
|
41054
|
+
}, "strip", z.ZodTypeAny, {
|
|
41055
|
+
value: {
|
|
41056
|
+
id: string;
|
|
41057
|
+
designSystemVersionId: string;
|
|
41058
|
+
definitionId: string;
|
|
41059
|
+
targetElementId: string;
|
|
41060
|
+
value?: string | number | boolean | undefined;
|
|
41061
|
+
valuePreview?: string | undefined;
|
|
41062
|
+
};
|
|
41063
|
+
}, {
|
|
41064
|
+
value: {
|
|
41065
|
+
id: string;
|
|
41066
|
+
designSystemVersionId: string;
|
|
41067
|
+
definitionId: string;
|
|
41068
|
+
targetElementId: string;
|
|
41069
|
+
value?: string | number | boolean | undefined;
|
|
41070
|
+
valuePreview?: string | undefined;
|
|
41071
|
+
};
|
|
41072
|
+
}>;
|
|
41073
|
+
type DTOElementPropertyValueResponse = z.infer<typeof DTOElementPropertyValueResponse>;
|
|
41074
|
+
declare const DTOElementPropertyValueUpsertPaylod: z.ZodObject<{
|
|
41075
|
+
definitionId: z.ZodString;
|
|
41076
|
+
targetElementId: z.ZodString;
|
|
41077
|
+
value: z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBoolean]>;
|
|
41078
|
+
}, "strip", z.ZodTypeAny, {
|
|
41079
|
+
value: string | number | boolean;
|
|
41080
|
+
definitionId: string;
|
|
41081
|
+
targetElementId: string;
|
|
41082
|
+
}, {
|
|
41083
|
+
value: string | number | boolean;
|
|
41084
|
+
definitionId: string;
|
|
41085
|
+
targetElementId: string;
|
|
41086
|
+
}>;
|
|
41087
|
+
type DTOElementPropertyValueUpsertPaylod = z.infer<typeof DTOElementPropertyValueUpsertPaylod>;
|
|
41031
41088
|
|
|
41032
41089
|
declare const DTOElementActionOutput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
41033
41090
|
type: z.ZodLiteral<"DocumentationPageCreate">;
|
|
@@ -84436,6 +84493,55 @@ declare class OverridesEndpoint {
|
|
|
84436
84493
|
create(dsId: string, versionId: string, themeId: string, body: any): Promise<any>;
|
|
84437
84494
|
}
|
|
84438
84495
|
|
|
84496
|
+
declare class ElementPropertyDefinitionsEndpoint {
|
|
84497
|
+
private readonly requestExecutor;
|
|
84498
|
+
constructor(requestExecutor: RequestExecutor);
|
|
84499
|
+
list(designSystemId: string, versionId: string): Promise<{
|
|
84500
|
+
definitions: {
|
|
84501
|
+
type: "Text" | "Number" | "Boolean" | "Select" | "Generic" | "Link" | "URL";
|
|
84502
|
+
id: string;
|
|
84503
|
+
persistentId: string;
|
|
84504
|
+
meta: {
|
|
84505
|
+
name: string;
|
|
84506
|
+
description?: string | undefined;
|
|
84507
|
+
};
|
|
84508
|
+
designSystemVersionId: string;
|
|
84509
|
+
targetElementType: "Token" | "Component" | "DocumentationPage";
|
|
84510
|
+
codeName: string;
|
|
84511
|
+
options?: {
|
|
84512
|
+
id: string;
|
|
84513
|
+
name: string;
|
|
84514
|
+
backgroundColor?: {
|
|
84515
|
+
value: string;
|
|
84516
|
+
} | undefined;
|
|
84517
|
+
}[] | undefined;
|
|
84518
|
+
linkElementType?: NonNullable<"DocumentationPage" | "FigmaComponent"> | undefined;
|
|
84519
|
+
}[];
|
|
84520
|
+
}>;
|
|
84521
|
+
create(designSystemId: string, versionId: string, body: DTOElementPropertyDefinitionCreatePayload): Promise<{
|
|
84522
|
+
definition: {
|
|
84523
|
+
type: "Text" | "Number" | "Boolean" | "Select" | "Generic" | "Link" | "URL";
|
|
84524
|
+
id: string;
|
|
84525
|
+
persistentId: string;
|
|
84526
|
+
meta: {
|
|
84527
|
+
name: string;
|
|
84528
|
+
description?: string | undefined;
|
|
84529
|
+
};
|
|
84530
|
+
designSystemVersionId: string;
|
|
84531
|
+
targetElementType: "Token" | "Component" | "DocumentationPage";
|
|
84532
|
+
codeName: string;
|
|
84533
|
+
options?: {
|
|
84534
|
+
id: string;
|
|
84535
|
+
name: string;
|
|
84536
|
+
backgroundColor?: {
|
|
84537
|
+
value: string;
|
|
84538
|
+
} | undefined;
|
|
84539
|
+
}[] | undefined;
|
|
84540
|
+
linkElementType?: NonNullable<"DocumentationPage" | "FigmaComponent"> | undefined;
|
|
84541
|
+
};
|
|
84542
|
+
}>;
|
|
84543
|
+
}
|
|
84544
|
+
|
|
84439
84545
|
declare class VersionStatsEndpoint {
|
|
84440
84546
|
private readonly requestExecutor;
|
|
84441
84547
|
constructor(requestExecutor: RequestExecutor);
|
|
@@ -85594,6 +85700,32 @@ declare class ThemesEndpoint {
|
|
|
85594
85700
|
delete(dsId: string, versionId: string, themeId: string): Promise<any>;
|
|
85595
85701
|
}
|
|
85596
85702
|
|
|
85703
|
+
declare class TokenCollectionsEndpoint {
|
|
85704
|
+
private readonly requestExecutor;
|
|
85705
|
+
constructor(requestExecutor: RequestExecutor);
|
|
85706
|
+
list(designSystemId: string, versionId: string): Promise<{
|
|
85707
|
+
collections: {
|
|
85708
|
+
id: string;
|
|
85709
|
+
persistentId: string;
|
|
85710
|
+
meta: {
|
|
85711
|
+
name: string;
|
|
85712
|
+
description?: string | undefined;
|
|
85713
|
+
};
|
|
85714
|
+
designSystemVersionId: string;
|
|
85715
|
+
createdAt: Date;
|
|
85716
|
+
updatedAt: Date;
|
|
85717
|
+
elementPropertyOptionId: string;
|
|
85718
|
+
backgroundColor?: {
|
|
85719
|
+
value: string;
|
|
85720
|
+
} | undefined;
|
|
85721
|
+
origin?: {
|
|
85722
|
+
id: string;
|
|
85723
|
+
sourceId: string;
|
|
85724
|
+
} | undefined;
|
|
85725
|
+
}[];
|
|
85726
|
+
}>;
|
|
85727
|
+
}
|
|
85728
|
+
|
|
85597
85729
|
declare class TokensEndpoint {
|
|
85598
85730
|
private readonly requestExecutor;
|
|
85599
85731
|
constructor(requestExecutor: RequestExecutor);
|
|
@@ -85978,6 +86110,58 @@ declare class TokensEndpoint {
|
|
|
85978
86110
|
get(dsId: string, versionId: string, tokenId: string): Promise<DTODesignTokenListResponse>;
|
|
85979
86111
|
}
|
|
85980
86112
|
|
|
86113
|
+
declare class ElementPropertyValuesEndpoint {
|
|
86114
|
+
private readonly requestExecutor;
|
|
86115
|
+
constructor(requestExecutor: RequestExecutor);
|
|
86116
|
+
list(designSystemId: string, versionId: string): Promise<{
|
|
86117
|
+
values: {
|
|
86118
|
+
id: string;
|
|
86119
|
+
designSystemVersionId: string;
|
|
86120
|
+
definitionId: string;
|
|
86121
|
+
targetElementId: string;
|
|
86122
|
+
value?: string | number | boolean | undefined;
|
|
86123
|
+
valuePreview?: string | undefined;
|
|
86124
|
+
}[];
|
|
86125
|
+
}>;
|
|
86126
|
+
upsert(designSystemId: string, versionId: string, body: DTOElementPropertyValueUpsertPaylod): Promise<{
|
|
86127
|
+
value: {
|
|
86128
|
+
id: string;
|
|
86129
|
+
designSystemVersionId: string;
|
|
86130
|
+
definitionId: string;
|
|
86131
|
+
targetElementId: string;
|
|
86132
|
+
value?: string | number | boolean | undefined;
|
|
86133
|
+
valuePreview?: string | undefined;
|
|
86134
|
+
};
|
|
86135
|
+
}>;
|
|
86136
|
+
}
|
|
86137
|
+
|
|
86138
|
+
declare class DesignSystemVersionsEndpoint {
|
|
86139
|
+
private readonly requestExecutor;
|
|
86140
|
+
readonly themes: ThemesEndpoint;
|
|
86141
|
+
readonly brands: BrandsEndpoint;
|
|
86142
|
+
readonly tokenCollections: TokenCollectionsEndpoint;
|
|
86143
|
+
readonly importJobs: ImportJobsEndpoint;
|
|
86144
|
+
readonly tokens: TokensEndpoint;
|
|
86145
|
+
readonly stats: VersionStatsEndpoint;
|
|
86146
|
+
readonly elementPropertyDefinitions: ElementPropertyDefinitionsEndpoint;
|
|
86147
|
+
readonly elementPropertyValues: ElementPropertyValuesEndpoint;
|
|
86148
|
+
constructor(requestExecutor: RequestExecutor);
|
|
86149
|
+
list(dsId: string): Promise<{
|
|
86150
|
+
designSystemVersions: {
|
|
86151
|
+
id: string;
|
|
86152
|
+
meta: {
|
|
86153
|
+
name: string;
|
|
86154
|
+
description?: string | undefined;
|
|
86155
|
+
};
|
|
86156
|
+
createdAt: Date;
|
|
86157
|
+
designSystemId: string;
|
|
86158
|
+
version: string;
|
|
86159
|
+
changeLog: string;
|
|
86160
|
+
isReadonly: boolean;
|
|
86161
|
+
}[];
|
|
86162
|
+
}>;
|
|
86163
|
+
}
|
|
86164
|
+
|
|
85981
86165
|
declare class DesignSystemBffEndpoint {
|
|
85982
86166
|
private readonly requestExecutor;
|
|
85983
86167
|
constructor(requestExecutor: RequestExecutor);
|
|
@@ -86134,107 +86318,6 @@ declare class DesignSystemSourcesEndpoint {
|
|
|
86134
86318
|
}>;
|
|
86135
86319
|
}
|
|
86136
86320
|
|
|
86137
|
-
declare class ElementPropertyDefinitionsEndpoint {
|
|
86138
|
-
private readonly requestExecutor;
|
|
86139
|
-
constructor(requestExecutor: RequestExecutor);
|
|
86140
|
-
list(designSystemId: string, versionId: string): Promise<{
|
|
86141
|
-
definitions: {
|
|
86142
|
-
type: "Text" | "Number" | "Boolean" | "Select" | "Generic" | "Link" | "URL";
|
|
86143
|
-
id: string;
|
|
86144
|
-
persistentId: string;
|
|
86145
|
-
meta: {
|
|
86146
|
-
name: string;
|
|
86147
|
-
description?: string | undefined;
|
|
86148
|
-
};
|
|
86149
|
-
designSystemVersionId: string;
|
|
86150
|
-
targetElementType: "Token" | "Component" | "DocumentationPage";
|
|
86151
|
-
codeName: string;
|
|
86152
|
-
options?: {
|
|
86153
|
-
id: string;
|
|
86154
|
-
name: string;
|
|
86155
|
-
backgroundColor?: {
|
|
86156
|
-
value: string;
|
|
86157
|
-
} | undefined;
|
|
86158
|
-
}[] | undefined;
|
|
86159
|
-
linkElementType?: NonNullable<"DocumentationPage" | "FigmaComponent"> | undefined;
|
|
86160
|
-
}[];
|
|
86161
|
-
}>;
|
|
86162
|
-
create(designSystemId: string, versionId: string, body: DTOElementPropertyDefinitionCreatePayload): Promise<{
|
|
86163
|
-
definition: {
|
|
86164
|
-
type: "Text" | "Number" | "Boolean" | "Select" | "Generic" | "Link" | "URL";
|
|
86165
|
-
id: string;
|
|
86166
|
-
persistentId: string;
|
|
86167
|
-
meta: {
|
|
86168
|
-
name: string;
|
|
86169
|
-
description?: string | undefined;
|
|
86170
|
-
};
|
|
86171
|
-
designSystemVersionId: string;
|
|
86172
|
-
targetElementType: "Token" | "Component" | "DocumentationPage";
|
|
86173
|
-
codeName: string;
|
|
86174
|
-
options?: {
|
|
86175
|
-
id: string;
|
|
86176
|
-
name: string;
|
|
86177
|
-
backgroundColor?: {
|
|
86178
|
-
value: string;
|
|
86179
|
-
} | undefined;
|
|
86180
|
-
}[] | undefined;
|
|
86181
|
-
linkElementType?: NonNullable<"DocumentationPage" | "FigmaComponent"> | undefined;
|
|
86182
|
-
};
|
|
86183
|
-
}>;
|
|
86184
|
-
}
|
|
86185
|
-
|
|
86186
|
-
declare class TokenCollectionsEndpoint {
|
|
86187
|
-
private readonly requestExecutor;
|
|
86188
|
-
constructor(requestExecutor: RequestExecutor);
|
|
86189
|
-
list(designSystemId: string, versionId: string): Promise<{
|
|
86190
|
-
collections: {
|
|
86191
|
-
id: string;
|
|
86192
|
-
persistentId: string;
|
|
86193
|
-
meta: {
|
|
86194
|
-
name: string;
|
|
86195
|
-
description?: string | undefined;
|
|
86196
|
-
};
|
|
86197
|
-
designSystemVersionId: string;
|
|
86198
|
-
createdAt: Date;
|
|
86199
|
-
updatedAt: Date;
|
|
86200
|
-
elementPropertyOptionId: string;
|
|
86201
|
-
backgroundColor?: {
|
|
86202
|
-
value: string;
|
|
86203
|
-
} | undefined;
|
|
86204
|
-
origin?: {
|
|
86205
|
-
id: string;
|
|
86206
|
-
sourceId: string;
|
|
86207
|
-
} | undefined;
|
|
86208
|
-
}[];
|
|
86209
|
-
}>;
|
|
86210
|
-
}
|
|
86211
|
-
|
|
86212
|
-
declare class DesignSystemVersionsEndpoint {
|
|
86213
|
-
private readonly requestExecutor;
|
|
86214
|
-
readonly themes: ThemesEndpoint;
|
|
86215
|
-
readonly brands: BrandsEndpoint;
|
|
86216
|
-
readonly tokenCollections: TokenCollectionsEndpoint;
|
|
86217
|
-
readonly importJobs: ImportJobsEndpoint;
|
|
86218
|
-
readonly tokens: TokensEndpoint;
|
|
86219
|
-
readonly stats: VersionStatsEndpoint;
|
|
86220
|
-
readonly elementPropertyDefinitions: ElementPropertyDefinitionsEndpoint;
|
|
86221
|
-
constructor(requestExecutor: RequestExecutor);
|
|
86222
|
-
list(dsId: string): Promise<{
|
|
86223
|
-
designSystemVersions: {
|
|
86224
|
-
id: string;
|
|
86225
|
-
meta: {
|
|
86226
|
-
name: string;
|
|
86227
|
-
description?: string | undefined;
|
|
86228
|
-
};
|
|
86229
|
-
createdAt: Date;
|
|
86230
|
-
designSystemId: string;
|
|
86231
|
-
version: string;
|
|
86232
|
-
changeLog: string;
|
|
86233
|
-
isReadonly: boolean;
|
|
86234
|
-
}[];
|
|
86235
|
-
}>;
|
|
86236
|
-
}
|
|
86237
|
-
|
|
86238
86321
|
declare class DesignSystemsEndpoint {
|
|
86239
86322
|
private readonly requestExecutor;
|
|
86240
86323
|
readonly members: DesignSystemMembersEndpoint;
|
|
@@ -86405,280 +86488,6 @@ declare class DesignSystemsEndpoint {
|
|
|
86405
86488
|
}>;
|
|
86406
86489
|
}
|
|
86407
86490
|
|
|
86408
|
-
declare class UsersEndpoint {
|
|
86409
|
-
private readonly requestExecutor;
|
|
86410
|
-
constructor(requestExecutor: RequestExecutor);
|
|
86411
|
-
getMe(): Promise<{
|
|
86412
|
-
user: {
|
|
86413
|
-
id: string;
|
|
86414
|
-
createdAt: Date;
|
|
86415
|
-
profile: {
|
|
86416
|
-
name: string;
|
|
86417
|
-
avatar?: string | undefined;
|
|
86418
|
-
nickname?: string | undefined;
|
|
86419
|
-
onboarding?: {
|
|
86420
|
-
companyName?: string | undefined;
|
|
86421
|
-
numberOfPeopleInOrg?: string | undefined;
|
|
86422
|
-
numberOfPeopleInDesignTeam?: string | undefined;
|
|
86423
|
-
department?: "Design" | "Engineering" | "Product" | "Brand" | "Other" | undefined;
|
|
86424
|
-
jobTitle?: string | undefined;
|
|
86425
|
-
phase?: string | undefined;
|
|
86426
|
-
jobLevel?: "Other" | "Executive" | "Manager" | "IndividualContributor" | undefined;
|
|
86427
|
-
designSystemName?: string | undefined;
|
|
86428
|
-
defaultDestination?: string | undefined;
|
|
86429
|
-
isPageDraftOnboardingFinished?: boolean | undefined;
|
|
86430
|
-
} | undefined;
|
|
86431
|
-
};
|
|
86432
|
-
email: string;
|
|
86433
|
-
source?: "SignUp" | "Invite" | "SSO" | undefined;
|
|
86434
|
-
loggedOutAt?: Date | undefined;
|
|
86435
|
-
};
|
|
86436
|
-
}>;
|
|
86437
|
-
listWorkspaces(uid: string): Promise<{
|
|
86438
|
-
membership: {
|
|
86439
|
-
role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
|
|
86440
|
-
effectiveRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
|
|
86441
|
-
workspace: {
|
|
86442
|
-
id: string;
|
|
86443
|
-
profile: {
|
|
86444
|
-
name: string;
|
|
86445
|
-
color: string;
|
|
86446
|
-
handle: string;
|
|
86447
|
-
avatar?: string | undefined;
|
|
86448
|
-
billingDetails?: {
|
|
86449
|
-
address?: {
|
|
86450
|
-
street1?: string | undefined;
|
|
86451
|
-
street2?: string | undefined;
|
|
86452
|
-
city?: string | undefined;
|
|
86453
|
-
postal?: string | undefined;
|
|
86454
|
-
country?: string | undefined;
|
|
86455
|
-
state?: string | undefined;
|
|
86456
|
-
} | undefined;
|
|
86457
|
-
email?: string | undefined;
|
|
86458
|
-
companyName?: string | undefined;
|
|
86459
|
-
companyId?: string | undefined;
|
|
86460
|
-
notes?: string | undefined;
|
|
86461
|
-
vat?: string | undefined;
|
|
86462
|
-
poNumber?: string | undefined;
|
|
86463
|
-
} | undefined;
|
|
86464
|
-
};
|
|
86465
|
-
subscription: {
|
|
86466
|
-
product: "free" | "team" | "company" | "enterprise";
|
|
86467
|
-
planPriceId: string;
|
|
86468
|
-
planInterval: "yearly" | "daily" | "monthly" | "weekly";
|
|
86469
|
-
seats: number;
|
|
86470
|
-
seatLimit: number;
|
|
86471
|
-
status?: "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | undefined;
|
|
86472
|
-
card?: {
|
|
86473
|
-
cardId?: string | null | undefined;
|
|
86474
|
-
last4?: string | null | undefined;
|
|
86475
|
-
expiryMonth?: string | null | undefined;
|
|
86476
|
-
expiryYear?: string | null | undefined;
|
|
86477
|
-
brand?: string | null | undefined;
|
|
86478
|
-
name?: string | null | undefined;
|
|
86479
|
-
} | undefined;
|
|
86480
|
-
amount?: number | null | undefined;
|
|
86481
|
-
stripeProductDescription?: string | undefined;
|
|
86482
|
-
isPricePerCreator?: boolean | undefined;
|
|
86483
|
-
isTrial?: boolean | undefined;
|
|
86484
|
-
legacyVersion?: string | undefined;
|
|
86485
|
-
stripeProductFeatures?: string[] | undefined;
|
|
86486
|
-
stripeProductAdditionalFeatures?: string[] | undefined;
|
|
86487
|
-
stripeSubscriptionId?: string | null | undefined;
|
|
86488
|
-
stripeCustomerId?: string | null | undefined;
|
|
86489
|
-
subscriptionStatus?: "unknown" | "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete" | undefined;
|
|
86490
|
-
internalStatus?: "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | undefined;
|
|
86491
|
-
featuresSummary?: {
|
|
86492
|
-
designSystems: {
|
|
86493
|
-
max: number;
|
|
86494
|
-
errorMessage: string;
|
|
86495
|
-
errorReason: string;
|
|
86496
|
-
};
|
|
86497
|
-
designSystemSources: {
|
|
86498
|
-
max: number;
|
|
86499
|
-
errorMessage: string;
|
|
86500
|
-
errorReason: string;
|
|
86501
|
-
noImportJobsErrorMessage: string;
|
|
86502
|
-
noImportJobsErrorReason: string;
|
|
86503
|
-
};
|
|
86504
|
-
designSystemVersions: {
|
|
86505
|
-
max: number;
|
|
86506
|
-
errorMessage: string;
|
|
86507
|
-
errorReason: string;
|
|
86508
|
-
};
|
|
86509
|
-
themes: {
|
|
86510
|
-
max: number;
|
|
86511
|
-
errorMessage: string;
|
|
86512
|
-
errorReason: string;
|
|
86513
|
-
};
|
|
86514
|
-
brands: {
|
|
86515
|
-
max: number;
|
|
86516
|
-
errorMessage: string;
|
|
86517
|
-
errorReason: string;
|
|
86518
|
-
};
|
|
86519
|
-
codegenSchedules: {
|
|
86520
|
-
max: number;
|
|
86521
|
-
errorMessage: string;
|
|
86522
|
-
errorReason: string;
|
|
86523
|
-
};
|
|
86524
|
-
publicDocumentation: {
|
|
86525
|
-
errorMessage: string;
|
|
86526
|
-
errorReason: string;
|
|
86527
|
-
enabled: boolean;
|
|
86528
|
-
};
|
|
86529
|
-
customDocumentationUrl: {
|
|
86530
|
-
errorMessage: string;
|
|
86531
|
-
errorReason: string;
|
|
86532
|
-
enabled: boolean;
|
|
86533
|
-
};
|
|
86534
|
-
customDocumentationViewButton: {
|
|
86535
|
-
errorMessage: string;
|
|
86536
|
-
errorReason: string;
|
|
86537
|
-
enabled: boolean;
|
|
86538
|
-
};
|
|
86539
|
-
designSystemSourceAutoImport: {
|
|
86540
|
-
errorMessage: string;
|
|
86541
|
-
errorReason: string;
|
|
86542
|
-
enabled: boolean;
|
|
86543
|
-
};
|
|
86544
|
-
designSystemSlug: {
|
|
86545
|
-
errorMessage: string;
|
|
86546
|
-
errorReason: string;
|
|
86547
|
-
enabled: boolean;
|
|
86548
|
-
};
|
|
86549
|
-
ipWhitelisting: {
|
|
86550
|
-
errorMessage: string;
|
|
86551
|
-
errorReason: string;
|
|
86552
|
-
enabled: boolean;
|
|
86553
|
-
};
|
|
86554
|
-
npmRegistry: {
|
|
86555
|
-
errorMessage: string;
|
|
86556
|
-
errorReason: string;
|
|
86557
|
-
enabled: boolean;
|
|
86558
|
-
};
|
|
86559
|
-
sso: {
|
|
86560
|
-
errorMessage: string;
|
|
86561
|
-
errorReason: string;
|
|
86562
|
-
enabled: boolean;
|
|
86563
|
-
};
|
|
86564
|
-
workspacePaidSeats: {
|
|
86565
|
-
max: number;
|
|
86566
|
-
errorMessage: string;
|
|
86567
|
-
errorReason: string;
|
|
86568
|
-
};
|
|
86569
|
-
workspaceViewers: {
|
|
86570
|
-
max: number;
|
|
86571
|
-
errorMessage: string;
|
|
86572
|
-
errorReason: string;
|
|
86573
|
-
};
|
|
86574
|
-
customDocumentationExporter: {
|
|
86575
|
-
errorMessage: string;
|
|
86576
|
-
errorReason: string;
|
|
86577
|
-
enabled: boolean;
|
|
86578
|
-
};
|
|
86579
|
-
protectedPages: {
|
|
86580
|
-
errorMessage: string;
|
|
86581
|
-
errorReason: string;
|
|
86582
|
-
enabled: boolean;
|
|
86583
|
-
};
|
|
86584
|
-
approvals: {
|
|
86585
|
-
errorMessage: string;
|
|
86586
|
-
errorReason: string;
|
|
86587
|
-
enabled: boolean;
|
|
86588
|
-
};
|
|
86589
|
-
selectivePublishing: {
|
|
86590
|
-
errorMessage: string;
|
|
86591
|
-
errorReason: string;
|
|
86592
|
-
enabled: boolean;
|
|
86593
|
-
};
|
|
86594
|
-
designSystemAccessModes: {
|
|
86595
|
-
errorMessage: string;
|
|
86596
|
-
errorReason: string;
|
|
86597
|
-
enabled: boolean;
|
|
86598
|
-
};
|
|
86599
|
-
designSystemRoles: {
|
|
86600
|
-
errorMessage: string;
|
|
86601
|
-
errorReason: string;
|
|
86602
|
-
enabled: boolean;
|
|
86603
|
-
};
|
|
86604
|
-
} | undefined;
|
|
86605
|
-
stripeSubscriptionMainItemId?: string | undefined;
|
|
86606
|
-
currentPeriodStart?: string | undefined;
|
|
86607
|
-
currentPeriodEnd?: string | undefined;
|
|
86608
|
-
subscriptionStatusUpdatedAt?: string | undefined;
|
|
86609
|
-
cancelAt?: string | null | undefined;
|
|
86610
|
-
billingType?: "Auto" | "Invoice" | undefined;
|
|
86611
|
-
daysUntilDue?: number | undefined;
|
|
86612
|
-
};
|
|
86613
|
-
npmRegistry?: {
|
|
86614
|
-
enabledScopes: string[];
|
|
86615
|
-
bypassProxy: boolean;
|
|
86616
|
-
registryType: "Custom" | "NPMJS" | "GitHub" | "AzureDevOps" | "Artifactory";
|
|
86617
|
-
authType: "Custom" | "None" | "Basic" | "Bearer";
|
|
86618
|
-
registryUrl: string;
|
|
86619
|
-
proxyUrl: string;
|
|
86620
|
-
customRegistryUrl?: string | undefined;
|
|
86621
|
-
accessToken?: string | undefined;
|
|
86622
|
-
username?: string | undefined;
|
|
86623
|
-
password?: string | undefined;
|
|
86624
|
-
} | undefined;
|
|
86625
|
-
};
|
|
86626
|
-
}[];
|
|
86627
|
-
}>;
|
|
86628
|
-
delete(uid: string): Promise<{
|
|
86629
|
-
user: {
|
|
86630
|
-
id: string;
|
|
86631
|
-
createdAt: Date;
|
|
86632
|
-
profile: {
|
|
86633
|
-
name: string;
|
|
86634
|
-
avatar?: string | undefined;
|
|
86635
|
-
nickname?: string | undefined;
|
|
86636
|
-
onboarding?: {
|
|
86637
|
-
companyName?: string | undefined;
|
|
86638
|
-
numberOfPeopleInOrg?: string | undefined;
|
|
86639
|
-
numberOfPeopleInDesignTeam?: string | undefined;
|
|
86640
|
-
department?: "Design" | "Engineering" | "Product" | "Brand" | "Other" | undefined;
|
|
86641
|
-
jobTitle?: string | undefined;
|
|
86642
|
-
phase?: string | undefined;
|
|
86643
|
-
jobLevel?: "Other" | "Executive" | "Manager" | "IndividualContributor" | undefined;
|
|
86644
|
-
designSystemName?: string | undefined;
|
|
86645
|
-
defaultDestination?: string | undefined;
|
|
86646
|
-
isPageDraftOnboardingFinished?: boolean | undefined;
|
|
86647
|
-
} | undefined;
|
|
86648
|
-
};
|
|
86649
|
-
email: string;
|
|
86650
|
-
source?: "SignUp" | "Invite" | "SSO" | undefined;
|
|
86651
|
-
loggedOutAt?: Date | undefined;
|
|
86652
|
-
};
|
|
86653
|
-
}>;
|
|
86654
|
-
updateProfile(uid: string, body: DTOUserProfileUpdate): Promise<{
|
|
86655
|
-
user: {
|
|
86656
|
-
id: string;
|
|
86657
|
-
createdAt: Date;
|
|
86658
|
-
profile: {
|
|
86659
|
-
name: string;
|
|
86660
|
-
avatar?: string | undefined;
|
|
86661
|
-
nickname?: string | undefined;
|
|
86662
|
-
onboarding?: {
|
|
86663
|
-
companyName?: string | undefined;
|
|
86664
|
-
numberOfPeopleInOrg?: string | undefined;
|
|
86665
|
-
numberOfPeopleInDesignTeam?: string | undefined;
|
|
86666
|
-
department?: "Design" | "Engineering" | "Product" | "Brand" | "Other" | undefined;
|
|
86667
|
-
jobTitle?: string | undefined;
|
|
86668
|
-
phase?: string | undefined;
|
|
86669
|
-
jobLevel?: "Other" | "Executive" | "Manager" | "IndividualContributor" | undefined;
|
|
86670
|
-
designSystemName?: string | undefined;
|
|
86671
|
-
defaultDestination?: string | undefined;
|
|
86672
|
-
isPageDraftOnboardingFinished?: boolean | undefined;
|
|
86673
|
-
} | undefined;
|
|
86674
|
-
};
|
|
86675
|
-
email: string;
|
|
86676
|
-
source?: "SignUp" | "Invite" | "SSO" | undefined;
|
|
86677
|
-
loggedOutAt?: Date | undefined;
|
|
86678
|
-
};
|
|
86679
|
-
}>;
|
|
86680
|
-
}
|
|
86681
|
-
|
|
86682
86491
|
declare class WorkspaceInvitationsEndpoint {
|
|
86683
86492
|
private readonly requestExecutor;
|
|
86684
86493
|
constructor(requestExecutor: RequestExecutor);
|
|
@@ -87733,6 +87542,280 @@ declare class WorkspacesEndpoint {
|
|
|
87733
87542
|
subscription(workspaceId: string): Promise<any>;
|
|
87734
87543
|
}
|
|
87735
87544
|
|
|
87545
|
+
declare class UsersEndpoint {
|
|
87546
|
+
private readonly requestExecutor;
|
|
87547
|
+
constructor(requestExecutor: RequestExecutor);
|
|
87548
|
+
getMe(): Promise<{
|
|
87549
|
+
user: {
|
|
87550
|
+
id: string;
|
|
87551
|
+
createdAt: Date;
|
|
87552
|
+
profile: {
|
|
87553
|
+
name: string;
|
|
87554
|
+
avatar?: string | undefined;
|
|
87555
|
+
nickname?: string | undefined;
|
|
87556
|
+
onboarding?: {
|
|
87557
|
+
companyName?: string | undefined;
|
|
87558
|
+
numberOfPeopleInOrg?: string | undefined;
|
|
87559
|
+
numberOfPeopleInDesignTeam?: string | undefined;
|
|
87560
|
+
department?: "Design" | "Engineering" | "Product" | "Brand" | "Other" | undefined;
|
|
87561
|
+
jobTitle?: string | undefined;
|
|
87562
|
+
phase?: string | undefined;
|
|
87563
|
+
jobLevel?: "Other" | "Executive" | "Manager" | "IndividualContributor" | undefined;
|
|
87564
|
+
designSystemName?: string | undefined;
|
|
87565
|
+
defaultDestination?: string | undefined;
|
|
87566
|
+
isPageDraftOnboardingFinished?: boolean | undefined;
|
|
87567
|
+
} | undefined;
|
|
87568
|
+
};
|
|
87569
|
+
email: string;
|
|
87570
|
+
source?: "SignUp" | "Invite" | "SSO" | undefined;
|
|
87571
|
+
loggedOutAt?: Date | undefined;
|
|
87572
|
+
};
|
|
87573
|
+
}>;
|
|
87574
|
+
listWorkspaces(uid: string): Promise<{
|
|
87575
|
+
membership: {
|
|
87576
|
+
role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
|
|
87577
|
+
effectiveRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
|
|
87578
|
+
workspace: {
|
|
87579
|
+
id: string;
|
|
87580
|
+
profile: {
|
|
87581
|
+
name: string;
|
|
87582
|
+
color: string;
|
|
87583
|
+
handle: string;
|
|
87584
|
+
avatar?: string | undefined;
|
|
87585
|
+
billingDetails?: {
|
|
87586
|
+
address?: {
|
|
87587
|
+
street1?: string | undefined;
|
|
87588
|
+
street2?: string | undefined;
|
|
87589
|
+
city?: string | undefined;
|
|
87590
|
+
postal?: string | undefined;
|
|
87591
|
+
country?: string | undefined;
|
|
87592
|
+
state?: string | undefined;
|
|
87593
|
+
} | undefined;
|
|
87594
|
+
email?: string | undefined;
|
|
87595
|
+
companyName?: string | undefined;
|
|
87596
|
+
companyId?: string | undefined;
|
|
87597
|
+
notes?: string | undefined;
|
|
87598
|
+
vat?: string | undefined;
|
|
87599
|
+
poNumber?: string | undefined;
|
|
87600
|
+
} | undefined;
|
|
87601
|
+
};
|
|
87602
|
+
subscription: {
|
|
87603
|
+
product: "free" | "team" | "company" | "enterprise";
|
|
87604
|
+
planPriceId: string;
|
|
87605
|
+
planInterval: "yearly" | "daily" | "monthly" | "weekly";
|
|
87606
|
+
seats: number;
|
|
87607
|
+
seatLimit: number;
|
|
87608
|
+
status?: "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | undefined;
|
|
87609
|
+
card?: {
|
|
87610
|
+
cardId?: string | null | undefined;
|
|
87611
|
+
last4?: string | null | undefined;
|
|
87612
|
+
expiryMonth?: string | null | undefined;
|
|
87613
|
+
expiryYear?: string | null | undefined;
|
|
87614
|
+
brand?: string | null | undefined;
|
|
87615
|
+
name?: string | null | undefined;
|
|
87616
|
+
} | undefined;
|
|
87617
|
+
amount?: number | null | undefined;
|
|
87618
|
+
stripeProductDescription?: string | undefined;
|
|
87619
|
+
isPricePerCreator?: boolean | undefined;
|
|
87620
|
+
isTrial?: boolean | undefined;
|
|
87621
|
+
legacyVersion?: string | undefined;
|
|
87622
|
+
stripeProductFeatures?: string[] | undefined;
|
|
87623
|
+
stripeProductAdditionalFeatures?: string[] | undefined;
|
|
87624
|
+
stripeSubscriptionId?: string | null | undefined;
|
|
87625
|
+
stripeCustomerId?: string | null | undefined;
|
|
87626
|
+
subscriptionStatus?: "unknown" | "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete" | undefined;
|
|
87627
|
+
internalStatus?: "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | undefined;
|
|
87628
|
+
featuresSummary?: {
|
|
87629
|
+
designSystems: {
|
|
87630
|
+
max: number;
|
|
87631
|
+
errorMessage: string;
|
|
87632
|
+
errorReason: string;
|
|
87633
|
+
};
|
|
87634
|
+
designSystemSources: {
|
|
87635
|
+
max: number;
|
|
87636
|
+
errorMessage: string;
|
|
87637
|
+
errorReason: string;
|
|
87638
|
+
noImportJobsErrorMessage: string;
|
|
87639
|
+
noImportJobsErrorReason: string;
|
|
87640
|
+
};
|
|
87641
|
+
designSystemVersions: {
|
|
87642
|
+
max: number;
|
|
87643
|
+
errorMessage: string;
|
|
87644
|
+
errorReason: string;
|
|
87645
|
+
};
|
|
87646
|
+
themes: {
|
|
87647
|
+
max: number;
|
|
87648
|
+
errorMessage: string;
|
|
87649
|
+
errorReason: string;
|
|
87650
|
+
};
|
|
87651
|
+
brands: {
|
|
87652
|
+
max: number;
|
|
87653
|
+
errorMessage: string;
|
|
87654
|
+
errorReason: string;
|
|
87655
|
+
};
|
|
87656
|
+
codegenSchedules: {
|
|
87657
|
+
max: number;
|
|
87658
|
+
errorMessage: string;
|
|
87659
|
+
errorReason: string;
|
|
87660
|
+
};
|
|
87661
|
+
publicDocumentation: {
|
|
87662
|
+
errorMessage: string;
|
|
87663
|
+
errorReason: string;
|
|
87664
|
+
enabled: boolean;
|
|
87665
|
+
};
|
|
87666
|
+
customDocumentationUrl: {
|
|
87667
|
+
errorMessage: string;
|
|
87668
|
+
errorReason: string;
|
|
87669
|
+
enabled: boolean;
|
|
87670
|
+
};
|
|
87671
|
+
customDocumentationViewButton: {
|
|
87672
|
+
errorMessage: string;
|
|
87673
|
+
errorReason: string;
|
|
87674
|
+
enabled: boolean;
|
|
87675
|
+
};
|
|
87676
|
+
designSystemSourceAutoImport: {
|
|
87677
|
+
errorMessage: string;
|
|
87678
|
+
errorReason: string;
|
|
87679
|
+
enabled: boolean;
|
|
87680
|
+
};
|
|
87681
|
+
designSystemSlug: {
|
|
87682
|
+
errorMessage: string;
|
|
87683
|
+
errorReason: string;
|
|
87684
|
+
enabled: boolean;
|
|
87685
|
+
};
|
|
87686
|
+
ipWhitelisting: {
|
|
87687
|
+
errorMessage: string;
|
|
87688
|
+
errorReason: string;
|
|
87689
|
+
enabled: boolean;
|
|
87690
|
+
};
|
|
87691
|
+
npmRegistry: {
|
|
87692
|
+
errorMessage: string;
|
|
87693
|
+
errorReason: string;
|
|
87694
|
+
enabled: boolean;
|
|
87695
|
+
};
|
|
87696
|
+
sso: {
|
|
87697
|
+
errorMessage: string;
|
|
87698
|
+
errorReason: string;
|
|
87699
|
+
enabled: boolean;
|
|
87700
|
+
};
|
|
87701
|
+
workspacePaidSeats: {
|
|
87702
|
+
max: number;
|
|
87703
|
+
errorMessage: string;
|
|
87704
|
+
errorReason: string;
|
|
87705
|
+
};
|
|
87706
|
+
workspaceViewers: {
|
|
87707
|
+
max: number;
|
|
87708
|
+
errorMessage: string;
|
|
87709
|
+
errorReason: string;
|
|
87710
|
+
};
|
|
87711
|
+
customDocumentationExporter: {
|
|
87712
|
+
errorMessage: string;
|
|
87713
|
+
errorReason: string;
|
|
87714
|
+
enabled: boolean;
|
|
87715
|
+
};
|
|
87716
|
+
protectedPages: {
|
|
87717
|
+
errorMessage: string;
|
|
87718
|
+
errorReason: string;
|
|
87719
|
+
enabled: boolean;
|
|
87720
|
+
};
|
|
87721
|
+
approvals: {
|
|
87722
|
+
errorMessage: string;
|
|
87723
|
+
errorReason: string;
|
|
87724
|
+
enabled: boolean;
|
|
87725
|
+
};
|
|
87726
|
+
selectivePublishing: {
|
|
87727
|
+
errorMessage: string;
|
|
87728
|
+
errorReason: string;
|
|
87729
|
+
enabled: boolean;
|
|
87730
|
+
};
|
|
87731
|
+
designSystemAccessModes: {
|
|
87732
|
+
errorMessage: string;
|
|
87733
|
+
errorReason: string;
|
|
87734
|
+
enabled: boolean;
|
|
87735
|
+
};
|
|
87736
|
+
designSystemRoles: {
|
|
87737
|
+
errorMessage: string;
|
|
87738
|
+
errorReason: string;
|
|
87739
|
+
enabled: boolean;
|
|
87740
|
+
};
|
|
87741
|
+
} | undefined;
|
|
87742
|
+
stripeSubscriptionMainItemId?: string | undefined;
|
|
87743
|
+
currentPeriodStart?: string | undefined;
|
|
87744
|
+
currentPeriodEnd?: string | undefined;
|
|
87745
|
+
subscriptionStatusUpdatedAt?: string | undefined;
|
|
87746
|
+
cancelAt?: string | null | undefined;
|
|
87747
|
+
billingType?: "Auto" | "Invoice" | undefined;
|
|
87748
|
+
daysUntilDue?: number | undefined;
|
|
87749
|
+
};
|
|
87750
|
+
npmRegistry?: {
|
|
87751
|
+
enabledScopes: string[];
|
|
87752
|
+
bypassProxy: boolean;
|
|
87753
|
+
registryType: "Custom" | "NPMJS" | "GitHub" | "AzureDevOps" | "Artifactory";
|
|
87754
|
+
authType: "Custom" | "None" | "Basic" | "Bearer";
|
|
87755
|
+
registryUrl: string;
|
|
87756
|
+
proxyUrl: string;
|
|
87757
|
+
customRegistryUrl?: string | undefined;
|
|
87758
|
+
accessToken?: string | undefined;
|
|
87759
|
+
username?: string | undefined;
|
|
87760
|
+
password?: string | undefined;
|
|
87761
|
+
} | undefined;
|
|
87762
|
+
};
|
|
87763
|
+
}[];
|
|
87764
|
+
}>;
|
|
87765
|
+
delete(uid: string): Promise<{
|
|
87766
|
+
user: {
|
|
87767
|
+
id: string;
|
|
87768
|
+
createdAt: Date;
|
|
87769
|
+
profile: {
|
|
87770
|
+
name: string;
|
|
87771
|
+
avatar?: string | undefined;
|
|
87772
|
+
nickname?: string | undefined;
|
|
87773
|
+
onboarding?: {
|
|
87774
|
+
companyName?: string | undefined;
|
|
87775
|
+
numberOfPeopleInOrg?: string | undefined;
|
|
87776
|
+
numberOfPeopleInDesignTeam?: string | undefined;
|
|
87777
|
+
department?: "Design" | "Engineering" | "Product" | "Brand" | "Other" | undefined;
|
|
87778
|
+
jobTitle?: string | undefined;
|
|
87779
|
+
phase?: string | undefined;
|
|
87780
|
+
jobLevel?: "Other" | "Executive" | "Manager" | "IndividualContributor" | undefined;
|
|
87781
|
+
designSystemName?: string | undefined;
|
|
87782
|
+
defaultDestination?: string | undefined;
|
|
87783
|
+
isPageDraftOnboardingFinished?: boolean | undefined;
|
|
87784
|
+
} | undefined;
|
|
87785
|
+
};
|
|
87786
|
+
email: string;
|
|
87787
|
+
source?: "SignUp" | "Invite" | "SSO" | undefined;
|
|
87788
|
+
loggedOutAt?: Date | undefined;
|
|
87789
|
+
};
|
|
87790
|
+
}>;
|
|
87791
|
+
updateProfile(uid: string, body: DTOUserProfileUpdate): Promise<{
|
|
87792
|
+
user: {
|
|
87793
|
+
id: string;
|
|
87794
|
+
createdAt: Date;
|
|
87795
|
+
profile: {
|
|
87796
|
+
name: string;
|
|
87797
|
+
avatar?: string | undefined;
|
|
87798
|
+
nickname?: string | undefined;
|
|
87799
|
+
onboarding?: {
|
|
87800
|
+
companyName?: string | undefined;
|
|
87801
|
+
numberOfPeopleInOrg?: string | undefined;
|
|
87802
|
+
numberOfPeopleInDesignTeam?: string | undefined;
|
|
87803
|
+
department?: "Design" | "Engineering" | "Product" | "Brand" | "Other" | undefined;
|
|
87804
|
+
jobTitle?: string | undefined;
|
|
87805
|
+
phase?: string | undefined;
|
|
87806
|
+
jobLevel?: "Other" | "Executive" | "Manager" | "IndividualContributor" | undefined;
|
|
87807
|
+
designSystemName?: string | undefined;
|
|
87808
|
+
defaultDestination?: string | undefined;
|
|
87809
|
+
isPageDraftOnboardingFinished?: boolean | undefined;
|
|
87810
|
+
} | undefined;
|
|
87811
|
+
};
|
|
87812
|
+
email: string;
|
|
87813
|
+
source?: "SignUp" | "Invite" | "SSO" | undefined;
|
|
87814
|
+
loggedOutAt?: Date | undefined;
|
|
87815
|
+
};
|
|
87816
|
+
}>;
|
|
87817
|
+
}
|
|
87818
|
+
|
|
87736
87819
|
type SupernovaApiClientConfig = {
|
|
87737
87820
|
host: string;
|
|
87738
87821
|
accessToken: string;
|
|
@@ -90298,4 +90381,4 @@ declare class FrontendVersionRoomYDoc {
|
|
|
90298
90381
|
|
|
90299
90382
|
declare function generatePageContentHash(content: DocumentationPageEditorModel, definitions: PageBlockDefinition[], debug?: boolean): string;
|
|
90300
90383
|
|
|
90301
|
-
export { BackendVersionRoomYDoc, BlockDefinitionUtils, BlockParsingUtils, BrandsEndpoint, CodegenEndpoint, Collection, DTOAppBootstrapDataQuery, DTOAppBootstrapDataResponse, DTOAssetRenderConfiguration, DTOAuthenticatedUser, DTOAuthenticatedUserProfile, DTOAuthenticatedUserResponse, DTOBffFigmaImportRequestBody, DTOBffImportRequestBody, DTOBffUploadImportRequestBody, DTOBrand, DTOBrandCreateResponse, DTOBrandGetResponse, DTOBrandsListResponse, DTOCreateBrandInput, DTOCreateDocumentationGroupInput, DTOCreateDocumentationPageInputV2, DTOCreateDocumentationTabInput, DTOCreateVersionInput, DTODataSource, DTODataSourceCreationResponse, DTODataSourceFigma, DTODataSourceFigmaCloud, DTODataSourceFigmaVariablesPlugin, DTODataSourceTokenStudio, DTODataSourcesListResponse, DTODeleteDocumentationGroupInput, DTODeleteDocumentationPageInputV2, DTODeleteDocumentationTabGroupInput, DTODesignElementsDataDiffResponse, DTODesignSystem, DTODesignSystemCreateInput, DTODesignSystemInvitation, DTODesignSystemMember, DTODesignSystemMemberListResponse, DTODesignSystemMembersUpdatePayload, DTODesignSystemMembersUpdateResponse, DTODesignSystemResponse, DTODesignSystemRole, DTODesignSystemUpdateAccessModeInput, DTODesignSystemUpdateInput, DTODesignSystemVersion, DTODesignSystemVersionCreationResponse, DTODesignSystemVersionGetResponse, DTODesignSystemVersionJobStatusResponse, DTODesignSystemVersionJobsResponse, DTODesignSystemVersionStats, DTODesignSystemVersionStatsQuery, DTODesignSystemVersionsListResponse, DTODesignSystemsListResponse, DTODesignToken, DTODesignTokenCreatePayload, 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, DTODocumentationTabCreateActionInputV2, DTODocumentationTabCreateActionOutputV2, type DTODocumentationTabGroupCreateActionInputV2, DTODocumentationTabGroupDeleteActionInputV2, DTODocumentationTabGroupDeleteActionOutputV2, DTODownloadAssetsRequest, DTODownloadAssetsResponse, DTODuplicateDocumentationGroupInput, DTODuplicateDocumentationPageInputV2, DTOElementActionInput, DTOElementActionOutput, DTOElementPropertyDefinition, DTOElementPropertyDefinitionCreatePayload, DTOElementPropertyDefinitionDeletePayload, DTOElementPropertyDefinitionListResponse, DTOElementPropertyDefinitionResponse, DTOElementPropertyDefinitionUpdatePayload, DTOElementPropertyValue, DTOElementPropertyValuesGetResponse, DTOElementView, DTOElementViewBasePropertyColumn, DTOElementViewColumn, DTOElementViewColumnSharedAttributes, DTOElementViewPropertyDefinitionColumn, DTOElementViewThemeColumn, DTOElementViewsListResponse, DTOElementsGetOutput, type DTOElementsGetQueryParsed, type DTOElementsGetQueryRaw, DTOElementsGetQuerySchema, DTOElementsGetTypeFilter, DTOExportJob, DTOExportJobCreatedBy, DTOExportJobDesignSystemPreview, DTOExportJobDesignSystemVersionPreview, DTOExportJobDestinations, DTOExportJobResponse, DTOExportJobResult, DTOExportJobsListFilter, DTOExporter, DTOExporterCreateInput, DTOExporterCreateOutput, DTOExporterGitProviderEnum, 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, DTOPageBlockColorV2, DTOPageBlockDefinition, DTOPageBlockDefinitionBehavior, DTOPageBlockDefinitionItem, DTOPageBlockDefinitionLayout, DTOPageBlockDefinitionProperty, DTOPageBlockDefinitionVariant, DTOPageBlockItemV2, DTOPagination, DTOPipeline, DTOPipelineCreateBody, DTOPipelineListQuery, DTOPipelineListResponse, DTOPipelineResponse, DTOPipelineTriggerBody, DTOPipelineUpdateBody, DTOPropertyDefinitionCreateActionInputV2, DTOPropertyDefinitionCreateActionOutputV2, DTOPropertyDefinitionDeleteActionInputV2, DTOPropertyDefinitionDeleteActionOutputV2, DTOPropertyDefinitionUpdateActionInputV2, DTOPropertyDefinitionUpdateActionOutputV2, 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, DTOWorkspaceResponse, DTOWorkspaceRole, DesignSystemBffEndpoint, DesignSystemMembersEndpoint, DesignSystemSourcesEndpoint, DesignSystemsEndpoint, DimensionsVariableScopeType, DocumentationHierarchySettings, DocumentationPageEditorModel, DocumentationPageV1DTO, 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, 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 };
|
|
90384
|
+
export { BackendVersionRoomYDoc, BlockDefinitionUtils, BlockParsingUtils, BrandsEndpoint, CodegenEndpoint, Collection, DTOAppBootstrapDataQuery, DTOAppBootstrapDataResponse, DTOAssetRenderConfiguration, DTOAuthenticatedUser, DTOAuthenticatedUserProfile, DTOAuthenticatedUserResponse, DTOBffFigmaImportRequestBody, DTOBffImportRequestBody, DTOBffUploadImportRequestBody, DTOBrand, DTOBrandCreateResponse, DTOBrandGetResponse, DTOBrandsListResponse, DTOCreateBrandInput, DTOCreateDocumentationGroupInput, DTOCreateDocumentationPageInputV2, DTOCreateDocumentationTabInput, DTOCreateVersionInput, DTODataSource, DTODataSourceCreationResponse, DTODataSourceFigma, DTODataSourceFigmaCloud, DTODataSourceFigmaVariablesPlugin, DTODataSourceTokenStudio, DTODataSourcesListResponse, DTODeleteDocumentationGroupInput, DTODeleteDocumentationPageInputV2, DTODeleteDocumentationTabGroupInput, DTODesignElementsDataDiffResponse, DTODesignSystem, DTODesignSystemCreateInput, DTODesignSystemInvitation, DTODesignSystemMember, DTODesignSystemMemberListResponse, DTODesignSystemMembersUpdatePayload, DTODesignSystemMembersUpdateResponse, DTODesignSystemResponse, DTODesignSystemRole, DTODesignSystemUpdateAccessModeInput, DTODesignSystemUpdateInput, DTODesignSystemVersion, DTODesignSystemVersionCreationResponse, DTODesignSystemVersionGetResponse, DTODesignSystemVersionJobStatusResponse, DTODesignSystemVersionJobsResponse, DTODesignSystemVersionStats, DTODesignSystemVersionStatsQuery, DTODesignSystemVersionsListResponse, DTODesignSystemsListResponse, DTODesignToken, DTODesignTokenCreatePayload, 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, DTODocumentationTabCreateActionInputV2, DTODocumentationTabCreateActionOutputV2, type DTODocumentationTabGroupCreateActionInputV2, DTODocumentationTabGroupDeleteActionInputV2, DTODocumentationTabGroupDeleteActionOutputV2, DTODownloadAssetsRequest, DTODownloadAssetsResponse, DTODuplicateDocumentationGroupInput, DTODuplicateDocumentationPageInputV2, DTOElementActionInput, DTOElementActionOutput, DTOElementPropertyDefinition, DTOElementPropertyDefinitionCreatePayload, DTOElementPropertyDefinitionDeletePayload, DTOElementPropertyDefinitionListResponse, 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, DTOPageBlockColorV2, DTOPageBlockDefinition, DTOPageBlockDefinitionBehavior, DTOPageBlockDefinitionItem, DTOPageBlockDefinitionLayout, DTOPageBlockDefinitionProperty, DTOPageBlockDefinitionVariant, DTOPageBlockItemV2, DTOPagination, DTOPipeline, DTOPipelineCreateBody, DTOPipelineListQuery, DTOPipelineListResponse, DTOPipelineResponse, DTOPipelineTriggerBody, DTOPipelineUpdateBody, DTOPropertyDefinitionCreateActionInputV2, DTOPropertyDefinitionCreateActionOutputV2, DTOPropertyDefinitionDeleteActionInputV2, DTOPropertyDefinitionDeleteActionOutputV2, DTOPropertyDefinitionUpdateActionInputV2, DTOPropertyDefinitionUpdateActionOutputV2, 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, DTOWorkspaceResponse, DTOWorkspaceRole, DesignSystemBffEndpoint, DesignSystemMembersEndpoint, DesignSystemSourcesEndpoint, DesignSystemVersionsEndpoint, DesignSystemsEndpoint, DimensionsVariableScopeType, DocumentationHierarchySettings, DocumentationPageEditorModel, DocumentationPageV1DTO, ElementPropertyDefinitionsEndpoint, 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, 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 };
|