@supernova-studio/client 1.46.0 → 1.46.2
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 +833 -425
- package/dist/index.d.ts +833 -425
- package/dist/index.js +12 -4
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +11 -3
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -86353,16 +86353,45 @@ declare const DTOForgeIconSet: z.ZodObject<{
|
|
|
86353
86353
|
type: "Phosphor" | "Lucide" | "Tabler";
|
|
86354
86354
|
variant?: string | undefined;
|
|
86355
86355
|
}>;
|
|
86356
|
+
declare const DTOForgeTokenThemeSet: z.ZodObject<{
|
|
86357
|
+
id: z.ZodString;
|
|
86358
|
+
name: z.ZodString;
|
|
86359
|
+
tokenThemeIds: z.ZodArray<z.ZodString, "many">;
|
|
86360
|
+
}, "strip", z.ZodTypeAny, {
|
|
86361
|
+
id: string;
|
|
86362
|
+
name: string;
|
|
86363
|
+
tokenThemeIds: string[];
|
|
86364
|
+
}, {
|
|
86365
|
+
id: string;
|
|
86366
|
+
name: string;
|
|
86367
|
+
tokenThemeIds: string[];
|
|
86368
|
+
}>;
|
|
86369
|
+
type DTOForgeTokenThemeSet = z.infer<typeof DTOForgeTokenThemeSet>;
|
|
86356
86370
|
declare const DTOForgeProjectContextV2: z.ZodObject<{
|
|
86357
86371
|
id: z.ZodString;
|
|
86358
86372
|
name: z.ZodString;
|
|
86359
86373
|
workspaceId: z.ZodString;
|
|
86360
86374
|
designSystemId: z.ZodOptional<z.ZodString>;
|
|
86375
|
+
brandId: z.ZodOptional<z.ZodString>;
|
|
86376
|
+
defaultTokenThemeSetId: z.ZodOptional<z.ZodString>;
|
|
86361
86377
|
description: z.ZodOptional<z.ZodString>;
|
|
86362
86378
|
productContext: z.ZodOptional<z.ZodString>;
|
|
86363
86379
|
additionalContext: z.ZodOptional<z.ZodString>;
|
|
86364
86380
|
isArchived: z.ZodBoolean;
|
|
86365
86381
|
themePreset: z.ZodOptional<z.ZodString>;
|
|
86382
|
+
tokenThemeSets: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
86383
|
+
id: z.ZodString;
|
|
86384
|
+
name: z.ZodString;
|
|
86385
|
+
tokenThemeIds: z.ZodArray<z.ZodString, "many">;
|
|
86386
|
+
}, "strip", z.ZodTypeAny, {
|
|
86387
|
+
id: string;
|
|
86388
|
+
name: string;
|
|
86389
|
+
tokenThemeIds: string[];
|
|
86390
|
+
}, {
|
|
86391
|
+
id: string;
|
|
86392
|
+
name: string;
|
|
86393
|
+
tokenThemeIds: string[];
|
|
86394
|
+
}>, "many">>;
|
|
86366
86395
|
componentSet: z.ZodObject<{
|
|
86367
86396
|
type: z.ZodEnum<["Shadcn"]>;
|
|
86368
86397
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -93930,9 +93959,16 @@ declare const DTOForgeProjectContextV2: z.ZodObject<{
|
|
|
93930
93959
|
};
|
|
93931
93960
|
description?: string | undefined;
|
|
93932
93961
|
designSystemId?: string | undefined;
|
|
93962
|
+
brandId?: string | undefined;
|
|
93963
|
+
defaultTokenThemeSetId?: string | undefined;
|
|
93933
93964
|
productContext?: string | undefined;
|
|
93934
93965
|
additionalContext?: string | undefined;
|
|
93935
93966
|
themePreset?: string | undefined;
|
|
93967
|
+
tokenThemeSets?: {
|
|
93968
|
+
id: string;
|
|
93969
|
+
name: string;
|
|
93970
|
+
tokenThemeIds: string[];
|
|
93971
|
+
}[] | undefined;
|
|
93936
93972
|
}, {
|
|
93937
93973
|
id: string;
|
|
93938
93974
|
createdAt: Date;
|
|
@@ -94897,9 +94933,16 @@ declare const DTOForgeProjectContextV2: z.ZodObject<{
|
|
|
94897
94933
|
};
|
|
94898
94934
|
description?: string | undefined;
|
|
94899
94935
|
designSystemId?: string | undefined;
|
|
94936
|
+
brandId?: string | undefined;
|
|
94937
|
+
defaultTokenThemeSetId?: string | undefined;
|
|
94900
94938
|
productContext?: string | undefined;
|
|
94901
94939
|
additionalContext?: string | undefined;
|
|
94902
94940
|
themePreset?: string | undefined;
|
|
94941
|
+
tokenThemeSets?: {
|
|
94942
|
+
id: string;
|
|
94943
|
+
name: string;
|
|
94944
|
+
tokenThemeIds: string[];
|
|
94945
|
+
}[] | undefined;
|
|
94903
94946
|
}>;
|
|
94904
94947
|
type DTOForgeProjectContextV2 = z.infer<typeof DTOForgeProjectContextV2>;
|
|
94905
94948
|
declare const DTOForgeThemeKnownPreset: z.ZodEnum<["Default", "Airbnb", "Spotify", "Windows98"]>;
|
|
@@ -94909,11 +94952,26 @@ declare const DTOForgeProjectContextCreateV2: z.ZodObject<Omit<{
|
|
|
94909
94952
|
name: z.ZodString;
|
|
94910
94953
|
workspaceId: z.ZodString;
|
|
94911
94954
|
designSystemId: z.ZodOptional<z.ZodString>;
|
|
94955
|
+
brandId: z.ZodOptional<z.ZodString>;
|
|
94956
|
+
defaultTokenThemeSetId: z.ZodOptional<z.ZodString>;
|
|
94912
94957
|
description: z.ZodOptional<z.ZodString>;
|
|
94913
94958
|
productContext: z.ZodOptional<z.ZodString>;
|
|
94914
94959
|
additionalContext: z.ZodOptional<z.ZodString>;
|
|
94915
94960
|
isArchived: z.ZodBoolean;
|
|
94916
94961
|
themePreset: z.ZodOptional<z.ZodString>;
|
|
94962
|
+
tokenThemeSets: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
94963
|
+
id: z.ZodString;
|
|
94964
|
+
name: z.ZodString;
|
|
94965
|
+
tokenThemeIds: z.ZodArray<z.ZodString, "many">;
|
|
94966
|
+
}, "strip", z.ZodTypeAny, {
|
|
94967
|
+
id: string;
|
|
94968
|
+
name: string;
|
|
94969
|
+
tokenThemeIds: string[];
|
|
94970
|
+
}, {
|
|
94971
|
+
id: string;
|
|
94972
|
+
name: string;
|
|
94973
|
+
tokenThemeIds: string[];
|
|
94974
|
+
}>, "many">>;
|
|
94917
94975
|
componentSet: z.ZodObject<{
|
|
94918
94976
|
type: z.ZodEnum<["Shadcn"]>;
|
|
94919
94977
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -102477,9 +102535,16 @@ declare const DTOForgeProjectContextCreateV2: z.ZodObject<Omit<{
|
|
|
102477
102535
|
};
|
|
102478
102536
|
description?: string | undefined;
|
|
102479
102537
|
designSystemId?: string | undefined;
|
|
102538
|
+
brandId?: string | undefined;
|
|
102539
|
+
defaultTokenThemeSetId?: string | undefined;
|
|
102480
102540
|
productContext?: string | undefined;
|
|
102481
102541
|
additionalContext?: string | undefined;
|
|
102482
102542
|
themePreset?: string | undefined;
|
|
102543
|
+
tokenThemeSets?: {
|
|
102544
|
+
id: string;
|
|
102545
|
+
name: string;
|
|
102546
|
+
tokenThemeIds: string[];
|
|
102547
|
+
}[] | undefined;
|
|
102483
102548
|
}, {
|
|
102484
102549
|
name: string;
|
|
102485
102550
|
theme: {
|
|
@@ -103440,15 +103505,23 @@ declare const DTOForgeProjectContextCreateV2: z.ZodObject<Omit<{
|
|
|
103440
103505
|
};
|
|
103441
103506
|
description?: string | undefined;
|
|
103442
103507
|
designSystemId?: string | undefined;
|
|
103508
|
+
brandId?: string | undefined;
|
|
103509
|
+
defaultTokenThemeSetId?: string | undefined;
|
|
103443
103510
|
productContext?: string | undefined;
|
|
103444
103511
|
additionalContext?: string | undefined;
|
|
103445
103512
|
themePreset?: string | undefined;
|
|
103513
|
+
tokenThemeSets?: {
|
|
103514
|
+
id: string;
|
|
103515
|
+
name: string;
|
|
103516
|
+
tokenThemeIds: string[];
|
|
103517
|
+
}[] | undefined;
|
|
103446
103518
|
}>;
|
|
103447
103519
|
type DTOForgeProjectContextCreateV2 = z.infer<typeof DTOForgeProjectContextCreateV2>;
|
|
103448
103520
|
declare const DTOForgeProjectContextUpdateV2: z.ZodObject<{
|
|
103449
103521
|
name: z.ZodOptional<z.ZodString>;
|
|
103450
103522
|
description: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
103451
103523
|
designSystemId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
103524
|
+
brandId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
103452
103525
|
theme: z.ZodOptional<z.ZodObject<{
|
|
103453
103526
|
background: z.ZodObject<{
|
|
103454
103527
|
aliasTo: z.ZodEffects<z.ZodNullable<z.ZodOptional<z.ZodString>>, string | undefined, string | null | undefined>;
|
|
@@ -110034,9 +110107,23 @@ declare const DTOForgeProjectContextUpdateV2: z.ZodObject<{
|
|
|
110034
110107
|
};
|
|
110035
110108
|
}>>;
|
|
110036
110109
|
isArchived: z.ZodOptional<z.ZodBoolean>;
|
|
110110
|
+
defaultTokenThemeSetId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
110037
110111
|
productContext: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
110038
110112
|
additionalContext: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
110039
110113
|
themePreset: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
110114
|
+
tokenThemeSets: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
110115
|
+
id: z.ZodString;
|
|
110116
|
+
name: z.ZodString;
|
|
110117
|
+
tokenThemeIds: z.ZodArray<z.ZodString, "many">;
|
|
110118
|
+
}, "strip", z.ZodTypeAny, {
|
|
110119
|
+
id: string;
|
|
110120
|
+
name: string;
|
|
110121
|
+
tokenThemeIds: string[];
|
|
110122
|
+
}, {
|
|
110123
|
+
id: string;
|
|
110124
|
+
name: string;
|
|
110125
|
+
tokenThemeIds: string[];
|
|
110126
|
+
}>, "many">>>;
|
|
110040
110127
|
componentSet: z.ZodOptional<z.ZodObject<{
|
|
110041
110128
|
type: z.ZodEnum<["Shadcn"]>;
|
|
110042
110129
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -110058,6 +110145,7 @@ declare const DTOForgeProjectContextUpdateV2: z.ZodObject<{
|
|
|
110058
110145
|
name?: string | undefined;
|
|
110059
110146
|
description?: string | undefined;
|
|
110060
110147
|
designSystemId?: string | undefined;
|
|
110148
|
+
brandId?: string | undefined;
|
|
110061
110149
|
theme?: {
|
|
110062
110150
|
card: {
|
|
110063
110151
|
value?: {
|
|
@@ -111007,9 +111095,15 @@ declare const DTOForgeProjectContextUpdateV2: z.ZodObject<{
|
|
|
111007
111095
|
};
|
|
111008
111096
|
} | undefined;
|
|
111009
111097
|
isArchived?: boolean | undefined;
|
|
111098
|
+
defaultTokenThemeSetId?: string | undefined;
|
|
111010
111099
|
productContext?: string | undefined;
|
|
111011
111100
|
additionalContext?: string | undefined;
|
|
111012
111101
|
themePreset?: string | undefined;
|
|
111102
|
+
tokenThemeSets?: {
|
|
111103
|
+
id: string;
|
|
111104
|
+
name: string;
|
|
111105
|
+
tokenThemeIds: string[];
|
|
111106
|
+
}[] | undefined;
|
|
111013
111107
|
componentSet?: {
|
|
111014
111108
|
type: "Shadcn";
|
|
111015
111109
|
} | undefined;
|
|
@@ -111021,6 +111115,7 @@ declare const DTOForgeProjectContextUpdateV2: z.ZodObject<{
|
|
|
111021
111115
|
name?: string | undefined;
|
|
111022
111116
|
description?: string | undefined;
|
|
111023
111117
|
designSystemId?: string | undefined;
|
|
111118
|
+
brandId?: string | undefined;
|
|
111024
111119
|
theme?: {
|
|
111025
111120
|
card: {
|
|
111026
111121
|
value?: {
|
|
@@ -111970,9 +112065,15 @@ declare const DTOForgeProjectContextUpdateV2: z.ZodObject<{
|
|
|
111970
112065
|
};
|
|
111971
112066
|
} | undefined;
|
|
111972
112067
|
isArchived?: boolean | undefined;
|
|
112068
|
+
defaultTokenThemeSetId?: string | undefined;
|
|
111973
112069
|
productContext?: string | undefined;
|
|
111974
112070
|
additionalContext?: string | undefined;
|
|
111975
112071
|
themePreset?: string | undefined;
|
|
112072
|
+
tokenThemeSets?: {
|
|
112073
|
+
id: string;
|
|
112074
|
+
name: string;
|
|
112075
|
+
tokenThemeIds: string[];
|
|
112076
|
+
}[] | undefined;
|
|
111976
112077
|
componentSet?: {
|
|
111977
112078
|
type: "Shadcn";
|
|
111978
112079
|
} | undefined;
|
|
@@ -111992,11 +112093,26 @@ declare const DTOForgeProjectContextResponseV2: z.ZodObject<{
|
|
|
111992
112093
|
name: z.ZodString;
|
|
111993
112094
|
workspaceId: z.ZodString;
|
|
111994
112095
|
designSystemId: z.ZodOptional<z.ZodString>;
|
|
112096
|
+
brandId: z.ZodOptional<z.ZodString>;
|
|
112097
|
+
defaultTokenThemeSetId: z.ZodOptional<z.ZodString>;
|
|
111995
112098
|
description: z.ZodOptional<z.ZodString>;
|
|
111996
112099
|
productContext: z.ZodOptional<z.ZodString>;
|
|
111997
112100
|
additionalContext: z.ZodOptional<z.ZodString>;
|
|
111998
112101
|
isArchived: z.ZodBoolean;
|
|
111999
112102
|
themePreset: z.ZodOptional<z.ZodString>;
|
|
112103
|
+
tokenThemeSets: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
112104
|
+
id: z.ZodString;
|
|
112105
|
+
name: z.ZodString;
|
|
112106
|
+
tokenThemeIds: z.ZodArray<z.ZodString, "many">;
|
|
112107
|
+
}, "strip", z.ZodTypeAny, {
|
|
112108
|
+
id: string;
|
|
112109
|
+
name: string;
|
|
112110
|
+
tokenThemeIds: string[];
|
|
112111
|
+
}, {
|
|
112112
|
+
id: string;
|
|
112113
|
+
name: string;
|
|
112114
|
+
tokenThemeIds: string[];
|
|
112115
|
+
}>, "many">>;
|
|
112000
112116
|
componentSet: z.ZodObject<{
|
|
112001
112117
|
type: z.ZodEnum<["Shadcn"]>;
|
|
112002
112118
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -119564,9 +119680,16 @@ declare const DTOForgeProjectContextResponseV2: z.ZodObject<{
|
|
|
119564
119680
|
};
|
|
119565
119681
|
description?: string | undefined;
|
|
119566
119682
|
designSystemId?: string | undefined;
|
|
119683
|
+
brandId?: string | undefined;
|
|
119684
|
+
defaultTokenThemeSetId?: string | undefined;
|
|
119567
119685
|
productContext?: string | undefined;
|
|
119568
119686
|
additionalContext?: string | undefined;
|
|
119569
119687
|
themePreset?: string | undefined;
|
|
119688
|
+
tokenThemeSets?: {
|
|
119689
|
+
id: string;
|
|
119690
|
+
name: string;
|
|
119691
|
+
tokenThemeIds: string[];
|
|
119692
|
+
}[] | undefined;
|
|
119570
119693
|
}, {
|
|
119571
119694
|
id: string;
|
|
119572
119695
|
createdAt: Date;
|
|
@@ -120531,9 +120654,16 @@ declare const DTOForgeProjectContextResponseV2: z.ZodObject<{
|
|
|
120531
120654
|
};
|
|
120532
120655
|
description?: string | undefined;
|
|
120533
120656
|
designSystemId?: string | undefined;
|
|
120657
|
+
brandId?: string | undefined;
|
|
120658
|
+
defaultTokenThemeSetId?: string | undefined;
|
|
120534
120659
|
productContext?: string | undefined;
|
|
120535
120660
|
additionalContext?: string | undefined;
|
|
120536
120661
|
themePreset?: string | undefined;
|
|
120662
|
+
tokenThemeSets?: {
|
|
120663
|
+
id: string;
|
|
120664
|
+
name: string;
|
|
120665
|
+
tokenThemeIds: string[];
|
|
120666
|
+
}[] | undefined;
|
|
120537
120667
|
}>;
|
|
120538
120668
|
}, "strip", z.ZodTypeAny, {
|
|
120539
120669
|
context: {
|
|
@@ -121500,9 +121630,16 @@ declare const DTOForgeProjectContextResponseV2: z.ZodObject<{
|
|
|
121500
121630
|
};
|
|
121501
121631
|
description?: string | undefined;
|
|
121502
121632
|
designSystemId?: string | undefined;
|
|
121633
|
+
brandId?: string | undefined;
|
|
121634
|
+
defaultTokenThemeSetId?: string | undefined;
|
|
121503
121635
|
productContext?: string | undefined;
|
|
121504
121636
|
additionalContext?: string | undefined;
|
|
121505
121637
|
themePreset?: string | undefined;
|
|
121638
|
+
tokenThemeSets?: {
|
|
121639
|
+
id: string;
|
|
121640
|
+
name: string;
|
|
121641
|
+
tokenThemeIds: string[];
|
|
121642
|
+
}[] | undefined;
|
|
121506
121643
|
};
|
|
121507
121644
|
}, {
|
|
121508
121645
|
context: {
|
|
@@ -122469,9 +122606,16 @@ declare const DTOForgeProjectContextResponseV2: z.ZodObject<{
|
|
|
122469
122606
|
};
|
|
122470
122607
|
description?: string | undefined;
|
|
122471
122608
|
designSystemId?: string | undefined;
|
|
122609
|
+
brandId?: string | undefined;
|
|
122610
|
+
defaultTokenThemeSetId?: string | undefined;
|
|
122472
122611
|
productContext?: string | undefined;
|
|
122473
122612
|
additionalContext?: string | undefined;
|
|
122474
122613
|
themePreset?: string | undefined;
|
|
122614
|
+
tokenThemeSets?: {
|
|
122615
|
+
id: string;
|
|
122616
|
+
name: string;
|
|
122617
|
+
tokenThemeIds: string[];
|
|
122618
|
+
}[] | undefined;
|
|
122475
122619
|
};
|
|
122476
122620
|
}>;
|
|
122477
122621
|
type DTOForgeProjectContextResponseV2 = z.infer<typeof DTOForgeProjectContextResponseV2>;
|
|
@@ -122492,11 +122636,26 @@ declare const DTOForgeProjectContextListResponseV2: z.ZodObject<{
|
|
|
122492
122636
|
name: z.ZodString;
|
|
122493
122637
|
workspaceId: z.ZodString;
|
|
122494
122638
|
designSystemId: z.ZodOptional<z.ZodString>;
|
|
122639
|
+
brandId: z.ZodOptional<z.ZodString>;
|
|
122640
|
+
defaultTokenThemeSetId: z.ZodOptional<z.ZodString>;
|
|
122495
122641
|
description: z.ZodOptional<z.ZodString>;
|
|
122496
122642
|
productContext: z.ZodOptional<z.ZodString>;
|
|
122497
122643
|
additionalContext: z.ZodOptional<z.ZodString>;
|
|
122498
122644
|
isArchived: z.ZodBoolean;
|
|
122499
122645
|
themePreset: z.ZodOptional<z.ZodString>;
|
|
122646
|
+
tokenThemeSets: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
122647
|
+
id: z.ZodString;
|
|
122648
|
+
name: z.ZodString;
|
|
122649
|
+
tokenThemeIds: z.ZodArray<z.ZodString, "many">;
|
|
122650
|
+
}, "strip", z.ZodTypeAny, {
|
|
122651
|
+
id: string;
|
|
122652
|
+
name: string;
|
|
122653
|
+
tokenThemeIds: string[];
|
|
122654
|
+
}, {
|
|
122655
|
+
id: string;
|
|
122656
|
+
name: string;
|
|
122657
|
+
tokenThemeIds: string[];
|
|
122658
|
+
}>, "many">>;
|
|
122500
122659
|
componentSet: z.ZodObject<{
|
|
122501
122660
|
type: z.ZodEnum<["Shadcn"]>;
|
|
122502
122661
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -130064,9 +130223,16 @@ declare const DTOForgeProjectContextListResponseV2: z.ZodObject<{
|
|
|
130064
130223
|
};
|
|
130065
130224
|
description?: string | undefined;
|
|
130066
130225
|
designSystemId?: string | undefined;
|
|
130226
|
+
brandId?: string | undefined;
|
|
130227
|
+
defaultTokenThemeSetId?: string | undefined;
|
|
130067
130228
|
productContext?: string | undefined;
|
|
130068
130229
|
additionalContext?: string | undefined;
|
|
130069
130230
|
themePreset?: string | undefined;
|
|
130231
|
+
tokenThemeSets?: {
|
|
130232
|
+
id: string;
|
|
130233
|
+
name: string;
|
|
130234
|
+
tokenThemeIds: string[];
|
|
130235
|
+
}[] | undefined;
|
|
130070
130236
|
}, {
|
|
130071
130237
|
id: string;
|
|
130072
130238
|
createdAt: Date;
|
|
@@ -131031,9 +131197,16 @@ declare const DTOForgeProjectContextListResponseV2: z.ZodObject<{
|
|
|
131031
131197
|
};
|
|
131032
131198
|
description?: string | undefined;
|
|
131033
131199
|
designSystemId?: string | undefined;
|
|
131200
|
+
brandId?: string | undefined;
|
|
131201
|
+
defaultTokenThemeSetId?: string | undefined;
|
|
131034
131202
|
productContext?: string | undefined;
|
|
131035
131203
|
additionalContext?: string | undefined;
|
|
131036
131204
|
themePreset?: string | undefined;
|
|
131205
|
+
tokenThemeSets?: {
|
|
131206
|
+
id: string;
|
|
131207
|
+
name: string;
|
|
131208
|
+
tokenThemeIds: string[];
|
|
131209
|
+
}[] | undefined;
|
|
131037
131210
|
}>, "many">;
|
|
131038
131211
|
}, "strip", z.ZodTypeAny, {
|
|
131039
131212
|
contexts: {
|
|
@@ -132000,9 +132173,16 @@ declare const DTOForgeProjectContextListResponseV2: z.ZodObject<{
|
|
|
132000
132173
|
};
|
|
132001
132174
|
description?: string | undefined;
|
|
132002
132175
|
designSystemId?: string | undefined;
|
|
132176
|
+
brandId?: string | undefined;
|
|
132177
|
+
defaultTokenThemeSetId?: string | undefined;
|
|
132003
132178
|
productContext?: string | undefined;
|
|
132004
132179
|
additionalContext?: string | undefined;
|
|
132005
132180
|
themePreset?: string | undefined;
|
|
132181
|
+
tokenThemeSets?: {
|
|
132182
|
+
id: string;
|
|
132183
|
+
name: string;
|
|
132184
|
+
tokenThemeIds: string[];
|
|
132185
|
+
}[] | undefined;
|
|
132006
132186
|
}[];
|
|
132007
132187
|
}, {
|
|
132008
132188
|
contexts: {
|
|
@@ -132969,9 +133149,16 @@ declare const DTOForgeProjectContextListResponseV2: z.ZodObject<{
|
|
|
132969
133149
|
};
|
|
132970
133150
|
description?: string | undefined;
|
|
132971
133151
|
designSystemId?: string | undefined;
|
|
133152
|
+
brandId?: string | undefined;
|
|
133153
|
+
defaultTokenThemeSetId?: string | undefined;
|
|
132972
133154
|
productContext?: string | undefined;
|
|
132973
133155
|
additionalContext?: string | undefined;
|
|
132974
133156
|
themePreset?: string | undefined;
|
|
133157
|
+
tokenThemeSets?: {
|
|
133158
|
+
id: string;
|
|
133159
|
+
name: string;
|
|
133160
|
+
tokenThemeIds: string[];
|
|
133161
|
+
}[] | undefined;
|
|
132975
133162
|
}[];
|
|
132976
133163
|
}>;
|
|
132977
133164
|
type DTOForgeProjectContextListResponseV2 = z.infer<typeof DTOForgeProjectContextListResponseV2>;
|
|
@@ -158300,16 +158487,31 @@ declare const DTOForgeProject: z.ZodObject<{
|
|
|
158300
158487
|
/** @deprecated use documents.length */
|
|
158301
158488
|
numberOfDocuments: z.ZodOptional<z.ZodNumber>;
|
|
158302
158489
|
/** @deprecated prefer fetching from project contexts endpoint separately */
|
|
158303
|
-
context: z.ZodObject<{
|
|
158490
|
+
context: z.ZodOptional<z.ZodObject<{
|
|
158304
158491
|
id: z.ZodString;
|
|
158305
158492
|
name: z.ZodString;
|
|
158306
158493
|
workspaceId: z.ZodString;
|
|
158307
158494
|
designSystemId: z.ZodOptional<z.ZodString>;
|
|
158495
|
+
brandId: z.ZodOptional<z.ZodString>;
|
|
158496
|
+
defaultTokenThemeSetId: z.ZodOptional<z.ZodString>;
|
|
158308
158497
|
description: z.ZodOptional<z.ZodString>;
|
|
158309
158498
|
productContext: z.ZodOptional<z.ZodString>;
|
|
158310
158499
|
additionalContext: z.ZodOptional<z.ZodString>;
|
|
158311
158500
|
isArchived: z.ZodBoolean;
|
|
158312
158501
|
themePreset: z.ZodOptional<z.ZodString>;
|
|
158502
|
+
tokenThemeSets: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
158503
|
+
id: z.ZodString;
|
|
158504
|
+
name: z.ZodString;
|
|
158505
|
+
tokenThemeIds: z.ZodArray<z.ZodString, "many">;
|
|
158506
|
+
}, "strip", z.ZodTypeAny, {
|
|
158507
|
+
id: string;
|
|
158508
|
+
name: string;
|
|
158509
|
+
tokenThemeIds: string[];
|
|
158510
|
+
}, {
|
|
158511
|
+
id: string;
|
|
158512
|
+
name: string;
|
|
158513
|
+
tokenThemeIds: string[];
|
|
158514
|
+
}>, "many">>;
|
|
158313
158515
|
componentSet: z.ZodObject<{
|
|
158314
158516
|
type: z.ZodEnum<["Shadcn"]>;
|
|
158315
158517
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -165877,9 +166079,16 @@ declare const DTOForgeProject: z.ZodObject<{
|
|
|
165877
166079
|
};
|
|
165878
166080
|
description?: string | undefined;
|
|
165879
166081
|
designSystemId?: string | undefined;
|
|
166082
|
+
brandId?: string | undefined;
|
|
166083
|
+
defaultTokenThemeSetId?: string | undefined;
|
|
165880
166084
|
productContext?: string | undefined;
|
|
165881
166085
|
additionalContext?: string | undefined;
|
|
165882
166086
|
themePreset?: string | undefined;
|
|
166087
|
+
tokenThemeSets?: {
|
|
166088
|
+
id: string;
|
|
166089
|
+
name: string;
|
|
166090
|
+
tokenThemeIds: string[];
|
|
166091
|
+
}[] | undefined;
|
|
165883
166092
|
}, {
|
|
165884
166093
|
id: string;
|
|
165885
166094
|
createdAt: Date;
|
|
@@ -166844,10 +167053,17 @@ declare const DTOForgeProject: z.ZodObject<{
|
|
|
166844
167053
|
};
|
|
166845
167054
|
description?: string | undefined;
|
|
166846
167055
|
designSystemId?: string | undefined;
|
|
167056
|
+
brandId?: string | undefined;
|
|
167057
|
+
defaultTokenThemeSetId?: string | undefined;
|
|
166847
167058
|
productContext?: string | undefined;
|
|
166848
167059
|
additionalContext?: string | undefined;
|
|
166849
167060
|
themePreset?: string | undefined;
|
|
166850
|
-
|
|
167061
|
+
tokenThemeSets?: {
|
|
167062
|
+
id: string;
|
|
167063
|
+
name: string;
|
|
167064
|
+
tokenThemeIds: string[];
|
|
167065
|
+
}[] | undefined;
|
|
167066
|
+
}>>;
|
|
166851
167067
|
}, "strip", z.ZodTypeAny, {
|
|
166852
167068
|
id: string;
|
|
166853
167069
|
createdAt: Date;
|
|
@@ -166878,7 +167094,34 @@ declare const DTOForgeProject: z.ZodObject<{
|
|
|
166878
167094
|
} | undefined;
|
|
166879
167095
|
} | undefined;
|
|
166880
167096
|
}[];
|
|
166881
|
-
|
|
167097
|
+
projectContextId: string;
|
|
167098
|
+
instruction: string | null;
|
|
167099
|
+
defaultRole: "Viewer" | "Builder";
|
|
167100
|
+
documents: {
|
|
167101
|
+
id: string;
|
|
167102
|
+
createdAt: string;
|
|
167103
|
+
updatedAt: string;
|
|
167104
|
+
title: string;
|
|
167105
|
+
thumbnail?: {
|
|
167106
|
+
id: string;
|
|
167107
|
+
url: string;
|
|
167108
|
+
name?: string | undefined;
|
|
167109
|
+
source?: {
|
|
167110
|
+
type: "UserUpload";
|
|
167111
|
+
userId: string;
|
|
167112
|
+
} | {
|
|
167113
|
+
type: "Figma";
|
|
167114
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
167115
|
+
} | undefined;
|
|
167116
|
+
} | undefined;
|
|
167117
|
+
}[];
|
|
167118
|
+
fpContextId: string;
|
|
167119
|
+
numberOfFeatures: number;
|
|
167120
|
+
description?: string | undefined;
|
|
167121
|
+
emoji?: string | undefined;
|
|
167122
|
+
createdByUserId?: string | undefined;
|
|
167123
|
+
isArchived?: boolean | undefined;
|
|
167124
|
+
context?: {
|
|
166882
167125
|
id: string;
|
|
166883
167126
|
createdAt: Date;
|
|
166884
167127
|
name: string;
|
|
@@ -167842,18 +168085,34 @@ declare const DTOForgeProject: z.ZodObject<{
|
|
|
167842
168085
|
};
|
|
167843
168086
|
description?: string | undefined;
|
|
167844
168087
|
designSystemId?: string | undefined;
|
|
168088
|
+
brandId?: string | undefined;
|
|
168089
|
+
defaultTokenThemeSetId?: string | undefined;
|
|
167845
168090
|
productContext?: string | undefined;
|
|
167846
168091
|
additionalContext?: string | undefined;
|
|
167847
168092
|
themePreset?: string | undefined;
|
|
168093
|
+
tokenThemeSets?: {
|
|
168094
|
+
id: string;
|
|
168095
|
+
name: string;
|
|
168096
|
+
tokenThemeIds: string[];
|
|
168097
|
+
}[] | undefined;
|
|
168098
|
+
} | undefined;
|
|
168099
|
+
numberOfDocuments?: number | undefined;
|
|
168100
|
+
}, {
|
|
168101
|
+
id: string;
|
|
168102
|
+
createdAt: Date;
|
|
168103
|
+
name: string;
|
|
168104
|
+
meta: {
|
|
168105
|
+
name: string;
|
|
168106
|
+
description?: string | undefined;
|
|
167848
168107
|
};
|
|
167849
|
-
|
|
167850
|
-
|
|
167851
|
-
|
|
167852
|
-
|
|
168108
|
+
updatedAt: Date;
|
|
168109
|
+
workspaceId: string;
|
|
168110
|
+
accessMode: "Open" | "InviteOnly" | "Unlisted";
|
|
168111
|
+
features: {
|
|
167853
168112
|
id: string;
|
|
167854
168113
|
createdAt: string;
|
|
168114
|
+
name: string;
|
|
167855
168115
|
updatedAt: string;
|
|
167856
|
-
title: string;
|
|
167857
168116
|
thumbnail?: {
|
|
167858
168117
|
id: string;
|
|
167859
168118
|
url: string;
|
|
@@ -167867,29 +168126,13 @@ declare const DTOForgeProject: z.ZodObject<{
|
|
|
167867
168126
|
} | undefined;
|
|
167868
168127
|
} | undefined;
|
|
167869
168128
|
}[];
|
|
167870
|
-
|
|
167871
|
-
|
|
167872
|
-
|
|
167873
|
-
emoji?: string | undefined;
|
|
167874
|
-
createdByUserId?: string | undefined;
|
|
167875
|
-
isArchived?: boolean | undefined;
|
|
167876
|
-
numberOfDocuments?: number | undefined;
|
|
167877
|
-
}, {
|
|
167878
|
-
id: string;
|
|
167879
|
-
createdAt: Date;
|
|
167880
|
-
name: string;
|
|
167881
|
-
meta: {
|
|
167882
|
-
name: string;
|
|
167883
|
-
description?: string | undefined;
|
|
167884
|
-
};
|
|
167885
|
-
updatedAt: Date;
|
|
167886
|
-
workspaceId: string;
|
|
167887
|
-
accessMode: "Open" | "InviteOnly" | "Unlisted";
|
|
167888
|
-
features: {
|
|
168129
|
+
projectContextId: string;
|
|
168130
|
+
instruction: string | null;
|
|
168131
|
+
documents: {
|
|
167889
168132
|
id: string;
|
|
167890
168133
|
createdAt: string;
|
|
167891
|
-
name: string;
|
|
167892
168134
|
updatedAt: string;
|
|
168135
|
+
title: string;
|
|
167893
168136
|
thumbnail?: {
|
|
167894
168137
|
id: string;
|
|
167895
168138
|
url: string;
|
|
@@ -167903,7 +168146,14 @@ declare const DTOForgeProject: z.ZodObject<{
|
|
|
167903
168146
|
} | undefined;
|
|
167904
168147
|
} | undefined;
|
|
167905
168148
|
}[];
|
|
167906
|
-
|
|
168149
|
+
fpContextId: string;
|
|
168150
|
+
numberOfFeatures: number;
|
|
168151
|
+
description?: string | undefined;
|
|
168152
|
+
emoji?: string | undefined;
|
|
168153
|
+
tags?: string[] | undefined;
|
|
168154
|
+
createdByUserId?: string | undefined;
|
|
168155
|
+
isArchived?: boolean | undefined;
|
|
168156
|
+
context?: {
|
|
167907
168157
|
id: string;
|
|
167908
168158
|
createdAt: Date;
|
|
167909
168159
|
name: string;
|
|
@@ -168867,37 +169117,17 @@ declare const DTOForgeProject: z.ZodObject<{
|
|
|
168867
169117
|
};
|
|
168868
169118
|
description?: string | undefined;
|
|
168869
169119
|
designSystemId?: string | undefined;
|
|
169120
|
+
brandId?: string | undefined;
|
|
169121
|
+
defaultTokenThemeSetId?: string | undefined;
|
|
168870
169122
|
productContext?: string | undefined;
|
|
168871
169123
|
additionalContext?: string | undefined;
|
|
168872
169124
|
themePreset?: string | undefined;
|
|
168873
|
-
|
|
168874
|
-
projectContextId: string;
|
|
168875
|
-
instruction: string | null;
|
|
168876
|
-
documents: {
|
|
168877
|
-
id: string;
|
|
168878
|
-
createdAt: string;
|
|
168879
|
-
updatedAt: string;
|
|
168880
|
-
title: string;
|
|
168881
|
-
thumbnail?: {
|
|
169125
|
+
tokenThemeSets?: {
|
|
168882
169126
|
id: string;
|
|
168883
|
-
|
|
168884
|
-
|
|
168885
|
-
|
|
168886
|
-
|
|
168887
|
-
userId: string;
|
|
168888
|
-
} | {
|
|
168889
|
-
type: "Figma";
|
|
168890
|
-
renderMode: "Image" | "HTML" | "JSON";
|
|
168891
|
-
} | undefined;
|
|
168892
|
-
} | undefined;
|
|
168893
|
-
}[];
|
|
168894
|
-
fpContextId: string;
|
|
168895
|
-
numberOfFeatures: number;
|
|
168896
|
-
description?: string | undefined;
|
|
168897
|
-
emoji?: string | undefined;
|
|
168898
|
-
tags?: string[] | undefined;
|
|
168899
|
-
createdByUserId?: string | undefined;
|
|
168900
|
-
isArchived?: boolean | undefined;
|
|
169127
|
+
name: string;
|
|
169128
|
+
tokenThemeIds: string[];
|
|
169129
|
+
}[] | undefined;
|
|
169130
|
+
} | undefined;
|
|
168901
169131
|
defaultRole?: "Viewer" | "Builder" | undefined;
|
|
168902
169132
|
numberOfDocuments?: number | undefined;
|
|
168903
169133
|
}>;
|
|
@@ -169119,16 +169349,31 @@ declare const DTOForgeProjectCreate: z.ZodObject<Pick<{
|
|
|
169119
169349
|
/** @deprecated use documents.length */
|
|
169120
169350
|
numberOfDocuments: z.ZodOptional<z.ZodNumber>;
|
|
169121
169351
|
/** @deprecated prefer fetching from project contexts endpoint separately */
|
|
169122
|
-
context: z.ZodObject<{
|
|
169352
|
+
context: z.ZodOptional<z.ZodObject<{
|
|
169123
169353
|
id: z.ZodString;
|
|
169124
169354
|
name: z.ZodString;
|
|
169125
169355
|
workspaceId: z.ZodString;
|
|
169126
169356
|
designSystemId: z.ZodOptional<z.ZodString>;
|
|
169357
|
+
brandId: z.ZodOptional<z.ZodString>;
|
|
169358
|
+
defaultTokenThemeSetId: z.ZodOptional<z.ZodString>;
|
|
169127
169359
|
description: z.ZodOptional<z.ZodString>;
|
|
169128
169360
|
productContext: z.ZodOptional<z.ZodString>;
|
|
169129
169361
|
additionalContext: z.ZodOptional<z.ZodString>;
|
|
169130
169362
|
isArchived: z.ZodBoolean;
|
|
169131
169363
|
themePreset: z.ZodOptional<z.ZodString>;
|
|
169364
|
+
tokenThemeSets: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
169365
|
+
id: z.ZodString;
|
|
169366
|
+
name: z.ZodString;
|
|
169367
|
+
tokenThemeIds: z.ZodArray<z.ZodString, "many">;
|
|
169368
|
+
}, "strip", z.ZodTypeAny, {
|
|
169369
|
+
id: string;
|
|
169370
|
+
name: string;
|
|
169371
|
+
tokenThemeIds: string[];
|
|
169372
|
+
}, {
|
|
169373
|
+
id: string;
|
|
169374
|
+
name: string;
|
|
169375
|
+
tokenThemeIds: string[];
|
|
169376
|
+
}>, "many">>;
|
|
169132
169377
|
componentSet: z.ZodObject<{
|
|
169133
169378
|
type: z.ZodEnum<["Shadcn"]>;
|
|
169134
169379
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -176696,9 +176941,16 @@ declare const DTOForgeProjectCreate: z.ZodObject<Pick<{
|
|
|
176696
176941
|
};
|
|
176697
176942
|
description?: string | undefined;
|
|
176698
176943
|
designSystemId?: string | undefined;
|
|
176944
|
+
brandId?: string | undefined;
|
|
176945
|
+
defaultTokenThemeSetId?: string | undefined;
|
|
176699
176946
|
productContext?: string | undefined;
|
|
176700
176947
|
additionalContext?: string | undefined;
|
|
176701
176948
|
themePreset?: string | undefined;
|
|
176949
|
+
tokenThemeSets?: {
|
|
176950
|
+
id: string;
|
|
176951
|
+
name: string;
|
|
176952
|
+
tokenThemeIds: string[];
|
|
176953
|
+
}[] | undefined;
|
|
176702
176954
|
}, {
|
|
176703
176955
|
id: string;
|
|
176704
176956
|
createdAt: Date;
|
|
@@ -177663,10 +177915,17 @@ declare const DTOForgeProjectCreate: z.ZodObject<Pick<{
|
|
|
177663
177915
|
};
|
|
177664
177916
|
description?: string | undefined;
|
|
177665
177917
|
designSystemId?: string | undefined;
|
|
177918
|
+
brandId?: string | undefined;
|
|
177919
|
+
defaultTokenThemeSetId?: string | undefined;
|
|
177666
177920
|
productContext?: string | undefined;
|
|
177667
177921
|
additionalContext?: string | undefined;
|
|
177668
177922
|
themePreset?: string | undefined;
|
|
177669
|
-
|
|
177923
|
+
tokenThemeSets?: {
|
|
177924
|
+
id: string;
|
|
177925
|
+
name: string;
|
|
177926
|
+
tokenThemeIds: string[];
|
|
177927
|
+
}[] | undefined;
|
|
177928
|
+
}>>;
|
|
177670
177929
|
}, "name" | "description" | "emoji" | "tags" | "accessMode" | "instruction" | "defaultRole"> & {
|
|
177671
177930
|
/** @deprecated use `name` and `description` properties on project */
|
|
177672
177931
|
meta: z.ZodOptional<z.ZodObject<{
|
|
@@ -178958,16 +179217,31 @@ declare const DTOForgeProjectResponse: z.ZodObject<{
|
|
|
178958
179217
|
/** @deprecated use documents.length */
|
|
178959
179218
|
numberOfDocuments: z.ZodOptional<z.ZodNumber>;
|
|
178960
179219
|
/** @deprecated prefer fetching from project contexts endpoint separately */
|
|
178961
|
-
context: z.ZodObject<{
|
|
179220
|
+
context: z.ZodOptional<z.ZodObject<{
|
|
178962
179221
|
id: z.ZodString;
|
|
178963
179222
|
name: z.ZodString;
|
|
178964
179223
|
workspaceId: z.ZodString;
|
|
178965
179224
|
designSystemId: z.ZodOptional<z.ZodString>;
|
|
179225
|
+
brandId: z.ZodOptional<z.ZodString>;
|
|
179226
|
+
defaultTokenThemeSetId: z.ZodOptional<z.ZodString>;
|
|
178966
179227
|
description: z.ZodOptional<z.ZodString>;
|
|
178967
179228
|
productContext: z.ZodOptional<z.ZodString>;
|
|
178968
179229
|
additionalContext: z.ZodOptional<z.ZodString>;
|
|
178969
179230
|
isArchived: z.ZodBoolean;
|
|
178970
179231
|
themePreset: z.ZodOptional<z.ZodString>;
|
|
179232
|
+
tokenThemeSets: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
179233
|
+
id: z.ZodString;
|
|
179234
|
+
name: z.ZodString;
|
|
179235
|
+
tokenThemeIds: z.ZodArray<z.ZodString, "many">;
|
|
179236
|
+
}, "strip", z.ZodTypeAny, {
|
|
179237
|
+
id: string;
|
|
179238
|
+
name: string;
|
|
179239
|
+
tokenThemeIds: string[];
|
|
179240
|
+
}, {
|
|
179241
|
+
id: string;
|
|
179242
|
+
name: string;
|
|
179243
|
+
tokenThemeIds: string[];
|
|
179244
|
+
}>, "many">>;
|
|
178971
179245
|
componentSet: z.ZodObject<{
|
|
178972
179246
|
type: z.ZodEnum<["Shadcn"]>;
|
|
178973
179247
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -186535,9 +186809,16 @@ declare const DTOForgeProjectResponse: z.ZodObject<{
|
|
|
186535
186809
|
};
|
|
186536
186810
|
description?: string | undefined;
|
|
186537
186811
|
designSystemId?: string | undefined;
|
|
186812
|
+
brandId?: string | undefined;
|
|
186813
|
+
defaultTokenThemeSetId?: string | undefined;
|
|
186538
186814
|
productContext?: string | undefined;
|
|
186539
186815
|
additionalContext?: string | undefined;
|
|
186540
186816
|
themePreset?: string | undefined;
|
|
186817
|
+
tokenThemeSets?: {
|
|
186818
|
+
id: string;
|
|
186819
|
+
name: string;
|
|
186820
|
+
tokenThemeIds: string[];
|
|
186821
|
+
}[] | undefined;
|
|
186541
186822
|
}, {
|
|
186542
186823
|
id: string;
|
|
186543
186824
|
createdAt: Date;
|
|
@@ -187502,10 +187783,17 @@ declare const DTOForgeProjectResponse: z.ZodObject<{
|
|
|
187502
187783
|
};
|
|
187503
187784
|
description?: string | undefined;
|
|
187504
187785
|
designSystemId?: string | undefined;
|
|
187786
|
+
brandId?: string | undefined;
|
|
187787
|
+
defaultTokenThemeSetId?: string | undefined;
|
|
187505
187788
|
productContext?: string | undefined;
|
|
187506
187789
|
additionalContext?: string | undefined;
|
|
187507
187790
|
themePreset?: string | undefined;
|
|
187508
|
-
|
|
187791
|
+
tokenThemeSets?: {
|
|
187792
|
+
id: string;
|
|
187793
|
+
name: string;
|
|
187794
|
+
tokenThemeIds: string[];
|
|
187795
|
+
}[] | undefined;
|
|
187796
|
+
}>>;
|
|
187509
187797
|
} & {
|
|
187510
187798
|
effectiveRole: z.ZodEnum<["Viewer", "Builder", "Admin"]>;
|
|
187511
187799
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -187539,7 +187827,34 @@ declare const DTOForgeProjectResponse: z.ZodObject<{
|
|
|
187539
187827
|
} | undefined;
|
|
187540
187828
|
} | undefined;
|
|
187541
187829
|
}[];
|
|
187542
|
-
|
|
187830
|
+
projectContextId: string;
|
|
187831
|
+
instruction: string | null;
|
|
187832
|
+
defaultRole: "Viewer" | "Builder";
|
|
187833
|
+
documents: {
|
|
187834
|
+
id: string;
|
|
187835
|
+
createdAt: string;
|
|
187836
|
+
updatedAt: string;
|
|
187837
|
+
title: string;
|
|
187838
|
+
thumbnail?: {
|
|
187839
|
+
id: string;
|
|
187840
|
+
url: string;
|
|
187841
|
+
name?: string | undefined;
|
|
187842
|
+
source?: {
|
|
187843
|
+
type: "UserUpload";
|
|
187844
|
+
userId: string;
|
|
187845
|
+
} | {
|
|
187846
|
+
type: "Figma";
|
|
187847
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
187848
|
+
} | undefined;
|
|
187849
|
+
} | undefined;
|
|
187850
|
+
}[];
|
|
187851
|
+
fpContextId: string;
|
|
187852
|
+
numberOfFeatures: number;
|
|
187853
|
+
description?: string | undefined;
|
|
187854
|
+
emoji?: string | undefined;
|
|
187855
|
+
createdByUserId?: string | undefined;
|
|
187856
|
+
isArchived?: boolean | undefined;
|
|
187857
|
+
context?: {
|
|
187543
187858
|
id: string;
|
|
187544
187859
|
createdAt: Date;
|
|
187545
187860
|
name: string;
|
|
@@ -188503,18 +188818,35 @@ declare const DTOForgeProjectResponse: z.ZodObject<{
|
|
|
188503
188818
|
};
|
|
188504
188819
|
description?: string | undefined;
|
|
188505
188820
|
designSystemId?: string | undefined;
|
|
188821
|
+
brandId?: string | undefined;
|
|
188822
|
+
defaultTokenThemeSetId?: string | undefined;
|
|
188506
188823
|
productContext?: string | undefined;
|
|
188507
188824
|
additionalContext?: string | undefined;
|
|
188508
188825
|
themePreset?: string | undefined;
|
|
188826
|
+
tokenThemeSets?: {
|
|
188827
|
+
id: string;
|
|
188828
|
+
name: string;
|
|
188829
|
+
tokenThemeIds: string[];
|
|
188830
|
+
}[] | undefined;
|
|
188831
|
+
} | undefined;
|
|
188832
|
+
numberOfDocuments?: number | undefined;
|
|
188833
|
+
}, {
|
|
188834
|
+
id: string;
|
|
188835
|
+
createdAt: Date;
|
|
188836
|
+
name: string;
|
|
188837
|
+
meta: {
|
|
188838
|
+
name: string;
|
|
188839
|
+
description?: string | undefined;
|
|
188509
188840
|
};
|
|
188510
|
-
|
|
188511
|
-
|
|
188512
|
-
|
|
188513
|
-
|
|
188841
|
+
updatedAt: Date;
|
|
188842
|
+
workspaceId: string;
|
|
188843
|
+
accessMode: "Open" | "InviteOnly" | "Unlisted";
|
|
188844
|
+
effectiveRole: "Admin" | "Viewer" | "Builder";
|
|
188845
|
+
features: {
|
|
188514
188846
|
id: string;
|
|
188515
188847
|
createdAt: string;
|
|
188848
|
+
name: string;
|
|
188516
188849
|
updatedAt: string;
|
|
188517
|
-
title: string;
|
|
188518
188850
|
thumbnail?: {
|
|
188519
188851
|
id: string;
|
|
188520
188852
|
url: string;
|
|
@@ -188528,30 +188860,13 @@ declare const DTOForgeProjectResponse: z.ZodObject<{
|
|
|
188528
188860
|
} | undefined;
|
|
188529
188861
|
} | undefined;
|
|
188530
188862
|
}[];
|
|
188531
|
-
|
|
188532
|
-
|
|
188533
|
-
|
|
188534
|
-
emoji?: string | undefined;
|
|
188535
|
-
createdByUserId?: string | undefined;
|
|
188536
|
-
isArchived?: boolean | undefined;
|
|
188537
|
-
numberOfDocuments?: number | undefined;
|
|
188538
|
-
}, {
|
|
188539
|
-
id: string;
|
|
188540
|
-
createdAt: Date;
|
|
188541
|
-
name: string;
|
|
188542
|
-
meta: {
|
|
188543
|
-
name: string;
|
|
188544
|
-
description?: string | undefined;
|
|
188545
|
-
};
|
|
188546
|
-
updatedAt: Date;
|
|
188547
|
-
workspaceId: string;
|
|
188548
|
-
accessMode: "Open" | "InviteOnly" | "Unlisted";
|
|
188549
|
-
effectiveRole: "Admin" | "Viewer" | "Builder";
|
|
188550
|
-
features: {
|
|
188863
|
+
projectContextId: string;
|
|
188864
|
+
instruction: string | null;
|
|
188865
|
+
documents: {
|
|
188551
188866
|
id: string;
|
|
188552
188867
|
createdAt: string;
|
|
188553
|
-
name: string;
|
|
188554
188868
|
updatedAt: string;
|
|
188869
|
+
title: string;
|
|
188555
188870
|
thumbnail?: {
|
|
188556
188871
|
id: string;
|
|
188557
188872
|
url: string;
|
|
@@ -188565,7 +188880,14 @@ declare const DTOForgeProjectResponse: z.ZodObject<{
|
|
|
188565
188880
|
} | undefined;
|
|
188566
188881
|
} | undefined;
|
|
188567
188882
|
}[];
|
|
188568
|
-
|
|
188883
|
+
fpContextId: string;
|
|
188884
|
+
numberOfFeatures: number;
|
|
188885
|
+
description?: string | undefined;
|
|
188886
|
+
emoji?: string | undefined;
|
|
188887
|
+
tags?: string[] | undefined;
|
|
188888
|
+
createdByUserId?: string | undefined;
|
|
188889
|
+
isArchived?: boolean | undefined;
|
|
188890
|
+
context?: {
|
|
188569
188891
|
id: string;
|
|
188570
188892
|
createdAt: Date;
|
|
188571
188893
|
name: string;
|
|
@@ -189529,37 +189851,17 @@ declare const DTOForgeProjectResponse: z.ZodObject<{
|
|
|
189529
189851
|
};
|
|
189530
189852
|
description?: string | undefined;
|
|
189531
189853
|
designSystemId?: string | undefined;
|
|
189854
|
+
brandId?: string | undefined;
|
|
189855
|
+
defaultTokenThemeSetId?: string | undefined;
|
|
189532
189856
|
productContext?: string | undefined;
|
|
189533
189857
|
additionalContext?: string | undefined;
|
|
189534
189858
|
themePreset?: string | undefined;
|
|
189535
|
-
|
|
189536
|
-
projectContextId: string;
|
|
189537
|
-
instruction: string | null;
|
|
189538
|
-
documents: {
|
|
189539
|
-
id: string;
|
|
189540
|
-
createdAt: string;
|
|
189541
|
-
updatedAt: string;
|
|
189542
|
-
title: string;
|
|
189543
|
-
thumbnail?: {
|
|
189859
|
+
tokenThemeSets?: {
|
|
189544
189860
|
id: string;
|
|
189545
|
-
|
|
189546
|
-
|
|
189547
|
-
|
|
189548
|
-
|
|
189549
|
-
userId: string;
|
|
189550
|
-
} | {
|
|
189551
|
-
type: "Figma";
|
|
189552
|
-
renderMode: "Image" | "HTML" | "JSON";
|
|
189553
|
-
} | undefined;
|
|
189554
|
-
} | undefined;
|
|
189555
|
-
}[];
|
|
189556
|
-
fpContextId: string;
|
|
189557
|
-
numberOfFeatures: number;
|
|
189558
|
-
description?: string | undefined;
|
|
189559
|
-
emoji?: string | undefined;
|
|
189560
|
-
tags?: string[] | undefined;
|
|
189561
|
-
createdByUserId?: string | undefined;
|
|
189562
|
-
isArchived?: boolean | undefined;
|
|
189861
|
+
name: string;
|
|
189862
|
+
tokenThemeIds: string[];
|
|
189863
|
+
}[] | undefined;
|
|
189864
|
+
} | undefined;
|
|
189563
189865
|
defaultRole?: "Viewer" | "Builder" | undefined;
|
|
189564
189866
|
numberOfDocuments?: number | undefined;
|
|
189565
189867
|
}>;
|
|
@@ -189595,7 +189897,34 @@ declare const DTOForgeProjectResponse: z.ZodObject<{
|
|
|
189595
189897
|
} | undefined;
|
|
189596
189898
|
} | undefined;
|
|
189597
189899
|
}[];
|
|
189598
|
-
|
|
189900
|
+
projectContextId: string;
|
|
189901
|
+
instruction: string | null;
|
|
189902
|
+
defaultRole: "Viewer" | "Builder";
|
|
189903
|
+
documents: {
|
|
189904
|
+
id: string;
|
|
189905
|
+
createdAt: string;
|
|
189906
|
+
updatedAt: string;
|
|
189907
|
+
title: string;
|
|
189908
|
+
thumbnail?: {
|
|
189909
|
+
id: string;
|
|
189910
|
+
url: string;
|
|
189911
|
+
name?: string | undefined;
|
|
189912
|
+
source?: {
|
|
189913
|
+
type: "UserUpload";
|
|
189914
|
+
userId: string;
|
|
189915
|
+
} | {
|
|
189916
|
+
type: "Figma";
|
|
189917
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
189918
|
+
} | undefined;
|
|
189919
|
+
} | undefined;
|
|
189920
|
+
}[];
|
|
189921
|
+
fpContextId: string;
|
|
189922
|
+
numberOfFeatures: number;
|
|
189923
|
+
description?: string | undefined;
|
|
189924
|
+
emoji?: string | undefined;
|
|
189925
|
+
createdByUserId?: string | undefined;
|
|
189926
|
+
isArchived?: boolean | undefined;
|
|
189927
|
+
context?: {
|
|
189599
189928
|
id: string;
|
|
189600
189929
|
createdAt: Date;
|
|
189601
189930
|
name: string;
|
|
@@ -190559,37 +190888,17 @@ declare const DTOForgeProjectResponse: z.ZodObject<{
|
|
|
190559
190888
|
};
|
|
190560
190889
|
description?: string | undefined;
|
|
190561
190890
|
designSystemId?: string | undefined;
|
|
190891
|
+
brandId?: string | undefined;
|
|
190892
|
+
defaultTokenThemeSetId?: string | undefined;
|
|
190562
190893
|
productContext?: string | undefined;
|
|
190563
190894
|
additionalContext?: string | undefined;
|
|
190564
190895
|
themePreset?: string | undefined;
|
|
190565
|
-
|
|
190566
|
-
projectContextId: string;
|
|
190567
|
-
instruction: string | null;
|
|
190568
|
-
defaultRole: "Viewer" | "Builder";
|
|
190569
|
-
documents: {
|
|
190570
|
-
id: string;
|
|
190571
|
-
createdAt: string;
|
|
190572
|
-
updatedAt: string;
|
|
190573
|
-
title: string;
|
|
190574
|
-
thumbnail?: {
|
|
190896
|
+
tokenThemeSets?: {
|
|
190575
190897
|
id: string;
|
|
190576
|
-
|
|
190577
|
-
|
|
190578
|
-
|
|
190579
|
-
|
|
190580
|
-
userId: string;
|
|
190581
|
-
} | {
|
|
190582
|
-
type: "Figma";
|
|
190583
|
-
renderMode: "Image" | "HTML" | "JSON";
|
|
190584
|
-
} | undefined;
|
|
190585
|
-
} | undefined;
|
|
190586
|
-
}[];
|
|
190587
|
-
fpContextId: string;
|
|
190588
|
-
numberOfFeatures: number;
|
|
190589
|
-
description?: string | undefined;
|
|
190590
|
-
emoji?: string | undefined;
|
|
190591
|
-
createdByUserId?: string | undefined;
|
|
190592
|
-
isArchived?: boolean | undefined;
|
|
190898
|
+
name: string;
|
|
190899
|
+
tokenThemeIds: string[];
|
|
190900
|
+
}[] | undefined;
|
|
190901
|
+
} | undefined;
|
|
190593
190902
|
numberOfDocuments?: number | undefined;
|
|
190594
190903
|
};
|
|
190595
190904
|
}, {
|
|
@@ -190623,7 +190932,34 @@ declare const DTOForgeProjectResponse: z.ZodObject<{
|
|
|
190623
190932
|
} | undefined;
|
|
190624
190933
|
} | undefined;
|
|
190625
190934
|
}[];
|
|
190626
|
-
|
|
190935
|
+
projectContextId: string;
|
|
190936
|
+
instruction: string | null;
|
|
190937
|
+
documents: {
|
|
190938
|
+
id: string;
|
|
190939
|
+
createdAt: string;
|
|
190940
|
+
updatedAt: string;
|
|
190941
|
+
title: string;
|
|
190942
|
+
thumbnail?: {
|
|
190943
|
+
id: string;
|
|
190944
|
+
url: string;
|
|
190945
|
+
name?: string | undefined;
|
|
190946
|
+
source?: {
|
|
190947
|
+
type: "UserUpload";
|
|
190948
|
+
userId: string;
|
|
190949
|
+
} | {
|
|
190950
|
+
type: "Figma";
|
|
190951
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
190952
|
+
} | undefined;
|
|
190953
|
+
} | undefined;
|
|
190954
|
+
}[];
|
|
190955
|
+
fpContextId: string;
|
|
190956
|
+
numberOfFeatures: number;
|
|
190957
|
+
description?: string | undefined;
|
|
190958
|
+
emoji?: string | undefined;
|
|
190959
|
+
tags?: string[] | undefined;
|
|
190960
|
+
createdByUserId?: string | undefined;
|
|
190961
|
+
isArchived?: boolean | undefined;
|
|
190962
|
+
context?: {
|
|
190627
190963
|
id: string;
|
|
190628
190964
|
createdAt: Date;
|
|
190629
190965
|
name: string;
|
|
@@ -191587,37 +191923,17 @@ declare const DTOForgeProjectResponse: z.ZodObject<{
|
|
|
191587
191923
|
};
|
|
191588
191924
|
description?: string | undefined;
|
|
191589
191925
|
designSystemId?: string | undefined;
|
|
191926
|
+
brandId?: string | undefined;
|
|
191927
|
+
defaultTokenThemeSetId?: string | undefined;
|
|
191590
191928
|
productContext?: string | undefined;
|
|
191591
191929
|
additionalContext?: string | undefined;
|
|
191592
191930
|
themePreset?: string | undefined;
|
|
191593
|
-
|
|
191594
|
-
projectContextId: string;
|
|
191595
|
-
instruction: string | null;
|
|
191596
|
-
documents: {
|
|
191597
|
-
id: string;
|
|
191598
|
-
createdAt: string;
|
|
191599
|
-
updatedAt: string;
|
|
191600
|
-
title: string;
|
|
191601
|
-
thumbnail?: {
|
|
191931
|
+
tokenThemeSets?: {
|
|
191602
191932
|
id: string;
|
|
191603
|
-
|
|
191604
|
-
|
|
191605
|
-
|
|
191606
|
-
|
|
191607
|
-
userId: string;
|
|
191608
|
-
} | {
|
|
191609
|
-
type: "Figma";
|
|
191610
|
-
renderMode: "Image" | "HTML" | "JSON";
|
|
191611
|
-
} | undefined;
|
|
191612
|
-
} | undefined;
|
|
191613
|
-
}[];
|
|
191614
|
-
fpContextId: string;
|
|
191615
|
-
numberOfFeatures: number;
|
|
191616
|
-
description?: string | undefined;
|
|
191617
|
-
emoji?: string | undefined;
|
|
191618
|
-
tags?: string[] | undefined;
|
|
191619
|
-
createdByUserId?: string | undefined;
|
|
191620
|
-
isArchived?: boolean | undefined;
|
|
191933
|
+
name: string;
|
|
191934
|
+
tokenThemeIds: string[];
|
|
191935
|
+
}[] | undefined;
|
|
191936
|
+
} | undefined;
|
|
191621
191937
|
defaultRole?: "Viewer" | "Builder" | undefined;
|
|
191622
191938
|
numberOfDocuments?: number | undefined;
|
|
191623
191939
|
};
|
|
@@ -191841,16 +192157,31 @@ declare const DTOForgeProjectListResponse: z.ZodObject<{
|
|
|
191841
192157
|
/** @deprecated use documents.length */
|
|
191842
192158
|
numberOfDocuments: z.ZodOptional<z.ZodNumber>;
|
|
191843
192159
|
/** @deprecated prefer fetching from project contexts endpoint separately */
|
|
191844
|
-
context: z.ZodObject<{
|
|
192160
|
+
context: z.ZodOptional<z.ZodObject<{
|
|
191845
192161
|
id: z.ZodString;
|
|
191846
192162
|
name: z.ZodString;
|
|
191847
192163
|
workspaceId: z.ZodString;
|
|
191848
192164
|
designSystemId: z.ZodOptional<z.ZodString>;
|
|
192165
|
+
brandId: z.ZodOptional<z.ZodString>;
|
|
192166
|
+
defaultTokenThemeSetId: z.ZodOptional<z.ZodString>;
|
|
191849
192167
|
description: z.ZodOptional<z.ZodString>;
|
|
191850
192168
|
productContext: z.ZodOptional<z.ZodString>;
|
|
191851
192169
|
additionalContext: z.ZodOptional<z.ZodString>;
|
|
191852
192170
|
isArchived: z.ZodBoolean;
|
|
191853
192171
|
themePreset: z.ZodOptional<z.ZodString>;
|
|
192172
|
+
tokenThemeSets: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
192173
|
+
id: z.ZodString;
|
|
192174
|
+
name: z.ZodString;
|
|
192175
|
+
tokenThemeIds: z.ZodArray<z.ZodString, "many">;
|
|
192176
|
+
}, "strip", z.ZodTypeAny, {
|
|
192177
|
+
id: string;
|
|
192178
|
+
name: string;
|
|
192179
|
+
tokenThemeIds: string[];
|
|
192180
|
+
}, {
|
|
192181
|
+
id: string;
|
|
192182
|
+
name: string;
|
|
192183
|
+
tokenThemeIds: string[];
|
|
192184
|
+
}>, "many">>;
|
|
191854
192185
|
componentSet: z.ZodObject<{
|
|
191855
192186
|
type: z.ZodEnum<["Shadcn"]>;
|
|
191856
192187
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -199418,9 +199749,16 @@ declare const DTOForgeProjectListResponse: z.ZodObject<{
|
|
|
199418
199749
|
};
|
|
199419
199750
|
description?: string | undefined;
|
|
199420
199751
|
designSystemId?: string | undefined;
|
|
199752
|
+
brandId?: string | undefined;
|
|
199753
|
+
defaultTokenThemeSetId?: string | undefined;
|
|
199421
199754
|
productContext?: string | undefined;
|
|
199422
199755
|
additionalContext?: string | undefined;
|
|
199423
199756
|
themePreset?: string | undefined;
|
|
199757
|
+
tokenThemeSets?: {
|
|
199758
|
+
id: string;
|
|
199759
|
+
name: string;
|
|
199760
|
+
tokenThemeIds: string[];
|
|
199761
|
+
}[] | undefined;
|
|
199424
199762
|
}, {
|
|
199425
199763
|
id: string;
|
|
199426
199764
|
createdAt: Date;
|
|
@@ -200385,10 +200723,17 @@ declare const DTOForgeProjectListResponse: z.ZodObject<{
|
|
|
200385
200723
|
};
|
|
200386
200724
|
description?: string | undefined;
|
|
200387
200725
|
designSystemId?: string | undefined;
|
|
200726
|
+
brandId?: string | undefined;
|
|
200727
|
+
defaultTokenThemeSetId?: string | undefined;
|
|
200388
200728
|
productContext?: string | undefined;
|
|
200389
200729
|
additionalContext?: string | undefined;
|
|
200390
200730
|
themePreset?: string | undefined;
|
|
200391
|
-
|
|
200731
|
+
tokenThemeSets?: {
|
|
200732
|
+
id: string;
|
|
200733
|
+
name: string;
|
|
200734
|
+
tokenThemeIds: string[];
|
|
200735
|
+
}[] | undefined;
|
|
200736
|
+
}>>;
|
|
200392
200737
|
} & {
|
|
200393
200738
|
effectiveRole: z.ZodEnum<["Viewer", "Builder", "Admin"]>;
|
|
200394
200739
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -200422,7 +200767,34 @@ declare const DTOForgeProjectListResponse: z.ZodObject<{
|
|
|
200422
200767
|
} | undefined;
|
|
200423
200768
|
} | undefined;
|
|
200424
200769
|
}[];
|
|
200425
|
-
|
|
200770
|
+
projectContextId: string;
|
|
200771
|
+
instruction: string | null;
|
|
200772
|
+
defaultRole: "Viewer" | "Builder";
|
|
200773
|
+
documents: {
|
|
200774
|
+
id: string;
|
|
200775
|
+
createdAt: string;
|
|
200776
|
+
updatedAt: string;
|
|
200777
|
+
title: string;
|
|
200778
|
+
thumbnail?: {
|
|
200779
|
+
id: string;
|
|
200780
|
+
url: string;
|
|
200781
|
+
name?: string | undefined;
|
|
200782
|
+
source?: {
|
|
200783
|
+
type: "UserUpload";
|
|
200784
|
+
userId: string;
|
|
200785
|
+
} | {
|
|
200786
|
+
type: "Figma";
|
|
200787
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
200788
|
+
} | undefined;
|
|
200789
|
+
} | undefined;
|
|
200790
|
+
}[];
|
|
200791
|
+
fpContextId: string;
|
|
200792
|
+
numberOfFeatures: number;
|
|
200793
|
+
description?: string | undefined;
|
|
200794
|
+
emoji?: string | undefined;
|
|
200795
|
+
createdByUserId?: string | undefined;
|
|
200796
|
+
isArchived?: boolean | undefined;
|
|
200797
|
+
context?: {
|
|
200426
200798
|
id: string;
|
|
200427
200799
|
createdAt: Date;
|
|
200428
200800
|
name: string;
|
|
@@ -201386,18 +201758,35 @@ declare const DTOForgeProjectListResponse: z.ZodObject<{
|
|
|
201386
201758
|
};
|
|
201387
201759
|
description?: string | undefined;
|
|
201388
201760
|
designSystemId?: string | undefined;
|
|
201761
|
+
brandId?: string | undefined;
|
|
201762
|
+
defaultTokenThemeSetId?: string | undefined;
|
|
201389
201763
|
productContext?: string | undefined;
|
|
201390
201764
|
additionalContext?: string | undefined;
|
|
201391
201765
|
themePreset?: string | undefined;
|
|
201766
|
+
tokenThemeSets?: {
|
|
201767
|
+
id: string;
|
|
201768
|
+
name: string;
|
|
201769
|
+
tokenThemeIds: string[];
|
|
201770
|
+
}[] | undefined;
|
|
201771
|
+
} | undefined;
|
|
201772
|
+
numberOfDocuments?: number | undefined;
|
|
201773
|
+
}, {
|
|
201774
|
+
id: string;
|
|
201775
|
+
createdAt: Date;
|
|
201776
|
+
name: string;
|
|
201777
|
+
meta: {
|
|
201778
|
+
name: string;
|
|
201779
|
+
description?: string | undefined;
|
|
201392
201780
|
};
|
|
201393
|
-
|
|
201394
|
-
|
|
201395
|
-
|
|
201396
|
-
|
|
201781
|
+
updatedAt: Date;
|
|
201782
|
+
workspaceId: string;
|
|
201783
|
+
accessMode: "Open" | "InviteOnly" | "Unlisted";
|
|
201784
|
+
effectiveRole: "Admin" | "Viewer" | "Builder";
|
|
201785
|
+
features: {
|
|
201397
201786
|
id: string;
|
|
201398
201787
|
createdAt: string;
|
|
201788
|
+
name: string;
|
|
201399
201789
|
updatedAt: string;
|
|
201400
|
-
title: string;
|
|
201401
201790
|
thumbnail?: {
|
|
201402
201791
|
id: string;
|
|
201403
201792
|
url: string;
|
|
@@ -201411,30 +201800,13 @@ declare const DTOForgeProjectListResponse: z.ZodObject<{
|
|
|
201411
201800
|
} | undefined;
|
|
201412
201801
|
} | undefined;
|
|
201413
201802
|
}[];
|
|
201414
|
-
|
|
201415
|
-
|
|
201416
|
-
|
|
201417
|
-
emoji?: string | undefined;
|
|
201418
|
-
createdByUserId?: string | undefined;
|
|
201419
|
-
isArchived?: boolean | undefined;
|
|
201420
|
-
numberOfDocuments?: number | undefined;
|
|
201421
|
-
}, {
|
|
201422
|
-
id: string;
|
|
201423
|
-
createdAt: Date;
|
|
201424
|
-
name: string;
|
|
201425
|
-
meta: {
|
|
201426
|
-
name: string;
|
|
201427
|
-
description?: string | undefined;
|
|
201428
|
-
};
|
|
201429
|
-
updatedAt: Date;
|
|
201430
|
-
workspaceId: string;
|
|
201431
|
-
accessMode: "Open" | "InviteOnly" | "Unlisted";
|
|
201432
|
-
effectiveRole: "Admin" | "Viewer" | "Builder";
|
|
201433
|
-
features: {
|
|
201803
|
+
projectContextId: string;
|
|
201804
|
+
instruction: string | null;
|
|
201805
|
+
documents: {
|
|
201434
201806
|
id: string;
|
|
201435
201807
|
createdAt: string;
|
|
201436
|
-
name: string;
|
|
201437
201808
|
updatedAt: string;
|
|
201809
|
+
title: string;
|
|
201438
201810
|
thumbnail?: {
|
|
201439
201811
|
id: string;
|
|
201440
201812
|
url: string;
|
|
@@ -201448,7 +201820,14 @@ declare const DTOForgeProjectListResponse: z.ZodObject<{
|
|
|
201448
201820
|
} | undefined;
|
|
201449
201821
|
} | undefined;
|
|
201450
201822
|
}[];
|
|
201451
|
-
|
|
201823
|
+
fpContextId: string;
|
|
201824
|
+
numberOfFeatures: number;
|
|
201825
|
+
description?: string | undefined;
|
|
201826
|
+
emoji?: string | undefined;
|
|
201827
|
+
tags?: string[] | undefined;
|
|
201828
|
+
createdByUserId?: string | undefined;
|
|
201829
|
+
isArchived?: boolean | undefined;
|
|
201830
|
+
context?: {
|
|
201452
201831
|
id: string;
|
|
201453
201832
|
createdAt: Date;
|
|
201454
201833
|
name: string;
|
|
@@ -202412,37 +202791,17 @@ declare const DTOForgeProjectListResponse: z.ZodObject<{
|
|
|
202412
202791
|
};
|
|
202413
202792
|
description?: string | undefined;
|
|
202414
202793
|
designSystemId?: string | undefined;
|
|
202794
|
+
brandId?: string | undefined;
|
|
202795
|
+
defaultTokenThemeSetId?: string | undefined;
|
|
202415
202796
|
productContext?: string | undefined;
|
|
202416
202797
|
additionalContext?: string | undefined;
|
|
202417
202798
|
themePreset?: string | undefined;
|
|
202418
|
-
|
|
202419
|
-
projectContextId: string;
|
|
202420
|
-
instruction: string | null;
|
|
202421
|
-
documents: {
|
|
202422
|
-
id: string;
|
|
202423
|
-
createdAt: string;
|
|
202424
|
-
updatedAt: string;
|
|
202425
|
-
title: string;
|
|
202426
|
-
thumbnail?: {
|
|
202799
|
+
tokenThemeSets?: {
|
|
202427
202800
|
id: string;
|
|
202428
|
-
|
|
202429
|
-
|
|
202430
|
-
|
|
202431
|
-
|
|
202432
|
-
userId: string;
|
|
202433
|
-
} | {
|
|
202434
|
-
type: "Figma";
|
|
202435
|
-
renderMode: "Image" | "HTML" | "JSON";
|
|
202436
|
-
} | undefined;
|
|
202437
|
-
} | undefined;
|
|
202438
|
-
}[];
|
|
202439
|
-
fpContextId: string;
|
|
202440
|
-
numberOfFeatures: number;
|
|
202441
|
-
description?: string | undefined;
|
|
202442
|
-
emoji?: string | undefined;
|
|
202443
|
-
tags?: string[] | undefined;
|
|
202444
|
-
createdByUserId?: string | undefined;
|
|
202445
|
-
isArchived?: boolean | undefined;
|
|
202801
|
+
name: string;
|
|
202802
|
+
tokenThemeIds: string[];
|
|
202803
|
+
}[] | undefined;
|
|
202804
|
+
} | undefined;
|
|
202446
202805
|
defaultRole?: "Viewer" | "Builder" | undefined;
|
|
202447
202806
|
numberOfDocuments?: number | undefined;
|
|
202448
202807
|
}>, "many">;
|
|
@@ -202478,7 +202837,34 @@ declare const DTOForgeProjectListResponse: z.ZodObject<{
|
|
|
202478
202837
|
} | undefined;
|
|
202479
202838
|
} | undefined;
|
|
202480
202839
|
}[];
|
|
202481
|
-
|
|
202840
|
+
projectContextId: string;
|
|
202841
|
+
instruction: string | null;
|
|
202842
|
+
defaultRole: "Viewer" | "Builder";
|
|
202843
|
+
documents: {
|
|
202844
|
+
id: string;
|
|
202845
|
+
createdAt: string;
|
|
202846
|
+
updatedAt: string;
|
|
202847
|
+
title: string;
|
|
202848
|
+
thumbnail?: {
|
|
202849
|
+
id: string;
|
|
202850
|
+
url: string;
|
|
202851
|
+
name?: string | undefined;
|
|
202852
|
+
source?: {
|
|
202853
|
+
type: "UserUpload";
|
|
202854
|
+
userId: string;
|
|
202855
|
+
} | {
|
|
202856
|
+
type: "Figma";
|
|
202857
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
202858
|
+
} | undefined;
|
|
202859
|
+
} | undefined;
|
|
202860
|
+
}[];
|
|
202861
|
+
fpContextId: string;
|
|
202862
|
+
numberOfFeatures: number;
|
|
202863
|
+
description?: string | undefined;
|
|
202864
|
+
emoji?: string | undefined;
|
|
202865
|
+
createdByUserId?: string | undefined;
|
|
202866
|
+
isArchived?: boolean | undefined;
|
|
202867
|
+
context?: {
|
|
202482
202868
|
id: string;
|
|
202483
202869
|
createdAt: Date;
|
|
202484
202870
|
name: string;
|
|
@@ -203442,37 +203828,17 @@ declare const DTOForgeProjectListResponse: z.ZodObject<{
|
|
|
203442
203828
|
};
|
|
203443
203829
|
description?: string | undefined;
|
|
203444
203830
|
designSystemId?: string | undefined;
|
|
203831
|
+
brandId?: string | undefined;
|
|
203832
|
+
defaultTokenThemeSetId?: string | undefined;
|
|
203445
203833
|
productContext?: string | undefined;
|
|
203446
203834
|
additionalContext?: string | undefined;
|
|
203447
203835
|
themePreset?: string | undefined;
|
|
203448
|
-
|
|
203449
|
-
projectContextId: string;
|
|
203450
|
-
instruction: string | null;
|
|
203451
|
-
defaultRole: "Viewer" | "Builder";
|
|
203452
|
-
documents: {
|
|
203453
|
-
id: string;
|
|
203454
|
-
createdAt: string;
|
|
203455
|
-
updatedAt: string;
|
|
203456
|
-
title: string;
|
|
203457
|
-
thumbnail?: {
|
|
203836
|
+
tokenThemeSets?: {
|
|
203458
203837
|
id: string;
|
|
203459
|
-
|
|
203460
|
-
|
|
203461
|
-
|
|
203462
|
-
|
|
203463
|
-
userId: string;
|
|
203464
|
-
} | {
|
|
203465
|
-
type: "Figma";
|
|
203466
|
-
renderMode: "Image" | "HTML" | "JSON";
|
|
203467
|
-
} | undefined;
|
|
203468
|
-
} | undefined;
|
|
203469
|
-
}[];
|
|
203470
|
-
fpContextId: string;
|
|
203471
|
-
numberOfFeatures: number;
|
|
203472
|
-
description?: string | undefined;
|
|
203473
|
-
emoji?: string | undefined;
|
|
203474
|
-
createdByUserId?: string | undefined;
|
|
203475
|
-
isArchived?: boolean | undefined;
|
|
203838
|
+
name: string;
|
|
203839
|
+
tokenThemeIds: string[];
|
|
203840
|
+
}[] | undefined;
|
|
203841
|
+
} | undefined;
|
|
203476
203842
|
numberOfDocuments?: number | undefined;
|
|
203477
203843
|
}[];
|
|
203478
203844
|
}, {
|
|
@@ -203506,7 +203872,34 @@ declare const DTOForgeProjectListResponse: z.ZodObject<{
|
|
|
203506
203872
|
} | undefined;
|
|
203507
203873
|
} | undefined;
|
|
203508
203874
|
}[];
|
|
203509
|
-
|
|
203875
|
+
projectContextId: string;
|
|
203876
|
+
instruction: string | null;
|
|
203877
|
+
documents: {
|
|
203878
|
+
id: string;
|
|
203879
|
+
createdAt: string;
|
|
203880
|
+
updatedAt: string;
|
|
203881
|
+
title: string;
|
|
203882
|
+
thumbnail?: {
|
|
203883
|
+
id: string;
|
|
203884
|
+
url: string;
|
|
203885
|
+
name?: string | undefined;
|
|
203886
|
+
source?: {
|
|
203887
|
+
type: "UserUpload";
|
|
203888
|
+
userId: string;
|
|
203889
|
+
} | {
|
|
203890
|
+
type: "Figma";
|
|
203891
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
203892
|
+
} | undefined;
|
|
203893
|
+
} | undefined;
|
|
203894
|
+
}[];
|
|
203895
|
+
fpContextId: string;
|
|
203896
|
+
numberOfFeatures: number;
|
|
203897
|
+
description?: string | undefined;
|
|
203898
|
+
emoji?: string | undefined;
|
|
203899
|
+
tags?: string[] | undefined;
|
|
203900
|
+
createdByUserId?: string | undefined;
|
|
203901
|
+
isArchived?: boolean | undefined;
|
|
203902
|
+
context?: {
|
|
203510
203903
|
id: string;
|
|
203511
203904
|
createdAt: Date;
|
|
203512
203905
|
name: string;
|
|
@@ -204470,37 +204863,17 @@ declare const DTOForgeProjectListResponse: z.ZodObject<{
|
|
|
204470
204863
|
};
|
|
204471
204864
|
description?: string | undefined;
|
|
204472
204865
|
designSystemId?: string | undefined;
|
|
204866
|
+
brandId?: string | undefined;
|
|
204867
|
+
defaultTokenThemeSetId?: string | undefined;
|
|
204473
204868
|
productContext?: string | undefined;
|
|
204474
204869
|
additionalContext?: string | undefined;
|
|
204475
204870
|
themePreset?: string | undefined;
|
|
204476
|
-
|
|
204477
|
-
projectContextId: string;
|
|
204478
|
-
instruction: string | null;
|
|
204479
|
-
documents: {
|
|
204480
|
-
id: string;
|
|
204481
|
-
createdAt: string;
|
|
204482
|
-
updatedAt: string;
|
|
204483
|
-
title: string;
|
|
204484
|
-
thumbnail?: {
|
|
204871
|
+
tokenThemeSets?: {
|
|
204485
204872
|
id: string;
|
|
204486
|
-
|
|
204487
|
-
|
|
204488
|
-
|
|
204489
|
-
|
|
204490
|
-
userId: string;
|
|
204491
|
-
} | {
|
|
204492
|
-
type: "Figma";
|
|
204493
|
-
renderMode: "Image" | "HTML" | "JSON";
|
|
204494
|
-
} | undefined;
|
|
204495
|
-
} | undefined;
|
|
204496
|
-
}[];
|
|
204497
|
-
fpContextId: string;
|
|
204498
|
-
numberOfFeatures: number;
|
|
204499
|
-
description?: string | undefined;
|
|
204500
|
-
emoji?: string | undefined;
|
|
204501
|
-
tags?: string[] | undefined;
|
|
204502
|
-
createdByUserId?: string | undefined;
|
|
204503
|
-
isArchived?: boolean | undefined;
|
|
204873
|
+
name: string;
|
|
204874
|
+
tokenThemeIds: string[];
|
|
204875
|
+
}[] | undefined;
|
|
204876
|
+
} | undefined;
|
|
204504
204877
|
defaultRole?: "Viewer" | "Builder" | undefined;
|
|
204505
204878
|
numberOfDocuments?: number | undefined;
|
|
204506
204879
|
}[];
|
|
@@ -250275,7 +250648,34 @@ declare class ForgeProjectsEndpoint {
|
|
|
250275
250648
|
} | undefined;
|
|
250276
250649
|
} | undefined;
|
|
250277
250650
|
}[];
|
|
250278
|
-
|
|
250651
|
+
projectContextId: string;
|
|
250652
|
+
instruction: string | null;
|
|
250653
|
+
defaultRole: "Viewer" | "Builder";
|
|
250654
|
+
documents: {
|
|
250655
|
+
id: string;
|
|
250656
|
+
createdAt: string;
|
|
250657
|
+
updatedAt: string;
|
|
250658
|
+
title: string;
|
|
250659
|
+
thumbnail?: {
|
|
250660
|
+
id: string;
|
|
250661
|
+
url: string;
|
|
250662
|
+
name?: string | undefined;
|
|
250663
|
+
source?: {
|
|
250664
|
+
type: "UserUpload";
|
|
250665
|
+
userId: string;
|
|
250666
|
+
} | {
|
|
250667
|
+
type: "Figma";
|
|
250668
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
250669
|
+
} | undefined;
|
|
250670
|
+
} | undefined;
|
|
250671
|
+
}[];
|
|
250672
|
+
fpContextId: string;
|
|
250673
|
+
numberOfFeatures: number;
|
|
250674
|
+
description?: string | undefined;
|
|
250675
|
+
emoji?: string | undefined;
|
|
250676
|
+
createdByUserId?: string | undefined;
|
|
250677
|
+
isArchived?: boolean | undefined;
|
|
250678
|
+
context?: {
|
|
250279
250679
|
id: string;
|
|
250280
250680
|
createdAt: Date;
|
|
250281
250681
|
name: string;
|
|
@@ -251239,37 +251639,17 @@ declare class ForgeProjectsEndpoint {
|
|
|
251239
251639
|
};
|
|
251240
251640
|
description?: string | undefined;
|
|
251241
251641
|
designSystemId?: string | undefined;
|
|
251642
|
+
brandId?: string | undefined;
|
|
251643
|
+
defaultTokenThemeSetId?: string | undefined;
|
|
251242
251644
|
productContext?: string | undefined;
|
|
251243
251645
|
additionalContext?: string | undefined;
|
|
251244
251646
|
themePreset?: string | undefined;
|
|
251245
|
-
|
|
251246
|
-
projectContextId: string;
|
|
251247
|
-
instruction: string | null;
|
|
251248
|
-
defaultRole: "Viewer" | "Builder";
|
|
251249
|
-
documents: {
|
|
251250
|
-
id: string;
|
|
251251
|
-
createdAt: string;
|
|
251252
|
-
updatedAt: string;
|
|
251253
|
-
title: string;
|
|
251254
|
-
thumbnail?: {
|
|
251647
|
+
tokenThemeSets?: {
|
|
251255
251648
|
id: string;
|
|
251256
|
-
|
|
251257
|
-
|
|
251258
|
-
|
|
251259
|
-
|
|
251260
|
-
userId: string;
|
|
251261
|
-
} | {
|
|
251262
|
-
type: "Figma";
|
|
251263
|
-
renderMode: "Image" | "HTML" | "JSON";
|
|
251264
|
-
} | undefined;
|
|
251265
|
-
} | undefined;
|
|
251266
|
-
}[];
|
|
251267
|
-
fpContextId: string;
|
|
251268
|
-
numberOfFeatures: number;
|
|
251269
|
-
description?: string | undefined;
|
|
251270
|
-
emoji?: string | undefined;
|
|
251271
|
-
createdByUserId?: string | undefined;
|
|
251272
|
-
isArchived?: boolean | undefined;
|
|
251649
|
+
name: string;
|
|
251650
|
+
tokenThemeIds: string[];
|
|
251651
|
+
}[] | undefined;
|
|
251652
|
+
} | undefined;
|
|
251273
251653
|
numberOfDocuments?: number | undefined;
|
|
251274
251654
|
}[];
|
|
251275
251655
|
}>;
|
|
@@ -251305,7 +251685,34 @@ declare class ForgeProjectsEndpoint {
|
|
|
251305
251685
|
} | undefined;
|
|
251306
251686
|
} | undefined;
|
|
251307
251687
|
}[];
|
|
251308
|
-
|
|
251688
|
+
projectContextId: string;
|
|
251689
|
+
instruction: string | null;
|
|
251690
|
+
defaultRole: "Viewer" | "Builder";
|
|
251691
|
+
documents: {
|
|
251692
|
+
id: string;
|
|
251693
|
+
createdAt: string;
|
|
251694
|
+
updatedAt: string;
|
|
251695
|
+
title: string;
|
|
251696
|
+
thumbnail?: {
|
|
251697
|
+
id: string;
|
|
251698
|
+
url: string;
|
|
251699
|
+
name?: string | undefined;
|
|
251700
|
+
source?: {
|
|
251701
|
+
type: "UserUpload";
|
|
251702
|
+
userId: string;
|
|
251703
|
+
} | {
|
|
251704
|
+
type: "Figma";
|
|
251705
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
251706
|
+
} | undefined;
|
|
251707
|
+
} | undefined;
|
|
251708
|
+
}[];
|
|
251709
|
+
fpContextId: string;
|
|
251710
|
+
numberOfFeatures: number;
|
|
251711
|
+
description?: string | undefined;
|
|
251712
|
+
emoji?: string | undefined;
|
|
251713
|
+
createdByUserId?: string | undefined;
|
|
251714
|
+
isArchived?: boolean | undefined;
|
|
251715
|
+
context?: {
|
|
251309
251716
|
id: string;
|
|
251310
251717
|
createdAt: Date;
|
|
251311
251718
|
name: string;
|
|
@@ -252269,37 +252676,17 @@ declare class ForgeProjectsEndpoint {
|
|
|
252269
252676
|
};
|
|
252270
252677
|
description?: string | undefined;
|
|
252271
252678
|
designSystemId?: string | undefined;
|
|
252679
|
+
brandId?: string | undefined;
|
|
252680
|
+
defaultTokenThemeSetId?: string | undefined;
|
|
252272
252681
|
productContext?: string | undefined;
|
|
252273
252682
|
additionalContext?: string | undefined;
|
|
252274
252683
|
themePreset?: string | undefined;
|
|
252275
|
-
|
|
252276
|
-
projectContextId: string;
|
|
252277
|
-
instruction: string | null;
|
|
252278
|
-
defaultRole: "Viewer" | "Builder";
|
|
252279
|
-
documents: {
|
|
252280
|
-
id: string;
|
|
252281
|
-
createdAt: string;
|
|
252282
|
-
updatedAt: string;
|
|
252283
|
-
title: string;
|
|
252284
|
-
thumbnail?: {
|
|
252684
|
+
tokenThemeSets?: {
|
|
252285
252685
|
id: string;
|
|
252286
|
-
|
|
252287
|
-
|
|
252288
|
-
|
|
252289
|
-
|
|
252290
|
-
userId: string;
|
|
252291
|
-
} | {
|
|
252292
|
-
type: "Figma";
|
|
252293
|
-
renderMode: "Image" | "HTML" | "JSON";
|
|
252294
|
-
} | undefined;
|
|
252295
|
-
} | undefined;
|
|
252296
|
-
}[];
|
|
252297
|
-
fpContextId: string;
|
|
252298
|
-
numberOfFeatures: number;
|
|
252299
|
-
description?: string | undefined;
|
|
252300
|
-
emoji?: string | undefined;
|
|
252301
|
-
createdByUserId?: string | undefined;
|
|
252302
|
-
isArchived?: boolean | undefined;
|
|
252686
|
+
name: string;
|
|
252687
|
+
tokenThemeIds: string[];
|
|
252688
|
+
}[] | undefined;
|
|
252689
|
+
} | undefined;
|
|
252303
252690
|
numberOfDocuments?: number | undefined;
|
|
252304
252691
|
};
|
|
252305
252692
|
}>;
|
|
@@ -252335,7 +252722,34 @@ declare class ForgeProjectsEndpoint {
|
|
|
252335
252722
|
} | undefined;
|
|
252336
252723
|
} | undefined;
|
|
252337
252724
|
}[];
|
|
252338
|
-
|
|
252725
|
+
projectContextId: string;
|
|
252726
|
+
instruction: string | null;
|
|
252727
|
+
defaultRole: "Viewer" | "Builder";
|
|
252728
|
+
documents: {
|
|
252729
|
+
id: string;
|
|
252730
|
+
createdAt: string;
|
|
252731
|
+
updatedAt: string;
|
|
252732
|
+
title: string;
|
|
252733
|
+
thumbnail?: {
|
|
252734
|
+
id: string;
|
|
252735
|
+
url: string;
|
|
252736
|
+
name?: string | undefined;
|
|
252737
|
+
source?: {
|
|
252738
|
+
type: "UserUpload";
|
|
252739
|
+
userId: string;
|
|
252740
|
+
} | {
|
|
252741
|
+
type: "Figma";
|
|
252742
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
252743
|
+
} | undefined;
|
|
252744
|
+
} | undefined;
|
|
252745
|
+
}[];
|
|
252746
|
+
fpContextId: string;
|
|
252747
|
+
numberOfFeatures: number;
|
|
252748
|
+
description?: string | undefined;
|
|
252749
|
+
emoji?: string | undefined;
|
|
252750
|
+
createdByUserId?: string | undefined;
|
|
252751
|
+
isArchived?: boolean | undefined;
|
|
252752
|
+
context?: {
|
|
252339
252753
|
id: string;
|
|
252340
252754
|
createdAt: Date;
|
|
252341
252755
|
name: string;
|
|
@@ -253299,37 +253713,17 @@ declare class ForgeProjectsEndpoint {
|
|
|
253299
253713
|
};
|
|
253300
253714
|
description?: string | undefined;
|
|
253301
253715
|
designSystemId?: string | undefined;
|
|
253716
|
+
brandId?: string | undefined;
|
|
253717
|
+
defaultTokenThemeSetId?: string | undefined;
|
|
253302
253718
|
productContext?: string | undefined;
|
|
253303
253719
|
additionalContext?: string | undefined;
|
|
253304
253720
|
themePreset?: string | undefined;
|
|
253305
|
-
|
|
253306
|
-
projectContextId: string;
|
|
253307
|
-
instruction: string | null;
|
|
253308
|
-
defaultRole: "Viewer" | "Builder";
|
|
253309
|
-
documents: {
|
|
253310
|
-
id: string;
|
|
253311
|
-
createdAt: string;
|
|
253312
|
-
updatedAt: string;
|
|
253313
|
-
title: string;
|
|
253314
|
-
thumbnail?: {
|
|
253721
|
+
tokenThemeSets?: {
|
|
253315
253722
|
id: string;
|
|
253316
|
-
|
|
253317
|
-
|
|
253318
|
-
|
|
253319
|
-
|
|
253320
|
-
userId: string;
|
|
253321
|
-
} | {
|
|
253322
|
-
type: "Figma";
|
|
253323
|
-
renderMode: "Image" | "HTML" | "JSON";
|
|
253324
|
-
} | undefined;
|
|
253325
|
-
} | undefined;
|
|
253326
|
-
}[];
|
|
253327
|
-
fpContextId: string;
|
|
253328
|
-
numberOfFeatures: number;
|
|
253329
|
-
description?: string | undefined;
|
|
253330
|
-
emoji?: string | undefined;
|
|
253331
|
-
createdByUserId?: string | undefined;
|
|
253332
|
-
isArchived?: boolean | undefined;
|
|
253723
|
+
name: string;
|
|
253724
|
+
tokenThemeIds: string[];
|
|
253725
|
+
}[] | undefined;
|
|
253726
|
+
} | undefined;
|
|
253333
253727
|
numberOfDocuments?: number | undefined;
|
|
253334
253728
|
};
|
|
253335
253729
|
}>;
|
|
@@ -253365,7 +253759,34 @@ declare class ForgeProjectsEndpoint {
|
|
|
253365
253759
|
} | undefined;
|
|
253366
253760
|
} | undefined;
|
|
253367
253761
|
}[];
|
|
253368
|
-
|
|
253762
|
+
projectContextId: string;
|
|
253763
|
+
instruction: string | null;
|
|
253764
|
+
defaultRole: "Viewer" | "Builder";
|
|
253765
|
+
documents: {
|
|
253766
|
+
id: string;
|
|
253767
|
+
createdAt: string;
|
|
253768
|
+
updatedAt: string;
|
|
253769
|
+
title: string;
|
|
253770
|
+
thumbnail?: {
|
|
253771
|
+
id: string;
|
|
253772
|
+
url: string;
|
|
253773
|
+
name?: string | undefined;
|
|
253774
|
+
source?: {
|
|
253775
|
+
type: "UserUpload";
|
|
253776
|
+
userId: string;
|
|
253777
|
+
} | {
|
|
253778
|
+
type: "Figma";
|
|
253779
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
253780
|
+
} | undefined;
|
|
253781
|
+
} | undefined;
|
|
253782
|
+
}[];
|
|
253783
|
+
fpContextId: string;
|
|
253784
|
+
numberOfFeatures: number;
|
|
253785
|
+
description?: string | undefined;
|
|
253786
|
+
emoji?: string | undefined;
|
|
253787
|
+
createdByUserId?: string | undefined;
|
|
253788
|
+
isArchived?: boolean | undefined;
|
|
253789
|
+
context?: {
|
|
253369
253790
|
id: string;
|
|
253370
253791
|
createdAt: Date;
|
|
253371
253792
|
name: string;
|
|
@@ -254329,37 +254750,17 @@ declare class ForgeProjectsEndpoint {
|
|
|
254329
254750
|
};
|
|
254330
254751
|
description?: string | undefined;
|
|
254331
254752
|
designSystemId?: string | undefined;
|
|
254753
|
+
brandId?: string | undefined;
|
|
254754
|
+
defaultTokenThemeSetId?: string | undefined;
|
|
254332
254755
|
productContext?: string | undefined;
|
|
254333
254756
|
additionalContext?: string | undefined;
|
|
254334
254757
|
themePreset?: string | undefined;
|
|
254335
|
-
|
|
254336
|
-
projectContextId: string;
|
|
254337
|
-
instruction: string | null;
|
|
254338
|
-
defaultRole: "Viewer" | "Builder";
|
|
254339
|
-
documents: {
|
|
254340
|
-
id: string;
|
|
254341
|
-
createdAt: string;
|
|
254342
|
-
updatedAt: string;
|
|
254343
|
-
title: string;
|
|
254344
|
-
thumbnail?: {
|
|
254758
|
+
tokenThemeSets?: {
|
|
254345
254759
|
id: string;
|
|
254346
|
-
|
|
254347
|
-
|
|
254348
|
-
|
|
254349
|
-
|
|
254350
|
-
userId: string;
|
|
254351
|
-
} | {
|
|
254352
|
-
type: "Figma";
|
|
254353
|
-
renderMode: "Image" | "HTML" | "JSON";
|
|
254354
|
-
} | undefined;
|
|
254355
|
-
} | undefined;
|
|
254356
|
-
}[];
|
|
254357
|
-
fpContextId: string;
|
|
254358
|
-
numberOfFeatures: number;
|
|
254359
|
-
description?: string | undefined;
|
|
254360
|
-
emoji?: string | undefined;
|
|
254361
|
-
createdByUserId?: string | undefined;
|
|
254362
|
-
isArchived?: boolean | undefined;
|
|
254760
|
+
name: string;
|
|
254761
|
+
tokenThemeIds: string[];
|
|
254762
|
+
}[] | undefined;
|
|
254763
|
+
} | undefined;
|
|
254363
254764
|
numberOfDocuments?: number | undefined;
|
|
254364
254765
|
};
|
|
254365
254766
|
}>;
|
|
@@ -254395,7 +254796,34 @@ declare class ForgeProjectsEndpoint {
|
|
|
254395
254796
|
} | undefined;
|
|
254396
254797
|
} | undefined;
|
|
254397
254798
|
}[];
|
|
254398
|
-
|
|
254799
|
+
projectContextId: string;
|
|
254800
|
+
instruction: string | null;
|
|
254801
|
+
defaultRole: "Viewer" | "Builder";
|
|
254802
|
+
documents: {
|
|
254803
|
+
id: string;
|
|
254804
|
+
createdAt: string;
|
|
254805
|
+
updatedAt: string;
|
|
254806
|
+
title: string;
|
|
254807
|
+
thumbnail?: {
|
|
254808
|
+
id: string;
|
|
254809
|
+
url: string;
|
|
254810
|
+
name?: string | undefined;
|
|
254811
|
+
source?: {
|
|
254812
|
+
type: "UserUpload";
|
|
254813
|
+
userId: string;
|
|
254814
|
+
} | {
|
|
254815
|
+
type: "Figma";
|
|
254816
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
254817
|
+
} | undefined;
|
|
254818
|
+
} | undefined;
|
|
254819
|
+
}[];
|
|
254820
|
+
fpContextId: string;
|
|
254821
|
+
numberOfFeatures: number;
|
|
254822
|
+
description?: string | undefined;
|
|
254823
|
+
emoji?: string | undefined;
|
|
254824
|
+
createdByUserId?: string | undefined;
|
|
254825
|
+
isArchived?: boolean | undefined;
|
|
254826
|
+
context?: {
|
|
254399
254827
|
id: string;
|
|
254400
254828
|
createdAt: Date;
|
|
254401
254829
|
name: string;
|
|
@@ -255359,37 +255787,17 @@ declare class ForgeProjectsEndpoint {
|
|
|
255359
255787
|
};
|
|
255360
255788
|
description?: string | undefined;
|
|
255361
255789
|
designSystemId?: string | undefined;
|
|
255790
|
+
brandId?: string | undefined;
|
|
255791
|
+
defaultTokenThemeSetId?: string | undefined;
|
|
255362
255792
|
productContext?: string | undefined;
|
|
255363
255793
|
additionalContext?: string | undefined;
|
|
255364
255794
|
themePreset?: string | undefined;
|
|
255365
|
-
|
|
255366
|
-
projectContextId: string;
|
|
255367
|
-
instruction: string | null;
|
|
255368
|
-
defaultRole: "Viewer" | "Builder";
|
|
255369
|
-
documents: {
|
|
255370
|
-
id: string;
|
|
255371
|
-
createdAt: string;
|
|
255372
|
-
updatedAt: string;
|
|
255373
|
-
title: string;
|
|
255374
|
-
thumbnail?: {
|
|
255795
|
+
tokenThemeSets?: {
|
|
255375
255796
|
id: string;
|
|
255376
|
-
|
|
255377
|
-
|
|
255378
|
-
|
|
255379
|
-
|
|
255380
|
-
userId: string;
|
|
255381
|
-
} | {
|
|
255382
|
-
type: "Figma";
|
|
255383
|
-
renderMode: "Image" | "HTML" | "JSON";
|
|
255384
|
-
} | undefined;
|
|
255385
|
-
} | undefined;
|
|
255386
|
-
}[];
|
|
255387
|
-
fpContextId: string;
|
|
255388
|
-
numberOfFeatures: number;
|
|
255389
|
-
description?: string | undefined;
|
|
255390
|
-
emoji?: string | undefined;
|
|
255391
|
-
createdByUserId?: string | undefined;
|
|
255392
|
-
isArchived?: boolean | undefined;
|
|
255797
|
+
name: string;
|
|
255798
|
+
tokenThemeIds: string[];
|
|
255799
|
+
}[] | undefined;
|
|
255800
|
+
} | undefined;
|
|
255393
255801
|
numberOfDocuments?: number | undefined;
|
|
255394
255802
|
};
|
|
255395
255803
|
}>;
|
|
@@ -260147,4 +260555,4 @@ declare function isValidRedirectPath(path: string): {
|
|
|
260147
260555
|
reason: ValidationErrorReason | undefined;
|
|
260148
260556
|
};
|
|
260149
260557
|
|
|
260150
|
-
export { BackendFeatureRoomYDoc, BackendForgeProjectRoomYDoc, BackendThreadRoomYDoc, BackendVersionRoomYDoc, BlockDefinitionUtils, BlockParsingUtils, BrandsEndpoint, ChatThreadMessagesEndpoint, CodeComponentsEndpoint, CodegenEndpoint, Collection, DTOAccessToken, DTOAccessTokenCreatePayload, DTOAccessTokenFull, DTOAccessTokenFullResponse, DTOAccessTokenListResponse, DTOAccessTokenResponse, DTOAddMembersToForgeProject, DTOAnalyzeCodeComponentsInPackage, DTOAnalyzeCodeComponentsInPackageInput, DTOAnalyzeCodeComponentsInPackageResponse, DTOAppBootstrapDataQuery, DTOAppBootstrapDataResponse, DTOAssetRenderConfiguration, DTOAssetScope, DTOAuthenticatedUser, DTOAuthenticatedUserProfile, DTOAuthenticatedUserResponse, DTOAvailableProductListResponse, DTOBffFigmaImportRequestBody, DTOBffImportRequestBody, DTOBffUploadImportRequestBody, DTOBillingCheckoutCreditsTopUpInput, DTOBillingCheckoutInput, DTOBillingCheckoutMode, DTOBillingCheckoutOldInput, DTOBillingCheckoutResponse, DTOBillingCheckoutSubscriptionChangeInput, DTOBillingCreditsCheckIfCanSpendResponse, DTOBillingCreditsSpendAction, DTOBillingCreditsSpendInput, DTOBillingCreditsSpendResponse, DTOBillingInterval, DTOBillingSubscriptionChangePreviewInput, DTOBillingSupportedModels, 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, DTOCreateForgeProjectContext, DTOCreateForgeProjectInvitation, DTOCreateForgeProjectIteration, DTOCreateForgeProjectIterationResponse, DTOCreateForgeProjectMember, DTOCreateForgeSpecArtifact, DTOCreateVersionInput, DTOCreditBalance, DTOCreditsPrices, 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, DTOFeatureAgentResponseTracker, DTOFeatureAgentWorkFinalizeInput, DTOFeatureArtifact, DTOFeatureArtifactCreateInput, DTOFeatureArtifactDeleteInput, DTOFeatureArtifactListResponse, DTOFeatureArtifactResponse, DTOFeatureEvent, DTOFeatureEventMessagesSent, DTOFeatureEventReactionsDeleted, DTOFeatureEventReactionsSent, DTOFeatureIteration, DTOFeatureIterationArtifactDiff, DTOFeatureIterationArtifactsDiff, DTOFeatureIterationCreateInput, DTOFeatureIterationListResponse, DTOFeatureIterationPromoteInput, DTOFeatureIterationResponse, DTOFeatureIterationSetLatestInput, DTOFeatureIterationState, DTOFeatureIterationTag, DTOFeatureIterationTagCreateInput, DTOFeatureIterationTagListResponse, DTOFeatureIterationTagResponse, DTOFeatureIterationUpdateArtifactsByMessageInput, DTOFeatureIterationUpdateArtifactsInput, DTOFeatureIterationUpdateInput, DTOFeatureMessage, DTOFeatureMessageAgentSender, DTOFeatureMessageAttachments, DTOFeatureMessageCreateInput, DTOFeatureMessageListResponse, DTOFeatureMessageReaction, DTOFeatureMessageReactionCreateInput, DTOFeatureMessageReactionDeleteInput, DTOFeatureMessageReactionResponse, DTOFeatureMessageResponse, DTOFeatureMessageSender, DTOFeatureMessageSystemSender, DTOFeatureMessageUpdateInput, DTOFeatureMessageUserSender, DTOFeatureSandbox, DTOFigmaComponent, DTOFigmaComponentBooleanProperty, DTOFigmaComponentGroup, DTOFigmaComponentGroupListResponse, DTOFigmaComponentInstanceSwapProperty, DTOFigmaComponentListResponse, DTOFigmaComponentProperty, DTOFigmaComponentPropertyMap, DTOFigmaComponentTextProperty, DTOFigmaComponentVariantProperty, DTOFigmaExportNodeConfiguration, DTOFigmaExportNodeFormat, DTOFigmaExportNodePayload, DTOFigmaExportNodeResponse, DTOFigmaNode, DTOFigmaNodeData, DTOFigmaNodeDataV2, DTOFigmaNodeOrigin, DTOFigmaNodeRenderActionInput, DTOFigmaNodeRenderActionOutput, DTOFigmaNodeRenderAsyncActionInput, DTOFigmaNodeRenderAsyncActionOutput, DTOFigmaNodeRenderFormat, DTOFigmaNodeRenderIdInput, DTOFigmaNodeRenderInput, DTOFigmaNodeRenderUrlInput, DTOFigmaNodeRerenderInput, DTOFigmaNodeStructure, DTOFigmaNodeStructureDetail, DTOFigmaNodeStructureDetailResponse, DTOFigmaNodeStructureListResponse, DTOFigmaNodeV2, DTOFigmaSourceUpdatePayload, DTOFile, DTOFileFigmaRenderMode, DTOFileFinalizeBulkPayload, DTOFileFinalizeBulkResponse, DTOFileListResponse, DTOFileReference, DTOFileResponseItem, DTOFileSource, DTOFileSourceFigma, DTOFileSourceUpload, DTOFileUploadBulkPayload, DTOFileUploadBulkResponse, DTOFileUploadFinalizePayload, DTOFileUploadFinalizeResponse, DTOFileUploadItem, DTOFileUploadPayload, DTOFileUploadResponse, DTOFileUploadResponseItem, DTOFilesGetPayload, DTOFilesGetQuery, DTOFilesResponse, DTOForgeAgent, DTOForgeAgentsListResponse, DTOForgeArtifact, DTOForgeArtifactGetResponse, DTOForgeArtifactsListResponse, DTOForgeAvatarBuilder, DTOForgeBuildArtifact, DTOForgeChatExportResponse, DTOForgeChatMessage, DTOForgeChatMessageCreateInput, DTOForgeChatMessageCreateResponse, DTOForgeChatMessageListQuery, DTOForgeChatMessageListResponse, DTOForgeChatMessageScoreInput, DTOForgeChatMessageScoreRequest, DTOForgeChatMessageSender, DTOForgeChatMessageSenderType, DTOForgeChatMessageTagInput, DTOForgeChatThread, DTOForgeChatThreadCreateInput, DTOForgeChatThreadCreateResponse, DTOForgeChatThreadDeleteResponse, DTOForgeChatThreadListQuery, DTOForgeChatThreadListResponse, DTOForgeChatThreadUpdateInput, DTOForgeChatThreadUpdateResponse, DTOForgeComponentSet, DTOForgeComponentSetTypeV2, DTOForgeFeatureRoom, DTOForgeFeatureRoomResponse, DTOForgeFigmaArtifact, DTOForgeFileArtifact, DTOForgeIconSet, DTOForgeIconSetTypeV2, DTOForgeIterationMessage, DTOForgeIterationMessagesListResponse, DTOForgeParticipant, DTOForgeParticipantGetResponse, DTOForgeParticipantsListResponse, DTOForgeProject, DTOForgeProjectAccessMode, DTOForgeProjectAction, DTOForgeProjectActionArtifactCreate, DTOForgeProjectActionArtifactDelete, DTOForgeProjectActionArtifactMove, DTOForgeProjectActionArtifactUpdate, DTOForgeProjectActionFeatureCreate, DTOForgeProjectActionFeatureDelete, DTOForgeProjectActionFeatureMove, DTOForgeProjectActionFeatureUpdate, type DTOForgeProjectActionOfType, DTOForgeProjectActionSectionCreate, DTOForgeProjectActionSectionDelete, DTOForgeProjectActionSectionMove, DTOForgeProjectActionSectionUpdate, type DTOForgeProjectActionType, DTOForgeProjectArtifact, DTOForgeProjectArtifactContentResponse, DTOForgeProjectArtifactCreateInput, DTOForgeProjectArtifactCreateResponse, DTOForgeProjectArtifactDeleteInput, DTOForgeProjectArtifactDeleteResponse, DTOForgeProjectArtifactGetResponse, DTOForgeProjectArtifactMoveInput, DTOForgeProjectArtifactMoveResponse, DTOForgeProjectArtifactRoom, DTOForgeProjectArtifactRoomResponse, DTOForgeProjectArtifactUpdateInput, DTOForgeProjectArtifactUpdateResponse, DTOForgeProjectArtifactsListResponse, DTOForgeProjectContext, DTOForgeProjectContextCreateResponse, DTOForgeProjectContextCreateV2, DTOForgeProjectContextGetResponse, DTOForgeProjectContextListQueryV2, DTOForgeProjectContextListResponse, DTOForgeProjectContextListResponseV2, DTOForgeProjectContextRemoveResponse, DTOForgeProjectContextResponseV2, DTOForgeProjectContextUpdateResponse, DTOForgeProjectContextUpdateV2, DTOForgeProjectContextV2, DTOForgeProjectCreate, DTOForgeProjectDefaultRole, DTOForgeProjectDocumentPreview, DTOForgeProjectFeature, DTOForgeProjectFeatureCreateInput, DTOForgeProjectFeatureDeleteInput, DTOForgeProjectFeatureGetResponse, DTOForgeProjectFeatureListResponse, DTOForgeProjectFeatureMoveInput, DTOForgeProjectFeaturePreview, DTOForgeProjectFeatureUpdateInput, DTOForgeProjectFigmaNode, DTOForgeProjectFigmaNodeRenderInput, DTOForgeProjectFile, DTOForgeProjectFileListResponse, DTOForgeProjectFileUploadFinalizePayload, DTOForgeProjectFileUploadFinalizeResponse, DTOForgeProjectFileUploadPayload, DTOForgeProjectFileUploadPayloadItem, DTOForgeProjectFileUploadResponse, DTOForgeProjectInvitation, DTOForgeProjectInvitationCreateResponse, DTOForgeProjectInvitationGetResponse, DTOForgeProjectInvitationRemoveResponse, DTOForgeProjectInvitationUpdateResponse, DTOForgeProjectInvitationsListResponse, DTOForgeProjectIteration, DTOForgeProjectIterationListResponse, DTOForgeProjectIterationMergeMeta, DTOForgeProjectListResponse, DTOForgeProjectMember, DTOForgeProjectMemberCreateResponse, DTOForgeProjectMemberGetResponse, DTOForgeProjectMemberRemoveResponse, DTOForgeProjectMemberRole, DTOForgeProjectMemberUpdateResponse, DTOForgeProjectMembersListResponse, DTOForgeProjectResponse, DTOForgeProjectRole, DTOForgeProjectRoom, DTOForgeProjectRoomResponse, DTOForgeProjectTheme, DTOForgeProjectUpdate, DTOForgeRelation, DTOForgeRelationCreate, DTOForgeRelationDelete, DTOForgeRelationListInput, DTOForgeRelationListResponse, DTOForgeRelationType, DTOForgeSection, DTOForgeSectionCreateInput, DTOForgeSectionDeleteInput, DTOForgeSectionItemMoveInput, DTOForgeSectionMoveInput, DTOForgeSectionUpdateInput, DTOForgeSpecArtifact, DTOForgeThemeKnownPreset, 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, DTOProduct, DTOProductCode, DTOProductPrice, type DTOPropertyDefinitionBase, DTOPublishDocumentationChanges, DTOPublishDocumentationRequest, DTOPublishDocumentationResponse, DTOPublishedDocAnalyticsComparisonData, DTOPublishedDocPageAnalyticsComparisonData, DTOPublishedDocPageVisitData, DTOPublishedDocVisitData, DTOPublishedDocVisitHeatMapWeek, DTORegistry, DTORemoveForgeProjectInvitation, DTORemoveForgeProjectMember, DTORenderedAssetFile, DTORestoreDocumentationGroupInput, DTORestoreDocumentationPageInput, DTOStorybookAccessTokenPayload, DTOStorybookAccessTokenResponse, DTOStorybookEntry, DTOStorybookEntryListResponse, DTOStorybookEntryOrigin, DTOStorybookEntryQuery, DTOStorybookEntryReplaceAction, DTOStorybookEntryResponse, DTOStorybookImportPayload, DTOStorybookSourceUpdatePayload, DTOStorybookUploadStatus, DTOStorybookUploadUrlRequest, DTOStorybookUploadUrlResponse, DTOSubscription, DTOSubscriptionResponse, DTOSubscriptionUpcomingChange, DTOSubscriptionUpdateInput, DTOSubscriptionUpdatePreview, DTOSubscriptionUpdatePreviewResponse, DTOTheme, DTOThemeCreatePayload, DTOThemeListResponse, DTOThemeOverride, DTOThemeOverrideCreatePayload, DTOThemeResponse, DTOThread, DTOThreadAgentResponseTracker, DTOThreadAgentType, DTOThreadEvent, DTOThreadEventMessagesSent, DTOThreadEventMessagesUpdated, DTOThreadEventReactionsDeleted, DTOThreadEventReactionsSent, DTOThreadMessage, DTOThreadMessageAgentSender, DTOThreadMessageAttachments, DTOThreadMessageAttachmentsCreateInput, DTOThreadMessageCreateInput, DTOThreadMessageFinalizeInput, DTOThreadMessageListResponse, DTOThreadMessageResponse, DTOThreadMessageSender, DTOThreadMessageSystemSender, DTOThreadMessageUpdateInput, DTOThreadMessageUserSender, DTOThreadPromptState, DTOThreadReaction, DTOThreadReactionCreateInput, DTOThreadReactionDeleteInput, DTOThreadReactionResponse, DTOThreadSubjectType, DTOTokenCollection, DTOTokenCollectionsListReponse, DTOTrailEvent, DTOTrailEventCreate, DTOTrailEventListInput, DTOTrailEventListResponse, DTOTrailEventType, DTOTrailEventWithDetails, DTOTransferOwnershipPayload, DTOUGetForgeAgentResponse, DTOUpdateDocumentationGroupInput, DTOUpdateDocumentationPageDocumentInputV2, DTOUpdateDocumentationPageInputV2, DTOUpdateForgeAgent, DTOUpdateForgeAgentResponse, DTOUpdateForgeArtifact, DTOUpdateForgeArtifactResponse, DTOUpdateForgeBuildArtifact, DTOUpdateForgeFigmaArtifact, DTOUpdateForgeFileArtifact, DTOUpdateForgeIterationMessage, DTOUpdateForgeIterationMessageResponse, DTOUpdateForgeParticipant, DTOUpdateForgeParticipantResponse, DTOUpdateForgeProjectContext, DTOUpdateForgeProjectInvitation, DTOUpdateForgeProjectIteration, DTOUpdateForgeProjectIterationResponse, DTOUpdateForgeProjectMember, DTOUpdateForgeSpecArtifact, DTOUpdateRegistryInput, DTOUpdateRegistryOutput, DTOUpdateUserNotificationSettingsPayload, DTOUpdateVersionInput, DTOUploadUrlItem, DTOUser, DTOUserDesignSystemsResponse, DTOUserEmailSettings, DTOUserEmailSettingsUpdatePayload, DTOUserGetResponse, DTOUserNotificationSettingsResponse, DTOUserOnboarding, DTOUserOnboardingDepartment, DTOUserOnboardingJobLevel, DTOUserPortalTheme, DTOUserProfile, DTOUserProfileUpdatePayload, DTOUserSource, DTOUserTheme, DTOUserUpdatePayload, DTOUserWorkspaceMembership, DTOUserWorkspaceMembershipsResponse, DTOWorkspace, DTOWorkspaceBilledSeatType, DTOWorkspaceCreateInput, DTOWorkspaceIntegrationGetGitObjectsInput, DTOWorkspaceIntegrationOauthInput, DTOWorkspaceIntegrationPATInput, DTOWorkspaceInvitation, DTOWorkspaceInvitationInput, DTOWorkspaceInvitationUpdateResponse, DTOWorkspaceInvitationsListInput, DTOWorkspaceInvitationsResponse, DTOWorkspaceInviteUpdate, DTOWorkspaceMember, DTOWorkspaceMembersListResponse, DTOWorkspaceProfile, DTOWorkspaceResponse, DTOWorkspaceRole, DTOWorkspaceSeatType, DTOWorkspaceUntypedData, DTOWorkspaceUntypedDataCreatePayload, DTOWorkspaceUntypedDataListResponse, DTOWorkspaceUntypedDataResponse, DTOWorkspaceUntypedDataUpdatePayload, type DTPGetForgeAgentResponse, DesignSystemAnalyticsEndpoint, DesignSystemBffEndpoint, DesignSystemComponentEndpoint, DesignSystemContactsEndpoint, DesignSystemFilesEndpoint, DesignSystemMembersEndpoint, DesignSystemPageRedirectsEndpoint, DesignSystemSourcesEndpoint, DesignSystemVersionsEndpoint, DesignSystemsEndpoint, DimensionsVariableScopeType, DocsStructureRepository, DocumentationEndpoint, DocumentationHierarchySettings, DocumentationPageEditorModel, DocumentationPageV1DTO, ElementPropertyDefinitionsEndpoint, ElementPropertyValuesEndpoint, ElementsActionEndpoint, ElementsEndpoint, ExporterJobsEndpoint, ExportersEndpoint, FeatureRoomBaseYDoc, type FeatureRoomBaseYDocState, type FeatureRoomUpdate, FigmaComponentGroupsEndpoint, FigmaComponentsEndpoint, FigmaFrameStructuresEndpoint, FigmaNodeStructuresEndpoint, FigmaUtils, FilesEndpoint, ForgeAgentsEndpoint, ForgeArtifactsEndpoint, ForgeEndpoint, ForgeFeatureArtifactsEndpoint, ForgeFeatureIterationsEndpoint, ForgeFeatureMessagesEndpoint, ForgeProjectContentRepository, ForgeProjectContextsEndpoint, ForgeProjectFeaturesEndpoint, ForgeProjectFilesEndpoint, ForgeProjectInvitationsEndpoint, ForgeProjectIterationsEndpoint, ForgeProjectMembersEndpoint, ForgeProjectRoomBaseYDoc, type ForgeProjectRoomBaseYDocState, ForgeProjectsEndpoint, FormattedCollections, FrontendFeatureRoomYDoc, FrontendThreadRoomYDoc, FrontendVersionRoomYDoc, GitDestinationOptions, ImportJobsEndpoint, type ListItemNode, type ListNode, ListTreeBuilder, LiveblocksEndpoint, type LocalApproval, LocalDocsElementActionExecutor, type LocalDocsPage, type LocalDocsPageGroup, LocalProjectActionExecutor, NpmRegistryInput, ObjectMeta, OverridesEndpoint, PageBlockEditorModel, PageSectionEditorModel, ParsedFigmaFileURLError, PipelinesEndpoint, type ProjectContentState, type ProsemirrorBlockItem, type ProsemirrorMark, type ProsemirrorNode, RGB, RGBA, type RequestEexecutorServerErrorCode, RequestExecutor, type RequestExecutorConfig, RequestExecutorError, type RequestExecutorErrorType, type RequestExecutorJSONRequest, ResolvedVariableType, StorybookEntriesEndpoint, StorybookHostingEndpoint, StringVariableScopeType, SupernovaApiClient, type SupportedElementActionType, ThemesEndpoint, ThreadRoomBaseYDoc, type ThreadRoomBaseYDocState, type ThreadRoomUpdate, ThreadsEndpoint, 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, WorkspaceSubscriptionEndpoint, WorkspacesEndpoint, applyActionsLocally, applyPrivacyConfigurationToNestedItems, applyProjectActionsLocally, 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, zodQueryBoolean };
|
|
260558
|
+
export { BackendFeatureRoomYDoc, BackendForgeProjectRoomYDoc, BackendThreadRoomYDoc, BackendVersionRoomYDoc, BlockDefinitionUtils, BlockParsingUtils, BrandsEndpoint, ChatThreadMessagesEndpoint, CodeComponentsEndpoint, CodegenEndpoint, Collection, DTOAccessToken, DTOAccessTokenCreatePayload, DTOAccessTokenFull, DTOAccessTokenFullResponse, DTOAccessTokenListResponse, DTOAccessTokenResponse, DTOAddMembersToForgeProject, DTOAnalyzeCodeComponentsInPackage, DTOAnalyzeCodeComponentsInPackageInput, DTOAnalyzeCodeComponentsInPackageResponse, DTOAppBootstrapDataQuery, DTOAppBootstrapDataResponse, DTOAssetRenderConfiguration, DTOAssetScope, DTOAuthenticatedUser, DTOAuthenticatedUserProfile, DTOAuthenticatedUserResponse, DTOAvailableProductListResponse, DTOBffFigmaImportRequestBody, DTOBffImportRequestBody, DTOBffUploadImportRequestBody, DTOBillingCheckoutCreditsTopUpInput, DTOBillingCheckoutInput, DTOBillingCheckoutMode, DTOBillingCheckoutOldInput, DTOBillingCheckoutResponse, DTOBillingCheckoutSubscriptionChangeInput, DTOBillingCreditsCheckIfCanSpendResponse, DTOBillingCreditsSpendAction, DTOBillingCreditsSpendInput, DTOBillingCreditsSpendResponse, DTOBillingInterval, DTOBillingSubscriptionChangePreviewInput, DTOBillingSupportedModels, 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, DTOCreateForgeProjectContext, DTOCreateForgeProjectInvitation, DTOCreateForgeProjectIteration, DTOCreateForgeProjectIterationResponse, DTOCreateForgeProjectMember, DTOCreateForgeSpecArtifact, DTOCreateVersionInput, DTOCreditBalance, DTOCreditsPrices, 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, DTOFeatureAgentResponseTracker, DTOFeatureAgentWorkFinalizeInput, DTOFeatureArtifact, DTOFeatureArtifactCreateInput, DTOFeatureArtifactDeleteInput, DTOFeatureArtifactListResponse, DTOFeatureArtifactResponse, DTOFeatureEvent, DTOFeatureEventMessagesSent, DTOFeatureEventReactionsDeleted, DTOFeatureEventReactionsSent, DTOFeatureIteration, DTOFeatureIterationArtifactDiff, DTOFeatureIterationArtifactsDiff, DTOFeatureIterationCreateInput, DTOFeatureIterationListResponse, DTOFeatureIterationPromoteInput, DTOFeatureIterationResponse, DTOFeatureIterationSetLatestInput, DTOFeatureIterationState, DTOFeatureIterationTag, DTOFeatureIterationTagCreateInput, DTOFeatureIterationTagListResponse, DTOFeatureIterationTagResponse, DTOFeatureIterationUpdateArtifactsByMessageInput, DTOFeatureIterationUpdateArtifactsInput, DTOFeatureIterationUpdateInput, DTOFeatureMessage, DTOFeatureMessageAgentSender, DTOFeatureMessageAttachments, DTOFeatureMessageCreateInput, DTOFeatureMessageListResponse, DTOFeatureMessageReaction, DTOFeatureMessageReactionCreateInput, DTOFeatureMessageReactionDeleteInput, DTOFeatureMessageReactionResponse, DTOFeatureMessageResponse, DTOFeatureMessageSender, DTOFeatureMessageSystemSender, DTOFeatureMessageUpdateInput, DTOFeatureMessageUserSender, DTOFeatureSandbox, DTOFigmaComponent, DTOFigmaComponentBooleanProperty, DTOFigmaComponentGroup, DTOFigmaComponentGroupListResponse, DTOFigmaComponentInstanceSwapProperty, DTOFigmaComponentListResponse, DTOFigmaComponentProperty, DTOFigmaComponentPropertyMap, DTOFigmaComponentTextProperty, DTOFigmaComponentVariantProperty, DTOFigmaExportNodeConfiguration, DTOFigmaExportNodeFormat, DTOFigmaExportNodePayload, DTOFigmaExportNodeResponse, DTOFigmaNode, DTOFigmaNodeData, DTOFigmaNodeDataV2, DTOFigmaNodeOrigin, DTOFigmaNodeRenderActionInput, DTOFigmaNodeRenderActionOutput, DTOFigmaNodeRenderAsyncActionInput, DTOFigmaNodeRenderAsyncActionOutput, DTOFigmaNodeRenderFormat, DTOFigmaNodeRenderIdInput, DTOFigmaNodeRenderInput, DTOFigmaNodeRenderUrlInput, DTOFigmaNodeRerenderInput, DTOFigmaNodeStructure, DTOFigmaNodeStructureDetail, DTOFigmaNodeStructureDetailResponse, DTOFigmaNodeStructureListResponse, DTOFigmaNodeV2, DTOFigmaSourceUpdatePayload, DTOFile, DTOFileFigmaRenderMode, DTOFileFinalizeBulkPayload, DTOFileFinalizeBulkResponse, DTOFileListResponse, DTOFileReference, DTOFileResponseItem, DTOFileSource, DTOFileSourceFigma, DTOFileSourceUpload, DTOFileUploadBulkPayload, DTOFileUploadBulkResponse, DTOFileUploadFinalizePayload, DTOFileUploadFinalizeResponse, DTOFileUploadItem, DTOFileUploadPayload, DTOFileUploadResponse, DTOFileUploadResponseItem, DTOFilesGetPayload, DTOFilesGetQuery, DTOFilesResponse, DTOForgeAgent, DTOForgeAgentsListResponse, DTOForgeArtifact, DTOForgeArtifactGetResponse, DTOForgeArtifactsListResponse, DTOForgeAvatarBuilder, DTOForgeBuildArtifact, DTOForgeChatExportResponse, DTOForgeChatMessage, DTOForgeChatMessageCreateInput, DTOForgeChatMessageCreateResponse, DTOForgeChatMessageListQuery, DTOForgeChatMessageListResponse, DTOForgeChatMessageScoreInput, DTOForgeChatMessageScoreRequest, DTOForgeChatMessageSender, DTOForgeChatMessageSenderType, DTOForgeChatMessageTagInput, DTOForgeChatThread, DTOForgeChatThreadCreateInput, DTOForgeChatThreadCreateResponse, DTOForgeChatThreadDeleteResponse, DTOForgeChatThreadListQuery, DTOForgeChatThreadListResponse, DTOForgeChatThreadUpdateInput, DTOForgeChatThreadUpdateResponse, DTOForgeComponentSet, DTOForgeComponentSetTypeV2, DTOForgeFeatureRoom, DTOForgeFeatureRoomResponse, DTOForgeFigmaArtifact, DTOForgeFileArtifact, DTOForgeIconSet, DTOForgeIconSetTypeV2, DTOForgeIterationMessage, DTOForgeIterationMessagesListResponse, DTOForgeParticipant, DTOForgeParticipantGetResponse, DTOForgeParticipantsListResponse, DTOForgeProject, DTOForgeProjectAccessMode, DTOForgeProjectAction, DTOForgeProjectActionArtifactCreate, DTOForgeProjectActionArtifactDelete, DTOForgeProjectActionArtifactMove, DTOForgeProjectActionArtifactUpdate, DTOForgeProjectActionFeatureCreate, DTOForgeProjectActionFeatureDelete, DTOForgeProjectActionFeatureMove, DTOForgeProjectActionFeatureUpdate, type DTOForgeProjectActionOfType, DTOForgeProjectActionSectionCreate, DTOForgeProjectActionSectionDelete, DTOForgeProjectActionSectionMove, DTOForgeProjectActionSectionUpdate, type DTOForgeProjectActionType, DTOForgeProjectArtifact, DTOForgeProjectArtifactContentResponse, DTOForgeProjectArtifactCreateInput, DTOForgeProjectArtifactCreateResponse, DTOForgeProjectArtifactDeleteInput, DTOForgeProjectArtifactDeleteResponse, DTOForgeProjectArtifactGetResponse, DTOForgeProjectArtifactMoveInput, DTOForgeProjectArtifactMoveResponse, DTOForgeProjectArtifactRoom, DTOForgeProjectArtifactRoomResponse, DTOForgeProjectArtifactUpdateInput, DTOForgeProjectArtifactUpdateResponse, DTOForgeProjectArtifactsListResponse, DTOForgeProjectContext, DTOForgeProjectContextCreateResponse, DTOForgeProjectContextCreateV2, DTOForgeProjectContextGetResponse, DTOForgeProjectContextListQueryV2, DTOForgeProjectContextListResponse, DTOForgeProjectContextListResponseV2, DTOForgeProjectContextRemoveResponse, DTOForgeProjectContextResponseV2, DTOForgeProjectContextUpdateResponse, DTOForgeProjectContextUpdateV2, DTOForgeProjectContextV2, DTOForgeProjectCreate, DTOForgeProjectDefaultRole, DTOForgeProjectDocumentPreview, DTOForgeProjectFeature, DTOForgeProjectFeatureCreateInput, DTOForgeProjectFeatureDeleteInput, DTOForgeProjectFeatureGetResponse, DTOForgeProjectFeatureListResponse, DTOForgeProjectFeatureMoveInput, DTOForgeProjectFeaturePreview, DTOForgeProjectFeatureUpdateInput, DTOForgeProjectFigmaNode, DTOForgeProjectFigmaNodeRenderInput, DTOForgeProjectFile, DTOForgeProjectFileListResponse, DTOForgeProjectFileUploadFinalizePayload, DTOForgeProjectFileUploadFinalizeResponse, DTOForgeProjectFileUploadPayload, DTOForgeProjectFileUploadPayloadItem, DTOForgeProjectFileUploadResponse, DTOForgeProjectInvitation, DTOForgeProjectInvitationCreateResponse, DTOForgeProjectInvitationGetResponse, DTOForgeProjectInvitationRemoveResponse, DTOForgeProjectInvitationUpdateResponse, DTOForgeProjectInvitationsListResponse, DTOForgeProjectIteration, DTOForgeProjectIterationListResponse, DTOForgeProjectIterationMergeMeta, DTOForgeProjectListResponse, DTOForgeProjectMember, DTOForgeProjectMemberCreateResponse, DTOForgeProjectMemberGetResponse, DTOForgeProjectMemberRemoveResponse, DTOForgeProjectMemberRole, DTOForgeProjectMemberUpdateResponse, DTOForgeProjectMembersListResponse, DTOForgeProjectResponse, DTOForgeProjectRole, DTOForgeProjectRoom, DTOForgeProjectRoomResponse, DTOForgeProjectTheme, DTOForgeProjectUpdate, DTOForgeRelation, DTOForgeRelationCreate, DTOForgeRelationDelete, DTOForgeRelationListInput, DTOForgeRelationListResponse, DTOForgeRelationType, DTOForgeSection, DTOForgeSectionCreateInput, DTOForgeSectionDeleteInput, DTOForgeSectionItemMoveInput, DTOForgeSectionMoveInput, DTOForgeSectionUpdateInput, DTOForgeSpecArtifact, DTOForgeThemeKnownPreset, DTOForgeTokenThemeSet, 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, DTOProduct, DTOProductCode, DTOProductPrice, type DTOPropertyDefinitionBase, DTOPublishDocumentationChanges, DTOPublishDocumentationRequest, DTOPublishDocumentationResponse, DTOPublishedDocAnalyticsComparisonData, DTOPublishedDocPageAnalyticsComparisonData, DTOPublishedDocPageVisitData, DTOPublishedDocVisitData, DTOPublishedDocVisitHeatMapWeek, DTORegistry, DTORemoveForgeProjectInvitation, DTORemoveForgeProjectMember, DTORenderedAssetFile, DTORestoreDocumentationGroupInput, DTORestoreDocumentationPageInput, DTOStorybookAccessTokenPayload, DTOStorybookAccessTokenResponse, DTOStorybookEntry, DTOStorybookEntryListResponse, DTOStorybookEntryOrigin, DTOStorybookEntryQuery, DTOStorybookEntryReplaceAction, DTOStorybookEntryResponse, DTOStorybookImportPayload, DTOStorybookSourceUpdatePayload, DTOStorybookUploadStatus, DTOStorybookUploadUrlRequest, DTOStorybookUploadUrlResponse, DTOSubscription, DTOSubscriptionResponse, DTOSubscriptionUpcomingChange, DTOSubscriptionUpdateInput, DTOSubscriptionUpdatePreview, DTOSubscriptionUpdatePreviewResponse, DTOTheme, DTOThemeCreatePayload, DTOThemeListResponse, DTOThemeOverride, DTOThemeOverrideCreatePayload, DTOThemeResponse, DTOThread, DTOThreadAgentResponseTracker, DTOThreadAgentType, DTOThreadEvent, DTOThreadEventMessagesSent, DTOThreadEventMessagesUpdated, DTOThreadEventReactionsDeleted, DTOThreadEventReactionsSent, DTOThreadMessage, DTOThreadMessageAgentSender, DTOThreadMessageAttachments, DTOThreadMessageAttachmentsCreateInput, DTOThreadMessageCreateInput, DTOThreadMessageFinalizeInput, DTOThreadMessageListResponse, DTOThreadMessageResponse, DTOThreadMessageSender, DTOThreadMessageSystemSender, DTOThreadMessageUpdateInput, DTOThreadMessageUserSender, DTOThreadPromptState, DTOThreadReaction, DTOThreadReactionCreateInput, DTOThreadReactionDeleteInput, DTOThreadReactionResponse, DTOThreadSubjectType, DTOTokenCollection, DTOTokenCollectionsListReponse, DTOTrailEvent, DTOTrailEventCreate, DTOTrailEventListInput, DTOTrailEventListResponse, DTOTrailEventType, DTOTrailEventWithDetails, DTOTransferOwnershipPayload, DTOUGetForgeAgentResponse, DTOUpdateDocumentationGroupInput, DTOUpdateDocumentationPageDocumentInputV2, DTOUpdateDocumentationPageInputV2, DTOUpdateForgeAgent, DTOUpdateForgeAgentResponse, DTOUpdateForgeArtifact, DTOUpdateForgeArtifactResponse, DTOUpdateForgeBuildArtifact, DTOUpdateForgeFigmaArtifact, DTOUpdateForgeFileArtifact, DTOUpdateForgeIterationMessage, DTOUpdateForgeIterationMessageResponse, DTOUpdateForgeParticipant, DTOUpdateForgeParticipantResponse, DTOUpdateForgeProjectContext, DTOUpdateForgeProjectInvitation, DTOUpdateForgeProjectIteration, DTOUpdateForgeProjectIterationResponse, DTOUpdateForgeProjectMember, DTOUpdateForgeSpecArtifact, DTOUpdateRegistryInput, DTOUpdateRegistryOutput, DTOUpdateUserNotificationSettingsPayload, DTOUpdateVersionInput, DTOUploadUrlItem, DTOUser, DTOUserDesignSystemsResponse, DTOUserEmailSettings, DTOUserEmailSettingsUpdatePayload, DTOUserGetResponse, DTOUserNotificationSettingsResponse, DTOUserOnboarding, DTOUserOnboardingDepartment, DTOUserOnboardingJobLevel, DTOUserPortalTheme, DTOUserProfile, DTOUserProfileUpdatePayload, DTOUserSource, DTOUserTheme, DTOUserUpdatePayload, DTOUserWorkspaceMembership, DTOUserWorkspaceMembershipsResponse, DTOWorkspace, DTOWorkspaceBilledSeatType, DTOWorkspaceCreateInput, DTOWorkspaceIntegrationGetGitObjectsInput, DTOWorkspaceIntegrationOauthInput, DTOWorkspaceIntegrationPATInput, DTOWorkspaceInvitation, DTOWorkspaceInvitationInput, DTOWorkspaceInvitationUpdateResponse, DTOWorkspaceInvitationsListInput, DTOWorkspaceInvitationsResponse, DTOWorkspaceInviteUpdate, DTOWorkspaceMember, DTOWorkspaceMembersListResponse, DTOWorkspaceProfile, DTOWorkspaceResponse, DTOWorkspaceRole, DTOWorkspaceSeatType, DTOWorkspaceUntypedData, DTOWorkspaceUntypedDataCreatePayload, DTOWorkspaceUntypedDataListResponse, DTOWorkspaceUntypedDataResponse, DTOWorkspaceUntypedDataUpdatePayload, type DTPGetForgeAgentResponse, DesignSystemAnalyticsEndpoint, DesignSystemBffEndpoint, DesignSystemComponentEndpoint, DesignSystemContactsEndpoint, DesignSystemFilesEndpoint, DesignSystemMembersEndpoint, DesignSystemPageRedirectsEndpoint, DesignSystemSourcesEndpoint, DesignSystemVersionsEndpoint, DesignSystemsEndpoint, DimensionsVariableScopeType, DocsStructureRepository, DocumentationEndpoint, DocumentationHierarchySettings, DocumentationPageEditorModel, DocumentationPageV1DTO, ElementPropertyDefinitionsEndpoint, ElementPropertyValuesEndpoint, ElementsActionEndpoint, ElementsEndpoint, ExporterJobsEndpoint, ExportersEndpoint, FeatureRoomBaseYDoc, type FeatureRoomBaseYDocState, type FeatureRoomUpdate, FigmaComponentGroupsEndpoint, FigmaComponentsEndpoint, FigmaFrameStructuresEndpoint, FigmaNodeStructuresEndpoint, FigmaUtils, FilesEndpoint, ForgeAgentsEndpoint, ForgeArtifactsEndpoint, ForgeEndpoint, ForgeFeatureArtifactsEndpoint, ForgeFeatureIterationsEndpoint, ForgeFeatureMessagesEndpoint, ForgeProjectContentRepository, ForgeProjectContextsEndpoint, ForgeProjectFeaturesEndpoint, ForgeProjectFilesEndpoint, ForgeProjectInvitationsEndpoint, ForgeProjectIterationsEndpoint, ForgeProjectMembersEndpoint, ForgeProjectRoomBaseYDoc, type ForgeProjectRoomBaseYDocState, ForgeProjectsEndpoint, FormattedCollections, FrontendFeatureRoomYDoc, FrontendThreadRoomYDoc, FrontendVersionRoomYDoc, GitDestinationOptions, ImportJobsEndpoint, type ListItemNode, type ListNode, ListTreeBuilder, LiveblocksEndpoint, type LocalApproval, LocalDocsElementActionExecutor, type LocalDocsPage, type LocalDocsPageGroup, LocalProjectActionExecutor, NpmRegistryInput, ObjectMeta, OverridesEndpoint, PageBlockEditorModel, PageSectionEditorModel, ParsedFigmaFileURLError, PipelinesEndpoint, type ProjectContentState, type ProsemirrorBlockItem, type ProsemirrorMark, type ProsemirrorNode, RGB, RGBA, type RequestEexecutorServerErrorCode, RequestExecutor, type RequestExecutorConfig, RequestExecutorError, type RequestExecutorErrorType, type RequestExecutorJSONRequest, ResolvedVariableType, StorybookEntriesEndpoint, StorybookHostingEndpoint, StringVariableScopeType, SupernovaApiClient, type SupportedElementActionType, ThemesEndpoint, ThreadRoomBaseYDoc, type ThreadRoomBaseYDocState, type ThreadRoomUpdate, ThreadsEndpoint, 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, WorkspaceSubscriptionEndpoint, WorkspacesEndpoint, applyActionsLocally, applyPrivacyConfigurationToNestedItems, applyProjectActionsLocally, 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, zodQueryBoolean };
|