@supernova-studio/client 1.87.3 → 1.87.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.mts CHANGED
@@ -639,6 +639,39 @@ declare const PageBlockDefinitionProperty: z.ZodObject<{
639
639
  }>;
640
640
  type PageBlockDefinitionProperty = z.infer<typeof PageBlockDefinitionProperty>;
641
641
 
642
+ declare const DocumentationConfiguration: z.ZodObject<{
643
+ designSystemVersionId: z.ZodString;
644
+ createdAt: z.ZodDate;
645
+ updatedAt: z.ZodDate;
646
+ isTabbedLayoutEnabled: z.ZodBoolean;
647
+ storybookEmbedErrorMessage: z.ZodOptional<z.ZodString>;
648
+ renderCodePackageJson: z.ZodOptional<z.ZodString>;
649
+ selectedBrandPersistentId: z.ZodOptional<z.ZodString>;
650
+ serveDefaultVersionOnly: z.ZodBoolean;
651
+ isPublic: z.ZodBoolean;
652
+ }, "strip", z.ZodTypeAny, {
653
+ createdAt: Date;
654
+ updatedAt: Date;
655
+ designSystemVersionId: string;
656
+ isTabbedLayoutEnabled: boolean;
657
+ serveDefaultVersionOnly: boolean;
658
+ isPublic: boolean;
659
+ storybookEmbedErrorMessage?: string | undefined;
660
+ renderCodePackageJson?: string | undefined;
661
+ selectedBrandPersistentId?: string | undefined;
662
+ }, {
663
+ createdAt: Date;
664
+ updatedAt: Date;
665
+ designSystemVersionId: string;
666
+ isTabbedLayoutEnabled: boolean;
667
+ serveDefaultVersionOnly: boolean;
668
+ isPublic: boolean;
669
+ storybookEmbedErrorMessage?: string | undefined;
670
+ renderCodePackageJson?: string | undefined;
671
+ selectedBrandPersistentId?: string | undefined;
672
+ }>;
673
+ type DocumentationConfiguration = z.infer<typeof DocumentationConfiguration>;
674
+
642
675
  /**
643
676
  * Snapshot of a documentation page.
644
677
  *
@@ -68847,7 +68880,7 @@ declare const DTOForgeProjectFeatureSandboxUpdated: z$1.ZodObject<{
68847
68880
  parentMessageId: z$1.ZodOptional<z$1.ZodString>;
68848
68881
  currentIterationId: z$1.ZodString;
68849
68882
  featureId: z$1.ZodString;
68850
- expiresAt: z$1.ZodOptional<z$1.ZodString>;
68883
+ expiresAt: z$1.ZodString;
68851
68884
  error: z$1.ZodOptional<z$1.ZodObject<{
68852
68885
  stage: z$1.ZodEnum<["PackageInstall", "HealthCheck", "Build", "Unknown"]>;
68853
68886
  errorDescription: z$1.ZodString;
@@ -68861,24 +68894,24 @@ declare const DTOForgeProjectFeatureSandboxUpdated: z$1.ZodObject<{
68861
68894
  }, "strip", z$1.ZodTypeAny, {
68862
68895
  id: string;
68863
68896
  url: string;
68897
+ expiresAt: string;
68864
68898
  featureId: string;
68865
68899
  currentIterationId: string;
68866
68900
  error?: {
68867
68901
  stage: "Build" | "PackageInstall" | "Unknown" | "HealthCheck";
68868
68902
  errorDescription: string;
68869
68903
  } | undefined;
68870
- expiresAt?: string | undefined;
68871
68904
  parentMessageId?: string | undefined;
68872
68905
  }, {
68873
68906
  id: string;
68874
68907
  url: string;
68908
+ expiresAt: string;
68875
68909
  featureId: string;
68876
68910
  currentIterationId: string;
68877
68911
  error?: {
68878
68912
  stage: "Build" | "PackageInstall" | "Unknown" | "HealthCheck";
68879
68913
  errorDescription: string;
68880
68914
  } | undefined;
68881
- expiresAt?: string | undefined;
68882
68915
  parentMessageId?: string | undefined;
68883
68916
  }>;
68884
68917
  }, "strip", z$1.ZodTypeAny, {
@@ -68886,13 +68919,13 @@ declare const DTOForgeProjectFeatureSandboxUpdated: z$1.ZodObject<{
68886
68919
  data: {
68887
68920
  id: string;
68888
68921
  url: string;
68922
+ expiresAt: string;
68889
68923
  featureId: string;
68890
68924
  currentIterationId: string;
68891
68925
  error?: {
68892
68926
  stage: "Build" | "PackageInstall" | "Unknown" | "HealthCheck";
68893
68927
  errorDescription: string;
68894
68928
  } | undefined;
68895
- expiresAt?: string | undefined;
68896
68929
  parentMessageId?: string | undefined;
68897
68930
  };
68898
68931
  }, {
@@ -68900,13 +68933,13 @@ declare const DTOForgeProjectFeatureSandboxUpdated: z$1.ZodObject<{
68900
68933
  data: {
68901
68934
  id: string;
68902
68935
  url: string;
68936
+ expiresAt: string;
68903
68937
  featureId: string;
68904
68938
  currentIterationId: string;
68905
68939
  error?: {
68906
68940
  stage: "Build" | "PackageInstall" | "Unknown" | "HealthCheck";
68907
68941
  errorDescription: string;
68908
68942
  } | undefined;
68909
- expiresAt?: string | undefined;
68910
68943
  parentMessageId?: string | undefined;
68911
68944
  };
68912
68945
  }>;
@@ -69496,7 +69529,7 @@ declare const DTOForgeProjectRoomEvent: z$1.ZodDiscriminatedUnion<"type", [z$1.Z
69496
69529
  parentMessageId: z$1.ZodOptional<z$1.ZodString>;
69497
69530
  currentIterationId: z$1.ZodString;
69498
69531
  featureId: z$1.ZodString;
69499
- expiresAt: z$1.ZodOptional<z$1.ZodString>;
69532
+ expiresAt: z$1.ZodString;
69500
69533
  error: z$1.ZodOptional<z$1.ZodObject<{
69501
69534
  stage: z$1.ZodEnum<["PackageInstall", "HealthCheck", "Build", "Unknown"]>;
69502
69535
  errorDescription: z$1.ZodString;
@@ -69510,24 +69543,24 @@ declare const DTOForgeProjectRoomEvent: z$1.ZodDiscriminatedUnion<"type", [z$1.Z
69510
69543
  }, "strip", z$1.ZodTypeAny, {
69511
69544
  id: string;
69512
69545
  url: string;
69546
+ expiresAt: string;
69513
69547
  featureId: string;
69514
69548
  currentIterationId: string;
69515
69549
  error?: {
69516
69550
  stage: "Build" | "PackageInstall" | "Unknown" | "HealthCheck";
69517
69551
  errorDescription: string;
69518
69552
  } | undefined;
69519
- expiresAt?: string | undefined;
69520
69553
  parentMessageId?: string | undefined;
69521
69554
  }, {
69522
69555
  id: string;
69523
69556
  url: string;
69557
+ expiresAt: string;
69524
69558
  featureId: string;
69525
69559
  currentIterationId: string;
69526
69560
  error?: {
69527
69561
  stage: "Build" | "PackageInstall" | "Unknown" | "HealthCheck";
69528
69562
  errorDescription: string;
69529
69563
  } | undefined;
69530
- expiresAt?: string | undefined;
69531
69564
  parentMessageId?: string | undefined;
69532
69565
  }>;
69533
69566
  }, "strip", z$1.ZodTypeAny, {
@@ -69535,13 +69568,13 @@ declare const DTOForgeProjectRoomEvent: z$1.ZodDiscriminatedUnion<"type", [z$1.Z
69535
69568
  data: {
69536
69569
  id: string;
69537
69570
  url: string;
69571
+ expiresAt: string;
69538
69572
  featureId: string;
69539
69573
  currentIterationId: string;
69540
69574
  error?: {
69541
69575
  stage: "Build" | "PackageInstall" | "Unknown" | "HealthCheck";
69542
69576
  errorDescription: string;
69543
69577
  } | undefined;
69544
- expiresAt?: string | undefined;
69545
69578
  parentMessageId?: string | undefined;
69546
69579
  };
69547
69580
  }, {
@@ -69549,13 +69582,13 @@ declare const DTOForgeProjectRoomEvent: z$1.ZodDiscriminatedUnion<"type", [z$1.Z
69549
69582
  data: {
69550
69583
  id: string;
69551
69584
  url: string;
69585
+ expiresAt: string;
69552
69586
  featureId: string;
69553
69587
  currentIterationId: string;
69554
69588
  error?: {
69555
69589
  stage: "Build" | "PackageInstall" | "Unknown" | "HealthCheck";
69556
69590
  errorDescription: string;
69557
69591
  } | undefined;
69558
- expiresAt?: string | undefined;
69559
69592
  parentMessageId?: string | undefined;
69560
69593
  };
69561
69594
  }>, z$1.ZodObject<{
@@ -129699,8 +129732,8 @@ declare const DTOExportJobsListFilter: z.ZodObject<{
129699
129732
  designSystemVersionId?: string | undefined;
129700
129733
  brandId?: string | undefined;
129701
129734
  createdByUserId?: string | undefined;
129702
- themeId?: string | undefined;
129703
129735
  exporterId?: string | undefined;
129736
+ themeId?: string | undefined;
129704
129737
  scheduleId?: string | undefined;
129705
129738
  destinations?: ("documentation" | "github" | "azure" | "gitlab" | "bitbucket" | "webhookUrl" | "s3")[] | undefined;
129706
129739
  docsEnvironment?: "Live" | "Preview" | undefined;
@@ -129710,8 +129743,8 @@ declare const DTOExportJobsListFilter: z.ZodObject<{
129710
129743
  designSystemVersionId?: string | undefined;
129711
129744
  brandId?: string | undefined;
129712
129745
  createdByUserId?: string | undefined;
129713
- themeId?: string | undefined;
129714
129746
  exporterId?: string | undefined;
129747
+ themeId?: string | undefined;
129715
129748
  scheduleId?: string | undefined;
129716
129749
  destinations?: string | undefined;
129717
129750
  docsEnvironment?: "Live" | "Preview" | undefined;
@@ -133420,6 +133453,18 @@ declare const DTOExportJobCreateInput: z.ZodObject<{
133420
133453
  }>;
133421
133454
  type DTOExportJobCreateInput = z.infer<typeof DTOExportJobCreateInput>;
133422
133455
 
133456
+ declare const DTODesignSystemPipelineListQuery: z.ZodObject<{
133457
+ exporterId: z.ZodOptional<z.ZodString>;
133458
+ } & {
133459
+ latestJobsLimit: z.ZodOptional<z.ZodNumber>;
133460
+ }, "strip", z.ZodTypeAny, {
133461
+ exporterId?: string | undefined;
133462
+ latestJobsLimit?: number | undefined;
133463
+ }, {
133464
+ exporterId?: string | undefined;
133465
+ latestJobsLimit?: number | undefined;
133466
+ }>;
133467
+ type DTODesignSystemPipelineListQuery = z.infer<typeof DTODesignSystemPipelineListQuery>;
133423
133468
  declare const DTOPipelineListQuery: z.ZodObject<{
133424
133469
  designSystemId: z.ZodOptional<z.ZodString>;
133425
133470
  exporterId: z.ZodOptional<z.ZodString>;
@@ -139857,6 +139902,32 @@ declare const DTOPipelineListResponse: z.ZodObject<{
139857
139902
  }[];
139858
139903
  }>;
139859
139904
  type DTOPipelineListResponse = z.infer<typeof DTOPipelineListResponse>;
139905
+ declare const DTOPipelineExporterQuery: z.ZodObject<{
139906
+ exporterId: z.ZodOptional<z.ZodString>;
139907
+ }, "strip", z.ZodTypeAny, {
139908
+ exporterId?: string | undefined;
139909
+ }, {
139910
+ exporterId?: string | undefined;
139911
+ }>;
139912
+ type DTOPipelineExporterQuery = z.infer<typeof DTOPipelineExporterQuery>;
139913
+ declare const DTOWorkspaceStats: z.ZodObject<{
139914
+ pipelines: z.ZodObject<{
139915
+ totalCount: z.ZodNumber;
139916
+ }, "strip", z.ZodTypeAny, {
139917
+ totalCount: number;
139918
+ }, {
139919
+ totalCount: number;
139920
+ }>;
139921
+ }, "strip", z.ZodTypeAny, {
139922
+ pipelines: {
139923
+ totalCount: number;
139924
+ };
139925
+ }, {
139926
+ pipelines: {
139927
+ totalCount: number;
139928
+ };
139929
+ }>;
139930
+ type DTOWorkspaceStats = z.infer<typeof DTOWorkspaceStats>;
139860
139931
 
139861
139932
  declare const DTOAssetRenderConfiguration: z.ZodObject<{
139862
139933
  prefix: z.ZodOptional<z.ZodString>;
@@ -143340,7 +143411,7 @@ declare const DTOFeatureSandbox: z$1.ZodObject<{
143340
143411
  parentMessageId: z$1.ZodOptional<z$1.ZodString>;
143341
143412
  currentIterationId: z$1.ZodString;
143342
143413
  featureId: z$1.ZodString;
143343
- expiresAt: z$1.ZodOptional<z$1.ZodString>;
143414
+ expiresAt: z$1.ZodString;
143344
143415
  error: z$1.ZodOptional<z$1.ZodObject<{
143345
143416
  /** At what stage the error has occured */
143346
143417
  stage: z$1.ZodEnum<["PackageInstall", "HealthCheck", "Build", "Unknown"]>;
@@ -143356,24 +143427,24 @@ declare const DTOFeatureSandbox: z$1.ZodObject<{
143356
143427
  }, "strip", z$1.ZodTypeAny, {
143357
143428
  id: string;
143358
143429
  url: string;
143430
+ expiresAt: string;
143359
143431
  featureId: string;
143360
143432
  currentIterationId: string;
143361
143433
  error?: {
143362
143434
  stage: "Build" | "PackageInstall" | "Unknown" | "HealthCheck";
143363
143435
  errorDescription: string;
143364
143436
  } | undefined;
143365
- expiresAt?: string | undefined;
143366
143437
  parentMessageId?: string | undefined;
143367
143438
  }, {
143368
143439
  id: string;
143369
143440
  url: string;
143441
+ expiresAt: string;
143370
143442
  featureId: string;
143371
143443
  currentIterationId: string;
143372
143444
  error?: {
143373
143445
  stage: "Build" | "PackageInstall" | "Unknown" | "HealthCheck";
143374
143446
  errorDescription: string;
143375
143447
  } | undefined;
143376
- expiresAt?: string | undefined;
143377
143448
  parentMessageId?: string | undefined;
143378
143449
  }>;
143379
143450
  type DTOFeatureSandbox = z$1.infer<typeof DTOFeatureSandbox>;
