@supernova-studio/client 0.59.10 → 0.59.12
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 +307 -3
- package/dist/index.d.ts +307 -3
- package/dist/index.js +51 -4
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +850 -803
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/api/dto/design-systems/index.ts +1 -0
- package/src/api/dto/design-systems/version-room.ts +12 -0
- package/src/api/dto/elements/elements-action-v2.ts +30 -24
- package/src/api/dto/users/authenticated-user.ts +4 -1
- package/src/api/endpoints/design-system/versions/elements-action.ts +3 -0
- package/src/api/endpoints/design-system/versions/versions.ts +8 -0
- package/src/yjs/version-room/backend.ts +5 -0
- package/src/yjs/version-room/base.ts +26 -0
package/dist/index.d.mts
CHANGED
|
@@ -10028,6 +10028,33 @@ declare const DTODesignSystemVersionStatsQuery: z.ZodObject<{
|
|
|
10028
10028
|
}>;
|
|
10029
10029
|
type DTODesignSystemVersionStatsQuery = z.infer<typeof DTODesignSystemVersionStatsQuery>;
|
|
10030
10030
|
|
|
10031
|
+
declare const DTODesignSystemVersionRoom: z.ZodObject<{
|
|
10032
|
+
id: z.ZodString;
|
|
10033
|
+
}, "strip", z.ZodTypeAny, {
|
|
10034
|
+
id: string;
|
|
10035
|
+
}, {
|
|
10036
|
+
id: string;
|
|
10037
|
+
}>;
|
|
10038
|
+
type DTODesignSystemVersionRoom = z.infer<typeof DTODesignSystemVersionRoom>;
|
|
10039
|
+
declare const DTODesignSystemVersionRoomResponse: z.ZodObject<{
|
|
10040
|
+
room: z.ZodObject<{
|
|
10041
|
+
id: z.ZodString;
|
|
10042
|
+
}, "strip", z.ZodTypeAny, {
|
|
10043
|
+
id: string;
|
|
10044
|
+
}, {
|
|
10045
|
+
id: string;
|
|
10046
|
+
}>;
|
|
10047
|
+
}, "strip", z.ZodTypeAny, {
|
|
10048
|
+
room: {
|
|
10049
|
+
id: string;
|
|
10050
|
+
};
|
|
10051
|
+
}, {
|
|
10052
|
+
room: {
|
|
10053
|
+
id: string;
|
|
10054
|
+
};
|
|
10055
|
+
}>;
|
|
10056
|
+
type DTODesignSystemVersionRoomResponse = z.infer<typeof DTODesignSystemVersionRoomResponse>;
|
|
10057
|
+
|
|
10031
10058
|
declare const VersionSQSPayload: z.ZodObject<{
|
|
10032
10059
|
jobId: z.ZodString;
|
|
10033
10060
|
designSystemId: z.ZodString;
|
|
@@ -44672,7 +44699,7 @@ declare const DTOElementActionOutput: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
44672
44699
|
};
|
|
44673
44700
|
}>]>;
|
|
44674
44701
|
type DTOElementActionOutput = z.infer<typeof DTOElementActionOutput>;
|
|
44675
|
-
declare const DTOElementActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
44702
|
+
declare const DTOElementActionInput: z.ZodIntersection<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
44676
44703
|
type: z.ZodLiteral<"DocumentationPageCreate">;
|
|
44677
44704
|
input: z.ZodObject<{
|
|
44678
44705
|
persistentId: z.ZodString;
|
|
@@ -46475,7 +46502,13 @@ declare const DTOElementActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
|
46475
46502
|
persistentId: string;
|
|
46476
46503
|
approvalState?: "ReadyForReview" | "ChangesRequested" | "Approved" | undefined;
|
|
46477
46504
|
};
|
|
46478
|
-
}>]
|
|
46505
|
+
}>]>, z.ZodObject<{
|
|
46506
|
+
tId: z.ZodOptional<z.ZodString>;
|
|
46507
|
+
}, "strip", z.ZodTypeAny, {
|
|
46508
|
+
tId?: string | undefined;
|
|
46509
|
+
}, {
|
|
46510
|
+
tId?: string | undefined;
|
|
46511
|
+
}>>;
|
|
46479
46512
|
type DTOElementActionInput = z.infer<typeof DTOElementActionInput>;
|
|
46480
46513
|
|
|
46481
46514
|
declare const DTOElementsGetQuerySchema: z.ZodObject<{
|
|
@@ -76031,6 +76064,35 @@ declare const DTOUserOnboardingJobLevel: z.ZodEnum<["Executive", "Manager", "Ind
|
|
|
76031
76064
|
type DTOUserOnboardingJobLevel = z.infer<typeof DTOUserOnboardingJobLevel>;
|
|
76032
76065
|
declare const DTOUserSource: z.ZodEnum<["SignUp", "Invite", "SSO"]>;
|
|
76033
76066
|
type DTOUserSource = z.infer<typeof DTOUserSource>;
|
|
76067
|
+
declare const DTOUserTheme: z.ZodObject<{
|
|
76068
|
+
preset: z.ZodOptional<z.ZodEnum<["Custom", "Default", "HighContrast", "DefaultDark", "HighContrastDark", "SpaceBlue", "DarkGrey"]>>;
|
|
76069
|
+
backgroundColor: z.ZodOptional<z.ZodString>;
|
|
76070
|
+
accentColor: z.ZodOptional<z.ZodString>;
|
|
76071
|
+
contrast: z.ZodOptional<z.ZodNumber>;
|
|
76072
|
+
isSecondaryEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
76073
|
+
secondaryBackgroundColor: z.ZodOptional<z.ZodString>;
|
|
76074
|
+
secondaryContrast: z.ZodOptional<z.ZodNumber>;
|
|
76075
|
+
isEditorWhite: z.ZodOptional<z.ZodBoolean>;
|
|
76076
|
+
}, "strip", z.ZodTypeAny, {
|
|
76077
|
+
backgroundColor?: string | undefined;
|
|
76078
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | undefined;
|
|
76079
|
+
accentColor?: string | undefined;
|
|
76080
|
+
contrast?: number | undefined;
|
|
76081
|
+
isSecondaryEnabled?: boolean | undefined;
|
|
76082
|
+
secondaryBackgroundColor?: string | undefined;
|
|
76083
|
+
secondaryContrast?: number | undefined;
|
|
76084
|
+
isEditorWhite?: boolean | undefined;
|
|
76085
|
+
}, {
|
|
76086
|
+
backgroundColor?: string | undefined;
|
|
76087
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | undefined;
|
|
76088
|
+
accentColor?: string | undefined;
|
|
76089
|
+
contrast?: number | undefined;
|
|
76090
|
+
isSecondaryEnabled?: boolean | undefined;
|
|
76091
|
+
secondaryBackgroundColor?: string | undefined;
|
|
76092
|
+
secondaryContrast?: number | undefined;
|
|
76093
|
+
isEditorWhite?: boolean | undefined;
|
|
76094
|
+
}>;
|
|
76095
|
+
type DTOUserTheme = z.infer<typeof DTOUserTheme>;
|
|
76034
76096
|
declare const DTOUserOnboarding: z.ZodObject<{
|
|
76035
76097
|
companyName: z.ZodOptional<z.ZodString>;
|
|
76036
76098
|
numberOfPeopleInOrg: z.ZodOptional<z.ZodString>;
|
|
@@ -76105,6 +76167,34 @@ declare const DTOAuthenticatedUserProfile: z.ZodObject<z.objectUtil.extendShape<
|
|
|
76105
76167
|
defaultDestination?: string | undefined;
|
|
76106
76168
|
isPageDraftOnboardingFinished?: boolean | undefined;
|
|
76107
76169
|
}>>;
|
|
76170
|
+
theme: z.ZodOptional<z.ZodObject<{
|
|
76171
|
+
preset: z.ZodOptional<z.ZodEnum<["Custom", "Default", "HighContrast", "DefaultDark", "HighContrastDark", "SpaceBlue", "DarkGrey"]>>;
|
|
76172
|
+
backgroundColor: z.ZodOptional<z.ZodString>;
|
|
76173
|
+
accentColor: z.ZodOptional<z.ZodString>;
|
|
76174
|
+
contrast: z.ZodOptional<z.ZodNumber>;
|
|
76175
|
+
isSecondaryEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
76176
|
+
secondaryBackgroundColor: z.ZodOptional<z.ZodString>;
|
|
76177
|
+
secondaryContrast: z.ZodOptional<z.ZodNumber>;
|
|
76178
|
+
isEditorWhite: z.ZodOptional<z.ZodBoolean>;
|
|
76179
|
+
}, "strip", z.ZodTypeAny, {
|
|
76180
|
+
backgroundColor?: string | undefined;
|
|
76181
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | undefined;
|
|
76182
|
+
accentColor?: string | undefined;
|
|
76183
|
+
contrast?: number | undefined;
|
|
76184
|
+
isSecondaryEnabled?: boolean | undefined;
|
|
76185
|
+
secondaryBackgroundColor?: string | undefined;
|
|
76186
|
+
secondaryContrast?: number | undefined;
|
|
76187
|
+
isEditorWhite?: boolean | undefined;
|
|
76188
|
+
}, {
|
|
76189
|
+
backgroundColor?: string | undefined;
|
|
76190
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | undefined;
|
|
76191
|
+
accentColor?: string | undefined;
|
|
76192
|
+
contrast?: number | undefined;
|
|
76193
|
+
isSecondaryEnabled?: boolean | undefined;
|
|
76194
|
+
secondaryBackgroundColor?: string | undefined;
|
|
76195
|
+
secondaryContrast?: number | undefined;
|
|
76196
|
+
isEditorWhite?: boolean | undefined;
|
|
76197
|
+
}>>;
|
|
76108
76198
|
}>, "strip", z.ZodTypeAny, {
|
|
76109
76199
|
name: string;
|
|
76110
76200
|
nickname?: string | undefined;
|
|
@@ -76121,6 +76211,16 @@ declare const DTOAuthenticatedUserProfile: z.ZodObject<z.objectUtil.extendShape<
|
|
|
76121
76211
|
defaultDestination?: string | undefined;
|
|
76122
76212
|
isPageDraftOnboardingFinished?: boolean | undefined;
|
|
76123
76213
|
} | undefined;
|
|
76214
|
+
theme?: {
|
|
76215
|
+
backgroundColor?: string | undefined;
|
|
76216
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | undefined;
|
|
76217
|
+
accentColor?: string | undefined;
|
|
76218
|
+
contrast?: number | undefined;
|
|
76219
|
+
isSecondaryEnabled?: boolean | undefined;
|
|
76220
|
+
secondaryBackgroundColor?: string | undefined;
|
|
76221
|
+
secondaryContrast?: number | undefined;
|
|
76222
|
+
isEditorWhite?: boolean | undefined;
|
|
76223
|
+
} | undefined;
|
|
76124
76224
|
}, {
|
|
76125
76225
|
name: string;
|
|
76126
76226
|
nickname?: string | undefined;
|
|
@@ -76137,6 +76237,16 @@ declare const DTOAuthenticatedUserProfile: z.ZodObject<z.objectUtil.extendShape<
|
|
|
76137
76237
|
defaultDestination?: string | undefined;
|
|
76138
76238
|
isPageDraftOnboardingFinished?: boolean | undefined;
|
|
76139
76239
|
} | undefined;
|
|
76240
|
+
theme?: {
|
|
76241
|
+
backgroundColor?: string | undefined;
|
|
76242
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | undefined;
|
|
76243
|
+
accentColor?: string | undefined;
|
|
76244
|
+
contrast?: number | undefined;
|
|
76245
|
+
isSecondaryEnabled?: boolean | undefined;
|
|
76246
|
+
secondaryBackgroundColor?: string | undefined;
|
|
76247
|
+
secondaryContrast?: number | undefined;
|
|
76248
|
+
isEditorWhite?: boolean | undefined;
|
|
76249
|
+
} | undefined;
|
|
76140
76250
|
}>;
|
|
76141
76251
|
type DTOAuthenticatedUserProfile = z.infer<typeof DTOAuthenticatedUserProfile>;
|
|
76142
76252
|
declare const DTOAuthenticatedUser: z.ZodObject<z.objectUtil.extendShape<{
|
|
@@ -76195,6 +76305,34 @@ declare const DTOAuthenticatedUser: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
76195
76305
|
defaultDestination?: string | undefined;
|
|
76196
76306
|
isPageDraftOnboardingFinished?: boolean | undefined;
|
|
76197
76307
|
}>>;
|
|
76308
|
+
theme: z.ZodOptional<z.ZodObject<{
|
|
76309
|
+
preset: z.ZodOptional<z.ZodEnum<["Custom", "Default", "HighContrast", "DefaultDark", "HighContrastDark", "SpaceBlue", "DarkGrey"]>>;
|
|
76310
|
+
backgroundColor: z.ZodOptional<z.ZodString>;
|
|
76311
|
+
accentColor: z.ZodOptional<z.ZodString>;
|
|
76312
|
+
contrast: z.ZodOptional<z.ZodNumber>;
|
|
76313
|
+
isSecondaryEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
76314
|
+
secondaryBackgroundColor: z.ZodOptional<z.ZodString>;
|
|
76315
|
+
secondaryContrast: z.ZodOptional<z.ZodNumber>;
|
|
76316
|
+
isEditorWhite: z.ZodOptional<z.ZodBoolean>;
|
|
76317
|
+
}, "strip", z.ZodTypeAny, {
|
|
76318
|
+
backgroundColor?: string | undefined;
|
|
76319
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | undefined;
|
|
76320
|
+
accentColor?: string | undefined;
|
|
76321
|
+
contrast?: number | undefined;
|
|
76322
|
+
isSecondaryEnabled?: boolean | undefined;
|
|
76323
|
+
secondaryBackgroundColor?: string | undefined;
|
|
76324
|
+
secondaryContrast?: number | undefined;
|
|
76325
|
+
isEditorWhite?: boolean | undefined;
|
|
76326
|
+
}, {
|
|
76327
|
+
backgroundColor?: string | undefined;
|
|
76328
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | undefined;
|
|
76329
|
+
accentColor?: string | undefined;
|
|
76330
|
+
contrast?: number | undefined;
|
|
76331
|
+
isSecondaryEnabled?: boolean | undefined;
|
|
76332
|
+
secondaryBackgroundColor?: string | undefined;
|
|
76333
|
+
secondaryContrast?: number | undefined;
|
|
76334
|
+
isEditorWhite?: boolean | undefined;
|
|
76335
|
+
}>>;
|
|
76198
76336
|
}>, "strip", z.ZodTypeAny, {
|
|
76199
76337
|
name: string;
|
|
76200
76338
|
nickname?: string | undefined;
|
|
@@ -76211,6 +76349,16 @@ declare const DTOAuthenticatedUser: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
76211
76349
|
defaultDestination?: string | undefined;
|
|
76212
76350
|
isPageDraftOnboardingFinished?: boolean | undefined;
|
|
76213
76351
|
} | undefined;
|
|
76352
|
+
theme?: {
|
|
76353
|
+
backgroundColor?: string | undefined;
|
|
76354
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | undefined;
|
|
76355
|
+
accentColor?: string | undefined;
|
|
76356
|
+
contrast?: number | undefined;
|
|
76357
|
+
isSecondaryEnabled?: boolean | undefined;
|
|
76358
|
+
secondaryBackgroundColor?: string | undefined;
|
|
76359
|
+
secondaryContrast?: number | undefined;
|
|
76360
|
+
isEditorWhite?: boolean | undefined;
|
|
76361
|
+
} | undefined;
|
|
76214
76362
|
}, {
|
|
76215
76363
|
name: string;
|
|
76216
76364
|
nickname?: string | undefined;
|
|
@@ -76227,6 +76375,16 @@ declare const DTOAuthenticatedUser: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
76227
76375
|
defaultDestination?: string | undefined;
|
|
76228
76376
|
isPageDraftOnboardingFinished?: boolean | undefined;
|
|
76229
76377
|
} | undefined;
|
|
76378
|
+
theme?: {
|
|
76379
|
+
backgroundColor?: string | undefined;
|
|
76380
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | undefined;
|
|
76381
|
+
accentColor?: string | undefined;
|
|
76382
|
+
contrast?: number | undefined;
|
|
76383
|
+
isSecondaryEnabled?: boolean | undefined;
|
|
76384
|
+
secondaryBackgroundColor?: string | undefined;
|
|
76385
|
+
secondaryContrast?: number | undefined;
|
|
76386
|
+
isEditorWhite?: boolean | undefined;
|
|
76387
|
+
} | undefined;
|
|
76230
76388
|
}>;
|
|
76231
76389
|
createdAt: z.ZodDate;
|
|
76232
76390
|
loggedOutAt: z.ZodOptional<z.ZodDate>;
|
|
@@ -76251,6 +76409,16 @@ declare const DTOAuthenticatedUser: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
76251
76409
|
defaultDestination?: string | undefined;
|
|
76252
76410
|
isPageDraftOnboardingFinished?: boolean | undefined;
|
|
76253
76411
|
} | undefined;
|
|
76412
|
+
theme?: {
|
|
76413
|
+
backgroundColor?: string | undefined;
|
|
76414
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | undefined;
|
|
76415
|
+
accentColor?: string | undefined;
|
|
76416
|
+
contrast?: number | undefined;
|
|
76417
|
+
isSecondaryEnabled?: boolean | undefined;
|
|
76418
|
+
secondaryBackgroundColor?: string | undefined;
|
|
76419
|
+
secondaryContrast?: number | undefined;
|
|
76420
|
+
isEditorWhite?: boolean | undefined;
|
|
76421
|
+
} | undefined;
|
|
76254
76422
|
};
|
|
76255
76423
|
loggedOutAt?: Date | undefined;
|
|
76256
76424
|
source?: "SignUp" | "Invite" | "SSO" | undefined;
|
|
@@ -76274,6 +76442,16 @@ declare const DTOAuthenticatedUser: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
76274
76442
|
defaultDestination?: string | undefined;
|
|
76275
76443
|
isPageDraftOnboardingFinished?: boolean | undefined;
|
|
76276
76444
|
} | undefined;
|
|
76445
|
+
theme?: {
|
|
76446
|
+
backgroundColor?: string | undefined;
|
|
76447
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | undefined;
|
|
76448
|
+
accentColor?: string | undefined;
|
|
76449
|
+
contrast?: number | undefined;
|
|
76450
|
+
isSecondaryEnabled?: boolean | undefined;
|
|
76451
|
+
secondaryBackgroundColor?: string | undefined;
|
|
76452
|
+
secondaryContrast?: number | undefined;
|
|
76453
|
+
isEditorWhite?: boolean | undefined;
|
|
76454
|
+
} | undefined;
|
|
76277
76455
|
};
|
|
76278
76456
|
loggedOutAt?: Date | undefined;
|
|
76279
76457
|
source?: "SignUp" | "Invite" | "SSO" | undefined;
|
|
@@ -76336,6 +76514,34 @@ declare const DTOAuthenticatedUserResponse: z.ZodObject<{
|
|
|
76336
76514
|
defaultDestination?: string | undefined;
|
|
76337
76515
|
isPageDraftOnboardingFinished?: boolean | undefined;
|
|
76338
76516
|
}>>;
|
|
76517
|
+
theme: z.ZodOptional<z.ZodObject<{
|
|
76518
|
+
preset: z.ZodOptional<z.ZodEnum<["Custom", "Default", "HighContrast", "DefaultDark", "HighContrastDark", "SpaceBlue", "DarkGrey"]>>;
|
|
76519
|
+
backgroundColor: z.ZodOptional<z.ZodString>;
|
|
76520
|
+
accentColor: z.ZodOptional<z.ZodString>;
|
|
76521
|
+
contrast: z.ZodOptional<z.ZodNumber>;
|
|
76522
|
+
isSecondaryEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
76523
|
+
secondaryBackgroundColor: z.ZodOptional<z.ZodString>;
|
|
76524
|
+
secondaryContrast: z.ZodOptional<z.ZodNumber>;
|
|
76525
|
+
isEditorWhite: z.ZodOptional<z.ZodBoolean>;
|
|
76526
|
+
}, "strip", z.ZodTypeAny, {
|
|
76527
|
+
backgroundColor?: string | undefined;
|
|
76528
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | undefined;
|
|
76529
|
+
accentColor?: string | undefined;
|
|
76530
|
+
contrast?: number | undefined;
|
|
76531
|
+
isSecondaryEnabled?: boolean | undefined;
|
|
76532
|
+
secondaryBackgroundColor?: string | undefined;
|
|
76533
|
+
secondaryContrast?: number | undefined;
|
|
76534
|
+
isEditorWhite?: boolean | undefined;
|
|
76535
|
+
}, {
|
|
76536
|
+
backgroundColor?: string | undefined;
|
|
76537
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | undefined;
|
|
76538
|
+
accentColor?: string | undefined;
|
|
76539
|
+
contrast?: number | undefined;
|
|
76540
|
+
isSecondaryEnabled?: boolean | undefined;
|
|
76541
|
+
secondaryBackgroundColor?: string | undefined;
|
|
76542
|
+
secondaryContrast?: number | undefined;
|
|
76543
|
+
isEditorWhite?: boolean | undefined;
|
|
76544
|
+
}>>;
|
|
76339
76545
|
}>, "strip", z.ZodTypeAny, {
|
|
76340
76546
|
name: string;
|
|
76341
76547
|
nickname?: string | undefined;
|
|
@@ -76352,6 +76558,16 @@ declare const DTOAuthenticatedUserResponse: z.ZodObject<{
|
|
|
76352
76558
|
defaultDestination?: string | undefined;
|
|
76353
76559
|
isPageDraftOnboardingFinished?: boolean | undefined;
|
|
76354
76560
|
} | undefined;
|
|
76561
|
+
theme?: {
|
|
76562
|
+
backgroundColor?: string | undefined;
|
|
76563
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | undefined;
|
|
76564
|
+
accentColor?: string | undefined;
|
|
76565
|
+
contrast?: number | undefined;
|
|
76566
|
+
isSecondaryEnabled?: boolean | undefined;
|
|
76567
|
+
secondaryBackgroundColor?: string | undefined;
|
|
76568
|
+
secondaryContrast?: number | undefined;
|
|
76569
|
+
isEditorWhite?: boolean | undefined;
|
|
76570
|
+
} | undefined;
|
|
76355
76571
|
}, {
|
|
76356
76572
|
name: string;
|
|
76357
76573
|
nickname?: string | undefined;
|
|
@@ -76368,6 +76584,16 @@ declare const DTOAuthenticatedUserResponse: z.ZodObject<{
|
|
|
76368
76584
|
defaultDestination?: string | undefined;
|
|
76369
76585
|
isPageDraftOnboardingFinished?: boolean | undefined;
|
|
76370
76586
|
} | undefined;
|
|
76587
|
+
theme?: {
|
|
76588
|
+
backgroundColor?: string | undefined;
|
|
76589
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | undefined;
|
|
76590
|
+
accentColor?: string | undefined;
|
|
76591
|
+
contrast?: number | undefined;
|
|
76592
|
+
isSecondaryEnabled?: boolean | undefined;
|
|
76593
|
+
secondaryBackgroundColor?: string | undefined;
|
|
76594
|
+
secondaryContrast?: number | undefined;
|
|
76595
|
+
isEditorWhite?: boolean | undefined;
|
|
76596
|
+
} | undefined;
|
|
76371
76597
|
}>;
|
|
76372
76598
|
createdAt: z.ZodDate;
|
|
76373
76599
|
loggedOutAt: z.ZodOptional<z.ZodDate>;
|
|
@@ -76392,6 +76618,16 @@ declare const DTOAuthenticatedUserResponse: z.ZodObject<{
|
|
|
76392
76618
|
defaultDestination?: string | undefined;
|
|
76393
76619
|
isPageDraftOnboardingFinished?: boolean | undefined;
|
|
76394
76620
|
} | undefined;
|
|
76621
|
+
theme?: {
|
|
76622
|
+
backgroundColor?: string | undefined;
|
|
76623
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | undefined;
|
|
76624
|
+
accentColor?: string | undefined;
|
|
76625
|
+
contrast?: number | undefined;
|
|
76626
|
+
isSecondaryEnabled?: boolean | undefined;
|
|
76627
|
+
secondaryBackgroundColor?: string | undefined;
|
|
76628
|
+
secondaryContrast?: number | undefined;
|
|
76629
|
+
isEditorWhite?: boolean | undefined;
|
|
76630
|
+
} | undefined;
|
|
76395
76631
|
};
|
|
76396
76632
|
loggedOutAt?: Date | undefined;
|
|
76397
76633
|
source?: "SignUp" | "Invite" | "SSO" | undefined;
|
|
@@ -76415,6 +76651,16 @@ declare const DTOAuthenticatedUserResponse: z.ZodObject<{
|
|
|
76415
76651
|
defaultDestination?: string | undefined;
|
|
76416
76652
|
isPageDraftOnboardingFinished?: boolean | undefined;
|
|
76417
76653
|
} | undefined;
|
|
76654
|
+
theme?: {
|
|
76655
|
+
backgroundColor?: string | undefined;
|
|
76656
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | undefined;
|
|
76657
|
+
accentColor?: string | undefined;
|
|
76658
|
+
contrast?: number | undefined;
|
|
76659
|
+
isSecondaryEnabled?: boolean | undefined;
|
|
76660
|
+
secondaryBackgroundColor?: string | undefined;
|
|
76661
|
+
secondaryContrast?: number | undefined;
|
|
76662
|
+
isEditorWhite?: boolean | undefined;
|
|
76663
|
+
} | undefined;
|
|
76418
76664
|
};
|
|
76419
76665
|
loggedOutAt?: Date | undefined;
|
|
76420
76666
|
source?: "SignUp" | "Invite" | "SSO" | undefined;
|
|
@@ -76440,6 +76686,16 @@ declare const DTOAuthenticatedUserResponse: z.ZodObject<{
|
|
|
76440
76686
|
defaultDestination?: string | undefined;
|
|
76441
76687
|
isPageDraftOnboardingFinished?: boolean | undefined;
|
|
76442
76688
|
} | undefined;
|
|
76689
|
+
theme?: {
|
|
76690
|
+
backgroundColor?: string | undefined;
|
|
76691
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | undefined;
|
|
76692
|
+
accentColor?: string | undefined;
|
|
76693
|
+
contrast?: number | undefined;
|
|
76694
|
+
isSecondaryEnabled?: boolean | undefined;
|
|
76695
|
+
secondaryBackgroundColor?: string | undefined;
|
|
76696
|
+
secondaryContrast?: number | undefined;
|
|
76697
|
+
isEditorWhite?: boolean | undefined;
|
|
76698
|
+
} | undefined;
|
|
76443
76699
|
};
|
|
76444
76700
|
loggedOutAt?: Date | undefined;
|
|
76445
76701
|
source?: "SignUp" | "Invite" | "SSO" | undefined;
|
|
@@ -76465,6 +76721,16 @@ declare const DTOAuthenticatedUserResponse: z.ZodObject<{
|
|
|
76465
76721
|
defaultDestination?: string | undefined;
|
|
76466
76722
|
isPageDraftOnboardingFinished?: boolean | undefined;
|
|
76467
76723
|
} | undefined;
|
|
76724
|
+
theme?: {
|
|
76725
|
+
backgroundColor?: string | undefined;
|
|
76726
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | undefined;
|
|
76727
|
+
accentColor?: string | undefined;
|
|
76728
|
+
contrast?: number | undefined;
|
|
76729
|
+
isSecondaryEnabled?: boolean | undefined;
|
|
76730
|
+
secondaryBackgroundColor?: string | undefined;
|
|
76731
|
+
secondaryContrast?: number | undefined;
|
|
76732
|
+
isEditorWhite?: boolean | undefined;
|
|
76733
|
+
} | undefined;
|
|
76468
76734
|
};
|
|
76469
76735
|
loggedOutAt?: Date | undefined;
|
|
76470
76736
|
source?: "SignUp" | "Invite" | "SSO" | undefined;
|
|
@@ -94170,6 +94436,11 @@ declare class DesignSystemVersionsEndpoint {
|
|
|
94170
94436
|
designSystemVersionId?: string | undefined;
|
|
94171
94437
|
};
|
|
94172
94438
|
}>;
|
|
94439
|
+
room(dsId: string, vId: string): Promise<{
|
|
94440
|
+
room: {
|
|
94441
|
+
id: string;
|
|
94442
|
+
};
|
|
94443
|
+
}>;
|
|
94173
94444
|
}
|
|
94174
94445
|
|
|
94175
94446
|
declare class DesignSystemBffEndpoint {
|
|
@@ -95939,6 +96210,16 @@ declare class UsersEndpoint {
|
|
|
95939
96210
|
defaultDestination?: string | undefined;
|
|
95940
96211
|
isPageDraftOnboardingFinished?: boolean | undefined;
|
|
95941
96212
|
} | undefined;
|
|
96213
|
+
theme?: {
|
|
96214
|
+
backgroundColor?: string | undefined;
|
|
96215
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | undefined;
|
|
96216
|
+
accentColor?: string | undefined;
|
|
96217
|
+
contrast?: number | undefined;
|
|
96218
|
+
isSecondaryEnabled?: boolean | undefined;
|
|
96219
|
+
secondaryBackgroundColor?: string | undefined;
|
|
96220
|
+
secondaryContrast?: number | undefined;
|
|
96221
|
+
isEditorWhite?: boolean | undefined;
|
|
96222
|
+
} | undefined;
|
|
95942
96223
|
};
|
|
95943
96224
|
loggedOutAt?: Date | undefined;
|
|
95944
96225
|
source?: "SignUp" | "Invite" | "SSO" | undefined;
|
|
@@ -96156,6 +96437,16 @@ declare class UsersEndpoint {
|
|
|
96156
96437
|
defaultDestination?: string | undefined;
|
|
96157
96438
|
isPageDraftOnboardingFinished?: boolean | undefined;
|
|
96158
96439
|
} | undefined;
|
|
96440
|
+
theme?: {
|
|
96441
|
+
backgroundColor?: string | undefined;
|
|
96442
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | undefined;
|
|
96443
|
+
accentColor?: string | undefined;
|
|
96444
|
+
contrast?: number | undefined;
|
|
96445
|
+
isSecondaryEnabled?: boolean | undefined;
|
|
96446
|
+
secondaryBackgroundColor?: string | undefined;
|
|
96447
|
+
secondaryContrast?: number | undefined;
|
|
96448
|
+
isEditorWhite?: boolean | undefined;
|
|
96449
|
+
} | undefined;
|
|
96159
96450
|
};
|
|
96160
96451
|
loggedOutAt?: Date | undefined;
|
|
96161
96452
|
source?: "SignUp" | "Invite" | "SSO" | undefined;
|
|
@@ -96182,6 +96473,16 @@ declare class UsersEndpoint {
|
|
|
96182
96473
|
defaultDestination?: string | undefined;
|
|
96183
96474
|
isPageDraftOnboardingFinished?: boolean | undefined;
|
|
96184
96475
|
} | undefined;
|
|
96476
|
+
theme?: {
|
|
96477
|
+
backgroundColor?: string | undefined;
|
|
96478
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | undefined;
|
|
96479
|
+
accentColor?: string | undefined;
|
|
96480
|
+
contrast?: number | undefined;
|
|
96481
|
+
isSecondaryEnabled?: boolean | undefined;
|
|
96482
|
+
secondaryBackgroundColor?: string | undefined;
|
|
96483
|
+
secondaryContrast?: number | undefined;
|
|
96484
|
+
isEditorWhite?: boolean | undefined;
|
|
96485
|
+
} | undefined;
|
|
96185
96486
|
};
|
|
96186
96487
|
loggedOutAt?: Date | undefined;
|
|
96187
96488
|
source?: "SignUp" | "Invite" | "SSO" | undefined;
|
|
@@ -98774,6 +99075,7 @@ type DocumentationHierarchyTransaction = {
|
|
|
98774
99075
|
pageHashesToUpdate?: Record<string, string>;
|
|
98775
99076
|
pageApprovals?: DocumentationPageApproval[];
|
|
98776
99077
|
pageApprovalIdsToDelete?: string[];
|
|
99078
|
+
executedTransactionIds?: string[];
|
|
98777
99079
|
};
|
|
98778
99080
|
declare class BackendVersionRoomYDoc {
|
|
98779
99081
|
private readonly yDoc;
|
|
@@ -98828,6 +99130,8 @@ declare class VersionRoomBaseYDoc {
|
|
|
98828
99130
|
updatedByUserId: string;
|
|
98829
99131
|
}[];
|
|
98830
99132
|
private get documentationPageApprovalsMap();
|
|
99133
|
+
updateExecutedTransactionIds(transactionIds: string[]): void;
|
|
99134
|
+
private get executedTransactionIdsArray();
|
|
98831
99135
|
}
|
|
98832
99136
|
|
|
98833
99137
|
declare class FrontendVersionRoomYDoc {
|
|
@@ -98859,4 +99163,4 @@ declare class FrontendVersionRoomYDoc {
|
|
|
98859
99163
|
|
|
98860
99164
|
declare function generatePageContentHash(content: DocumentationPageEditorModel, definitions: PageBlockDefinition[], debug?: boolean): string;
|
|
98861
99165
|
|
|
98862
|
-
export { BackendVersionRoomYDoc, BlockDefinitionUtils, BlockParsingUtils, BrandsEndpoint, CodegenEndpoint, Collection, DTOAppBootstrapDataQuery, DTOAppBootstrapDataResponse, DTOAssetRenderConfiguration, DTOAuthenticatedUser, DTOAuthenticatedUserProfile, DTOAuthenticatedUserResponse, DTOBffFigmaImportRequestBody, DTOBffImportRequestBody, DTOBffUploadImportRequestBody, DTOBrand, DTOBrandCreatePayload, DTOBrandCreateResponse, DTOBrandGetResponse, DTOBrandUpdatePayload, DTOBrandsListResponse, DTOColorTokenInlineData, DTOCreateDocumentationGroupInput, DTOCreateDocumentationPageInputV2, DTOCreateDocumentationTabInput, DTOCreateVersionInput, DTODataSource, DTODataSourceFigma, DTODataSourceFigmaCloud, DTODataSourceFigmaCreatePayload, DTODataSourceFigmaImportPayload, DTODataSourceFigmaScope, DTODataSourceFigmaVariablesPlugin, DTODataSourceResponse, DTODataSourceTokenStudio, DTODataSourcesListResponse, DTODeleteDocumentationGroupInput, DTODeleteDocumentationPageInputV2, DTODeleteDocumentationTabGroupInput, DTODesignElementsDataDiffResponse, DTODesignSystem, DTODesignSystemComponent, DTODesignSystemComponentCreateInput, DTODesignSystemComponentListResponse, DTODesignSystemComponentResponse, 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, DTODocumentationPageRoom, DTODocumentationPageRoomHeaderData, DTODocumentationPageRoomHeaderDataUpdate, DTODocumentationPageRoomResponse, 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, DTOElementsGetOutputV2, type DTOElementsGetQueryParsed, type DTOElementsGetQueryRaw, DTOElementsGetQuerySchema, DTOElementsGetTypeFilter, DTOEvent, DTOEventDataSourcesImported, DTOEventFigmaNodesRendered, DTOExportJob, DTOExportJobCreatedBy, DTOExportJobDesignSystemPreview, DTOExportJobDesignSystemVersionPreview, DTOExportJobDestinations, DTOExportJobResponse, DTOExportJobResponseLegacy, DTOExportJobResult, DTOExportJobsListFilter, DTOExporter, DTOExporterCreateInput, DTOExporterGitProviderEnum, DTOExporterListQuery, DTOExporterListResponse, DTOExporterMembership, DTOExporterMembershipRole, DTOExporterPropertyDefinition, DTOExporterPropertyDefinitionArray, DTOExporterPropertyDefinitionBoolean, DTOExporterPropertyDefinitionEnum, DTOExporterPropertyDefinitionEnumOption, DTOExporterPropertyDefinitionNumber, DTOExporterPropertyDefinitionObject, DTOExporterPropertyDefinitionString, DTOExporterPropertyDefinitionValue, DTOExporterPropertyDefinitionValueMap, DTOExporterPropertyDefinitionsResponse, DTOExporterPropertyType, DTOExporterResponse, DTOExporterSource, DTOExporterType, DTOExporterUpdateInput, DTOFigmaComponent, DTOFigmaComponentBooleanProperty, DTOFigmaComponentGroup, DTOFigmaComponentGroupListResponse, DTOFigmaComponentInstanceSwapProperty, DTOFigmaComponentListResponse, DTOFigmaComponentProperty, DTOFigmaComponentPropertyMap, DTOFigmaComponentTextProperty, DTOFigmaComponentVariantProperty, DTOFigmaNode, DTOFigmaNodeData, DTOFigmaNodeDataV2, DTOFigmaNodeOrigin, DTOFigmaNodeRenderActionInput, DTOFigmaNodeRenderActionOutput, DTOFigmaNodeRenderAsyncActionInput, DTOFigmaNodeRenderAsyncActionOutput, DTOFigmaNodeRenderFormat, DTOFigmaNodeRenderIdInput, DTOFigmaNodeRenderInput, DTOFigmaNodeRenderUrlInput, DTOFigmaNodeRerenderInput, DTOFigmaNodeV2, DTOFrameNodeStructure, DTOFrameNodeStructureListResponse, 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, DTOPageRedirect, DTOPageRedirectCreateBody, DTOPageRedirectDeleteResponse, DTOPageRedirectListResponse, DTOPageRedirectResponse, DTOPageRedirectUpdateBody, DTOPagination, DTOPipeline, DTOPipelineCreateBody, DTOPipelineListQuery, DTOPipelineListResponse, DTOPipelineResponse, DTOPipelineTriggerBody, DTOPipelineUpdateBody, type DTOPropertyDefinitionBase, 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, DocumentationEndpoint, DocumentationHierarchySettings, DocumentationPageEditorModel, DocumentationPageV1DTO, ElementPropertyDefinitionsEndpoint, ElementPropertyValuesEndpoint, ElementsActionEndpoint, ElementsEndpoint, ExporterJobsEndpoint, ExportersEndpoint, FigmaComponentGroupsEndpoint, FigmaComponentsEndpoint, FigmaFrameStructuresEndpoint, FigmaUtils, FormattedCollections, FrontendVersionRoomYDoc, ImportJobsEndpoint, type ListItemNode, type ListNode, ListTreeBuilder, LiveblocksEndpoint, NpmRegistryInput, ObjectMeta, OverridesEndpoint, PageBlockEditorModel, PageSectionEditorModel, ParsedFigmaFileURLError, 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, serializeQuery, shallowProsemirrorNodeToBlock, validateDesignSystemVersion, validateSsoPayload, yDocToPage, yXmlFragmentToPage, yjsToDocumentationHierarchy, yjsToItemConfiguration };
|
|
99166
|
+
export { BackendVersionRoomYDoc, BlockDefinitionUtils, BlockParsingUtils, BrandsEndpoint, CodegenEndpoint, Collection, DTOAppBootstrapDataQuery, DTOAppBootstrapDataResponse, DTOAssetRenderConfiguration, DTOAuthenticatedUser, DTOAuthenticatedUserProfile, DTOAuthenticatedUserResponse, DTOBffFigmaImportRequestBody, DTOBffImportRequestBody, DTOBffUploadImportRequestBody, DTOBrand, DTOBrandCreatePayload, DTOBrandCreateResponse, DTOBrandGetResponse, DTOBrandUpdatePayload, DTOBrandsListResponse, DTOColorTokenInlineData, DTOCreateDocumentationGroupInput, DTOCreateDocumentationPageInputV2, DTOCreateDocumentationTabInput, DTOCreateVersionInput, DTODataSource, DTODataSourceFigma, DTODataSourceFigmaCloud, DTODataSourceFigmaCreatePayload, DTODataSourceFigmaImportPayload, DTODataSourceFigmaScope, DTODataSourceFigmaVariablesPlugin, DTODataSourceResponse, DTODataSourceTokenStudio, DTODataSourcesListResponse, DTODeleteDocumentationGroupInput, DTODeleteDocumentationPageInputV2, DTODeleteDocumentationTabGroupInput, DTODesignElementsDataDiffResponse, DTODesignSystem, DTODesignSystemComponent, DTODesignSystemComponentCreateInput, DTODesignSystemComponentListResponse, DTODesignSystemComponentResponse, DTODesignSystemContactsResponse, DTODesignSystemCreateInput, DTODesignSystemInvitation, DTODesignSystemMember, DTODesignSystemMemberListResponse, DTODesignSystemMembersUpdatePayload, DTODesignSystemMembersUpdateResponse, DTODesignSystemResponse, DTODesignSystemRole, DTODesignSystemUpdateAccessModeInput, DTODesignSystemUpdateInput, DTODesignSystemVersion, DTODesignSystemVersionCreationResponse, DTODesignSystemVersionGetResponse, DTODesignSystemVersionJobStatusResponse, DTODesignSystemVersionJobsResponse, DTODesignSystemVersionRoom, DTODesignSystemVersionRoomResponse, 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, DTODocumentationPageRoom, DTODocumentationPageRoomHeaderData, DTODocumentationPageRoomHeaderDataUpdate, DTODocumentationPageRoomResponse, 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, DTOElementsGetOutputV2, type DTOElementsGetQueryParsed, type DTOElementsGetQueryRaw, DTOElementsGetQuerySchema, DTOElementsGetTypeFilter, DTOEvent, DTOEventDataSourcesImported, DTOEventFigmaNodesRendered, DTOExportJob, DTOExportJobCreatedBy, DTOExportJobDesignSystemPreview, DTOExportJobDesignSystemVersionPreview, DTOExportJobDestinations, DTOExportJobResponse, DTOExportJobResponseLegacy, DTOExportJobResult, DTOExportJobsListFilter, DTOExporter, DTOExporterCreateInput, DTOExporterGitProviderEnum, DTOExporterListQuery, DTOExporterListResponse, DTOExporterMembership, DTOExporterMembershipRole, DTOExporterPropertyDefinition, DTOExporterPropertyDefinitionArray, DTOExporterPropertyDefinitionBoolean, DTOExporterPropertyDefinitionEnum, DTOExporterPropertyDefinitionEnumOption, DTOExporterPropertyDefinitionNumber, DTOExporterPropertyDefinitionObject, DTOExporterPropertyDefinitionString, DTOExporterPropertyDefinitionValue, DTOExporterPropertyDefinitionValueMap, DTOExporterPropertyDefinitionsResponse, DTOExporterPropertyType, DTOExporterResponse, DTOExporterSource, DTOExporterType, DTOExporterUpdateInput, DTOFigmaComponent, DTOFigmaComponentBooleanProperty, DTOFigmaComponentGroup, DTOFigmaComponentGroupListResponse, DTOFigmaComponentInstanceSwapProperty, DTOFigmaComponentListResponse, DTOFigmaComponentProperty, DTOFigmaComponentPropertyMap, DTOFigmaComponentTextProperty, DTOFigmaComponentVariantProperty, DTOFigmaNode, DTOFigmaNodeData, DTOFigmaNodeDataV2, DTOFigmaNodeOrigin, DTOFigmaNodeRenderActionInput, DTOFigmaNodeRenderActionOutput, DTOFigmaNodeRenderAsyncActionInput, DTOFigmaNodeRenderAsyncActionOutput, DTOFigmaNodeRenderFormat, DTOFigmaNodeRenderIdInput, DTOFigmaNodeRenderInput, DTOFigmaNodeRenderUrlInput, DTOFigmaNodeRerenderInput, DTOFigmaNodeV2, DTOFrameNodeStructure, DTOFrameNodeStructureListResponse, 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, DTOPageRedirect, DTOPageRedirectCreateBody, DTOPageRedirectDeleteResponse, DTOPageRedirectListResponse, DTOPageRedirectResponse, DTOPageRedirectUpdateBody, DTOPagination, DTOPipeline, DTOPipelineCreateBody, DTOPipelineListQuery, DTOPipelineListResponse, DTOPipelineResponse, DTOPipelineTriggerBody, DTOPipelineUpdateBody, type DTOPropertyDefinitionBase, 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, DTOUserTheme, 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, DocumentationEndpoint, DocumentationHierarchySettings, DocumentationPageEditorModel, DocumentationPageV1DTO, ElementPropertyDefinitionsEndpoint, ElementPropertyValuesEndpoint, ElementsActionEndpoint, ElementsEndpoint, ExporterJobsEndpoint, ExportersEndpoint, FigmaComponentGroupsEndpoint, FigmaComponentsEndpoint, FigmaFrameStructuresEndpoint, FigmaUtils, FormattedCollections, FrontendVersionRoomYDoc, ImportJobsEndpoint, type ListItemNode, type ListNode, ListTreeBuilder, LiveblocksEndpoint, NpmRegistryInput, ObjectMeta, OverridesEndpoint, PageBlockEditorModel, PageSectionEditorModel, ParsedFigmaFileURLError, 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, serializeQuery, shallowProsemirrorNodeToBlock, validateDesignSystemVersion, validateSsoPayload, yDocToPage, yXmlFragmentToPage, yjsToDocumentationHierarchy, yjsToItemConfiguration };
|