@supernova-studio/client 1.42.0 → 1.42.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 CHANGED
@@ -66542,7 +66542,7 @@ declare const DTOFileReference: z__default.ZodObject<Pick<{
66542
66542
  } | undefined;
66543
66543
  }>;
66544
66544
  type DTOFileReference = z__default.infer<typeof DTOFileReference>;
66545
- declare const DTOFileUploadBulkInput: z__default.ZodIntersection<z__default.ZodObject<{
66545
+ declare const DTOFileUploadBulkPayload: z__default.ZodIntersection<z__default.ZodObject<{
66546
66546
  files: z__default.ZodArray<z__default.ZodObject<{
66547
66547
  size: z__default.ZodNumber;
66548
66548
  name: z__default.ZodString;
@@ -66568,23 +66568,46 @@ declare const DTOFileUploadBulkInput: z__default.ZodIntersection<z__default.ZodO
66568
66568
  size: number;
66569
66569
  checksum: string;
66570
66570
  }[];
66571
- }>, z__default.ZodDiscriminatedUnion<"uploadTo", [z__default.ZodObject<{
66572
- uploadTo: z__default.ZodLiteral<"User">;
66571
+ }>, z__default.ZodDiscriminatedUnion<"ownerType", [z__default.ZodObject<{
66572
+ ownerType: z__default.ZodLiteral<"User">;
66573
66573
  }, "strip", z__default.ZodTypeAny, {
66574
- uploadTo: "User";
66574
+ ownerType: "User";
66575
66575
  }, {
66576
- uploadTo: "User";
66576
+ ownerType: "User";
66577
66577
  }>, z__default.ZodObject<{
66578
- uploadTo: z__default.ZodLiteral<"Workspace">;
66578
+ ownerType: z__default.ZodLiteral<"Workspace">;
66579
66579
  workspaceId: z__default.ZodString;
66580
66580
  }, "strip", z__default.ZodTypeAny, {
66581
66581
  workspaceId: string;
66582
- uploadTo: "Workspace";
66582
+ ownerType: "Workspace";
66583
66583
  }, {
66584
66584
  workspaceId: string;
66585
- uploadTo: "Workspace";
66585
+ ownerType: "Workspace";
66586
66586
  }>]>>;
66587
- type DTOFileUploadBulkInput = z__default.infer<typeof DTOFileUploadBulkInput>;
66587
+ type DTOFileUploadBulkPayload = z__default.infer<typeof DTOFileUploadBulkPayload>;
66588
+ declare const DTOFileFinalizeBulkPayload: z__default.ZodIntersection<z__default.ZodObject<{
66589
+ fileIds: z__default.ZodArray<z__default.ZodString, "many">;
66590
+ }, "strip", z__default.ZodTypeAny, {
66591
+ fileIds: string[];
66592
+ }, {
66593
+ fileIds: string[];
66594
+ }>, z__default.ZodDiscriminatedUnion<"ownerType", [z__default.ZodObject<{
66595
+ ownerType: z__default.ZodLiteral<"User">;
66596
+ }, "strip", z__default.ZodTypeAny, {
66597
+ ownerType: "User";
66598
+ }, {
66599
+ ownerType: "User";
66600
+ }>, z__default.ZodObject<{
66601
+ ownerType: z__default.ZodLiteral<"Workspace">;
66602
+ workspaceId: z__default.ZodString;
66603
+ }, "strip", z__default.ZodTypeAny, {
66604
+ workspaceId: string;
66605
+ ownerType: "Workspace";
66606
+ }, {
66607
+ workspaceId: string;
66608
+ ownerType: "Workspace";
66609
+ }>]>>;
66610
+ type DTOFileFinalizeBulkPayload = z__default.infer<typeof DTOFileFinalizeBulkPayload>;
66588
66611
  declare const DTOFileListResponse: z__default.ZodObject<{
66589
66612
  files: z__default.ZodArray<z__default.ZodObject<{
66590
66613
  id: z__default.ZodString;
@@ -66801,6 +66824,105 @@ declare const DTOFileUploadBulkResponse: z__default.ZodObject<{
66801
66824
  }[];
66802
66825
  }>;
66803
66826
  type DTOFileUploadBulkResponse = z__default.infer<typeof DTOFileUploadBulkResponse>;
66827
+ declare const DTOFileFinalizeBulkResponse: z__default.ZodObject<{
66828
+ files: z__default.ZodArray<z__default.ZodObject<{
66829
+ id: z__default.ZodString;
66830
+ name: z__default.ZodString;
66831
+ deduplicationKey: z__default.ZodString;
66832
+ pendingUpload: z__default.ZodOptional<z__default.ZodBoolean>;
66833
+ storagePath: z__default.ZodString;
66834
+ url: z__default.ZodString;
66835
+ size: z__default.ZodNumber;
66836
+ /**
66837
+ * Object describing where did the file come from. Undefined source indicates a file produced by the
66838
+ * system (e.g. thumbnails, etc)
66839
+ */
66840
+ source: z__default.ZodOptional<z__default.ZodDiscriminatedUnion<"type", [z__default.ZodObject<{
66841
+ type: z__default.ZodLiteral<"UserUpload">;
66842
+ userId: z__default.ZodString;
66843
+ }, "strip", z__default.ZodTypeAny, {
66844
+ type: "UserUpload";
66845
+ userId: string;
66846
+ }, {
66847
+ type: "UserUpload";
66848
+ userId: string;
66849
+ }>, z__default.ZodObject<{
66850
+ type: z__default.ZodLiteral<"Figma">;
66851
+ renderMode: z__default.ZodEnum<["Image", "HTML"]>;
66852
+ }, "strip", z__default.ZodTypeAny, {
66853
+ type: "Figma";
66854
+ renderMode: "Image" | "HTML";
66855
+ }, {
66856
+ type: "Figma";
66857
+ renderMode: "Image" | "HTML";
66858
+ }>]>>;
66859
+ }, "strip", z__default.ZodTypeAny, {
66860
+ id: string;
66861
+ name: string;
66862
+ url: string;
66863
+ size: number;
66864
+ deduplicationKey: string;
66865
+ storagePath: string;
66866
+ source?: {
66867
+ type: "UserUpload";
66868
+ userId: string;
66869
+ } | {
66870
+ type: "Figma";
66871
+ renderMode: "Image" | "HTML";
66872
+ } | undefined;
66873
+ pendingUpload?: boolean | undefined;
66874
+ }, {
66875
+ id: string;
66876
+ name: string;
66877
+ url: string;
66878
+ size: number;
66879
+ deduplicationKey: string;
66880
+ storagePath: string;
66881
+ source?: {
66882
+ type: "UserUpload";
66883
+ userId: string;
66884
+ } | {
66885
+ type: "Figma";
66886
+ renderMode: "Image" | "HTML";
66887
+ } | undefined;
66888
+ pendingUpload?: boolean | undefined;
66889
+ }>, "many">;
66890
+ }, "strip", z__default.ZodTypeAny, {
66891
+ files: {
66892
+ id: string;
66893
+ name: string;
66894
+ url: string;
66895
+ size: number;
66896
+ deduplicationKey: string;
66897
+ storagePath: string;
66898
+ source?: {
66899
+ type: "UserUpload";
66900
+ userId: string;
66901
+ } | {
66902
+ type: "Figma";
66903
+ renderMode: "Image" | "HTML";
66904
+ } | undefined;
66905
+ pendingUpload?: boolean | undefined;
66906
+ }[];
66907
+ }, {
66908
+ files: {
66909
+ id: string;
66910
+ name: string;
66911
+ url: string;
66912
+ size: number;
66913
+ deduplicationKey: string;
66914
+ storagePath: string;
66915
+ source?: {
66916
+ type: "UserUpload";
66917
+ userId: string;
66918
+ } | {
66919
+ type: "Figma";
66920
+ renderMode: "Image" | "HTML";
66921
+ } | undefined;
66922
+ pendingUpload?: boolean | undefined;
66923
+ }[];
66924
+ }>;
66925
+ type DTOFileFinalizeBulkResponse = z__default.infer<typeof DTOFileFinalizeBulkResponse>;
66804
66926
 
66805
66927
  declare const DTOUGetForgeAgentResponse: z$1.ZodObject<{
66806
66928
  agent: z$1.ZodNullable<z$1.ZodObject<{
@@ -237812,6 +237934,1081 @@ declare const DTOThreadEvent: z__default.ZodDiscriminatedUnion<"type", [z__defau
237812
237934
  }>]>;
237813
237935
  type DTOThreadEvent = z__default.infer<typeof DTOThreadEvent>;
237814
237936
 
237937
+ declare const DTOTrailEvent: z$1.ZodIntersection<z$1.ZodDiscriminatedUnion<"type", [z$1.ZodObject<{
237938
+ type: z$1.ZodLiteral<"IterationCreated">;
237939
+ payload: z$1.ZodObject<{
237940
+ iterationName: z$1.ZodString;
237941
+ iterationId: z$1.ZodString;
237942
+ featureId: z$1.ZodString;
237943
+ }, "strip", z$1.ZodTypeAny, {
237944
+ iterationId: string;
237945
+ featureId: string;
237946
+ iterationName: string;
237947
+ }, {
237948
+ iterationId: string;
237949
+ featureId: string;
237950
+ iterationName: string;
237951
+ }>;
237952
+ }, "strip", z$1.ZodTypeAny, {
237953
+ type: "IterationCreated";
237954
+ payload: {
237955
+ iterationId: string;
237956
+ featureId: string;
237957
+ iterationName: string;
237958
+ };
237959
+ }, {
237960
+ type: "IterationCreated";
237961
+ payload: {
237962
+ iterationId: string;
237963
+ featureId: string;
237964
+ iterationName: string;
237965
+ };
237966
+ }>, z$1.ZodObject<{
237967
+ type: z$1.ZodLiteral<"IterationBookmarked">;
237968
+ payload: z$1.ZodObject<{
237969
+ iterationId: z$1.ZodString;
237970
+ featureId: z$1.ZodString;
237971
+ iterationName: z$1.ZodString;
237972
+ }, "strip", z$1.ZodTypeAny, {
237973
+ iterationId: string;
237974
+ featureId: string;
237975
+ iterationName: string;
237976
+ }, {
237977
+ iterationId: string;
237978
+ featureId: string;
237979
+ iterationName: string;
237980
+ }>;
237981
+ }, "strip", z$1.ZodTypeAny, {
237982
+ type: "IterationBookmarked";
237983
+ payload: {
237984
+ iterationId: string;
237985
+ featureId: string;
237986
+ iterationName: string;
237987
+ };
237988
+ }, {
237989
+ type: "IterationBookmarked";
237990
+ payload: {
237991
+ iterationId: string;
237992
+ featureId: string;
237993
+ iterationName: string;
237994
+ };
237995
+ }>, z$1.ZodObject<{
237996
+ type: z$1.ZodLiteral<"FeatureCreated">;
237997
+ payload: z$1.ZodObject<{
237998
+ featureId: z$1.ZodString;
237999
+ name: z$1.ZodString;
238000
+ description: z$1.ZodOptional<z$1.ZodString>;
238001
+ }, "strip", z$1.ZodTypeAny, {
238002
+ name: string;
238003
+ featureId: string;
238004
+ description?: string | undefined;
238005
+ }, {
238006
+ name: string;
238007
+ featureId: string;
238008
+ description?: string | undefined;
238009
+ }>;
238010
+ }, "strip", z$1.ZodTypeAny, {
238011
+ type: "FeatureCreated";
238012
+ payload: {
238013
+ name: string;
238014
+ featureId: string;
238015
+ description?: string | undefined;
238016
+ };
238017
+ }, {
238018
+ type: "FeatureCreated";
238019
+ payload: {
238020
+ name: string;
238021
+ featureId: string;
238022
+ description?: string | undefined;
238023
+ };
238024
+ }>, z$1.ZodObject<{
238025
+ type: z$1.ZodLiteral<"FeatureDeleted">;
238026
+ payload: z$1.ZodObject<{
238027
+ featureId: z$1.ZodString;
238028
+ name: z$1.ZodString;
238029
+ }, "strip", z$1.ZodTypeAny, {
238030
+ name: string;
238031
+ featureId: string;
238032
+ }, {
238033
+ name: string;
238034
+ featureId: string;
238035
+ }>;
238036
+ }, "strip", z$1.ZodTypeAny, {
238037
+ type: "FeatureDeleted";
238038
+ payload: {
238039
+ name: string;
238040
+ featureId: string;
238041
+ };
238042
+ }, {
238043
+ type: "FeatureDeleted";
238044
+ payload: {
238045
+ name: string;
238046
+ featureId: string;
238047
+ };
238048
+ }>, z$1.ZodObject<{
238049
+ type: z$1.ZodLiteral<"DocumentCreated">;
238050
+ payload: z$1.ZodObject<{
238051
+ documentId: z$1.ZodString;
238052
+ title: z$1.ZodString;
238053
+ sectionId: z$1.ZodOptional<z$1.ZodString>;
238054
+ }, "strip", z$1.ZodTypeAny, {
238055
+ title: string;
238056
+ documentId: string;
238057
+ sectionId?: string | undefined;
238058
+ }, {
238059
+ title: string;
238060
+ documentId: string;
238061
+ sectionId?: string | undefined;
238062
+ }>;
238063
+ }, "strip", z$1.ZodTypeAny, {
238064
+ type: "DocumentCreated";
238065
+ payload: {
238066
+ title: string;
238067
+ documentId: string;
238068
+ sectionId?: string | undefined;
238069
+ };
238070
+ }, {
238071
+ type: "DocumentCreated";
238072
+ payload: {
238073
+ title: string;
238074
+ documentId: string;
238075
+ sectionId?: string | undefined;
238076
+ };
238077
+ }>, z$1.ZodObject<{
238078
+ type: z$1.ZodLiteral<"DocumentDeleted">;
238079
+ payload: z$1.ZodObject<{
238080
+ documentId: z$1.ZodString;
238081
+ title: z$1.ZodString;
238082
+ }, "strip", z$1.ZodTypeAny, {
238083
+ title: string;
238084
+ documentId: string;
238085
+ }, {
238086
+ title: string;
238087
+ documentId: string;
238088
+ }>;
238089
+ }, "strip", z$1.ZodTypeAny, {
238090
+ type: "DocumentDeleted";
238091
+ payload: {
238092
+ title: string;
238093
+ documentId: string;
238094
+ };
238095
+ }, {
238096
+ type: "DocumentDeleted";
238097
+ payload: {
238098
+ title: string;
238099
+ documentId: string;
238100
+ };
238101
+ }>, z$1.ZodObject<{
238102
+ type: z$1.ZodLiteral<"ProjectCreated">;
238103
+ payload: z$1.ZodObject<{
238104
+ name: z$1.ZodString;
238105
+ description: z$1.ZodOptional<z$1.ZodString>;
238106
+ }, "strip", z$1.ZodTypeAny, {
238107
+ name: string;
238108
+ description?: string | undefined;
238109
+ }, {
238110
+ name: string;
238111
+ description?: string | undefined;
238112
+ }>;
238113
+ }, "strip", z$1.ZodTypeAny, {
238114
+ type: "ProjectCreated";
238115
+ payload: {
238116
+ name: string;
238117
+ description?: string | undefined;
238118
+ };
238119
+ }, {
238120
+ type: "ProjectCreated";
238121
+ payload: {
238122
+ name: string;
238123
+ description?: string | undefined;
238124
+ };
238125
+ }>, z$1.ZodObject<{
238126
+ type: z$1.ZodLiteral<"ProjectArchived">;
238127
+ payload: z$1.ZodObject<{
238128
+ name: z$1.ZodString;
238129
+ }, "strip", z$1.ZodTypeAny, {
238130
+ name: string;
238131
+ }, {
238132
+ name: string;
238133
+ }>;
238134
+ }, "strip", z$1.ZodTypeAny, {
238135
+ type: "ProjectArchived";
238136
+ payload: {
238137
+ name: string;
238138
+ };
238139
+ }, {
238140
+ type: "ProjectArchived";
238141
+ payload: {
238142
+ name: string;
238143
+ };
238144
+ }>, z$1.ZodObject<{
238145
+ type: z$1.ZodLiteral<"IterationPromoted">;
238146
+ payload: z$1.ZodObject<{
238147
+ iterationId: z$1.ZodString;
238148
+ featureId: z$1.ZodString;
238149
+ iterationName: z$1.ZodString;
238150
+ }, "strip", z$1.ZodTypeAny, {
238151
+ iterationId: string;
238152
+ featureId: string;
238153
+ iterationName: string;
238154
+ }, {
238155
+ iterationId: string;
238156
+ featureId: string;
238157
+ iterationName: string;
238158
+ }>;
238159
+ }, "strip", z$1.ZodTypeAny, {
238160
+ type: "IterationPromoted";
238161
+ payload: {
238162
+ iterationId: string;
238163
+ featureId: string;
238164
+ iterationName: string;
238165
+ };
238166
+ }, {
238167
+ type: "IterationPromoted";
238168
+ payload: {
238169
+ iterationId: string;
238170
+ featureId: string;
238171
+ iterationName: string;
238172
+ };
238173
+ }>, z$1.ZodObject<{
238174
+ type: z$1.ZodLiteral<"ProjectContextCreated">;
238175
+ payload: z$1.ZodObject<{
238176
+ contextId: z$1.ZodNumber;
238177
+ name: z$1.ZodString;
238178
+ description: z$1.ZodOptional<z$1.ZodString>;
238179
+ }, "strip", z$1.ZodTypeAny, {
238180
+ name: string;
238181
+ contextId: number;
238182
+ description?: string | undefined;
238183
+ }, {
238184
+ name: string;
238185
+ contextId: number;
238186
+ description?: string | undefined;
238187
+ }>;
238188
+ }, "strip", z$1.ZodTypeAny, {
238189
+ type: "ProjectContextCreated";
238190
+ payload: {
238191
+ name: string;
238192
+ contextId: number;
238193
+ description?: string | undefined;
238194
+ };
238195
+ }, {
238196
+ type: "ProjectContextCreated";
238197
+ payload: {
238198
+ name: string;
238199
+ contextId: number;
238200
+ description?: string | undefined;
238201
+ };
238202
+ }>, z$1.ZodObject<{
238203
+ type: z$1.ZodLiteral<"ProjectContextArchived">;
238204
+ payload: z$1.ZodObject<{
238205
+ contextId: z$1.ZodNumber;
238206
+ }, "strip", z$1.ZodTypeAny, {
238207
+ contextId: number;
238208
+ }, {
238209
+ contextId: number;
238210
+ }>;
238211
+ }, "strip", z$1.ZodTypeAny, {
238212
+ type: "ProjectContextArchived";
238213
+ payload: {
238214
+ contextId: number;
238215
+ };
238216
+ }, {
238217
+ type: "ProjectContextArchived";
238218
+ payload: {
238219
+ contextId: number;
238220
+ };
238221
+ }>]>, z$1.ZodObject<{
238222
+ id: z$1.ZodString;
238223
+ projectId: z$1.ZodString;
238224
+ userId: z$1.ZodString;
238225
+ createdAt: z$1.ZodDate;
238226
+ updatedAt: z$1.ZodDate;
238227
+ }, "strip", z$1.ZodTypeAny, {
238228
+ id: string;
238229
+ createdAt: Date;
238230
+ updatedAt: Date;
238231
+ userId: string;
238232
+ projectId: string;
238233
+ }, {
238234
+ id: string;
238235
+ createdAt: Date;
238236
+ updatedAt: Date;
238237
+ userId: string;
238238
+ projectId: string;
238239
+ }>>;
238240
+ type DTOTrailEvent = z$1.infer<typeof DTOTrailEvent>;
238241
+ declare const DTOTrailEventListInput: z$1.ZodObject<{
238242
+ projectId: z$1.ZodString;
238243
+ }, "strip", z$1.ZodTypeAny, {
238244
+ projectId: string;
238245
+ }, {
238246
+ projectId: string;
238247
+ }>;
238248
+ type DTOTrailEventListInput = z$1.infer<typeof DTOTrailEventListInput>;
238249
+ declare const DTOTrailEventListResponse: z$1.ZodObject<{
238250
+ events: z$1.ZodArray<z$1.ZodIntersection<z$1.ZodDiscriminatedUnion<"type", [z$1.ZodObject<{
238251
+ type: z$1.ZodLiteral<"IterationCreated">;
238252
+ payload: z$1.ZodObject<{
238253
+ iterationName: z$1.ZodString;
238254
+ iterationId: z$1.ZodString;
238255
+ featureId: z$1.ZodString;
238256
+ }, "strip", z$1.ZodTypeAny, {
238257
+ iterationId: string;
238258
+ featureId: string;
238259
+ iterationName: string;
238260
+ }, {
238261
+ iterationId: string;
238262
+ featureId: string;
238263
+ iterationName: string;
238264
+ }>;
238265
+ }, "strip", z$1.ZodTypeAny, {
238266
+ type: "IterationCreated";
238267
+ payload: {
238268
+ iterationId: string;
238269
+ featureId: string;
238270
+ iterationName: string;
238271
+ };
238272
+ }, {
238273
+ type: "IterationCreated";
238274
+ payload: {
238275
+ iterationId: string;
238276
+ featureId: string;
238277
+ iterationName: string;
238278
+ };
238279
+ }>, z$1.ZodObject<{
238280
+ type: z$1.ZodLiteral<"IterationBookmarked">;
238281
+ payload: z$1.ZodObject<{
238282
+ iterationId: z$1.ZodString;
238283
+ featureId: z$1.ZodString;
238284
+ iterationName: z$1.ZodString;
238285
+ }, "strip", z$1.ZodTypeAny, {
238286
+ iterationId: string;
238287
+ featureId: string;
238288
+ iterationName: string;
238289
+ }, {
238290
+ iterationId: string;
238291
+ featureId: string;
238292
+ iterationName: string;
238293
+ }>;
238294
+ }, "strip", z$1.ZodTypeAny, {
238295
+ type: "IterationBookmarked";
238296
+ payload: {
238297
+ iterationId: string;
238298
+ featureId: string;
238299
+ iterationName: string;
238300
+ };
238301
+ }, {
238302
+ type: "IterationBookmarked";
238303
+ payload: {
238304
+ iterationId: string;
238305
+ featureId: string;
238306
+ iterationName: string;
238307
+ };
238308
+ }>, z$1.ZodObject<{
238309
+ type: z$1.ZodLiteral<"FeatureCreated">;
238310
+ payload: z$1.ZodObject<{
238311
+ featureId: z$1.ZodString;
238312
+ name: z$1.ZodString;
238313
+ description: z$1.ZodOptional<z$1.ZodString>;
238314
+ }, "strip", z$1.ZodTypeAny, {
238315
+ name: string;
238316
+ featureId: string;
238317
+ description?: string | undefined;
238318
+ }, {
238319
+ name: string;
238320
+ featureId: string;
238321
+ description?: string | undefined;
238322
+ }>;
238323
+ }, "strip", z$1.ZodTypeAny, {
238324
+ type: "FeatureCreated";
238325
+ payload: {
238326
+ name: string;
238327
+ featureId: string;
238328
+ description?: string | undefined;
238329
+ };
238330
+ }, {
238331
+ type: "FeatureCreated";
238332
+ payload: {
238333
+ name: string;
238334
+ featureId: string;
238335
+ description?: string | undefined;
238336
+ };
238337
+ }>, z$1.ZodObject<{
238338
+ type: z$1.ZodLiteral<"FeatureDeleted">;
238339
+ payload: z$1.ZodObject<{
238340
+ featureId: z$1.ZodString;
238341
+ name: z$1.ZodString;
238342
+ }, "strip", z$1.ZodTypeAny, {
238343
+ name: string;
238344
+ featureId: string;
238345
+ }, {
238346
+ name: string;
238347
+ featureId: string;
238348
+ }>;
238349
+ }, "strip", z$1.ZodTypeAny, {
238350
+ type: "FeatureDeleted";
238351
+ payload: {
238352
+ name: string;
238353
+ featureId: string;
238354
+ };
238355
+ }, {
238356
+ type: "FeatureDeleted";
238357
+ payload: {
238358
+ name: string;
238359
+ featureId: string;
238360
+ };
238361
+ }>, z$1.ZodObject<{
238362
+ type: z$1.ZodLiteral<"DocumentCreated">;
238363
+ payload: z$1.ZodObject<{
238364
+ documentId: z$1.ZodString;
238365
+ title: z$1.ZodString;
238366
+ sectionId: z$1.ZodOptional<z$1.ZodString>;
238367
+ }, "strip", z$1.ZodTypeAny, {
238368
+ title: string;
238369
+ documentId: string;
238370
+ sectionId?: string | undefined;
238371
+ }, {
238372
+ title: string;
238373
+ documentId: string;
238374
+ sectionId?: string | undefined;
238375
+ }>;
238376
+ }, "strip", z$1.ZodTypeAny, {
238377
+ type: "DocumentCreated";
238378
+ payload: {
238379
+ title: string;
238380
+ documentId: string;
238381
+ sectionId?: string | undefined;
238382
+ };
238383
+ }, {
238384
+ type: "DocumentCreated";
238385
+ payload: {
238386
+ title: string;
238387
+ documentId: string;
238388
+ sectionId?: string | undefined;
238389
+ };
238390
+ }>, z$1.ZodObject<{
238391
+ type: z$1.ZodLiteral<"DocumentDeleted">;
238392
+ payload: z$1.ZodObject<{
238393
+ documentId: z$1.ZodString;
238394
+ title: z$1.ZodString;
238395
+ }, "strip", z$1.ZodTypeAny, {
238396
+ title: string;
238397
+ documentId: string;
238398
+ }, {
238399
+ title: string;
238400
+ documentId: string;
238401
+ }>;
238402
+ }, "strip", z$1.ZodTypeAny, {
238403
+ type: "DocumentDeleted";
238404
+ payload: {
238405
+ title: string;
238406
+ documentId: string;
238407
+ };
238408
+ }, {
238409
+ type: "DocumentDeleted";
238410
+ payload: {
238411
+ title: string;
238412
+ documentId: string;
238413
+ };
238414
+ }>, z$1.ZodObject<{
238415
+ type: z$1.ZodLiteral<"ProjectCreated">;
238416
+ payload: z$1.ZodObject<{
238417
+ name: z$1.ZodString;
238418
+ description: z$1.ZodOptional<z$1.ZodString>;
238419
+ }, "strip", z$1.ZodTypeAny, {
238420
+ name: string;
238421
+ description?: string | undefined;
238422
+ }, {
238423
+ name: string;
238424
+ description?: string | undefined;
238425
+ }>;
238426
+ }, "strip", z$1.ZodTypeAny, {
238427
+ type: "ProjectCreated";
238428
+ payload: {
238429
+ name: string;
238430
+ description?: string | undefined;
238431
+ };
238432
+ }, {
238433
+ type: "ProjectCreated";
238434
+ payload: {
238435
+ name: string;
238436
+ description?: string | undefined;
238437
+ };
238438
+ }>, z$1.ZodObject<{
238439
+ type: z$1.ZodLiteral<"ProjectArchived">;
238440
+ payload: z$1.ZodObject<{
238441
+ name: z$1.ZodString;
238442
+ }, "strip", z$1.ZodTypeAny, {
238443
+ name: string;
238444
+ }, {
238445
+ name: string;
238446
+ }>;
238447
+ }, "strip", z$1.ZodTypeAny, {
238448
+ type: "ProjectArchived";
238449
+ payload: {
238450
+ name: string;
238451
+ };
238452
+ }, {
238453
+ type: "ProjectArchived";
238454
+ payload: {
238455
+ name: string;
238456
+ };
238457
+ }>, z$1.ZodObject<{
238458
+ type: z$1.ZodLiteral<"IterationPromoted">;
238459
+ payload: z$1.ZodObject<{
238460
+ iterationId: z$1.ZodString;
238461
+ featureId: z$1.ZodString;
238462
+ iterationName: z$1.ZodString;
238463
+ }, "strip", z$1.ZodTypeAny, {
238464
+ iterationId: string;
238465
+ featureId: string;
238466
+ iterationName: string;
238467
+ }, {
238468
+ iterationId: string;
238469
+ featureId: string;
238470
+ iterationName: string;
238471
+ }>;
238472
+ }, "strip", z$1.ZodTypeAny, {
238473
+ type: "IterationPromoted";
238474
+ payload: {
238475
+ iterationId: string;
238476
+ featureId: string;
238477
+ iterationName: string;
238478
+ };
238479
+ }, {
238480
+ type: "IterationPromoted";
238481
+ payload: {
238482
+ iterationId: string;
238483
+ featureId: string;
238484
+ iterationName: string;
238485
+ };
238486
+ }>, z$1.ZodObject<{
238487
+ type: z$1.ZodLiteral<"ProjectContextCreated">;
238488
+ payload: z$1.ZodObject<{
238489
+ contextId: z$1.ZodNumber;
238490
+ name: z$1.ZodString;
238491
+ description: z$1.ZodOptional<z$1.ZodString>;
238492
+ }, "strip", z$1.ZodTypeAny, {
238493
+ name: string;
238494
+ contextId: number;
238495
+ description?: string | undefined;
238496
+ }, {
238497
+ name: string;
238498
+ contextId: number;
238499
+ description?: string | undefined;
238500
+ }>;
238501
+ }, "strip", z$1.ZodTypeAny, {
238502
+ type: "ProjectContextCreated";
238503
+ payload: {
238504
+ name: string;
238505
+ contextId: number;
238506
+ description?: string | undefined;
238507
+ };
238508
+ }, {
238509
+ type: "ProjectContextCreated";
238510
+ payload: {
238511
+ name: string;
238512
+ contextId: number;
238513
+ description?: string | undefined;
238514
+ };
238515
+ }>, z$1.ZodObject<{
238516
+ type: z$1.ZodLiteral<"ProjectContextArchived">;
238517
+ payload: z$1.ZodObject<{
238518
+ contextId: z$1.ZodNumber;
238519
+ }, "strip", z$1.ZodTypeAny, {
238520
+ contextId: number;
238521
+ }, {
238522
+ contextId: number;
238523
+ }>;
238524
+ }, "strip", z$1.ZodTypeAny, {
238525
+ type: "ProjectContextArchived";
238526
+ payload: {
238527
+ contextId: number;
238528
+ };
238529
+ }, {
238530
+ type: "ProjectContextArchived";
238531
+ payload: {
238532
+ contextId: number;
238533
+ };
238534
+ }>]>, z$1.ZodObject<{
238535
+ id: z$1.ZodString;
238536
+ projectId: z$1.ZodString;
238537
+ userId: z$1.ZodString;
238538
+ createdAt: z$1.ZodDate;
238539
+ updatedAt: z$1.ZodDate;
238540
+ }, "strip", z$1.ZodTypeAny, {
238541
+ id: string;
238542
+ createdAt: Date;
238543
+ updatedAt: Date;
238544
+ userId: string;
238545
+ projectId: string;
238546
+ }, {
238547
+ id: string;
238548
+ createdAt: Date;
238549
+ updatedAt: Date;
238550
+ userId: string;
238551
+ projectId: string;
238552
+ }>>, "many">;
238553
+ }, "strip", z$1.ZodTypeAny, {
238554
+ events: (({
238555
+ type: "IterationCreated";
238556
+ payload: {
238557
+ iterationId: string;
238558
+ featureId: string;
238559
+ iterationName: string;
238560
+ };
238561
+ } | {
238562
+ type: "IterationBookmarked";
238563
+ payload: {
238564
+ iterationId: string;
238565
+ featureId: string;
238566
+ iterationName: string;
238567
+ };
238568
+ } | {
238569
+ type: "FeatureCreated";
238570
+ payload: {
238571
+ name: string;
238572
+ featureId: string;
238573
+ description?: string | undefined;
238574
+ };
238575
+ } | {
238576
+ type: "FeatureDeleted";
238577
+ payload: {
238578
+ name: string;
238579
+ featureId: string;
238580
+ };
238581
+ } | {
238582
+ type: "DocumentCreated";
238583
+ payload: {
238584
+ title: string;
238585
+ documentId: string;
238586
+ sectionId?: string | undefined;
238587
+ };
238588
+ } | {
238589
+ type: "DocumentDeleted";
238590
+ payload: {
238591
+ title: string;
238592
+ documentId: string;
238593
+ };
238594
+ } | {
238595
+ type: "ProjectCreated";
238596
+ payload: {
238597
+ name: string;
238598
+ description?: string | undefined;
238599
+ };
238600
+ } | {
238601
+ type: "ProjectArchived";
238602
+ payload: {
238603
+ name: string;
238604
+ };
238605
+ } | {
238606
+ type: "IterationPromoted";
238607
+ payload: {
238608
+ iterationId: string;
238609
+ featureId: string;
238610
+ iterationName: string;
238611
+ };
238612
+ } | {
238613
+ type: "ProjectContextCreated";
238614
+ payload: {
238615
+ name: string;
238616
+ contextId: number;
238617
+ description?: string | undefined;
238618
+ };
238619
+ } | {
238620
+ type: "ProjectContextArchived";
238621
+ payload: {
238622
+ contextId: number;
238623
+ };
238624
+ }) & {
238625
+ id: string;
238626
+ createdAt: Date;
238627
+ updatedAt: Date;
238628
+ userId: string;
238629
+ projectId: string;
238630
+ })[];
238631
+ }, {
238632
+ events: (({
238633
+ type: "IterationCreated";
238634
+ payload: {
238635
+ iterationId: string;
238636
+ featureId: string;
238637
+ iterationName: string;
238638
+ };
238639
+ } | {
238640
+ type: "IterationBookmarked";
238641
+ payload: {
238642
+ iterationId: string;
238643
+ featureId: string;
238644
+ iterationName: string;
238645
+ };
238646
+ } | {
238647
+ type: "FeatureCreated";
238648
+ payload: {
238649
+ name: string;
238650
+ featureId: string;
238651
+ description?: string | undefined;
238652
+ };
238653
+ } | {
238654
+ type: "FeatureDeleted";
238655
+ payload: {
238656
+ name: string;
238657
+ featureId: string;
238658
+ };
238659
+ } | {
238660
+ type: "DocumentCreated";
238661
+ payload: {
238662
+ title: string;
238663
+ documentId: string;
238664
+ sectionId?: string | undefined;
238665
+ };
238666
+ } | {
238667
+ type: "DocumentDeleted";
238668
+ payload: {
238669
+ title: string;
238670
+ documentId: string;
238671
+ };
238672
+ } | {
238673
+ type: "ProjectCreated";
238674
+ payload: {
238675
+ name: string;
238676
+ description?: string | undefined;
238677
+ };
238678
+ } | {
238679
+ type: "ProjectArchived";
238680
+ payload: {
238681
+ name: string;
238682
+ };
238683
+ } | {
238684
+ type: "IterationPromoted";
238685
+ payload: {
238686
+ iterationId: string;
238687
+ featureId: string;
238688
+ iterationName: string;
238689
+ };
238690
+ } | {
238691
+ type: "ProjectContextCreated";
238692
+ payload: {
238693
+ name: string;
238694
+ contextId: number;
238695
+ description?: string | undefined;
238696
+ };
238697
+ } | {
238698
+ type: "ProjectContextArchived";
238699
+ payload: {
238700
+ contextId: number;
238701
+ };
238702
+ }) & {
238703
+ id: string;
238704
+ createdAt: Date;
238705
+ updatedAt: Date;
238706
+ userId: string;
238707
+ projectId: string;
238708
+ })[];
238709
+ }>;
238710
+ type DTOTrailEventListResponse = z$1.infer<typeof DTOTrailEventListResponse>;
238711
+ declare const DTOTrailEventType: z$1.ZodEnum<["IterationCreated", "IterationBookmarked", "FeatureCreated", "FeatureDeleted", "DocumentCreated", "DocumentDeleted", "ProjectCreated", "ProjectArchived", "IterationPromoted", "ProjectContextCreated", "ProjectContextArchived"]>;
238712
+ type DTOTrailEventType = z$1.infer<typeof DTOTrailEventType>;
238713
+ declare const DTOTrailEventCreate: z$1.ZodIntersection<z$1.ZodDiscriminatedUnion<"type", [z$1.ZodObject<{
238714
+ type: z$1.ZodLiteral<"IterationCreated">;
238715
+ payload: z$1.ZodObject<{
238716
+ iterationName: z$1.ZodString;
238717
+ iterationId: z$1.ZodString;
238718
+ featureId: z$1.ZodString;
238719
+ }, "strip", z$1.ZodTypeAny, {
238720
+ iterationId: string;
238721
+ featureId: string;
238722
+ iterationName: string;
238723
+ }, {
238724
+ iterationId: string;
238725
+ featureId: string;
238726
+ iterationName: string;
238727
+ }>;
238728
+ }, "strip", z$1.ZodTypeAny, {
238729
+ type: "IterationCreated";
238730
+ payload: {
238731
+ iterationId: string;
238732
+ featureId: string;
238733
+ iterationName: string;
238734
+ };
238735
+ }, {
238736
+ type: "IterationCreated";
238737
+ payload: {
238738
+ iterationId: string;
238739
+ featureId: string;
238740
+ iterationName: string;
238741
+ };
238742
+ }>, z$1.ZodObject<{
238743
+ type: z$1.ZodLiteral<"IterationBookmarked">;
238744
+ payload: z$1.ZodObject<{
238745
+ iterationId: z$1.ZodString;
238746
+ featureId: z$1.ZodString;
238747
+ iterationName: z$1.ZodString;
238748
+ }, "strip", z$1.ZodTypeAny, {
238749
+ iterationId: string;
238750
+ featureId: string;
238751
+ iterationName: string;
238752
+ }, {
238753
+ iterationId: string;
238754
+ featureId: string;
238755
+ iterationName: string;
238756
+ }>;
238757
+ }, "strip", z$1.ZodTypeAny, {
238758
+ type: "IterationBookmarked";
238759
+ payload: {
238760
+ iterationId: string;
238761
+ featureId: string;
238762
+ iterationName: string;
238763
+ };
238764
+ }, {
238765
+ type: "IterationBookmarked";
238766
+ payload: {
238767
+ iterationId: string;
238768
+ featureId: string;
238769
+ iterationName: string;
238770
+ };
238771
+ }>, z$1.ZodObject<{
238772
+ type: z$1.ZodLiteral<"FeatureCreated">;
238773
+ payload: z$1.ZodObject<{
238774
+ featureId: z$1.ZodString;
238775
+ name: z$1.ZodString;
238776
+ description: z$1.ZodOptional<z$1.ZodString>;
238777
+ }, "strip", z$1.ZodTypeAny, {
238778
+ name: string;
238779
+ featureId: string;
238780
+ description?: string | undefined;
238781
+ }, {
238782
+ name: string;
238783
+ featureId: string;
238784
+ description?: string | undefined;
238785
+ }>;
238786
+ }, "strip", z$1.ZodTypeAny, {
238787
+ type: "FeatureCreated";
238788
+ payload: {
238789
+ name: string;
238790
+ featureId: string;
238791
+ description?: string | undefined;
238792
+ };
238793
+ }, {
238794
+ type: "FeatureCreated";
238795
+ payload: {
238796
+ name: string;
238797
+ featureId: string;
238798
+ description?: string | undefined;
238799
+ };
238800
+ }>, z$1.ZodObject<{
238801
+ type: z$1.ZodLiteral<"FeatureDeleted">;
238802
+ payload: z$1.ZodObject<{
238803
+ featureId: z$1.ZodString;
238804
+ name: z$1.ZodString;
238805
+ }, "strip", z$1.ZodTypeAny, {
238806
+ name: string;
238807
+ featureId: string;
238808
+ }, {
238809
+ name: string;
238810
+ featureId: string;
238811
+ }>;
238812
+ }, "strip", z$1.ZodTypeAny, {
238813
+ type: "FeatureDeleted";
238814
+ payload: {
238815
+ name: string;
238816
+ featureId: string;
238817
+ };
238818
+ }, {
238819
+ type: "FeatureDeleted";
238820
+ payload: {
238821
+ name: string;
238822
+ featureId: string;
238823
+ };
238824
+ }>, z$1.ZodObject<{
238825
+ type: z$1.ZodLiteral<"DocumentCreated">;
238826
+ payload: z$1.ZodObject<{
238827
+ documentId: z$1.ZodString;
238828
+ title: z$1.ZodString;
238829
+ sectionId: z$1.ZodOptional<z$1.ZodString>;
238830
+ }, "strip", z$1.ZodTypeAny, {
238831
+ title: string;
238832
+ documentId: string;
238833
+ sectionId?: string | undefined;
238834
+ }, {
238835
+ title: string;
238836
+ documentId: string;
238837
+ sectionId?: string | undefined;
238838
+ }>;
238839
+ }, "strip", z$1.ZodTypeAny, {
238840
+ type: "DocumentCreated";
238841
+ payload: {
238842
+ title: string;
238843
+ documentId: string;
238844
+ sectionId?: string | undefined;
238845
+ };
238846
+ }, {
238847
+ type: "DocumentCreated";
238848
+ payload: {
238849
+ title: string;
238850
+ documentId: string;
238851
+ sectionId?: string | undefined;
238852
+ };
238853
+ }>, z$1.ZodObject<{
238854
+ type: z$1.ZodLiteral<"DocumentDeleted">;
238855
+ payload: z$1.ZodObject<{
238856
+ documentId: z$1.ZodString;
238857
+ title: z$1.ZodString;
238858
+ }, "strip", z$1.ZodTypeAny, {
238859
+ title: string;
238860
+ documentId: string;
238861
+ }, {
238862
+ title: string;
238863
+ documentId: string;
238864
+ }>;
238865
+ }, "strip", z$1.ZodTypeAny, {
238866
+ type: "DocumentDeleted";
238867
+ payload: {
238868
+ title: string;
238869
+ documentId: string;
238870
+ };
238871
+ }, {
238872
+ type: "DocumentDeleted";
238873
+ payload: {
238874
+ title: string;
238875
+ documentId: string;
238876
+ };
238877
+ }>, z$1.ZodObject<{
238878
+ type: z$1.ZodLiteral<"ProjectCreated">;
238879
+ payload: z$1.ZodObject<{
238880
+ name: z$1.ZodString;
238881
+ description: z$1.ZodOptional<z$1.ZodString>;
238882
+ }, "strip", z$1.ZodTypeAny, {
238883
+ name: string;
238884
+ description?: string | undefined;
238885
+ }, {
238886
+ name: string;
238887
+ description?: string | undefined;
238888
+ }>;
238889
+ }, "strip", z$1.ZodTypeAny, {
238890
+ type: "ProjectCreated";
238891
+ payload: {
238892
+ name: string;
238893
+ description?: string | undefined;
238894
+ };
238895
+ }, {
238896
+ type: "ProjectCreated";
238897
+ payload: {
238898
+ name: string;
238899
+ description?: string | undefined;
238900
+ };
238901
+ }>, z$1.ZodObject<{
238902
+ type: z$1.ZodLiteral<"ProjectArchived">;
238903
+ payload: z$1.ZodObject<{
238904
+ name: z$1.ZodString;
238905
+ }, "strip", z$1.ZodTypeAny, {
238906
+ name: string;
238907
+ }, {
238908
+ name: string;
238909
+ }>;
238910
+ }, "strip", z$1.ZodTypeAny, {
238911
+ type: "ProjectArchived";
238912
+ payload: {
238913
+ name: string;
238914
+ };
238915
+ }, {
238916
+ type: "ProjectArchived";
238917
+ payload: {
238918
+ name: string;
238919
+ };
238920
+ }>, z$1.ZodObject<{
238921
+ type: z$1.ZodLiteral<"IterationPromoted">;
238922
+ payload: z$1.ZodObject<{
238923
+ iterationId: z$1.ZodString;
238924
+ featureId: z$1.ZodString;
238925
+ iterationName: z$1.ZodString;
238926
+ }, "strip", z$1.ZodTypeAny, {
238927
+ iterationId: string;
238928
+ featureId: string;
238929
+ iterationName: string;
238930
+ }, {
238931
+ iterationId: string;
238932
+ featureId: string;
238933
+ iterationName: string;
238934
+ }>;
238935
+ }, "strip", z$1.ZodTypeAny, {
238936
+ type: "IterationPromoted";
238937
+ payload: {
238938
+ iterationId: string;
238939
+ featureId: string;
238940
+ iterationName: string;
238941
+ };
238942
+ }, {
238943
+ type: "IterationPromoted";
238944
+ payload: {
238945
+ iterationId: string;
238946
+ featureId: string;
238947
+ iterationName: string;
238948
+ };
238949
+ }>, z$1.ZodObject<{
238950
+ type: z$1.ZodLiteral<"ProjectContextCreated">;
238951
+ payload: z$1.ZodObject<{
238952
+ contextId: z$1.ZodNumber;
238953
+ name: z$1.ZodString;
238954
+ description: z$1.ZodOptional<z$1.ZodString>;
238955
+ }, "strip", z$1.ZodTypeAny, {
238956
+ name: string;
238957
+ contextId: number;
238958
+ description?: string | undefined;
238959
+ }, {
238960
+ name: string;
238961
+ contextId: number;
238962
+ description?: string | undefined;
238963
+ }>;
238964
+ }, "strip", z$1.ZodTypeAny, {
238965
+ type: "ProjectContextCreated";
238966
+ payload: {
238967
+ name: string;
238968
+ contextId: number;
238969
+ description?: string | undefined;
238970
+ };
238971
+ }, {
238972
+ type: "ProjectContextCreated";
238973
+ payload: {
238974
+ name: string;
238975
+ contextId: number;
238976
+ description?: string | undefined;
238977
+ };
238978
+ }>, z$1.ZodObject<{
238979
+ type: z$1.ZodLiteral<"ProjectContextArchived">;
238980
+ payload: z$1.ZodObject<{
238981
+ contextId: z$1.ZodNumber;
238982
+ }, "strip", z$1.ZodTypeAny, {
238983
+ contextId: number;
238984
+ }, {
238985
+ contextId: number;
238986
+ }>;
238987
+ }, "strip", z$1.ZodTypeAny, {
238988
+ type: "ProjectContextArchived";
238989
+ payload: {
238990
+ contextId: number;
238991
+ };
238992
+ }, {
238993
+ type: "ProjectContextArchived";
238994
+ payload: {
238995
+ contextId: number;
238996
+ };
238997
+ }>]>, z$1.ZodObject<Omit<{
238998
+ id: z$1.ZodString;
238999
+ projectId: z$1.ZodString;
239000
+ userId: z$1.ZodString;
239001
+ createdAt: z$1.ZodDate;
239002
+ updatedAt: z$1.ZodDate;
239003
+ }, "id" | "createdAt" | "updatedAt">, "strip", z$1.ZodTypeAny, {
239004
+ userId: string;
239005
+ projectId: string;
239006
+ }, {
239007
+ userId: string;
239008
+ projectId: string;
239009
+ }>>;
239010
+ type DTOTrailEventCreate = z$1.infer<typeof DTOTrailEventCreate>;
239011
+
237815
239012
  declare const DTOUserOnboardingDepartment: z$1.ZodEnum<["Design", "Engineering", "Product", "Brand", "Other"]>;
237816
239013
  type DTOUserOnboardingDepartment = z$1.infer<typeof DTOUserOnboardingDepartment>;
237817
239014
  declare const DTOUserOnboardingJobLevel: z$1.ZodEnum<["Executive", "Manager", "IndividualContributor", "Other"]>;
@@ -255104,7 +256301,7 @@ declare class FigmaFrameStructuresEndpoint {
255104
256301
  }>;
255105
256302
  }
255106
256303
 
255107
- declare class FilesEndpoint {
256304
+ declare class DesignSystemFilesEndpoint {
255108
256305
  private readonly requestExecutor;
255109
256306
  constructor(requestExecutor: RequestExecutor);
255110
256307
  upload(designSystemId: string, versionId: string, body: DTOFileUploadPayload): Promise<{
@@ -256878,7 +258075,7 @@ declare class DesignSystemVersionsEndpoint {
256878
258075
  readonly designSystemComponents: DesignSystemComponentEndpoint;
256879
258076
  readonly documentation: DocumentationEndpoint;
256880
258077
  readonly codeComponents: CodeComponentsEndpoint;
256881
- readonly files: FilesEndpoint;
258078
+ readonly files: DesignSystemFilesEndpoint;
256882
258079
  constructor(requestExecutor: RequestExecutor);
256883
258080
  list(dsId: string): Promise<{
256884
258081
  designSystemVersions: {
@@ -258135,37 +259332,82 @@ declare class DesignSystemsEndpoint {
258135
259332
  effectiveRole?: "Admin" | "Creator" | "Viewer" | "Contributor" | undefined;
258136
259333
  };
258137
259334
  }>;
258138
- updateAccessMode(dsId: string, body: DTODesignSystemUpdateAccessModeInput): Promise<{
258139
- designSystem: {
259335
+ updateAccessMode(dsId: string, body: DTODesignSystemUpdateAccessModeInput): Promise<{
259336
+ designSystem: {
259337
+ id: string;
259338
+ createdAt: Date;
259339
+ meta: {
259340
+ name: string;
259341
+ description?: string | undefined;
259342
+ };
259343
+ updatedAt: Date;
259344
+ sources: any[];
259345
+ workspaceId: string;
259346
+ docExporterId: string;
259347
+ docSlug: string;
259348
+ docSlugDeprecated: string;
259349
+ isMultibrand: boolean;
259350
+ basePrefixes: string[];
259351
+ isApprovalFeatureEnabled: boolean;
259352
+ approvalRequiredForPublishing: boolean;
259353
+ accessMode: "Open" | "InviteOnly";
259354
+ membersGenerated: boolean;
259355
+ isPublic: true;
259356
+ isAvailableToUser: boolean;
259357
+ docUserSlug?: string | undefined;
259358
+ docViewUrl?: string | undefined;
259359
+ designSystemSwitcher?: {
259360
+ isEnabled: boolean;
259361
+ designSystemIds: string[];
259362
+ } | undefined;
259363
+ role?: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor" | undefined;
259364
+ effectiveRole?: "Admin" | "Creator" | "Viewer" | "Contributor" | undefined;
259365
+ };
259366
+ }>;
259367
+ }
259368
+
259369
+ declare class FilesEndpoint {
259370
+ private readonly requestExecutor;
259371
+ constructor(requestExecutor: RequestExecutor);
259372
+ upload(body: DTOFileUploadBulkPayload): Promise<{
259373
+ files: {
258140
259374
  id: string;
258141
- createdAt: Date;
258142
- meta: {
258143
- name: string;
258144
- description?: string | undefined;
258145
- };
258146
- updatedAt: Date;
258147
- sources: any[];
258148
- workspaceId: string;
258149
- docExporterId: string;
258150
- docSlug: string;
258151
- docSlugDeprecated: string;
258152
- isMultibrand: boolean;
258153
- basePrefixes: string[];
258154
- isApprovalFeatureEnabled: boolean;
258155
- approvalRequiredForPublishing: boolean;
258156
- accessMode: "Open" | "InviteOnly";
258157
- membersGenerated: boolean;
258158
- isPublic: true;
258159
- isAvailableToUser: boolean;
258160
- docUserSlug?: string | undefined;
258161
- docViewUrl?: string | undefined;
258162
- designSystemSwitcher?: {
258163
- isEnabled: boolean;
258164
- designSystemIds: string[];
259375
+ name: string;
259376
+ url: string;
259377
+ size: number;
259378
+ deduplicationKey: string;
259379
+ storagePath: string;
259380
+ source?: {
259381
+ type: "UserUpload";
259382
+ userId: string;
259383
+ } | {
259384
+ type: "Figma";
259385
+ renderMode: "Image" | "HTML";
258165
259386
  } | undefined;
258166
- role?: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor" | undefined;
258167
- effectiveRole?: "Admin" | "Creator" | "Viewer" | "Contributor" | undefined;
258168
- };
259387
+ pendingUpload?: boolean | undefined;
259388
+ }[];
259389
+ uploadUrls: {
259390
+ fileId: string;
259391
+ uploadUrl: string;
259392
+ }[];
259393
+ }>;
259394
+ finalizeUpload(body: DTOFileFinalizeBulkPayload): Promise<{
259395
+ files: {
259396
+ id: string;
259397
+ name: string;
259398
+ url: string;
259399
+ size: number;
259400
+ deduplicationKey: string;
259401
+ storagePath: string;
259402
+ source?: {
259403
+ type: "UserUpload";
259404
+ userId: string;
259405
+ } | {
259406
+ type: "Figma";
259407
+ renderMode: "Image" | "HTML";
259408
+ } | undefined;
259409
+ pendingUpload?: boolean | undefined;
259410
+ }[];
258169
259411
  }>;
258170
259412
  }
258171
259413
 
@@ -263251,6 +264493,207 @@ declare class ForgeProjectIterationsEndpoint {
263251
264493
  }>;
263252
264494
  }
263253
264495
 
264496
+ declare class LiveblocksEndpoint {
264497
+ private readonly requestExecutor;
264498
+ constructor(requestExecutor: RequestExecutor);
264499
+ auth(body: DTOLiveblocksAuthRequest): Promise<{
264500
+ token: string;
264501
+ }>;
264502
+ }
264503
+
264504
+ declare class UsersEndpoint {
264505
+ private readonly requestExecutor;
264506
+ constructor(requestExecutor: RequestExecutor);
264507
+ getMe(): Promise<{
264508
+ user: {
264509
+ id: string;
264510
+ createdAt: Date;
264511
+ email: string;
264512
+ profile: {
264513
+ name: string;
264514
+ nickname?: string | undefined;
264515
+ avatar?: string | undefined;
264516
+ onboarding?: {
264517
+ companyName?: string | undefined;
264518
+ numberOfPeopleInOrg?: string | undefined;
264519
+ numberOfPeopleInDesignTeam?: string | undefined;
264520
+ department?: "Design" | "Engineering" | "Product" | "Brand" | "Other" | undefined;
264521
+ jobTitle?: string | undefined;
264522
+ phase?: string | undefined;
264523
+ jobLevel?: "Other" | "Executive" | "Manager" | "IndividualContributor" | undefined;
264524
+ designSystemName?: string | undefined;
264525
+ defaultDestination?: string | undefined;
264526
+ isPageDraftOnboardingFinished?: boolean | undefined;
264527
+ } | undefined;
264528
+ theme?: {
264529
+ backgroundColor?: string | undefined;
264530
+ accentColor?: string | undefined;
264531
+ contrast?: number | undefined;
264532
+ isSecondaryEnabled?: boolean | undefined;
264533
+ secondaryBackgroundColor?: string | undefined;
264534
+ secondaryContrast?: number | undefined;
264535
+ isEditorWhite?: boolean | undefined;
264536
+ preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
264537
+ } | undefined;
264538
+ };
264539
+ loggedOutAt?: Date | undefined;
264540
+ source?: "SignUp" | "Invite" | "SSO" | undefined;
264541
+ };
264542
+ }>;
264543
+ listWorkspaces(uid: string): Promise<{
264544
+ membership: {
264545
+ workspace: {
264546
+ id: string;
264547
+ profile: {
264548
+ name: string;
264549
+ color: string;
264550
+ handle: string;
264551
+ avatar?: string | undefined;
264552
+ billingDetails?: {
264553
+ address?: {
264554
+ state?: string | undefined;
264555
+ street1?: string | undefined;
264556
+ street2?: string | undefined;
264557
+ city?: string | undefined;
264558
+ postal?: string | undefined;
264559
+ country?: string | undefined;
264560
+ } | undefined;
264561
+ email?: string | undefined;
264562
+ notes?: string | undefined;
264563
+ companyName?: string | undefined;
264564
+ companyId?: string | undefined;
264565
+ vat?: string | undefined;
264566
+ poNumber?: string | undefined;
264567
+ } | undefined;
264568
+ };
264569
+ subscription: {
264570
+ product: "company" | "enterprise" | "free" | "team" | "pro";
264571
+ seats: number;
264572
+ seatLimit: number;
264573
+ planPriceId: string;
264574
+ planInterval: "daily" | "monthly" | "weekly" | "yearly";
264575
+ status?: NonNullable<"active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free"> | undefined;
264576
+ card?: {
264577
+ name?: string | null | undefined;
264578
+ cardId?: string | null | undefined;
264579
+ last4?: string | null | undefined;
264580
+ expiryMonth?: string | null | undefined;
264581
+ expiryYear?: string | null | undefined;
264582
+ brand?: string | null | undefined;
264583
+ } | undefined;
264584
+ monthlyCreditGrantAnchor?: string | undefined;
264585
+ monthlyCreditGrantAmount?: number | undefined;
264586
+ builderSeatLimit?: number | undefined;
264587
+ fullSeatLimit?: number | undefined;
264588
+ builderSeats?: number | undefined;
264589
+ fullSeats?: number | undefined;
264590
+ subscriptionStatus?: NonNullable<"unknown" | "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete"> | undefined;
264591
+ internalStatus?: NonNullable<"active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free"> | undefined;
264592
+ stripeSubscriptionId?: string | undefined;
264593
+ stripeCustomerId?: string | undefined;
264594
+ currentPeriodStart?: string | undefined;
264595
+ currentPeriodEnd?: string | undefined;
264596
+ cancelAt?: string | undefined;
264597
+ fullSeatPriceId?: string | undefined;
264598
+ builderSeatPriceId?: string | undefined;
264599
+ subscriptionStatusUpdatedAt?: string | undefined;
264600
+ };
264601
+ aiFeaturesEnabled: boolean;
264602
+ aiAskFeaturesEnabled: boolean;
264603
+ npmRegistry?: {
264604
+ registryType: "Artifactory" | "Custom" | "NPMJS" | "GitHub" | "AzureDevOps";
264605
+ registryUrl: string;
264606
+ proxyUrl: string;
264607
+ authType: "Custom" | "None" | "Basic" | "Bearer";
264608
+ enabledScopes: string[];
264609
+ bypassProxy: boolean;
264610
+ accessToken?: string | undefined;
264611
+ username?: string | undefined;
264612
+ customRegistryUrl?: string | undefined;
264613
+ password?: string | undefined;
264614
+ } | undefined;
264615
+ aiCustomInstruction?: string | undefined;
264616
+ };
264617
+ role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
264618
+ effectiveRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
264619
+ seatType: "Full" | "Builder" | "None";
264620
+ effectiveSeatType: "Full" | "Builder" | "None";
264621
+ }[];
264622
+ }>;
264623
+ delete(uid: string): Promise<{
264624
+ user: {
264625
+ id: string;
264626
+ createdAt: Date;
264627
+ email: string;
264628
+ profile: {
264629
+ name: string;
264630
+ nickname?: string | undefined;
264631
+ avatar?: string | undefined;
264632
+ onboarding?: {
264633
+ companyName?: string | undefined;
264634
+ numberOfPeopleInOrg?: string | undefined;
264635
+ numberOfPeopleInDesignTeam?: string | undefined;
264636
+ department?: "Design" | "Engineering" | "Product" | "Brand" | "Other" | undefined;
264637
+ jobTitle?: string | undefined;
264638
+ phase?: string | undefined;
264639
+ jobLevel?: "Other" | "Executive" | "Manager" | "IndividualContributor" | undefined;
264640
+ designSystemName?: string | undefined;
264641
+ defaultDestination?: string | undefined;
264642
+ isPageDraftOnboardingFinished?: boolean | undefined;
264643
+ } | undefined;
264644
+ theme?: {
264645
+ backgroundColor?: string | undefined;
264646
+ accentColor?: string | undefined;
264647
+ contrast?: number | undefined;
264648
+ isSecondaryEnabled?: boolean | undefined;
264649
+ secondaryBackgroundColor?: string | undefined;
264650
+ secondaryContrast?: number | undefined;
264651
+ isEditorWhite?: boolean | undefined;
264652
+ preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
264653
+ } | undefined;
264654
+ };
264655
+ loggedOutAt?: Date | undefined;
264656
+ source?: "SignUp" | "Invite" | "SSO" | undefined;
264657
+ };
264658
+ }>;
264659
+ updateProfile(uid: string, body: DTOUserProfileUpdate): Promise<{
264660
+ user: {
264661
+ id: string;
264662
+ createdAt: Date;
264663
+ email: string;
264664
+ profile: {
264665
+ name: string;
264666
+ nickname?: string | undefined;
264667
+ avatar?: string | undefined;
264668
+ onboarding?: {
264669
+ companyName?: string | undefined;
264670
+ numberOfPeopleInOrg?: string | undefined;
264671
+ numberOfPeopleInDesignTeam?: string | undefined;
264672
+ department?: "Design" | "Engineering" | "Product" | "Brand" | "Other" | undefined;
264673
+ jobTitle?: string | undefined;
264674
+ phase?: string | undefined;
264675
+ jobLevel?: "Other" | "Executive" | "Manager" | "IndividualContributor" | undefined;
264676
+ designSystemName?: string | undefined;
264677
+ defaultDestination?: string | undefined;
264678
+ isPageDraftOnboardingFinished?: boolean | undefined;
264679
+ } | undefined;
264680
+ theme?: {
264681
+ backgroundColor?: string | undefined;
264682
+ accentColor?: string | undefined;
264683
+ contrast?: number | undefined;
264684
+ isSecondaryEnabled?: boolean | undefined;
264685
+ secondaryBackgroundColor?: string | undefined;
264686
+ secondaryContrast?: number | undefined;
264687
+ isEditorWhite?: boolean | undefined;
264688
+ preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
264689
+ } | undefined;
264690
+ };
264691
+ loggedOutAt?: Date | undefined;
264692
+ source?: "SignUp" | "Invite" | "SSO" | undefined;
264693
+ };
264694
+ }>;
264695
+ }
264696
+
263254
264697
  declare class WorkspaceChatThreadsEndpoint {
263255
264698
  private readonly requestExecutor;
263256
264699
  readonly messages: ChatThreadMessagesEndpoint;
@@ -264112,205 +265555,110 @@ declare class WorkspacesEndpoint {
264112
265555
  }>;
264113
265556
  }
264114
265557
 
264115
- declare class LiveblocksEndpoint {
264116
- private readonly requestExecutor;
264117
- constructor(requestExecutor: RequestExecutor);
264118
- auth(body: DTOLiveblocksAuthRequest): Promise<{
264119
- token: string;
264120
- }>;
264121
- }
264122
-
264123
- declare class UsersEndpoint {
265558
+ declare class ThreadsEndpoint {
264124
265559
  private readonly requestExecutor;
264125
265560
  constructor(requestExecutor: RequestExecutor);
264126
- getMe(): Promise<{
264127
- user: {
265561
+ listMessages(threadId: string): Promise<{
265562
+ messages: {
264128
265563
  id: string;
264129
- createdAt: Date;
264130
- email: string;
264131
- profile: {
264132
- name: string;
264133
- nickname?: string | undefined;
264134
- avatar?: string | undefined;
264135
- onboarding?: {
264136
- companyName?: string | undefined;
264137
- numberOfPeopleInOrg?: string | undefined;
264138
- numberOfPeopleInDesignTeam?: string | undefined;
264139
- department?: "Design" | "Engineering" | "Product" | "Brand" | "Other" | undefined;
264140
- jobTitle?: string | undefined;
264141
- phase?: string | undefined;
264142
- jobLevel?: "Other" | "Executive" | "Manager" | "IndividualContributor" | undefined;
264143
- designSystemName?: string | undefined;
264144
- defaultDestination?: string | undefined;
264145
- isPageDraftOnboardingFinished?: boolean | undefined;
264146
- } | undefined;
264147
- theme?: {
264148
- backgroundColor?: string | undefined;
264149
- accentColor?: string | undefined;
264150
- contrast?: number | undefined;
264151
- isSecondaryEnabled?: boolean | undefined;
264152
- secondaryBackgroundColor?: string | undefined;
264153
- secondaryContrast?: number | undefined;
264154
- isEditorWhite?: boolean | undefined;
264155
- preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
264156
- } | undefined;
265564
+ createdAt: string;
265565
+ sender: {
265566
+ type: "User";
265567
+ userId: string;
265568
+ } | {
265569
+ type: "Agent";
265570
+ agentType: "Ask" | "Document" | "Prototype" | "ReleaseNotes";
265571
+ } | {
265572
+ type: "System";
265573
+ onBehalfOfUserId: string;
264157
265574
  };
264158
- loggedOutAt?: Date | undefined;
264159
- source?: "SignUp" | "Invite" | "SSO" | undefined;
264160
- };
264161
- }>;
264162
- listWorkspaces(uid: string): Promise<{
264163
- membership: {
264164
- workspace: {
264165
- id: string;
264166
- profile: {
264167
- name: string;
264168
- color: string;
264169
- handle: string;
264170
- avatar?: string | undefined;
264171
- billingDetails?: {
264172
- address?: {
264173
- state?: string | undefined;
264174
- street1?: string | undefined;
264175
- street2?: string | undefined;
264176
- city?: string | undefined;
264177
- postal?: string | undefined;
264178
- country?: string | undefined;
264179
- } | undefined;
264180
- email?: string | undefined;
264181
- notes?: string | undefined;
264182
- companyName?: string | undefined;
264183
- companyId?: string | undefined;
264184
- vat?: string | undefined;
264185
- poNumber?: string | undefined;
264186
- } | undefined;
264187
- };
264188
- subscription: {
264189
- product: "company" | "enterprise" | "free" | "team" | "pro";
264190
- seats: number;
264191
- seatLimit: number;
264192
- planPriceId: string;
264193
- planInterval: "daily" | "monthly" | "weekly" | "yearly";
264194
- status?: NonNullable<"active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free"> | undefined;
264195
- card?: {
264196
- name?: string | null | undefined;
264197
- cardId?: string | null | undefined;
264198
- last4?: string | null | undefined;
264199
- expiryMonth?: string | null | undefined;
264200
- expiryYear?: string | null | undefined;
264201
- brand?: string | null | undefined;
265575
+ body: string;
265576
+ threadId: string;
265577
+ updatedAt?: string | undefined;
265578
+ isPrompt?: boolean | undefined;
265579
+ startsNewThread?: boolean | undefined;
265580
+ parentMessageId?: string | undefined;
265581
+ agentResponseTrackerId?: string | null | undefined;
265582
+ attachments?: {
265583
+ files?: {
265584
+ id: string;
265585
+ url: string;
265586
+ source?: {
265587
+ type: "UserUpload";
265588
+ userId: string;
265589
+ } | {
265590
+ type: "Figma";
265591
+ renderMode: "Image" | "HTML";
264202
265592
  } | undefined;
264203
- monthlyCreditGrantAnchor?: string | undefined;
264204
- monthlyCreditGrantAmount?: number | undefined;
264205
- builderSeatLimit?: number | undefined;
264206
- fullSeatLimit?: number | undefined;
264207
- builderSeats?: number | undefined;
264208
- fullSeats?: number | undefined;
264209
- subscriptionStatus?: NonNullable<"unknown" | "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete"> | undefined;
264210
- internalStatus?: NonNullable<"active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free"> | undefined;
264211
- stripeSubscriptionId?: string | undefined;
264212
- stripeCustomerId?: string | undefined;
264213
- currentPeriodStart?: string | undefined;
264214
- currentPeriodEnd?: string | undefined;
264215
- cancelAt?: string | undefined;
264216
- fullSeatPriceId?: string | undefined;
264217
- builderSeatPriceId?: string | undefined;
264218
- subscriptionStatusUpdatedAt?: string | undefined;
264219
- };
264220
- aiFeaturesEnabled: boolean;
264221
- aiAskFeaturesEnabled: boolean;
264222
- npmRegistry?: {
264223
- registryType: "Artifactory" | "Custom" | "NPMJS" | "GitHub" | "AzureDevOps";
264224
- registryUrl: string;
264225
- proxyUrl: string;
264226
- authType: "Custom" | "None" | "Basic" | "Bearer";
264227
- enabledScopes: string[];
264228
- bypassProxy: boolean;
264229
- accessToken?: string | undefined;
264230
- username?: string | undefined;
264231
- customRegistryUrl?: string | undefined;
264232
- password?: string | undefined;
264233
- } | undefined;
264234
- aiCustomInstruction?: string | undefined;
264235
- };
264236
- role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
264237
- effectiveRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
264238
- seatType: "Full" | "Builder" | "None";
264239
- effectiveSeatType: "Full" | "Builder" | "None";
265593
+ }[] | undefined;
265594
+ iterationId?: string | undefined;
265595
+ } | undefined;
265596
+ replyToMessageId?: string | undefined;
264240
265597
  }[];
265598
+ reactions: {
265599
+ createdAt: string;
265600
+ emoji: string;
265601
+ userId: string;
265602
+ messageId: string;
265603
+ }[];
265604
+ lastSeenMessageId?: string | undefined;
264241
265605
  }>;
264242
- delete(uid: string): Promise<{
264243
- user: {
265606
+ postMessage(threadId: string, body: DTOThreadMessageCreateInput): Promise<{
265607
+ messages: {
264244
265608
  id: string;
264245
- createdAt: Date;
264246
- email: string;
264247
- profile: {
264248
- name: string;
264249
- nickname?: string | undefined;
264250
- avatar?: string | undefined;
264251
- onboarding?: {
264252
- companyName?: string | undefined;
264253
- numberOfPeopleInOrg?: string | undefined;
264254
- numberOfPeopleInDesignTeam?: string | undefined;
264255
- department?: "Design" | "Engineering" | "Product" | "Brand" | "Other" | undefined;
264256
- jobTitle?: string | undefined;
264257
- phase?: string | undefined;
264258
- jobLevel?: "Other" | "Executive" | "Manager" | "IndividualContributor" | undefined;
264259
- designSystemName?: string | undefined;
264260
- defaultDestination?: string | undefined;
264261
- isPageDraftOnboardingFinished?: boolean | undefined;
264262
- } | undefined;
264263
- theme?: {
264264
- backgroundColor?: string | undefined;
264265
- accentColor?: string | undefined;
264266
- contrast?: number | undefined;
264267
- isSecondaryEnabled?: boolean | undefined;
264268
- secondaryBackgroundColor?: string | undefined;
264269
- secondaryContrast?: number | undefined;
264270
- isEditorWhite?: boolean | undefined;
264271
- preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
264272
- } | undefined;
265609
+ createdAt: string;
265610
+ sender: {
265611
+ type: "User";
265612
+ userId: string;
265613
+ } | {
265614
+ type: "Agent";
265615
+ agentType: "Ask" | "Document" | "Prototype" | "ReleaseNotes";
265616
+ } | {
265617
+ type: "System";
265618
+ onBehalfOfUserId: string;
264273
265619
  };
264274
- loggedOutAt?: Date | undefined;
264275
- source?: "SignUp" | "Invite" | "SSO" | undefined;
264276
- };
265620
+ body: string;
265621
+ threadId: string;
265622
+ updatedAt?: string | undefined;
265623
+ isPrompt?: boolean | undefined;
265624
+ startsNewThread?: boolean | undefined;
265625
+ parentMessageId?: string | undefined;
265626
+ agentResponseTrackerId?: string | null | undefined;
265627
+ attachments?: {
265628
+ files?: {
265629
+ id: string;
265630
+ url: string;
265631
+ source?: {
265632
+ type: "UserUpload";
265633
+ userId: string;
265634
+ } | {
265635
+ type: "Figma";
265636
+ renderMode: "Image" | "HTML";
265637
+ } | undefined;
265638
+ }[] | undefined;
265639
+ iterationId?: string | undefined;
265640
+ } | undefined;
265641
+ replyToMessageId?: string | undefined;
265642
+ }[];
265643
+ reactions: {
265644
+ createdAt: string;
265645
+ emoji: string;
265646
+ userId: string;
265647
+ messageId: string;
265648
+ }[];
265649
+ lastSeenMessageId?: string | undefined;
264277
265650
  }>;
264278
- updateProfile(uid: string, body: DTOUserProfileUpdate): Promise<{
264279
- user: {
264280
- id: string;
264281
- createdAt: Date;
264282
- email: string;
264283
- profile: {
264284
- name: string;
264285
- nickname?: string | undefined;
264286
- avatar?: string | undefined;
264287
- onboarding?: {
264288
- companyName?: string | undefined;
264289
- numberOfPeopleInOrg?: string | undefined;
264290
- numberOfPeopleInDesignTeam?: string | undefined;
264291
- department?: "Design" | "Engineering" | "Product" | "Brand" | "Other" | undefined;
264292
- jobTitle?: string | undefined;
264293
- phase?: string | undefined;
264294
- jobLevel?: "Other" | "Executive" | "Manager" | "IndividualContributor" | undefined;
264295
- designSystemName?: string | undefined;
264296
- defaultDestination?: string | undefined;
264297
- isPageDraftOnboardingFinished?: boolean | undefined;
264298
- } | undefined;
264299
- theme?: {
264300
- backgroundColor?: string | undefined;
264301
- accentColor?: string | undefined;
264302
- contrast?: number | undefined;
264303
- isSecondaryEnabled?: boolean | undefined;
264304
- secondaryBackgroundColor?: string | undefined;
264305
- secondaryContrast?: number | undefined;
264306
- isEditorWhite?: boolean | undefined;
264307
- preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
264308
- } | undefined;
264309
- };
264310
- loggedOutAt?: Date | undefined;
264311
- source?: "SignUp" | "Invite" | "SSO" | undefined;
265651
+ postReaction(threadId: string, body: DTOThreadReactionCreateInput): Promise<{
265652
+ reaction: {
265653
+ createdAt: string;
265654
+ emoji: string;
265655
+ userId: string;
265656
+ messageId: string;
264312
265657
  };
264313
265658
  }>;
265659
+ deleteReaction(threadId: string, body: DTOThreadReactionDeleteInput): Promise<{
265660
+ ok: true;
265661
+ }>;
264314
265662
  }
264315
265663
 
264316
265664
  type SupernovaApiClientConfig = {
@@ -264325,6 +265673,8 @@ declare class SupernovaApiClient {
264325
265673
  readonly codegen: CodegenEndpoint;
264326
265674
  readonly liveblocks: LiveblocksEndpoint;
264327
265675
  readonly forge: ForgeEndpoint;
265676
+ readonly files: FilesEndpoint;
265677
+ readonly threads: ThreadsEndpoint;
264328
265678
  constructor(config: SupernovaApiClientConfig);
264329
265679
  }
264330
265680
 
@@ -267067,4 +268417,4 @@ declare function isValidRedirectPath(path: string): {
267067
268417
  reason: ValidationErrorReason | undefined;
267068
268418
  };
267069
268419
 
267070
- 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, DTOFeatureEventAgentResponseFinished, DTOFeatureEventMessagesSent, DTOFeatureEventReactionsDeleted, DTOFeatureEventReactionsSent, DTOFeatureIteration, DTOFeatureIterationArtifactDiff, DTOFeatureIterationArtifactsDiff, DTOFeatureIterationCreateInput, DTOFeatureIterationListResponse, DTOFeatureIterationPromoteInput, DTOFeatureIterationResponse, DTOFeatureIterationSetLatestInput, DTOFeatureIterationTag, DTOFeatureIterationTagCreateInput, DTOFeatureIterationTagListResponse, DTOFeatureIterationTagResponse, 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, DTOFigmaNode, DTOFigmaNodeData, DTOFigmaNodeDataV2, DTOFigmaNodeOrigin, DTOFigmaNodeRenderActionInput, DTOFigmaNodeRenderActionOutput, DTOFigmaNodeRenderAsyncActionInput, DTOFigmaNodeRenderAsyncActionOutput, DTOFigmaNodeRenderFormat, DTOFigmaNodeRenderIdInput, DTOFigmaNodeRenderInput, DTOFigmaNodeRenderUrlInput, DTOFigmaNodeRerenderInput, DTOFigmaNodeResponse, DTOFigmaNodeStructure, DTOFigmaNodeStructureDetail, DTOFigmaNodeStructureDetailResponse, DTOFigmaNodeStructureListResponse, DTOFigmaNodeV2, DTOFigmaSourceUpdatePayload, DTOFile, DTOFileListResponse, DTOFileReference, DTOFileResponseItem, DTOFileSource, DTOFileSourceFigma, DTOFileSourceUpload, DTOFileUploadBulkInput, 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, DTOForgeProjectAction, DTOForgeProjectActionArtifactCreate, DTOForgeProjectActionArtifactDelete, DTOForgeProjectActionArtifactMove, DTOForgeProjectActionArtifactUpdate, DTOForgeProjectActionFeatureCreate, DTOForgeProjectActionFeatureDelete, DTOForgeProjectActionFeatureMove, DTOForgeProjectActionFeatureUpdate, type DTOForgeProjectActionOfType, DTOForgeProjectActionSectionCreate, DTOForgeProjectActionSectionDelete, DTOForgeProjectActionSectionMove, DTOForgeProjectActionSectionUpdate, type DTOForgeProjectActionType, DTOForgeProjectArtifact, 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, DTOForgeProjectCreateResponse, DTOForgeProjectFeature, DTOForgeProjectFeatureCreateInput, DTOForgeProjectFeatureDeleteInput, DTOForgeProjectFeatureGetResponse, DTOForgeProjectFeatureListResponse, DTOForgeProjectFeatureMoveInput, DTOForgeProjectFeatureUpdateInput, DTOForgeProjectFigmaNode, DTOForgeProjectFigmaNodeRenderInput, DTOForgeProjectFile, DTOForgeProjectFileListResponse, DTOForgeProjectFileUploadFinalizePayload, DTOForgeProjectFileUploadFinalizeResponse, DTOForgeProjectFileUploadPayload, DTOForgeProjectFileUploadPayloadItem, DTOForgeProjectFileUploadResponse, DTOForgeProjectGetResponse, DTOForgeProjectInvitation, DTOForgeProjectInvitationCreateResponse, DTOForgeProjectInvitationGetResponse, DTOForgeProjectInvitationRemoveResponse, DTOForgeProjectInvitationUpdateResponse, DTOForgeProjectInvitationsListResponse, DTOForgeProjectIteration, DTOForgeProjectIterationListResponse, DTOForgeProjectIterationMergeMeta, DTOForgeProjectListResponse, DTOForgeProjectMember, DTOForgeProjectMemberCreateResponse, DTOForgeProjectMemberGetResponse, DTOForgeProjectMemberRemoveResponse, DTOForgeProjectMemberRole, DTOForgeProjectMemberUpdateResponse, DTOForgeProjectMembersListResponse, DTOForgeProjectRemoveResponse, DTOForgeProjectRoom, DTOForgeProjectRoomResponse, DTOForgeProjectTheme, DTOForgeProjectUpdate, DTOForgeProjectUpdateResponse, DTOForgeSection, DTOForgeSectionCreateInput, DTOForgeSectionDeleteInput, DTOForgeSectionItemMoveInput, DTOForgeSectionMoveInput, DTOForgeSectionUpdateInput, DTOForgeSpecArtifact, DTOForgeThemePreset, 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, 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, DTOThreadReaction, DTOThreadReactionCreateInput, DTOThreadReactionDeleteInput, DTOThreadReactionResponse, DTOThreadSubjectType, DTOTokenCollection, DTOTokenCollectionsListReponse, 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, DTOUserGetResponse, DTOUserNotificationSettingsResponse, DTOUserOnboarding, DTOUserOnboardingDepartment, DTOUserOnboardingJobLevel, DTOUserProfile, DTOUserProfileUpdate, DTOUserProfileUpdatePayload, DTOUserProfileUpdateResponse, DTOUserSource, DTOUserTheme, DTOUserWorkspaceMembership, DTOUserWorkspaceMembershipsResponse, DTOWorkspace, DTOWorkspaceBilledSeatType, DTOWorkspaceCreateInput, DTOWorkspaceIntegrationGetGitObjectsInput, DTOWorkspaceIntegrationOauthInput, DTOWorkspaceIntegrationPATInput, DTOWorkspaceInvitationInput, DTOWorkspaceInvitationUpdateResponse, DTOWorkspaceInvitationsListInput, DTOWorkspaceInvitationsResponse, DTOWorkspaceInviteUpdate, DTOWorkspaceMember, DTOWorkspaceMembersListResponse, DTOWorkspaceProfile, DTOWorkspaceResponse, DTOWorkspaceRole, DTOWorkspaceSeatType, DTOWorkspaceUntypedData, DTOWorkspaceUntypedDataCreatePayload, DTOWorkspaceUntypedDataListResponse, DTOWorkspaceUntypedDataResponse, DTOWorkspaceUntypedDataUpdatePayload, type DTPGetForgeAgentResponse, DesignSystemAnalyticsEndpoint, DesignSystemBffEndpoint, DesignSystemComponentEndpoint, DesignSystemContactsEndpoint, DesignSystemMembersEndpoint, DesignSystemPageRedirectsEndpoint, DesignSystemSourcesEndpoint, DesignSystemVersionsEndpoint, DesignSystemsEndpoint, DimensionsVariableScopeType, DocsStructureRepository, DocumentationEndpoint, DocumentationHierarchySettings, DocumentationPageEditorModel, DocumentationPageV1DTO, ElementPropertyDefinitionsEndpoint, ElementPropertyValuesEndpoint, ElementsActionEndpoint, ElementsEndpoint, ExporterJobsEndpoint, ExportersEndpoint, 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, TokenCollectionsEndpoint, TokenGroupsEndpoint, TokensEndpoint, UsersEndpoint, Variable, VariableAlias, VariableMode, VariableValue, VariablesMapping, type VersionRoomApproval, VersionRoomBaseYDoc, type VersionRoomBaseYDocState, type VersionRoomDocsPage, type VersionRoomDocsPageGroup, VersionSQSPayload, VersionStatsEndpoint, WorkspaceChatThreadsEndpoint, WorkspaceConfigurationPayload, WorkspaceIntegrationsEndpoint, WorkspaceInvitationsEndpoint, WorkspaceMembersEndpoint, WorkspaceNpmRegistryEndpoint, WorkspacesEndpoint, applyActionsLocally, applyPrivacyConfigurationToNestedItems, 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 };
268420
+ 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, DTOFeatureEventAgentResponseFinished, DTOFeatureEventMessagesSent, DTOFeatureEventReactionsDeleted, DTOFeatureEventReactionsSent, DTOFeatureIteration, DTOFeatureIterationArtifactDiff, DTOFeatureIterationArtifactsDiff, DTOFeatureIterationCreateInput, DTOFeatureIterationListResponse, DTOFeatureIterationPromoteInput, DTOFeatureIterationResponse, DTOFeatureIterationSetLatestInput, DTOFeatureIterationTag, DTOFeatureIterationTagCreateInput, DTOFeatureIterationTagListResponse, DTOFeatureIterationTagResponse, 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, DTOFigmaNode, DTOFigmaNodeData, DTOFigmaNodeDataV2, DTOFigmaNodeOrigin, DTOFigmaNodeRenderActionInput, DTOFigmaNodeRenderActionOutput, DTOFigmaNodeRenderAsyncActionInput, DTOFigmaNodeRenderAsyncActionOutput, DTOFigmaNodeRenderFormat, DTOFigmaNodeRenderIdInput, DTOFigmaNodeRenderInput, DTOFigmaNodeRenderUrlInput, DTOFigmaNodeRerenderInput, DTOFigmaNodeResponse, DTOFigmaNodeStructure, DTOFigmaNodeStructureDetail, DTOFigmaNodeStructureDetailResponse, DTOFigmaNodeStructureListResponse, DTOFigmaNodeV2, DTOFigmaSourceUpdatePayload, DTOFile, 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, DTOForgeProjectAction, DTOForgeProjectActionArtifactCreate, DTOForgeProjectActionArtifactDelete, DTOForgeProjectActionArtifactMove, DTOForgeProjectActionArtifactUpdate, DTOForgeProjectActionFeatureCreate, DTOForgeProjectActionFeatureDelete, DTOForgeProjectActionFeatureMove, DTOForgeProjectActionFeatureUpdate, type DTOForgeProjectActionOfType, DTOForgeProjectActionSectionCreate, DTOForgeProjectActionSectionDelete, DTOForgeProjectActionSectionMove, DTOForgeProjectActionSectionUpdate, type DTOForgeProjectActionType, DTOForgeProjectArtifact, 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, DTOForgeProjectCreateResponse, DTOForgeProjectFeature, DTOForgeProjectFeatureCreateInput, DTOForgeProjectFeatureDeleteInput, DTOForgeProjectFeatureGetResponse, DTOForgeProjectFeatureListResponse, DTOForgeProjectFeatureMoveInput, DTOForgeProjectFeatureUpdateInput, DTOForgeProjectFigmaNode, DTOForgeProjectFigmaNodeRenderInput, DTOForgeProjectFile, DTOForgeProjectFileListResponse, DTOForgeProjectFileUploadFinalizePayload, DTOForgeProjectFileUploadFinalizeResponse, DTOForgeProjectFileUploadPayload, DTOForgeProjectFileUploadPayloadItem, DTOForgeProjectFileUploadResponse, DTOForgeProjectGetResponse, DTOForgeProjectInvitation, DTOForgeProjectInvitationCreateResponse, DTOForgeProjectInvitationGetResponse, DTOForgeProjectInvitationRemoveResponse, DTOForgeProjectInvitationUpdateResponse, DTOForgeProjectInvitationsListResponse, DTOForgeProjectIteration, DTOForgeProjectIterationListResponse, DTOForgeProjectIterationMergeMeta, DTOForgeProjectListResponse, DTOForgeProjectMember, DTOForgeProjectMemberCreateResponse, DTOForgeProjectMemberGetResponse, DTOForgeProjectMemberRemoveResponse, DTOForgeProjectMemberRole, DTOForgeProjectMemberUpdateResponse, DTOForgeProjectMembersListResponse, DTOForgeProjectRemoveResponse, DTOForgeProjectRoom, DTOForgeProjectRoomResponse, DTOForgeProjectTheme, DTOForgeProjectUpdate, DTOForgeProjectUpdateResponse, DTOForgeSection, DTOForgeSectionCreateInput, DTOForgeSectionDeleteInput, DTOForgeSectionItemMoveInput, DTOForgeSectionMoveInput, DTOForgeSectionUpdateInput, DTOForgeSpecArtifact, DTOForgeThemePreset, 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, 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, DTOThreadReaction, DTOThreadReactionCreateInput, DTOThreadReactionDeleteInput, DTOThreadReactionResponse, DTOThreadSubjectType, DTOTokenCollection, DTOTokenCollectionsListReponse, DTOTrailEvent, DTOTrailEventCreate, DTOTrailEventListInput, DTOTrailEventListResponse, DTOTrailEventType, 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, DTOUserGetResponse, DTOUserNotificationSettingsResponse, DTOUserOnboarding, DTOUserOnboardingDepartment, DTOUserOnboardingJobLevel, DTOUserProfile, DTOUserProfileUpdate, DTOUserProfileUpdatePayload, DTOUserProfileUpdateResponse, DTOUserSource, DTOUserTheme, DTOUserWorkspaceMembership, DTOUserWorkspaceMembershipsResponse, DTOWorkspace, DTOWorkspaceBilledSeatType, DTOWorkspaceCreateInput, DTOWorkspaceIntegrationGetGitObjectsInput, DTOWorkspaceIntegrationOauthInput, DTOWorkspaceIntegrationPATInput, 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, TokenCollectionsEndpoint, TokenGroupsEndpoint, TokensEndpoint, UsersEndpoint, Variable, VariableAlias, VariableMode, VariableValue, VariablesMapping, type VersionRoomApproval, VersionRoomBaseYDoc, type VersionRoomBaseYDocState, type VersionRoomDocsPage, type VersionRoomDocsPageGroup, VersionSQSPayload, VersionStatsEndpoint, WorkspaceChatThreadsEndpoint, WorkspaceConfigurationPayload, WorkspaceIntegrationsEndpoint, WorkspaceInvitationsEndpoint, WorkspaceMembersEndpoint, WorkspaceNpmRegistryEndpoint, WorkspacesEndpoint, applyActionsLocally, applyPrivacyConfigurationToNestedItems, 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 };