@supernova-studio/client 1.10.3 → 1.10.4
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 +301 -104
- package/dist/index.d.ts +301 -104
- package/dist/index.js +24 -8
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +23 -7
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -101302,25 +101302,16 @@ declare const DTOLiveblocksAuthResponse: z.ZodObject<{
|
|
|
101302
101302
|
}>;
|
|
101303
101303
|
type DTOLiveblocksAuthResponse = z.infer<typeof DTOLiveblocksAuthResponse>;
|
|
101304
101304
|
|
|
101305
|
-
declare const DTOPortalSettingsTheme: z.
|
|
101306
|
-
|
|
101307
|
-
|
|
101308
|
-
accentColor
|
|
101309
|
-
contrast
|
|
101310
|
-
isSecondaryEnabled
|
|
101311
|
-
secondaryBackgroundColor
|
|
101312
|
-
secondaryContrast
|
|
101313
|
-
isEditorWhite
|
|
101314
|
-
}, z.
|
|
101315
|
-
backgroundColor?: string | undefined;
|
|
101316
|
-
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
|
|
101317
|
-
accentColor?: string | undefined;
|
|
101318
|
-
contrast?: number | undefined;
|
|
101319
|
-
isSecondaryEnabled?: boolean | undefined;
|
|
101320
|
-
secondaryBackgroundColor?: string | undefined;
|
|
101321
|
-
secondaryContrast?: number | undefined;
|
|
101322
|
-
isEditorWhite?: boolean | undefined;
|
|
101323
|
-
}>>>, {
|
|
101305
|
+
declare const DTOPortalSettingsTheme: z.ZodObject<{
|
|
101306
|
+
preset: z.ZodOptional<z.ZodEnum<["Custom", "Default", "HighContrast", "DefaultDark", "HighContrastDark", "SpaceBlue", "DarkGrey", "SystemPreference", "Sepia"]>>;
|
|
101307
|
+
backgroundColor: z.ZodOptional<z.ZodString>;
|
|
101308
|
+
accentColor: z.ZodOptional<z.ZodString>;
|
|
101309
|
+
contrast: z.ZodOptional<z.ZodNumber>;
|
|
101310
|
+
isSecondaryEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
101311
|
+
secondaryBackgroundColor: z.ZodOptional<z.ZodString>;
|
|
101312
|
+
secondaryContrast: z.ZodOptional<z.ZodNumber>;
|
|
101313
|
+
isEditorWhite: z.ZodOptional<z.ZodBoolean>;
|
|
101314
|
+
}, "strip", z.ZodTypeAny, {
|
|
101324
101315
|
backgroundColor?: string | undefined;
|
|
101325
101316
|
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
|
|
101326
101317
|
accentColor?: string | undefined;
|
|
@@ -101329,7 +101320,7 @@ declare const DTOPortalSettingsTheme: z.ZodEffects<z.ZodOptional<z.ZodNullable<z
|
|
|
101329
101320
|
secondaryBackgroundColor?: string | undefined;
|
|
101330
101321
|
secondaryContrast?: number | undefined;
|
|
101331
101322
|
isEditorWhite?: boolean | undefined;
|
|
101332
|
-
}
|
|
101323
|
+
}, {
|
|
101333
101324
|
backgroundColor?: string | undefined;
|
|
101334
101325
|
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
|
|
101335
101326
|
accentColor?: string | undefined;
|
|
@@ -101338,32 +101329,99 @@ declare const DTOPortalSettingsTheme: z.ZodEffects<z.ZodOptional<z.ZodNullable<z
|
|
|
101338
101329
|
secondaryBackgroundColor?: string | undefined;
|
|
101339
101330
|
secondaryContrast?: number | undefined;
|
|
101340
101331
|
isEditorWhite?: boolean | undefined;
|
|
101341
|
-
}
|
|
101332
|
+
}>;
|
|
101342
101333
|
type DTOPortalSettingsTheme = z.infer<typeof DTOPortalSettingsTheme>;
|
|
101334
|
+
declare const DTOPortalSettingsSidebarLink: z.ZodObject<{
|
|
101335
|
+
name: z.ZodString;
|
|
101336
|
+
url: z.ZodString;
|
|
101337
|
+
emoji: z.ZodString;
|
|
101338
|
+
}, "strip", z.ZodTypeAny, {
|
|
101339
|
+
name: string;
|
|
101340
|
+
url: string;
|
|
101341
|
+
emoji: string;
|
|
101342
|
+
}, {
|
|
101343
|
+
name: string;
|
|
101344
|
+
url: string;
|
|
101345
|
+
emoji: string;
|
|
101346
|
+
}>;
|
|
101347
|
+
type DTOPortalSettingsSidebarLink = z.infer<typeof DTOPortalSettingsSidebarLink>;
|
|
101348
|
+
declare const DTOPortalSettingsSidebarSection: z.ZodObject<{
|
|
101349
|
+
sectionName: z.ZodString;
|
|
101350
|
+
links: z.ZodArray<z.ZodObject<{
|
|
101351
|
+
name: z.ZodString;
|
|
101352
|
+
url: z.ZodString;
|
|
101353
|
+
emoji: z.ZodString;
|
|
101354
|
+
}, "strip", z.ZodTypeAny, {
|
|
101355
|
+
name: string;
|
|
101356
|
+
url: string;
|
|
101357
|
+
emoji: string;
|
|
101358
|
+
}, {
|
|
101359
|
+
name: string;
|
|
101360
|
+
url: string;
|
|
101361
|
+
emoji: string;
|
|
101362
|
+
}>, "many">;
|
|
101363
|
+
}, "strip", z.ZodTypeAny, {
|
|
101364
|
+
links: {
|
|
101365
|
+
name: string;
|
|
101366
|
+
url: string;
|
|
101367
|
+
emoji: string;
|
|
101368
|
+
}[];
|
|
101369
|
+
sectionName: string;
|
|
101370
|
+
}, {
|
|
101371
|
+
links: {
|
|
101372
|
+
name: string;
|
|
101373
|
+
url: string;
|
|
101374
|
+
emoji: string;
|
|
101375
|
+
}[];
|
|
101376
|
+
sectionName: string;
|
|
101377
|
+
}>;
|
|
101378
|
+
type DTOPortalSettingsSidebarSection = z.infer<typeof DTOPortalSettingsSidebarSection>;
|
|
101379
|
+
declare const DTOPortalSettingsSidebar: z.ZodArray<z.ZodObject<{
|
|
101380
|
+
sectionName: z.ZodString;
|
|
101381
|
+
links: z.ZodArray<z.ZodObject<{
|
|
101382
|
+
name: z.ZodString;
|
|
101383
|
+
url: z.ZodString;
|
|
101384
|
+
emoji: z.ZodString;
|
|
101385
|
+
}, "strip", z.ZodTypeAny, {
|
|
101386
|
+
name: string;
|
|
101387
|
+
url: string;
|
|
101388
|
+
emoji: string;
|
|
101389
|
+
}, {
|
|
101390
|
+
name: string;
|
|
101391
|
+
url: string;
|
|
101392
|
+
emoji: string;
|
|
101393
|
+
}>, "many">;
|
|
101394
|
+
}, "strip", z.ZodTypeAny, {
|
|
101395
|
+
links: {
|
|
101396
|
+
name: string;
|
|
101397
|
+
url: string;
|
|
101398
|
+
emoji: string;
|
|
101399
|
+
}[];
|
|
101400
|
+
sectionName: string;
|
|
101401
|
+
}, {
|
|
101402
|
+
links: {
|
|
101403
|
+
name: string;
|
|
101404
|
+
url: string;
|
|
101405
|
+
emoji: string;
|
|
101406
|
+
}[];
|
|
101407
|
+
sectionName: string;
|
|
101408
|
+
}>, "many">;
|
|
101409
|
+
type DTOPortalSettingsSidebar = z.infer<typeof DTOPortalSettingsSidebar>;
|
|
101343
101410
|
declare const DTOPortalSettings: z.ZodObject<{
|
|
101344
101411
|
id: z.ZodString;
|
|
101345
101412
|
workspaceId: z.ZodString;
|
|
101346
101413
|
enabledDesignSystemIds: z.ZodArray<z.ZodString, "many">;
|
|
101347
101414
|
enabledBrandPersistentIds: z.ZodArray<z.ZodString, "many">;
|
|
101348
|
-
theme: z.
|
|
101349
|
-
|
|
101350
|
-
|
|
101351
|
-
accentColor
|
|
101352
|
-
contrast
|
|
101353
|
-
isSecondaryEnabled
|
|
101354
|
-
secondaryBackgroundColor
|
|
101355
|
-
secondaryContrast
|
|
101356
|
-
isEditorWhite
|
|
101357
|
-
}
|
|
101358
|
-
backgroundColor?: string | undefined;
|
|
101359
|
-
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
|
|
101360
|
-
accentColor?: string | undefined;
|
|
101361
|
-
contrast?: number | undefined;
|
|
101362
|
-
isSecondaryEnabled?: boolean | undefined;
|
|
101363
|
-
secondaryBackgroundColor?: string | undefined;
|
|
101364
|
-
secondaryContrast?: number | undefined;
|
|
101365
|
-
isEditorWhite?: boolean | undefined;
|
|
101366
|
-
} | null | undefined>>>, {
|
|
101415
|
+
theme: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
101416
|
+
preset: z.ZodOptional<z.ZodEnum<["Custom", "Default", "HighContrast", "DefaultDark", "HighContrastDark", "SpaceBlue", "DarkGrey", "SystemPreference", "Sepia"]>>;
|
|
101417
|
+
backgroundColor: z.ZodOptional<z.ZodString>;
|
|
101418
|
+
accentColor: z.ZodOptional<z.ZodString>;
|
|
101419
|
+
contrast: z.ZodOptional<z.ZodNumber>;
|
|
101420
|
+
isSecondaryEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
101421
|
+
secondaryBackgroundColor: z.ZodOptional<z.ZodString>;
|
|
101422
|
+
secondaryContrast: z.ZodOptional<z.ZodNumber>;
|
|
101423
|
+
isEditorWhite: z.ZodOptional<z.ZodBoolean>;
|
|
101424
|
+
}, "strip", z.ZodTypeAny, {
|
|
101367
101425
|
backgroundColor?: string | undefined;
|
|
101368
101426
|
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
|
|
101369
101427
|
accentColor?: string | undefined;
|
|
@@ -101372,7 +101430,7 @@ declare const DTOPortalSettings: z.ZodObject<{
|
|
|
101372
101430
|
secondaryBackgroundColor?: string | undefined;
|
|
101373
101431
|
secondaryContrast?: number | undefined;
|
|
101374
101432
|
isEditorWhite?: boolean | undefined;
|
|
101375
|
-
}
|
|
101433
|
+
}, {
|
|
101376
101434
|
backgroundColor?: string | undefined;
|
|
101377
101435
|
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
|
|
101378
101436
|
accentColor?: string | undefined;
|
|
@@ -101381,8 +101439,37 @@ declare const DTOPortalSettings: z.ZodObject<{
|
|
|
101381
101439
|
secondaryBackgroundColor?: string | undefined;
|
|
101382
101440
|
secondaryContrast?: number | undefined;
|
|
101383
101441
|
isEditorWhite?: boolean | undefined;
|
|
101384
|
-
}
|
|
101385
|
-
sidebar: z.
|
|
101442
|
+
}>>>;
|
|
101443
|
+
sidebar: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
101444
|
+
sectionName: z.ZodString;
|
|
101445
|
+
links: z.ZodArray<z.ZodObject<{
|
|
101446
|
+
name: z.ZodString;
|
|
101447
|
+
url: z.ZodString;
|
|
101448
|
+
emoji: z.ZodString;
|
|
101449
|
+
}, "strip", z.ZodTypeAny, {
|
|
101450
|
+
name: string;
|
|
101451
|
+
url: string;
|
|
101452
|
+
emoji: string;
|
|
101453
|
+
}, {
|
|
101454
|
+
name: string;
|
|
101455
|
+
url: string;
|
|
101456
|
+
emoji: string;
|
|
101457
|
+
}>, "many">;
|
|
101458
|
+
}, "strip", z.ZodTypeAny, {
|
|
101459
|
+
links: {
|
|
101460
|
+
name: string;
|
|
101461
|
+
url: string;
|
|
101462
|
+
emoji: string;
|
|
101463
|
+
}[];
|
|
101464
|
+
sectionName: string;
|
|
101465
|
+
}, {
|
|
101466
|
+
links: {
|
|
101467
|
+
name: string;
|
|
101468
|
+
url: string;
|
|
101469
|
+
emoji: string;
|
|
101470
|
+
}[];
|
|
101471
|
+
sectionName: string;
|
|
101472
|
+
}>, "many">>>;
|
|
101386
101473
|
createdAt: z.ZodDate;
|
|
101387
101474
|
updatedAt: z.ZodDate;
|
|
101388
101475
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -101401,8 +101488,15 @@ declare const DTOPortalSettings: z.ZodObject<{
|
|
|
101401
101488
|
secondaryBackgroundColor?: string | undefined;
|
|
101402
101489
|
secondaryContrast?: number | undefined;
|
|
101403
101490
|
isEditorWhite?: boolean | undefined;
|
|
101404
|
-
} | undefined;
|
|
101405
|
-
sidebar?:
|
|
101491
|
+
} | null | undefined;
|
|
101492
|
+
sidebar?: {
|
|
101493
|
+
links: {
|
|
101494
|
+
name: string;
|
|
101495
|
+
url: string;
|
|
101496
|
+
emoji: string;
|
|
101497
|
+
}[];
|
|
101498
|
+
sectionName: string;
|
|
101499
|
+
}[] | null | undefined;
|
|
101406
101500
|
}, {
|
|
101407
101501
|
id: string;
|
|
101408
101502
|
createdAt: Date;
|
|
@@ -101420,7 +101514,14 @@ declare const DTOPortalSettings: z.ZodObject<{
|
|
|
101420
101514
|
secondaryContrast?: number | undefined;
|
|
101421
101515
|
isEditorWhite?: boolean | undefined;
|
|
101422
101516
|
} | null | undefined;
|
|
101423
|
-
sidebar?:
|
|
101517
|
+
sidebar?: {
|
|
101518
|
+
links: {
|
|
101519
|
+
name: string;
|
|
101520
|
+
url: string;
|
|
101521
|
+
emoji: string;
|
|
101522
|
+
}[];
|
|
101523
|
+
sectionName: string;
|
|
101524
|
+
}[] | null | undefined;
|
|
101424
101525
|
}>;
|
|
101425
101526
|
type DTOPortalSettings = z.infer<typeof DTOPortalSettings>;
|
|
101426
101527
|
declare const DTOPortalSettingsGetResponse: z.ZodObject<{
|
|
@@ -101429,25 +101530,16 @@ declare const DTOPortalSettingsGetResponse: z.ZodObject<{
|
|
|
101429
101530
|
workspaceId: z.ZodString;
|
|
101430
101531
|
enabledDesignSystemIds: z.ZodArray<z.ZodString, "many">;
|
|
101431
101532
|
enabledBrandPersistentIds: z.ZodArray<z.ZodString, "many">;
|
|
101432
|
-
theme: z.
|
|
101433
|
-
|
|
101434
|
-
|
|
101435
|
-
accentColor
|
|
101436
|
-
contrast
|
|
101437
|
-
isSecondaryEnabled
|
|
101438
|
-
secondaryBackgroundColor
|
|
101439
|
-
secondaryContrast
|
|
101440
|
-
isEditorWhite
|
|
101441
|
-
}
|
|
101442
|
-
backgroundColor?: string | undefined;
|
|
101443
|
-
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
|
|
101444
|
-
accentColor?: string | undefined;
|
|
101445
|
-
contrast?: number | undefined;
|
|
101446
|
-
isSecondaryEnabled?: boolean | undefined;
|
|
101447
|
-
secondaryBackgroundColor?: string | undefined;
|
|
101448
|
-
secondaryContrast?: number | undefined;
|
|
101449
|
-
isEditorWhite?: boolean | undefined;
|
|
101450
|
-
} | null | undefined>>>, {
|
|
101533
|
+
theme: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
101534
|
+
preset: z.ZodOptional<z.ZodEnum<["Custom", "Default", "HighContrast", "DefaultDark", "HighContrastDark", "SpaceBlue", "DarkGrey", "SystemPreference", "Sepia"]>>;
|
|
101535
|
+
backgroundColor: z.ZodOptional<z.ZodString>;
|
|
101536
|
+
accentColor: z.ZodOptional<z.ZodString>;
|
|
101537
|
+
contrast: z.ZodOptional<z.ZodNumber>;
|
|
101538
|
+
isSecondaryEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
101539
|
+
secondaryBackgroundColor: z.ZodOptional<z.ZodString>;
|
|
101540
|
+
secondaryContrast: z.ZodOptional<z.ZodNumber>;
|
|
101541
|
+
isEditorWhite: z.ZodOptional<z.ZodBoolean>;
|
|
101542
|
+
}, "strip", z.ZodTypeAny, {
|
|
101451
101543
|
backgroundColor?: string | undefined;
|
|
101452
101544
|
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
|
|
101453
101545
|
accentColor?: string | undefined;
|
|
@@ -101456,7 +101548,7 @@ declare const DTOPortalSettingsGetResponse: z.ZodObject<{
|
|
|
101456
101548
|
secondaryBackgroundColor?: string | undefined;
|
|
101457
101549
|
secondaryContrast?: number | undefined;
|
|
101458
101550
|
isEditorWhite?: boolean | undefined;
|
|
101459
|
-
}
|
|
101551
|
+
}, {
|
|
101460
101552
|
backgroundColor?: string | undefined;
|
|
101461
101553
|
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
|
|
101462
101554
|
accentColor?: string | undefined;
|
|
@@ -101465,8 +101557,37 @@ declare const DTOPortalSettingsGetResponse: z.ZodObject<{
|
|
|
101465
101557
|
secondaryBackgroundColor?: string | undefined;
|
|
101466
101558
|
secondaryContrast?: number | undefined;
|
|
101467
101559
|
isEditorWhite?: boolean | undefined;
|
|
101468
|
-
}
|
|
101469
|
-
sidebar: z.
|
|
101560
|
+
}>>>;
|
|
101561
|
+
sidebar: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
101562
|
+
sectionName: z.ZodString;
|
|
101563
|
+
links: z.ZodArray<z.ZodObject<{
|
|
101564
|
+
name: z.ZodString;
|
|
101565
|
+
url: z.ZodString;
|
|
101566
|
+
emoji: z.ZodString;
|
|
101567
|
+
}, "strip", z.ZodTypeAny, {
|
|
101568
|
+
name: string;
|
|
101569
|
+
url: string;
|
|
101570
|
+
emoji: string;
|
|
101571
|
+
}, {
|
|
101572
|
+
name: string;
|
|
101573
|
+
url: string;
|
|
101574
|
+
emoji: string;
|
|
101575
|
+
}>, "many">;
|
|
101576
|
+
}, "strip", z.ZodTypeAny, {
|
|
101577
|
+
links: {
|
|
101578
|
+
name: string;
|
|
101579
|
+
url: string;
|
|
101580
|
+
emoji: string;
|
|
101581
|
+
}[];
|
|
101582
|
+
sectionName: string;
|
|
101583
|
+
}, {
|
|
101584
|
+
links: {
|
|
101585
|
+
name: string;
|
|
101586
|
+
url: string;
|
|
101587
|
+
emoji: string;
|
|
101588
|
+
}[];
|
|
101589
|
+
sectionName: string;
|
|
101590
|
+
}>, "many">>>;
|
|
101470
101591
|
createdAt: z.ZodDate;
|
|
101471
101592
|
updatedAt: z.ZodDate;
|
|
101472
101593
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -101485,8 +101606,15 @@ declare const DTOPortalSettingsGetResponse: z.ZodObject<{
|
|
|
101485
101606
|
secondaryBackgroundColor?: string | undefined;
|
|
101486
101607
|
secondaryContrast?: number | undefined;
|
|
101487
101608
|
isEditorWhite?: boolean | undefined;
|
|
101488
|
-
} | undefined;
|
|
101489
|
-
sidebar?:
|
|
101609
|
+
} | null | undefined;
|
|
101610
|
+
sidebar?: {
|
|
101611
|
+
links: {
|
|
101612
|
+
name: string;
|
|
101613
|
+
url: string;
|
|
101614
|
+
emoji: string;
|
|
101615
|
+
}[];
|
|
101616
|
+
sectionName: string;
|
|
101617
|
+
}[] | null | undefined;
|
|
101490
101618
|
}, {
|
|
101491
101619
|
id: string;
|
|
101492
101620
|
createdAt: Date;
|
|
@@ -101504,7 +101632,14 @@ declare const DTOPortalSettingsGetResponse: z.ZodObject<{
|
|
|
101504
101632
|
secondaryContrast?: number | undefined;
|
|
101505
101633
|
isEditorWhite?: boolean | undefined;
|
|
101506
101634
|
} | null | undefined;
|
|
101507
|
-
sidebar?:
|
|
101635
|
+
sidebar?: {
|
|
101636
|
+
links: {
|
|
101637
|
+
name: string;
|
|
101638
|
+
url: string;
|
|
101639
|
+
emoji: string;
|
|
101640
|
+
}[];
|
|
101641
|
+
sectionName: string;
|
|
101642
|
+
}[] | null | undefined;
|
|
101508
101643
|
}>;
|
|
101509
101644
|
}, "strip", z.ZodTypeAny, {
|
|
101510
101645
|
portalSettings: {
|
|
@@ -101523,8 +101658,15 @@ declare const DTOPortalSettingsGetResponse: z.ZodObject<{
|
|
|
101523
101658
|
secondaryBackgroundColor?: string | undefined;
|
|
101524
101659
|
secondaryContrast?: number | undefined;
|
|
101525
101660
|
isEditorWhite?: boolean | undefined;
|
|
101526
|
-
} | undefined;
|
|
101527
|
-
sidebar?:
|
|
101661
|
+
} | null | undefined;
|
|
101662
|
+
sidebar?: {
|
|
101663
|
+
links: {
|
|
101664
|
+
name: string;
|
|
101665
|
+
url: string;
|
|
101666
|
+
emoji: string;
|
|
101667
|
+
}[];
|
|
101668
|
+
sectionName: string;
|
|
101669
|
+
}[] | null | undefined;
|
|
101528
101670
|
};
|
|
101529
101671
|
}, {
|
|
101530
101672
|
portalSettings: {
|
|
@@ -101544,32 +101686,30 @@ declare const DTOPortalSettingsGetResponse: z.ZodObject<{
|
|
|
101544
101686
|
secondaryContrast?: number | undefined;
|
|
101545
101687
|
isEditorWhite?: boolean | undefined;
|
|
101546
101688
|
} | null | undefined;
|
|
101547
|
-
sidebar?:
|
|
101689
|
+
sidebar?: {
|
|
101690
|
+
links: {
|
|
101691
|
+
name: string;
|
|
101692
|
+
url: string;
|
|
101693
|
+
emoji: string;
|
|
101694
|
+
}[];
|
|
101695
|
+
sectionName: string;
|
|
101696
|
+
}[] | null | undefined;
|
|
101548
101697
|
};
|
|
101549
101698
|
}>;
|
|
101550
101699
|
type DTOPortalSettingsGetResponse = z.infer<typeof DTOPortalSettingsGetResponse>;
|
|
101551
101700
|
declare const DTOPortalSettingsUpdatePayload: z.ZodObject<{
|
|
101552
101701
|
enabledDesignSystemIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
101553
101702
|
enabledBrandPersistentIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
101554
|
-
theme: z.ZodOptional<z.
|
|
101555
|
-
|
|
101556
|
-
|
|
101557
|
-
accentColor
|
|
101558
|
-
contrast
|
|
101559
|
-
isSecondaryEnabled
|
|
101560
|
-
secondaryBackgroundColor
|
|
101561
|
-
secondaryContrast
|
|
101562
|
-
isEditorWhite
|
|
101563
|
-
}, z.
|
|
101564
|
-
backgroundColor?: string | undefined;
|
|
101565
|
-
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
|
|
101566
|
-
accentColor?: string | undefined;
|
|
101567
|
-
contrast?: number | undefined;
|
|
101568
|
-
isSecondaryEnabled?: boolean | undefined;
|
|
101569
|
-
secondaryBackgroundColor?: string | undefined;
|
|
101570
|
-
secondaryContrast?: number | undefined;
|
|
101571
|
-
isEditorWhite?: boolean | undefined;
|
|
101572
|
-
}>>>, {
|
|
101703
|
+
theme: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
101704
|
+
preset: z.ZodOptional<z.ZodEnum<["Custom", "Default", "HighContrast", "DefaultDark", "HighContrastDark", "SpaceBlue", "DarkGrey", "SystemPreference", "Sepia"]>>;
|
|
101705
|
+
backgroundColor: z.ZodOptional<z.ZodString>;
|
|
101706
|
+
accentColor: z.ZodOptional<z.ZodString>;
|
|
101707
|
+
contrast: z.ZodOptional<z.ZodNumber>;
|
|
101708
|
+
isSecondaryEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
101709
|
+
secondaryBackgroundColor: z.ZodOptional<z.ZodString>;
|
|
101710
|
+
secondaryContrast: z.ZodOptional<z.ZodNumber>;
|
|
101711
|
+
isEditorWhite: z.ZodOptional<z.ZodBoolean>;
|
|
101712
|
+
}, "strip", z.ZodTypeAny, {
|
|
101573
101713
|
backgroundColor?: string | undefined;
|
|
101574
101714
|
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
|
|
101575
101715
|
accentColor?: string | undefined;
|
|
@@ -101578,7 +101718,7 @@ declare const DTOPortalSettingsUpdatePayload: z.ZodObject<{
|
|
|
101578
101718
|
secondaryBackgroundColor?: string | undefined;
|
|
101579
101719
|
secondaryContrast?: number | undefined;
|
|
101580
101720
|
isEditorWhite?: boolean | undefined;
|
|
101581
|
-
}
|
|
101721
|
+
}, {
|
|
101582
101722
|
backgroundColor?: string | undefined;
|
|
101583
101723
|
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
|
|
101584
101724
|
accentColor?: string | undefined;
|
|
@@ -101587,8 +101727,37 @@ declare const DTOPortalSettingsUpdatePayload: z.ZodObject<{
|
|
|
101587
101727
|
secondaryBackgroundColor?: string | undefined;
|
|
101588
101728
|
secondaryContrast?: number | undefined;
|
|
101589
101729
|
isEditorWhite?: boolean | undefined;
|
|
101590
|
-
}
|
|
101591
|
-
sidebar: z.ZodOptional<z.
|
|
101730
|
+
}>>>;
|
|
101731
|
+
sidebar: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
101732
|
+
sectionName: z.ZodString;
|
|
101733
|
+
links: z.ZodArray<z.ZodObject<{
|
|
101734
|
+
name: z.ZodString;
|
|
101735
|
+
url: z.ZodString;
|
|
101736
|
+
emoji: z.ZodString;
|
|
101737
|
+
}, "strip", z.ZodTypeAny, {
|
|
101738
|
+
name: string;
|
|
101739
|
+
url: string;
|
|
101740
|
+
emoji: string;
|
|
101741
|
+
}, {
|
|
101742
|
+
name: string;
|
|
101743
|
+
url: string;
|
|
101744
|
+
emoji: string;
|
|
101745
|
+
}>, "many">;
|
|
101746
|
+
}, "strip", z.ZodTypeAny, {
|
|
101747
|
+
links: {
|
|
101748
|
+
name: string;
|
|
101749
|
+
url: string;
|
|
101750
|
+
emoji: string;
|
|
101751
|
+
}[];
|
|
101752
|
+
sectionName: string;
|
|
101753
|
+
}, {
|
|
101754
|
+
links: {
|
|
101755
|
+
name: string;
|
|
101756
|
+
url: string;
|
|
101757
|
+
emoji: string;
|
|
101758
|
+
}[];
|
|
101759
|
+
sectionName: string;
|
|
101760
|
+
}>, "many">>>;
|
|
101592
101761
|
}, "strip", z.ZodTypeAny, {
|
|
101593
101762
|
theme?: {
|
|
101594
101763
|
backgroundColor?: string | undefined;
|
|
@@ -101599,10 +101768,17 @@ declare const DTOPortalSettingsUpdatePayload: z.ZodObject<{
|
|
|
101599
101768
|
secondaryBackgroundColor?: string | undefined;
|
|
101600
101769
|
secondaryContrast?: number | undefined;
|
|
101601
101770
|
isEditorWhite?: boolean | undefined;
|
|
101602
|
-
} | undefined;
|
|
101771
|
+
} | null | undefined;
|
|
101603
101772
|
enabledDesignSystemIds?: string[] | undefined;
|
|
101604
101773
|
enabledBrandPersistentIds?: string[] | undefined;
|
|
101605
|
-
sidebar?:
|
|
101774
|
+
sidebar?: {
|
|
101775
|
+
links: {
|
|
101776
|
+
name: string;
|
|
101777
|
+
url: string;
|
|
101778
|
+
emoji: string;
|
|
101779
|
+
}[];
|
|
101780
|
+
sectionName: string;
|
|
101781
|
+
}[] | null | undefined;
|
|
101606
101782
|
}, {
|
|
101607
101783
|
theme?: {
|
|
101608
101784
|
backgroundColor?: string | undefined;
|
|
@@ -101616,7 +101792,14 @@ declare const DTOPortalSettingsUpdatePayload: z.ZodObject<{
|
|
|
101616
101792
|
} | null | undefined;
|
|
101617
101793
|
enabledDesignSystemIds?: string[] | undefined;
|
|
101618
101794
|
enabledBrandPersistentIds?: string[] | undefined;
|
|
101619
|
-
sidebar?:
|
|
101795
|
+
sidebar?: {
|
|
101796
|
+
links: {
|
|
101797
|
+
name: string;
|
|
101798
|
+
url: string;
|
|
101799
|
+
emoji: string;
|
|
101800
|
+
}[];
|
|
101801
|
+
sectionName: string;
|
|
101802
|
+
}[] | null | undefined;
|
|
101620
101803
|
}>;
|
|
101621
101804
|
type DTOPortalSettingsUpdatePayload = z.infer<typeof DTOPortalSettingsUpdatePayload>;
|
|
101622
101805
|
|
|
@@ -144755,8 +144938,15 @@ declare class WorkspacesEndpoint {
|
|
|
144755
144938
|
secondaryBackgroundColor?: string | undefined;
|
|
144756
144939
|
secondaryContrast?: number | undefined;
|
|
144757
144940
|
isEditorWhite?: boolean | undefined;
|
|
144758
|
-
} | undefined;
|
|
144759
|
-
sidebar?:
|
|
144941
|
+
} | null | undefined;
|
|
144942
|
+
sidebar?: {
|
|
144943
|
+
links: {
|
|
144944
|
+
name: string;
|
|
144945
|
+
url: string;
|
|
144946
|
+
emoji: string;
|
|
144947
|
+
}[];
|
|
144948
|
+
sectionName: string;
|
|
144949
|
+
}[] | null | undefined;
|
|
144760
144950
|
};
|
|
144761
144951
|
}>;
|
|
144762
144952
|
updatePortalSettings(workspaceId: string, body: DTOPortalSettingsUpdatePayload): Promise<{
|
|
@@ -144776,8 +144966,15 @@ declare class WorkspacesEndpoint {
|
|
|
144776
144966
|
secondaryBackgroundColor?: string | undefined;
|
|
144777
144967
|
secondaryContrast?: number | undefined;
|
|
144778
144968
|
isEditorWhite?: boolean | undefined;
|
|
144779
|
-
} | undefined;
|
|
144780
|
-
sidebar?:
|
|
144969
|
+
} | null | undefined;
|
|
144970
|
+
sidebar?: {
|
|
144971
|
+
links: {
|
|
144972
|
+
name: string;
|
|
144973
|
+
url: string;
|
|
144974
|
+
emoji: string;
|
|
144975
|
+
}[];
|
|
144976
|
+
sectionName: string;
|
|
144977
|
+
}[] | null | undefined;
|
|
144781
144978
|
};
|
|
144782
144979
|
}>;
|
|
144783
144980
|
transferOwnership(workspaceId: string, body: DTOTransferOwnershipPayload): Promise<{
|
|
@@ -147454,4 +147651,4 @@ declare function isValidRedirectPath(path: string): {
|
|
|
147454
147651
|
reason: ValidationErrorReason | undefined;
|
|
147455
147652
|
};
|
|
147456
147653
|
|
|
147457
|
-
export { BackendVersionRoomYDoc, BlockDefinitionUtils, BlockParsingUtils, BrandsEndpoint, ChatThreadMessagesEndpoint, CodeComponentsEndpoint, CodegenEndpoint, Collection, DTOAccessToken, DTOAccessTokenCreatePayload, DTOAccessTokenFull, DTOAccessTokenFullResponse, DTOAccessTokenListResponse, DTOAccessTokenResponse, DTOAnalyzeCodeComponentsInPackage, DTOAnalyzeCodeComponentsInPackageInput, DTOAnalyzeCodeComponentsInPackageResponse, DTOAppBootstrapDataQuery, DTOAppBootstrapDataResponse, DTOAssetRenderConfiguration, DTOAssetScope, DTOAuthenticatedUser, DTOAuthenticatedUserProfile, DTOAuthenticatedUserResponse, DTOBffFigmaImportRequestBody, DTOBffImportRequestBody, DTOBffUploadImportRequestBody, DTOBrand, DTOBrandCreatePayload, DTOBrandCreateResponse, DTOBrandGetResponse, DTOBrandUpdatePayload, DTOBrandsListResponse, DTOCodeComponent, DTOCodeComponentCreateInput, DTOCodeComponentListResponse, DTOCodeComponentParentType, DTOCodeComponentProperty, DTOCodeComponentResolvedType, DTOCodeComponentResolvedTypeKind, DTOCodeComponentResponse, DTOCodeComponentUpsertResponse, DTOCodeComponentsCreateInput, DTOColorTokenInlineData, DTOCreateDocumentationGroupInput, DTOCreateDocumentationPageInputV2, DTOCreateDocumentationTabInput, DTOCreateForgeAgent, DTOCreateForgeAgentResponse, DTOCreateForgeArtifact, DTOCreateForgeArtifactResponse, DTOCreateForgeBuildArtifact, DTOCreateForgeFigmaArtifact, DTOCreateForgeFileArtifact, DTOCreateForgeIterationMessage, DTOCreateForgeIterationMessageResponse, DTOCreateForgeParticipant, DTOCreateForgeParticipantResponse, DTOCreateForgeProject, DTOCreateForgeProjectContext, DTOCreateForgeProjectIteration, DTOCreateForgeProjectIterationResponse, DTOCreateForgeProjectMember, DTOCreateForgeProjectResponse, DTOCreateForgeSpecArtifact, DTOCreateVersionInput, DTODataSource, DTODataSourceFigma, DTODataSourceFigmaCloud, DTODataSourceFigmaCreatePayload, DTODataSourceFigmaImportPayload, DTODataSourceFigmaScope, DTODataSourceFigmaVariablesPlugin, DTODataSourceResponse, DTODataSourceStorybook, DTODataSourceStorybookCreatePayload, DTODataSourceTokenStudio, DTODataSourcesListResponse, DTODataSourcesStorybookResponse, DTODeleteDocumentationGroupInput, DTODeleteDocumentationPageInputV2, DTODeleteDocumentationTabGroupInput, DTODeleteForgeAgentResponse, DTODeleteForgeArtifactResponse, DTODeleteForgeIterationMessageResponse, DTODeleteForgeParticipantResponse, DTODeleteForgeProjectIterationResponse, DTODependencyDefinition, 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, DTODocumentationAnalyticsDiffPayload, DTODocumentationAnalyticsRequest, DTODocumentationAnalyticsTimeFrame, DTODocumentationAnalyticsTimeFrameComparison, 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, DTODocumentationPageAnalyticsDifference, DTODocumentationPageAnalyticsResponse, DTODocumentationPageAnchor, DTODocumentationPageApprovalState, DTODocumentationPageApprovalStateChangeActionInput, DTODocumentationPageApprovalStateChangeActionOutput, DTODocumentationPageApprovalStateChangeInput, DTODocumentationPageContent, DTODocumentationPageContentGetResponse, DTODocumentationPageCreateActionInputV2, DTODocumentationPageCreateActionOutputV2, DTODocumentationPageDeleteActionInputV2, DTODocumentationPageDeleteActionOutputV2, DTODocumentationPageDependencies, DTODocumentationPageDependenciesGetResponse, DTODocumentationPageDuplicateActionInputV2, DTODocumentationPageDuplicateActionOutputV2, DTODocumentationPageIntervalDifferenceResponse, DTODocumentationPageMoveActionInputV2, DTODocumentationPageMoveActionOutputV2, DTODocumentationPageRestoreActionInput, DTODocumentationPageRestoreActionOutput, DTODocumentationPageRoom, DTODocumentationPageRoomHeaderData, DTODocumentationPageRoomHeaderDataUpdate, DTODocumentationPageRoomResponse, DTODocumentationPageSnapshot, DTODocumentationPageUpdateActionInputV2, DTODocumentationPageUpdateActionOutputV2, DTODocumentationPageUpdateDocumentActionInputV2, DTODocumentationPageUpdateDocumentActionOutputV2, DTODocumentationPageV2, DTODocumentationPublishMetadata, DTODocumentationPublishTypeQueryParams, DTODocumentationSettings, DTODocumentationStructure, DTODocumentationStructureGroupItem, DTODocumentationStructureItem, DTODocumentationStructurePageItem, DTODocumentationTabCreateActionInputV2, DTODocumentationTabCreateActionOutputV2, type DTODocumentationTabGroupCreateActionInputV2, DTODocumentationTabGroupDeleteActionInputV2, DTODocumentationTabGroupDeleteActionOutputV2, DTODownloadAssetsRequest, DTODownloadAssetsResponse, DTODuplicateDocumentationGroupInput, DTODuplicateDocumentationPageInputV2, DTOElementActionInput, type DTOElementActionInputOfType, DTOElementActionOutput, DTOElementPropertyDefinition, DTOElementPropertyDefinitionCreatePayload, DTOElementPropertyDefinitionListResponse, DTOElementPropertyDefinitionOption, DTOElementPropertyDefinitionResponse, DTOElementPropertyDefinitionUpdatePayload, DTOElementPropertyValue, DTOElementPropertyValueListResponse, DTOElementPropertyValueResponse, DTOElementPropertyValueUpsertPaylod, DTOElementPropertyValuesEditActionInput, DTOElementPropertyValuesEditActionOutput, DTOElementView, DTOElementViewBasePropertyColumn, DTOElementViewColumn, DTOElementViewColumnSharedAttributes, DTOElementViewPropertyDefinitionColumn, DTOElementViewThemeColumn, DTOElementViewsListResponse, DTOElementsGetOutput, DTOElementsGetOutputV2, type DTOElementsGetQueryParsed, type DTOElementsGetQueryRaw, DTOElementsGetQuerySchema, DTOElementsGetTypeFilter, DTOEvent, DTOEventDataSourcesImported, DTOEventFigmaNodesRendered, DTOExportJob, DTOExportJobCreateInput, DTOExportJobCreatedBy, DTOExportJobDesignSystemPreview, DTOExportJobDesignSystemVersionPreview, DTOExportJobDestinations, DTOExportJobResponse, DTOExportJobResponseLegacy, DTOExportJobResult, DTOExportJobsListFilter, DTOExporter, DTOExporterCreateInput, DTOExporterDeprecationInput, DTOExporterGitProviderEnum, DTOExporterListQuery, DTOExporterListResponse, DTOExporterMembership, DTOExporterMembershipRole, DTOExporterPropertyDefinition, DTOExporterPropertyDefinitionArray, DTOExporterPropertyDefinitionBoolean, DTOExporterPropertyDefinitionCode, DTOExporterPropertyDefinitionEnum, DTOExporterPropertyDefinitionEnumOption, DTOExporterPropertyDefinitionNumber, DTOExporterPropertyDefinitionObject, DTOExporterPropertyDefinitionString, type DTOExporterPropertyDefinitionValue, DTOExporterPropertyDefinitionsResponse, DTOExporterPropertyType, DTOExporterPropertyValue, DTOExporterPropertyValueMap, 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, DTOFigmaNodeResponse, DTOFigmaNodeStructure, DTOFigmaNodeStructureDetail, DTOFigmaNodeStructureDetailResponse, DTOFigmaNodeStructureListResponse, DTOFigmaNodeV2, DTOFigmaSourceUpdatePayload, DTOFileResponseItem, DTOFileUploadFinalizePayload, DTOFileUploadFinalizeResponse, DTOFileUploadItem, DTOFileUploadPayload, DTOFileUploadResponse, DTOFileUploadResponseItem, DTOFilesGetPayload, DTOFilesGetQuery, DTOFilesResponse, DTOForgeAgent, DTOForgeAgentsListResponse, DTOForgeArtifact, DTOForgeArtifactGetResponse, DTOForgeArtifactsListResponse, DTOForgeAvatarBuilder, DTOForgeBuildArtifact, DTOForgeChatMessage, DTOForgeChatMessageCreateInput, DTOForgeChatMessageCreateResponse, DTOForgeChatMessageListQuery, DTOForgeChatMessageListResponse, DTOForgeChatMessageScoreInput, DTOForgeChatMessageScoreRequest, DTOForgeChatMessageSender, DTOForgeChatMessageSenderType, DTOForgeChatThread, DTOForgeChatThreadCreateInput, DTOForgeChatThreadCreateResponse, DTOForgeChatThreadDeleteResponse, DTOForgeChatThreadListQuery, DTOForgeChatThreadListResponse, DTOForgeChatThreadUpdateInput, DTOForgeChatThreadUpdateResponse, DTOForgeFigmaArtifact, DTOForgeFileArtifact, DTOForgeIterationMessage, DTOForgeIterationMessagesListResponse, DTOForgeParticipant, DTOForgeParticipantGetResponse, DTOForgeParticipantsListResponse, DTOForgeProject, DTOForgeProjectContext, DTOForgeProjectContextCreateResponse, DTOForgeProjectContextGetResponse, DTOForgeProjectContextListResponse, DTOForgeProjectContextRemoveResponse, DTOForgeProjectContextUpdateResponse, DTOForgeProjectGetResponse, DTOForgeProjectIteration, DTOForgeProjectIterationListResponse, DTOForgeProjectIterationMergeMeta, DTOForgeProjectMember, DTOForgeProjectMemberCreateResponse, DTOForgeProjectMemberGetResponse, DTOForgeProjectMemberRemoveResponse, DTOForgeProjectMemberUpdateResponse, DTOForgeProjectMembersListResponse, DTOForgeProjectsListResponse, DTOForgeSpecArtifact, DTOFrameNodeStructure, DTOFrameNodeStructureListResponse, DTOGetBlockDefinitionsOutput, DTOGetBlockDefinitionsQuery, DTOGetDocumentationPageAnchorsResponse, DTOGetForgeIterationMessageResponse, DTOGetForgeProjectIterationResponse, DTOGitBranch, DTOGitOrganization, DTOGitProject, DTOGitRepository, DTOImportJob, DTOImportJobResponse, DTOIntegration, DTOIntegrationCredentials, DTOIntegrationOAuthGetResponse, DTOIntegrationPostResponse, DTOIntegrationsGetListResponse, DTOLiveblocksAuthRequest, DTOLiveblocksAuthResponse, DTOMoveDocumentationGroupInput, DTOMoveDocumentationPageInputV2, DTONpmRegistryAccessTokenResponse, 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, DTOPortalSettings, DTOPortalSettingsGetResponse, DTOPortalSettingsTheme, DTOPortalSettingsUpdatePayload, type DTOPropertyDefinitionBase, DTOPublishDocumentationChanges, DTOPublishDocumentationRequest, DTOPublishDocumentationResponse, DTOPublishedDocAnalyticsComparisonData, DTOPublishedDocPageAnalyticsComparisonData, DTOPublishedDocPageVisitData, DTOPublishedDocVisitData, DTOPublishedDocVisitHeatMapWeek, DTORegistry, DTORemoveForgeProjectMember, DTORemoveForgeProjectResponse, DTORenderedAssetFile, DTORestoreDocumentationGroupInput, DTORestoreDocumentationPageInput, DTOStorybookAccessTokenPayload, DTOStorybookAccessTokenResponse, DTOStorybookEntry, DTOStorybookEntryListResponse, DTOStorybookEntryOrigin, DTOStorybookEntryReplaceAction, DTOStorybookEntryResponse, DTOStorybookImportPayload, DTOStorybookSourceUpdatePayload, DTOStorybookUploadStatus, DTOStorybookUploadUrlRequest, DTOStorybookUploadUrlResponse, DTOTheme, DTOThemeCreatePayload, DTOThemeListResponse, DTOThemeOverride, DTOThemeOverrideCreatePayload, DTOThemeResponse, DTOTokenCollection, DTOTokenCollectionsListReponse, DTOTransferOwnershipPayload, DTOUGetForgeAgentResponse, DTOUpdateDocumentationGroupInput, DTOUpdateDocumentationPageDocumentInputV2, DTOUpdateDocumentationPageInputV2, DTOUpdateForgeAgent, DTOUpdateForgeAgentResponse, DTOUpdateForgeArtifact, DTOUpdateForgeArtifactResponse, DTOUpdateForgeBuildArtifact, DTOUpdateForgeFigmaArtifact, DTOUpdateForgeFileArtifact, DTOUpdateForgeIterationMessage, DTOUpdateForgeIterationMessageResponse, DTOUpdateForgeParticipant, DTOUpdateForgeParticipantResponse, DTOUpdateForgeProject, DTOUpdateForgeProjectContext, DTOUpdateForgeProjectIteration, DTOUpdateForgeProjectIterationResponse, DTOUpdateForgeProjectMember, DTOUpdateForgeProjectResponse, DTOUpdateForgeSpecArtifact, DTOUpdateRegistryInput, DTOUpdateRegistryOutput, DTOUpdateUserNotificationSettingsPayload, DTOUpdateVersionInput, DTOUploadUrlItem, DTOUser, DTOUserDesignSystemsResponse, 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, DTOWorkspaceUntypedData, DTOWorkspaceUntypedDataCreatePayload, DTOWorkspaceUntypedDataListResponse, DTOWorkspaceUntypedDataResponse, DTOWorkspaceUntypedDataUpdatePayload, type DTPGetForgeAgentResponse, DesignSystemAnalyticsEndpoint, DesignSystemBffEndpoint, DesignSystemComponentEndpoint, DesignSystemContactsEndpoint, DesignSystemMembersEndpoint, DesignSystemPageRedirectsEndpoint, DesignSystemSourcesEndpoint, DesignSystemVersionsEndpoint, DesignSystemsEndpoint, DimensionsVariableScopeType, DocsStructureRepository, DocumentationEndpoint, DocumentationHierarchySettings, DocumentationPageEditorModel, DocumentationPageV1DTO, ElementPropertyDefinitionsEndpoint, ElementPropertyValuesEndpoint, ElementsActionEndpoint, ElementsEndpoint, ExporterJobsEndpoint, ExportersEndpoint, FigmaComponentGroupsEndpoint, FigmaComponentsEndpoint, FigmaFrameStructuresEndpoint, FigmaNodeStructuresEndpoint, FigmaUtils, FilesEndpoint, ForgeAgentsEndpoint, ForgeArtifactsEndpoint, ForgeIterationMessagesEndpoint, ForgeParticipantsEndpoint, ForgeProjectContextsEndpoint, ForgeProjectIterationsEndpoint, ForgeProjectMembersEndpoint, ForgeProjectsEndpoint, ForgesEndpoint, FormattedCollections, FrontendVersionRoomYDoc, GitDestinationOptions, ImportJobsEndpoint, type ListItemNode, type ListNode, ListTreeBuilder, LiveblocksEndpoint, type LocalApproval, LocalDocsElementActionExecutor, type LocalDocsPage, type LocalDocsPageGroup, 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, StorybookEntriesEndpoint, StorybookHostingEndpoint, StringVariableScopeType, SupernovaApiClient, type SupportedActionType, ThemesEndpoint, TokenCollectionsEndpoint, TokenGroupsEndpoint, TokensEndpoint, UsersEndpoint, Variable, VariableAlias, VariableMode, VariableValue, VariablesMapping, type VersionRoomApproval, VersionRoomBaseYDoc, type VersionRoomBaseYDocState, type VersionRoomDocsPage, type VersionRoomDocsPageGroup, VersionSQSPayload, VersionStatsEndpoint, WorkspaceChatThreadsEndpoint, WorkspaceConfigurationPayload, WorkspaceIntegrationsEndpoint, WorkspaceInvitationsEndpoint, WorkspaceMembersEndpoint, WorkspaceNpmRegistryEndpoint, WorkspacesEndpoint, applyActionsLocally, applyPrivacyConfigurationToNestedItems, blockToProsemirrorNode, buildDocPagePublishPaths, calculateElementParentChain, computeDocsHierarchy, documentationAnalyticsToComparisonDto, documentationAnalyticsToGlobalDto, documentationAnalyticsToHeatMapDto, documentationAnalyticsToPageComparisonDto, documentationAnalyticsToPageDto, documentationItemConfigurationToDTOV1, documentationItemConfigurationToDTOV2, documentationPageToDTOV2, documentationPagesFixedConfigurationToDTOV1, documentationPagesFixedConfigurationToDTOV2, documentationPagesToDTOV1, documentationPagesToDTOV2, elementGroupsToDocumentationGroupDTOV1, elementGroupsToDocumentationGroupDTOV2, elementGroupsToDocumentationGroupFixedConfigurationDTOV1, elementGroupsToDocumentationGroupFixedConfigurationDTOV2, elementGroupsToDocumentationGroupStructureDTOV1, exhaustiveInvalidUriPaths, generateHash, generatePageContentHash, getDtoDefaultItemConfigurationV1, getDtoDefaultItemConfigurationV2, getMockPageBlockDefinitions, gitBranchToDto, gitOrganizationToDto, gitProjectToDto, gitRepositoryToDto, innerEditorProsemirrorSchema, integrationCredentialToDto, integrationToDto, isValidRedirectPath, itemConfigurationToYjs, mainEditorProsemirrorSchema, pageToProsemirrorDoc, pageToYDoc, pageToYXmlFragment, pipelineToDto, prosemirrorDocToPage, prosemirrorDocToRichTextPropertyValue, prosemirrorNodeToSection, prosemirrorNodesToBlocks, richTextPropertyValueToProsemirror, serializeAsCustomBlock, serializeQuery, shallowProsemirrorNodeToBlock, validateDesignSystemVersion, validateSsoPayload, yDocToPage, yXmlFragmentToPage, yjsToDocumentationHierarchy };
|
|
147654
|
+
export { BackendVersionRoomYDoc, BlockDefinitionUtils, BlockParsingUtils, BrandsEndpoint, ChatThreadMessagesEndpoint, CodeComponentsEndpoint, CodegenEndpoint, Collection, DTOAccessToken, DTOAccessTokenCreatePayload, DTOAccessTokenFull, DTOAccessTokenFullResponse, DTOAccessTokenListResponse, DTOAccessTokenResponse, DTOAnalyzeCodeComponentsInPackage, DTOAnalyzeCodeComponentsInPackageInput, DTOAnalyzeCodeComponentsInPackageResponse, DTOAppBootstrapDataQuery, DTOAppBootstrapDataResponse, DTOAssetRenderConfiguration, DTOAssetScope, DTOAuthenticatedUser, DTOAuthenticatedUserProfile, DTOAuthenticatedUserResponse, DTOBffFigmaImportRequestBody, DTOBffImportRequestBody, DTOBffUploadImportRequestBody, DTOBrand, DTOBrandCreatePayload, DTOBrandCreateResponse, DTOBrandGetResponse, DTOBrandUpdatePayload, DTOBrandsListResponse, DTOCodeComponent, DTOCodeComponentCreateInput, DTOCodeComponentListResponse, DTOCodeComponentParentType, DTOCodeComponentProperty, DTOCodeComponentResolvedType, DTOCodeComponentResolvedTypeKind, DTOCodeComponentResponse, DTOCodeComponentUpsertResponse, DTOCodeComponentsCreateInput, DTOColorTokenInlineData, DTOCreateDocumentationGroupInput, DTOCreateDocumentationPageInputV2, DTOCreateDocumentationTabInput, DTOCreateForgeAgent, DTOCreateForgeAgentResponse, DTOCreateForgeArtifact, DTOCreateForgeArtifactResponse, DTOCreateForgeBuildArtifact, DTOCreateForgeFigmaArtifact, DTOCreateForgeFileArtifact, DTOCreateForgeIterationMessage, DTOCreateForgeIterationMessageResponse, DTOCreateForgeParticipant, DTOCreateForgeParticipantResponse, DTOCreateForgeProject, DTOCreateForgeProjectContext, DTOCreateForgeProjectIteration, DTOCreateForgeProjectIterationResponse, DTOCreateForgeProjectMember, DTOCreateForgeProjectResponse, DTOCreateForgeSpecArtifact, DTOCreateVersionInput, DTODataSource, DTODataSourceFigma, DTODataSourceFigmaCloud, DTODataSourceFigmaCreatePayload, DTODataSourceFigmaImportPayload, DTODataSourceFigmaScope, DTODataSourceFigmaVariablesPlugin, DTODataSourceResponse, DTODataSourceStorybook, DTODataSourceStorybookCreatePayload, DTODataSourceTokenStudio, DTODataSourcesListResponse, DTODataSourcesStorybookResponse, DTODeleteDocumentationGroupInput, DTODeleteDocumentationPageInputV2, DTODeleteDocumentationTabGroupInput, DTODeleteForgeAgentResponse, DTODeleteForgeArtifactResponse, DTODeleteForgeIterationMessageResponse, DTODeleteForgeParticipantResponse, DTODeleteForgeProjectIterationResponse, DTODependencyDefinition, 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, DTODocumentationAnalyticsDiffPayload, DTODocumentationAnalyticsRequest, DTODocumentationAnalyticsTimeFrame, DTODocumentationAnalyticsTimeFrameComparison, 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, DTODocumentationPageAnalyticsDifference, DTODocumentationPageAnalyticsResponse, DTODocumentationPageAnchor, DTODocumentationPageApprovalState, DTODocumentationPageApprovalStateChangeActionInput, DTODocumentationPageApprovalStateChangeActionOutput, DTODocumentationPageApprovalStateChangeInput, DTODocumentationPageContent, DTODocumentationPageContentGetResponse, DTODocumentationPageCreateActionInputV2, DTODocumentationPageCreateActionOutputV2, DTODocumentationPageDeleteActionInputV2, DTODocumentationPageDeleteActionOutputV2, DTODocumentationPageDependencies, DTODocumentationPageDependenciesGetResponse, DTODocumentationPageDuplicateActionInputV2, DTODocumentationPageDuplicateActionOutputV2, DTODocumentationPageIntervalDifferenceResponse, DTODocumentationPageMoveActionInputV2, DTODocumentationPageMoveActionOutputV2, DTODocumentationPageRestoreActionInput, DTODocumentationPageRestoreActionOutput, DTODocumentationPageRoom, DTODocumentationPageRoomHeaderData, DTODocumentationPageRoomHeaderDataUpdate, DTODocumentationPageRoomResponse, DTODocumentationPageSnapshot, DTODocumentationPageUpdateActionInputV2, DTODocumentationPageUpdateActionOutputV2, DTODocumentationPageUpdateDocumentActionInputV2, DTODocumentationPageUpdateDocumentActionOutputV2, DTODocumentationPageV2, DTODocumentationPublishMetadata, DTODocumentationPublishTypeQueryParams, DTODocumentationSettings, DTODocumentationStructure, DTODocumentationStructureGroupItem, DTODocumentationStructureItem, DTODocumentationStructurePageItem, DTODocumentationTabCreateActionInputV2, DTODocumentationTabCreateActionOutputV2, type DTODocumentationTabGroupCreateActionInputV2, DTODocumentationTabGroupDeleteActionInputV2, DTODocumentationTabGroupDeleteActionOutputV2, DTODownloadAssetsRequest, DTODownloadAssetsResponse, DTODuplicateDocumentationGroupInput, DTODuplicateDocumentationPageInputV2, DTOElementActionInput, type DTOElementActionInputOfType, DTOElementActionOutput, DTOElementPropertyDefinition, DTOElementPropertyDefinitionCreatePayload, DTOElementPropertyDefinitionListResponse, DTOElementPropertyDefinitionOption, DTOElementPropertyDefinitionResponse, DTOElementPropertyDefinitionUpdatePayload, DTOElementPropertyValue, DTOElementPropertyValueListResponse, DTOElementPropertyValueResponse, DTOElementPropertyValueUpsertPaylod, DTOElementPropertyValuesEditActionInput, DTOElementPropertyValuesEditActionOutput, DTOElementView, DTOElementViewBasePropertyColumn, DTOElementViewColumn, DTOElementViewColumnSharedAttributes, DTOElementViewPropertyDefinitionColumn, DTOElementViewThemeColumn, DTOElementViewsListResponse, DTOElementsGetOutput, DTOElementsGetOutputV2, type DTOElementsGetQueryParsed, type DTOElementsGetQueryRaw, DTOElementsGetQuerySchema, DTOElementsGetTypeFilter, DTOEvent, DTOEventDataSourcesImported, DTOEventFigmaNodesRendered, DTOExportJob, DTOExportJobCreateInput, DTOExportJobCreatedBy, DTOExportJobDesignSystemPreview, DTOExportJobDesignSystemVersionPreview, DTOExportJobDestinations, DTOExportJobResponse, DTOExportJobResponseLegacy, DTOExportJobResult, DTOExportJobsListFilter, DTOExporter, DTOExporterCreateInput, DTOExporterDeprecationInput, DTOExporterGitProviderEnum, DTOExporterListQuery, DTOExporterListResponse, DTOExporterMembership, DTOExporterMembershipRole, DTOExporterPropertyDefinition, DTOExporterPropertyDefinitionArray, DTOExporterPropertyDefinitionBoolean, DTOExporterPropertyDefinitionCode, DTOExporterPropertyDefinitionEnum, DTOExporterPropertyDefinitionEnumOption, DTOExporterPropertyDefinitionNumber, DTOExporterPropertyDefinitionObject, DTOExporterPropertyDefinitionString, type DTOExporterPropertyDefinitionValue, DTOExporterPropertyDefinitionsResponse, DTOExporterPropertyType, DTOExporterPropertyValue, DTOExporterPropertyValueMap, 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, DTOFigmaNodeResponse, DTOFigmaNodeStructure, DTOFigmaNodeStructureDetail, DTOFigmaNodeStructureDetailResponse, DTOFigmaNodeStructureListResponse, DTOFigmaNodeV2, DTOFigmaSourceUpdatePayload, DTOFileResponseItem, DTOFileUploadFinalizePayload, DTOFileUploadFinalizeResponse, DTOFileUploadItem, DTOFileUploadPayload, DTOFileUploadResponse, DTOFileUploadResponseItem, DTOFilesGetPayload, DTOFilesGetQuery, DTOFilesResponse, DTOForgeAgent, DTOForgeAgentsListResponse, DTOForgeArtifact, DTOForgeArtifactGetResponse, DTOForgeArtifactsListResponse, DTOForgeAvatarBuilder, DTOForgeBuildArtifact, DTOForgeChatMessage, DTOForgeChatMessageCreateInput, DTOForgeChatMessageCreateResponse, DTOForgeChatMessageListQuery, DTOForgeChatMessageListResponse, DTOForgeChatMessageScoreInput, DTOForgeChatMessageScoreRequest, DTOForgeChatMessageSender, DTOForgeChatMessageSenderType, DTOForgeChatThread, DTOForgeChatThreadCreateInput, DTOForgeChatThreadCreateResponse, DTOForgeChatThreadDeleteResponse, DTOForgeChatThreadListQuery, DTOForgeChatThreadListResponse, DTOForgeChatThreadUpdateInput, DTOForgeChatThreadUpdateResponse, DTOForgeFigmaArtifact, DTOForgeFileArtifact, DTOForgeIterationMessage, DTOForgeIterationMessagesListResponse, DTOForgeParticipant, DTOForgeParticipantGetResponse, DTOForgeParticipantsListResponse, DTOForgeProject, DTOForgeProjectContext, DTOForgeProjectContextCreateResponse, DTOForgeProjectContextGetResponse, DTOForgeProjectContextListResponse, DTOForgeProjectContextRemoveResponse, DTOForgeProjectContextUpdateResponse, DTOForgeProjectGetResponse, DTOForgeProjectIteration, DTOForgeProjectIterationListResponse, DTOForgeProjectIterationMergeMeta, DTOForgeProjectMember, DTOForgeProjectMemberCreateResponse, DTOForgeProjectMemberGetResponse, DTOForgeProjectMemberRemoveResponse, DTOForgeProjectMemberUpdateResponse, DTOForgeProjectMembersListResponse, DTOForgeProjectsListResponse, DTOForgeSpecArtifact, DTOFrameNodeStructure, DTOFrameNodeStructureListResponse, DTOGetBlockDefinitionsOutput, DTOGetBlockDefinitionsQuery, DTOGetDocumentationPageAnchorsResponse, DTOGetForgeIterationMessageResponse, DTOGetForgeProjectIterationResponse, DTOGitBranch, DTOGitOrganization, DTOGitProject, DTOGitRepository, DTOImportJob, DTOImportJobResponse, DTOIntegration, DTOIntegrationCredentials, DTOIntegrationOAuthGetResponse, DTOIntegrationPostResponse, DTOIntegrationsGetListResponse, DTOLiveblocksAuthRequest, DTOLiveblocksAuthResponse, DTOMoveDocumentationGroupInput, DTOMoveDocumentationPageInputV2, DTONpmRegistryAccessTokenResponse, 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, DTOPortalSettings, DTOPortalSettingsGetResponse, DTOPortalSettingsSidebar, DTOPortalSettingsSidebarLink, DTOPortalSettingsSidebarSection, DTOPortalSettingsTheme, DTOPortalSettingsUpdatePayload, type DTOPropertyDefinitionBase, DTOPublishDocumentationChanges, DTOPublishDocumentationRequest, DTOPublishDocumentationResponse, DTOPublishedDocAnalyticsComparisonData, DTOPublishedDocPageAnalyticsComparisonData, DTOPublishedDocPageVisitData, DTOPublishedDocVisitData, DTOPublishedDocVisitHeatMapWeek, DTORegistry, DTORemoveForgeProjectMember, DTORemoveForgeProjectResponse, DTORenderedAssetFile, DTORestoreDocumentationGroupInput, DTORestoreDocumentationPageInput, DTOStorybookAccessTokenPayload, DTOStorybookAccessTokenResponse, DTOStorybookEntry, DTOStorybookEntryListResponse, DTOStorybookEntryOrigin, DTOStorybookEntryReplaceAction, DTOStorybookEntryResponse, DTOStorybookImportPayload, DTOStorybookSourceUpdatePayload, DTOStorybookUploadStatus, DTOStorybookUploadUrlRequest, DTOStorybookUploadUrlResponse, DTOTheme, DTOThemeCreatePayload, DTOThemeListResponse, DTOThemeOverride, DTOThemeOverrideCreatePayload, DTOThemeResponse, DTOTokenCollection, DTOTokenCollectionsListReponse, DTOTransferOwnershipPayload, DTOUGetForgeAgentResponse, DTOUpdateDocumentationGroupInput, DTOUpdateDocumentationPageDocumentInputV2, DTOUpdateDocumentationPageInputV2, DTOUpdateForgeAgent, DTOUpdateForgeAgentResponse, DTOUpdateForgeArtifact, DTOUpdateForgeArtifactResponse, DTOUpdateForgeBuildArtifact, DTOUpdateForgeFigmaArtifact, DTOUpdateForgeFileArtifact, DTOUpdateForgeIterationMessage, DTOUpdateForgeIterationMessageResponse, DTOUpdateForgeParticipant, DTOUpdateForgeParticipantResponse, DTOUpdateForgeProject, DTOUpdateForgeProjectContext, DTOUpdateForgeProjectIteration, DTOUpdateForgeProjectIterationResponse, DTOUpdateForgeProjectMember, DTOUpdateForgeProjectResponse, DTOUpdateForgeSpecArtifact, DTOUpdateRegistryInput, DTOUpdateRegistryOutput, DTOUpdateUserNotificationSettingsPayload, DTOUpdateVersionInput, DTOUploadUrlItem, DTOUser, DTOUserDesignSystemsResponse, 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, DTOWorkspaceUntypedData, DTOWorkspaceUntypedDataCreatePayload, DTOWorkspaceUntypedDataListResponse, DTOWorkspaceUntypedDataResponse, DTOWorkspaceUntypedDataUpdatePayload, type DTPGetForgeAgentResponse, DesignSystemAnalyticsEndpoint, DesignSystemBffEndpoint, DesignSystemComponentEndpoint, DesignSystemContactsEndpoint, DesignSystemMembersEndpoint, DesignSystemPageRedirectsEndpoint, DesignSystemSourcesEndpoint, DesignSystemVersionsEndpoint, DesignSystemsEndpoint, DimensionsVariableScopeType, DocsStructureRepository, DocumentationEndpoint, DocumentationHierarchySettings, DocumentationPageEditorModel, DocumentationPageV1DTO, ElementPropertyDefinitionsEndpoint, ElementPropertyValuesEndpoint, ElementsActionEndpoint, ElementsEndpoint, ExporterJobsEndpoint, ExportersEndpoint, FigmaComponentGroupsEndpoint, FigmaComponentsEndpoint, FigmaFrameStructuresEndpoint, FigmaNodeStructuresEndpoint, FigmaUtils, FilesEndpoint, ForgeAgentsEndpoint, ForgeArtifactsEndpoint, ForgeIterationMessagesEndpoint, ForgeParticipantsEndpoint, ForgeProjectContextsEndpoint, ForgeProjectIterationsEndpoint, ForgeProjectMembersEndpoint, ForgeProjectsEndpoint, ForgesEndpoint, FormattedCollections, FrontendVersionRoomYDoc, GitDestinationOptions, ImportJobsEndpoint, type ListItemNode, type ListNode, ListTreeBuilder, LiveblocksEndpoint, type LocalApproval, LocalDocsElementActionExecutor, type LocalDocsPage, type LocalDocsPageGroup, 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, StorybookEntriesEndpoint, StorybookHostingEndpoint, StringVariableScopeType, SupernovaApiClient, type SupportedActionType, ThemesEndpoint, TokenCollectionsEndpoint, TokenGroupsEndpoint, TokensEndpoint, UsersEndpoint, Variable, VariableAlias, VariableMode, VariableValue, VariablesMapping, type VersionRoomApproval, VersionRoomBaseYDoc, type VersionRoomBaseYDocState, type VersionRoomDocsPage, type VersionRoomDocsPageGroup, VersionSQSPayload, VersionStatsEndpoint, WorkspaceChatThreadsEndpoint, WorkspaceConfigurationPayload, WorkspaceIntegrationsEndpoint, WorkspaceInvitationsEndpoint, WorkspaceMembersEndpoint, WorkspaceNpmRegistryEndpoint, WorkspacesEndpoint, applyActionsLocally, applyPrivacyConfigurationToNestedItems, blockToProsemirrorNode, buildDocPagePublishPaths, calculateElementParentChain, computeDocsHierarchy, documentationAnalyticsToComparisonDto, documentationAnalyticsToGlobalDto, documentationAnalyticsToHeatMapDto, documentationAnalyticsToPageComparisonDto, documentationAnalyticsToPageDto, documentationItemConfigurationToDTOV1, documentationItemConfigurationToDTOV2, documentationPageToDTOV2, documentationPagesFixedConfigurationToDTOV1, documentationPagesFixedConfigurationToDTOV2, documentationPagesToDTOV1, documentationPagesToDTOV2, elementGroupsToDocumentationGroupDTOV1, elementGroupsToDocumentationGroupDTOV2, elementGroupsToDocumentationGroupFixedConfigurationDTOV1, elementGroupsToDocumentationGroupFixedConfigurationDTOV2, elementGroupsToDocumentationGroupStructureDTOV1, exhaustiveInvalidUriPaths, generateHash, generatePageContentHash, getDtoDefaultItemConfigurationV1, getDtoDefaultItemConfigurationV2, getMockPageBlockDefinitions, gitBranchToDto, gitOrganizationToDto, gitProjectToDto, gitRepositoryToDto, innerEditorProsemirrorSchema, integrationCredentialToDto, integrationToDto, isValidRedirectPath, itemConfigurationToYjs, mainEditorProsemirrorSchema, pageToProsemirrorDoc, pageToYDoc, pageToYXmlFragment, pipelineToDto, prosemirrorDocToPage, prosemirrorDocToRichTextPropertyValue, prosemirrorNodeToSection, prosemirrorNodesToBlocks, richTextPropertyValueToProsemirror, serializeAsCustomBlock, serializeQuery, shallowProsemirrorNodeToBlock, validateDesignSystemVersion, validateSsoPayload, yDocToPage, yXmlFragmentToPage, yjsToDocumentationHierarchy };
|