@supernova-studio/client 1.94.0 → 1.95.0

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";
@@ -222071,17 +221470,15 @@ declare const DTOForgeProjectContextV2: z.ZodObject<{
222071
221470
  type DTOForgeProjectContextV2 = z.infer<typeof DTOForgeProjectContextV2>;
222072
221471
  declare const DTOForgeThemeKnownPreset: z.ZodEnum<["Default", "Airbnb", "Spotify", "Windows98"]>;
222073
221472
  type DTOForgeThemeKnownPreset = z.infer<typeof DTOForgeThemeKnownPreset>;
222074
- declare const DTOForgeProjectContextCreateV2: z.ZodObject<Omit<{
222075
- id: z.ZodString;
221473
+ declare const DTOForgeProjectContextCreateV2: z.ZodEffects<z.ZodObject<{
222076
221474
  name: z.ZodString;
221475
+ description: z.ZodOptional<z.ZodString>;
222077
221476
  workspaceId: z.ZodString;
222078
221477
  designSystemId: z.ZodOptional<z.ZodString>;
222079
221478
  brandId: z.ZodOptional<z.ZodString>;
222080
221479
  defaultTokenThemeSetId: z.ZodOptional<z.ZodString>;
222081
- description: z.ZodOptional<z.ZodString>;
222082
221480
  productContext: z.ZodOptional<z.ZodString>;
222083
221481
  additionalContext: z.ZodOptional<z.ZodString>;
222084
- isArchived: z.ZodBoolean;
222085
221482
  themePreset: z.ZodOptional<z.ZodString>;
222086
221483
  tokenThemeSets: z.ZodOptional<z.ZodArray<z.ZodObject<{
222087
221484
  id: z.ZodString;
@@ -222096,24 +221493,19 @@ declare const DTOForgeProjectContextCreateV2: z.ZodObject<Omit<{
222096
221493
  name: string;
222097
221494
  tokenThemeIds: string[];
222098
221495
  }>, "many">>;
222099
- componentSet: z.ZodObject<{
222100
- type: z.ZodEnum<["Shadcn"]>;
222101
- }, "strip", z.ZodTypeAny, {
222102
- type: "Shadcn";
222103
- }, {
222104
- type: "Shadcn";
222105
- }>;
222106
- iconSet: z.ZodObject<{
222107
- type: z.ZodEnum<["Phosphor", "Lucide", "Tabler"]>;
222108
- variant: z.ZodOptional<z.ZodString>;
221496
+ sandboxTemplate: z.ZodOptional<z.ZodObject<{
221497
+ id: z.ZodString;
221498
+ version: z.ZodString;
222109
221499
  }, "strip", z.ZodTypeAny, {
222110
- type: "Phosphor" | "Lucide" | "Tabler";
222111
- variant?: string | undefined;
221500
+ id: string;
221501
+ version: string;
222112
221502
  }, {
222113
- type: "Phosphor" | "Lucide" | "Tabler";
222114
- variant?: string | undefined;
222115
- }>;
222116
- theme: z.ZodObject<{
221503
+ id: string;
221504
+ version: string;
221505
+ }>>;
221506
+ } & {
221507
+ thumbnailFileId: z.ZodOptional<z.ZodString>;
221508
+ theme: z.ZodOptional<z.ZodObject<{
222117
221509
  background: z.ZodObject<{
222118
221510
  aliasTo: z.ZodEffects<z.ZodNullable<z.ZodOptional<z.ZodString>>, string | undefined, string | null | undefined>;
222119
221511
  } & {
@@ -226604,27 +225996,1906 @@ declare const DTOForgeProjectContextCreateV2: z.ZodObject<Omit<{
226604
225996
  aliasTo?: string | null | undefined;
226605
225997
  }[] | null | undefined;
226606
225998
  aliasTo?: string | null | undefined;
226607
- }>;
226608
- shadow2xl: z.ZodObject<{
226609
- aliasTo: z.ZodEffects<z.ZodNullable<z.ZodOptional<z.ZodString>>, string | undefined, string | null | undefined>;
226610
- } & {
226611
- value: z.ZodEffects<z.ZodNullable<z.ZodOptional<z.ZodType<{
225999
+ }>;
226000
+ shadow2xl: z.ZodObject<{
226001
+ aliasTo: z.ZodEffects<z.ZodNullable<z.ZodOptional<z.ZodString>>, string | undefined, string | null | undefined>;
226002
+ } & {
226003
+ value: z.ZodEffects<z.ZodNullable<z.ZodOptional<z.ZodType<{
226004
+ value?: {
226005
+ type: "Drop" | "Inner";
226006
+ color: {
226007
+ value?: {
226008
+ color: string | {
226009
+ aliasTo?: string | undefined;
226010
+ };
226011
+ opacity: {
226012
+ value?: {
226013
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
226014
+ measure: number;
226015
+ } | undefined;
226016
+ aliasTo?: string | undefined;
226017
+ };
226018
+ } | undefined;
226019
+ aliasTo?: string | undefined;
226020
+ };
226021
+ radius: number;
226022
+ x: number;
226023
+ y: number;
226024
+ spread: number;
226025
+ opacity?: {
226026
+ value?: {
226027
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
226028
+ measure: number;
226029
+ } | undefined;
226030
+ aliasTo?: string | undefined;
226031
+ } | undefined;
226032
+ } | undefined;
226033
+ aliasTo?: string | undefined;
226034
+ }[], z.ZodTypeDef, {
226035
+ value?: {
226036
+ type: "Drop" | "Inner";
226037
+ color: {
226038
+ value?: {
226039
+ color: string | {
226040
+ aliasTo?: string | null | undefined;
226041
+ };
226042
+ opacity: {
226043
+ value?: {
226044
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
226045
+ measure: number;
226046
+ } | null | undefined;
226047
+ aliasTo?: string | null | undefined;
226048
+ };
226049
+ } | null | undefined;
226050
+ aliasTo?: string | null | undefined;
226051
+ };
226052
+ radius: number;
226053
+ x: number;
226054
+ y: number;
226055
+ spread: number;
226056
+ opacity?: {
226057
+ value?: {
226058
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
226059
+ measure: number;
226060
+ } | null | undefined;
226061
+ aliasTo?: string | null | undefined;
226062
+ } | undefined;
226063
+ } | null | undefined;
226064
+ aliasTo?: string | null | undefined;
226065
+ }[]>>>, {
226066
+ value?: {
226067
+ type: "Drop" | "Inner";
226068
+ color: {
226069
+ value?: {
226070
+ color: string | {
226071
+ aliasTo?: string | undefined;
226072
+ };
226073
+ opacity: {
226074
+ value?: {
226075
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
226076
+ measure: number;
226077
+ } | undefined;
226078
+ aliasTo?: string | undefined;
226079
+ };
226080
+ } | undefined;
226081
+ aliasTo?: string | undefined;
226082
+ };
226083
+ radius: number;
226084
+ x: number;
226085
+ y: number;
226086
+ spread: number;
226087
+ opacity?: {
226088
+ value?: {
226089
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
226090
+ measure: number;
226091
+ } | undefined;
226092
+ aliasTo?: string | undefined;
226093
+ } | undefined;
226094
+ } | undefined;
226095
+ aliasTo?: string | undefined;
226096
+ }[] | undefined, {
226097
+ value?: {
226098
+ type: "Drop" | "Inner";
226099
+ color: {
226100
+ value?: {
226101
+ color: string | {
226102
+ aliasTo?: string | null | undefined;
226103
+ };
226104
+ opacity: {
226105
+ value?: {
226106
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
226107
+ measure: number;
226108
+ } | null | undefined;
226109
+ aliasTo?: string | null | undefined;
226110
+ };
226111
+ } | null | undefined;
226112
+ aliasTo?: string | null | undefined;
226113
+ };
226114
+ radius: number;
226115
+ x: number;
226116
+ y: number;
226117
+ spread: number;
226118
+ opacity?: {
226119
+ value?: {
226120
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
226121
+ measure: number;
226122
+ } | null | undefined;
226123
+ aliasTo?: string | null | undefined;
226124
+ } | undefined;
226125
+ } | null | undefined;
226126
+ aliasTo?: string | null | undefined;
226127
+ }[] | null | undefined>;
226128
+ }, "strip", z.ZodTypeAny, {
226129
+ value?: {
226130
+ value?: {
226131
+ type: "Drop" | "Inner";
226132
+ color: {
226133
+ value?: {
226134
+ color: string | {
226135
+ aliasTo?: string | undefined;
226136
+ };
226137
+ opacity: {
226138
+ value?: {
226139
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
226140
+ measure: number;
226141
+ } | undefined;
226142
+ aliasTo?: string | undefined;
226143
+ };
226144
+ } | undefined;
226145
+ aliasTo?: string | undefined;
226146
+ };
226147
+ radius: number;
226148
+ x: number;
226149
+ y: number;
226150
+ spread: number;
226151
+ opacity?: {
226152
+ value?: {
226153
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
226154
+ measure: number;
226155
+ } | undefined;
226156
+ aliasTo?: string | undefined;
226157
+ } | undefined;
226158
+ } | undefined;
226159
+ aliasTo?: string | undefined;
226160
+ }[] | undefined;
226161
+ aliasTo?: string | undefined;
226162
+ }, {
226163
+ value?: {
226164
+ value?: {
226165
+ type: "Drop" | "Inner";
226166
+ color: {
226167
+ value?: {
226168
+ color: string | {
226169
+ aliasTo?: string | null | undefined;
226170
+ };
226171
+ opacity: {
226172
+ value?: {
226173
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
226174
+ measure: number;
226175
+ } | null | undefined;
226176
+ aliasTo?: string | null | undefined;
226177
+ };
226178
+ } | null | undefined;
226179
+ aliasTo?: string | null | undefined;
226180
+ };
226181
+ radius: number;
226182
+ x: number;
226183
+ y: number;
226184
+ spread: number;
226185
+ opacity?: {
226186
+ value?: {
226187
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
226188
+ measure: number;
226189
+ } | null | undefined;
226190
+ aliasTo?: string | null | undefined;
226191
+ } | undefined;
226192
+ } | null | undefined;
226193
+ aliasTo?: string | null | undefined;
226194
+ }[] | null | undefined;
226195
+ aliasTo?: string | null | undefined;
226196
+ }>;
226197
+ }, "strip", z.ZodTypeAny, {
226198
+ card: {
226199
+ value?: {
226200
+ color: string | {
226201
+ aliasTo?: string | undefined;
226202
+ };
226203
+ opacity: {
226204
+ value?: {
226205
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
226206
+ measure: number;
226207
+ } | undefined;
226208
+ aliasTo?: string | undefined;
226209
+ };
226210
+ } | undefined;
226211
+ aliasTo?: string | undefined;
226212
+ };
226213
+ radius: {
226214
+ value?: {
226215
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
226216
+ measure: number;
226217
+ } | undefined;
226218
+ aliasTo?: string | undefined;
226219
+ };
226220
+ fontFamily: {
226221
+ value?: string | undefined;
226222
+ aliasTo?: string | undefined;
226223
+ };
226224
+ border: {
226225
+ value?: {
226226
+ color: string | {
226227
+ aliasTo?: string | undefined;
226228
+ };
226229
+ opacity: {
226230
+ value?: {
226231
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
226232
+ measure: number;
226233
+ } | undefined;
226234
+ aliasTo?: string | undefined;
226235
+ };
226236
+ } | undefined;
226237
+ aliasTo?: string | undefined;
226238
+ };
226239
+ sidebar: {
226240
+ value?: {
226241
+ color: string | {
226242
+ aliasTo?: string | undefined;
226243
+ };
226244
+ opacity: {
226245
+ value?: {
226246
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
226247
+ measure: number;
226248
+ } | undefined;
226249
+ aliasTo?: string | undefined;
226250
+ };
226251
+ } | undefined;
226252
+ aliasTo?: string | undefined;
226253
+ };
226254
+ input: {
226255
+ value?: {
226256
+ color: string | {
226257
+ aliasTo?: string | undefined;
226258
+ };
226259
+ opacity: {
226260
+ value?: {
226261
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
226262
+ measure: number;
226263
+ } | undefined;
226264
+ aliasTo?: string | undefined;
226265
+ };
226266
+ } | undefined;
226267
+ aliasTo?: string | undefined;
226268
+ };
226269
+ background: {
226270
+ value?: {
226271
+ color: string | {
226272
+ aliasTo?: string | undefined;
226273
+ };
226274
+ opacity: {
226275
+ value?: {
226276
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
226277
+ measure: number;
226278
+ } | undefined;
226279
+ aliasTo?: string | undefined;
226280
+ };
226281
+ } | undefined;
226282
+ aliasTo?: string | undefined;
226283
+ };
226284
+ foreground: {
226285
+ value?: {
226286
+ color: string | {
226287
+ aliasTo?: string | undefined;
226288
+ };
226289
+ opacity: {
226290
+ value?: {
226291
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
226292
+ measure: number;
226293
+ } | undefined;
226294
+ aliasTo?: string | undefined;
226295
+ };
226296
+ } | undefined;
226297
+ aliasTo?: string | undefined;
226298
+ };
226299
+ cardForeground: {
226300
+ value?: {
226301
+ color: string | {
226302
+ aliasTo?: string | undefined;
226303
+ };
226304
+ opacity: {
226305
+ value?: {
226306
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
226307
+ measure: number;
226308
+ } | undefined;
226309
+ aliasTo?: string | undefined;
226310
+ };
226311
+ } | undefined;
226312
+ aliasTo?: string | undefined;
226313
+ };
226314
+ popover: {
226315
+ value?: {
226316
+ color: string | {
226317
+ aliasTo?: string | undefined;
226318
+ };
226319
+ opacity: {
226320
+ value?: {
226321
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
226322
+ measure: number;
226323
+ } | undefined;
226324
+ aliasTo?: string | undefined;
226325
+ };
226326
+ } | undefined;
226327
+ aliasTo?: string | undefined;
226328
+ };
226329
+ popoverForeground: {
226330
+ value?: {
226331
+ color: string | {
226332
+ aliasTo?: string | undefined;
226333
+ };
226334
+ opacity: {
226335
+ value?: {
226336
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
226337
+ measure: number;
226338
+ } | undefined;
226339
+ aliasTo?: string | undefined;
226340
+ };
226341
+ } | undefined;
226342
+ aliasTo?: string | undefined;
226343
+ };
226344
+ primary: {
226345
+ value?: {
226346
+ color: string | {
226347
+ aliasTo?: string | undefined;
226348
+ };
226349
+ opacity: {
226350
+ value?: {
226351
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
226352
+ measure: number;
226353
+ } | undefined;
226354
+ aliasTo?: string | undefined;
226355
+ };
226356
+ } | undefined;
226357
+ aliasTo?: string | undefined;
226358
+ };
226359
+ primaryForeground: {
226360
+ value?: {
226361
+ color: string | {
226362
+ aliasTo?: string | undefined;
226363
+ };
226364
+ opacity: {
226365
+ value?: {
226366
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
226367
+ measure: number;
226368
+ } | undefined;
226369
+ aliasTo?: string | undefined;
226370
+ };
226371
+ } | undefined;
226372
+ aliasTo?: string | undefined;
226373
+ };
226374
+ secondary: {
226375
+ value?: {
226376
+ color: string | {
226377
+ aliasTo?: string | undefined;
226378
+ };
226379
+ opacity: {
226380
+ value?: {
226381
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
226382
+ measure: number;
226383
+ } | undefined;
226384
+ aliasTo?: string | undefined;
226385
+ };
226386
+ } | undefined;
226387
+ aliasTo?: string | undefined;
226388
+ };
226389
+ secondaryForeground: {
226390
+ value?: {
226391
+ color: string | {
226392
+ aliasTo?: string | undefined;
226393
+ };
226394
+ opacity: {
226395
+ value?: {
226396
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
226397
+ measure: number;
226398
+ } | undefined;
226399
+ aliasTo?: string | undefined;
226400
+ };
226401
+ } | undefined;
226402
+ aliasTo?: string | undefined;
226403
+ };
226404
+ muted: {
226405
+ value?: {
226406
+ color: string | {
226407
+ aliasTo?: string | undefined;
226408
+ };
226409
+ opacity: {
226410
+ value?: {
226411
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
226412
+ measure: number;
226413
+ } | undefined;
226414
+ aliasTo?: string | undefined;
226415
+ };
226416
+ } | undefined;
226417
+ aliasTo?: string | undefined;
226418
+ };
226419
+ mutedForeground: {
226420
+ value?: {
226421
+ color: string | {
226422
+ aliasTo?: string | undefined;
226423
+ };
226424
+ opacity: {
226425
+ value?: {
226426
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
226427
+ measure: number;
226428
+ } | undefined;
226429
+ aliasTo?: string | undefined;
226430
+ };
226431
+ } | undefined;
226432
+ aliasTo?: string | undefined;
226433
+ };
226434
+ accent: {
226435
+ value?: {
226436
+ color: string | {
226437
+ aliasTo?: string | undefined;
226438
+ };
226439
+ opacity: {
226440
+ value?: {
226441
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
226442
+ measure: number;
226443
+ } | undefined;
226444
+ aliasTo?: string | undefined;
226445
+ };
226446
+ } | undefined;
226447
+ aliasTo?: string | undefined;
226448
+ };
226449
+ accentForeground: {
226450
+ value?: {
226451
+ color: string | {
226452
+ aliasTo?: string | undefined;
226453
+ };
226454
+ opacity: {
226455
+ value?: {
226456
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
226457
+ measure: number;
226458
+ } | undefined;
226459
+ aliasTo?: string | undefined;
226460
+ };
226461
+ } | undefined;
226462
+ aliasTo?: string | undefined;
226463
+ };
226464
+ destructive: {
226465
+ value?: {
226466
+ color: string | {
226467
+ aliasTo?: string | undefined;
226468
+ };
226469
+ opacity: {
226470
+ value?: {
226471
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
226472
+ measure: number;
226473
+ } | undefined;
226474
+ aliasTo?: string | undefined;
226475
+ };
226476
+ } | undefined;
226477
+ aliasTo?: string | undefined;
226478
+ };
226479
+ ring: {
226480
+ value?: {
226481
+ color: string | {
226482
+ aliasTo?: string | undefined;
226483
+ };
226484
+ opacity: {
226485
+ value?: {
226486
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
226487
+ measure: number;
226488
+ } | undefined;
226489
+ aliasTo?: string | undefined;
226490
+ };
226491
+ } | undefined;
226492
+ aliasTo?: string | undefined;
226493
+ };
226494
+ chart1: {
226495
+ value?: {
226496
+ color: string | {
226497
+ aliasTo?: string | undefined;
226498
+ };
226499
+ opacity: {
226500
+ value?: {
226501
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
226502
+ measure: number;
226503
+ } | undefined;
226504
+ aliasTo?: string | undefined;
226505
+ };
226506
+ } | undefined;
226507
+ aliasTo?: string | undefined;
226508
+ };
226509
+ chart2: {
226510
+ value?: {
226511
+ color: string | {
226512
+ aliasTo?: string | undefined;
226513
+ };
226514
+ opacity: {
226515
+ value?: {
226516
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
226517
+ measure: number;
226518
+ } | undefined;
226519
+ aliasTo?: string | undefined;
226520
+ };
226521
+ } | undefined;
226522
+ aliasTo?: string | undefined;
226523
+ };
226524
+ chart3: {
226525
+ value?: {
226526
+ color: string | {
226527
+ aliasTo?: string | undefined;
226528
+ };
226529
+ opacity: {
226530
+ value?: {
226531
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
226532
+ measure: number;
226533
+ } | undefined;
226534
+ aliasTo?: string | undefined;
226535
+ };
226536
+ } | undefined;
226537
+ aliasTo?: string | undefined;
226538
+ };
226539
+ chart4: {
226540
+ value?: {
226541
+ color: string | {
226542
+ aliasTo?: string | undefined;
226543
+ };
226544
+ opacity: {
226545
+ value?: {
226546
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
226547
+ measure: number;
226548
+ } | undefined;
226549
+ aliasTo?: string | undefined;
226550
+ };
226551
+ } | undefined;
226552
+ aliasTo?: string | undefined;
226553
+ };
226554
+ chart5: {
226555
+ value?: {
226556
+ color: string | {
226557
+ aliasTo?: string | undefined;
226558
+ };
226559
+ opacity: {
226560
+ value?: {
226561
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
226562
+ measure: number;
226563
+ } | undefined;
226564
+ aliasTo?: string | undefined;
226565
+ };
226566
+ } | undefined;
226567
+ aliasTo?: string | undefined;
226568
+ };
226569
+ sidebarForeground: {
226570
+ value?: {
226571
+ color: string | {
226572
+ aliasTo?: string | undefined;
226573
+ };
226574
+ opacity: {
226575
+ value?: {
226576
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
226577
+ measure: number;
226578
+ } | undefined;
226579
+ aliasTo?: string | undefined;
226580
+ };
226581
+ } | undefined;
226582
+ aliasTo?: string | undefined;
226583
+ };
226584
+ sidebarPrimary: {
226585
+ value?: {
226586
+ color: string | {
226587
+ aliasTo?: string | undefined;
226588
+ };
226589
+ opacity: {
226590
+ value?: {
226591
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
226592
+ measure: number;
226593
+ } | undefined;
226594
+ aliasTo?: string | undefined;
226595
+ };
226596
+ } | undefined;
226597
+ aliasTo?: string | undefined;
226598
+ };
226599
+ sidebarPrimaryForeground: {
226600
+ value?: {
226601
+ color: string | {
226602
+ aliasTo?: string | undefined;
226603
+ };
226604
+ opacity: {
226605
+ value?: {
226606
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
226607
+ measure: number;
226608
+ } | undefined;
226609
+ aliasTo?: string | undefined;
226610
+ };
226611
+ } | undefined;
226612
+ aliasTo?: string | undefined;
226613
+ };
226614
+ sidebarAccent: {
226615
+ value?: {
226616
+ color: string | {
226617
+ aliasTo?: string | undefined;
226618
+ };
226619
+ opacity: {
226620
+ value?: {
226621
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
226622
+ measure: number;
226623
+ } | undefined;
226624
+ aliasTo?: string | undefined;
226625
+ };
226626
+ } | undefined;
226627
+ aliasTo?: string | undefined;
226628
+ };
226629
+ sidebarAccentForeground: {
226630
+ value?: {
226631
+ color: string | {
226632
+ aliasTo?: string | undefined;
226633
+ };
226634
+ opacity: {
226635
+ value?: {
226636
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
226637
+ measure: number;
226638
+ } | undefined;
226639
+ aliasTo?: string | undefined;
226640
+ };
226641
+ } | undefined;
226642
+ aliasTo?: string | undefined;
226643
+ };
226644
+ sidebarBorder: {
226645
+ value?: {
226646
+ color: string | {
226647
+ aliasTo?: string | undefined;
226648
+ };
226649
+ opacity: {
226650
+ value?: {
226651
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
226652
+ measure: number;
226653
+ } | undefined;
226654
+ aliasTo?: string | undefined;
226655
+ };
226656
+ } | undefined;
226657
+ aliasTo?: string | undefined;
226658
+ };
226659
+ sidebarRing: {
226660
+ value?: {
226661
+ color: string | {
226662
+ aliasTo?: string | undefined;
226663
+ };
226664
+ opacity: {
226665
+ value?: {
226666
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
226667
+ measure: number;
226668
+ } | undefined;
226669
+ aliasTo?: string | undefined;
226670
+ };
226671
+ } | undefined;
226672
+ aliasTo?: string | undefined;
226673
+ };
226674
+ textXs: {
226675
+ value?: {
226676
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
226677
+ measure: number;
226678
+ } | undefined;
226679
+ aliasTo?: string | undefined;
226680
+ };
226681
+ textSm: {
226682
+ value?: {
226683
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
226684
+ measure: number;
226685
+ } | undefined;
226686
+ aliasTo?: string | undefined;
226687
+ };
226688
+ textBase: {
226689
+ value?: {
226690
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
226691
+ measure: number;
226692
+ } | undefined;
226693
+ aliasTo?: string | undefined;
226694
+ };
226695
+ textLg: {
226696
+ value?: {
226697
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
226698
+ measure: number;
226699
+ } | undefined;
226700
+ aliasTo?: string | undefined;
226701
+ };
226702
+ textXl: {
226703
+ value?: {
226704
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
226705
+ measure: number;
226706
+ } | undefined;
226707
+ aliasTo?: string | undefined;
226708
+ };
226709
+ text2xl: {
226710
+ value?: {
226711
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
226712
+ measure: number;
226713
+ } | undefined;
226714
+ aliasTo?: string | undefined;
226715
+ };
226716
+ text3xl: {
226717
+ value?: {
226718
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
226719
+ measure: number;
226720
+ } | undefined;
226721
+ aliasTo?: string | undefined;
226722
+ };
226723
+ text4xl: {
226724
+ value?: {
226725
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
226726
+ measure: number;
226727
+ } | undefined;
226728
+ aliasTo?: string | undefined;
226729
+ };
226730
+ text5xl: {
226731
+ value?: {
226732
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
226733
+ measure: number;
226734
+ } | undefined;
226735
+ aliasTo?: string | undefined;
226736
+ };
226737
+ text6xl: {
226738
+ value?: {
226739
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
226740
+ measure: number;
226741
+ } | undefined;
226742
+ aliasTo?: string | undefined;
226743
+ };
226744
+ text7xl: {
226745
+ value?: {
226746
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
226747
+ measure: number;
226748
+ } | undefined;
226749
+ aliasTo?: string | undefined;
226750
+ };
226751
+ text8xl: {
226752
+ value?: {
226753
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
226754
+ measure: number;
226755
+ } | undefined;
226756
+ aliasTo?: string | undefined;
226757
+ };
226758
+ text9xl: {
226759
+ value?: {
226760
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
226761
+ measure: number;
226762
+ } | undefined;
226763
+ aliasTo?: string | undefined;
226764
+ };
226765
+ textXsLineHeight: {
226766
+ value?: {
226767
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
226768
+ measure: number;
226769
+ } | undefined;
226770
+ aliasTo?: string | undefined;
226771
+ };
226772
+ textSmLineHeight: {
226773
+ value?: {
226774
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
226775
+ measure: number;
226776
+ } | undefined;
226777
+ aliasTo?: string | undefined;
226778
+ };
226779
+ textBaseLineHeight: {
226780
+ value?: {
226781
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
226782
+ measure: number;
226783
+ } | undefined;
226784
+ aliasTo?: string | undefined;
226785
+ };
226786
+ textLgLineHeight: {
226787
+ value?: {
226788
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
226789
+ measure: number;
226790
+ } | undefined;
226791
+ aliasTo?: string | undefined;
226792
+ };
226793
+ textXlLineHeight: {
226794
+ value?: {
226795
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
226796
+ measure: number;
226797
+ } | undefined;
226798
+ aliasTo?: string | undefined;
226799
+ };
226800
+ text2xlLineHeight: {
226801
+ value?: {
226802
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
226803
+ measure: number;
226804
+ } | undefined;
226805
+ aliasTo?: string | undefined;
226806
+ };
226807
+ text3xlLineHeight: {
226808
+ value?: {
226809
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
226810
+ measure: number;
226811
+ } | undefined;
226812
+ aliasTo?: string | undefined;
226813
+ };
226814
+ text4xlLineHeight: {
226815
+ value?: {
226816
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
226817
+ measure: number;
226818
+ } | undefined;
226819
+ aliasTo?: string | undefined;
226820
+ };
226821
+ text5xlLineHeight: {
226822
+ value?: {
226823
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
226824
+ measure: number;
226825
+ } | undefined;
226826
+ aliasTo?: string | undefined;
226827
+ };
226828
+ text6xlLineHeight: {
226829
+ value?: {
226830
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
226831
+ measure: number;
226832
+ } | undefined;
226833
+ aliasTo?: string | undefined;
226834
+ };
226835
+ text7xlLineHeight: {
226836
+ value?: {
226837
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
226838
+ measure: number;
226839
+ } | undefined;
226840
+ aliasTo?: string | undefined;
226841
+ };
226842
+ text8xlLineHeight: {
226843
+ value?: {
226844
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
226845
+ measure: number;
226846
+ } | undefined;
226847
+ aliasTo?: string | undefined;
226848
+ };
226849
+ text9xlLineHeight: {
226850
+ value?: {
226851
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
226852
+ measure: number;
226853
+ } | undefined;
226854
+ aliasTo?: string | undefined;
226855
+ };
226856
+ fontWeightThin: {
226857
+ value?: string | undefined;
226858
+ aliasTo?: string | undefined;
226859
+ };
226860
+ fontWeightExtralight: {
226861
+ value?: string | undefined;
226862
+ aliasTo?: string | undefined;
226863
+ };
226864
+ fontWeightLight: {
226865
+ value?: string | undefined;
226866
+ aliasTo?: string | undefined;
226867
+ };
226868
+ fontWeightNormal: {
226869
+ value?: string | undefined;
226870
+ aliasTo?: string | undefined;
226871
+ };
226872
+ fontWeightMedium: {
226873
+ value?: string | undefined;
226874
+ aliasTo?: string | undefined;
226875
+ };
226876
+ fontWeightSemibold: {
226877
+ value?: string | undefined;
226878
+ aliasTo?: string | undefined;
226879
+ };
226880
+ fontWeightBold: {
226881
+ value?: string | undefined;
226882
+ aliasTo?: string | undefined;
226883
+ };
226884
+ fontWeightExtrabold: {
226885
+ value?: string | undefined;
226886
+ aliasTo?: string | undefined;
226887
+ };
226888
+ fontWeightBlack: {
226889
+ value?: string | undefined;
226890
+ aliasTo?: string | undefined;
226891
+ };
226892
+ spacing: {
226893
+ value?: {
226894
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
226895
+ measure: number;
226896
+ } | undefined;
226897
+ aliasTo?: string | undefined;
226898
+ };
226899
+ shadow2xs: {
226900
+ value?: {
226901
+ value?: {
226902
+ type: "Drop" | "Inner";
226903
+ color: {
226904
+ value?: {
226905
+ color: string | {
226906
+ aliasTo?: string | undefined;
226907
+ };
226908
+ opacity: {
226909
+ value?: {
226910
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
226911
+ measure: number;
226912
+ } | undefined;
226913
+ aliasTo?: string | undefined;
226914
+ };
226915
+ } | undefined;
226916
+ aliasTo?: string | undefined;
226917
+ };
226918
+ radius: number;
226919
+ x: number;
226920
+ y: number;
226921
+ spread: number;
226922
+ opacity?: {
226923
+ value?: {
226924
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
226925
+ measure: number;
226926
+ } | undefined;
226927
+ aliasTo?: string | undefined;
226928
+ } | undefined;
226929
+ } | undefined;
226930
+ aliasTo?: string | undefined;
226931
+ }[] | undefined;
226932
+ aliasTo?: string | undefined;
226933
+ };
226934
+ shadowXs: {
226935
+ value?: {
226936
+ value?: {
226937
+ type: "Drop" | "Inner";
226938
+ color: {
226939
+ value?: {
226940
+ color: string | {
226941
+ aliasTo?: string | undefined;
226942
+ };
226943
+ opacity: {
226944
+ value?: {
226945
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
226946
+ measure: number;
226947
+ } | undefined;
226948
+ aliasTo?: string | undefined;
226949
+ };
226950
+ } | undefined;
226951
+ aliasTo?: string | undefined;
226952
+ };
226953
+ radius: number;
226954
+ x: number;
226955
+ y: number;
226956
+ spread: number;
226957
+ opacity?: {
226958
+ value?: {
226959
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
226960
+ measure: number;
226961
+ } | undefined;
226962
+ aliasTo?: string | undefined;
226963
+ } | undefined;
226964
+ } | undefined;
226965
+ aliasTo?: string | undefined;
226966
+ }[] | undefined;
226967
+ aliasTo?: string | undefined;
226968
+ };
226969
+ shadowSm: {
226970
+ value?: {
226971
+ value?: {
226972
+ type: "Drop" | "Inner";
226973
+ color: {
226974
+ value?: {
226975
+ color: string | {
226976
+ aliasTo?: string | undefined;
226977
+ };
226978
+ opacity: {
226979
+ value?: {
226980
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
226981
+ measure: number;
226982
+ } | undefined;
226983
+ aliasTo?: string | undefined;
226984
+ };
226985
+ } | undefined;
226986
+ aliasTo?: string | undefined;
226987
+ };
226988
+ radius: number;
226989
+ x: number;
226990
+ y: number;
226991
+ spread: number;
226992
+ opacity?: {
226993
+ value?: {
226994
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
226995
+ measure: number;
226996
+ } | undefined;
226997
+ aliasTo?: string | undefined;
226998
+ } | undefined;
226999
+ } | undefined;
227000
+ aliasTo?: string | undefined;
227001
+ }[] | undefined;
227002
+ aliasTo?: string | undefined;
227003
+ };
227004
+ shadowMd: {
227005
+ value?: {
227006
+ value?: {
227007
+ type: "Drop" | "Inner";
227008
+ color: {
227009
+ value?: {
227010
+ color: string | {
227011
+ aliasTo?: string | undefined;
227012
+ };
227013
+ opacity: {
227014
+ value?: {
227015
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
227016
+ measure: number;
227017
+ } | undefined;
227018
+ aliasTo?: string | undefined;
227019
+ };
227020
+ } | undefined;
227021
+ aliasTo?: string | undefined;
227022
+ };
227023
+ radius: number;
227024
+ x: number;
227025
+ y: number;
227026
+ spread: number;
227027
+ opacity?: {
227028
+ value?: {
227029
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
227030
+ measure: number;
227031
+ } | undefined;
227032
+ aliasTo?: string | undefined;
227033
+ } | undefined;
227034
+ } | undefined;
227035
+ aliasTo?: string | undefined;
227036
+ }[] | undefined;
227037
+ aliasTo?: string | undefined;
227038
+ };
227039
+ shadowLg: {
227040
+ value?: {
227041
+ value?: {
227042
+ type: "Drop" | "Inner";
227043
+ color: {
227044
+ value?: {
227045
+ color: string | {
227046
+ aliasTo?: string | undefined;
227047
+ };
227048
+ opacity: {
227049
+ value?: {
227050
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
227051
+ measure: number;
227052
+ } | undefined;
227053
+ aliasTo?: string | undefined;
227054
+ };
227055
+ } | undefined;
227056
+ aliasTo?: string | undefined;
227057
+ };
227058
+ radius: number;
227059
+ x: number;
227060
+ y: number;
227061
+ spread: number;
227062
+ opacity?: {
227063
+ value?: {
227064
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
227065
+ measure: number;
227066
+ } | undefined;
227067
+ aliasTo?: string | undefined;
227068
+ } | undefined;
227069
+ } | undefined;
227070
+ aliasTo?: string | undefined;
227071
+ }[] | undefined;
227072
+ aliasTo?: string | undefined;
227073
+ };
227074
+ shadowXl: {
227075
+ value?: {
227076
+ value?: {
227077
+ type: "Drop" | "Inner";
227078
+ color: {
227079
+ value?: {
227080
+ color: string | {
227081
+ aliasTo?: string | undefined;
227082
+ };
227083
+ opacity: {
227084
+ value?: {
227085
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
227086
+ measure: number;
227087
+ } | undefined;
227088
+ aliasTo?: string | undefined;
227089
+ };
227090
+ } | undefined;
227091
+ aliasTo?: string | undefined;
227092
+ };
227093
+ radius: number;
227094
+ x: number;
227095
+ y: number;
227096
+ spread: number;
227097
+ opacity?: {
227098
+ value?: {
227099
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
227100
+ measure: number;
227101
+ } | undefined;
227102
+ aliasTo?: string | undefined;
227103
+ } | undefined;
227104
+ } | undefined;
227105
+ aliasTo?: string | undefined;
227106
+ }[] | undefined;
227107
+ aliasTo?: string | undefined;
227108
+ };
227109
+ shadow2xl: {
227110
+ value?: {
227111
+ value?: {
227112
+ type: "Drop" | "Inner";
227113
+ color: {
227114
+ value?: {
227115
+ color: string | {
227116
+ aliasTo?: string | undefined;
227117
+ };
227118
+ opacity: {
227119
+ value?: {
227120
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
227121
+ measure: number;
227122
+ } | undefined;
227123
+ aliasTo?: string | undefined;
227124
+ };
227125
+ } | undefined;
227126
+ aliasTo?: string | undefined;
227127
+ };
227128
+ radius: number;
227129
+ x: number;
227130
+ y: number;
227131
+ spread: number;
227132
+ opacity?: {
227133
+ value?: {
227134
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
227135
+ measure: number;
227136
+ } | undefined;
227137
+ aliasTo?: string | undefined;
227138
+ } | undefined;
227139
+ } | undefined;
227140
+ aliasTo?: string | undefined;
227141
+ }[] | undefined;
227142
+ aliasTo?: string | undefined;
227143
+ };
227144
+ }, {
227145
+ card: {
227146
+ value?: {
227147
+ color: string | {
227148
+ aliasTo?: string | null | undefined;
227149
+ };
227150
+ opacity: {
227151
+ value?: {
227152
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
227153
+ measure: number;
227154
+ } | null | undefined;
227155
+ aliasTo?: string | null | undefined;
227156
+ };
227157
+ } | null | undefined;
227158
+ aliasTo?: string | null | undefined;
227159
+ };
227160
+ radius: {
227161
+ value?: {
227162
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
227163
+ measure: number;
227164
+ } | null | undefined;
227165
+ aliasTo?: string | null | undefined;
227166
+ };
227167
+ fontFamily: {
227168
+ value?: string | null | undefined;
227169
+ aliasTo?: string | null | undefined;
227170
+ };
227171
+ border: {
227172
+ value?: {
227173
+ color: string | {
227174
+ aliasTo?: string | null | undefined;
227175
+ };
227176
+ opacity: {
227177
+ value?: {
227178
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
227179
+ measure: number;
227180
+ } | null | undefined;
227181
+ aliasTo?: string | null | undefined;
227182
+ };
227183
+ } | null | undefined;
227184
+ aliasTo?: string | null | undefined;
227185
+ };
227186
+ sidebar: {
227187
+ value?: {
227188
+ color: string | {
227189
+ aliasTo?: string | null | undefined;
227190
+ };
227191
+ opacity: {
227192
+ value?: {
227193
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
227194
+ measure: number;
227195
+ } | null | undefined;
227196
+ aliasTo?: string | null | undefined;
227197
+ };
227198
+ } | null | undefined;
227199
+ aliasTo?: string | null | undefined;
227200
+ };
227201
+ input: {
227202
+ value?: {
227203
+ color: string | {
227204
+ aliasTo?: string | null | undefined;
227205
+ };
227206
+ opacity: {
227207
+ value?: {
227208
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
227209
+ measure: number;
227210
+ } | null | undefined;
227211
+ aliasTo?: string | null | undefined;
227212
+ };
227213
+ } | null | undefined;
227214
+ aliasTo?: string | null | undefined;
227215
+ };
227216
+ background: {
227217
+ value?: {
227218
+ color: string | {
227219
+ aliasTo?: string | null | undefined;
227220
+ };
227221
+ opacity: {
227222
+ value?: {
227223
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
227224
+ measure: number;
227225
+ } | null | undefined;
227226
+ aliasTo?: string | null | undefined;
227227
+ };
227228
+ } | null | undefined;
227229
+ aliasTo?: string | null | undefined;
227230
+ };
227231
+ foreground: {
227232
+ value?: {
227233
+ color: string | {
227234
+ aliasTo?: string | null | undefined;
227235
+ };
227236
+ opacity: {
227237
+ value?: {
227238
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
227239
+ measure: number;
227240
+ } | null | undefined;
227241
+ aliasTo?: string | null | undefined;
227242
+ };
227243
+ } | null | undefined;
227244
+ aliasTo?: string | null | undefined;
227245
+ };
227246
+ cardForeground: {
227247
+ value?: {
227248
+ color: string | {
227249
+ aliasTo?: string | null | undefined;
227250
+ };
227251
+ opacity: {
227252
+ value?: {
227253
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
227254
+ measure: number;
227255
+ } | null | undefined;
227256
+ aliasTo?: string | null | undefined;
227257
+ };
227258
+ } | null | undefined;
227259
+ aliasTo?: string | null | undefined;
227260
+ };
227261
+ popover: {
227262
+ value?: {
227263
+ color: string | {
227264
+ aliasTo?: string | null | undefined;
227265
+ };
227266
+ opacity: {
227267
+ value?: {
227268
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
227269
+ measure: number;
227270
+ } | null | undefined;
227271
+ aliasTo?: string | null | undefined;
227272
+ };
227273
+ } | null | undefined;
227274
+ aliasTo?: string | null | undefined;
227275
+ };
227276
+ popoverForeground: {
227277
+ value?: {
227278
+ color: string | {
227279
+ aliasTo?: string | null | undefined;
227280
+ };
227281
+ opacity: {
227282
+ value?: {
227283
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
227284
+ measure: number;
227285
+ } | null | undefined;
227286
+ aliasTo?: string | null | undefined;
227287
+ };
227288
+ } | null | undefined;
227289
+ aliasTo?: string | null | undefined;
227290
+ };
227291
+ primary: {
227292
+ value?: {
227293
+ color: string | {
227294
+ aliasTo?: string | null | undefined;
227295
+ };
227296
+ opacity: {
227297
+ value?: {
227298
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
227299
+ measure: number;
227300
+ } | null | undefined;
227301
+ aliasTo?: string | null | undefined;
227302
+ };
227303
+ } | null | undefined;
227304
+ aliasTo?: string | null | undefined;
227305
+ };
227306
+ primaryForeground: {
227307
+ value?: {
227308
+ color: string | {
227309
+ aliasTo?: string | null | undefined;
227310
+ };
227311
+ opacity: {
227312
+ value?: {
227313
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
227314
+ measure: number;
227315
+ } | null | undefined;
227316
+ aliasTo?: string | null | undefined;
227317
+ };
227318
+ } | null | undefined;
227319
+ aliasTo?: string | null | undefined;
227320
+ };
227321
+ secondary: {
227322
+ value?: {
227323
+ color: string | {
227324
+ aliasTo?: string | null | undefined;
227325
+ };
227326
+ opacity: {
227327
+ value?: {
227328
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
227329
+ measure: number;
227330
+ } | null | undefined;
227331
+ aliasTo?: string | null | undefined;
227332
+ };
227333
+ } | null | undefined;
227334
+ aliasTo?: string | null | undefined;
227335
+ };
227336
+ secondaryForeground: {
227337
+ value?: {
227338
+ color: string | {
227339
+ aliasTo?: string | null | undefined;
227340
+ };
227341
+ opacity: {
227342
+ value?: {
227343
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
227344
+ measure: number;
227345
+ } | null | undefined;
227346
+ aliasTo?: string | null | undefined;
227347
+ };
227348
+ } | null | undefined;
227349
+ aliasTo?: string | null | undefined;
227350
+ };
227351
+ muted: {
227352
+ value?: {
227353
+ color: string | {
227354
+ aliasTo?: string | null | undefined;
227355
+ };
227356
+ opacity: {
227357
+ value?: {
227358
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
227359
+ measure: number;
227360
+ } | null | undefined;
227361
+ aliasTo?: string | null | undefined;
227362
+ };
227363
+ } | null | undefined;
227364
+ aliasTo?: string | null | undefined;
227365
+ };
227366
+ mutedForeground: {
227367
+ value?: {
227368
+ color: string | {
227369
+ aliasTo?: string | null | undefined;
227370
+ };
227371
+ opacity: {
227372
+ value?: {
227373
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
227374
+ measure: number;
227375
+ } | null | undefined;
227376
+ aliasTo?: string | null | undefined;
227377
+ };
227378
+ } | null | undefined;
227379
+ aliasTo?: string | null | undefined;
227380
+ };
227381
+ accent: {
227382
+ value?: {
227383
+ color: string | {
227384
+ aliasTo?: string | null | undefined;
227385
+ };
227386
+ opacity: {
227387
+ value?: {
227388
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
227389
+ measure: number;
227390
+ } | null | undefined;
227391
+ aliasTo?: string | null | undefined;
227392
+ };
227393
+ } | null | undefined;
227394
+ aliasTo?: string | null | undefined;
227395
+ };
227396
+ accentForeground: {
227397
+ value?: {
227398
+ color: string | {
227399
+ aliasTo?: string | null | undefined;
227400
+ };
227401
+ opacity: {
227402
+ value?: {
227403
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
227404
+ measure: number;
227405
+ } | null | undefined;
227406
+ aliasTo?: string | null | undefined;
227407
+ };
227408
+ } | null | undefined;
227409
+ aliasTo?: string | null | undefined;
227410
+ };
227411
+ destructive: {
227412
+ value?: {
227413
+ color: string | {
227414
+ aliasTo?: string | null | undefined;
227415
+ };
227416
+ opacity: {
227417
+ value?: {
227418
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
227419
+ measure: number;
227420
+ } | null | undefined;
227421
+ aliasTo?: string | null | undefined;
227422
+ };
227423
+ } | null | undefined;
227424
+ aliasTo?: string | null | undefined;
227425
+ };
227426
+ ring: {
227427
+ value?: {
227428
+ color: string | {
227429
+ aliasTo?: string | null | undefined;
227430
+ };
227431
+ opacity: {
227432
+ value?: {
227433
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
227434
+ measure: number;
227435
+ } | null | undefined;
227436
+ aliasTo?: string | null | undefined;
227437
+ };
227438
+ } | null | undefined;
227439
+ aliasTo?: string | null | undefined;
227440
+ };
227441
+ chart1: {
227442
+ value?: {
227443
+ color: string | {
227444
+ aliasTo?: string | null | undefined;
227445
+ };
227446
+ opacity: {
227447
+ value?: {
227448
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
227449
+ measure: number;
227450
+ } | null | undefined;
227451
+ aliasTo?: string | null | undefined;
227452
+ };
227453
+ } | null | undefined;
227454
+ aliasTo?: string | null | undefined;
227455
+ };
227456
+ chart2: {
227457
+ value?: {
227458
+ color: string | {
227459
+ aliasTo?: string | null | undefined;
227460
+ };
227461
+ opacity: {
227462
+ value?: {
227463
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
227464
+ measure: number;
227465
+ } | null | undefined;
227466
+ aliasTo?: string | null | undefined;
227467
+ };
227468
+ } | null | undefined;
227469
+ aliasTo?: string | null | undefined;
227470
+ };
227471
+ chart3: {
227472
+ value?: {
227473
+ color: string | {
227474
+ aliasTo?: string | null | undefined;
227475
+ };
227476
+ opacity: {
227477
+ value?: {
227478
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
227479
+ measure: number;
227480
+ } | null | undefined;
227481
+ aliasTo?: string | null | undefined;
227482
+ };
227483
+ } | null | undefined;
227484
+ aliasTo?: string | null | undefined;
227485
+ };
227486
+ chart4: {
227487
+ value?: {
227488
+ color: string | {
227489
+ aliasTo?: string | null | undefined;
227490
+ };
227491
+ opacity: {
227492
+ value?: {
227493
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
227494
+ measure: number;
227495
+ } | null | undefined;
227496
+ aliasTo?: string | null | undefined;
227497
+ };
227498
+ } | null | undefined;
227499
+ aliasTo?: string | null | undefined;
227500
+ };
227501
+ chart5: {
227502
+ value?: {
227503
+ color: string | {
227504
+ aliasTo?: string | null | undefined;
227505
+ };
227506
+ opacity: {
227507
+ value?: {
227508
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
227509
+ measure: number;
227510
+ } | null | undefined;
227511
+ aliasTo?: string | null | undefined;
227512
+ };
227513
+ } | null | undefined;
227514
+ aliasTo?: string | null | undefined;
227515
+ };
227516
+ sidebarForeground: {
227517
+ value?: {
227518
+ color: string | {
227519
+ aliasTo?: string | null | undefined;
227520
+ };
227521
+ opacity: {
227522
+ value?: {
227523
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
227524
+ measure: number;
227525
+ } | null | undefined;
227526
+ aliasTo?: string | null | undefined;
227527
+ };
227528
+ } | null | undefined;
227529
+ aliasTo?: string | null | undefined;
227530
+ };
227531
+ sidebarPrimary: {
227532
+ value?: {
227533
+ color: string | {
227534
+ aliasTo?: string | null | undefined;
227535
+ };
227536
+ opacity: {
227537
+ value?: {
227538
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
227539
+ measure: number;
227540
+ } | null | undefined;
227541
+ aliasTo?: string | null | undefined;
227542
+ };
227543
+ } | null | undefined;
227544
+ aliasTo?: string | null | undefined;
227545
+ };
227546
+ sidebarPrimaryForeground: {
227547
+ value?: {
227548
+ color: string | {
227549
+ aliasTo?: string | null | undefined;
227550
+ };
227551
+ opacity: {
227552
+ value?: {
227553
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
227554
+ measure: number;
227555
+ } | null | undefined;
227556
+ aliasTo?: string | null | undefined;
227557
+ };
227558
+ } | null | undefined;
227559
+ aliasTo?: string | null | undefined;
227560
+ };
227561
+ sidebarAccent: {
227562
+ value?: {
227563
+ color: string | {
227564
+ aliasTo?: string | null | undefined;
227565
+ };
227566
+ opacity: {
227567
+ value?: {
227568
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
227569
+ measure: number;
227570
+ } | null | undefined;
227571
+ aliasTo?: string | null | undefined;
227572
+ };
227573
+ } | null | undefined;
227574
+ aliasTo?: string | null | undefined;
227575
+ };
227576
+ sidebarAccentForeground: {
227577
+ value?: {
227578
+ color: string | {
227579
+ aliasTo?: string | null | undefined;
227580
+ };
227581
+ opacity: {
227582
+ value?: {
227583
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
227584
+ measure: number;
227585
+ } | null | undefined;
227586
+ aliasTo?: string | null | undefined;
227587
+ };
227588
+ } | null | undefined;
227589
+ aliasTo?: string | null | undefined;
227590
+ };
227591
+ sidebarBorder: {
227592
+ value?: {
227593
+ color: string | {
227594
+ aliasTo?: string | null | undefined;
227595
+ };
227596
+ opacity: {
227597
+ value?: {
227598
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
227599
+ measure: number;
227600
+ } | null | undefined;
227601
+ aliasTo?: string | null | undefined;
227602
+ };
227603
+ } | null | undefined;
227604
+ aliasTo?: string | null | undefined;
227605
+ };
227606
+ sidebarRing: {
227607
+ value?: {
227608
+ color: string | {
227609
+ aliasTo?: string | null | undefined;
227610
+ };
227611
+ opacity: {
227612
+ value?: {
227613
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
227614
+ measure: number;
227615
+ } | null | undefined;
227616
+ aliasTo?: string | null | undefined;
227617
+ };
227618
+ } | null | undefined;
227619
+ aliasTo?: string | null | undefined;
227620
+ };
227621
+ textXs: {
227622
+ value?: {
227623
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
227624
+ measure: number;
227625
+ } | null | undefined;
227626
+ aliasTo?: string | null | undefined;
227627
+ };
227628
+ textSm: {
227629
+ value?: {
227630
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
227631
+ measure: number;
227632
+ } | null | undefined;
227633
+ aliasTo?: string | null | undefined;
227634
+ };
227635
+ textBase: {
227636
+ value?: {
227637
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
227638
+ measure: number;
227639
+ } | null | undefined;
227640
+ aliasTo?: string | null | undefined;
227641
+ };
227642
+ textLg: {
227643
+ value?: {
227644
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
227645
+ measure: number;
227646
+ } | null | undefined;
227647
+ aliasTo?: string | null | undefined;
227648
+ };
227649
+ textXl: {
227650
+ value?: {
227651
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
227652
+ measure: number;
227653
+ } | null | undefined;
227654
+ aliasTo?: string | null | undefined;
227655
+ };
227656
+ text2xl: {
227657
+ value?: {
227658
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
227659
+ measure: number;
227660
+ } | null | undefined;
227661
+ aliasTo?: string | null | undefined;
227662
+ };
227663
+ text3xl: {
227664
+ value?: {
227665
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
227666
+ measure: number;
227667
+ } | null | undefined;
227668
+ aliasTo?: string | null | undefined;
227669
+ };
227670
+ text4xl: {
227671
+ value?: {
227672
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
227673
+ measure: number;
227674
+ } | null | undefined;
227675
+ aliasTo?: string | null | undefined;
227676
+ };
227677
+ text5xl: {
227678
+ value?: {
227679
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
227680
+ measure: number;
227681
+ } | null | undefined;
227682
+ aliasTo?: string | null | undefined;
227683
+ };
227684
+ text6xl: {
227685
+ value?: {
227686
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
227687
+ measure: number;
227688
+ } | null | undefined;
227689
+ aliasTo?: string | null | undefined;
227690
+ };
227691
+ text7xl: {
227692
+ value?: {
227693
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
227694
+ measure: number;
227695
+ } | null | undefined;
227696
+ aliasTo?: string | null | undefined;
227697
+ };
227698
+ text8xl: {
227699
+ value?: {
227700
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
227701
+ measure: number;
227702
+ } | null | undefined;
227703
+ aliasTo?: string | null | undefined;
227704
+ };
227705
+ text9xl: {
227706
+ value?: {
227707
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
227708
+ measure: number;
227709
+ } | null | undefined;
227710
+ aliasTo?: string | null | undefined;
227711
+ };
227712
+ textXsLineHeight: {
227713
+ value?: {
227714
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
227715
+ measure: number;
227716
+ } | null | undefined;
227717
+ aliasTo?: string | null | undefined;
227718
+ };
227719
+ textSmLineHeight: {
227720
+ value?: {
227721
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
227722
+ measure: number;
227723
+ } | null | undefined;
227724
+ aliasTo?: string | null | undefined;
227725
+ };
227726
+ textBaseLineHeight: {
227727
+ value?: {
227728
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
227729
+ measure: number;
227730
+ } | null | undefined;
227731
+ aliasTo?: string | null | undefined;
227732
+ };
227733
+ textLgLineHeight: {
227734
+ value?: {
227735
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
227736
+ measure: number;
227737
+ } | null | undefined;
227738
+ aliasTo?: string | null | undefined;
227739
+ };
227740
+ textXlLineHeight: {
227741
+ value?: {
227742
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
227743
+ measure: number;
227744
+ } | null | undefined;
227745
+ aliasTo?: string | null | undefined;
227746
+ };
227747
+ text2xlLineHeight: {
227748
+ value?: {
227749
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
227750
+ measure: number;
227751
+ } | null | undefined;
227752
+ aliasTo?: string | null | undefined;
227753
+ };
227754
+ text3xlLineHeight: {
227755
+ value?: {
227756
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
227757
+ measure: number;
227758
+ } | null | undefined;
227759
+ aliasTo?: string | null | undefined;
227760
+ };
227761
+ text4xlLineHeight: {
227762
+ value?: {
227763
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
227764
+ measure: number;
227765
+ } | null | undefined;
227766
+ aliasTo?: string | null | undefined;
227767
+ };
227768
+ text5xlLineHeight: {
227769
+ value?: {
227770
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
227771
+ measure: number;
227772
+ } | null | undefined;
227773
+ aliasTo?: string | null | undefined;
227774
+ };
227775
+ text6xlLineHeight: {
227776
+ value?: {
227777
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
227778
+ measure: number;
227779
+ } | null | undefined;
227780
+ aliasTo?: string | null | undefined;
227781
+ };
227782
+ text7xlLineHeight: {
227783
+ value?: {
227784
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
227785
+ measure: number;
227786
+ } | null | undefined;
227787
+ aliasTo?: string | null | undefined;
227788
+ };
227789
+ text8xlLineHeight: {
227790
+ value?: {
227791
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
227792
+ measure: number;
227793
+ } | null | undefined;
227794
+ aliasTo?: string | null | undefined;
227795
+ };
227796
+ text9xlLineHeight: {
227797
+ value?: {
227798
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
227799
+ measure: number;
227800
+ } | null | undefined;
227801
+ aliasTo?: string | null | undefined;
227802
+ };
227803
+ fontWeightThin: {
227804
+ value?: string | null | undefined;
227805
+ aliasTo?: string | null | undefined;
227806
+ };
227807
+ fontWeightExtralight: {
227808
+ value?: string | null | undefined;
227809
+ aliasTo?: string | null | undefined;
227810
+ };
227811
+ fontWeightLight: {
227812
+ value?: string | null | undefined;
227813
+ aliasTo?: string | null | undefined;
227814
+ };
227815
+ fontWeightNormal: {
227816
+ value?: string | null | undefined;
227817
+ aliasTo?: string | null | undefined;
227818
+ };
227819
+ fontWeightMedium: {
227820
+ value?: string | null | undefined;
227821
+ aliasTo?: string | null | undefined;
227822
+ };
227823
+ fontWeightSemibold: {
227824
+ value?: string | null | undefined;
227825
+ aliasTo?: string | null | undefined;
227826
+ };
227827
+ fontWeightBold: {
227828
+ value?: string | null | undefined;
227829
+ aliasTo?: string | null | undefined;
227830
+ };
227831
+ fontWeightExtrabold: {
227832
+ value?: string | null | undefined;
227833
+ aliasTo?: string | null | undefined;
227834
+ };
227835
+ fontWeightBlack: {
227836
+ value?: string | null | undefined;
227837
+ aliasTo?: string | null | undefined;
227838
+ };
227839
+ spacing: {
227840
+ value?: {
227841
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
227842
+ measure: number;
227843
+ } | null | undefined;
227844
+ aliasTo?: string | null | undefined;
227845
+ };
227846
+ shadow2xs: {
227847
+ value?: {
227848
+ value?: {
227849
+ type: "Drop" | "Inner";
227850
+ color: {
227851
+ value?: {
227852
+ color: string | {
227853
+ aliasTo?: string | null | undefined;
227854
+ };
227855
+ opacity: {
227856
+ value?: {
227857
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
227858
+ measure: number;
227859
+ } | null | undefined;
227860
+ aliasTo?: string | null | undefined;
227861
+ };
227862
+ } | null | undefined;
227863
+ aliasTo?: string | null | undefined;
227864
+ };
227865
+ radius: number;
227866
+ x: number;
227867
+ y: number;
227868
+ spread: number;
227869
+ opacity?: {
227870
+ value?: {
227871
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
227872
+ measure: number;
227873
+ } | null | undefined;
227874
+ aliasTo?: string | null | undefined;
227875
+ } | undefined;
227876
+ } | null | undefined;
227877
+ aliasTo?: string | null | undefined;
227878
+ }[] | null | undefined;
227879
+ aliasTo?: string | null | undefined;
227880
+ };
227881
+ shadowXs: {
227882
+ value?: {
226612
227883
  value?: {
226613
227884
  type: "Drop" | "Inner";
226614
227885
  color: {
226615
227886
  value?: {
226616
227887
  color: string | {
226617
- aliasTo?: string | undefined;
227888
+ aliasTo?: string | null | undefined;
226618
227889
  };
226619
227890
  opacity: {
226620
227891
  value?: {
226621
227892
  unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
226622
227893
  measure: number;
226623
- } | undefined;
226624
- aliasTo?: string | undefined;
227894
+ } | null | undefined;
227895
+ aliasTo?: string | null | undefined;
226625
227896
  };
226626
- } | undefined;
226627
- aliasTo?: string | undefined;
227897
+ } | null | undefined;
227898
+ aliasTo?: string | null | undefined;
226628
227899
  };
226629
227900
  radius: number;
226630
227901
  x: number;
@@ -226634,12 +227905,16 @@ declare const DTOForgeProjectContextCreateV2: z.ZodObject<Omit<{
226634
227905
  value?: {
226635
227906
  unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
226636
227907
  measure: number;
226637
- } | undefined;
226638
- aliasTo?: string | undefined;
227908
+ } | null | undefined;
227909
+ aliasTo?: string | null | undefined;
226639
227910
  } | undefined;
226640
- } | undefined;
226641
- aliasTo?: string | undefined;
226642
- }[], z.ZodTypeDef, {
227911
+ } | null | undefined;
227912
+ aliasTo?: string | null | undefined;
227913
+ }[] | null | undefined;
227914
+ aliasTo?: string | null | undefined;
227915
+ };
227916
+ shadowSm: {
227917
+ value?: {
226643
227918
  value?: {
226644
227919
  type: "Drop" | "Inner";
226645
227920
  color: {
@@ -226670,23 +227945,27 @@ declare const DTOForgeProjectContextCreateV2: z.ZodObject<Omit<{
226670
227945
  } | undefined;
226671
227946
  } | null | undefined;
226672
227947
  aliasTo?: string | null | undefined;
226673
- }[]>>>, {
227948
+ }[] | null | undefined;
227949
+ aliasTo?: string | null | undefined;
227950
+ };
227951
+ shadowMd: {
227952
+ value?: {
226674
227953
  value?: {
226675
227954
  type: "Drop" | "Inner";
226676
227955
  color: {
226677
227956
  value?: {
226678
227957
  color: string | {
226679
- aliasTo?: string | undefined;
227958
+ aliasTo?: string | null | undefined;
226680
227959
  };
226681
227960
  opacity: {
226682
227961
  value?: {
226683
227962
  unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
226684
227963
  measure: number;
226685
- } | undefined;
226686
- aliasTo?: string | undefined;
227964
+ } | null | undefined;
227965
+ aliasTo?: string | null | undefined;
226687
227966
  };
226688
- } | undefined;
226689
- aliasTo?: string | undefined;
227967
+ } | null | undefined;
227968
+ aliasTo?: string | null | undefined;
226690
227969
  };
226691
227970
  radius: number;
226692
227971
  x: number;
@@ -226696,12 +227975,16 @@ declare const DTOForgeProjectContextCreateV2: z.ZodObject<Omit<{
226696
227975
  value?: {
226697
227976
  unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
226698
227977
  measure: number;
226699
- } | undefined;
226700
- aliasTo?: string | undefined;
227978
+ } | null | undefined;
227979
+ aliasTo?: string | null | undefined;
226701
227980
  } | undefined;
226702
- } | undefined;
226703
- aliasTo?: string | undefined;
226704
- }[] | undefined, {
227981
+ } | null | undefined;
227982
+ aliasTo?: string | null | undefined;
227983
+ }[] | null | undefined;
227984
+ aliasTo?: string | null | undefined;
227985
+ };
227986
+ shadowLg: {
227987
+ value?: {
226705
227988
  value?: {
226706
227989
  type: "Drop" | "Inner";
226707
227990
  color: {
@@ -226732,25 +228015,27 @@ declare const DTOForgeProjectContextCreateV2: z.ZodObject<Omit<{
226732
228015
  } | undefined;
226733
228016
  } | null | undefined;
226734
228017
  aliasTo?: string | null | undefined;
226735
- }[] | null | undefined>;
226736
- }, "strip", z.ZodTypeAny, {
228018
+ }[] | null | undefined;
228019
+ aliasTo?: string | null | undefined;
228020
+ };
228021
+ shadowXl: {
226737
228022
  value?: {
226738
228023
  value?: {
226739
228024
  type: "Drop" | "Inner";
226740
228025
  color: {
226741
228026
  value?: {
226742
228027
  color: string | {
226743
- aliasTo?: string | undefined;
228028
+ aliasTo?: string | null | undefined;
226744
228029
  };
226745
228030
  opacity: {
226746
228031
  value?: {
226747
228032
  unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
226748
228033
  measure: number;
226749
- } | undefined;
226750
- aliasTo?: string | undefined;
228034
+ } | null | undefined;
228035
+ aliasTo?: string | null | undefined;
226751
228036
  };
226752
- } | undefined;
226753
- aliasTo?: string | undefined;
228037
+ } | null | undefined;
228038
+ aliasTo?: string | null | undefined;
226754
228039
  };
226755
228040
  radius: number;
226756
228041
  x: number;
@@ -226760,14 +228045,15 @@ declare const DTOForgeProjectContextCreateV2: z.ZodObject<Omit<{
226760
228045
  value?: {
226761
228046
  unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
226762
228047
  measure: number;
226763
- } | undefined;
226764
- aliasTo?: string | undefined;
228048
+ } | null | undefined;
228049
+ aliasTo?: string | null | undefined;
226765
228050
  } | undefined;