@@ -143383,7 +143454,7 @@ declare const DTOCreateFeatureSandbox: z$1.ZodObject<{
143383
143454
  parentMessageId: z$1.ZodOptional<z$1.ZodString>;
143384
143455
  currentIterationId: z$1.ZodString;
143385
143456
  featureId: z$1.ZodString;
143386
- expiresAt: z$1.ZodOptional<z$1.ZodString>;
143457
+ expiresAt: z$1.ZodString;
143387
143458
  error: z$1.ZodOptional<z$1.ZodObject<{
143388
143459
  /** At what stage the error has occured */
143389
143460
  stage: z$1.ZodEnum<["PackageInstall", "HealthCheck", "Build", "Unknown"]>;
@@ -143396,38 +143467,43 @@ declare const DTOCreateFeatureSandbox: z$1.ZodObject<{
143396
143467
  stage: "Build" | "PackageInstall" | "Unknown" | "HealthCheck";
143397
143468
  errorDescription: string;
143398
143469
  }>>;
143470
+ } & {
143471
+ isSystemSandbox: z$1.ZodOptional<z$1.ZodBoolean>;
143399
143472
  }, "strip", z$1.ZodTypeAny, {
143400
143473
  id: string;
143401
143474
  url: string;
143475
+ expiresAt: string;
143402
143476
  featureId: string;
143403
143477
  currentIterationId: string;
143404
143478
  error?: {
143405
143479
  stage: "Build" | "PackageInstall" | "Unknown" | "HealthCheck";
143406
143480
  errorDescription: string;
143407
143481
  } | undefined;
143408
- expiresAt?: string | undefined;
143409
143482
  parentMessageId?: string | undefined;
143483
+ isSystemSandbox?: boolean | undefined;
143410
143484
  }, {
143411
143485
  id: string;
143412
143486
  url: string;
143487
+ expiresAt: string;
143413
143488
  featureId: string;
143414
143489
  currentIterationId: string;
143415
143490
  error?: {
143416
143491
  stage: "Build" | "PackageInstall" | "Unknown" | "HealthCheck";
143417
143492
  errorDescription: string;
143418
143493
  } | undefined;
143419
- expiresAt?: string | undefined;
143420
143494
  parentMessageId?: string | undefined;
143495
+ isSystemSandbox?: boolean | undefined;
143421
143496
  }>;
143422
143497
  type DTOCreateFeatureSandbox = z$1.infer<typeof DTOCreateFeatureSandbox>;
143423
143498
  declare const DTOUpdateFeatureSandbox: z$1.ZodObject<{
143424
143499
  url: z$1.ZodOptional<z$1.ZodString>;
143425
143500
  currentIterationId: z$1.ZodOptional<z$1.ZodString>;
143426
143501
  featureId: z$1.ZodOptional<z$1.ZodString>;
143502
+ isSystemSandbox: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodBoolean>>;
143427
143503
  } & {
143428
143504
  id: z$1.ZodString;
143429
143505
  parentMessageId: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
143430
- expiresAt: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
143506
+ expiresAt: z$1.ZodOptional<z$1.ZodString>;
143431
143507
  error: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodObject<{
143432
143508
  /** At what stage the error has occured */
143433
143509
  stage: z$1.ZodEnum<["PackageInstall", "HealthCheck", "Build", "Unknown"]>;
@@ -143447,10 +143523,11 @@ declare const DTOUpdateFeatureSandbox: z$1.ZodObject<{
143447
143523
  errorDescription: string;
143448
143524
  } | null | undefined;
143449
143525
  url?: string | undefined;
143450
- expiresAt?: string | null | undefined;
143526
+ expiresAt?: string | undefined;
143451
143527
  featureId?: string | undefined;
143452
143528
  parentMessageId?: string | null | undefined;
143453
143529
  currentIterationId?: string | undefined;
143530
+ isSystemSandbox?: boolean | undefined;
143454
143531
  }, {
143455
143532
  id: string;
143456
143533
  error?: {
@@ -143458,10 +143535,11 @@ declare const DTOUpdateFeatureSandbox: z$1.ZodObject<{
143458
143535
  errorDescription: string;
143459
143536
  } | null | undefined;
143460
143537
  url?: string | undefined;
143461
- expiresAt?: string | null | undefined;
143538
+ expiresAt?: string | undefined;
143462
143539
  featureId?: string | undefined;
143463
143540
  parentMessageId?: string | null | undefined;
143464
143541
  currentIterationId?: string | undefined;
143542
+ isSystemSandbox?: boolean | undefined;
143465
143543
  }>;
143466
143544
  type DTOUpdateFeatureSandbox = z$1.infer<typeof DTOUpdateFeatureSandbox>;
143467
143545
  declare const DTOFeatureSandboxListResponse: z$1.ZodObject<{
@@ -143471,7 +143549,7 @@ declare const DTOFeatureSandboxListResponse: z$1.ZodObject<{
143471
143549
  parentMessageId: z$1.ZodOptional<z$1.ZodString>;
143472
143550
  currentIterationId: z$1.ZodString;
143473
143551
  featureId: z$1.ZodString;
143474
- expiresAt: z$1.ZodOptional<z$1.ZodString>;
143552
+ expiresAt: z$1.ZodString;
143475
143553
  error: z$1.ZodOptional<z$1.ZodObject<{
143476
143554
  /** At what stage the error has occured */
143477
143555
  stage: z$1.ZodEnum<["PackageInstall", "HealthCheck", "Build", "Unknown"]>;
@@ -143487,50 +143565,50 @@ declare const DTOFeatureSandboxListResponse: z$1.ZodObject<{
143487
143565
  }, "strip", z$1.ZodTypeAny, {
143488
143566
  id: string;
143489
143567
  url: string;
143568
+ expiresAt: string;
143490
143569
  featureId: string;
143491
143570
  currentIterationId: string;
143492
143571
  error?: {
143493
143572
  stage: "Build" | "PackageInstall" | "Unknown" | "HealthCheck";
143494
143573
  errorDescription: string;
143495
143574
  } | undefined;
143496
- expiresAt?: string | undefined;
143497
143575
  parentMessageId?: string | undefined;
143498
143576
  }, {
143499
143577
  id: string;
143500
143578
  url: string;
143579
+ expiresAt: string;
143501
143580
  featureId: string;
143502
143581
  currentIterationId: string;
143503
143582
  error?: {
143504
143583
  stage: "Build" | "PackageInstall" | "Unknown" | "HealthCheck";
143505
143584
  errorDescription: string;
143506
143585
  } | undefined;
143507
- expiresAt?: string | undefined;
143508
143586
  parentMessageId?: string | undefined;
143509
143587
  }>, "many">;
143510
143588
  }, "strip", z$1.ZodTypeAny, {
143511
143589
  sandboxes: {
143512
143590
  id: string;
143513
143591
  url: string;
143592
+ expiresAt: string;
143514
143593
  featureId: string;
143515
143594
  currentIterationId: string;
143516
143595
  error?: {
143517
143596
  stage: "Build" | "PackageInstall" | "Unknown" | "HealthCheck";
143518
143597
  errorDescription: string;
143519
143598
  } | undefined;
143520
- expiresAt?: string | undefined;
143521
143599
  parentMessageId?: string | undefined;
143522
143600
  }[];
143523
143601
  }, {
143524
143602
  sandboxes: {
143525
143603
  id: string;
143526
143604
  url: string;
143605
+ expiresAt: string;
143527
143606
  featureId: string;
143528
143607
  currentIterationId: string;
143529
143608
  error?: {
143530
143609
  stage: "Build" | "PackageInstall" | "Unknown" | "HealthCheck";
143531
143610
  errorDescription: string;
143532
143611
  } | undefined;
143533
- expiresAt?: string | undefined;
143534
143612
  parentMessageId?: string | undefined;
143535
143613
  }[];
143536
143614
  }>;
@@ -143566,7 +143644,7 @@ declare const DTOKeepAliveFeatureSandboxResponse: z$1.ZodObject<{
143566
143644
  parentMessageId: z$1.ZodOptional<z$1.ZodString>;
143567
143645
  currentIterationId: z$1.ZodString;
143568
143646
  featureId: z$1.ZodString;
143569
- expiresAt: z$1.ZodOptional<z$1.ZodString>;
143647
+ expiresAt: z$1.ZodString;
143570
143648
  error: z$1.ZodOptional<z$1.ZodObject<{
143571
143649
  /** At what stage the error has occured */
143572
143650
  stage: z$1.ZodEnum<["PackageInstall", "HealthCheck", "Build", "Unknown"]>;
@@ -143582,50 +143660,50 @@ declare const DTOKeepAliveFeatureSandboxResponse: z$1.ZodObject<{
143582
143660
  }, "strip", z$1.ZodTypeAny, {
143583
143661
  id: string;
143584
143662
  url: string;
143663
+ expiresAt: string;
143585
143664
  featureId: string;
143586
143665
  currentIterationId: string;
143587
143666
  error?: {
143588
143667
  stage: "Build" | "PackageInstall" | "Unknown" | "HealthCheck";
143589
143668
  errorDescription: string;
143590
143669
  } | undefined;
143591
- expiresAt?: string | undefined;
143592
143670
  parentMessageId?: string | undefined;
143593
143671
  }, {
143594
143672
  id: string;
143595
143673
  url: string;
143674
+ expiresAt: string;
143596
143675
  featureId: string;
143597
143676
  currentIterationId: string;
143598
143677
  error?: {
143599
143678
  stage: "Build" | "PackageInstall" | "Unknown" | "HealthCheck";
143600
143679
  errorDescription: string;
143601
143680
  } | undefined;
143602
- expiresAt?: string | undefined;
143603
143681
  parentMessageId?: string | undefined;
143604
143682
  }>;
143605
143683
  }, "strip", z$1.ZodTypeAny, {
143606
143684
  sandbox: {
143607
143685
  id: string;
143608
143686
  url: string;
143687
+ expiresAt: string;
143609
143688
  featureId: string;
143610
143689
  currentIterationId: string;
143611
143690
  error?: {
143612
143691
  stage: "Build" | "PackageInstall" | "Unknown" | "HealthCheck";
143613
143692
  errorDescription: string;
143614
143693
  } | undefined;
143615
- expiresAt?: string | undefined;
143616
143694
  parentMessageId?: string | undefined;
143617
143695
  };
143618
143696
  }, {
143619
143697
  sandbox: {
143620
143698
  id: string;
143621
143699
  url: string;
143700
+ expiresAt: string;
143622
143701
  featureId: string;
143623
143702
  currentIterationId: string;
143624
143703
  error?: {
143625
143704
  stage: "Build" | "PackageInstall" | "Unknown" | "HealthCheck";
143626
143705
  errorDescription: string;
143627
143706
  } | undefined;
143628
- expiresAt?: string | undefined;
143629
143707
  parentMessageId?: string | undefined;
143630
143708
  };
143631
143709
  }>;
@@ -382957,6 +383035,8 @@ declare function documentationPageToDTOV2(page: DocsPage$1, groups: DocsPageGrou
382957
383035
  declare function documentationPagesToDTOV2(pages: DocsPage$1[], groups: DocsPageGroup$1[], routingVersion: string, pageLiveblocksRoomIdMap: Map<string, string>): DTODocumentationPageV2[];
382958
383036
  declare function documentationPagesFixedConfigurationToDTOV2(pages: DocsPage$1[], groups: DocsPageGroup$1[], routingVersion: string, pageLiveblocksRoomIdMap: Map<string, string>): DTODocumentationPageV2[];
382959
383037
 
383038
+ declare function documentationConfigurationToDto(configuration: DocumentationConfiguration): DTODocumentationConfiguration;
383039
+
382960
383040
  declare function pipelineToDto(pipeline: Pipeline): DTOPipeline;
382961
383041
 
382962
383042
  declare function gitOrganizationToDto(org: GitOrganization): DTOGitOrganization;
@@ -386097,6 +386177,676 @@ declare const DTOPipelineTriggerBody: z.ZodObject<{
386097
386177
  designSystemVersionId: string;
386098
386178
  }>;
386099
386179
  type DTOPipelineTriggerBody = z.infer<typeof DTOPipelineTriggerBody>;
386180
+ declare const DTODesignSystemPipelineCreateBody: z.ZodObject<{
386181
+ name: z.ZodString;
386182
+ exporterId: z.ZodString;
386183
+ isEnabled: z.ZodBoolean;
386184
+ eventType: z.ZodEnum<["OnVersionReleased", "OnHeadChanged", "OnSourceUpdated", "OnDocumentationPublished", "None"]>;
386185
+ brandPersistentId: z.ZodOptional<z.ZodString>;
386186
+ themePersistentId: z.ZodOptional<z.ZodString>;
386187
+ themePersistentIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
386188
+ exporterPropertyValues: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodNumber, z.ZodBoolean]>, z.ZodString]>, z.ZodArray<z.ZodString, "many">]>, z.ZodRecord<z.ZodString, z.ZodString>]>>>;
386189
+ destination: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["Github", "Gitlab", "Bitbucket", "Azure"]>, z.ZodEnum<["WebhookUrl", "S3", "Documentation"]>]>>;
386190
+ gitQuery: z.ZodObject<{
386191
+ organization: z.ZodOptional<z.ZodString>;
386192
+ project: z.ZodOptional<z.ZodString>;
386193
+ repository: z.ZodOptional<z.ZodString>;
386194
+ branch: z.ZodOptional<z.ZodString>;
386195
+ user: z.ZodOptional<z.ZodString>;
386196
+ }, "strip", z.ZodTypeAny, {
386197
+ organization?: string | undefined;
386198
+ project?: string | undefined;
386199
+ repository?: string | undefined;
386200
+ user?: string | undefined;
386201
+ branch?: string | undefined;
386202
+ }, {
386203
+ organization?: string | undefined;
386204
+ project?: string | undefined;
386205
+ repository?: string | undefined;
386206
+ user?: string | undefined;
386207
+ branch?: string | undefined;
386208
+ }>;
386209
+ destinations: z.ZodObject<{
386210
+ s3: z.ZodOptional<z.ZodNullable<z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>>>;
386211
+ azure: z.ZodOptional<z.ZodNullable<z.ZodObject<{
386212
+ credentialId: z.ZodOptional<z.ZodString>;
386213
+ organizationId: z.ZodString;
386214
+ projectId: z.ZodString;
386215
+ repositoryId: z.ZodString;
386216
+ url: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
386217
+ connectionId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
386218
+ userId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<number, z.ZodTypeDef, number>>>, number | undefined, number | null | undefined>;
386219
+ } & {
386220
+ branch: z.ZodString;
386221
+ relativePath: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
386222
+ purgeDirectory: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<boolean, z.ZodTypeDef, boolean>>>, boolean | undefined, boolean | null | undefined>;
386223
+ commitAuthorName: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
386224
+ commitAuthorEmail: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
386225
+ commitMessage: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
386226
+ pullRequestTitle: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
386227
+ pullRequestDescription: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
386228
+ checkoutNoTags: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<boolean, z.ZodTypeDef, boolean>>>, boolean | undefined, boolean | null | undefined>;
386229
+ checkoutNoBlobs: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<boolean, z.ZodTypeDef, boolean>>>, boolean | undefined, boolean | null | undefined>;
386230
+ checkoutSparse: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<boolean, z.ZodTypeDef, boolean>>>, boolean | undefined, boolean | null | undefined>;
386231
+ }, "strip", z.ZodTypeAny, {
386232
+ projectId: string;
386233
+ branch: string;
386234
+ organizationId: string;
386235
+ repositoryId: string;
386236
+ url?: string | undefined;
386237
+ userId?: number | undefined;
386238
+ relativePath?: string | undefined;
386239
+ purgeDirectory?: boolean | undefined;
386240
+ commitAuthorName?: string | undefined;
386241
+ commitAuthorEmail?: string | undefined;
386242
+ commitMessage?: string | undefined;
386243
+ pullRequestTitle?: string | undefined;
386244
+ pullRequestDescription?: string | undefined;
386245
+ checkoutNoTags?: boolean | undefined;
386246
+ checkoutNoBlobs?: boolean | undefined;
386247
+ checkoutSparse?: boolean | undefined;
386248
+ credentialId?: string | undefined;
386249
+ connectionId?: string | undefined;
386250
+ }, {
386251
+ projectId: string;
386252
+ branch: string;
386253
+ organizationId: string;
386254
+ repositoryId: string;
386255
+ url?: string | null | undefined;
386256
+ userId?: number | null | undefined;
386257
+ relativePath?: string | null | undefined;
386258
+ purgeDirectory?: boolean | null | undefined;
386259
+ commitAuthorName?: string | null | undefined;
386260
+ commitAuthorEmail?: string | null | undefined;
386261
+ commitMessage?: string | null | undefined;
386262
+ pullRequestTitle?: string | null | undefined;
386263
+ pullRequestDescription?: string | null | undefined;
386264
+ checkoutNoTags?: boolean | null | undefined;
386265
+ checkoutNoBlobs?: boolean | null | undefined;
386266
+ checkoutSparse?: boolean | null | undefined;
386267
+ credentialId?: string | undefined;
386268
+ connectionId?: string | null | undefined;
386269
+ }>>>;
386270
+ bitbucket: z.ZodOptional<z.ZodNullable<z.ZodObject<{
386271
+ credentialId: z.ZodOptional<z.ZodString>;
386272
+ workspaceSlug: z.ZodString;
386273
+ projectKey: z.ZodString;
386274
+ repoSlug: z.ZodString;
386275
+ url: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
386276
+ connectionId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
386277
+ userId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<number, z.ZodTypeDef, number>>>, number | undefined, number | null | undefined>;
386278
+ } & {
386279
+ branch: z.ZodString;
386280
+ relativePath: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
386281
+ purgeDirectory: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<boolean, z.ZodTypeDef, boolean>>>, boolean | undefined, boolean | null | undefined>;
386282
+ commitAuthorName: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
386283
+ commitAuthorEmail: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
386284
+ commitMessage: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
386285
+ pullRequestTitle: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
386286
+ pullRequestDescription: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
386287
+ checkoutNoTags: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<boolean, z.ZodTypeDef, boolean>>>, boolean | undefined, boolean | null | undefined>;
386288
+ checkoutNoBlobs: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<boolean, z.ZodTypeDef, boolean>>>, boolean | undefined, boolean | null | undefined>;
386289
+ checkoutSparse: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<boolean, z.ZodTypeDef, boolean>>>, boolean | undefined, boolean | null | undefined>;
386290
+ }, "strip", z.ZodTypeAny, {
386291
+ branch: string;
386292
+ workspaceSlug: string;
386293
+ projectKey: string;
386294
+ repoSlug: string;
386295
+ url?: string | undefined;
386296
+ userId?: number | undefined;
386297
+ relativePath?: string | undefined;
386298
+ purgeDirectory?: boolean | undefined;
386299
+ commitAuthorName?: string | undefined;
386300
+ commitAuthorEmail?: string | undefined;
386301
+ commitMessage?: string | undefined;
386302
+ pullRequestTitle?: string | undefined;
386303
+ pullRequestDescription?: string | undefined;
386304
+ checkoutNoTags?: boolean | undefined;
386305
+ checkoutNoBlobs?: boolean | undefined;
386306
+ checkoutSparse?: boolean | undefined;
386307
+ credentialId?: string | undefined;
386308
+ connectionId?: string | undefined;
386309
+ }, {
386310
+ branch: string;
386311
+ workspaceSlug: string;
386312
+ projectKey: string;
386313
+ repoSlug: string;
386314
+ url?: string | null | undefined;
386315
+ userId?: number | null | undefined;
386316
+ relativePath?: string | null | undefined;
386317
+ purgeDirectory?: boolean | null | undefined;
386318
+ commitAuthorName?: string | null | undefined;
386319
+ commitAuthorEmail?: string | null | undefined;
386320
+ commitMessage?: string | null | undefined;
386321
+ pullRequestTitle?: string | null | undefined;
386322
+ pullRequestDescription?: string | null | undefined;
386323
+ checkoutNoTags?: boolean | null | undefined;
386324
+ checkoutNoBlobs?: boolean | null | undefined;
386325
+ checkoutSparse?: boolean | null | undefined;
386326
+ credentialId?: string | undefined;
386327
+ connectionId?: string | null | undefined;
386328
+ }>>>;
386329
+ github: z.ZodOptional<z.ZodNullable<z.ZodObject<{
386330
+ credentialId: z.ZodOptional<z.ZodString>;
386331
+ url: z.ZodString;
386332
+ connectionId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
386333
+ userId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<number, z.ZodTypeDef, number>>>, number | undefined, number | null | undefined>;
386334
+ } & {
386335
+ branch: z.ZodString;
386336
+ relativePath: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
386337
+ purgeDirectory: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<boolean, z.ZodTypeDef, boolean>>>, boolean | undefined, boolean | null | undefined>;
386338
+ commitAuthorName: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
386339
+ commitAuthorEmail: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
386340
+ commitMessage: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
386341
+ pullRequestTitle: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
386342
+ pullRequestDescription: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
386343
+ checkoutNoTags: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<boolean, z.ZodTypeDef, boolean>>>, boolean | undefined, boolean | null | undefined>;
386344
+ checkoutNoBlobs: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<boolean, z.ZodTypeDef, boolean>>>, boolean | undefined, boolean | null | undefined>;
386345
+ checkoutSparse: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<boolean, z.ZodTypeDef, boolean>>>, boolean | undefined, boolean | null | undefined>;
386346
+ }, "strip", z.ZodTypeAny, {
386347
+ url: string;
386348
+ branch: string;
386349
+ userId?: number | undefined;
386350
+ relativePath?: string | undefined;
386351
+ purgeDirectory?: boolean | undefined;
386352
+ commitAuthorName?: string | undefined;
386353
+ commitAuthorEmail?: string | undefined;
386354
+ commitMessage?: string | undefined;
386355
+ pullRequestTitle?: string | undefined;
386356
+ pullRequestDescription?: string | undefined;
386357
+ checkoutNoTags?: boolean | undefined;
386358
+ checkoutNoBlobs?: boolean | undefined;
386359
+ checkoutSparse?: boolean | undefined;
386360
+ credentialId?: string | undefined;
386361
+ connectionId?: string | undefined;
386362
+ }, {
386363
+ url: string;
386364
+ branch: string;
386365
+ userId?: number | null | undefined;
386366
+ relativePath?: string | null | undefined;
386367
+ purgeDirectory?: boolean | null | undefined;
386368
+ commitAuthorName?: string | null | undefined;
386369
+ commitAuthorEmail?: string | null | undefined;
386370
+ commitMessage?: string | null | undefined;
386371
+ pullRequestTitle?: string | null | undefined;
386372
+ pullRequestDescription?: string | null | undefined;
386373
+ checkoutNoTags?: boolean | null | undefined;
386374
+ checkoutNoBlobs?: boolean | null | undefined;
386375
+ checkoutSparse?: boolean | null | undefined;
386376
+ credentialId?: string | undefined;
386377
+ connectionId?: string | null | undefined;
386378
+ }>>>;
386379
+ gitlab: z.ZodOptional<z.ZodNullable<z.ZodObject<{
386380
+ credentialId: z.ZodOptional<z.ZodString>;
386381
+ projectId: z.ZodString;
386382
+ url: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
386383
+ connectionId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
386384
+ userId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<number, z.ZodTypeDef, number>>>, number | undefined, number | null | undefined>;
386385
+ } & {
386386
+ branch: z.ZodString;
386387
+ relativePath: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
386388
+ purgeDirectory: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<boolean, z.ZodTypeDef, boolean>>>, boolean | undefined, boolean | null | undefined>;
386389
+ commitAuthorName: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
386390
+ commitAuthorEmail: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
386391
+ commitMessage: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
386392
+ pullRequestTitle: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
386393
+ pullRequestDescription: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
386394
+ checkoutNoTags: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<boolean, z.ZodTypeDef, boolean>>>, boolean | undefined, boolean | null | undefined>;
386395
+ checkoutNoBlobs: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<boolean, z.ZodTypeDef, boolean>>>, boolean | undefined, boolean | null | undefined>;
386396
+ checkoutSparse: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<boolean, z.ZodTypeDef, boolean>>>, boolean | undefined, boolean | null | undefined>;
386397
+ }, "strip", z.ZodTypeAny, {
386398
+ projectId: string;
386399
+ branch: string;
386400
+ url?: string | undefined;
386401
+ userId?: number | undefined;
386402
+ relativePath?: string | undefined;
386403
+ purgeDirectory?: boolean | undefined;
386404
+ commitAuthorName?: string | undefined;
386405
+ commitAuthorEmail?: string | undefined;
386406
+ commitMessage?: string | undefined;
386407
+ pullRequestTitle?: string | undefined;
386408
+ pullRequestDescription?: string | undefined;
386409
+ checkoutNoTags?: boolean | undefined;
386410
+ checkoutNoBlobs?: boolean | undefined;
386411
+ checkoutSparse?: boolean | undefined;
386412
+ credentialId?: string | undefined;
386413
+ connectionId?: string | undefined;
386414
+ }, {
386415
+ projectId: string;
386416
+ branch: string;
386417
+ url?: string | null | undefined;
386418
+ userId?: number | null | undefined;
386419
+ relativePath?: string | null | undefined;
386420
+ purgeDirectory?: boolean | null | undefined;
386421
+ commitAuthorName?: string | null | undefined;
386422
+ commitAuthorEmail?: string | null | undefined;
386423
+ commitMessage?: string | null | undefined;
386424
+ pullRequestTitle?: string | null | undefined;
386425
+ pullRequestDescription?: string | null | undefined;
386426
+ checkoutNoTags?: boolean | null | undefined;
386427
+ checkoutNoBlobs?: boolean | null | undefined;
386428
+ checkoutSparse?: boolean | null | undefined;
386429
+ credentialId?: string | undefined;
386430
+ connectionId?: string | null | undefined;
386431
+ }>>>;
386432
+ documentation: z.ZodOptional<z.ZodNullable<z.ZodObject<{
386433
+ environment: z.ZodEnum<["Live", "Preview"]>;
386434
+ changes: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<{
386435
+ groupPersistentIds: string[];
386436
+ pagePersistentIds: string[];
386437
+ selectivePublishing?: boolean | undefined;
386438
+ }, z.ZodTypeDef, {
386439
+ groupPersistentIds: string[];
386440
+ pagePersistentIds: string[];
386441
+ selectivePublishing?: boolean | undefined;
386442
+ }>>>, {
386443
+ groupPersistentIds: string[];
386444
+ pagePersistentIds: string[];
386445
+ selectivePublishing?: boolean | undefined;
386446
+ } | undefined, {
386447
+ groupPersistentIds: string[];
386448
+ pagePersistentIds: string[];
386449
+ selectivePublishing?: boolean | undefined;
386450
+ } | null | undefined>;
386451
+ }, "strip", z.ZodTypeAny, {
386452
+ environment: "Live" | "Preview";
386453
+ changes?: {
386454
+ groupPersistentIds: string[];
386455
+ pagePersistentIds: string[];
386456
+ selectivePublishing?: boolean | undefined;
386457
+ } | undefined;
386458
+ }, {
386459
+ environment: "Live" | "Preview";
386460
+ changes?: {
386461
+ groupPersistentIds: string[];
386462
+ pagePersistentIds: string[];
386463
+ selectivePublishing?: boolean | undefined;
386464
+ } | null | undefined;
386465
+ }>>>;
386466
+ webhookUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
386467
+ }, "strip", z.ZodTypeAny, {
386468
+ documentation?: {
386469
+ environment: "Live" | "Preview";
386470
+ changes?: {
386471
+ groupPersistentIds: string[];
386472
+ pagePersistentIds: string[];
386473
+ selectivePublishing?: boolean | undefined;
386474
+ } | undefined;
386475
+ } | null | undefined;
386476
+ github?: {
386477
+ url: string;
386478
+ branch: string;
386479
+ userId?: number | undefined;
386480
+ relativePath?: string | undefined;
386481
+ purgeDirectory?: boolean | undefined;
386482
+ commitAuthorName?: string | undefined;
386483
+ commitAuthorEmail?: string | undefined;
386484
+ commitMessage?: string | undefined;
386485
+ pullRequestTitle?: string | undefined;
386486
+ pullRequestDescription?: string | undefined;
386487
+ checkoutNoTags?: boolean | undefined;
386488
+ checkoutNoBlobs?: boolean | undefined;
386489
+ checkoutSparse?: boolean | undefined;
386490
+ credentialId?: string | undefined;
386491
+ connectionId?: string | undefined;
386492
+ } | null | undefined;
386493
+ azure?: {
386494
+ projectId: string;
386495
+ branch: string;
386496
+ organizationId: string;
386497
+ repositoryId: string;
386498
+ url?: string | undefined;
386499
+ userId?: number | undefined;
386500
+ relativePath?: string | undefined;
386501
+ purgeDirectory?: boolean | undefined;
386502
+ commitAuthorName?: string | undefined;
386503
+ commitAuthorEmail?: string | undefined;
386504
+ commitMessage?: string | undefined;
386505
+ pullRequestTitle?: string | undefined;
386506
+ pullRequestDescription?: string | undefined;
386507
+ checkoutNoTags?: boolean | undefined;
386508
+ checkoutNoBlobs?: boolean | undefined;
386509
+ checkoutSparse?: boolean | undefined;
386510
+ credentialId?: string | undefined;
386511
+ connectionId?: string | undefined;
386512
+ } | null | undefined;
386513
+ gitlab?: {
386514
+ projectId: string;
386515
+ branch: string;
386516
+ url?: string | undefined;
386517
+ userId?: number | undefined;
386518
+ relativePath?: string | undefined;
386519
+ purgeDirectory?: boolean | undefined;
386520
+ commitAuthorName?: string | undefined;
386521
+ commitAuthorEmail?: string | undefined;
386522
+ commitMessage?: string | undefined;
386523
+ pullRequestTitle?: string | undefined;
386524
+ pullRequestDescription?: string | undefined;
386525
+ checkoutNoTags?: boolean | undefined;
386526
+ checkoutNoBlobs?: boolean | undefined;
386527
+ checkoutSparse?: boolean | undefined;
386528
+ credentialId?: string | undefined;
386529
+ connectionId?: string | undefined;
386530
+ } | null | undefined;
386531
+ bitbucket?: {
386532
+ branch: string;
386533
+ workspaceSlug: string;
386534
+ projectKey: string;
386535
+ repoSlug: string;
386536
+ url?: string | undefined;
386537
+ userId?: number | undefined;
386538
+ relativePath?: string | undefined;
386539
+ purgeDirectory?: boolean | undefined;
386540
+ commitAuthorName?: string | undefined;
386541
+ commitAuthorEmail?: string | undefined;
386542
+ commitMessage?: string | undefined;
386543
+ pullRequestTitle?: string | undefined;
386544
+ pullRequestDescription?: string | undefined;
386545
+ checkoutNoTags?: boolean | undefined;
386546
+ checkoutNoBlobs?: boolean | undefined;
386547
+ checkoutSparse?: boolean | undefined;
386548
+ credentialId?: string | undefined;
386549
+ connectionId?: string | undefined;
386550
+ } | null | undefined;
386551
+ webhookUrl?: string | null | undefined;
386552
+ s3?: {} | null | undefined;
386553
+ }, {
386554
+ documentation?: {
386555
+ environment: "Live" | "Preview";
386556
+ changes?: {
386557
+ groupPersistentIds: string[];
386558
+ pagePersistentIds: string[];
386559
+ selectivePublishing?: boolean | undefined;
386560
+ } | null | undefined;
386561
+ } | null | undefined;
386562
+ github?: {
386563
+ url: string;
386564
+ branch: string;
386565
+ userId?: number | null | undefined;
386566
+ relativePath?: string | null | undefined;
386567
+ purgeDirectory?: boolean | null | undefined;
386568
+ commitAuthorName?: string | null | undefined;
386569
+ commitAuthorEmail?: string | null | undefined;
386570
+ commitMessage?: string | null | undefined;
386571
+ pullRequestTitle?: string | null | undefined;
386572
+ pullRequestDescription?: string | null | undefined;
386573
+ checkoutNoTags?: boolean | null | undefined;
386574
+ checkoutNoBlobs?: boolean | null | undefined;
386575
+ checkoutSparse?: boolean | null | undefined;
386576
+ credentialId?: string | undefined;
386577
+ connectionId?: string | null | undefined;
386578
+ } | null | undefined;
386579
+ azure?: {
386580
+ projectId: string;
386581
+ branch: string;
386582
+ organizationId: string;
386583
+ repositoryId: string;
386584
+ url?: string | null | undefined;
386585
+ userId?: number | null | undefined;
386586
+ relativePath?: string | null | undefined;
386587
+ purgeDirectory?: boolean | null | undefined;
386588
+ commitAuthorName?: string | null | undefined;
386589
+ commitAuthorEmail?: string | null | undefined;
386590
+ commitMessage?: string | null | undefined;
386591
+ pullRequestTitle?: string | null | undefined;
386592
+ pullRequestDescription?: string | null | undefined;
386593
+ checkoutNoTags?: boolean | null | undefined;
386594
+ checkoutNoBlobs?: boolean | null | undefined;
386595
+ checkoutSparse?: boolean | null | undefined;
386596
+ credentialId?: string | undefined;
386597
+ connectionId?: string | null | undefined;
386598
+ } | null | undefined;
386599
+ gitlab?: {
386600
+ projectId: string;
386601
+ branch: string;
386602
+ url?: string | null | undefined;
386603
+ userId?: number | null | undefined;
386604
+ relativePath?: string | null | undefined;
386605
+ purgeDirectory?: boolean | null | undefined;
386606
+ commitAuthorName?: string | null | undefined;
386607
+ commitAuthorEmail?: string | null | undefined;
386608
+ commitMessage?: string | null | undefined;
386609
+ pullRequestTitle?: string | null | undefined;
386610
+ pullRequestDescription?: string | null | undefined;
386611
+ checkoutNoTags?: boolean | null | undefined;
386612
+ checkoutNoBlobs?: boolean | null | undefined;
386613
+ checkoutSparse?: boolean | null | undefined;
386614
+ credentialId?: string | undefined;
386615
+ connectionId?: string | null | undefined;
386616
+ } | null | undefined;
386617
+ bitbucket?: {
386618
+ branch: string;
386619
+ workspaceSlug: string;
386620
+ projectKey: string;
386621
+ repoSlug: string;
386622
+ url?: string | null | undefined;
386623
+ userId?: number | null | undefined;
386624
+ relativePath?: string | null | undefined;
386625
+ purgeDirectory?: boolean | null | undefined;
386626
+ commitAuthorName?: string | null | undefined;
386627
+ commitAuthorEmail?: string | null | undefined;
386628
+ commitMessage?: string | null | undefined;
386629
+ pullRequestTitle?: string | null | undefined;
386630
+ pullRequestDescription?: string | null | undefined;
386631
+ checkoutNoTags?: boolean | null | undefined;
386632
+ checkoutNoBlobs?: boolean | null | undefined;
386633
+ checkoutSparse?: boolean | null | undefined;
386634
+ credentialId?: string | undefined;
386635
+ connectionId?: string | null | undefined;
386636
+ } | null | undefined;
386637
+ webhookUrl?: string | null | undefined;
386638
+ s3?: {} | null | undefined;
386639
+ }>;
386640
+ }, "strip", z.ZodTypeAny, {
386641
+ name: string;
386642
+ isEnabled: boolean;
386643
+ exporterId: string;
386644
+ eventType: "None" | "OnVersionReleased" | "OnHeadChanged" | "OnSourceUpdated" | "OnDocumentationPublished";
386645
+ destinations: {
386646
+ documentation?: {
386647
+ environment: "Live" | "Preview";
386648
+ changes?: {
386649
+ groupPersistentIds: string[];
386650
+ pagePersistentIds: string[];
386651
+ selectivePublishing?: boolean | undefined;
386652
+ } | undefined;
386653
+ } | null | undefined;
386654
+ github?: {
386655
+ url: string;
386656
+ branch: string;
386657
+ userId?: number | undefined;
386658
+ relativePath?: string | undefined;
386659
+ purgeDirectory?: boolean | undefined;
386660
+ commitAuthorName?: string | undefined;
386661
+ commitAuthorEmail?: string | undefined;
386662
+ commitMessage?: string | undefined;
386663
+ pullRequestTitle?: string | undefined;
386664
+ pullRequestDescription?: string | undefined;
386665
+ checkoutNoTags?: boolean | undefined;
386666
+ checkoutNoBlobs?: boolean | undefined;
386667
+ checkoutSparse?: boolean | undefined;
386668
+ credentialId?: string | undefined;
386669
+ connectionId?: string | undefined;
386670
+ } | null | undefined;
386671
+ azure?: {
386672
+ projectId: string;
386673
+ branch: string;
386674
+ organizationId: string;
386675
+ repositoryId: string;
386676
+ url?: string | undefined;
386677
+ userId?: number | undefined;
386678
+ relativePath?: string | undefined;
386679
+ purgeDirectory?: boolean | undefined;
386680
+ commitAuthorName?: string | undefined;
386681
+ commitAuthorEmail?: string | undefined;
386682
+ commitMessage?: string | undefined;
386683
+ pullRequestTitle?: string | undefined;
386684
+ pullRequestDescription?: string | undefined;
386685
+ checkoutNoTags?: boolean | undefined;
386686
+ checkoutNoBlobs?: boolean | undefined;
386687
+ checkoutSparse?: boolean | undefined;
386688
+ credentialId?: string | undefined;
386689
+ connectionId?: string | undefined;
386690
+ } | null | undefined;
386691
+ gitlab?: {
386692
+ projectId: string;
386693
+ branch: string;
386694
+ url?: string | undefined;
386695
+ userId?: number | undefined;
386696
+ relativePath?: string | undefined;
386697
+ purgeDirectory?: boolean | undefined;
386698
+ commitAuthorName?: string | undefined;
386699
+ commitAuthorEmail?: string | undefined;
386700
+ commitMessage?: string | undefined;
386701
+ pullRequestTitle?: string | undefined;
386702
+ pullRequestDescription?: string | undefined;
386703
+ checkoutNoTags?: boolean | undefined;
386704
+ checkoutNoBlobs?: boolean | undefined;
386705
+ checkoutSparse?: boolean | undefined;
386706
+ credentialId?: string | undefined;
386707
+ connectionId?: string | undefined;
386708
+ } | null | undefined;
386709
+ bitbucket?: {
386710
+ branch: string;
386711
+ workspaceSlug: string;
386712
+ projectKey: string;
386713
+ repoSlug: string;
386714
+ url?: string | undefined;
386715
+ userId?: number | undefined;
386716
+ relativePath?: string | undefined;
386717
+ purgeDirectory?: boolean | undefined;
386718
+ commitAuthorName?: string | undefined;
386719
+ commitAuthorEmail?: string | undefined;
386720
+ commitMessage?: string | undefined;
386721
+ pullRequestTitle?: string | undefined;
386722
+ pullRequestDescription?: string | undefined;
386723
+ checkoutNoTags?: boolean | undefined;
386724
+ checkoutNoBlobs?: boolean | undefined;
386725
+ checkoutSparse?: boolean | undefined;
386726
+ credentialId?: string | undefined;
386727
+ connectionId?: string | undefined;
386728
+ } | null | undefined;
386729
+ webhookUrl?: string | null | undefined;
386730
+ s3?: {} | null | undefined;
386731
+ };
386732
+ gitQuery: {
386733
+ organization?: string | undefined;
386734
+ project?: string | undefined;
386735
+ repository?: string | undefined;
386736
+ user?: string | undefined;
386737
+ branch?: string | undefined;
386738
+ };
386739
+ brandPersistentId?: string | undefined;
386740
+ themePersistentIds?: string[] | undefined;
386741
+ themePersistentId?: string | undefined;
386742
+ exporterPropertyValues?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
386743
+ destination?: "S3" | "Azure" | "Github" | "Gitlab" | "Bitbucket" | "Documentation" | "WebhookUrl" | undefined;
386744
+ }, {
386745
+ name: string;
386746
+ isEnabled: boolean;
386747
+ exporterId: string;
386748
+ eventType: "None" | "OnVersionReleased" | "OnHeadChanged" | "OnSourceUpdated" | "OnDocumentationPublished";
386749
+ destinations: {
386750
+ documentation?: {
386751
+ environment: "Live" | "Preview";
386752
+ changes?: {
386753
+ groupPersistentIds: string[];
386754
+ pagePersistentIds: string[];
386755
+ selectivePublishing?: boolean | undefined;
386756
+ } | null | undefined;
386757
+ } | null | undefined;
386758
+ github?: {
386759
+ url: string;
386760
+ branch: string;
386761
+ userId?: number | null | undefined;
386762
+ relativePath?: string | null | undefined;
386763
+ purgeDirectory?: boolean | null | undefined;
386764
+ commitAuthorName?: string | null | undefined;
386765
+ commitAuthorEmail?: string | null | undefined;
386766
+ commitMessage?: string | null | undefined;
386767
+ pullRequestTitle?: string | null | undefined;
386768
+ pullRequestDescription?: string | null | undefined;
386769
+ checkoutNoTags?: boolean | null | undefined;
386770
+ checkoutNoBlobs?: boolean | null | undefined;
386771
+ checkoutSparse?: boolean | null | undefined;
386772
+ credentialId?: string | undefined;
386773
+ connectionId?: string | null | undefined;
386774
+ } | null | undefined;
386775
+ azure?: {
386776
+ projectId: string;
386777
+ branch: string;
386778
+ organizationId: string;
386779
+ repositoryId: string;
386780
+ url?: string | null | undefined;
386781
+ userId?: number | null | undefined;
386782
+ relativePath?: string | null | undefined;
386783
+ purgeDirectory?: boolean | null | undefined;
386784
+ commitAuthorName?: string | null | undefined;
386785
+ commitAuthorEmail?: string | null | undefined;
386786
+ commitMessage?: string | null | undefined;
386787
+ pullRequestTitle?: string | null | undefined;
386788
+ pullRequestDescription?: string | null | undefined;
386789
+ checkoutNoTags?: boolean | null | undefined;
386790
+ checkoutNoBlobs?: boolean | null | undefined;
386791
+ checkoutSparse?: boolean | null | undefined;
386792
+ credentialId?: string | undefined;
386793
+ connectionId?: string | null | undefined;
386794
+ } | null | undefined;
386795
+ gitlab?: {
386796
+ projectId: string;
386797
+ branch: string;
386798
+ url?: string | null | undefined;
386799
+ userId?: number | null | undefined;
386800
+ relativePath?: string | null | undefined;
386801
+ purgeDirectory?: boolean | null | undefined;
386802
+ commitAuthorName?: string | null | undefined;
386803
+ commitAuthorEmail?: string | null | undefined;
386804
+ commitMessage?: string | null | undefined;
386805
+ pullRequestTitle?: string | null | undefined;
386806
+ pullRequestDescription?: string | null | undefined;
386807
+ checkoutNoTags?: boolean | null | undefined;
386808
+ checkoutNoBlobs?: boolean | null | undefined;
386809
+ checkoutSparse?: boolean | null | undefined;
386810
+ credentialId?: string | undefined;
386811
+ connectionId?: string | null | undefined;
386812
+ } | null | undefined;
386813
+ bitbucket?: {
386814
+ branch: string;
386815
+ workspaceSlug: string;
386816
+ projectKey: string;
386817
+ repoSlug: string;
386818
+ url?: string | null | undefined;
386819
+ userId?: number | null | undefined;
386820
+ relativePath?: string | null | undefined;
386821
+ purgeDirectory?: boolean | null | undefined;
386822
+ commitAuthorName?: string | null | undefined;
386823
+ commitAuthorEmail?: string | null | undefined;
386824
+ commitMessage?: string | null | undefined;
386825
+ pullRequestTitle?: string | null | undefined;
386826
+ pullRequestDescription?: string | null | undefined;
386827
+ checkoutNoTags?: boolean | null | undefined;
386828
+ checkoutNoBlobs?: boolean | null | undefined;
386829
+ checkoutSparse?: boolean | null | undefined;
386830
+ credentialId?: string | undefined;
386831
+ connectionId?: string | null | undefined;
386832
+ } | null | undefined;
386833
+ webhookUrl?: string | null | undefined;
386834
+ s3?: {} | null | undefined;
386835
+ };
386836
+ gitQuery: {
386837
+ organization?: string | undefined;
386838
+ project?: string | undefined;
386839
+ repository?: string | undefined;
386840
+ user?: string | undefined;
386841
+ branch?: string | undefined;
386842
+ };
386843
+ brandPersistentId?: string | undefined;
386844
+ themePersistentIds?: string[] | undefined;
386845
+ themePersistentId?: string | undefined;
386846
+ exporterPropertyValues?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
386847
+ destination?: "S3" | "Azure" | "Github" | "Gitlab" | "Bitbucket" | "Documentation" | "WebhookUrl" | undefined;
386848
+ }>;
386849
+ type DTODesignSystemPipelineCreateBody = z.infer<typeof DTODesignSystemPipelineCreateBody>;
386100
386850
 
386101
386851
  declare const DTOLiveblocksAuthRequest: z.ZodObject<{
386102
386852
  room: z.ZodOptional<z.ZodString>;
@@ -387185,265 +387935,958 @@ declare class PipelinesEndpoint {
387185
387935
  exporterPropertyValues?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
387186
387936
  }[];
387187
387937
  }>;
387188
- create(workspaceId: string, payload: DTOPipelineCreateBody): Promise<{
387189
- pipeline: {
387190
- id: string;
387191
- name: string;
387192
- workspaceId: string;
387193
- designSystemId: string;
387194
- isEnabled: boolean;
387195
- exporterId: string;
387196
- eventType: "None" | "OnVersionReleased" | "OnHeadChanged" | "OnSourceUpdated" | "OnDocumentationPublished";
387197
- isExporterDeprecated: boolean;
387198
- latestJobs: {
387199
- status: "Timeout" | "InProgress" | "Success" | "Failed";
387200
- id: string;
387201
- createdAt: Date;
387202
- exporterId: string;
387203
- designSystem: {
387204
- id: string;
387205
- meta: {
387206
- name: string;
387207
- description?: string | undefined;
387208
- };
387209
- };
387210
- destinations: {
387211
- documentation?: {
387212
- environment: "Live" | "Preview";
387213
- changes?: {
387214
- groupPersistentIds: string[];
387215
- pagePersistentIds: string[];
387216
- selectivePublishing?: boolean | undefined;
387217
- } | undefined;
387218
- } | undefined;
387219
- github?: {
387220
- url: string;
387221
- branch: string;
387222
- userId?: number | undefined;
387223
- relativePath?: string | undefined;
387224
- purgeDirectory?: boolean | undefined;
387225
- commitAuthorName?: string | undefined;
387226
- commitAuthorEmail?: string | undefined;
387227
- commitMessage?: string | undefined;
387228
- pullRequestTitle?: string | undefined;
387229
- pullRequestDescription?: string | undefined;
387230
- checkoutNoTags?: boolean | undefined;
387231
- checkoutNoBlobs?: boolean | undefined;
387232
- checkoutSparse?: boolean | undefined;
387233
- credentialId?: string | undefined;
387234
- connectionId?: string | undefined;
387235
- } | undefined;
387236
- azure?: {
387237
- projectId: string;
387238
- branch: string;
387239
- organizationId: string;
387240
- repositoryId: string;
387241
- url?: string | undefined;
387242
- userId?: number | undefined;
387243
- relativePath?: string | undefined;
387244
- purgeDirectory?: boolean | undefined;
387245
- commitAuthorName?: string | undefined;
387246
- commitAuthorEmail?: string | undefined;
387247
- commitMessage?: string | undefined;
387248
- pullRequestTitle?: string | undefined;
387249
- pullRequestDescription?: string | undefined;
387250
- checkoutNoTags?: boolean | undefined;
387251
- checkoutNoBlobs?: boolean | undefined;
387252
- checkoutSparse?: boolean | undefined;
387253
- credentialId?: string | undefined;
387254
- connectionId?: string | undefined;
387255
- } | undefined;
387256
- gitlab?: {
387257
- projectId: string;
387258
- branch: string;
387259
- url?: string | undefined;
387260
- userId?: number | undefined;
387261
- relativePath?: string | undefined;
387262
- purgeDirectory?: boolean | undefined;
387263
- commitAuthorName?: string | undefined;
387264
- commitAuthorEmail?: string | undefined;
387265
- commitMessage?: string | undefined;
387266
- pullRequestTitle?: string | undefined;
387267
- pullRequestDescription?: string | undefined;
387268
- checkoutNoTags?: boolean | undefined;
387269
- checkoutNoBlobs?: boolean | undefined;
387270
- checkoutSparse?: boolean | undefined;
387271
- credentialId?: string | undefined;
387272
- connectionId?: string | undefined;
387273
- } | undefined;
387274
- bitbucket?: {
387275
- branch: string;
387276
- workspaceSlug: string;
387277
- projectKey: string;
387278
- repoSlug: string;
387279
- url?: string | undefined;
387280
- userId?: number | undefined;
387281
- relativePath?: string | undefined;
387282
- purgeDirectory?: boolean | undefined;
387283
- commitAuthorName?: string | undefined;
387284
- commitAuthorEmail?: string | undefined;
387285
- commitMessage?: string | undefined;
387286
- pullRequestTitle?: string | undefined;
387287
- pullRequestDescription?: string | undefined;
387288
- checkoutNoTags?: boolean | undefined;
387289
- checkoutNoBlobs?: boolean | undefined;
387290
- checkoutSparse?: boolean | undefined;
387291
- credentialId?: string | undefined;
387292
- connectionId?: string | undefined;
387293
- } | undefined;
387294
- webhookUrl?: string | undefined;
387295
- s3?: {} | undefined;
387296
- };
387297
- designSystemVersion: {
387298
- id: string;
387299
- version: string;
387300
- meta: {
387301
- name: string;
387302
- description?: string | undefined;
387303
- };
387304
- isReadonly: boolean;
387305
- };
387306
- index?: number | undefined;
387307
- brandPersistentId?: string | undefined;
387308
- themePersistentIds?: string[] | undefined;
387309
- themePersistentId?: string | undefined;
387310
- exporterPropertyValues?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
387311
- finishedAt?: Date | undefined;
387312
- scheduleId?: string | undefined;
387313
- estimatedExecutionTime?: number | undefined;
387314
- result?: {
387315
- documentation?: {
387316
- url: string;
387317
- } | undefined;
387318
- error?: string | undefined;
387319
- github?: {
387320
- pullRequestUrl: string;
387321
- sparseCheckoutUsed?: boolean | undefined;
387322
- } | undefined;
387323
- logs?: {
387324
- message: string;
387325
- type: "error" | "info" | "user" | "success" | "warning";
387326
- time: Date;
387327
- id?: string | undefined;
387328
- }[] | undefined;
387329
- azure?: {
387330
- pullRequestUrl: string;
387331
- sparseCheckoutUsed?: boolean | undefined;
387332
- } | undefined;
387333
- gitlab?: {
387334
- pullRequestUrl: string;
387335
- sparseCheckoutUsed?: boolean | undefined;
387336
- } | undefined;
387337
- bitbucket?: {
387338
- pullRequestUrl: string;
387339
- sparseCheckoutUsed?: boolean | undefined;
387340
- } | undefined;
387341
- s3?: {
387342
- path: string;
387343
- files: string[];
387344
- bucket: string;
387345
- url?: string | undefined;
387346
- urlPrefix?: string | undefined;
387347
- urls?: string[] | undefined;
387348
- } | undefined;
387349
- } | undefined;
387350
- createdBy?: {
387351
- userId: string;
387352
- userName: string;
387353
- } | undefined;
387354
- }[];
387355
- brandPersistentId?: string | undefined;
387356
- themePersistentIds?: string[] | undefined;
387357
- themePersistentId?: string | undefined;
387358
- webhookUrl?: string | undefined;
387359
- destinationSnDocs?: {
387360
- environment: "Live" | "Preview";
387361
- changes?: {
387362
- groupPersistentIds: string[];
387363
- pagePersistentIds: string[];
387364
- selectivePublishing?: boolean | undefined;
387365
- } | undefined;
387366
- } | undefined;
387367
- destinationS3?: {} | undefined;
387368
- destinationGithub?: {
387369
- url: string;
387370
- branch: string;
387371
- userId?: number | undefined;
387372
- relativePath?: string | undefined;
387373
- purgeDirectory?: boolean | undefined;
387374
- commitAuthorName?: string | undefined;
387375
- commitAuthorEmail?: string | undefined;
387376
- commitMessage?: string | undefined;
387377
- pullRequestTitle?: string | undefined;
387378
- pullRequestDescription?: string | undefined;
387379
- checkoutNoTags?: boolean | undefined;
387380
- checkoutNoBlobs?: boolean | undefined;
387381
- checkoutSparse?: boolean | undefined;
387382
- credentialId?: string | undefined;
387383
- connectionId?: string | undefined;
387384
- } | undefined;
387385
- destinationAzure?: {
387386
- projectId: string;
387387
- branch: string;
387388
- organizationId: string;
387389
- repositoryId: string;
387390
- url?: string | undefined;
387391
- userId?: number | undefined;
387392
- relativePath?: string | undefined;
387393
- purgeDirectory?: boolean | undefined;
387394
- commitAuthorName?: string | undefined;
387395
- commitAuthorEmail?: string | undefined;
387396
- commitMessage?: string | undefined;
387397
- pullRequestTitle?: string | undefined;
387398
- pullRequestDescription?: string | undefined;
387399
- checkoutNoTags?: boolean | undefined;
387400
- checkoutNoBlobs?: boolean | undefined;
387401
- checkoutSparse?: boolean | undefined;
387402
- credentialId?: string | undefined;
387403
- connectionId?: string | undefined;
387404
- } | undefined;
387405
- destinationGitlab?: {
387406
- projectId: string;
387407
- branch: string;
387408
- url?: string | undefined;
387409
- userId?: number | undefined;
387410
- relativePath?: string | undefined;
387411
- purgeDirectory?: boolean | undefined;
387412
- commitAuthorName?: string | undefined;
387413
- commitAuthorEmail?: string | undefined;
387414
- commitMessage?: string | undefined;
387415
- pullRequestTitle?: string | undefined;
387416
- pullRequestDescription?: string | undefined;
387417
- checkoutNoTags?: boolean | undefined;
387418
- checkoutNoBlobs?: boolean | undefined;
387419
- checkoutSparse?: boolean | undefined;
387420
- credentialId?: string | undefined;
387421
- connectionId?: string | undefined;
387422
- } | undefined;
387423
- destinationBitbucket?: {
387424
- branch: string;
387425
- workspaceSlug: string;
387426
- projectKey: string;
387427
- repoSlug: string;
387428
- url?: string | undefined;
387429
- userId?: number | undefined;
387430
- relativePath?: string | undefined;
387431
- purgeDirectory?: boolean | undefined;
387432
- commitAuthorName?: string | undefined;
387433
- commitAuthorEmail?: string | undefined;
387434
- commitMessage?: string | undefined;
387435
- pullRequestTitle?: string | undefined;
387436
- pullRequestDescription?: string | undefined;
387437
- checkoutNoTags?: boolean | undefined;
387438
- checkoutNoBlobs?: boolean | undefined;
387439
- checkoutSparse?: boolean | undefined;
387440
- credentialId?: string | undefined;
387441
- connectionId?: string | undefined;
387442
- } | undefined;
387443
- exporterPropertyValues?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
387444
- };
387445
- }>;
387446
- update(designSystemId: string, pipelineId: string, payload: DTOPipelineUpdateBody): Promise<{
387938
+ create(workspaceId: string, payload: DTOPipelineCreateBody): Promise<{
387939
+ pipeline: {
387940
+ id: string;
387941
+ name: string;
387942
+ workspaceId: string;
387943
+ designSystemId: string;
387944
+ isEnabled: boolean;
387945
+ exporterId: string;
387946
+ eventType: "None" | "OnVersionReleased" | "OnHeadChanged" | "OnSourceUpdated" | "OnDocumentationPublished";
387947
+ isExporterDeprecated: boolean;
387948
+ latestJobs: {
387949
+ status: "Timeout" | "InProgress" | "Success" | "Failed";
387950
+ id: string;
387951
+ createdAt: Date;
387952
+ exporterId: string;
387953
+ designSystem: {
387954
+ id: string;
387955
+ meta: {
387956
+ name: string;
387957
+ description?: string | undefined;
387958
+ };
387959
+ };
387960
+ destinations: {
387961
+ documentation?: {
387962
+ environment: "Live" | "Preview";
387963
+ changes?: {
387964
+ groupPersistentIds: string[];
387965
+ pagePersistentIds: string[];
387966
+ selectivePublishing?: boolean | undefined;
387967
+ } | undefined;
387968
+ } | undefined;
387969
+ github?: {
387970
+ url: string;
387971
+ branch: string;
387972
+ userId?: number | undefined;
387973
+ relativePath?: string | undefined;
387974
+ purgeDirectory?: boolean | undefined;
387975
+ commitAuthorName?: string | undefined;
387976
+ commitAuthorEmail?: string | undefined;
387977
+ commitMessage?: string | undefined;
387978
+ pullRequestTitle?: string | undefined;
387979
+ pullRequestDescription?: string | undefined;
387980
+ checkoutNoTags?: boolean | undefined;
387981
+ checkoutNoBlobs?: boolean | undefined;
387982
+ checkoutSparse?: boolean | undefined;
387983
+ credentialId?: string | undefined;
387984
+ connectionId?: string | undefined;
387985
+ } | undefined;
387986
+ azure?: {
387987
+ projectId: string;
387988
+ branch: string;
387989
+ organizationId: string;
387990
+ repositoryId: string;
387991
+ url?: string | undefined;
387992
+ userId?: number | undefined;
387993
+ relativePath?: string | undefined;
387994
+ purgeDirectory?: boolean | undefined;
387995
+ commitAuthorName?: string | undefined;
387996
+ commitAuthorEmail?: string | undefined;
387997
+ commitMessage?: string | undefined;
387998
+ pullRequestTitle?: string | undefined;
387999
+ pullRequestDescription?: string | undefined;
388000
+ checkoutNoTags?: boolean | undefined;
388001
+ checkoutNoBlobs?: boolean | undefined;
388002
+ checkoutSparse?: boolean | undefined;
388003
+ credentialId?: string | undefined;
388004
+ connectionId?: string | undefined;
388005
+ } | undefined;
388006
+ gitlab?: {
388007
+ projectId: string;
388008
+ branch: string;
388009
+ url?: string | undefined;
388010
+ userId?: number | undefined;
388011
+ relativePath?: string | undefined;
388012
+ purgeDirectory?: boolean | undefined;
388013
+ commitAuthorName?: string | undefined;
388014
+ commitAuthorEmail?: string | undefined;
388015
+ commitMessage?: string | undefined;
388016
+ pullRequestTitle?: string | undefined;
388017
+ pullRequestDescription?: string | undefined;
388018
+ checkoutNoTags?: boolean | undefined;
388019
+ checkoutNoBlobs?: boolean | undefined;
388020
+ checkoutSparse?: boolean | undefined;
388021
+ credentialId?: string | undefined;
388022
+ connectionId?: string | undefined;
388023
+ } | undefined;
388024
+ bitbucket?: {
388025
+ branch: string;
388026
+ workspaceSlug: string;
388027
+ projectKey: string;
388028
+ repoSlug: string;
388029
+ url?: string | undefined;
388030
+ userId?: number | undefined;
388031
+ relativePath?: string | undefined;
388032
+ purgeDirectory?: boolean | undefined;
388033
+ commitAuthorName?: string | undefined;
388034
+ commitAuthorEmail?: string | undefined;
388035
+ commitMessage?: string | undefined;
388036
+ pullRequestTitle?: string | undefined;
388037
+ pullRequestDescription?: string | undefined;
388038
+ checkoutNoTags?: boolean | undefined;
388039
+ checkoutNoBlobs?: boolean | undefined;
388040
+ checkoutSparse?: boolean | undefined;
388041
+ credentialId?: string | undefined;
388042
+ connectionId?: string | undefined;
388043
+ } | undefined;
388044
+ webhookUrl?: string | undefined;
388045
+ s3?: {} | undefined;
388046
+ };
388047
+ designSystemVersion: {
388048
+ id: string;
388049
+ version: string;
388050
+ meta: {
388051
+ name: string;
388052
+ description?: string | undefined;
388053
+ };
388054
+ isReadonly: boolean;
388055
+ };
388056
+ index?: number | undefined;
388057
+ brandPersistentId?: string | undefined;
388058
+ themePersistentIds?: string[] | undefined;
388059
+ themePersistentId?: string | undefined;
388060
+ exporterPropertyValues?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
388061
+ finishedAt?: Date | undefined;
388062
+ scheduleId?: string | undefined;
388063
+ estimatedExecutionTime?: number | undefined;
388064
+ result?: {
388065
+ documentation?: {
388066
+ url: string;
388067
+ } | undefined;
388068
+ error?: string | undefined;
388069
+ github?: {
388070
+ pullRequestUrl: string;
388071
+ sparseCheckoutUsed?: boolean | undefined;
388072
+ } | undefined;
388073
+ logs?: {
388074
+ message: string;
388075
+ type: "error" | "info" | "user" | "success" | "warning";
388076
+ time: Date;
388077
+ id?: string | undefined;
388078
+ }[] | undefined;
388079
+ azure?: {
388080
+ pullRequestUrl: string;
388081
+ sparseCheckoutUsed?: boolean | undefined;
388082
+ } | undefined;
388083
+ gitlab?: {
388084
+ pullRequestUrl: string;
388085
+ sparseCheckoutUsed?: boolean | undefined;
388086
+ } | undefined;
388087
+ bitbucket?: {
388088
+ pullRequestUrl: string;
388089
+ sparseCheckoutUsed?: boolean | undefined;
388090
+ } | undefined;
388091
+ s3?: {
388092
+ path: string;
388093
+ files: string[];
388094
+ bucket: string;
388095
+ url?: string | undefined;
388096
+ urlPrefix?: string | undefined;
388097
+ urls?: string[] | undefined;
388098
+ } | undefined;
388099
+ } | undefined;
388100
+ createdBy?: {
388101
+ userId: string;
388102
+ userName: string;
388103
+ } | undefined;
388104
+ }[];
388105
+ brandPersistentId?: string | undefined;
388106
+ themePersistentIds?: string[] | undefined;
388107
+ themePersistentId?: string | undefined;
388108
+ webhookUrl?: string | undefined;
388109
+ destinationSnDocs?: {
388110
+ environment: "Live" | "Preview";
388111
+ changes?: {
388112
+ groupPersistentIds: string[];
388113
+ pagePersistentIds: string[];
388114
+ selectivePublishing?: boolean | undefined;
388115
+ } | undefined;
388116
+ } | undefined;
388117
+ destinationS3?: {} | undefined;
388118
+ destinationGithub?: {
388119
+ url: string;
388120
+ branch: string;
388121
+ userId?: number | undefined;
388122
+ relativePath?: string | undefined;
388123
+ purgeDirectory?: boolean | undefined;
388124
+ commitAuthorName?: string | undefined;
388125
+ commitAuthorEmail?: string | undefined;
388126
+ commitMessage?: string | undefined;
388127
+ pullRequestTitle?: string | undefined;
388128
+ pullRequestDescription?: string | undefined;
388129
+ checkoutNoTags?: boolean | undefined;
388130
+ checkoutNoBlobs?: boolean | undefined;
388131
+ checkoutSparse?: boolean | undefined;
388132
+ credentialId?: string | undefined;
388133
+ connectionId?: string | undefined;
388134
+ } | undefined;
388135
+ destinationAzure?: {
388136
+ projectId: string;
388137
+ branch: string;
388138
+ organizationId: string;
388139
+ repositoryId: string;
388140
+ url?: string | undefined;
388141
+ userId?: number | undefined;
388142
+ relativePath?: string | undefined;
388143
+ purgeDirectory?: boolean | undefined;
388144
+ commitAuthorName?: string | undefined;
388145
+ commitAuthorEmail?: string | undefined;
388146
+ commitMessage?: string | undefined;
388147
+ pullRequestTitle?: string | undefined;
388148
+ pullRequestDescription?: string | undefined;
388149
+ checkoutNoTags?: boolean | undefined;
388150
+ checkoutNoBlobs?: boolean | undefined;
388151
+ checkoutSparse?: boolean | undefined;
388152
+ credentialId?: string | undefined;
388153
+ connectionId?: string | undefined;
388154
+ } | undefined;
388155
+ destinationGitlab?: {
388156
+ projectId: string;
388157
+ branch: string;
388158
+ url?: string | undefined;
388159
+ userId?: number | undefined;
388160
+ relativePath?: string | undefined;
388161
+ purgeDirectory?: boolean | undefined;
388162
+ commitAuthorName?: string | undefined;
388163
+ commitAuthorEmail?: string | undefined;
388164
+ commitMessage?: string | undefined;
388165
+ pullRequestTitle?: string | undefined;
388166
+ pullRequestDescription?: string | undefined;
388167
+ checkoutNoTags?: boolean | undefined;
388168
+ checkoutNoBlobs?: boolean | undefined;
388169
+ checkoutSparse?: boolean | undefined;
388170
+ credentialId?: string | undefined;
388171
+ connectionId?: string | undefined;
388172
+ } | undefined;
388173
+ destinationBitbucket?: {
388174
+ branch: string;
388175
+ workspaceSlug: string;
388176
+ projectKey: string;
388177
+ repoSlug: string;
388178
+ url?: string | undefined;
388179
+ userId?: number | undefined;
388180
+ relativePath?: string | undefined;
388181
+ purgeDirectory?: boolean | undefined;
388182
+ commitAuthorName?: string | undefined;
388183
+ commitAuthorEmail?: string | undefined;
388184
+ commitMessage?: string | undefined;
388185
+ pullRequestTitle?: string | undefined;
388186
+ pullRequestDescription?: string | undefined;
388187
+ checkoutNoTags?: boolean | undefined;
388188
+ checkoutNoBlobs?: boolean | undefined;
388189
+ checkoutSparse?: boolean | undefined;
388190
+ credentialId?: string | undefined;
388191
+ connectionId?: string | undefined;
388192
+ } | undefined;
388193
+ exporterPropertyValues?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
388194
+ };
388195
+ }>;
388196
+ update(designSystemId: string, pipelineId: string, payload: DTOPipelineUpdateBody): Promise<{
388197
+ pipeline: {
388198
+ id: string;
388199
+ name: string;
388200
+ workspaceId: string;
388201
+ designSystemId: string;
388202
+ isEnabled: boolean;
388203
+ exporterId: string;
388204
+ eventType: "None" | "OnVersionReleased" | "OnHeadChanged" | "OnSourceUpdated" | "OnDocumentationPublished";
388205
+ isExporterDeprecated: boolean;
388206
+ latestJobs: {
388207
+ status: "Timeout" | "InProgress" | "Success" | "Failed";
388208
+ id: string;
388209
+ createdAt: Date;
388210
+ exporterId: string;
388211
+ designSystem: {
388212
+ id: string;
388213
+ meta: {
388214
+ name: string;
388215
+ description?: string | undefined;
388216
+ };
388217
+ };
388218
+ destinations: {
388219
+ documentation?: {
388220
+ environment: "Live" | "Preview";
388221
+ changes?: {
388222
+ groupPersistentIds: string[];
388223
+ pagePersistentIds: string[];
388224
+ selectivePublishing?: boolean | undefined;
388225
+ } | undefined;
388226
+ } | undefined;
388227
+ github?: {
388228
+ url: string;
388229
+ branch: string;
388230
+ userId?: number | undefined;
388231
+ relativePath?: string | undefined;
388232
+ purgeDirectory?: boolean | undefined;
388233
+ commitAuthorName?: string | undefined;
388234
+ commitAuthorEmail?: string | undefined;
388235
+ commitMessage?: string | undefined;
388236
+ pullRequestTitle?: string | undefined;
388237
+ pullRequestDescription?: string | undefined;
388238
+ checkoutNoTags?: boolean | undefined;
388239
+ checkoutNoBlobs?: boolean | undefined;
388240
+ checkoutSparse?: boolean | undefined;
388241
+ credentialId?: string | undefined;
388242
+ connectionId?: string | undefined;
388243
+ } | undefined;
388244
+ azure?: {
388245
+ projectId: string;
388246
+ branch: string;
388247
+ organizationId: string;
388248
+ repositoryId: string;
388249
+ url?: string | undefined;
388250
+ userId?: number | undefined;
388251
+ relativePath?: string | undefined;
388252
+ purgeDirectory?: boolean | undefined;
388253
+ commitAuthorName?: string | undefined;
388254
+ commitAuthorEmail?: string | undefined;
388255
+ commitMessage?: string | undefined;
388256
+ pullRequestTitle?: string | undefined;
388257
+ pullRequestDescription?: string | undefined;
388258
+ checkoutNoTags?: boolean | undefined;
388259
+ checkoutNoBlobs?: boolean | undefined;
388260
+ checkoutSparse?: boolean | undefined;
388261
+ credentialId?: string | undefined;
388262
+ connectionId?: string | undefined;
388263
+ } | undefined;
388264
+ gitlab?: {
388265
+ projectId: string;
388266
+ branch: string;
388267
+ url?: string | undefined;
388268
+ userId?: number | undefined;
388269
+ relativePath?: string | undefined;
388270
+ purgeDirectory?: boolean | undefined;
388271
+ commitAuthorName?: string | undefined;
388272
+ commitAuthorEmail?: string | undefined;
388273
+ commitMessage?: string | undefined;
388274
+ pullRequestTitle?: string | undefined;
388275
+ pullRequestDescription?: string | undefined;
388276
+ checkoutNoTags?: boolean | undefined;
388277
+ checkoutNoBlobs?: boolean | undefined;
388278
+ checkoutSparse?: boolean | undefined;
388279
+ credentialId?: string | undefined;
388280
+ connectionId?: string | undefined;
388281
+ } | undefined;
388282
+ bitbucket?: {
388283
+ branch: string;
388284
+ workspaceSlug: string;
388285
+ projectKey: string;
388286
+ repoSlug: string;
388287
+ url?: string | undefined;
388288
+ userId?: number | undefined;
388289
+ relativePath?: string | undefined;
388290
+ purgeDirectory?: boolean | undefined;
388291
+ commitAuthorName?: string | undefined;
388292
+ commitAuthorEmail?: string | undefined;
388293
+ commitMessage?: string | undefined;
388294
+ pullRequestTitle?: string | undefined;
388295
+ pullRequestDescription?: string | undefined;
388296
+ checkoutNoTags?: boolean | undefined;
388297
+ checkoutNoBlobs?: boolean | undefined;
388298
+ checkoutSparse?: boolean | undefined;
388299
+ credentialId?: string | undefined;
388300
+ connectionId?: string | undefined;
388301
+ } | undefined;
388302
+ webhookUrl?: string | undefined;
388303
+ s3?: {} | undefined;
388304
+ };
388305
+ designSystemVersion: {
388306
+ id: string;
388307
+ version: string;
388308
+ meta: {
388309
+ name: string;
388310
+ description?: string | undefined;
388311
+ };
388312
+ isReadonly: boolean;
388313
+ };
388314
+ index?: number | undefined;
388315
+ brandPersistentId?: string | undefined;
388316
+ themePersistentIds?: string[] | undefined;
388317
+ themePersistentId?: string | undefined;
388318
+ exporterPropertyValues?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
388319
+ finishedAt?: Date | undefined;
388320
+ scheduleId?: string | undefined;
388321
+ estimatedExecutionTime?: number | undefined;
388322
+ result?: {
388323
+ documentation?: {
388324
+ url: string;
388325
+ } | undefined;
388326
+ error?: string | undefined;
388327
+ github?: {
388328
+ pullRequestUrl: string;
388329
+ sparseCheckoutUsed?: boolean | undefined;
388330
+ } | undefined;
388331
+ logs?: {
388332
+ message: string;
388333
+ type: "error" | "info" | "user" | "success" | "warning";
388334
+ time: Date;
388335
+ id?: string | undefined;
388336
+ }[] | undefined;
388337
+ azure?: {
388338
+ pullRequestUrl: string;
388339
+ sparseCheckoutUsed?: boolean | undefined;
388340
+ } | undefined;
388341
+ gitlab?: {
388342
+ pullRequestUrl: string;
388343
+ sparseCheckoutUsed?: boolean | undefined;
388344
+ } | undefined;
388345
+ bitbucket?: {
388346
+ pullRequestUrl: string;
388347
+ sparseCheckoutUsed?: boolean | undefined;
388348
+ } | undefined;
388349
+ s3?: {
388350
+ path: string;
388351
+ files: string[];
388352
+ bucket: string;
388353
+ url?: string | undefined;
388354
+ urlPrefix?: string | undefined;
388355
+ urls?: string[] | undefined;
388356
+ } | undefined;
388357
+ } | undefined;
388358
+ createdBy?: {
388359
+ userId: string;
388360
+ userName: string;
388361
+ } | undefined;
388362
+ }[];
388363
+ brandPersistentId?: string | undefined;
388364
+ themePersistentIds?: string[] | undefined;
388365
+ themePersistentId?: string | undefined;
388366
+ webhookUrl?: string | undefined;
388367
+ destinationSnDocs?: {
388368
+ environment: "Live" | "Preview";
388369
+ changes?: {
388370
+ groupPersistentIds: string[];
388371
+ pagePersistentIds: string[];
388372
+ selectivePublishing?: boolean | undefined;
388373
+ } | undefined;
388374
+ } | undefined;
388375
+ destinationS3?: {} | undefined;
388376
+ destinationGithub?: {
388377
+ url: string;
388378
+ branch: string;
388379
+ userId?: number | undefined;
388380
+ relativePath?: string | undefined;
388381
+ purgeDirectory?: boolean | undefined;
388382
+ commitAuthorName?: string | undefined;
388383
+ commitAuthorEmail?: string | undefined;
388384
+ commitMessage?: string | undefined;
388385
+ pullRequestTitle?: string | undefined;
388386
+ pullRequestDescription?: string | undefined;
388387
+ checkoutNoTags?: boolean | undefined;
388388
+ checkoutNoBlobs?: boolean | undefined;
388389
+ checkoutSparse?: boolean | undefined;
388390
+ credentialId?: string | undefined;
388391
+ connectionId?: string | undefined;
388392
+ } | undefined;
388393
+ destinationAzure?: {
388394
+ projectId: string;
388395
+ branch: string;
388396
+ organizationId: string;
388397
+ repositoryId: string;
388398
+ url?: string | undefined;
388399
+ userId?: number | undefined;
388400
+ relativePath?: string | undefined;
388401
+ purgeDirectory?: boolean | undefined;
388402
+ commitAuthorName?: string | undefined;
388403
+ commitAuthorEmail?: string | undefined;
388404
+ commitMessage?: string | undefined;
388405
+ pullRequestTitle?: string | undefined;
388406
+ pullRequestDescription?: string | undefined;
388407
+ checkoutNoTags?: boolean | undefined;
388408
+ checkoutNoBlobs?: boolean | undefined;
388409
+ checkoutSparse?: boolean | undefined;
388410
+ credentialId?: string | undefined;
388411
+ connectionId?: string | undefined;
388412
+ } | undefined;
388413
+ destinationGitlab?: {
388414
+ projectId: string;
388415
+ branch: string;
388416
+ url?: string | undefined;
388417
+ userId?: number | undefined;
388418
+ relativePath?: string | undefined;
388419
+ purgeDirectory?: boolean | undefined;
388420
+ commitAuthorName?: string | undefined;
388421
+ commitAuthorEmail?: string | undefined;
388422
+ commitMessage?: string | undefined;
388423
+ pullRequestTitle?: string | undefined;
388424
+ pullRequestDescription?: string | undefined;
388425
+ checkoutNoTags?: boolean | undefined;
388426
+ checkoutNoBlobs?: boolean | undefined;
388427
+ checkoutSparse?: boolean | undefined;
388428
+ credentialId?: string | undefined;
388429
+ connectionId?: string | undefined;
388430
+ } | undefined;
388431
+ destinationBitbucket?: {
388432
+ branch: string;
388433
+ workspaceSlug: string;
388434
+ projectKey: string;
388435
+ repoSlug: string;
388436
+ url?: string | undefined;
388437
+ userId?: number | undefined;
388438
+ relativePath?: string | undefined;
388439
+ purgeDirectory?: boolean | undefined;
388440
+ commitAuthorName?: string | undefined;
388441
+ commitAuthorEmail?: string | undefined;
388442
+ commitMessage?: string | undefined;
388443
+ pullRequestTitle?: string | undefined;
388444
+ pullRequestDescription?: string | undefined;
388445
+ checkoutNoTags?: boolean | undefined;
388446
+ checkoutNoBlobs?: boolean | undefined;
388447
+ checkoutSparse?: boolean | undefined;
388448
+ credentialId?: string | undefined;
388449
+ connectionId?: string | undefined;
388450
+ } | undefined;
388451
+ exporterPropertyValues?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
388452
+ };
388453
+ }>;
388454
+ trigger(workspaceId: string, pipelineId: string, payload: DTOPipelineTriggerBody): Promise<{
388455
+ job: {
388456
+ status: "Timeout" | "InProgress" | "Success" | "Failed";
388457
+ id: string;
388458
+ createdAt: Date;
388459
+ exporterId: string;
388460
+ designSystem: {
388461
+ id: string;
388462
+ meta: {
388463
+ name: string;
388464
+ description?: string | undefined;
388465
+ };
388466
+ };
388467
+ destinations: {
388468
+ documentation?: {
388469
+ environment: "Live" | "Preview";
388470
+ changes?: {
388471
+ groupPersistentIds: string[];
388472
+ pagePersistentIds: string[];
388473
+ selectivePublishing?: boolean | undefined;
388474
+ } | undefined;
388475
+ } | undefined;
388476
+ github?: {
388477
+ url: string;
388478
+ branch: string;
388479
+ userId?: number | undefined;
388480
+ relativePath?: string | undefined;
388481
+ purgeDirectory?: boolean | undefined;
388482
+ commitAuthorName?: string | undefined;
388483
+ commitAuthorEmail?: string | undefined;
388484
+ commitMessage?: string | undefined;
388485
+ pullRequestTitle?: string | undefined;
388486
+ pullRequestDescription?: string | undefined;
388487
+ checkoutNoTags?: boolean | undefined;
388488
+ checkoutNoBlobs?: boolean | undefined;
388489
+ checkoutSparse?: boolean | undefined;
388490
+ credentialId?: string | undefined;
388491
+ connectionId?: string | undefined;
388492
+ } | undefined;
388493
+ azure?: {
388494
+ projectId: string;
388495
+ branch: string;
388496
+ organizationId: string;
388497
+ repositoryId: string;
388498
+ url?: string | undefined;
388499
+ userId?: number | undefined;
388500
+ relativePath?: string | undefined;
388501
+ purgeDirectory?: boolean | undefined;
388502
+ commitAuthorName?: string | undefined;
388503
+ commitAuthorEmail?: string | undefined;
388504
+ commitMessage?: string | undefined;
388505
+ pullRequestTitle?: string | undefined;
388506
+ pullRequestDescription?: string | undefined;
388507
+ checkoutNoTags?: boolean | undefined;
388508
+ checkoutNoBlobs?: boolean | undefined;
388509
+ checkoutSparse?: boolean | undefined;
388510
+ credentialId?: string | undefined;
388511
+ connectionId?: string | undefined;
388512
+ } | undefined;
388513
+ gitlab?: {
388514
+ projectId: string;
388515
+ branch: string;
388516
+ url?: string | undefined;
388517
+ userId?: number | undefined;
388518
+ relativePath?: string | undefined;
388519
+ purgeDirectory?: boolean | undefined;
388520
+ commitAuthorName?: string | undefined;
388521
+ commitAuthorEmail?: string | undefined;
388522
+ commitMessage?: string | undefined;
388523
+ pullRequestTitle?: string | undefined;
388524
+ pullRequestDescription?: string | undefined;
388525
+ checkoutNoTags?: boolean | undefined;
388526
+ checkoutNoBlobs?: boolean | undefined;
388527
+ checkoutSparse?: boolean | undefined;
388528
+ credentialId?: string | undefined;
388529
+ connectionId?: string | undefined;
388530
+ } | undefined;
388531
+ bitbucket?: {
388532
+ branch: string;
388533
+ workspaceSlug: string;
388534
+ projectKey: string;
388535
+ repoSlug: string;
388536
+ url?: string | undefined;
388537
+ userId?: number | undefined;
388538
+ relativePath?: string | undefined;
388539
+ purgeDirectory?: boolean | undefined;
388540
+ commitAuthorName?: string | undefined;
388541
+ commitAuthorEmail?: string | undefined;
388542
+ commitMessage?: string | undefined;
388543
+ pullRequestTitle?: string | undefined;
388544
+ pullRequestDescription?: string | undefined;
388545
+ checkoutNoTags?: boolean | undefined;
388546
+ checkoutNoBlobs?: boolean | undefined;
388547
+ checkoutSparse?: boolean | undefined;
388548
+ credentialId?: string | undefined;
388549
+ connectionId?: string | undefined;
388550
+ } | undefined;
388551
+ webhookUrl?: string | undefined;
388552
+ s3?: {} | undefined;
388553
+ };
388554
+ designSystemVersion: {
388555
+ id: string;
388556
+ version: string;
388557
+ meta: {
388558
+ name: string;
388559
+ description?: string | undefined;
388560
+ };
388561
+ isReadonly: boolean;
388562
+ };
388563
+ index?: number | undefined;
388564
+ brandPersistentId?: string | undefined;
388565
+ themePersistentIds?: string[] | undefined;
388566
+ themePersistentId?: string | undefined;
388567
+ exporterPropertyValues?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
388568
+ finishedAt?: Date | undefined;
388569
+ scheduleId?: string | undefined;
388570
+ estimatedExecutionTime?: number | undefined;
388571
+ result?: {
388572
+ documentation?: {
388573
+ url: string;
388574
+ } | undefined;
388575
+ error?: string | undefined;
388576
+ github?: {
388577
+ pullRequestUrl: string;
388578
+ sparseCheckoutUsed?: boolean | undefined;
388579
+ } | undefined;
388580
+ logs?: {
388581
+ message: string;
388582
+ type: "error" | "info" | "user" | "success" | "warning";
388583
+ time: Date;
388584
+ id?: string | undefined;
388585
+ }[] | undefined;
388586
+ azure?: {
388587
+ pullRequestUrl: string;
388588
+ sparseCheckoutUsed?: boolean | undefined;
388589
+ } | undefined;
388590
+ gitlab?: {
388591
+ pullRequestUrl: string;
388592
+ sparseCheckoutUsed?: boolean | undefined;
388593
+ } | undefined;
388594
+ bitbucket?: {
388595
+ pullRequestUrl: string;
388596
+ sparseCheckoutUsed?: boolean | undefined;
388597
+ } | undefined;
388598
+ s3?: {
388599
+ path: string;
388600
+ files: string[];
388601
+ bucket: string;
388602
+ url?: string | undefined;
388603
+ urlPrefix?: string | undefined;
388604
+ urls?: string[] | undefined;
388605
+ } | undefined;
388606
+ } | undefined;
388607
+ createdBy?: {
388608
+ userId: string;
388609
+ userName: string;
388610
+ } | undefined;
388611
+ };
388612
+ }>;
388613
+ stats(workspaceId: string): Promise<{
388614
+ pipelines: {
388615
+ totalCount: number;
388616
+ };
388617
+ }>;
388618
+ }
388619
+
388620
+ declare class CodegenEndpoint {
388621
+ private readonly requestExecutor;
388622
+ readonly exporters: ExportersEndpoint;
388623
+ readonly pipelines: PipelinesEndpoint;
388624
+ readonly jobs: ExporterJobsEndpoint;
388625
+ constructor(requestExecutor: RequestExecutor);
388626
+ }
388627
+
388628
+ declare class DesignSystemPipelinesEndpoint {
388629
+ private readonly requestExecutor;
388630
+ constructor(requestExecutor: RequestExecutor);
388631
+ list(designSystemId: string, query: DTOPipelineListQuery): Promise<{
388632
+ pipelines: {
388633
+ id: string;
388634
+ name: string;
388635
+ workspaceId: string;
388636
+ designSystemId: string;
388637
+ isEnabled: boolean;
388638
+ exporterId: string;
388639
+ eventType: "None" | "OnVersionReleased" | "OnHeadChanged" | "OnSourceUpdated" | "OnDocumentationPublished";
388640
+ isExporterDeprecated: boolean;
388641
+ latestJobs: {
388642
+ status: "Timeout" | "InProgress" | "Success" | "Failed";
388643
+ id: string;
388644
+ createdAt: Date;
388645
+ exporterId: string;
388646
+ designSystem: {
388647
+ id: string;
388648
+ meta: {
388649
+ name: string;
388650
+ description?: string | undefined;
388651
+ };
388652
+ };
388653
+ destinations: {
388654
+ documentation?: {
388655
+ environment: "Live" | "Preview";
388656
+ changes?: {
388657
+ groupPersistentIds: string[];
388658
+ pagePersistentIds: string[];
388659
+ selectivePublishing?: boolean | undefined;
388660
+ } | undefined;
388661
+ } | undefined;
388662
+ github?: {
388663
+ url: string;
388664
+ branch: string;
388665
+ userId?: number | undefined;
388666
+ relativePath?: string | undefined;
388667
+ purgeDirectory?: boolean | undefined;
388668
+ commitAuthorName?: string | undefined;
388669
+ commitAuthorEmail?: string | undefined;
388670
+ commitMessage?: string | undefined;
388671
+ pullRequestTitle?: string | undefined;
388672
+ pullRequestDescription?: string | undefined;
388673
+ checkoutNoTags?: boolean | undefined;
388674
+ checkoutNoBlobs?: boolean | undefined;
388675
+ checkoutSparse?: boolean | undefined;
388676
+ credentialId?: string | undefined;
388677
+ connectionId?: string | undefined;
388678
+ } | undefined;
388679
+ azure?: {
388680
+ projectId: string;
388681
+ branch: string;
388682
+ organizationId: string;
388683
+ repositoryId: string;
388684
+ url?: string | undefined;
388685
+ userId?: number | undefined;
388686
+ relativePath?: string | undefined;
388687
+ purgeDirectory?: boolean | undefined;
388688
+ commitAuthorName?: string | undefined;
388689
+ commitAuthorEmail?: string | undefined;
388690
+ commitMessage?: string | undefined;
388691
+ pullRequestTitle?: string | undefined;
388692
+ pullRequestDescription?: string | undefined;
388693
+ checkoutNoTags?: boolean | undefined;
388694
+ checkoutNoBlobs?: boolean | undefined;
388695
+ checkoutSparse?: boolean | undefined;
388696
+ credentialId?: string | undefined;
388697
+ connectionId?: string | undefined;
388698
+ } | undefined;
388699
+ gitlab?: {
388700
+ projectId: string;
388701
+ branch: string;
388702
+ url?: string | undefined;
388703
+ userId?: number | undefined;
388704
+ relativePath?: string | undefined;
388705
+ purgeDirectory?: boolean | undefined;
388706
+ commitAuthorName?: string | undefined;
388707
+ commitAuthorEmail?: string | undefined;
388708
+ commitMessage?: string | undefined;
388709
+ pullRequestTitle?: string | undefined;
388710
+ pullRequestDescription?: string | undefined;
388711
+ checkoutNoTags?: boolean | undefined;
388712
+ checkoutNoBlobs?: boolean | undefined;
388713
+ checkoutSparse?: boolean | undefined;
388714
+ credentialId?: string | undefined;
388715
+ connectionId?: string | undefined;
388716
+ } | undefined;
388717
+ bitbucket?: {
388718
+ branch: string;
388719
+ workspaceSlug: string;
388720
+ projectKey: string;
388721
+ repoSlug: string;
388722
+ url?: string | undefined;
388723
+ userId?: number | undefined;
388724
+ relativePath?: string | undefined;
388725
+ purgeDirectory?: boolean | undefined;
388726
+ commitAuthorName?: string | undefined;
388727
+ commitAuthorEmail?: string | undefined;
388728
+ commitMessage?: string | undefined;
388729
+ pullRequestTitle?: string | undefined;
388730
+ pullRequestDescription?: string | undefined;
388731
+ checkoutNoTags?: boolean | undefined;
388732
+ checkoutNoBlobs?: boolean | undefined;
388733
+ checkoutSparse?: boolean | undefined;
388734
+ credentialId?: string | undefined;
388735
+ connectionId?: string | undefined;
388736
+ } | undefined;
388737
+ webhookUrl?: string | undefined;
388738
+ s3?: {} | undefined;
388739
+ };
388740
+ designSystemVersion: {
388741
+ id: string;
388742
+ version: string;
388743
+ meta: {
388744
+ name: string;
388745
+ description?: string | undefined;
388746
+ };
388747
+ isReadonly: boolean;
388748
+ };
388749
+ index?: number | undefined;
388750
+ brandPersistentId?: string | undefined;
388751
+ themePersistentIds?: string[] | undefined;
388752
+ themePersistentId?: string | undefined;
388753
+ exporterPropertyValues?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
388754
+ finishedAt?: Date | undefined;
388755
+ scheduleId?: string | undefined;
388756
+ estimatedExecutionTime?: number | undefined;
388757
+ result?: {
388758
+ documentation?: {
388759
+ url: string;
388760
+ } | undefined;
388761
+ error?: string | undefined;
388762
+ github?: {
388763
+ pullRequestUrl: string;
388764
+ sparseCheckoutUsed?: boolean | undefined;
388765
+ } | undefined;
388766
+ logs?: {
388767
+ message: string;
388768
+ type: "error" | "info" | "user" | "success" | "warning";
388769
+ time: Date;
388770
+ id?: string | undefined;
388771
+ }[] | undefined;
388772
+ azure?: {
388773
+ pullRequestUrl: string;
388774
+ sparseCheckoutUsed?: boolean | undefined;
388775
+ } | undefined;
388776
+ gitlab?: {
388777
+ pullRequestUrl: string;
388778
+ sparseCheckoutUsed?: boolean | undefined;
388779
+ } | undefined;
388780
+ bitbucket?: {
388781
+ pullRequestUrl: string;
388782
+ sparseCheckoutUsed?: boolean | undefined;
388783
+ } | undefined;
388784
+ s3?: {
388785
+ path: string;
388786
+ files: string[];
388787
+ bucket: string;
388788
+ url?: string | undefined;
388789
+ urlPrefix?: string | undefined;
388790
+ urls?: string[] | undefined;
388791
+ } | undefined;
388792
+ } | undefined;
388793
+ createdBy?: {
388794
+ userId: string;
388795
+ userName: string;
388796
+ } | undefined;
388797
+ }[];
388798
+ brandPersistentId?: string | undefined;
388799
+ themePersistentIds?: string[] | undefined;
388800
+ themePersistentId?: string | undefined;
388801
+ webhookUrl?: string | undefined;
388802
+ destinationSnDocs?: {
388803
+ environment: "Live" | "Preview";
388804
+ changes?: {
388805
+ groupPersistentIds: string[];
388806
+ pagePersistentIds: string[];
388807
+ selectivePublishing?: boolean | undefined;
388808
+ } | undefined;
388809
+ } | undefined;
388810
+ destinationS3?: {} | undefined;
388811
+ destinationGithub?: {
388812
+ url: string;
388813
+ branch: string;
388814
+ userId?: number | undefined;
388815
+ relativePath?: string | undefined;
388816
+ purgeDirectory?: boolean | undefined;
388817
+ commitAuthorName?: string | undefined;
388818
+ commitAuthorEmail?: string | undefined;
388819
+ commitMessage?: string | undefined;
388820
+ pullRequestTitle?: string | undefined;
388821
+ pullRequestDescription?: string | undefined;
388822
+ checkoutNoTags?: boolean | undefined;
388823
+ checkoutNoBlobs?: boolean | undefined;
388824
+ checkoutSparse?: boolean | undefined;
388825
+ credentialId?: string | undefined;
388826
+ connectionId?: string | undefined;
388827
+ } | undefined;
388828
+ destinationAzure?: {
388829
+ projectId: string;
388830
+ branch: string;
388831
+ organizationId: string;
388832
+ repositoryId: string;
388833
+ url?: string | undefined;
388834
+ userId?: number | undefined;
388835
+ relativePath?: string | undefined;
388836
+ purgeDirectory?: boolean | undefined;
388837
+ commitAuthorName?: string | undefined;
388838
+ commitAuthorEmail?: string | undefined;
388839
+ commitMessage?: string | undefined;
388840
+ pullRequestTitle?: string | undefined;
388841
+ pullRequestDescription?: string | undefined;
388842
+ checkoutNoTags?: boolean | undefined;
388843
+ checkoutNoBlobs?: boolean | undefined;
388844
+ checkoutSparse?: boolean | undefined;
388845
+ credentialId?: string | undefined;
388846
+ connectionId?: string | undefined;
388847
+ } | undefined;
388848
+ destinationGitlab?: {
388849
+ projectId: string;
388850
+ branch: string;
388851
+ url?: string | undefined;
388852
+ userId?: number | undefined;
388853
+ relativePath?: string | undefined;
388854
+ purgeDirectory?: boolean | undefined;
388855
+ commitAuthorName?: string | undefined;
388856
+ commitAuthorEmail?: string | undefined;
388857
+ commitMessage?: string | undefined;
388858
+ pullRequestTitle?: string | undefined;
388859
+ pullRequestDescription?: string | undefined;
388860
+ checkoutNoTags?: boolean | undefined;
388861
+ checkoutNoBlobs?: boolean | undefined;
388862
+ checkoutSparse?: boolean | undefined;
388863
+ credentialId?: string | undefined;
388864
+ connectionId?: string | undefined;
388865
+ } | undefined;
388866
+ destinationBitbucket?: {
388867
+ branch: string;
388868
+ workspaceSlug: string;
388869
+ projectKey: string;
388870
+ repoSlug: string;
388871
+ url?: string | undefined;
388872
+ userId?: number | undefined;
388873
+ relativePath?: string | undefined;
388874
+ purgeDirectory?: boolean | undefined;
388875
+ commitAuthorName?: string | undefined;
388876
+ commitAuthorEmail?: string | undefined;
388877
+ commitMessage?: string | undefined;
388878
+ pullRequestTitle?: string | undefined;
388879
+ pullRequestDescription?: string | undefined;
388880
+ checkoutNoTags?: boolean | undefined;
388881
+ checkoutNoBlobs?: boolean | undefined;
388882
+ checkoutSparse?: boolean | undefined;
388883
+ credentialId?: string | undefined;
388884
+ connectionId?: string | undefined;
388885
+ } | undefined;
388886
+ exporterPropertyValues?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
388887
+ }[];
388888
+ }>;
388889
+ create(designSystemId: string, payload: DTOPipelineCreateBody): Promise<{
387447
388890
  pipeline: {
387448
388891
  id: string;
387449
388892
  name: string;
@@ -387701,7 +389144,7 @@ declare class PipelinesEndpoint {
387701
389144
  exporterPropertyValues?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
387702
389145
  };
387703
389146
  }>;
387704
- trigger(workspaceId: string, pipelineId: string, payload: DTOPipelineTriggerBody): Promise<{
389147
+ trigger(designSystemId: string, pipelineId: string, payload: DTOPipelineTriggerBody): Promise<{
387705
389148
  job: {
387706
389149
  status: "Timeout" | "InProgress" | "Success" | "Failed";
387707
389150
  id: string;
@@ -387862,14 +389305,6 @@ declare class PipelinesEndpoint {
387862
389305
  }>;
387863
389306
  }
387864
389307
 
387865
- declare class CodegenEndpoint {
387866
- private readonly requestExecutor;
387867
- readonly exporters: ExportersEndpoint;
387868
- readonly pipelines: PipelinesEndpoint;
387869
- readonly jobs: ExporterJobsEndpoint;
387870
- constructor(requestExecutor: RequestExecutor);
387871
- }
387872
-
387873
389308
  declare class BrandsEndpoint {
387874
389309
  private readonly requestExecutor;
387875
389310
  constructor(requestExecutor: RequestExecutor);
@@ -407778,4 +409213,4 @@ declare function isValidRedirectPath(path: string): {
407778
409213
  reason: ValidationErrorReason | undefined;
407779
409214
  };
407780
409215
 
407781
- export { AuthTokensEndpoint, BackendFeatureRoomYDoc, BackendForgeProjectRoomYDoc, BackendThreadRoomYDoc, BackendVersionRoomYDoc, BlockDefinitionUtils, BlockParsingUtils, BrandsEndpoint, ChatThreadMessagesEndpoint, CodeComponentsEndpoint, CodegenEndpoint, Collection, DTOAccessToken, DTOAccessTokenCreatePayload, DTOAccessTokenFull, DTOAccessTokenFullResponse, DTOAccessTokenListResponse, DTOAccessTokenResponse, DTOAddMembersToForgeProject, DTOAnalyzeCodeComponentsInPackage, DTOAnalyzeCodeComponentsInPackageInput, DTOAnalyzeCodeComponentsInPackageResponse, DTOAppBootstrapDataQuery, DTOAppBootstrapDataResponse, DTOAssetRenderConfiguration, DTOAssetScope, DTOAuthenticatedUser, DTOAuthenticatedUserProfile, DTOAuthenticatedUserResponse, DTOAvailableProductListResponse, DTOBffFigmaImportRequestBody, DTOBffImportRequestBody, DTOBffUploadImportRequestBody, DTOBillingCheckoutCreditsTopUpInput, DTOBillingCheckoutInput, DTOBillingCheckoutMode, DTOBillingCheckoutOldInput, DTOBillingCheckoutResponse, DTOBillingCheckoutSubscriptionChangeInput, DTOBillingCreditsCheckIfCanSpendResponse, DTOBillingCreditsSpendAction, DTOBillingCreditsSpendInput, DTOBillingCreditsSpendResponse, DTOBillingInterval, DTOBillingSubscriptionChangePreviewInput, DTOBillingSupportedModels, DTOBrand, DTOBrandCreatePayload, DTOBrandCreateResponse, DTOBrandGetResponse, DTOBrandUpdatePayload, DTOBrandsListResponse, DTOCodeComponent, DTOCodeComponentCreateInput, DTOCodeComponentListResponse, DTOCodeComponentParentType, DTOCodeComponentProperty, DTOCodeComponentResolvedType, DTOCodeComponentResolvedTypeKind, DTOCodeComponentResponse, DTOCodeComponentUpsertResponse, DTOCodeComponentsCreateInput, 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, DTODependencyDefinition, DTODesignElementsDataDiffResponse, DTODesignSystem, DTODesignSystemComponent, DTODesignSystemComponentCreateInput, DTODesignSystemComponentListResponse, DTODesignSystemComponentResponse, DTODesignSystemContactsResponse, DTODesignSystemCreateInput, DTODesignSystemInvitation, DTODesignSystemMember, DTODesignSystemMemberListResponse, DTODesignSystemMembersUpdatePayload, DTODesignSystemMembersUpdateResponse, 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, DTODocumentationDraftChangeType, DTODocumentationDraftState, DTODocumentationDraftStateCreated, DTODocumentationDraftStateDeleted, DTODocumentationDraftStateUpdated, DTODocumentationGroupApprovalState, DTODocumentationGroupCreateActionInputV2, DTODocumentationGroupCreateActionOutputV2, DTODocumentationGroupDeleteActionInputV2, DTODocumentationGroupDeleteActionOutputV2, DTODocumentationGroupDuplicateActionInputV2, DTODocumentationGroupDuplicateActionOutputV2, DTODocumentationGroupMoveActionInputV2, DTODocumentationGroupMoveActionOutputV2, DTODocumentationGroupRestoreActionInput, DTODocumentationGroupRestoreActionOutput, DTODocumentationGroupStructureV1, DTODocumentationGroupUpdateActionInputV2, DTODocumentationGroupUpdateActionOutputV2, DTODocumentationGroupV1, DTODocumentationGroupV2, DTODocumentationHierarchyV2, DTODocumentationItemConfigurationV1, DTODocumentationItemConfigurationV2, DTODocumentationItemHeaderV2, DTODocumentationLinkPreviewRequest, DTODocumentationLinkPreviewResponse, DTODocumentationPageAnalyticsDifference, DTODocumentationPageAnalyticsResponse, DTODocumentationPageAnchor, DTODocumentationPageApprovalState, DTODocumentationPageApprovalStateChangeActionInput, DTODocumentationPageApprovalStateChangeActionOutput, DTODocumentationPageApprovalStateChangeInput, DTODocumentationPageContent, DTODocumentationPageContentGetResponse, DTODocumentationPageCreateActionInputV2, DTODocumentationPageCreateActionOutputV2, DTODocumentationPageDeleteActionInputV2, DTODocumentationPageDeleteActionOutputV2, DTODocumentationPageDependencies, DTODocumentationPageDependenciesGetResponse, DTODocumentationPageDuplicateActionInputV2, DTODocumentationPageDuplicateActionOutputV2, DTODocumentationPageIntervalDifferenceResponse, DTODocumentationPageMoveActionInputV2, DTODocumentationPageMoveActionOutputV2, DTODocumentationPageRestoreActionInput, DTODocumentationPageRestoreActionOutput, DTODocumentationPageRoom, DTODocumentationPageRoomHeaderData, DTODocumentationPageRoomHeaderDataUpdate, DTODocumentationPageRoomResponse, DTODocumentationPageSnapshot, DTODocumentationPageUpdateActionInputV2, DTODocumentationPageUpdateActionOutputV2, DTODocumentationPageUpdateDocumentActionInputV2, DTODocumentationPageUpdateDocumentActionOutputV2, DTODocumentationPageV2, DTODocumentationPublishMetadata, DTODocumentationPublishTypeQueryParams, DTODocumentationSettings, DTODocumentationStructure, DTODocumentationStructureGroupItem, DTODocumentationStructureItem, DTODocumentationStructurePageItem, DTODocumentationTabCreateActionInputV2, DTODocumentationTabCreateActionOutputV2, type DTODocumentationTabGroupCreateActionInputV2, DTODocumentationTabGroupDeleteActionInputV2, DTODocumentationTabGroupDeleteActionOutputV2, DTODownloadAssetsRequest, DTODownloadAssetsResponse, DTODuplicateDocumentationGroupInput, DTODuplicateDocumentationPageInputV2, DTOElementActionInput, type DTOElementActionInputOfType, DTOElementActionOutput, DTOElementPropertyDefinition, DTOElementPropertyDefinitionCreatePayload, DTOElementPropertyDefinitionListResponse, DTOElementPropertyDefinitionOption, DTOElementPropertyDefinitionResponse, DTOElementPropertyDefinitionUpdatePayload, DTOElementPropertyValue, DTOElementPropertyValueListResponse, DTOElementPropertyValueResponse, DTOElementPropertyValueUpsertPaylod, DTOElementPropertyValuesEditActionInput, DTOElementPropertyValuesEditActionOutput, DTOElementView, DTOElementViewBasePropertyColumn, DTOElementViewColumn, DTOElementViewColumnSharedAttributes, DTOElementViewPropertyDefinitionColumn, DTOElementViewThemeColumn, DTOElementViewsListResponse, DTOElementsGetOutput, DTOElementsGetOutputV2, type DTOElementsGetQueryParsed, type DTOElementsGetQueryRaw, DTOElementsGetQuerySchema, DTOElementsGetTypeFilter, DTOEvent, DTOEventDataSourcesImported, DTOEventFigmaNodesRendered, DTOExportJob, DTOExportJobCreateInput, DTOExportJobCreatedBy, DTOExportJobDesignSystemPreview, DTOExportJobDesignSystemVersionPreview, DTOExportJobDestinations, DTOExportJobResponse, DTOExportJobResponseLegacy, DTOExportJobResult, DTOExportJobsListFilter, DTOExporter, DTOExporterCreateInput, DTOExporterDeprecationInput, DTOExporterGitProviderEnum, DTOExporterListQuery, DTOExporterListResponse, DTOExporterMembership, DTOExporterMembershipRole, DTOExporterPropertyDefinition, DTOExporterPropertyDefinitionArray, DTOExporterPropertyDefinitionBoolean, DTOExporterPropertyDefinitionCode, DTOExporterPropertyDefinitionEnum, DTOExporterPropertyDefinitionEnumOption, DTOExporterPropertyDefinitionNumber, DTOExporterPropertyDefinitionObject, DTOExporterPropertyDefinitionString, type DTOExporterPropertyDefinitionValue, DTOExporterPropertyDefinitionsResponse, DTOExporterPropertyType, DTOExporterPropertyValue, DTOExporterPropertyValueMap, DTOExporterResponse, DTOExporterSource, DTOExporterType, DTOExporterUpdateInput, 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, DTOFigmaExportNodePayload, DTOFigmaExportNodeResponse, DTOFigmaNode, DTOFigmaNodeData, DTOFigmaNodeDataV2, DTOFigmaNodeOrigin, DTOFigmaNodeRenderActionInput, DTOFigmaNodeRenderActionOutput, DTOFigmaNodeRenderAsyncActionInput, DTOFigmaNodeRenderAsyncActionOutput, DTOFigmaNodeRenderFormat, DTOFigmaNodeRenderIdInput, DTOFigmaNodeRenderInput, DTOFigmaNodeRenderUrlInput, DTOFigmaNodeRerenderInput, DTOFigmaNodeStructure, DTOFigmaNodeStructureDetail, DTOFigmaNodeStructureDetailResponse, DTOFigmaNodeStructureListResponse, DTOFigmaNodeV2, DTOFigmaSourceUpdatePayload, DTOFile, DTOFileFigmaRenderMode, DTOFileFinalizeBulkPayload, DTOFileFinalizeBulkResponse, DTOFileListResponse, DTOFileReference, DTOFileResponseItem, DTOFileSource, DTOFileSourceFigma, DTOFileSourceUpload, DTOFileUploadBulkPayload, DTOFileUploadBulkResponse, DTOFileUploadFinalizePayload, DTOFileUploadFinalizeResponse, DTOFileUploadItem, DTOFileUploadPayload, DTOFileUploadResponse, DTOFileUploadResponseItem, DTOFilesGetPayload, DTOFilesGetQuery, DTOFilesResponse, DTOForgeAgent, DTOForgeAgentsListResponse, DTOForgeArtifact, DTOForgeArtifactGetResponse, DTOForgeArtifactsListResponse, DTOForgeAvatarBuilder, DTOForgeBuildArtifact, DTOForgeChatExportResponse, DTOForgeChatMessage, DTOForgeChatMessageCreateInput, DTOForgeChatMessageCreateResponse, DTOForgeChatMessageListQuery, DTOForgeChatMessageListResponse, DTOForgeChatMessageScoreInput, DTOForgeChatMessageScoreRequest, DTOForgeChatMessageSender, DTOForgeChatMessageSenderType, DTOForgeChatMessageTagInput, DTOForgeChatThread, DTOForgeChatThreadCreateInput, DTOForgeChatThreadCreateResponse, DTOForgeChatThreadDeleteResponse, DTOForgeChatThreadListQuery, DTOForgeChatThreadListResponse, DTOForgeChatThreadUpdateInput, DTOForgeChatThreadUpdateResponse, DTOForgeComponentSet, DTOForgeComponentSetTypeV2, DTOForgeDocumentGetByIdParam, DTOForgeDocumentGetResponse, DTOForgeEntity, DTOForgeFeatureRoom, DTOForgeFeatureRoomResponse, DTOForgeFigmaArtifact, DTOForgeFigmaNode, 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, 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, DTORegistry, DTORemoveForgeProjectInvitation, DTORemoveForgeProjectMember, DTORenderedAssetFile, DTORestoreDocumentationGroupInput, DTORestoreDocumentationPageInput, DTOSandboxError, DTOSandboxTemplate, DTOSandboxTemplateBuild, DTOSandboxTemplateBuildCreateInput, DTOSandboxTemplateBuildCreateResponse, DTOSandboxTemplateBuildCreated, DTOSandboxTemplateBuildFinalizeResponse, DTOSandboxTemplateBuildFinished, DTOSandboxTemplateBuildResponse, 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, DTOWorkspaceUntypedData, DTOWorkspaceUntypedDataCreatePayload, DTOWorkspaceUntypedDataListResponse, DTOWorkspaceUntypedDataResponse, DTOWorkspaceUntypedDataUpdatePayload, type DTPGetForgeAgentResponse, DesignSystemAnalyticsEndpoint, DesignSystemBffEndpoint, DesignSystemCodeSnapshotsEndpoint, DesignSystemComponentEndpoint, DesignSystemContactsEndpoint, DesignSystemFilesEndpoint, DesignSystemMembersEndpoint, DesignSystemPageRedirectsEndpoint, DesignSystemSourcesEndpoint, DesignSystemVersionsEndpoint, DesignSystemsEndpoint, DimensionsVariableScopeType, DocsStructureRepository, DocumentationEndpoint, DocumentationHierarchySettings, DocumentationPageEditorModel, DocumentationPageV1DTO, ElementPropertyDefinitionsEndpoint, ElementPropertyValuesEndpoint, ElementsActionEndpoint, ElementsEndpoint, ExporterJobsEndpoint, ExportersEndpoint, FeatureRoomBaseYDoc, type FeatureRoomBaseYDocState, type FeatureRoomUpdate, FigmaComponentGroupsEndpoint, FigmaComponentsEndpoint, FigmaFrameStructuresEndpoint, FigmaNodeStructuresEndpoint, FigmaUtils, FilesEndpoint, ForgeAgentsEndpoint, ForgeArtifactsEndpoint, ForgeDocumentsEndpoint, ForgeEndpoint, ForgeFeatureArtifactsEndpoint, ForgeFeatureIterationTagsEndpoint, ForgeFeatureIterationsEndpoint, ForgeFeatureMessagesEndpoint, 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, 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 };
409216
+ export { AuthTokensEndpoint, BackendFeatureRoomYDoc, BackendForgeProjectRoomYDoc, BackendThreadRoomYDoc, BackendVersionRoomYDoc, BlockDefinitionUtils, BlockParsingUtils, BrandsEndpoint, ChatThreadMessagesEndpoint, CodeComponentsEndpoint, CodegenEndpoint, Collection, DTOAccessToken, DTOAccessTokenCreatePayload, DTOAccessTokenFull, DTOAccessTokenFullResponse, DTOAccessTokenListResponse, DTOAccessTokenResponse, DTOAddMembersToForgeProject, DTOAnalyzeCodeComponentsInPackage, DTOAnalyzeCodeComponentsInPackageInput, DTOAnalyzeCodeComponentsInPackageResponse, DTOAppBootstrapDataQuery, DTOAppBootstrapDataResponse, DTOAssetRenderConfiguration, DTOAssetScope, DTOAuthenticatedUser, DTOAuthenticatedUserProfile, DTOAuthenticatedUserResponse, DTOAvailableProductListResponse, DTOBffFigmaImportRequestBody, DTOBffImportRequestBody, DTOBffUploadImportRequestBody, DTOBillingCheckoutCreditsTopUpInput, DTOBillingCheckoutInput, DTOBillingCheckoutMode, DTOBillingCheckoutOldInput, DTOBillingCheckoutResponse, DTOBillingCheckoutSubscriptionChangeInput, DTOBillingCreditsCheckIfCanSpendResponse, DTOBillingCreditsSpendAction, DTOBillingCreditsSpendInput, DTOBillingCreditsSpendResponse, DTOBillingInterval, DTOBillingSubscriptionChangePreviewInput, DTOBillingSupportedModels, DTOBrand, DTOBrandCreatePayload, DTOBrandCreateResponse, DTOBrandGetResponse, DTOBrandUpdatePayload, DTOBrandsListResponse, DTOCodeComponent, DTOCodeComponentCreateInput, DTOCodeComponentListResponse, DTOCodeComponentParentType, DTOCodeComponentProperty, DTOCodeComponentResolvedType, DTOCodeComponentResolvedTypeKind, DTOCodeComponentResponse, DTOCodeComponentUpsertResponse, DTOCodeComponentsCreateInput, 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, DTODependencyDefinition, 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, DTODocumentationDraftChangeType, DTODocumentationDraftState, DTODocumentationDraftStateCreated, DTODocumentationDraftStateDeleted, DTODocumentationDraftStateUpdated, DTODocumentationGroupApprovalState, DTODocumentationGroupCreateActionInputV2, DTODocumentationGroupCreateActionOutputV2, DTODocumentationGroupDeleteActionInputV2, DTODocumentationGroupDeleteActionOutputV2, DTODocumentationGroupDuplicateActionInputV2, DTODocumentationGroupDuplicateActionOutputV2, DTODocumentationGroupMoveActionInputV2, DTODocumentationGroupMoveActionOutputV2, DTODocumentationGroupRestoreActionInput, DTODocumentationGroupRestoreActionOutput, DTODocumentationGroupStructureV1, DTODocumentationGroupUpdateActionInputV2, DTODocumentationGroupUpdateActionOutputV2, DTODocumentationGroupV1, DTODocumentationGroupV2, DTODocumentationHierarchyV2, DTODocumentationItemConfigurationV1, DTODocumentationItemConfigurationV2, DTODocumentationItemHeaderV2, DTODocumentationLinkPreviewRequest, DTODocumentationLinkPreviewResponse, DTODocumentationPageAnalyticsDifference, DTODocumentationPageAnalyticsResponse, DTODocumentationPageAnchor, DTODocumentationPageApprovalState, DTODocumentationPageApprovalStateChangeActionInput, DTODocumentationPageApprovalStateChangeActionOutput, DTODocumentationPageApprovalStateChangeInput, DTODocumentationPageContent, DTODocumentationPageContentGetResponse, DTODocumentationPageCreateActionInputV2, DTODocumentationPageCreateActionOutputV2, DTODocumentationPageDeleteActionInputV2, DTODocumentationPageDeleteActionOutputV2, DTODocumentationPageDependencies, DTODocumentationPageDependenciesGetResponse, DTODocumentationPageDuplicateActionInputV2, DTODocumentationPageDuplicateActionOutputV2, DTODocumentationPageIntervalDifferenceResponse, DTODocumentationPageMoveActionInputV2, DTODocumentationPageMoveActionOutputV2, DTODocumentationPageRestoreActionInput, DTODocumentationPageRestoreActionOutput, DTODocumentationPageRoom, DTODocumentationPageRoomHeaderData, DTODocumentationPageRoomHeaderDataUpdate, DTODocumentationPageRoomResponse, DTODocumentationPageSnapshot, DTODocumentationPageUpdateActionInputV2, DTODocumentationPageUpdateActionOutputV2, DTODocumentationPageUpdateDocumentActionInputV2, DTODocumentationPageUpdateDocumentActionOutputV2, DTODocumentationPageV2, DTODocumentationPublishMetadata, DTODocumentationPublishTypeQueryParams, DTODocumentationSettings, DTODocumentationStructure, DTODocumentationStructureGroupItem, DTODocumentationStructureItem, DTODocumentationStructurePageItem, DTODocumentationTabCreateActionInputV2, DTODocumentationTabCreateActionOutputV2, type DTODocumentationTabGroupCreateActionInputV2, DTODocumentationTabGroupDeleteActionInputV2, DTODocumentationTabGroupDeleteActionOutputV2, DTODownloadAssetsRequest, DTODownloadAssetsResponse, DTODuplicateDocumentationGroupInput, DTODuplicateDocumentationPageInputV2, DTOElementActionInput, type DTOElementActionInputOfType, DTOElementActionOutput, DTOElementPropertyDefinition, DTOElementPropertyDefinitionCreatePayload, DTOElementPropertyDefinitionListResponse, DTOElementPropertyDefinitionOption, DTOElementPropertyDefinitionResponse, DTOElementPropertyDefinitionUpdatePayload, DTOElementPropertyValue, DTOElementPropertyValueListResponse, DTOElementPropertyValueResponse, DTOElementPropertyValueUpsertPaylod, DTOElementPropertyValuesEditActionInput, DTOElementPropertyValuesEditActionOutput, DTOElementView, DTOElementViewBasePropertyColumn, DTOElementViewColumn, DTOElementViewColumnSharedAttributes, DTOElementViewPropertyDefinitionColumn, DTOElementViewThemeColumn, DTOElementViewsListResponse, DTOElementsGetOutput, DTOElementsGetOutputV2, type DTOElementsGetQueryParsed, type DTOElementsGetQueryRaw, DTOElementsGetQuerySchema, DTOElementsGetTypeFilter, DTOEvent, DTOEventDataSourcesImported, DTOEventFigmaNodesRendered, DTOExportJob, DTOExportJobCreateInput, DTOExportJobCreatedBy, DTOExportJobDesignSystemPreview, DTOExportJobDesignSystemVersionPreview, DTOExportJobDestinations, DTOExportJobResponse, DTOExportJobResponseLegacy, DTOExportJobResult, DTOExportJobsListFilter, DTOExporter, DTOExporterCreateInput, DTOExporterDeprecationInput, DTOExporterGitProviderEnum, DTOExporterListQuery, DTOExporterListResponse, DTOExporterMembership, DTOExporterMembershipRole, DTOExporterPropertyDefinition, DTOExporterPropertyDefinitionArray, DTOExporterPropertyDefinitionBoolean, DTOExporterPropertyDefinitionCode, DTOExporterPropertyDefinitionEnum, DTOExporterPropertyDefinitionEnumOption, DTOExporterPropertyDefinitionNumber, DTOExporterPropertyDefinitionObject, DTOExporterPropertyDefinitionString, type DTOExporterPropertyDefinitionValue, DTOExporterPropertyDefinitionsResponse, DTOExporterPropertyType, DTOExporterPropertyValue, DTOExporterPropertyValueMap, DTOExporterResponse, DTOExporterSource, DTOExporterType, DTOExporterUpdateInput, 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, DTOFigmaExportNodePayload, DTOFigmaExportNodeResponse, DTOFigmaNode, DTOFigmaNodeData, DTOFigmaNodeDataV2, DTOFigmaNodeOrigin, DTOFigmaNodeRenderActionInput, DTOFigmaNodeRenderActionOutput, DTOFigmaNodeRenderAsyncActionInput, DTOFigmaNodeRenderAsyncActionOutput, DTOFigmaNodeRenderFormat, DTOFigmaNodeRenderIdInput, DTOFigmaNodeRenderInput, DTOFigmaNodeRenderUrlInput, DTOFigmaNodeRerenderInput, DTOFigmaNodeStructure, DTOFigmaNodeStructureDetail, DTOFigmaNodeStructureDetailResponse, DTOFigmaNodeStructureListResponse, DTOFigmaNodeV2, DTOFigmaSourceUpdatePayload, DTOFile, DTOFileFigmaRenderMode, DTOFileFinalizeBulkPayload, DTOFileFinalizeBulkResponse, DTOFileListResponse, DTOFileReference, DTOFileResponseItem, DTOFileSource, DTOFileSourceFigma, DTOFileSourceUpload, DTOFileUploadBulkPayload, DTOFileUploadBulkResponse, DTOFileUploadFinalizePayload, DTOFileUploadFinalizeResponse, DTOFileUploadItem, DTOFileUploadPayload, DTOFileUploadResponse, DTOFileUploadResponseItem, DTOFilesGetPayload, DTOFilesGetQuery, DTOFilesResponse, DTOForgeAgent, DTOForgeAgentsListResponse, DTOForgeArtifact, DTOForgeArtifactGetResponse, DTOForgeArtifactsListResponse, DTOForgeAvatarBuilder, DTOForgeBuildArtifact, DTOForgeChatExportResponse, DTOForgeChatMessage, DTOForgeChatMessageCreateInput, DTOForgeChatMessageCreateResponse, DTOForgeChatMessageListQuery, DTOForgeChatMessageListResponse, DTOForgeChatMessageScoreInput, DTOForgeChatMessageScoreRequest, DTOForgeChatMessageSender, DTOForgeChatMessageSenderType, DTOForgeChatMessageTagInput, DTOForgeChatThread, DTOForgeChatThreadCreateInput, DTOForgeChatThreadCreateResponse, DTOForgeChatThreadDeleteResponse, DTOForgeChatThreadListQuery, DTOForgeChatThreadListResponse, DTOForgeChatThreadUpdateInput, DTOForgeChatThreadUpdateResponse, DTOForgeComponentSet, DTOForgeComponentSetTypeV2, DTOForgeDocumentGetByIdParam, DTOForgeDocumentGetResponse, DTOForgeEntity, DTOForgeFeatureRoom, DTOForgeFeatureRoomResponse, DTOForgeFigmaArtifact, DTOForgeFigmaNode, 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, DTORegistry, DTORemoveForgeProjectInvitation, DTORemoveForgeProjectMember, DTORenderedAssetFile, DTORestoreDocumentationGroupInput, DTORestoreDocumentationPageInput, DTOSandboxError, DTOSandboxTemplate, DTOSandboxTemplateBuild, DTOSandboxTemplateBuildCreateInput, DTOSandboxTemplateBuildCreateResponse, DTOSandboxTemplateBuildCreated, DTOSandboxTemplateBuildFinalizeResponse, DTOSandboxTemplateBuildFinished, DTOSandboxTemplateBuildResponse, 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, 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 };