@supernova-studio/client 1.94.1 → 1.95.1

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.ts CHANGED
@@ -13007,6 +13007,7 @@ declare const PublishedDocPageVisitsEntry: z.ZodObject<{
13007
13007
  visits: z.ZodNumber;
13008
13008
  userId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
13009
13009
  anonymousId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
13010
+ ipAddress: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
13010
13011
  }, "strip", z.ZodTypeAny, {
13011
13012
  id: string;
13012
13013
  pagePersistentId: string;
@@ -13016,6 +13017,7 @@ declare const PublishedDocPageVisitsEntry: z.ZodObject<{
13016
13017
  userId?: string | undefined;
13017
13018
  locale?: string | undefined;
13018
13019
  anonymousId?: string | undefined;
13020
+ ipAddress?: string | undefined;
13019
13021
  }, {
13020
13022
  id: string;
13021
13023
  pagePersistentId: string;
@@ -13025,6 +13027,7 @@ declare const PublishedDocPageVisitsEntry: z.ZodObject<{
13025
13027
  userId?: string | null | undefined;
13026
13028
  locale?: string | undefined;
13027
13029
  anonymousId?: string | null | undefined;
13030
+ ipAddress?: string | null | undefined;
13028
13031
  }>;
13029
13032
  type PublishedDocPageVisitsEntry = z.infer<typeof PublishedDocPageVisitsEntry>;
13030
13033
 
@@ -61525,6 +61528,7 @@ declare const DTOFigmaNode: z.ZodObject<Omit<{
61525
61528
  sceneNodeId: z.ZodString;
61526
61529
  format: z.ZodEnum<["Png", "Svg"]>;
61527
61530
  scale: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<number, z.ZodTypeDef, number>>>, number | undefined, number | null | undefined>;
61531
+ useAbsoluteBounds: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<boolean, z.ZodTypeDef, boolean>>>, boolean | undefined, boolean | null | undefined>;
61528
61532
  renderState: z.ZodEnum<["InProgress", "Success", "Failed"]>;
61529
61533
  renderedImage: z.ZodOptional<z.ZodObject<{
61530
61534
  resourceId: z.ZodString;
@@ -61572,6 +61576,7 @@ declare const DTOFigmaNode: z.ZodObject<Omit<{
61572
61576
  renderState: "InProgress" | "Success" | "Failed";
61573
61577
  hasSource: boolean;
61574
61578
  scale?: number | undefined;
61579
+ useAbsoluteBounds?: boolean | undefined;
61575
61580
  renderedImage?: {
61576
61581
  resourceId: string;
61577
61582
  format: "Png" | "Svg";
@@ -61593,6 +61598,7 @@ declare const DTOFigmaNode: z.ZodObject<Omit<{
61593
61598
  renderState: "InProgress" | "Success" | "Failed";
61594
61599
  hasSource: boolean;
61595
61600
  scale?: number | null | undefined;
61601
+ useAbsoluteBounds?: boolean | null | undefined;
61596
61602
  renderedImage?: {
61597
61603
  resourceId: string;
61598
61604
  format: "Png" | "Svg";
@@ -61811,6 +61817,7 @@ declare const DTOFigmaNodeV2: z.ZodObject<Omit<{
61811
61817
  sceneNodeId: z.ZodString;
61812
61818
  format: z.ZodEnum<["Png", "Svg"]>;
61813
61819
  scale: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<number, z.ZodTypeDef, number>>>, number | undefined, number | null | undefined>;
61820
+ useAbsoluteBounds: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<boolean, z.ZodTypeDef, boolean>>>, boolean | undefined, boolean | null | undefined>;
61814
61821
  renderState: z.ZodEnum<["InProgress", "Success", "Failed"]>;
61815
61822
  renderedImage: z.ZodOptional<z.ZodObject<{
61816
61823
  resourceId: z.ZodString;
@@ -61858,6 +61865,7 @@ declare const DTOFigmaNodeV2: z.ZodObject<Omit<{
61858
61865
  renderState: "InProgress" | "Success" | "Failed";
61859
61866
  hasSource: boolean;
61860
61867
  scale?: number | undefined;
61868
+ useAbsoluteBounds?: boolean | undefined;
61861
61869
  renderedImage?: {
61862
61870
  resourceId: string;
61863
61871
  format: "Png" | "Svg";
@@ -61879,6 +61887,7 @@ declare const DTOFigmaNodeV2: z.ZodObject<Omit<{
61879
61887
  renderState: "InProgress" | "Success" | "Failed";
61880
61888
  hasSource: boolean;
61881
61889
  scale?: number | null | undefined;
61890
+ useAbsoluteBounds?: boolean | null | undefined;
61882
61891
  renderedImage?: {
61883
61892
  resourceId: string;
61884
61893
  format: "Png" | "Svg";
@@ -62250,277 +62259,6 @@ declare const DTOFigmaNodeRenderInput: z.ZodDiscriminatedUnion<"inputType", [z.Z
62250
62259
  }>]>;
62251
62260
  type DTOFigmaNodeRenderInput = z.infer<typeof DTOFigmaNodeRenderInput>;
62252
62261
 
62253
- /**
62254
- * @deprecated Please use FigmaNodeRenderAsync (DTOFigmaNodeRenderAsyncActionOutput)
62255
- */
62256
- declare const DTOFigmaNodeRenderActionOutput: z.ZodObject<{
62257
- type: z.ZodLiteral<"FigmaNodeRender">;
62258
- figmaNodes: z.ZodArray<z.ZodObject<Omit<{
62259
- id: z.ZodString;
62260
- persistentId: z.ZodString;
62261
- meta: z.ZodObject<{
62262
- name: z.ZodString;
62263
- description: z.ZodOptional<z.ZodString>;
62264
- }, "strip", z.ZodTypeAny, {
62265
- name: string;
62266
- description?: string | undefined;
62267
- }, {
62268
- name: string;
62269
- description?: string | undefined;
62270
- }>;
62271
- designSystemVersionId: z.ZodString;
62272
- createdAt: z.ZodDate;
62273
- updatedAt: z.ZodDate;
62274
- } & {
62275
- data: z.ZodObject<{
62276
- sceneNodeId: z.ZodString;
62277
- format: z.ZodEnum<["Png", "Svg"]>;
62278
- scale: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<number, z.ZodTypeDef, number>>>, number | undefined, number | null | undefined>;
62279
- renderState: z.ZodEnum<["InProgress", "Success", "Failed"]>;
62280
- renderedImage: z.ZodOptional<z.ZodObject<{
62281
- resourceId: z.ZodString;
62282
- format: z.ZodEnum<["Png", "Svg"]>;
62283
- scale: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<number, z.ZodTypeDef, number>>>, number | undefined, number | null | undefined>;
62284
- width: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<number, z.ZodTypeDef, number>>>, number | undefined, number | null | undefined>;
62285
- height: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<number, z.ZodTypeDef, number>>>, number | undefined, number | null | undefined>;
62286
- url: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
62287
- originKey: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
62288
- }, "strip", z.ZodTypeAny, {
62289
- resourceId: string;
62290
- format: "Png" | "Svg";
62291
- url?: string | undefined;
62292
- width?: number | undefined;
62293
- height?: number | undefined;
62294
- originKey?: string | undefined;
62295
- scale?: number | undefined;
62296
- }, {
62297
- resourceId: string;
62298
- format: "Png" | "Svg";
62299
- url?: string | null | undefined;
62300
- width?: number | null | undefined;
62301
- height?: number | null | undefined;
62302
- originKey?: string | null | undefined;
62303
- scale?: number | null | undefined;
62304
- }>>;
62305
- renderError: z.ZodOptional<z.ZodObject<{
62306
- type: z.ZodEnum<["MissingIntegration", "NodeNotFound", "RenderError"]>;
62307
- }, "strip", z.ZodTypeAny, {
62308
- type: "MissingIntegration" | "NodeNotFound" | "RenderError";
62309
- }, {
62310
- type: "MissingIntegration" | "NodeNotFound" | "RenderError";
62311
- }>>;
62312
- hasSource: z.ZodBoolean;
62313
- relinkData: z.ZodOptional<z.ZodObject<{
62314
- fileId: z.ZodString;
62315
- }, "strip", z.ZodTypeAny, {
62316
- fileId: string;
62317
- }, {
62318
- fileId: string;
62319
- }>>;
62320
- }, "strip", z.ZodTypeAny, {
62321
- format: "Png" | "Svg";
62322
- sceneNodeId: string;
62323
- renderState: "InProgress" | "Success" | "Failed";
62324
- hasSource: boolean;
62325
- scale?: number | undefined;
62326
- renderedImage?: {
62327
- resourceId: string;
62328
- format: "Png" | "Svg";
62329
- url?: string | undefined;
62330
- width?: number | undefined;
62331
- height?: number | undefined;
62332
- originKey?: string | undefined;
62333
- scale?: number | undefined;
62334
- } | undefined;
62335
- renderError?: {
62336
- type: "MissingIntegration" | "NodeNotFound" | "RenderError";
62337
- } | undefined;
62338
- relinkData?: {
62339
- fileId: string;
62340
- } | undefined;
62341
- }, {
62342
- format: "Png" | "Svg";
62343
- sceneNodeId: string;
62344
- renderState: "InProgress" | "Success" | "Failed";
62345
- hasSource: boolean;
62346
- scale?: number | null | undefined;
62347
- renderedImage?: {
62348
- resourceId: string;
62349
- format: "Png" | "Svg";
62350
- url?: string | null | undefined;
62351
- width?: number | null | undefined;
62352
- height?: number | null | undefined;
62353
- originKey?: string | null | undefined;
62354
- scale?: number | null | undefined;
62355
- } | undefined;
62356
- renderError?: {
62357
- type: "MissingIntegration" | "NodeNotFound" | "RenderError";
62358
- } | undefined;
62359
- relinkData?: {
62360
- fileId: string;
62361
- } | undefined;
62362
- }>;
62363
- origin: z.ZodObject<{
62364
- sourceId: z.ZodString;
62365
- parentName: z.ZodOptional<z.ZodString>;
62366
- }, "strip", z.ZodTypeAny, {
62367
- sourceId: string;
62368
- parentName?: string | undefined;
62369
- }, {
62370
- sourceId: string;
62371
- parentName?: string | undefined;
62372
- }>;
62373
- }, "data" | "origin"> & {
62374
- data: z.ZodObject<{
62375
- figmaNodeId: z.ZodString;
62376
- isValid: z.ZodBoolean;
62377
- assetId: z.ZodString;
62378
- assetUrl: z.ZodString;
62379
- assetFormat: z.ZodEnum<["Png", "Svg"]>;
62380
- assetScale: z.ZodNumber;
62381
- assetWidth: z.ZodOptional<z.ZodNumber>;
62382
- assetHeight: z.ZodOptional<z.ZodNumber>;
62383
- }, "strip", z.ZodTypeAny, {
62384
- assetId: string;
62385
- assetScale: number;
62386
- assetUrl: string;
62387
- figmaNodeId: string;
62388
- isValid: boolean;
62389
- assetFormat: "Png" | "Svg";
62390
- assetWidth?: number | undefined;
62391
- assetHeight?: number | undefined;
62392
- }, {
62393
- assetId: string;
62394
- assetScale: number;
62395
- assetUrl: string;
62396
- figmaNodeId: string;
62397
- isValid: boolean;
62398
- assetFormat: "Png" | "Svg";
62399
- assetWidth?: number | undefined;
62400
- assetHeight?: number | undefined;
62401
- }>;
62402
- origin: z.ZodObject<{
62403
- sourceId: z.ZodString;
62404
- fileId: z.ZodOptional<z.ZodString>;
62405
- parentName: z.ZodOptional<z.ZodString>;
62406
- }, "strip", z.ZodTypeAny, {
62407
- sourceId: string;
62408
- fileId?: string | undefined;
62409
- parentName?: string | undefined;
62410
- }, {
62411
- sourceId: string;
62412
- fileId?: string | undefined;
62413
- parentName?: string | undefined;
62414
- }>;
62415
- }, "strip", z.ZodTypeAny, {
62416
- data: {
62417
- assetId: string;
62418
- assetScale: number;
62419
- assetUrl: string;
62420
- figmaNodeId: string;
62421
- isValid: boolean;
62422
- assetFormat: "Png" | "Svg";
62423
- assetWidth?: number | undefined;
62424
- assetHeight?: number | undefined;
62425
- };
62426
- id: string;
62427
- createdAt: Date;
62428
- updatedAt: Date;
62429
- persistentId: string;
62430
- designSystemVersionId: string;
62431
- origin: {
62432
- sourceId: string;
62433
- fileId?: string | undefined;
62434
- parentName?: string | undefined;
62435
- };
62436
- meta: {
62437
- name: string;
62438
- description?: string | undefined;
62439
- };
62440
- }, {
62441
- data: {
62442
- assetId: string;
62443
- assetScale: number;
62444
- assetUrl: string;
62445
- figmaNodeId: string;
62446
- isValid: boolean;
62447
- assetFormat: "Png" | "Svg";
62448
- assetWidth?: number | undefined;
62449
- assetHeight?: number | undefined;
62450
- };
62451
- id: string;
62452
- createdAt: Date;
62453
- updatedAt: Date;
62454
- persistentId: string;
62455
- designSystemVersionId: string;
62456
- origin: {
62457
- sourceId: string;
62458
- fileId?: string | undefined;
62459
- parentName?: string | undefined;
62460
- };
62461
- meta: {
62462
- name: string;
62463
- description?: string | undefined;
62464
- };
62465
- }>, "many">;
62466
- }, "strip", z.ZodTypeAny, {
62467
- type: "FigmaNodeRender";
62468
- figmaNodes: {
62469
- data: {
62470
- assetId: string;
62471
- assetScale: number;
62472
- assetUrl: string;
62473
- figmaNodeId: string;
62474
- isValid: boolean;
62475
- assetFormat: "Png" | "Svg";
62476
- assetWidth?: number | undefined;
62477
- assetHeight?: number | undefined;
62478
- };
62479
- id: string;
62480
- createdAt: Date;
62481
- updatedAt: Date;
62482
- persistentId: string;
62483
- designSystemVersionId: string;
62484
- origin: {
62485
- sourceId: string;
62486
- fileId?: string | undefined;
62487
- parentName?: string | undefined;
62488
- };
62489
- meta: {
62490
- name: string;
62491
- description?: string | undefined;
62492
- };
62493
- }[];
62494
- }, {
62495
- type: "FigmaNodeRender";
62496
- figmaNodes: {
62497
- data: {
62498
- assetId: string;
62499
- assetScale: number;
62500
- assetUrl: string;
62501
- figmaNodeId: string;
62502
- isValid: boolean;
62503
- assetFormat: "Png" | "Svg";
62504
- assetWidth?: number | undefined;
62505
- assetHeight?: number | undefined;
62506
- };
62507
- id: string;
62508
- createdAt: Date;
62509
- updatedAt: Date;
62510
- persistentId: string;
62511
- designSystemVersionId: string;
62512
- origin: {
62513
- sourceId: string;
62514
- fileId?: string | undefined;
62515
- parentName?: string | undefined;
62516
- };
62517
- meta: {
62518
- name: string;
62519
- description?: string | undefined;
62520
- };
62521
- }[];
62522
- }>;
62523
- type DTOFigmaNodeRenderActionOutput = z.infer<typeof DTOFigmaNodeRenderActionOutput>;
62524
62262
  declare const DTOFigmaNodeRenderAsyncActionOutput: z.ZodObject<{
62525
62263
  type: z.ZodLiteral<"FigmaNodeRenderAsync">;
62526
62264
  figmaNodes: z.ZodArray<z.ZodObject<Omit<{
@@ -62544,6 +62282,7 @@ declare const DTOFigmaNodeRenderAsyncActionOutput: z.ZodObject<{
62544
62282
  sceneNodeId: z.ZodString;
62545
62283
  format: z.ZodEnum<["Png", "Svg"]>;
62546
62284
  scale: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<number, z.ZodTypeDef, number>>>, number | undefined, number | null | undefined>;
62285
+ useAbsoluteBounds: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<boolean, z.ZodTypeDef, boolean>>>, boolean | undefined, boolean | null | undefined>;
62547
62286
  renderState: z.ZodEnum<["InProgress", "Success", "Failed"]>;
62548
62287
  renderedImage: z.ZodOptional<z.ZodObject<{
62549
62288
  resourceId: z.ZodString;
@@ -62591,6 +62330,7 @@ declare const DTOFigmaNodeRenderAsyncActionOutput: z.ZodObject<{
62591
62330
  renderState: "InProgress" | "Success" | "Failed";
62592
62331
  hasSource: boolean;
62593
62332
  scale?: number | undefined;
62333
+ useAbsoluteBounds?: boolean | undefined;
62594
62334
  renderedImage?: {
62595
62335
  resourceId: string;
62596
62336
  format: "Png" | "Svg";
@@ -62612,6 +62352,7 @@ declare const DTOFigmaNodeRenderAsyncActionOutput: z.ZodObject<{
62612
62352
  renderState: "InProgress" | "Success" | "Failed";
62613
62353
  hasSource: boolean;
62614
62354
  scale?: number | null | undefined;
62355
+ useAbsoluteBounds?: boolean | null | undefined;
62615
62356
  renderedImage?: {
62616
62357
  resourceId: string;
62617
62358
  format: "Png" | "Svg";
@@ -62872,51 +62613,6 @@ declare const DTOFigmaNodeRenderAsyncActionOutput: z.ZodObject<{
62872
62613
  }[];
62873
62614
  }>;
62874
62615
  type DTOFigmaNodeRenderAsyncActionOutput = z.infer<typeof DTOFigmaNodeRenderAsyncActionOutput>;
62875
- /**
62876
- * @deprecated Please use FigmaNodeRenderAsync (DTOFigmaNodeRenderAsyncActionInput)
62877
- */
62878
- declare const DTOFigmaNodeRenderActionInput: z.ZodObject<{
62879
- type: z.ZodLiteral<"FigmaNodeRender">;
62880
- input: z.ZodArray<z.ZodObject<{
62881
- format: z.ZodDefault<z.ZodEnum<["Png", "Svg"]>>;
62882
- scale: z.ZodOptional<z.ZodNumber>;
62883
- } & {
62884
- inputType: z.ZodEffects<z.ZodOptional<z.ZodLiteral<"NodeId">>, "NodeId", "NodeId" | undefined>;
62885
- sourceId: z.ZodString;
62886
- figmaFileNodeId: z.ZodString;
62887
- }, "strip", z.ZodTypeAny, {
62888
- inputType: "NodeId";
62889
- sourceId: string;
62890
- format: "Png" | "Svg";
62891
- figmaFileNodeId: string;
62892
- scale?: number | undefined;
62893
- }, {
62894
- sourceId: string;
62895
- figmaFileNodeId: string;
62896
- inputType?: "NodeId" | undefined;
62897
- format?: "Png" | "Svg" | undefined;
62898
- scale?: number | undefined;
62899
- }>, "many">;
62900
- }, "strip", z.ZodTypeAny, {
62901
- type: "FigmaNodeRender";
62902
- input: {
62903
- inputType: "NodeId";
62904
- sourceId: string;
62905
- format: "Png" | "Svg";
62906
- figmaFileNodeId: string;
62907
- scale?: number | undefined;
62908
- }[];
62909
- }, {
62910
- type: "FigmaNodeRender";
62911
- input: {
62912
- sourceId: string;
62913
- figmaFileNodeId: string;
62914
- inputType?: "NodeId" | undefined;
62915
- format?: "Png" | "Svg" | undefined;
62916
- scale?: number | undefined;
62917
- }[];
62918
- }>;
62919
- type DTOFigmaNodeRenderActionInput = z.infer<typeof DTOFigmaNodeRenderActionInput>;
62920
62616
  declare const DTOFigmaNodeRenderAsyncActionInput: z.ZodObject<{
62921
62617
  type: z.ZodLiteral<"FigmaNodeRenderAsync">;
62922
62618
  nodes: z.ZodArray<z.ZodDiscriminatedUnion<"inputType", [z.ZodObject<{
@@ -64103,272 +63799,6 @@ declare const DTOElementActionOutput: z.ZodDiscriminatedUnion<"type", [z.ZodObje
64103
63799
  output: {
64104
63800
  success: true;
64105
63801
  };
64106
- }>, z.ZodObject<{
64107
- type: z.ZodLiteral<"FigmaNodeRender">;
64108
- figmaNodes: z.ZodArray<z.ZodObject<Omit<{
64109
- id: z.ZodString;
64110
- persistentId: z.ZodString;
64111
- meta: z.ZodObject<{
64112
- name: z.ZodString;
64113
- description: z.ZodOptional<z.ZodString>;
64114
- }, "strip", z.ZodTypeAny, {
64115
- name: string;
64116
- description?: string | undefined;
64117
- }, {
64118
- name: string;
64119
- description?: string | undefined;
64120
- }>;
64121
- designSystemVersionId: z.ZodString;
64122
- createdAt: z.ZodDate;
64123
- updatedAt: z.ZodDate;
64124
- } & {
64125
- data: z.ZodObject<{
64126
- sceneNodeId: z.ZodString;
64127
- format: z.ZodEnum<["Png", "Svg"]>;
64128
- scale: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<number, z.ZodTypeDef, number>>>, number | undefined, number | null | undefined>;
64129
- renderState: z.ZodEnum<["InProgress", "Success", "Failed"]>;
64130
- renderedImage: z.ZodOptional<z.ZodObject<{
64131
- resourceId: z.ZodString;
64132
- format: z.ZodEnum<["Png", "Svg"]>;
64133
- scale: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<number, z.ZodTypeDef, number>>>, number | undefined, number | null | undefined>;
64134
- width: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<number, z.ZodTypeDef, number>>>, number | undefined, number | null | undefined>;
64135
- height: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<number, z.ZodTypeDef, number>>>, number | undefined, number | null | undefined>;
64136
- url: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
64137
- originKey: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
64138
- }, "strip", z.ZodTypeAny, {
64139
- resourceId: string;
64140
- format: "Png" | "Svg";
64141
- url?: string | undefined;
64142
- width?: number | undefined;
64143
- height?: number | undefined;
64144
- originKey?: string | undefined;
64145
- scale?: number | undefined;
64146
- }, {
64147
- resourceId: string;
64148
- format: "Png" | "Svg";
64149
- url?: string | null | undefined;
64150
- width?: number | null | undefined;
64151
- height?: number | null | undefined;
64152
- originKey?: string | null | undefined;
64153
- scale?: number | null | undefined;
64154
- }>>;
64155
- renderError: z.ZodOptional<z.ZodObject<{
64156
- type: z.ZodEnum<["MissingIntegration", "NodeNotFound", "RenderError"]>;
64157
- }, "strip", z.ZodTypeAny, {
64158
- type: "MissingIntegration" | "NodeNotFound" | "RenderError";
64159
- }, {
64160
- type: "MissingIntegration" | "NodeNotFound" | "RenderError";
64161
- }>>;
64162
- hasSource: z.ZodBoolean;
64163
- relinkData: z.ZodOptional<z.ZodObject<{
64164
- fileId: z.ZodString;
64165
- }, "strip", z.ZodTypeAny, {
64166
- fileId: string;
64167
- }, {
64168
- fileId: string;
64169
- }>>;
64170
- }, "strip", z.ZodTypeAny, {
64171
- format: "Png" | "Svg";
64172
- sceneNodeId: string;
64173
- renderState: "InProgress" | "Success" | "Failed";
64174
- hasSource: boolean;
64175
- scale?: number | undefined;
64176
- renderedImage?: {
64177
- resourceId: string;
64178
- format: "Png" | "Svg";
64179
- url?: string | undefined;
64180
- width?: number | undefined;
64181
- height?: number | undefined;
64182
- originKey?: string | undefined;
64183
- scale?: number | undefined;
64184
- } | undefined;
64185
- renderError?: {
64186
- type: "MissingIntegration" | "NodeNotFound" | "RenderError";
64187
- } | undefined;
64188
- relinkData?: {
64189
- fileId: string;
64190
- } | undefined;
64191
- }, {
64192
- format: "Png" | "Svg";
64193
- sceneNodeId: string;
64194
- renderState: "InProgress" | "Success" | "Failed";
64195
- hasSource: boolean;
64196
- scale?: number | null | undefined;
64197
- renderedImage?: {
64198
- resourceId: string;
64199
- format: "Png" | "Svg";
64200
- url?: string | null | undefined;
64201
- width?: number | null | undefined;
64202
- height?: number | null | undefined;
64203
- originKey?: string | null | undefined;
64204
- scale?: number | null | undefined;
64205
- } | undefined;
64206
- renderError?: {
64207
- type: "MissingIntegration" | "NodeNotFound" | "RenderError";
64208
- } | undefined;
64209
- relinkData?: {
64210
- fileId: string;
64211
- } | undefined;
64212
- }>;
64213
- origin: z.ZodObject<{
64214
- sourceId: z.ZodString;
64215
- parentName: z.ZodOptional<z.ZodString>;
64216
- }, "strip", z.ZodTypeAny, {
64217
- sourceId: string;
64218
- parentName?: string | undefined;
64219
- }, {
64220
- sourceId: string;
64221
- parentName?: string | undefined;
64222
- }>;
64223
- }, "data" | "origin"> & {
64224
- data: z.ZodObject<{
64225
- figmaNodeId: z.ZodString;
64226
- isValid: z.ZodBoolean;
64227
- assetId: z.ZodString;
64228
- assetUrl: z.ZodString;
64229
- assetFormat: z.ZodEnum<["Png", "Svg"]>;
64230
- assetScale: z.ZodNumber;
64231
- assetWidth: z.ZodOptional<z.ZodNumber>;
64232
- assetHeight: z.ZodOptional<z.ZodNumber>;
64233
- }, "strip", z.ZodTypeAny, {
64234
- assetId: string;
64235
- assetScale: number;
64236
- assetUrl: string;
64237
- figmaNodeId: string;
64238
- isValid: boolean;
64239
- assetFormat: "Png" | "Svg";
64240
- assetWidth?: number | undefined;
64241
- assetHeight?: number | undefined;
64242
- }, {
64243
- assetId: string;
64244
- assetScale: number;
64245
- assetUrl: string;
64246
- figmaNodeId: string;
64247
- isValid: boolean;
64248
- assetFormat: "Png" | "Svg";
64249
- assetWidth?: number | undefined;
64250
- assetHeight?: number | undefined;
64251
- }>;
64252
- origin: z.ZodObject<{
64253
- sourceId: z.ZodString;
64254
- fileId: z.ZodOptional<z.ZodString>;
64255
- parentName: z.ZodOptional<z.ZodString>;
64256
- }, "strip", z.ZodTypeAny, {
64257
- sourceId: string;
64258
- fileId?: string | undefined;
64259
- parentName?: string | undefined;
64260
- }, {
64261
- sourceId: string;
64262
- fileId?: string | undefined;
64263
- parentName?: string | undefined;
64264
- }>;
64265
- }, "strip", z.ZodTypeAny, {
64266
- data: {
64267
- assetId: string;
64268
- assetScale: number;
64269
- assetUrl: string;
64270
- figmaNodeId: string;
64271
- isValid: boolean;
64272
- assetFormat: "Png" | "Svg";
64273
- assetWidth?: number | undefined;
64274
- assetHeight?: number | undefined;
64275
- };
64276
- id: string;
64277
- createdAt: Date;
64278
- updatedAt: Date;
64279
- persistentId: string;
64280
- designSystemVersionId: string;
64281
- origin: {
64282
- sourceId: string;
64283
- fileId?: string | undefined;
64284
- parentName?: string | undefined;
64285
- };
64286
- meta: {
64287
- name: string;
64288
- description?: string | undefined;
64289
- };
64290
- }, {
64291
- data: {
64292
- assetId: string;
64293
- assetScale: number;
64294
- assetUrl: string;
64295
- figmaNodeId: string;
64296
- isValid: boolean;
64297
- assetFormat: "Png" | "Svg";
64298
- assetWidth?: number | undefined;
64299
- assetHeight?: number | undefined;
64300
- };
64301
- id: string;
64302
- createdAt: Date;
64303
- updatedAt: Date;
64304
- persistentId: string;
64305
- designSystemVersionId: string;
64306
- origin: {
64307
- sourceId: string;
64308
- fileId?: string | undefined;
64309
- parentName?: string | undefined;
64310
- };
64311
- meta: {
64312
- name: string;
64313
- description?: string | undefined;
64314
- };
64315
- }>, "many">;
64316
- }, "strip", z.ZodTypeAny, {
64317
- type: "FigmaNodeRender";
64318
- figmaNodes: {
64319
- data: {
64320
- assetId: string;
64321
- assetScale: number;
64322
- assetUrl: string;
64323
- figmaNodeId: string;
64324
- isValid: boolean;
64325
- assetFormat: "Png" | "Svg";
64326
- assetWidth?: number | undefined;
64327
- assetHeight?: number | undefined;
64328
- };
64329
- id: string;
64330
- createdAt: Date;
64331
- updatedAt: Date;
64332
- persistentId: string;
64333
- designSystemVersionId: string;
64334
- origin: {
64335
- sourceId: string;
64336
- fileId?: string | undefined;
64337
- parentName?: string | undefined;
64338
- };
64339
- meta: {
64340
- name: string;
64341
- description?: string | undefined;
64342
- };
64343
- }[];
64344
- }, {
64345
- type: "FigmaNodeRender";
64346
- figmaNodes: {
64347
- data: {
64348
- assetId: string;
64349
- assetScale: number;
64350
- assetUrl: string;
64351
- figmaNodeId: string;
64352
- isValid: boolean;
64353
- assetFormat: "Png" | "Svg";
64354
- assetWidth?: number | undefined;
64355
- assetHeight?: number | undefined;
64356
- };
64357
- id: string;
64358
- createdAt: Date;
64359
- updatedAt: Date;
64360
- persistentId: string;
64361
- designSystemVersionId: string;
64362
- origin: {
64363
- sourceId: string;
64364
- fileId?: string | undefined;
64365
- parentName?: string | undefined;
64366
- };
64367
- meta: {
64368
- name: string;
64369
- description?: string | undefined;
64370
- };
64371
- }[];
64372
63802
  }>, z.ZodObject<{
64373
63803
  type: z.ZodLiteral<"FigmaNodeRenderAsync">;
64374
63804
  figmaNodes: z.ZodArray<z.ZodObject<Omit<{
@@ -64392,6 +63822,7 @@ declare const DTOElementActionOutput: z.ZodDiscriminatedUnion<"type", [z.ZodObje
64392
63822
  sceneNodeId: z.ZodString;
64393
63823
  format: z.ZodEnum<["Png", "Svg"]>;
64394
63824
  scale: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<number, z.ZodTypeDef, number>>>, number | undefined, number | null | undefined>;
63825
+ useAbsoluteBounds: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<boolean, z.ZodTypeDef, boolean>>>, boolean | undefined, boolean | null | undefined>;
64395
63826
  renderState: z.ZodEnum<["InProgress", "Success", "Failed"]>;
64396
63827
  renderedImage: z.ZodOptional<z.ZodObject<{
64397
63828
  resourceId: z.ZodString;
@@ -64439,6 +63870,7 @@ declare const DTOElementActionOutput: z.ZodDiscriminatedUnion<"type", [z.ZodObje
64439
63870
  renderState: "InProgress" | "Success" | "Failed";
64440
63871
  hasSource: boolean;
64441
63872
  scale?: number | undefined;
63873
+ useAbsoluteBounds?: boolean | undefined;
64442
63874
  renderedImage?: {
64443
63875
  resourceId: string;
64444
63876
  format: "Png" | "Svg";
@@ -64460,6 +63892,7 @@ declare const DTOElementActionOutput: z.ZodDiscriminatedUnion<"type", [z.ZodObje
64460
63892
  renderState: "InProgress" | "Success" | "Failed";
64461
63893
  hasSource: boolean;
64462
63894
  scale?: number | null | undefined;
63895
+ useAbsoluteBounds?: boolean | null | undefined;
64463
63896
  renderedImage?: {
64464
63897
  resourceId: string;
64465
63898
  format: "Png" | "Svg";
@@ -67490,46 +66923,6 @@ declare const DTOElementActionInput: z.ZodIntersection<z.ZodDiscriminatedUnion<"
67490
66923
  input: {
67491
66924
  id: string;
67492
66925
  };
67493
- }>, z.ZodObject<{
67494
- type: z.ZodLiteral<"FigmaNodeRender">;
67495
- input: z.ZodArray<z.ZodObject<{
67496
- format: z.ZodDefault<z.ZodEnum<["Png", "Svg"]>>;
67497
- scale: z.ZodOptional<z.ZodNumber>;
67498
- } & {
67499
- inputType: z.ZodEffects<z.ZodOptional<z.ZodLiteral<"NodeId">>, "NodeId", "NodeId" | undefined>;
67500
- sourceId: z.ZodString;
67501
- figmaFileNodeId: z.ZodString;
67502
- }, "strip", z.ZodTypeAny, {
67503
- inputType: "NodeId";
67504
- sourceId: string;
67505
- format: "Png" | "Svg";
67506
- figmaFileNodeId: string;
67507
- scale?: number | undefined;
67508
- }, {
67509
- sourceId: string;
67510
- figmaFileNodeId: string;
67511
- inputType?: "NodeId" | undefined;
67512
- format?: "Png" | "Svg" | undefined;
67513
- scale?: number | undefined;
67514
- }>, "many">;
67515
- }, "strip", z.ZodTypeAny, {
67516
- type: "FigmaNodeRender";
67517
- input: {
67518
- inputType: "NodeId";
67519
- sourceId: string;
67520
- format: "Png" | "Svg";
67521
- figmaFileNodeId: string;
67522
- scale?: number | undefined;
67523
- }[];
67524
- }, {
67525
- type: "FigmaNodeRender";
67526
- input: {
67527
- sourceId: string;
67528
- figmaFileNodeId: string;
67529
- inputType?: "NodeId" | undefined;
67530
- format?: "Png" | "Svg" | undefined;
67531
- scale?: number | undefined;
67532
- }[];
67533
66926
  }>, z.ZodObject<{
67534
66927
  type: z.ZodLiteral<"FigmaNodeRenderAsync">;
67535
66928
  nodes: z.ZodArray<z.ZodDiscriminatedUnion<"inputType", [z.ZodObject<{
@@ -67761,6 +67154,7 @@ declare const DTOElementsGetOutput: z.ZodObject<{
67761
67154
  sceneNodeId: z.ZodString;
67762
67155
  format: z.ZodEnum<["Png", "Svg"]>;
67763
67156
  scale: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<number, z.ZodTypeDef, number>>>, number | undefined, number | null | undefined>;
67157
+ useAbsoluteBounds: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<boolean, z.ZodTypeDef, boolean>>>, boolean | undefined, boolean | null | undefined>;
67764
67158
  renderState: z.ZodEnum<["InProgress", "Success", "Failed"]>;
67765
67159
  renderedImage: z.ZodOptional<z.ZodObject<{
67766
67160
  resourceId: z.ZodString;
@@ -67808,6 +67202,7 @@ declare const DTOElementsGetOutput: z.ZodObject<{
67808
67202
  renderState: "InProgress" | "Success" | "Failed";
67809
67203
  hasSource: boolean;
67810
67204
  scale?: number | undefined;
67205
+ useAbsoluteBounds?: boolean | undefined;
67811
67206
  renderedImage?: {
67812
67207
  resourceId: string;
67813
67208
  format: "Png" | "Svg";
@@ -67829,6 +67224,7 @@ declare const DTOElementsGetOutput: z.ZodObject<{
67829
67224
  renderState: "InProgress" | "Success" | "Failed";
67830
67225
  hasSource: boolean;
67831
67226
  scale?: number | null | undefined;
67227
+ useAbsoluteBounds?: boolean | null | undefined;
67832
67228
  renderedImage?: {
67833
67229
  resourceId: string;
67834
67230
  format: "Png" | "Svg";
@@ -68026,6 +67422,7 @@ declare const DTOElementsGetOutputV2: z.ZodObject<{
68026
67422
  sceneNodeId: z.ZodString;
68027
67423
  format: z.ZodEnum<["Png", "Svg"]>;
68028
67424
  scale: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<number, z.ZodTypeDef, number>>>, number | undefined, number | null | undefined>;
67425
+ useAbsoluteBounds: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<boolean, z.ZodTypeDef, boolean>>>, boolean | undefined, boolean | null | undefined>;
68029
67426
  renderState: z.ZodEnum<["InProgress", "Success", "Failed"]>;
68030
67427
  renderedImage: z.ZodOptional<z.ZodObject<{
68031
67428
  resourceId: z.ZodString;
@@ -68073,6 +67470,7 @@ declare const DTOElementsGetOutputV2: z.ZodObject<{
68073
67470
  renderState: "InProgress" | "Success" | "Failed";
68074
67471
  hasSource: boolean;
68075
67472
  scale?: number | undefined;
67473
+ useAbsoluteBounds?: boolean | undefined;
68076
67474
  renderedImage?: {
68077
67475
  resourceId: string;
68078
67476
  format: "Png" | "Svg";
@@ -68094,6 +67492,7 @@ declare const DTOElementsGetOutputV2: z.ZodObject<{
68094
67492
  renderState: "InProgress" | "Success" | "Failed";
68095
67493
  hasSource: boolean;
68096
67494
  scale?: number | null | undefined;
67495
+ useAbsoluteBounds?: boolean | null | undefined;
68097
67496
  renderedImage?: {
68098
67497
  resourceId: string;
68099
67498
  format: "Png" | "Svg";
@@ -391832,34 +391231,6 @@ declare class ElementsActionEndpoint {
391832
391231
  output: {
391833
391232
  success: true;
391834
391233
  };
391835
- } | {
391836
- type: "FigmaNodeRender";
391837
- figmaNodes: {
391838
- data: {
391839
- assetId: string;
391840
- assetScale: number;
391841
- assetUrl: string;
391842
- figmaNodeId: string;
391843
- isValid: boolean;
391844
- assetFormat: "Png" | "Svg";
391845
- assetWidth?: number | undefined;
391846
- assetHeight?: number | undefined;
391847
- };
391848
- id: string;
391849
- createdAt: Date;
391850
- updatedAt: Date;
391851
- persistentId: string;
391852
- designSystemVersionId: string;
391853
- origin: {
391854
- sourceId: string;
391855
- fileId?: string | undefined;
391856
- parentName?: string | undefined;
391857
- };
391858
- meta: {
391859
- name: string;
391860
- description?: string | undefined;
391861
- };
391862
- }[];
391863
391234
  } | {
391864
391235
  type: "FigmaNodeRenderAsync";
391865
391236
  figmaNodes: {
@@ -391983,336 +391354,6 @@ declare class ElementsActionEndpoint {
391983
391354
  output: {
391984
391355
  success: true;
391985
391356
  };
391986
- } | {
391987
- type: "FigmaNodeRender";
391988
- figmaNodes: {
391989
- data: {
391990
- assetId: string;
391991
- assetScale: number;
391992
- assetUrl: string;
391993
- figmaNodeId: string;
391994
- isValid: boolean;
391995
- assetFormat: "Png" | "Svg";
391996
- assetWidth?: number | undefined;
391997
- assetHeight?: number | undefined;
391998
- };
391999
- id: string;
392000
- createdAt: Date;
392001
- updatedAt: Date;
392002
- persistentId: string;
392003
- designSystemVersionId: string;
392004
- origin: {
392005
- sourceId: string;
392006
- fileId?: string | undefined;
392007
- parentName?: string | undefined;
392008
- };
392009
- meta: {
392010
- name: string;
392011
- description?: string | undefined;
392012
- };
392013
- }[];
392014
- } | {
392015
- type: "FigmaNodeRenderAsync";
392016
- figmaNodes: {
392017
- data: {
392018
- format: "Png" | "Svg";
392019
- sceneNodeId: string;
392020
- renderState: "InProgress" | "Success" | "Failed";
392021
- hasSource: boolean;
392022
- scale?: number | undefined;
392023
- renderedImage?: {
392024
- resourceId: string;
392025
- format: "Png" | "Svg";
392026
- url?: string | undefined;
392027
- width?: number | undefined;
392028
- height?: number | undefined;
392029
- originKey?: string | undefined;
392030
- scale?: number | undefined;
392031
- } | undefined;
392032
- renderError?: {
392033
- type: "MissingIntegration" | "NodeNotFound" | "RenderError";
392034
- } | undefined;
392035
- };
392036
- id: string;
392037
- createdAt: Date;
392038
- updatedAt: Date;
392039
- persistentId: string;
392040
- designSystemVersionId: string;
392041
- origin: {
392042
- sourceId: string;
392043
- fileId?: string | undefined;
392044
- parentName?: string | undefined;
392045
- };
392046
- meta: {
392047
- name: string;
392048
- description?: string | undefined;
392049
- };
392050
- }[];
392051
- } | {
392052
- type: "ElementPropertyValuesEdit";
392053
- output: {
392054
- success: true;
392055
- };
392056
- }>;
392057
- moveDocGroup(dsId: string, vId: string, input: DTOMoveDocumentationGroupInput): Promise<{
392058
- type: "DocumentationGroupCreate";
392059
- output: {
392060
- success: true;
392061
- };
392062
- } | {
392063
- type: "DocumentationTabCreate";
392064
- output: {
392065
- success: true;
392066
- };
392067
- } | {
392068
- type: "DocumentationGroupUpdate";
392069
- output: {
392070
- success: true;
392071
- };
392072
- } | {
392073
- type: "DocumentationGroupMove";
392074
- output: {
392075
- success: true;
392076
- };
392077
- } | {
392078
- type: "DocumentationGroupDuplicate";
392079
- output: {
392080
- success: true;
392081
- };
392082
- } | {
392083
- type: "DocumentationGroupDelete";
392084
- output: {
392085
- success: true;
392086
- };
392087
- } | {
392088
- type: "DocumentationTabGroupDelete";
392089
- output: {
392090
- success: true;
392091
- };
392092
- } | {
392093
- type: "DocumentationPageCreate";
392094
- output: {
392095
- success: true;
392096
- };
392097
- } | {
392098
- type: "DocumentationPageUpdate";
392099
- output: {
392100
- success: true;
392101
- };
392102
- } | {
392103
- type: "DocumentationPageUpdateDocument";
392104
- output: {
392105
- success: true;
392106
- };
392107
- } | {
392108
- type: "DocumentationPageMove";
392109
- output: {
392110
- success: true;
392111
- };
392112
- } | {
392113
- type: "DocumentationPageDuplicate";
392114
- output: {
392115
- success: true;
392116
- };
392117
- } | {
392118
- type: "DocumentationPageDelete";
392119
- output: {
392120
- success: true;
392121
- };
392122
- } | {
392123
- type: "DocumentationPageRestore";
392124
- output: {
392125
- success: true;
392126
- };
392127
- } | {
392128
- type: "DocumentationGroupRestore";
392129
- output: {
392130
- success: true;
392131
- };
392132
- } | {
392133
- type: "DocumentationPageApprovalStateChange";
392134
- output: {
392135
- success: true;
392136
- };
392137
- } | {
392138
- type: "FigmaNodeRender";
392139
- figmaNodes: {
392140
- data: {
392141
- assetId: string;
392142
- assetScale: number;
392143
- assetUrl: string;
392144
- figmaNodeId: string;
392145
- isValid: boolean;
392146
- assetFormat: "Png" | "Svg";
392147
- assetWidth?: number | undefined;
392148
- assetHeight?: number | undefined;
392149
- };
392150
- id: string;
392151
- createdAt: Date;
392152
- updatedAt: Date;
392153
- persistentId: string;
392154
- designSystemVersionId: string;
392155
- origin: {
392156
- sourceId: string;
392157
- fileId?: string | undefined;
392158
- parentName?: string | undefined;
392159
- };
392160
- meta: {
392161
- name: string;
392162
- description?: string | undefined;
392163
- };
392164
- }[];
392165
- } | {
392166
- type: "FigmaNodeRenderAsync";
392167
- figmaNodes: {
392168
- data: {
392169
- format: "Png" | "Svg";
392170
- sceneNodeId: string;
392171
- renderState: "InProgress" | "Success" | "Failed";
392172
- hasSource: boolean;
392173
- scale?: number | undefined;
392174
- renderedImage?: {
392175
- resourceId: string;
392176
- format: "Png" | "Svg";
392177
- url?: string | undefined;
392178
- width?: number | undefined;
392179
- height?: number | undefined;
392180
- originKey?: string | undefined;
392181
- scale?: number | undefined;
392182
- } | undefined;
392183
- renderError?: {
392184
- type: "MissingIntegration" | "NodeNotFound" | "RenderError";
392185
- } | undefined;
392186
- };
392187
- id: string;
392188
- createdAt: Date;
392189
- updatedAt: Date;
392190
- persistentId: string;
392191
- designSystemVersionId: string;
392192
- origin: {
392193
- sourceId: string;
392194
- fileId?: string | undefined;
392195
- parentName?: string | undefined;
392196
- };
392197
- meta: {
392198
- name: string;
392199
- description?: string | undefined;
392200
- };
392201
- }[];
392202
- } | {
392203
- type: "ElementPropertyValuesEdit";
392204
- output: {
392205
- success: true;
392206
- };
392207
- }>;
392208
- updateDocPage(dsId: string, vId: string, input: DTOUpdateDocumentationPageInputV2): Promise<{
392209
- type: "DocumentationGroupCreate";
392210
- output: {
392211
- success: true;
392212
- };
392213
- } | {
392214
- type: "DocumentationTabCreate";
392215
- output: {
392216
- success: true;
392217
- };
392218
- } | {
392219
- type: "DocumentationGroupUpdate";
392220
- output: {
392221
- success: true;
392222
- };
392223
- } | {
392224
- type: "DocumentationGroupMove";
392225
- output: {
392226
- success: true;
392227
- };
392228
- } | {
392229
- type: "DocumentationGroupDuplicate";
392230
- output: {
392231
- success: true;
392232
- };
392233
- } | {
392234
- type: "DocumentationGroupDelete";
392235
- output: {
392236
- success: true;
392237
- };
392238
- } | {
392239
- type: "DocumentationTabGroupDelete";
392240
- output: {
392241
- success: true;
392242
- };
392243
- } | {
392244
- type: "DocumentationPageCreate";
392245
- output: {
392246
- success: true;
392247
- };
392248
- } | {
392249
- type: "DocumentationPageUpdate";
392250
- output: {
392251
- success: true;
392252
- };
392253
- } | {
392254
- type: "DocumentationPageUpdateDocument";
392255
- output: {
392256
- success: true;
392257
- };
392258
- } | {
392259
- type: "DocumentationPageMove";
392260
- output: {
392261
- success: true;
392262
- };
392263
- } | {
392264
- type: "DocumentationPageDuplicate";
392265
- output: {
392266
- success: true;
392267
- };
392268
- } | {
392269
- type: "DocumentationPageDelete";
392270
- output: {
392271
- success: true;
392272
- };
392273
- } | {
392274
- type: "DocumentationPageRestore";
392275
- output: {
392276
- success: true;
392277
- };
392278
- } | {
392279
- type: "DocumentationGroupRestore";
392280
- output: {
392281
- success: true;
392282
- };
392283
- } | {
392284
- type: "DocumentationPageApprovalStateChange";
392285
- output: {
392286
- success: true;
392287
- };
392288
- } | {
392289
- type: "FigmaNodeRender";
392290
- figmaNodes: {
392291
- data: {
392292
- assetId: string;
392293
- assetScale: number;
392294
- assetUrl: string;
392295
- figmaNodeId: string;
392296
- isValid: boolean;
392297
- assetFormat: "Png" | "Svg";
392298
- assetWidth?: number | undefined;
392299
- assetHeight?: number | undefined;
392300
- };
392301
- id: string;
392302
- createdAt: Date;
392303
- updatedAt: Date;
392304
- persistentId: string;
392305
- designSystemVersionId: string;
392306
- origin: {
392307
- sourceId: string;
392308
- fileId?: string | undefined;
392309
- parentName?: string | undefined;
392310
- };
392311
- meta: {
392312
- name: string;
392313
- description?: string | undefined;
392314
- };
392315
- }[];
392316
391357
  } | {
392317
391358
  type: "FigmaNodeRenderAsync";
392318
391359
  figmaNodes: {
@@ -392356,7 +391397,7 @@ declare class ElementsActionEndpoint {
392356
391397
  success: true;
392357
391398
  };
392358
391399
  }>;
392359
- updateDocPageDocument(dsId: string, vId: string, input: DTOUpdateDocumentationPageDocumentInputV2): Promise<{
391400
+ moveDocGroup(dsId: string, vId: string, input: DTOMoveDocumentationGroupInput): Promise<{
392360
391401
  type: "DocumentationGroupCreate";
392361
391402
  output: {
392362
391403
  success: true;
@@ -392436,34 +391477,6 @@ declare class ElementsActionEndpoint {
392436
391477
  output: {
392437
391478
  success: true;
392438
391479
  };
392439
- } | {
392440
- type: "FigmaNodeRender";
392441
- figmaNodes: {
392442
- data: {
392443
- assetId: string;
392444
- assetScale: number;
392445
- assetUrl: string;
392446
- figmaNodeId: string;
392447
- isValid: boolean;
392448
- assetFormat: "Png" | "Svg";
392449
- assetWidth?: number | undefined;
392450
- assetHeight?: number | undefined;
392451
- };
392452
- id: string;
392453
- createdAt: Date;
392454
- updatedAt: Date;
392455
- persistentId: string;
392456
- designSystemVersionId: string;
392457
- origin: {
392458
- sourceId: string;
392459
- fileId?: string | undefined;
392460
- parentName?: string | undefined;
392461
- };
392462
- meta: {
392463
- name: string;
392464
- description?: string | undefined;
392465
- };
392466
- }[];
392467
391480
  } | {
392468
391481
  type: "FigmaNodeRenderAsync";
392469
391482
  figmaNodes: {
@@ -392507,7 +391520,7 @@ declare class ElementsActionEndpoint {
392507
391520
  success: true;
392508
391521
  };
392509
391522
  }>;
392510
- updateDocGroup(dsId: string, vId: string, input: DTOUpdateDocumentationGroupInput): Promise<{
391523
+ updateDocPage(dsId: string, vId: string, input: DTOUpdateDocumentationPageInputV2): Promise<{
392511
391524
  type: "DocumentationGroupCreate";
392512
391525
  output: {
392513
391526
  success: true;
@@ -392587,34 +391600,6 @@ declare class ElementsActionEndpoint {
392587
391600
  output: {
392588
391601
  success: true;
392589
391602
  };
392590
- } | {
392591
- type: "FigmaNodeRender";
392592
- figmaNodes: {
392593
- data: {
392594
- assetId: string;
392595
- assetScale: number;
392596
- assetUrl: string;
392597
- figmaNodeId: string;
392598
- isValid: boolean;
392599
- assetFormat: "Png" | "Svg";
392600
- assetWidth?: number | undefined;
392601
- assetHeight?: number | undefined;
392602
- };
392603
- id: string;
392604
- createdAt: Date;
392605
- updatedAt: Date;
392606
- persistentId: string;
392607
- designSystemVersionId: string;
392608
- origin: {
392609
- sourceId: string;
392610
- fileId?: string | undefined;
392611
- parentName?: string | undefined;
392612
- };
392613
- meta: {
392614
- name: string;
392615
- description?: string | undefined;
392616
- };
392617
- }[];
392618
391603
  } | {
392619
391604
  type: "FigmaNodeRenderAsync";
392620
391605
  figmaNodes: {
@@ -392658,7 +391643,7 @@ declare class ElementsActionEndpoint {
392658
391643
  success: true;
392659
391644
  };
392660
391645
  }>;
392661
- createDocTab(dsId: string, vId: string, input: DTOCreateDocumentationTabInput): Promise<{
391646
+ updateDocPageDocument(dsId: string, vId: string, input: DTOUpdateDocumentationPageDocumentInputV2): Promise<{
392662
391647
  type: "DocumentationGroupCreate";
392663
391648
  output: {
392664
391649
  success: true;
@@ -392738,34 +391723,6 @@ declare class ElementsActionEndpoint {
392738
391723
  output: {
392739
391724
  success: true;
392740
391725
  };
392741
- } | {
392742
- type: "FigmaNodeRender";
392743
- figmaNodes: {
392744
- data: {
392745
- assetId: string;
392746
- assetScale: number;
392747
- assetUrl: string;
392748
- figmaNodeId: string;
392749
- isValid: boolean;
392750
- assetFormat: "Png" | "Svg";
392751
- assetWidth?: number | undefined;
392752
- assetHeight?: number | undefined;
392753
- };
392754
- id: string;
392755
- createdAt: Date;
392756
- updatedAt: Date;
392757
- persistentId: string;
392758
- designSystemVersionId: string;
392759
- origin: {
392760
- sourceId: string;
392761
- fileId?: string | undefined;
392762
- parentName?: string | undefined;
392763
- };
392764
- meta: {
392765
- name: string;
392766
- description?: string | undefined;
392767
- };
392768
- }[];
392769
391726
  } | {
392770
391727
  type: "FigmaNodeRenderAsync";
392771
391728
  figmaNodes: {
@@ -392809,7 +391766,7 @@ declare class ElementsActionEndpoint {
392809
391766
  success: true;
392810
391767
  };
392811
391768
  }>;
392812
- renderNodes(dsId: string, vId: string, input: DTOFigmaNodeRenderIdInput[]): Promise<{
391769
+ updateDocGroup(dsId: string, vId: string, input: DTOUpdateDocumentationGroupInput): Promise<{
392813
391770
  type: "DocumentationGroupCreate";
392814
391771
  output: {
392815
391772
  success: true;
@@ -392890,17 +391847,26 @@ declare class ElementsActionEndpoint {
392890
391847
  success: true;
392891
391848
  };
392892
391849
  } | {
392893
- type: "FigmaNodeRender";
391850
+ type: "FigmaNodeRenderAsync";
392894
391851
  figmaNodes: {
392895
391852
  data: {
392896
- assetId: string;
392897
- assetScale: number;
392898
- assetUrl: string;
392899
- figmaNodeId: string;
392900
- isValid: boolean;
392901
- assetFormat: "Png" | "Svg";
392902
- assetWidth?: number | undefined;
392903
- assetHeight?: number | undefined;
391853
+ format: "Png" | "Svg";
391854
+ sceneNodeId: string;
391855
+ renderState: "InProgress" | "Success" | "Failed";
391856
+ hasSource: boolean;
391857
+ scale?: number | undefined;
391858
+ renderedImage?: {
391859
+ resourceId: string;
391860
+ format: "Png" | "Svg";
391861
+ url?: string | undefined;
391862
+ width?: number | undefined;
391863
+ height?: number | undefined;
391864
+ originKey?: string | undefined;
391865
+ scale?: number | undefined;
391866
+ } | undefined;
391867
+ renderError?: {
391868
+ type: "MissingIntegration" | "NodeNotFound" | "RenderError";
391869
+ } | undefined;
392904
391870
  };
392905
391871
  id: string;
392906
391872
  createdAt: Date;
@@ -392917,6 +391883,92 @@ declare class ElementsActionEndpoint {
392917
391883
  description?: string | undefined;
392918
391884
  };
392919
391885
  }[];
391886
+ } | {
391887
+ type: "ElementPropertyValuesEdit";
391888
+ output: {
391889
+ success: true;
391890
+ };
391891
+ }>;
391892
+ createDocTab(dsId: string, vId: string, input: DTOCreateDocumentationTabInput): Promise<{
391893
+ type: "DocumentationGroupCreate";
391894
+ output: {
391895
+ success: true;
391896
+ };
391897
+ } | {
391898
+ type: "DocumentationTabCreate";
391899
+ output: {
391900
+ success: true;
391901
+ };
391902
+ } | {
391903
+ type: "DocumentationGroupUpdate";
391904
+ output: {
391905
+ success: true;
391906
+ };
391907
+ } | {
391908
+ type: "DocumentationGroupMove";
391909
+ output: {
391910
+ success: true;
391911
+ };
391912
+ } | {
391913
+ type: "DocumentationGroupDuplicate";
391914
+ output: {
391915
+ success: true;
391916
+ };
391917
+ } | {
391918
+ type: "DocumentationGroupDelete";
391919
+ output: {
391920
+ success: true;
391921
+ };
391922
+ } | {
391923
+ type: "DocumentationTabGroupDelete";
391924
+ output: {
391925
+ success: true;
391926
+ };
391927
+ } | {
391928
+ type: "DocumentationPageCreate";
391929
+ output: {
391930
+ success: true;
391931
+ };
391932
+ } | {
391933
+ type: "DocumentationPageUpdate";
391934
+ output: {
391935
+ success: true;
391936
+ };
391937
+ } | {
391938
+ type: "DocumentationPageUpdateDocument";
391939
+ output: {
391940
+ success: true;
391941
+ };
391942
+ } | {
391943
+ type: "DocumentationPageMove";
391944
+ output: {
391945
+ success: true;
391946
+ };
391947
+ } | {
391948
+ type: "DocumentationPageDuplicate";
391949
+ output: {
391950
+ success: true;
391951
+ };
391952
+ } | {
391953
+ type: "DocumentationPageDelete";
391954
+ output: {
391955
+ success: true;
391956
+ };
391957
+ } | {
391958
+ type: "DocumentationPageRestore";
391959
+ output: {
391960
+ success: true;
391961
+ };
391962
+ } | {
391963
+ type: "DocumentationGroupRestore";
391964
+ output: {
391965
+ success: true;
391966
+ };
391967
+ } | {
391968
+ type: "DocumentationPageApprovalStateChange";
391969
+ output: {
391970
+ success: true;
391971
+ };
392920
391972
  } | {
392921
391973
  type: "FigmaNodeRenderAsync";
392922
391974
  figmaNodes: {
@@ -393040,34 +392092,6 @@ declare class ElementsActionEndpoint {
393040
392092
  output: {
393041
392093
  success: true;
393042
392094
  };
393043
- } | {
393044
- type: "FigmaNodeRender";
393045
- figmaNodes: {
393046
- data: {
393047
- assetId: string;
393048
- assetScale: number;
393049
- assetUrl: string;
393050
- figmaNodeId: string;
393051
- isValid: boolean;
393052
- assetFormat: "Png" | "Svg";
393053
- assetWidth?: number | undefined;
393054
- assetHeight?: number | undefined;
393055
- };
393056
- id: string;
393057
- createdAt: Date;
393058
- updatedAt: Date;
393059
- persistentId: string;
393060
- designSystemVersionId: string;
393061
- origin: {
393062
- sourceId: string;
393063
- fileId?: string | undefined;
393064
- parentName?: string | undefined;
393065
- };
393066
- meta: {
393067
- name: string;
393068
- description?: string | undefined;
393069
- };
393070
- }[];
393071
392095
  } | {
393072
392096
  type: "FigmaNodeRenderAsync";
393073
392097
  figmaNodes: {
@@ -393191,34 +392215,6 @@ declare class ElementsActionEndpoint {
393191
392215
  output: {
393192
392216
  success: true;
393193
392217
  };
393194
- } | {
393195
- type: "FigmaNodeRender";
393196
- figmaNodes: {
393197
- data: {
393198
- assetId: string;
393199
- assetScale: number;
393200
- assetUrl: string;
393201
- figmaNodeId: string;
393202
- isValid: boolean;
393203
- assetFormat: "Png" | "Svg";
393204
- assetWidth?: number | undefined;
393205
- assetHeight?: number | undefined;
393206
- };
393207
- id: string;
393208
- createdAt: Date;
393209
- updatedAt: Date;
393210
- persistentId: string;
393211
- designSystemVersionId: string;
393212
- origin: {
393213
- sourceId: string;
393214
- fileId?: string | undefined;
393215
- parentName?: string | undefined;
393216
- };
393217
- meta: {
393218
- name: string;
393219
- description?: string | undefined;
393220
- };
393221
- }[];
393222
392218
  } | {
393223
392219
  type: "FigmaNodeRenderAsync";
393224
392220
  figmaNodes: {
@@ -411115,4 +410111,4 @@ declare function isValidRedirectPath(path: string): {
411115
410111
  reason: ValidationErrorReason | undefined;
411116
410112
  };
411117
410113
 
411118
- export { AuthTokensEndpoint, BackendFeatureRoomYDoc, BackendForgeProjectRoomYDoc, BackendThreadRoomYDoc, BackendVersionRoomYDoc, BlockDefinitionUtils, BlockParsingUtils, BrandsEndpoint, ChatThreadMessagesEndpoint, CodegenEndpoint, Collection, DTOAccessToken, DTOAccessTokenCreatePayload, DTOAccessTokenFull, DTOAccessTokenFullResponse, DTOAccessTokenListResponse, DTOAccessTokenResponse, DTOAddMembersToForgeProject, 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, DTOCodeComponentDocFile, DTOCodeComponentListResponse, DTOCodeComponentPropUsage, DTOCodeComponentProperty, DTOCodeComponentStorybookFile, DTOCodeComponentUsage, DTOCodeComponentUsageResponse, DTOCodeHistoryQuery, DTOCodeHistoryRepositoryFilter, DTOCodeHistoryResponse, DTOCodeHistorySnapshot, DTOCodeScanDeleteResponse, DTOCodeScanFinished, DTOCodeScanListItem, DTOCodeScanListResponse, DTOCodeScanUploadedBy, DTOCodeSnapshotFinalizePayload, DTOCodeSnapshotFinalizeResponse, DTOCodeSnapshotProcessingRunResponse, DTOCodeSnapshotProcessingRunStatus, DTOCodeSnapshotProcessingRunStatusItem, DTOCodeSnapshotProcessingRunStatusResponse, DTOCodeSnapshotScannerType, DTOCodeSnapshotStartProcessingRunPayload, DTOCodeSnapshotUploadInitPayload, DTOCodeSnapshotUploadInitResponse, DTOCodeSnapshotUploadInitScannerType, DTOCollectionOrigin, DTOColorTokenInlineData, DTOCreateDocumentationGroupInput, DTOCreateDocumentationPageInputV2, DTOCreateDocumentationTabInput, DTOCreateFeatureSandbox, 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, DTODesignElementsDataDiffResponse, DTODesignSystem, DTODesignSystemComponent, DTODesignSystemComponentCreateInput, DTODesignSystemComponentListResponse, DTODesignSystemComponentResponse, DTODesignSystemContactsResponse, DTODesignSystemCreateInput, DTODesignSystemInvitation, DTODesignSystemMember, DTODesignSystemMemberListResponse, DTODesignSystemMembersUpdatePayload, DTODesignSystemMembersUpdateResponse, DTODesignSystemPipelineCreateBody, DTODesignSystemPipelineListQuery, DTODesignSystemResponse, DTODesignSystemRole, DTODesignSystemUpdateAccessModeInput, DTODesignSystemUpdateInput, DTODesignSystemUpdateSwitcherInput, DTODesignSystemVersion, DTODesignSystemVersionCreationResponse, DTODesignSystemVersionGetResponse, DTODesignSystemVersionJobStatusResponse, DTODesignSystemVersionJobsResponse, DTODesignSystemVersionRoom, DTODesignSystemVersionRoomResponse, DTODesignSystemVersionStats, DTODesignSystemVersionStatsQuery, DTODesignSystemVersionsListResponse, DTODesignSystemsListResponse, DTODesignToken, DTODesignTokenCreatePayload, DTODesignTokenGroup, DTODesignTokenGroupCreatePayload, DTODesignTokenGroupListResponse, DTODesignTokenGroupResponse, DTODesignTokenListResponse, DTODesignTokenResponse, DTODiffCountBase, DTODocumentationAnalyticsDiffPayload, DTODocumentationAnalyticsRequest, DTODocumentationAnalyticsTimeFrame, DTODocumentationAnalyticsTimeFrameComparison, DTODocumentationConfiguration, DTODocumentationConfigurationResponse, DTODocumentationContent, DTODocumentationContentQuery, DTODocumentationContentResponse, 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, DTODocumentationMinimalPage, DTODocumentationMinimalPageListResponse, 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, DTOFVPMigrationsCollectionKeysPayload, DTOFeatureAgentResponseTracker, DTOFeatureAgentWorkFinalizeInput, DTOFeatureArtifact, DTOFeatureArtifactCreateInput, DTOFeatureArtifactDeleteInput, DTOFeatureArtifactGetByIdParam, DTOFeatureArtifactListQuery, DTOFeatureArtifactListResponse, DTOFeatureArtifactResponse, DTOFeatureArtifactWithContentResponse, DTOFeatureEvent, DTOFeatureEventMessagesSent, DTOFeatureEventReactionsDeleted, DTOFeatureEventReactionsSent, DTOFeatureIteration, DTOFeatureIterationArtifactDiff, DTOFeatureIterationArtifactsDiff, DTOFeatureIterationCreateInput, DTOFeatureIterationError, DTOFeatureIterationErrorType, DTOFeatureIterationListResponse, DTOFeatureIterationPromoteInput, DTOFeatureIterationResponse, DTOFeatureIterationSetLatestInput, DTOFeatureIterationState, DTOFeatureIterationTag, DTOFeatureIterationTagCreateInput, DTOFeatureIterationTagListResponse, DTOFeatureIterationTagResponse, DTOFeatureIterationUpdateArtifactsByMessageInput, DTOFeatureIterationUpdateArtifactsInput, DTOFeatureIterationUpdateInput, DTOFeatureIterationValidateInput, DTOFeatureIterationValidateResponse, DTOFeatureMessage, DTOFeatureMessageAgentSender, DTOFeatureMessageAttachments, DTOFeatureMessageCreateInput, DTOFeatureMessageListResponse, DTOFeatureMessageReaction, DTOFeatureMessageReactionCreateInput, DTOFeatureMessageReactionDeleteInput, DTOFeatureMessageReactionResponse, DTOFeatureMessageResponse, DTOFeatureMessageSender, DTOFeatureMessageSystemSender, DTOFeatureMessageUpdateInput, DTOFeatureMessageUserSender, DTOFeaturePublishedStateUpdateInput, DTOFeatureSandbox, DTOFeatureSandboxListResponse, DTOFeatureUpdateThemeInput, DTOFigmaComponent, DTOFigmaComponentBooleanProperty, DTOFigmaComponentGroup, DTOFigmaComponentGroupListResponse, DTOFigmaComponentInstanceSwapProperty, DTOFigmaComponentListResponse, DTOFigmaComponentProperty, DTOFigmaComponentPropertyMap, DTOFigmaComponentTextProperty, DTOFigmaComponentVariantProperty, DTOFigmaExportNodeConfiguration, DTOFigmaExportNodeFormat, DTOFigmaNode, DTOFigmaNodeData, DTOFigmaNodeDataV2, DTOFigmaNodeOrigin, DTOFigmaNodeRenderActionInput, DTOFigmaNodeRenderActionOutput, DTOFigmaNodeRenderAsyncActionInput, DTOFigmaNodeRenderAsyncActionOutput, DTOFigmaNodeRenderFormat, DTOFigmaNodeRenderIdInput, DTOFigmaNodeRenderInput, DTOFigmaNodeRenderUrlInput, DTOFigmaNodeRerenderInput, DTOFigmaNodeStructure, DTOFigmaNodeStructureDetail, DTOFigmaNodeStructureDetailResponse, DTOFigmaNodeStructureListResponse, DTOFigmaNodeV2, DTOFigmaSourceUpdatePayload, DTOFile, DTOFileFigmaRenderMode, DTOFileFinalizeBulkPayload, DTOFileFinalizeBulkResponse, DTOFileListResponse, DTOFileReference, DTOFileResponseItem, DTOFileSource, DTOFileSourceFigma, DTOFileSourceUpload, DTOFileUploadBulkPayload, DTOFileUploadBulkResponse, DTOFileUploadFinalizePayload, DTOFileUploadFinalizeResponse, DTOFileUploadItem, DTOFileUploadPayload, DTOFileUploadResponse, DTOFileUploadResponseItem, DTOFilesGetPayload, DTOFilesGetQuery, DTOFilesResponse, DTOForgeAgent, DTOForgeAgentsListResponse, DTOForgeArtifact, DTOForgeArtifactGetResponse, DTOForgeArtifactsListResponse, DTOForgeAvatarBuilder, DTOForgeBuildArtifact, DTOForgeChatExportResponse, DTOForgeChatMessage, DTOForgeChatMessageCreateInput, DTOForgeChatMessageCreateResponse, DTOForgeChatMessageListQuery, DTOForgeChatMessageListResponse, DTOForgeChatMessageScoreInput, DTOForgeChatMessageScoreRequest, DTOForgeChatMessageSender, DTOForgeChatMessageSenderType, DTOForgeChatMessageTagInput, DTOForgeChatThread, DTOForgeChatThreadCreateInput, DTOForgeChatThreadCreateResponse, DTOForgeChatThreadDeleteResponse, DTOForgeChatThreadListQuery, DTOForgeChatThreadListResponse, DTOForgeChatThreadUpdateInput, DTOForgeChatThreadUpdateResponse, DTOForgeComponentSet, DTOForgeComponentSetTypeV2, DTOForgeDocumentGetByIdParam, DTOForgeDocumentGetResponse, DTOForgeEntity, DTOForgeFeatureRoom, DTOForgeFeatureRoomResponse, DTOForgeFigmaArtifact, DTOForgeFigmaNode, DTOForgeFigmaNodeConversionVersion, DTOForgeFigmaNodeCreateRequest, DTOForgeFigmaNodeOrigin, DTOForgeFigmaNodeResponse, DTOForgeFigmaNodeState, DTOForgeFigmaNodeValidateResponse, DTOForgeFileArtifact, DTOForgeIconSet, DTOForgeIconSetTypeV2, DTOForgeIterationMessage, DTOForgeIterationMessagesListResponse, DTOForgeMemoryCreateInput, DTOForgeMemoryDeleteInput, DTOForgeMemoryEntry, DTOForgeMemoryEntryListQuery, DTOForgeMemoryEntryListResponse, DTOForgeMemoryEntryResponse, DTOForgeMemoryUpdateInput, DTOForgeParticipant, DTOForgeParticipantGetResponse, DTOForgeParticipantsListResponse, DTOForgeProject, DTOForgeProjectAccessMode, DTOForgeProjectAction, DTOForgeProjectActionArtifactCreate, DTOForgeProjectActionArtifactDelete, DTOForgeProjectActionArtifactMove, DTOForgeProjectActionArtifactUpdate, DTOForgeProjectActionFeatureCreate, DTOForgeProjectActionFeatureDelete, DTOForgeProjectActionFeatureMove, DTOForgeProjectActionFeatureUpdate, type DTOForgeProjectActionOfType, DTOForgeProjectActionSectionCreate, DTOForgeProjectActionSectionDelete, DTOForgeProjectActionSectionMove, DTOForgeProjectActionSectionUpdate, type DTOForgeProjectActionType, DTOForgeProjectArtifact, DTOForgeProjectArtifactContentResponse, DTOForgeProjectArtifactCreateInput, DTOForgeProjectArtifactCreateResponse, DTOForgeProjectArtifactDeleteInput, DTOForgeProjectArtifactDeleteResponse, DTOForgeProjectArtifactGetResponse, DTOForgeProjectArtifactMoveInput, DTOForgeProjectArtifactMoveResponse, DTOForgeProjectArtifactRoom, DTOForgeProjectArtifactRoomResponse, DTOForgeProjectArtifactUpdateInput, DTOForgeProjectArtifactUpdateResponse, DTOForgeProjectArtifactsListResponse, DTOForgeProjectContext, DTOForgeProjectContextCreateResponse, DTOForgeProjectContextCreateV2, DTOForgeProjectContextCreated, DTOForgeProjectContextDeleted, DTOForgeProjectContextGetResponse, DTOForgeProjectContextListQueryV2, DTOForgeProjectContextListResponse, DTOForgeProjectContextListResponseV2, DTOForgeProjectContextRemoveResponse, DTOForgeProjectContextResponseV2, DTOForgeProjectContextUpdateResponse, DTOForgeProjectContextUpdateV2, DTOForgeProjectContextUpdated, DTOForgeProjectContextV2, DTOForgeProjectCreate, DTOForgeProjectCreated, DTOForgeProjectDefaultRole, DTOForgeProjectDocumentPreview, DTOForgeProjectFeature, DTOForgeProjectFeatureCreateInput, DTOForgeProjectFeatureDeleteInput, DTOForgeProjectFeatureGetByIdParam, DTOForgeProjectFeatureGetResponse, DTOForgeProjectFeatureListResponse, DTOForgeProjectFeatureMoveInput, DTOForgeProjectFeaturePreview, DTOForgeProjectFeatureSandboxUpdated, DTOForgeProjectFeatureUpdateInput, DTOForgeProjectFigmaNode, DTOForgeProjectFigmaNodeRenderInput, DTOForgeProjectFile, DTOForgeProjectFileListResponse, DTOForgeProjectFileUploadFinalizePayload, DTOForgeProjectFileUploadFinalizeResponse, DTOForgeProjectFileUploadPayload, DTOForgeProjectFileUploadPayloadItem, DTOForgeProjectFileUploadResponse, DTOForgeProjectInvitation, DTOForgeProjectInvitationCreateResponse, DTOForgeProjectInvitationGetResponse, DTOForgeProjectInvitationRemoveResponse, DTOForgeProjectInvitationUpdateResponse, DTOForgeProjectInvitationsListResponse, DTOForgeProjectIteration, DTOForgeProjectIterationListResponse, DTOForgeProjectIterationMergeMeta, DTOForgeProjectIterationTagSet, DTOForgeProjectIterationUpdated, DTOForgeProjectListResponse, DTOForgeProjectMember, DTOForgeProjectMemberCreateResponse, DTOForgeProjectMemberDeleted, DTOForgeProjectMemberGetResponse, DTOForgeProjectMemberListQuery, DTOForgeProjectMemberRemoveResponse, DTOForgeProjectMemberRole, DTOForgeProjectMemberUpdateResponse, DTOForgeProjectMemberUpdated, DTOForgeProjectMembersCreated, DTOForgeProjectMembersListResponse, DTOForgeProjectPublishedFeature, DTOForgeProjectPublishedFeatureGetResponse, DTOForgeProjectResponse, DTOForgeProjectRole, DTOForgeProjectRoom, DTOForgeProjectRoomEvent, DTOForgeProjectRoomResponse, DTOForgeProjectTheme, DTOForgeProjectUpdate, DTOForgeProjectUpdated, DTOForgeRelation, DTOForgeRelationCreate, DTOForgeRelationDelete, DTOForgeRelationListInput, DTOForgeRelationListResponse, DTOForgeRelationType, DTOForgeSection, DTOForgeSectionCreateInput, DTOForgeSectionDeleteInput, DTOForgeSectionItemMoveInput, DTOForgeSectionMoveInput, DTOForgeSectionUpdateInput, DTOForgeSpecArtifact, DTOForgeThemeKnownPreset, DTOForgeTokenThemeSet, DTOFrameNodeStructure, DTOFrameNodeStructureListResponse, DTOGetBlockDefinitionsOutput, DTOGetBlockDefinitionsQuery, DTOGetDocumentationPageAnchorsResponse, DTOGetForgeIterationMessageResponse, DTOGetForgeProjectIterationResponse, DTOGitBranch, DTOGitOrganization, DTOGitProject, DTOGitRepository, DTOIPWhitelist, DTOIPWhitelistEntry, DTOIPWhitelistResponse, DTOIPWhitelistUpdate, DTOImportJob, DTOImportJobResponse, DTOIntegration, DTOIntegrationCredentials, DTOIntegrationOAuthGetResponse, DTOIntegrationPostResponse, DTOIntegrationsGetListResponse, DTOKeepAliveFeatureSandboxResponse, DTOLiveblocksAuthRequest, DTOLiveblocksAuthResponse, DTOLoginScreenSettings, DTOLoginScreenSettingsResponse, DTOLoginScreenSettingsUpdate, DTOMCPStream, DTOMCPStreamResponse, DTOMCPStreamUpdateInput, DTOMoveDocumentationGroupInput, DTOMoveDocumentationPageInputV2, DTONotificationBase, DTONotificationChannel, DTONotificationChatMentionPayload, DTONotificationCreateInput, DTONotificationProjectDocumentCommentPayload, DTONotificationProjectInvitationPayload, DTONotificationType, DTONpmRegistryAccessTokenResponse, DTONpmRegistryConfig, DTONpmRegistryConfigConstants, DTOObjectMeta, DTOPageBlockColorV2, DTOPageBlockDefinition, DTOPageBlockDefinitionBehavior, DTOPageBlockDefinitionItem, DTOPageBlockDefinitionLayout, DTOPageBlockDefinitionProperty, DTOPageBlockDefinitionVariant, DTOPageBlockItemV2, DTOPageRedirect, DTOPageRedirectCreateBody, DTOPageRedirectDeleteResponse, DTOPageRedirectListResponse, DTOPageRedirectResponse, DTOPageRedirectUpdateBody, DTOPagination, DTOPipeline, DTOPipelineCreateBody, DTOPipelineExporterQuery, DTOPipelineListQuery, DTOPipelineListResponse, DTOPipelineResponse, DTOPipelineTriggerBody, DTOPipelineUpdateBody, DTOPortalSettings, DTOPortalSettingsGetResponse, DTOPortalSettingsSidebar, DTOPortalSettingsSidebarLink, DTOPortalSettingsSidebarSection, DTOPortalSettingsTheme, DTOPortalSettingsUpdatePayload, DTOProduct, DTOProductCode, DTOProductPrice, DTOProjectContextOverride, DTOProjectContextOverrideInput, DTOProjectContextOverrideResponse, type DTOPropertyDefinitionBase, DTOProvisionFeatureSandboxInput, DTOProvisionFeatureSandboxResponse, DTOPublishDocumentationChanges, DTOPublishDocumentationRequest, DTOPublishDocumentationResponse, DTOPublishedDocAnalyticsComparisonData, DTOPublishedDocPageAnalyticsComparisonData, DTOPublishedDocPageVisitData, DTOPublishedDocVisitData, DTOPublishedDocVisitHeatMapWeek, DTORemoveForgeProjectInvitation, DTORemoveForgeProjectMember, DTORenderedAssetFile, DTORestoreDocumentationGroupInput, DTORestoreDocumentationPageInput, DTOSandboxError, DTOSandboxTemplate, DTOSandboxTemplateBuild, DTOSandboxTemplateBuildCreateInput, DTOSandboxTemplateBuildCreateResponse, DTOSandboxTemplateBuildCreated, DTOSandboxTemplateBuildFinalizeResponse, DTOSandboxTemplateBuildFinished, DTOSandboxTemplateBuildResponse, DTOSandboxTemplateBuildTriggerInput, DTOSandboxTemplateFile, DTOSandboxTemplateListResponse, DTOSandboxTemplatePreset, DTOSandboxTemplateQuery, DTOSandboxTemplateResponse, DTOSandboxTemplateVersion, DTOSandboxTemplateVersionCreated, DTOSandboxTemplateVersionDetail, DTOStorybookEntry, DTOStorybookEntryListResponse, DTOStorybookEntryOrigin, DTOStorybookEntryQuery, DTOStorybookEntryReplaceAction, DTOStorybookEntryResponse, DTOStorybookImportPayload, DTOStorybookSite, DTOStorybookSiteListQuery, DTOStorybookSiteListResponse, DTOStorybookSiteUploadPayload, DTOStorybookSiteUploadResponse, DTOStorybookSiteVersion, DTOStorybookSiteVersionResponse, DTOStorybookSourceUpdatePayload, DTOStorybookUploadStatus, DTOSubscription, DTOSubscriptionResponse, DTOSubscriptionUpcomingChange, DTOSubscriptionUpdateInput, DTOSubscriptionUpdatePreview, DTOSubscriptionUpdatePreviewResponse, DTOTheme, DTOThemeCreatePayload, DTOThemeListResponse, DTOThemeOverride, DTOThemeOverrideCreatePayload, DTOThemeResponse, DTOThemesListQuery, DTOThread, DTOThreadAgentResponseTracker, DTOThreadAgentType, DTOThreadEvent, DTOThreadEventMessagesSent, DTOThreadEventMessagesUpdated, DTOThreadEventReactionsDeleted, DTOThreadEventReactionsSent, DTOThreadMessage, DTOThreadMessageAgentSender, DTOThreadMessageAnnotation, DTOThreadMessageAnnotations, DTOThreadMessageAttachments, DTOThreadMessageAttachmentsCreateInput, DTOThreadMessageCreateInput, DTOThreadMessageFinalizeInput, DTOThreadMessageListResponse, DTOThreadMessageResponse, DTOThreadMessageRetryInput, DTOThreadMessageSender, DTOThreadMessageSystemSender, DTOThreadMessageUpdateInput, DTOThreadMessageUserSender, DTOThreadPromptState, DTOThreadReaction, DTOThreadReactionCreateInput, DTOThreadReactionDeleteInput, DTOThreadReactionResponse, DTOThreadSubjectType, DTOTokenCollection, DTOTokenCollectionsListReponse, DTOTrailEvent, DTOTrailEventClientCreate, DTOTrailEventCreate, DTOTrailEventListInput, DTOTrailEventListResponse, DTOTrailEventType, DTOTrailEventWithDetails, DTOTransferOwnershipPayload, DTOUGetForgeAgentResponse, DTOUpdateDocumentationGroupInput, DTOUpdateDocumentationPageDocumentInputV2, DTOUpdateDocumentationPageInputV2, DTOUpdateFeatureSandbox, DTOUpdateForgeAgent, DTOUpdateForgeAgentResponse, DTOUpdateForgeArtifact, DTOUpdateForgeArtifactResponse, DTOUpdateForgeBuildArtifact, DTOUpdateForgeFigmaArtifact, DTOUpdateForgeFileArtifact, DTOUpdateForgeIterationMessage, DTOUpdateForgeIterationMessageResponse, DTOUpdateForgeParticipant, DTOUpdateForgeParticipantResponse, DTOUpdateForgeProjectContext, DTOUpdateForgeProjectInvitation, DTOUpdateForgeProjectIteration, DTOUpdateForgeProjectIterationResponse, DTOUpdateForgeProjectMember, DTOUpdateForgeSpecArtifact, DTOUpdateRegistryInput, DTOUpdateRegistryOutput, DTOUpdateUserNotificationSettingsPayload, DTOUpdateVersionInput, DTOUploadUrlItem, DTOUser, DTOUserDesignSystemsResponse, DTOUserEmailSettings, DTOUserEmailSettingsUpdatePayload, DTOUserGetResponse, DTOUserNotificationSettings, DTOUserNotificationSettingsResponse, DTOUserOnboarding, DTOUserOnboardingDepartment, DTOUserOnboardingJobLevel, DTOUserPortalTheme, DTOUserProfile, DTOUserProfileUpdatePayload, DTOUserSource, DTOUserTheme, DTOUserUpdatePayload, DTOUserWorkspaceMembership, DTOUserWorkspaceMembershipsResponse, DTOWorkspace, DTOWorkspaceBilledSeatType, DTOWorkspaceCreateInput, DTOWorkspaceDefaultProjectAccessMode, DTOWorkspaceDefaultProjectRole, DTOWorkspaceIntegrationGetGitObjectsInput, DTOWorkspaceIntegrationOauthInput, DTOWorkspaceIntegrationPATInput, DTOWorkspaceInvitation, DTOWorkspaceInvitationInput, DTOWorkspaceInvitationUpdateResponse, DTOWorkspaceInvitationsListInput, DTOWorkspaceInvitationsResponse, DTOWorkspaceInviteUpdate, DTOWorkspaceMember, DTOWorkspaceMembersListResponse, DTOWorkspaceProfile, DTOWorkspaceResponse, DTOWorkspaceRole, DTOWorkspaceRoomEvent, DTOWorkspaceSeatType, DTOWorkspaceStats, DTOWorkspaceUntypedData, DTOWorkspaceUntypedDataCreatePayload, DTOWorkspaceUntypedDataListResponse, DTOWorkspaceUntypedDataResponse, DTOWorkspaceUntypedDataUpdatePayload, type DTPGetForgeAgentResponse, DesignSystemAnalyticsEndpoint, DesignSystemBffEndpoint, DesignSystemCodeSnapshotsEndpoint, DesignSystemComponentEndpoint, DesignSystemContactsEndpoint, DesignSystemFilesEndpoint, DesignSystemMembersEndpoint, DesignSystemPageRedirectsEndpoint, DesignSystemPipelinesEndpoint, 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, ForgeDocumentsEndpoint, ForgeEndpoint, ForgeFeatureArtifactsEndpoint, ForgeFeatureIterationTagsEndpoint, ForgeFeatureIterationsEndpoint, ForgeFeatureMessagesEndpoint, ForgeFigmaNodeLatestVersion, ForgeMemoryEndpoint, ForgeProjectContentRepository, ForgeProjectContextsEndpoint, ForgeProjectFeaturesEndpoint, ForgeProjectFilesEndpoint, ForgeProjectInvitationsEndpoint, ForgeProjectIterationsEndpoint, ForgeProjectMembersEndpoint, ForgeProjectRoomBaseYDoc, type ForgeProjectRoomBaseYDocState, ForgeProjectsEndpoint, FormattedCollections, FrontendFeatureRoomYDoc, FrontendThreadRoomYDoc, FrontendVersionRoomYDoc, GitDestinationOptions, ImportJobsEndpoint, IntegrationOauthCallbackState, IntegrationOauthPlatform, type ListItemNode, type ListNode, ListTreeBuilder, LiveblocksEndpoint, type LocalApproval, LocalDocsElementActionExecutor, type LocalDocsPage, type LocalDocsPageGroup, LocalProjectActionExecutor, MCPStreamsEndpoint, 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, SandboxTemplateBuildsEndpoint, SandboxTemplatesEndpoint, SandboxesEndpoint, StorybookEntriesEndpoint, StorybookSitesEndpoint, StringVariableScopeType, SupernovaApiClient, type SupportedElementActionType, ThemesEndpoint, ThreadRoomBaseYDoc, type ThreadRoomBaseYDocState, type ThreadRoomUpdate, ThreadsEndpoint, TokenCollectionsEndpoint, TokenGroupsEndpoint, TokensEndpoint, UsersEndpoint, Variable, VariableAlias, type VariableCollections, VariableCollectionsSchema, VariableMode, VariableValue, type Variables, VariablesMapping, VariablesSchema, type VersionRoomApproval, VersionRoomBaseYDoc, type VersionRoomBaseYDocState, type VersionRoomDocsPage, type VersionRoomDocsPageGroup, VersionSQSPayload, VersionStatsEndpoint, WorkspaceBillingEndpoint, WorkspaceChatThreadsEndpoint, WorkspaceConfigurationPayload, WorkspaceIntegrationsEndpoint, WorkspaceInvitationsEndpoint, WorkspaceMembersEndpoint, WorkspaceNpmRegistryEndpoint, WorkspaceSubscriptionEndpoint, WorkspacesEndpoint, type YJSKeyValueStorage, YJSKeyValueStorageV1, YJSKeyValueStorageV2, applyActionsLocally, applyPrivacyConfigurationToNestedItems, applyProjectActionsLocally, blockToProsemirrorNode, buildDocPagePublishPaths, calculateElementParentChain, computeDocsHierarchy, documentationAnalyticsToComparisonDto, documentationAnalyticsToGlobalDto, documentationAnalyticsToHeatMapDto, documentationAnalyticsToPageComparisonDto, documentationAnalyticsToPageDto, documentationConfigurationToDto, documentationItemConfigurationToDTOV1, documentationItemConfigurationToDTOV2, documentationPageToDTOV2, documentationPagesFixedConfigurationToDTOV1, documentationPagesFixedConfigurationToDTOV2, documentationPagesToDTOV1, documentationPagesToDTOV2, elementGroupsToDocumentationGroupDTOV1, elementGroupsToDocumentationGroupDTOV2, elementGroupsToDocumentationGroupFixedConfigurationDTOV1, elementGroupsToDocumentationGroupFixedConfigurationDTOV2, elementGroupsToDocumentationGroupStructureDTOV1, exhaustiveInvalidUriPaths, generateHash, generatePageContentHash, getDtoDefaultItemConfigurationV1, getDtoDefaultItemConfigurationV2, getMockPageBlockDefinitions, gitBranchToDto, gitOrganizationToDto, gitProjectToDto, gitRepositoryToDto, innerEditorProsemirrorSchema, integrationCredentialToDto, integrationToDto, isValidRedirectPath, itemConfigurationToYjs, mainEditorProsemirrorSchema, pageToProsemirrorDoc, pageToYDoc, pageToYXmlFragment, pipelineToDto, prosemirrorDocToPage, prosemirrorDocToRichTextPropertyValue, prosemirrorNodeToSection, prosemirrorNodesToBlocks, richTextPropertyValueToProsemirror, serializeAsCustomBlock, serializeQuery, shallowProsemirrorNodeToBlock, validateDesignSystemVersion, validateSsoPayload, yDocToPage, yXmlFragmentToPage, yjsToDocumentationHierarchy, zodQueryBoolean };
410114
+ export { AuthTokensEndpoint, BackendFeatureRoomYDoc, BackendForgeProjectRoomYDoc, BackendThreadRoomYDoc, BackendVersionRoomYDoc, BlockDefinitionUtils, BlockParsingUtils, BrandsEndpoint, ChatThreadMessagesEndpoint, CodegenEndpoint, Collection, DTOAccessToken, DTOAccessTokenCreatePayload, DTOAccessTokenFull, DTOAccessTokenFullResponse, DTOAccessTokenListResponse, DTOAccessTokenResponse, DTOAddMembersToForgeProject, 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, DTOCodeComponentDocFile, DTOCodeComponentListResponse, DTOCodeComponentPropUsage, DTOCodeComponentProperty, DTOCodeComponentStorybookFile, DTOCodeComponentUsage, DTOCodeComponentUsageResponse, DTOCodeHistoryQuery, DTOCodeHistoryRepositoryFilter, DTOCodeHistoryResponse, DTOCodeHistorySnapshot, DTOCodeScanDeleteResponse, DTOCodeScanFinished, DTOCodeScanListItem, DTOCodeScanListResponse, DTOCodeScanUploadedBy, DTOCodeSnapshotFinalizePayload, DTOCodeSnapshotFinalizeResponse, DTOCodeSnapshotProcessingRunResponse, DTOCodeSnapshotProcessingRunStatus, DTOCodeSnapshotProcessingRunStatusItem, DTOCodeSnapshotProcessingRunStatusResponse, DTOCodeSnapshotScannerType, DTOCodeSnapshotStartProcessingRunPayload, DTOCodeSnapshotUploadInitPayload, DTOCodeSnapshotUploadInitResponse, DTOCodeSnapshotUploadInitScannerType, DTOCollectionOrigin, DTOColorTokenInlineData, DTOCreateDocumentationGroupInput, DTOCreateDocumentationPageInputV2, DTOCreateDocumentationTabInput, DTOCreateFeatureSandbox, 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, DTODesignElementsDataDiffResponse, DTODesignSystem, DTODesignSystemComponent, DTODesignSystemComponentCreateInput, DTODesignSystemComponentListResponse, DTODesignSystemComponentResponse, DTODesignSystemContactsResponse, DTODesignSystemCreateInput, DTODesignSystemInvitation, DTODesignSystemMember, DTODesignSystemMemberListResponse, DTODesignSystemMembersUpdatePayload, DTODesignSystemMembersUpdateResponse, DTODesignSystemPipelineCreateBody, DTODesignSystemPipelineListQuery, DTODesignSystemResponse, DTODesignSystemRole, DTODesignSystemUpdateAccessModeInput, DTODesignSystemUpdateInput, DTODesignSystemUpdateSwitcherInput, DTODesignSystemVersion, DTODesignSystemVersionCreationResponse, DTODesignSystemVersionGetResponse, DTODesignSystemVersionJobStatusResponse, DTODesignSystemVersionJobsResponse, DTODesignSystemVersionRoom, DTODesignSystemVersionRoomResponse, DTODesignSystemVersionStats, DTODesignSystemVersionStatsQuery, DTODesignSystemVersionsListResponse, DTODesignSystemsListResponse, DTODesignToken, DTODesignTokenCreatePayload, DTODesignTokenGroup, DTODesignTokenGroupCreatePayload, DTODesignTokenGroupListResponse, DTODesignTokenGroupResponse, DTODesignTokenListResponse, DTODesignTokenResponse, DTODiffCountBase, DTODocumentationAnalyticsDiffPayload, DTODocumentationAnalyticsRequest, DTODocumentationAnalyticsTimeFrame, DTODocumentationAnalyticsTimeFrameComparison, DTODocumentationConfiguration, DTODocumentationConfigurationResponse, DTODocumentationContent, DTODocumentationContentQuery, DTODocumentationContentResponse, 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, DTODocumentationMinimalPage, DTODocumentationMinimalPageListResponse, 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, DTOFVPMigrationsCollectionKeysPayload, DTOFeatureAgentResponseTracker, DTOFeatureAgentWorkFinalizeInput, DTOFeatureArtifact, DTOFeatureArtifactCreateInput, DTOFeatureArtifactDeleteInput, DTOFeatureArtifactGetByIdParam, DTOFeatureArtifactListQuery, DTOFeatureArtifactListResponse, DTOFeatureArtifactResponse, DTOFeatureArtifactWithContentResponse, DTOFeatureEvent, DTOFeatureEventMessagesSent, DTOFeatureEventReactionsDeleted, DTOFeatureEventReactionsSent, DTOFeatureIteration, DTOFeatureIterationArtifactDiff, DTOFeatureIterationArtifactsDiff, DTOFeatureIterationCreateInput, DTOFeatureIterationError, DTOFeatureIterationErrorType, DTOFeatureIterationListResponse, DTOFeatureIterationPromoteInput, DTOFeatureIterationResponse, DTOFeatureIterationSetLatestInput, DTOFeatureIterationState, DTOFeatureIterationTag, DTOFeatureIterationTagCreateInput, DTOFeatureIterationTagListResponse, DTOFeatureIterationTagResponse, DTOFeatureIterationUpdateArtifactsByMessageInput, DTOFeatureIterationUpdateArtifactsInput, DTOFeatureIterationUpdateInput, DTOFeatureIterationValidateInput, DTOFeatureIterationValidateResponse, DTOFeatureMessage, DTOFeatureMessageAgentSender, DTOFeatureMessageAttachments, DTOFeatureMessageCreateInput, DTOFeatureMessageListResponse, DTOFeatureMessageReaction, DTOFeatureMessageReactionCreateInput, DTOFeatureMessageReactionDeleteInput, DTOFeatureMessageReactionResponse, DTOFeatureMessageResponse, DTOFeatureMessageSender, DTOFeatureMessageSystemSender, DTOFeatureMessageUpdateInput, DTOFeatureMessageUserSender, DTOFeaturePublishedStateUpdateInput, DTOFeatureSandbox, DTOFeatureSandboxListResponse, DTOFeatureUpdateThemeInput, DTOFigmaComponent, DTOFigmaComponentBooleanProperty, DTOFigmaComponentGroup, DTOFigmaComponentGroupListResponse, DTOFigmaComponentInstanceSwapProperty, DTOFigmaComponentListResponse, DTOFigmaComponentProperty, DTOFigmaComponentPropertyMap, DTOFigmaComponentTextProperty, DTOFigmaComponentVariantProperty, DTOFigmaExportNodeConfiguration, DTOFigmaExportNodeFormat, DTOFigmaNode, DTOFigmaNodeData, DTOFigmaNodeDataV2, DTOFigmaNodeOrigin, DTOFigmaNodeRenderAsyncActionInput, DTOFigmaNodeRenderAsyncActionOutput, DTOFigmaNodeRenderFormat, DTOFigmaNodeRenderIdInput, DTOFigmaNodeRenderInput, DTOFigmaNodeRenderUrlInput, DTOFigmaNodeRerenderInput, DTOFigmaNodeStructure, DTOFigmaNodeStructureDetail, DTOFigmaNodeStructureDetailResponse, DTOFigmaNodeStructureListResponse, DTOFigmaNodeV2, DTOFigmaSourceUpdatePayload, DTOFile, DTOFileFigmaRenderMode, DTOFileFinalizeBulkPayload, DTOFileFinalizeBulkResponse, DTOFileListResponse, DTOFileReference, DTOFileResponseItem, DTOFileSource, DTOFileSourceFigma, DTOFileSourceUpload, DTOFileUploadBulkPayload, DTOFileUploadBulkResponse, DTOFileUploadFinalizePayload, DTOFileUploadFinalizeResponse, DTOFileUploadItem, DTOFileUploadPayload, DTOFileUploadResponse, DTOFileUploadResponseItem, DTOFilesGetPayload, DTOFilesGetQuery, DTOFilesResponse, DTOForgeAgent, DTOForgeAgentsListResponse, DTOForgeArtifact, DTOForgeArtifactGetResponse, DTOForgeArtifactsListResponse, DTOForgeAvatarBuilder, DTOForgeBuildArtifact, DTOForgeChatExportResponse, DTOForgeChatMessage, DTOForgeChatMessageCreateInput, DTOForgeChatMessageCreateResponse, DTOForgeChatMessageListQuery, DTOForgeChatMessageListResponse, DTOForgeChatMessageScoreInput, DTOForgeChatMessageScoreRequest, DTOForgeChatMessageSender, DTOForgeChatMessageSenderType, DTOForgeChatMessageTagInput, DTOForgeChatThread, DTOForgeChatThreadCreateInput, DTOForgeChatThreadCreateResponse, DTOForgeChatThreadDeleteResponse, DTOForgeChatThreadListQuery, DTOForgeChatThreadListResponse, DTOForgeChatThreadUpdateInput, DTOForgeChatThreadUpdateResponse, DTOForgeComponentSet, DTOForgeComponentSetTypeV2, DTOForgeDocumentGetByIdParam, DTOForgeDocumentGetResponse, DTOForgeEntity, DTOForgeFeatureRoom, DTOForgeFeatureRoomResponse, DTOForgeFigmaArtifact, DTOForgeFigmaNode, DTOForgeFigmaNodeConversionVersion, DTOForgeFigmaNodeCreateRequest, DTOForgeFigmaNodeOrigin, DTOForgeFigmaNodeResponse, DTOForgeFigmaNodeState, DTOForgeFigmaNodeValidateResponse, DTOForgeFileArtifact, DTOForgeIconSet, DTOForgeIconSetTypeV2, DTOForgeIterationMessage, DTOForgeIterationMessagesListResponse, DTOForgeMemoryCreateInput, DTOForgeMemoryDeleteInput, DTOForgeMemoryEntry, DTOForgeMemoryEntryListQuery, DTOForgeMemoryEntryListResponse, DTOForgeMemoryEntryResponse, DTOForgeMemoryUpdateInput, DTOForgeParticipant, DTOForgeParticipantGetResponse, DTOForgeParticipantsListResponse, DTOForgeProject, DTOForgeProjectAccessMode, DTOForgeProjectAction, DTOForgeProjectActionArtifactCreate, DTOForgeProjectActionArtifactDelete, DTOForgeProjectActionArtifactMove, DTOForgeProjectActionArtifactUpdate, DTOForgeProjectActionFeatureCreate, DTOForgeProjectActionFeatureDelete, DTOForgeProjectActionFeatureMove, DTOForgeProjectActionFeatureUpdate, type DTOForgeProjectActionOfType, DTOForgeProjectActionSectionCreate, DTOForgeProjectActionSectionDelete, DTOForgeProjectActionSectionMove, DTOForgeProjectActionSectionUpdate, type DTOForgeProjectActionType, DTOForgeProjectArtifact, DTOForgeProjectArtifactContentResponse, DTOForgeProjectArtifactCreateInput, DTOForgeProjectArtifactCreateResponse, DTOForgeProjectArtifactDeleteInput, DTOForgeProjectArtifactDeleteResponse, DTOForgeProjectArtifactGetResponse, DTOForgeProjectArtifactMoveInput, DTOForgeProjectArtifactMoveResponse, DTOForgeProjectArtifactRoom, DTOForgeProjectArtifactRoomResponse, DTOForgeProjectArtifactUpdateInput, DTOForgeProjectArtifactUpdateResponse, DTOForgeProjectArtifactsListResponse, DTOForgeProjectContext, DTOForgeProjectContextCreateResponse, DTOForgeProjectContextCreateV2, DTOForgeProjectContextCreated, DTOForgeProjectContextDeleted, DTOForgeProjectContextGetResponse, DTOForgeProjectContextListQueryV2, DTOForgeProjectContextListResponse, DTOForgeProjectContextListResponseV2, DTOForgeProjectContextRemoveResponse, DTOForgeProjectContextResponseV2, DTOForgeProjectContextUpdateResponse, DTOForgeProjectContextUpdateV2, DTOForgeProjectContextUpdated, DTOForgeProjectContextV2, DTOForgeProjectCreate, DTOForgeProjectCreated, DTOForgeProjectDefaultRole, DTOForgeProjectDocumentPreview, DTOForgeProjectFeature, DTOForgeProjectFeatureCreateInput, DTOForgeProjectFeatureDeleteInput, DTOForgeProjectFeatureGetByIdParam, DTOForgeProjectFeatureGetResponse, DTOForgeProjectFeatureListResponse, DTOForgeProjectFeatureMoveInput, DTOForgeProjectFeaturePreview, DTOForgeProjectFeatureSandboxUpdated, DTOForgeProjectFeatureUpdateInput, DTOForgeProjectFigmaNode, DTOForgeProjectFigmaNodeRenderInput, DTOForgeProjectFile, DTOForgeProjectFileListResponse, DTOForgeProjectFileUploadFinalizePayload, DTOForgeProjectFileUploadFinalizeResponse, DTOForgeProjectFileUploadPayload, DTOForgeProjectFileUploadPayloadItem, DTOForgeProjectFileUploadResponse, DTOForgeProjectInvitation, DTOForgeProjectInvitationCreateResponse, DTOForgeProjectInvitationGetResponse, DTOForgeProjectInvitationRemoveResponse, DTOForgeProjectInvitationUpdateResponse, DTOForgeProjectInvitationsListResponse, DTOForgeProjectIteration, DTOForgeProjectIterationListResponse, DTOForgeProjectIterationMergeMeta, DTOForgeProjectIterationTagSet, DTOForgeProjectIterationUpdated, DTOForgeProjectListResponse, DTOForgeProjectMember, DTOForgeProjectMemberCreateResponse, DTOForgeProjectMemberDeleted, DTOForgeProjectMemberGetResponse, DTOForgeProjectMemberListQuery, DTOForgeProjectMemberRemoveResponse, DTOForgeProjectMemberRole, DTOForgeProjectMemberUpdateResponse, DTOForgeProjectMemberUpdated, DTOForgeProjectMembersCreated, DTOForgeProjectMembersListResponse, DTOForgeProjectPublishedFeature, DTOForgeProjectPublishedFeatureGetResponse, DTOForgeProjectResponse, DTOForgeProjectRole, DTOForgeProjectRoom, DTOForgeProjectRoomEvent, DTOForgeProjectRoomResponse, DTOForgeProjectTheme, DTOForgeProjectUpdate, DTOForgeProjectUpdated, DTOForgeRelation, DTOForgeRelationCreate, DTOForgeRelationDelete, DTOForgeRelationListInput, DTOForgeRelationListResponse, DTOForgeRelationType, DTOForgeSection, DTOForgeSectionCreateInput, DTOForgeSectionDeleteInput, DTOForgeSectionItemMoveInput, DTOForgeSectionMoveInput, DTOForgeSectionUpdateInput, DTOForgeSpecArtifact, DTOForgeThemeKnownPreset, DTOForgeTokenThemeSet, DTOFrameNodeStructure, DTOFrameNodeStructureListResponse, DTOGetBlockDefinitionsOutput, DTOGetBlockDefinitionsQuery, DTOGetDocumentationPageAnchorsResponse, DTOGetForgeIterationMessageResponse, DTOGetForgeProjectIterationResponse, DTOGitBranch, DTOGitOrganization, DTOGitProject, DTOGitRepository, DTOIPWhitelist, DTOIPWhitelistEntry, DTOIPWhitelistResponse, DTOIPWhitelistUpdate, DTOImportJob, DTOImportJobResponse, DTOIntegration, DTOIntegrationCredentials, DTOIntegrationOAuthGetResponse, DTOIntegrationPostResponse, DTOIntegrationsGetListResponse, DTOKeepAliveFeatureSandboxResponse, DTOLiveblocksAuthRequest, DTOLiveblocksAuthResponse, DTOLoginScreenSettings, DTOLoginScreenSettingsResponse, DTOLoginScreenSettingsUpdate, DTOMCPStream, DTOMCPStreamResponse, DTOMCPStreamUpdateInput, DTOMoveDocumentationGroupInput, DTOMoveDocumentationPageInputV2, DTONotificationBase, DTONotificationChannel, DTONotificationChatMentionPayload, DTONotificationCreateInput, DTONotificationProjectDocumentCommentPayload, DTONotificationProjectInvitationPayload, DTONotificationType, DTONpmRegistryAccessTokenResponse, DTONpmRegistryConfig, DTONpmRegistryConfigConstants, DTOObjectMeta, DTOPageBlockColorV2, DTOPageBlockDefinition, DTOPageBlockDefinitionBehavior, DTOPageBlockDefinitionItem, DTOPageBlockDefinitionLayout, DTOPageBlockDefinitionProperty, DTOPageBlockDefinitionVariant, DTOPageBlockItemV2, DTOPageRedirect, DTOPageRedirectCreateBody, DTOPageRedirectDeleteResponse, DTOPageRedirectListResponse, DTOPageRedirectResponse, DTOPageRedirectUpdateBody, DTOPagination, DTOPipeline, DTOPipelineCreateBody, DTOPipelineExporterQuery, DTOPipelineListQuery, DTOPipelineListResponse, DTOPipelineResponse, DTOPipelineTriggerBody, DTOPipelineUpdateBody, DTOPortalSettings, DTOPortalSettingsGetResponse, DTOPortalSettingsSidebar, DTOPortalSettingsSidebarLink, DTOPortalSettingsSidebarSection, DTOPortalSettingsTheme, DTOPortalSettingsUpdatePayload, DTOProduct, DTOProductCode, DTOProductPrice, DTOProjectContextOverride, DTOProjectContextOverrideInput, DTOProjectContextOverrideResponse, type DTOPropertyDefinitionBase, DTOProvisionFeatureSandboxInput, DTOProvisionFeatureSandboxResponse, DTOPublishDocumentationChanges, DTOPublishDocumentationRequest, DTOPublishDocumentationResponse, DTOPublishedDocAnalyticsComparisonData, DTOPublishedDocPageAnalyticsComparisonData, DTOPublishedDocPageVisitData, DTOPublishedDocVisitData, DTOPublishedDocVisitHeatMapWeek, DTORemoveForgeProjectInvitation, DTORemoveForgeProjectMember, DTORenderedAssetFile, DTORestoreDocumentationGroupInput, DTORestoreDocumentationPageInput, DTOSandboxError, DTOSandboxTemplate, DTOSandboxTemplateBuild, DTOSandboxTemplateBuildCreateInput, DTOSandboxTemplateBuildCreateResponse, DTOSandboxTemplateBuildCreated, DTOSandboxTemplateBuildFinalizeResponse, DTOSandboxTemplateBuildFinished, DTOSandboxTemplateBuildResponse, DTOSandboxTemplateBuildTriggerInput, DTOSandboxTemplateFile, DTOSandboxTemplateListResponse, DTOSandboxTemplatePreset, DTOSandboxTemplateQuery, DTOSandboxTemplateResponse, DTOSandboxTemplateVersion, DTOSandboxTemplateVersionCreated, DTOSandboxTemplateVersionDetail, DTOStorybookEntry, DTOStorybookEntryListResponse, DTOStorybookEntryOrigin, DTOStorybookEntryQuery, DTOStorybookEntryReplaceAction, DTOStorybookEntryResponse, DTOStorybookImportPayload, DTOStorybookSite, DTOStorybookSiteListQuery, DTOStorybookSiteListResponse, DTOStorybookSiteUploadPayload, DTOStorybookSiteUploadResponse, DTOStorybookSiteVersion, DTOStorybookSiteVersionResponse, DTOStorybookSourceUpdatePayload, DTOStorybookUploadStatus, DTOSubscription, DTOSubscriptionResponse, DTOSubscriptionUpcomingChange, DTOSubscriptionUpdateInput, DTOSubscriptionUpdatePreview, DTOSubscriptionUpdatePreviewResponse, DTOTheme, DTOThemeCreatePayload, DTOThemeListResponse, DTOThemeOverride, DTOThemeOverrideCreatePayload, DTOThemeResponse, DTOThemesListQuery, DTOThread, DTOThreadAgentResponseTracker, DTOThreadAgentType, DTOThreadEvent, DTOThreadEventMessagesSent, DTOThreadEventMessagesUpdated, DTOThreadEventReactionsDeleted, DTOThreadEventReactionsSent, DTOThreadMessage, DTOThreadMessageAgentSender, DTOThreadMessageAnnotation, DTOThreadMessageAnnotations, DTOThreadMessageAttachments, DTOThreadMessageAttachmentsCreateInput, DTOThreadMessageCreateInput, DTOThreadMessageFinalizeInput, DTOThreadMessageListResponse, DTOThreadMessageResponse, DTOThreadMessageRetryInput, DTOThreadMessageSender, DTOThreadMessageSystemSender, DTOThreadMessageUpdateInput, DTOThreadMessageUserSender, DTOThreadPromptState, DTOThreadReaction, DTOThreadReactionCreateInput, DTOThreadReactionDeleteInput, DTOThreadReactionResponse, DTOThreadSubjectType, DTOTokenCollection, DTOTokenCollectionsListReponse, DTOTrailEvent, DTOTrailEventClientCreate, DTOTrailEventCreate, DTOTrailEventListInput, DTOTrailEventListResponse, DTOTrailEventType, DTOTrailEventWithDetails, DTOTransferOwnershipPayload, DTOUGetForgeAgentResponse, DTOUpdateDocumentationGroupInput, DTOUpdateDocumentationPageDocumentInputV2, DTOUpdateDocumentationPageInputV2, DTOUpdateFeatureSandbox, DTOUpdateForgeAgent, DTOUpdateForgeAgentResponse, DTOUpdateForgeArtifact, DTOUpdateForgeArtifactResponse, DTOUpdateForgeBuildArtifact, DTOUpdateForgeFigmaArtifact, DTOUpdateForgeFileArtifact, DTOUpdateForgeIterationMessage, DTOUpdateForgeIterationMessageResponse, DTOUpdateForgeParticipant, DTOUpdateForgeParticipantResponse, DTOUpdateForgeProjectContext, DTOUpdateForgeProjectInvitation, DTOUpdateForgeProjectIteration, DTOUpdateForgeProjectIterationResponse, DTOUpdateForgeProjectMember, DTOUpdateForgeSpecArtifact, DTOUpdateRegistryInput, DTOUpdateRegistryOutput, DTOUpdateUserNotificationSettingsPayload, DTOUpdateVersionInput, DTOUploadUrlItem, DTOUser, DTOUserDesignSystemsResponse, DTOUserEmailSettings, DTOUserEmailSettingsUpdatePayload, DTOUserGetResponse, DTOUserNotificationSettings, DTOUserNotificationSettingsResponse, DTOUserOnboarding, DTOUserOnboardingDepartment, DTOUserOnboardingJobLevel, DTOUserPortalTheme, DTOUserProfile, DTOUserProfileUpdatePayload, DTOUserSource, DTOUserTheme, DTOUserUpdatePayload, DTOUserWorkspaceMembership, DTOUserWorkspaceMembershipsResponse, DTOWorkspace, DTOWorkspaceBilledSeatType, DTOWorkspaceCreateInput, DTOWorkspaceDefaultProjectAccessMode, DTOWorkspaceDefaultProjectRole, DTOWorkspaceIntegrationGetGitObjectsInput, DTOWorkspaceIntegrationOauthInput, DTOWorkspaceIntegrationPATInput, DTOWorkspaceInvitation, DTOWorkspaceInvitationInput, DTOWorkspaceInvitationUpdateResponse, DTOWorkspaceInvitationsListInput, DTOWorkspaceInvitationsResponse, DTOWorkspaceInviteUpdate, DTOWorkspaceMember, DTOWorkspaceMembersListResponse, DTOWorkspaceProfile, DTOWorkspaceResponse, DTOWorkspaceRole, DTOWorkspaceRoomEvent, DTOWorkspaceSeatType, DTOWorkspaceStats, DTOWorkspaceUntypedData, DTOWorkspaceUntypedDataCreatePayload, DTOWorkspaceUntypedDataListResponse, DTOWorkspaceUntypedDataResponse, DTOWorkspaceUntypedDataUpdatePayload, type DTPGetForgeAgentResponse, DesignSystemAnalyticsEndpoint, DesignSystemBffEndpoint, DesignSystemCodeSnapshotsEndpoint, DesignSystemComponentEndpoint, DesignSystemContactsEndpoint, DesignSystemFilesEndpoint, DesignSystemMembersEndpoint, DesignSystemPageRedirectsEndpoint, DesignSystemPipelinesEndpoint, 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, ForgeDocumentsEndpoint, ForgeEndpoint, ForgeFeatureArtifactsEndpoint, ForgeFeatureIterationTagsEndpoint, ForgeFeatureIterationsEndpoint, ForgeFeatureMessagesEndpoint, ForgeFigmaNodeLatestVersion, ForgeMemoryEndpoint, ForgeProjectContentRepository, ForgeProjectContextsEndpoint, ForgeProjectFeaturesEndpoint, ForgeProjectFilesEndpoint, ForgeProjectInvitationsEndpoint, ForgeProjectIterationsEndpoint, ForgeProjectMembersEndpoint, ForgeProjectRoomBaseYDoc, type ForgeProjectRoomBaseYDocState, ForgeProjectsEndpoint, FormattedCollections, FrontendFeatureRoomYDoc, FrontendThreadRoomYDoc, FrontendVersionRoomYDoc, GitDestinationOptions, ImportJobsEndpoint, IntegrationOauthCallbackState, IntegrationOauthPlatform, type ListItemNode, type ListNode, ListTreeBuilder, LiveblocksEndpoint, type LocalApproval, LocalDocsElementActionExecutor, type LocalDocsPage, type LocalDocsPageGroup, LocalProjectActionExecutor, MCPStreamsEndpoint, 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, SandboxTemplateBuildsEndpoint, SandboxTemplatesEndpoint, SandboxesEndpoint, StorybookEntriesEndpoint, StorybookSitesEndpoint, StringVariableScopeType, SupernovaApiClient, type SupportedElementActionType, ThemesEndpoint, ThreadRoomBaseYDoc, type ThreadRoomBaseYDocState, type ThreadRoomUpdate, ThreadsEndpoint, TokenCollectionsEndpoint, TokenGroupsEndpoint, TokensEndpoint, UsersEndpoint, Variable, VariableAlias, type VariableCollections, VariableCollectionsSchema, VariableMode, VariableValue, type Variables, VariablesMapping, VariablesSchema, type VersionRoomApproval, VersionRoomBaseYDoc, type VersionRoomBaseYDocState, type VersionRoomDocsPage, type VersionRoomDocsPageGroup, VersionSQSPayload, VersionStatsEndpoint, WorkspaceBillingEndpoint, WorkspaceChatThreadsEndpoint, WorkspaceConfigurationPayload, WorkspaceIntegrationsEndpoint, WorkspaceInvitationsEndpoint, WorkspaceMembersEndpoint, WorkspaceNpmRegistryEndpoint, WorkspaceSubscriptionEndpoint, WorkspacesEndpoint, type YJSKeyValueStorage, YJSKeyValueStorageV1, YJSKeyValueStorageV2, applyActionsLocally, applyPrivacyConfigurationToNestedItems, applyProjectActionsLocally, blockToProsemirrorNode, buildDocPagePublishPaths, calculateElementParentChain, computeDocsHierarchy, documentationAnalyticsToComparisonDto, documentationAnalyticsToGlobalDto, documentationAnalyticsToHeatMapDto, documentationAnalyticsToPageComparisonDto, documentationAnalyticsToPageDto, documentationConfigurationToDto, documentationItemConfigurationToDTOV1, documentationItemConfigurationToDTOV2, documentationPageToDTOV2, documentationPagesFixedConfigurationToDTOV1, documentationPagesFixedConfigurationToDTOV2, documentationPagesToDTOV1, documentationPagesToDTOV2, elementGroupsToDocumentationGroupDTOV1, elementGroupsToDocumentationGroupDTOV2, elementGroupsToDocumentationGroupFixedConfigurationDTOV1, elementGroupsToDocumentationGroupFixedConfigurationDTOV2, elementGroupsToDocumentationGroupStructureDTOV1, exhaustiveInvalidUriPaths, generateHash, generatePageContentHash, getDtoDefaultItemConfigurationV1, getDtoDefaultItemConfigurationV2, getMockPageBlockDefinitions, gitBranchToDto, gitOrganizationToDto, gitProjectToDto, gitRepositoryToDto, innerEditorProsemirrorSchema, integrationCredentialToDto, integrationToDto, isValidRedirectPath, itemConfigurationToYjs, mainEditorProsemirrorSchema, pageToProsemirrorDoc, pageToYDoc, pageToYXmlFragment, pipelineToDto, prosemirrorDocToPage, prosemirrorDocToRichTextPropertyValue, prosemirrorNodeToSection, prosemirrorNodesToBlocks, richTextPropertyValueToProsemirror, serializeAsCustomBlock, serializeQuery, shallowProsemirrorNodeToBlock, validateDesignSystemVersion, validateSsoPayload, yDocToPage, yXmlFragmentToPage, yjsToDocumentationHierarchy, zodQueryBoolean };