226766
- } | undefined;
226767
- aliasTo?: string | undefined;
226768
- }[] | undefined;
226769
- aliasTo?: string | undefined;
226770
- }, {
228051
+ } | null | undefined;
228052
+ aliasTo?: string | null | undefined;
228053
+ }[] | null | undefined;
228054
+ aliasTo?: string | null | undefined;
228055
+ };
228056
+ shadow2xl: {
226771
228057
  value?: {
226772
228058
  value?: {
226773
228059
  type: "Drop" | "Inner";
@@ -226801,8 +228087,29 @@ declare const DTOForgeProjectContextCreateV2: z.ZodObject<Omit<{
226801
228087
  aliasTo?: string | null | undefined;
226802
228088
  }[] | null | undefined;
226803
228089
  aliasTo?: string | null | undefined;
226804
- }>;
228090
+ };
228091
+ }>>;
228092
+ iconSet: z.ZodOptional<z.ZodObject<{
228093
+ type: z.ZodEnum<["Phosphor", "Lucide", "Tabler"]>;
228094
+ variant: z.ZodOptional<z.ZodString>;
228095
+ }, "strip", z.ZodTypeAny, {
228096
+ type: "Phosphor" | "Lucide" | "Tabler";
228097
+ variant?: string | undefined;
228098
+ }, {
228099
+ type: "Phosphor" | "Lucide" | "Tabler";
228100
+ variant?: string | undefined;
228101
+ }>>;
228102
+ componentSet: z.ZodOptional<z.ZodObject<{
228103
+ type: z.ZodEnum<["Shadcn"]>;
226805
228104
  }, "strip", z.ZodTypeAny, {
228105
+ type: "Shadcn";
228106
+ }, {
228107
+ type: "Shadcn";
228108
+ }>>;
228109
+ }, "strip", z.ZodTypeAny, {
228110
+ name: string;
228111
+ workspaceId: string;
228112
+ theme?: {
226806
228113
  card: {
226807
228114
  value?: {
226808
228115
  color: string | {
@@ -227749,7 +229056,35 @@ declare const DTOForgeProjectContextCreateV2: z.ZodObject<Omit<{
227749
229056
  }[] | undefined;
227750
229057
  aliasTo?: string | undefined;
227751
229058
  };
227752
- }, {
229059
+ } | undefined;
229060
+ description?: string | undefined;
229061
+ designSystemId?: string | undefined;
229062
+ brandId?: string | undefined;
229063
+ defaultTokenThemeSetId?: string | undefined;
229064
+ productContext?: string | undefined;
229065
+ additionalContext?: string | undefined;
229066
+ themePreset?: string | undefined;
229067
+ tokenThemeSets?: {
229068
+ id: string;
229069
+ name: string;
229070
+ tokenThemeIds: string[];
229071
+ }[] | undefined;
229072
+ componentSet?: {
229073
+ type: "Shadcn";
229074
+ } | undefined;
229075
+ iconSet?: {
229076
+ type: "Phosphor" | "Lucide" | "Tabler";
229077
+ variant?: string | undefined;
229078
+ } | undefined;
229079
+ sandboxTemplate?: {
229080
+ id: string;
229081
+ version: string;
229082
+ } | undefined;
229083
+ thumbnailFileId?: string | undefined;
229084
+ }, {
229085
+ name: string;
229086
+ workspaceId: string;
229087
+ theme?: {
227753
229088
  card: {
227754
229089
  value?: {
227755
229090
  color: string | {
@@ -228696,76 +230031,35 @@ declare const DTOForgeProjectContextCreateV2: z.ZodObject<Omit<{
228696
230031
  }[] | null | undefined;
228697
230032
  aliasTo?: string | null | undefined;
228698
230033
  };
228699
- }>;
228700
- createdAt: z.ZodDate;
228701
- updatedAt: z.ZodDate;
228702
- thumbnail: z.ZodOptional<z.ZodObject<Pick<{
228703
- id: z.ZodString;
228704
- name: z.ZodString;
228705
- deduplicationKey: z.ZodString;
228706
- pendingUpload: z.ZodOptional<z.ZodBoolean>;
228707
- storagePath: z.ZodString;
228708
- url: z.ZodString;
228709
- size: z.ZodNumber;
228710
- source: z.ZodOptional<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
228711
- type: z.ZodLiteral<"UserUpload">;
228712
- userId: z.ZodString;
228713
- }, "strip", z.ZodTypeAny, {
228714
- type: "UserUpload";
228715
- userId: string;
228716
- }, {
228717
- type: "UserUpload";
228718
- userId: string;
228719
- }>, z.ZodObject<{
228720
- type: z.ZodLiteral<"Figma">;
228721
- renderMode: z.ZodEnum<["Image", "HTML", "JSON"]>;
228722
- }, "strip", z.ZodTypeAny, {
228723
- type: "Figma";
228724
- renderMode: "Image" | "HTML" | "JSON";
228725
- }, {
228726
- type: "Figma";
228727
- renderMode: "Image" | "HTML" | "JSON";
228728
- }>]>>;
228729
- }, "id" | "source" | "url"> & {
228730
- name: z.ZodOptional<z.ZodString>;
228731
- }, "strip", z.ZodTypeAny, {
228732
- id: string;
228733
- url: string;
228734
- name?: string | undefined;
228735
- source?: {
228736
- type: "UserUpload";
228737
- userId: string;
228738
- } | {
228739
- type: "Figma";
228740
- renderMode: "Image" | "HTML" | "JSON";
228741
- } | undefined;
228742
- }, {
228743
- id: string;
228744
- url: string;
228745
- name?: string | undefined;
228746
- source?: {
228747
- type: "UserUpload";
228748
- userId: string;
228749
- } | {
228750
- type: "Figma";
228751
- renderMode: "Image" | "HTML" | "JSON";
228752
- } | undefined;
228753
- }>>;
228754
- sandboxTemplate: z.ZodOptional<z.ZodObject<{
228755
- id: z.ZodString;
228756
- version: z.ZodString;
228757
- }, "strip", z.ZodTypeAny, {
230034
+ } | undefined;
230035
+ description?: string | undefined;
230036
+ designSystemId?: string | undefined;
230037
+ brandId?: string | undefined;
230038
+ defaultTokenThemeSetId?: string | undefined;
230039
+ productContext?: string | undefined;
230040
+ additionalContext?: string | undefined;
230041
+ themePreset?: string | undefined;
230042
+ tokenThemeSets?: {
228758
230043
  id: string;
228759
- version: string;
228760
- }, {
230044
+ name: string;
230045
+ tokenThemeIds: string[];
230046
+ }[] | undefined;
230047
+ componentSet?: {
230048
+ type: "Shadcn";
230049
+ } | undefined;
230050
+ iconSet?: {
230051
+ type: "Phosphor" | "Lucide" | "Tabler";
230052
+ variant?: string | undefined;
230053
+ } | undefined;
230054
+ sandboxTemplate?: {
228761
230055
  id: string;
228762
230056
  version: string;
228763
- }>>;
228764
- }, "id" | "createdAt" | "updatedAt" | "thumbnail" | "isArchived"> & {
228765
- thumbnailFileId: z.ZodOptional<z.ZodString>;
228766
- }, "strip", z.ZodTypeAny, {
230057
+ } | undefined;
230058
+ thumbnailFileId?: string | undefined;
230059
+ }>, {
228767
230060
  name: string;
228768
- theme: {
230061
+ workspaceId: string;
230062
+ theme?: {
228769
230063
  card: {
228770
230064
  value?: {
228771
230065
  color: string | {
@@ -229712,15 +231006,7 @@ declare const DTOForgeProjectContextCreateV2: z.ZodObject<Omit<{
229712
231006
  }[] | undefined;
229713
231007
  aliasTo?: string | undefined;
229714
231008
  };
229715
- };
229716
- workspaceId: string;
229717
- componentSet: {
229718
- type: "Shadcn";
229719
- };
229720
- iconSet: {
229721
- type: "Phosphor" | "Lucide" | "Tabler";
229722
- variant?: string | undefined;
229723
- };
231009
+ } | undefined;
229724
231010
  description?: string | undefined;
229725
231011
  designSystemId?: string | undefined;
229726
231012
  brandId?: string | undefined;
@@ -229733,6 +231019,13 @@ declare const DTOForgeProjectContextCreateV2: z.ZodObject<Omit<{
229733
231019
  name: string;
229734
231020
  tokenThemeIds: string[];
229735
231021
  }[] | undefined;
231022
+ componentSet?: {
231023
+ type: "Shadcn";
231024
+ } | undefined;
231025
+ iconSet?: {
231026
+ type: "Phosphor" | "Lucide" | "Tabler";
231027
+ variant?: string | undefined;
231028
+ } | undefined;
229736
231029
  sandboxTemplate?: {
229737
231030
  id: string;
229738
231031
  version: string;
@@ -229740,7 +231033,8 @@ declare const DTOForgeProjectContextCreateV2: z.ZodObject<Omit<{
229740
231033
  thumbnailFileId?: string | undefined;
229741
231034
  }, {
229742
231035
  name: string;
229743
- theme: {
231036
+ workspaceId: string;
231037
+ theme?: {
229744
231038
  card: {
229745
231039
  value?: {
229746
231040
  color: string | {
@@ -230687,15 +231981,7 @@ declare const DTOForgeProjectContextCreateV2: z.ZodObject<Omit<{
230687
231981
  }[] | null | undefined;
230688
231982
  aliasTo?: string | null | undefined;
230689
231983
  };
230690
- };
230691
- workspaceId: string;
230692
- componentSet: {
230693
- type: "Shadcn";
230694
- };
230695
- iconSet: {
230696
- type: "Phosphor" | "Lucide" | "Tabler";
230697
- variant?: string | undefined;
230698
- };
231984
+ } | undefined;
230699
231985
  description?: string | undefined;
230700
231986
  designSystemId?: string | undefined;
230701
231987
  brandId?: string | undefined;
@@ -230708,6 +231994,13 @@ declare const DTOForgeProjectContextCreateV2: z.ZodObject<Omit<{
230708
231994
  name: string;
230709
231995
  tokenThemeIds: string[];
230710
231996
  }[] | undefined;
231997
+ componentSet?: {
231998
+ type: "Shadcn";
231999
+ } | undefined;
232000
+ iconSet?: {
232001
+ type: "Phosphor" | "Lucide" | "Tabler";
232002
+ variant?: string | undefined;
232003
+ } | undefined;
230711
232004
  sandboxTemplate?: {
230712
232005
  id: string;
230713
232006
  version: string;
@@ -389938,34 +391231,6 @@ declare class ElementsActionEndpoint {
389938
391231
  output: {
389939
391232
  success: true;
389940
391233
  };
389941
- } | {
389942
- type: "FigmaNodeRender";
389943
- figmaNodes: {
389944
- data: {
389945
- assetId: string;
389946
- assetScale: number;
389947
- assetUrl: string;
389948
- figmaNodeId: string;
389949
- isValid: boolean;
389950
- assetFormat: "Png" | "Svg";
389951
- assetWidth?: number | undefined;
389952
- assetHeight?: number | undefined;
389953
- };
389954
- id: string;
389955
- createdAt: Date;
389956
- updatedAt: Date;
389957
- persistentId: string;
389958
- designSystemVersionId: string;
389959
- origin: {
389960
- sourceId: string;
389961
- fileId?: string | undefined;
389962
- parentName?: string | undefined;
389963
- };
389964
- meta: {
389965
- name: string;
389966
- description?: string | undefined;
389967
- };
389968
- }[];
389969
391234
  } | {
389970
391235
  type: "FigmaNodeRenderAsync";
389971
391236
  figmaNodes: {
@@ -390089,336 +391354,6 @@ declare class ElementsActionEndpoint {
390089
391354
  output: {
390090
391355
  success: true;
390091
391356
  };
390092
- } | {
390093
- type: "FigmaNodeRender";
390094
- figmaNodes: {
390095
- data: {
390096
- assetId: string;
390097
- assetScale: number;
390098
- assetUrl: string;
390099
- figmaNodeId: string;
390100
- isValid: boolean;
390101
- assetFormat: "Png" | "Svg";
390102
- assetWidth?: number | undefined;
390103
- assetHeight?: number | undefined;
390104
- };
390105
- id: string;
390106
- createdAt: Date;
390107
- updatedAt: Date;
390108
- persistentId: string;
390109
- designSystemVersionId: string;
390110
- origin: {
390111
- sourceId: string;
390112
- fileId?: string | undefined;
390113
- parentName?: string | undefined;
390114
- };
390115
- meta: {
390116
- name: string;
390117
- description?: string | undefined;
390118
- };
390119
- }[];
390120
- } | {
390121
- type: "FigmaNodeRenderAsync";
390122
- figmaNodes: {
390123
- data: {
390124
- format: "Png" | "Svg";
390125
- sceneNodeId: string;
390126
- renderState: "InProgress" | "Success" | "Failed";
390127
- hasSource: boolean;
390128
- scale?: number | undefined;
390129
- renderedImage?: {
390130
- resourceId: string;
390131
- format: "Png" | "Svg";
390132
- url?: string | undefined;
390133
- width?: number | undefined;
390134
- height?: number | undefined;
390135
- originKey?: string | undefined;
390136
- scale?: number | undefined;
390137
- } | undefined;
390138
- renderError?: {
390139
- type: "MissingIntegration" | "NodeNotFound" | "RenderError";
390140
- } | undefined;
390141
- };
390142
- id: string;
390143
- createdAt: Date;
390144
- updatedAt: Date;
390145
- persistentId: string;
390146
- designSystemVersionId: string;
390147
- origin: {
390148
- sourceId: string;
390149
- fileId?: string | undefined;
390150
- parentName?: string | undefined;
390151
- };
390152
- meta: {
390153
- name: string;
390154
- description?: string | undefined;
390155
- };
390156
- }[];
390157
- } | {
390158
- type: "ElementPropertyValuesEdit";
390159
- output: {
390160
- success: true;
390161
- };
390162
- }>;
390163
- moveDocGroup(dsId: string, vId: string, input: DTOMoveDocumentationGroupInput): Promise<{
390164
- type: "DocumentationGroupCreate";
390165
- output: {
390166
- success: true;
390167
- };
390168
- } | {
390169
- type: "DocumentationTabCreate";
390170
- output: {
390171
- success: true;
390172
- };
390173
- } | {
390174
- type: "DocumentationGroupUpdate";
390175
- output: {
390176
- success: true;
390177
- };
390178
- } | {
390179
- type: "DocumentationGroupMove";
390180
- output: {
390181
- success: true;
390182
- };
390183
- } | {
390184
- type: "DocumentationGroupDuplicate";
390185
- output: {
390186
- success: true;
390187
- };
390188
- } | {
390189
- type: "DocumentationGroupDelete";
390190
- output: {
390191
- success: true;
390192
- };
390193
- } | {
390194
- type: "DocumentationTabGroupDelete";
390195
- output: {
390196
- success: true;
390197
- };
390198
- } | {
390199
- type: "DocumentationPageCreate";
390200
- output: {
390201
- success: true;
390202
- };
390203
- } | {
390204
- type: "DocumentationPageUpdate";
390205
- output: {
390206
- success: true;
390207
- };
390208
- } | {
390209
- type: "DocumentationPageUpdateDocument";
390210
- output: {
390211
- success: true;
390212
- };
390213
- } | {
390214
- type: "DocumentationPageMove";
390215
- output: {
390216
- success: true;
390217
- };
390218
- } | {
390219
- type: "DocumentationPageDuplicate";
390220
- output: {
390221
- success: true;
390222
- };
390223
- } | {
390224
- type: "DocumentationPageDelete";
390225
- output: {
390226
- success: true;
390227
- };
390228
- } | {
390229
- type: "DocumentationPageRestore";
390230
- output: {
390231
- success: true;
390232
- };
390233
- } | {
390234
- type: "DocumentationGroupRestore";
390235
- output: {
390236
- success: true;
390237
- };
390238
- } | {
390239
- type: "DocumentationPageApprovalStateChange";
390240
- output: {
390241
- success: true;
390242
- };
390243
- } | {
390244
- type: "FigmaNodeRender";
390245
- figmaNodes: {
390246
- data: {
390247
- assetId: string;
390248
- assetScale: number;
390249
- assetUrl: string;
390250
- figmaNodeId: string;
390251
- isValid: boolean;
390252
- assetFormat: "Png" | "Svg";
390253
- assetWidth?: number | undefined;
390254
- assetHeight?: number | undefined;
390255
- };
390256
- id: string;
390257
- createdAt: Date;
390258
- updatedAt: Date;
390259
- persistentId: string;
390260
- designSystemVersionId: string;
390261
- origin: {
390262
- sourceId: string;
390263
- fileId?: string | undefined;
390264
- parentName?: string | undefined;
390265
- };
390266
- meta: {
390267
- name: string;
390268
- description?: string | undefined;
390269
- };
390270
- }[];
390271
- } | {
390272
- type: "FigmaNodeRenderAsync";
390273
- figmaNodes: {
390274
- data: {
390275
- format: "Png" | "Svg";
390276
- sceneNodeId: string;
390277
- renderState: "InProgress" | "Success" | "Failed";
390278
- hasSource: boolean;
390279
- scale?: number | undefined;
390280
- renderedImage?: {
390281
- resourceId: string;
390282
- format: "Png" | "Svg";
390283
- url?: string | undefined;
390284
- width?: number | undefined;
390285
- height?: number | undefined;
390286
- originKey?: string | undefined;
390287
- scale?: number | undefined;
390288
- } | undefined;
390289
- renderError?: {
390290
- type: "MissingIntegration" | "NodeNotFound" | "RenderError";
390291
- } | undefined;
390292
- };
390293
- id: string;
390294
- createdAt: Date;
390295
- updatedAt: Date;
390296
- persistentId: string;
390297
- designSystemVersionId: string;
390298
- origin: {
390299
- sourceId: string;
390300
- fileId?: string | undefined;
390301
- parentName?: string | undefined;
390302
- };
390303
- meta: {
390304
- name: string;
390305
- description?: string | undefined;
390306
- };
390307
- }[];
390308
- } | {
390309
- type: "ElementPropertyValuesEdit";
390310
- output: {
390311
- success: true;
390312
- };
390313
- }>;
390314
- updateDocPage(dsId: string, vId: string, input: DTOUpdateDocumentationPageInputV2): Promise<{
390315
- type: "DocumentationGroupCreate";
390316
- output: {
390317
- success: true;
390318
- };
390319
- } | {
390320
- type: "DocumentationTabCreate";
390321
- output: {
390322
- success: true;
390323
- };
390324
- } | {
390325
- type: "DocumentationGroupUpdate";
390326
- output: {
390327
- success: true;
390328
- };
390329
- } | {
390330
- type: "DocumentationGroupMove";
390331
- output: {
390332
- success: true;
390333
- };
390334
- } | {
390335
- type: "DocumentationGroupDuplicate";
390336
- output: {
390337
- success: true;
390338
- };
390339
- } | {
390340
- type: "DocumentationGroupDelete";
390341
- output: {
390342
- success: true;
390343
- };
390344
- } | {
390345
- type: "DocumentationTabGroupDelete";
390346
- output: {
390347
- success: true;
390348
- };
390349
- } | {
390350
- type: "DocumentationPageCreate";
390351
- output: {
390352
- success: true;
390353
- };
390354
- } | {
390355
- type: "DocumentationPageUpdate";
390356
- output: {
390357
- success: true;
390358
- };
390359
- } | {
390360
- type: "DocumentationPageUpdateDocument";
390361
- output: {
390362
- success: true;
390363
- };
390364
- } | {
390365
- type: "DocumentationPageMove";
390366
- output: {
390367
- success: true;
390368
- };
390369
- } | {
390370
- type: "DocumentationPageDuplicate";
390371
- output: {
390372
- success: true;
390373
- };
390374
- } | {
390375
- type: "DocumentationPageDelete";
390376
- output: {
390377
- success: true;
390378
- };
390379
- } | {
390380
- type: "DocumentationPageRestore";
390381
- output: {
390382
- success: true;
390383
- };
390384
- } | {
390385
- type: "DocumentationGroupRestore";
390386
- output: {
390387
- success: true;
390388
- };
390389
- } | {
390390
- type: "DocumentationPageApprovalStateChange";
390391
- output: {
390392
- success: true;
390393
- };
390394
- } | {
390395
- type: "FigmaNodeRender";
390396
- figmaNodes: {
390397
- data: {
390398
- assetId: string;
390399
- assetScale: number;
390400
- assetUrl: string;
390401
- figmaNodeId: string;
390402
- isValid: boolean;
390403
- assetFormat: "Png" | "Svg";
390404
- assetWidth?: number | undefined;
390405
- assetHeight?: number | undefined;
390406
- };
390407
- id: string;
390408
- createdAt: Date;
390409
- updatedAt: Date;
390410
- persistentId: string;
390411
- designSystemVersionId: string;
390412
- origin: {
390413
- sourceId: string;
390414
- fileId?: string | undefined;
390415
- parentName?: string | undefined;
390416
- };
390417
- meta: {
390418
- name: string;
390419
- description?: string | undefined;
390420
- };
390421
- }[];
390422
391357
  } | {
390423
391358
  type: "FigmaNodeRenderAsync";
390424
391359
  figmaNodes: {
@@ -390462,7 +391397,7 @@ declare class ElementsActionEndpoint {
390462
391397
  success: true;
390463
391398
  };
390464
391399
  }>;
390465
- updateDocPageDocument(dsId: string, vId: string, input: DTOUpdateDocumentationPageDocumentInputV2): Promise<{
391400
+ moveDocGroup(dsId: string, vId: string, input: DTOMoveDocumentationGroupInput): Promise<{
390466
391401
  type: "DocumentationGroupCreate";
390467
391402
  output: {
390468
391403
  success: true;
@@ -390542,34 +391477,6 @@ declare class ElementsActionEndpoint {
390542
391477
  output: {
390543
391478
  success: true;
390544
391479
  };
390545
- } | {
390546
- type: "FigmaNodeRender";
390547
- figmaNodes: {
390548
- data: {
390549
- assetId: string;
390550
- assetScale: number;
390551
- assetUrl: string;
390552
- figmaNodeId: string;
390553
- isValid: boolean;
390554
- assetFormat: "Png" | "Svg";
390555
- assetWidth?: number | undefined;
390556
- assetHeight?: number | undefined;
390557
- };
390558
- id: string;
390559
- createdAt: Date;
390560
- updatedAt: Date;
390561
- persistentId: string;
390562
- designSystemVersionId: string;
390563
- origin: {
390564
- sourceId: string;
390565
- fileId?: string | undefined;
390566
- parentName?: string | undefined;
390567
- };
390568
- meta: {
390569
- name: string;
390570
- description?: string | undefined;
390571
- };
390572
- }[];
390573
391480
  } | {
390574
391481
  type: "FigmaNodeRenderAsync";
390575
391482
  figmaNodes: {
@@ -390613,7 +391520,7 @@ declare class ElementsActionEndpoint {
390613
391520
  success: true;
390614
391521
  };
390615
391522
  }>;
390616
- updateDocGroup(dsId: string, vId: string, input: DTOUpdateDocumentationGroupInput): Promise<{
391523
+ updateDocPage(dsId: string, vId: string, input: DTOUpdateDocumentationPageInputV2): Promise<{
390617
391524
  type: "DocumentationGroupCreate";
390618
391525
  output: {
390619
391526
  success: true;
@@ -390693,34 +391600,6 @@ declare class ElementsActionEndpoint {
390693
391600
  output: {
390694
391601
  success: true;
390695
391602
  };
390696
- } | {
390697
- type: "FigmaNodeRender";
390698
- figmaNodes: {
390699
- data: {
390700
- assetId: string;
390701
- assetScale: number;
390702
- assetUrl: string;
390703
- figmaNodeId: string;
390704
- isValid: boolean;
390705
- assetFormat: "Png" | "Svg";
390706
- assetWidth?: number | undefined;
390707
- assetHeight?: number | undefined;
390708
- };
390709
- id: string;
390710
- createdAt: Date;
390711
- updatedAt: Date;
390712
- persistentId: string;
390713
- designSystemVersionId: string;
390714
- origin: {
390715
- sourceId: string;
390716
- fileId?: string | undefined;
390717
- parentName?: string | undefined;
390718
- };
390719
- meta: {
390720
- name: string;
390721
- description?: string | undefined;
390722
- };
390723
- }[];
390724
391603
  } | {
390725
391604
  type: "FigmaNodeRenderAsync";
390726
391605
  figmaNodes: {
@@ -390764,7 +391643,7 @@ declare class ElementsActionEndpoint {
390764
391643
  success: true;
390765
391644
  };
390766
391645
  }>;
390767
- createDocTab(dsId: string, vId: string, input: DTOCreateDocumentationTabInput): Promise<{
391646
+ updateDocPageDocument(dsId: string, vId: string, input: DTOUpdateDocumentationPageDocumentInputV2): Promise<{
390768
391647
  type: "DocumentationGroupCreate";
390769
391648
  output: {
390770
391649
  success: true;
@@ -390844,34 +391723,6 @@ declare class ElementsActionEndpoint {
390844
391723
  output: {
390845
391724
  success: true;
390846
391725
  };
390847
- } | {
390848
- type: "FigmaNodeRender";
390849
- figmaNodes: {
390850
- data: {
390851
- assetId: string;
390852
- assetScale: number;
390853
- assetUrl: string;
390854
- figmaNodeId: string;
390855
- isValid: boolean;
390856
- assetFormat: "Png" | "Svg";
390857
- assetWidth?: number | undefined;
390858
- assetHeight?: number | undefined;
390859
- };
390860
- id: string;
390861
- createdAt: Date;
390862
- updatedAt: Date;
390863
- persistentId: string;
390864
- designSystemVersionId: string;
390865
- origin: {
390866
- sourceId: string;
390867
- fileId?: string | undefined;
390868
- parentName?: string | undefined;
390869
- };
390870
- meta: {
390871
- name: string;
390872
- description?: string | undefined;
390873
- };
390874
- }[];
390875
391726
  } | {
390876
391727
  type: "FigmaNodeRenderAsync";
390877
391728
  figmaNodes: {
@@ -390915,7 +391766,7 @@ declare class ElementsActionEndpoint {
390915
391766
  success: true;
390916
391767
  };
390917
391768
  }>;
390918
- renderNodes(dsId: string, vId: string, input: DTOFigmaNodeRenderIdInput[]): Promise<{
391769
+ updateDocGroup(dsId: string, vId: string, input: DTOUpdateDocumentationGroupInput): Promise<{
390919
391770
  type: "DocumentationGroupCreate";
390920
391771
  output: {
390921
391772
  success: true;
@@ -390996,17 +391847,26 @@ declare class ElementsActionEndpoint {
390996
391847
  success: true;
390997
391848
  };
390998
391849
  } | {
390999
- type: "FigmaNodeRender";
391850
+ type: "FigmaNodeRenderAsync";
391000
391851
  figmaNodes: {
391001
391852
  data: {
391002
- assetId: string;
391003
- assetScale: number;
391004
- assetUrl: string;
391005
- figmaNodeId: string;
391006
- isValid: boolean;
391007
- assetFormat: "Png" | "Svg";
391008
- assetWidth?: number | undefined;
391009
- 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;
391010
391870
  };
391011
391871
  id: string;
391012
391872
  createdAt: Date;
@@ -391023,6 +391883,92 @@ declare class ElementsActionEndpoint {
391023
391883
  description?: string | undefined;
391024
391884
  };
391025
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
+ };
391026
391972
  } | {
391027
391973
  type: "FigmaNodeRenderAsync";
391028
391974
  figmaNodes: {
@@ -391146,34 +392092,6 @@ declare class ElementsActionEndpoint {
391146
392092
  output: {
391147
392093
  success: true;
391148
392094
  };
391149
- } | {
391150
- type: "FigmaNodeRender";
391151
- figmaNodes: {
391152
- data: {
391153
- assetId: string;
391154
- assetScale: number;
391155
- assetUrl: string;
391156
- figmaNodeId: string;
391157
- isValid: boolean;
391158
- assetFormat: "Png" | "Svg";
391159
- assetWidth?: number | undefined;
391160
- assetHeight?: number | undefined;
391161
- };
391162
- id: string;
391163
- createdAt: Date;
391164
- updatedAt: Date;
391165
- persistentId: string;
391166
- designSystemVersionId: string;
391167
- origin: {
391168
- sourceId: string;
391169
- fileId?: string | undefined;
391170
- parentName?: string | undefined;
391171
- };
391172
- meta: {
391173
- name: string;
391174
- description?: string | undefined;
391175
- };
391176
- }[];
391177
392095
  } | {
391178
392096
  type: "FigmaNodeRenderAsync";
391179
392097
  figmaNodes: {
@@ -391297,34 +392215,6 @@ declare class ElementsActionEndpoint {
391297
392215
  output: {
391298
392216
  success: true;
391299
392217
  };
391300
- } | {
391301
- type: "FigmaNodeRender";
391302
- figmaNodes: {
391303
- data: {
391304
- assetId: string;
391305
- assetScale: number;
391306
- assetUrl: string;
391307
- figmaNodeId: string;
391308
- isValid: boolean;
391309
- assetFormat: "Png" | "Svg";
391310
- assetWidth?: number | undefined;
391311
- assetHeight?: number | undefined;
391312
- };
391313
- id: string;
391314
- createdAt: Date;
391315
- updatedAt: Date;
391316
- persistentId: string;
391317
- designSystemVersionId: string;
391318
- origin: {
391319
- sourceId: string;
391320
- fileId?: string | undefined;
391321
- parentName?: string | undefined;
391322
- };
391323
- meta: {
391324
- name: string;
391325
- description?: string | undefined;
391326
- };
391327
- }[];
391328
392218
  } | {
391329
392219
  type: "FigmaNodeRenderAsync";
391330
392220
  figmaNodes: {
@@ -409221,4 +410111,4 @@ declare function isValidRedirectPath(path: string): {
409221
410111
  reason: ValidationErrorReason | undefined;
409222
410112
  };
409223
410113
 
409224
- 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 };