@supernova-studio/client 1.78.1 → 1.79.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.mts +136 -3
- package/dist/index.d.ts +136 -3
- package/dist/index.js +10 -4
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +9 -3
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -15601,6 +15601,28 @@ declare const DTOAppBootstrapDataResponse: z.ZodObject<{
|
|
|
15601
15601
|
}>;
|
|
15602
15602
|
type DTOAppBootstrapDataResponse = z.infer<typeof DTOAppBootstrapDataResponse>;
|
|
15603
15603
|
|
|
15604
|
+
declare const DTOCollectionOrigin: z.ZodObject<{
|
|
15605
|
+
id: z.ZodString;
|
|
15606
|
+
parentId: z.ZodOptional<z.ZodString>;
|
|
15607
|
+
sourceIds: z.ZodArray<z.ZodString, "many">;
|
|
15608
|
+
collectionKeyMigrated: z.ZodBoolean;
|
|
15609
|
+
} & {
|
|
15610
|
+
/** @deprecated Use `sourceIds` instead. This field will be removed in the future. */
|
|
15611
|
+
sourceId: z.ZodString;
|
|
15612
|
+
}, "strip", z.ZodTypeAny, {
|
|
15613
|
+
id: string;
|
|
15614
|
+
sourceId: string;
|
|
15615
|
+
sourceIds: string[];
|
|
15616
|
+
collectionKeyMigrated: boolean;
|
|
15617
|
+
parentId?: string | undefined;
|
|
15618
|
+
}, {
|
|
15619
|
+
id: string;
|
|
15620
|
+
sourceId: string;
|
|
15621
|
+
sourceIds: string[];
|
|
15622
|
+
collectionKeyMigrated: boolean;
|
|
15623
|
+
parentId?: string | undefined;
|
|
15624
|
+
}>;
|
|
15625
|
+
type DTOCollectionOrigin = z.infer<typeof DTOCollectionOrigin>;
|
|
15604
15626
|
declare const DTOTokenCollection: z.ZodObject<{
|
|
15605
15627
|
id: z.ZodString;
|
|
15606
15628
|
persistentId: z.ZodString;
|
|
@@ -15629,16 +15651,21 @@ declare const DTOTokenCollection: z.ZodObject<{
|
|
|
15629
15651
|
origin: z.ZodOptional<z.ZodObject<{
|
|
15630
15652
|
id: z.ZodString;
|
|
15631
15653
|
parentId: z.ZodOptional<z.ZodString>;
|
|
15632
|
-
|
|
15654
|
+
sourceIds: z.ZodArray<z.ZodString, "many">;
|
|
15633
15655
|
collectionKeyMigrated: z.ZodBoolean;
|
|
15656
|
+
} & {
|
|
15657
|
+
/** @deprecated Use `sourceIds` instead. This field will be removed in the future. */
|
|
15658
|
+
sourceId: z.ZodString;
|
|
15634
15659
|
}, "strip", z.ZodTypeAny, {
|
|
15635
15660
|
id: string;
|
|
15636
15661
|
sourceId: string;
|
|
15662
|
+
sourceIds: string[];
|
|
15637
15663
|
collectionKeyMigrated: boolean;
|
|
15638
15664
|
parentId?: string | undefined;
|
|
15639
15665
|
}, {
|
|
15640
15666
|
id: string;
|
|
15641
15667
|
sourceId: string;
|
|
15668
|
+
sourceIds: string[];
|
|
15642
15669
|
collectionKeyMigrated: boolean;
|
|
15643
15670
|
parentId?: string | undefined;
|
|
15644
15671
|
}>>;
|
|
@@ -15660,6 +15687,7 @@ declare const DTOTokenCollection: z.ZodObject<{
|
|
|
15660
15687
|
origin?: {
|
|
15661
15688
|
id: string;
|
|
15662
15689
|
sourceId: string;
|
|
15690
|
+
sourceIds: string[];
|
|
15663
15691
|
collectionKeyMigrated: boolean;
|
|
15664
15692
|
parentId?: string | undefined;
|
|
15665
15693
|
} | undefined;
|
|
@@ -15681,6 +15709,7 @@ declare const DTOTokenCollection: z.ZodObject<{
|
|
|
15681
15709
|
origin?: {
|
|
15682
15710
|
id: string;
|
|
15683
15711
|
sourceId: string;
|
|
15712
|
+
sourceIds: string[];
|
|
15684
15713
|
collectionKeyMigrated: boolean;
|
|
15685
15714
|
parentId?: string | undefined;
|
|
15686
15715
|
} | undefined;
|
|
@@ -15715,16 +15744,21 @@ declare const DTOTokenCollectionsListReponse: z.ZodObject<{
|
|
|
15715
15744
|
origin: z.ZodOptional<z.ZodObject<{
|
|
15716
15745
|
id: z.ZodString;
|
|
15717
15746
|
parentId: z.ZodOptional<z.ZodString>;
|
|
15718
|
-
|
|
15747
|
+
sourceIds: z.ZodArray<z.ZodString, "many">;
|
|
15719
15748
|
collectionKeyMigrated: z.ZodBoolean;
|
|
15749
|
+
} & {
|
|
15750
|
+
/** @deprecated Use `sourceIds` instead. This field will be removed in the future. */
|
|
15751
|
+
sourceId: z.ZodString;
|
|
15720
15752
|
}, "strip", z.ZodTypeAny, {
|
|
15721
15753
|
id: string;
|
|
15722
15754
|
sourceId: string;
|
|
15755
|
+
sourceIds: string[];
|
|
15723
15756
|
collectionKeyMigrated: boolean;
|
|
15724
15757
|
parentId?: string | undefined;
|
|
15725
15758
|
}, {
|
|
15726
15759
|
id: string;
|
|
15727
15760
|
sourceId: string;
|
|
15761
|
+
sourceIds: string[];
|
|
15728
15762
|
collectionKeyMigrated: boolean;
|
|
15729
15763
|
parentId?: string | undefined;
|
|
15730
15764
|
}>>;
|
|
@@ -15746,6 +15780,7 @@ declare const DTOTokenCollectionsListReponse: z.ZodObject<{
|
|
|
15746
15780
|
origin?: {
|
|
15747
15781
|
id: string;
|
|
15748
15782
|
sourceId: string;
|
|
15783
|
+
sourceIds: string[];
|
|
15749
15784
|
collectionKeyMigrated: boolean;
|
|
15750
15785
|
parentId?: string | undefined;
|
|
15751
15786
|
} | undefined;
|
|
@@ -15767,6 +15802,7 @@ declare const DTOTokenCollectionsListReponse: z.ZodObject<{
|
|
|
15767
15802
|
origin?: {
|
|
15768
15803
|
id: string;
|
|
15769
15804
|
sourceId: string;
|
|
15805
|
+
sourceIds: string[];
|
|
15770
15806
|
collectionKeyMigrated: boolean;
|
|
15771
15807
|
parentId?: string | undefined;
|
|
15772
15808
|
} | undefined;
|
|
@@ -15790,6 +15826,7 @@ declare const DTOTokenCollectionsListReponse: z.ZodObject<{
|
|
|
15790
15826
|
origin?: {
|
|
15791
15827
|
id: string;
|
|
15792
15828
|
sourceId: string;
|
|
15829
|
+
sourceIds: string[];
|
|
15793
15830
|
collectionKeyMigrated: boolean;
|
|
15794
15831
|
parentId?: string | undefined;
|
|
15795
15832
|
} | undefined;
|
|
@@ -15813,6 +15850,7 @@ declare const DTOTokenCollectionsListReponse: z.ZodObject<{
|
|
|
15813
15850
|
origin?: {
|
|
15814
15851
|
id: string;
|
|
15815
15852
|
sourceId: string;
|
|
15853
|
+
sourceIds: string[];
|
|
15816
15854
|
collectionKeyMigrated: boolean;
|
|
15817
15855
|
parentId?: string | undefined;
|
|
15818
15856
|
} | undefined;
|
|
@@ -157511,12 +157549,15 @@ declare const DTOForgeProjectActionFeatureCreate: z$1.ZodObject<{
|
|
|
157511
157549
|
attachments: z$1.ZodOptional<z$1.ZodObject<{
|
|
157512
157550
|
iterationId: z$1.ZodOptional<z$1.ZodString>;
|
|
157513
157551
|
fileIds: z$1.ZodOptional<z$1.ZodArray<z$1.ZodString, "many">>;
|
|
157552
|
+
templateId: z$1.ZodOptional<z$1.ZodString>;
|
|
157514
157553
|
}, "strip", z$1.ZodTypeAny, {
|
|
157515
157554
|
iterationId?: string | undefined;
|
|
157516
157555
|
fileIds?: string[] | undefined;
|
|
157556
|
+
templateId?: string | undefined;
|
|
157517
157557
|
}, {
|
|
157518
157558
|
iterationId?: string | undefined;
|
|
157519
157559
|
fileIds?: string[] | undefined;
|
|
157560
|
+
templateId?: string | undefined;
|
|
157520
157561
|
}>>;
|
|
157521
157562
|
}, "strip", z$1.ZodTypeAny, {
|
|
157522
157563
|
id: string;
|
|
@@ -157527,6 +157568,7 @@ declare const DTOForgeProjectActionFeatureCreate: z$1.ZodObject<{
|
|
|
157527
157568
|
attachments?: {
|
|
157528
157569
|
iterationId?: string | undefined;
|
|
157529
157570
|
fileIds?: string[] | undefined;
|
|
157571
|
+
templateId?: string | undefined;
|
|
157530
157572
|
} | undefined;
|
|
157531
157573
|
promptMetadata?: Record<string, any> | undefined;
|
|
157532
157574
|
}, {
|
|
@@ -157538,6 +157580,7 @@ declare const DTOForgeProjectActionFeatureCreate: z$1.ZodObject<{
|
|
|
157538
157580
|
attachments?: {
|
|
157539
157581
|
iterationId?: string | undefined;
|
|
157540
157582
|
fileIds?: string[] | undefined;
|
|
157583
|
+
templateId?: string | undefined;
|
|
157541
157584
|
} | undefined;
|
|
157542
157585
|
promptMetadata?: Record<string, any> | undefined;
|
|
157543
157586
|
}>;
|
|
@@ -157553,6 +157596,7 @@ declare const DTOForgeProjectActionFeatureCreate: z$1.ZodObject<{
|
|
|
157553
157596
|
attachments?: {
|
|
157554
157597
|
iterationId?: string | undefined;
|
|
157555
157598
|
fileIds?: string[] | undefined;
|
|
157599
|
+
templateId?: string | undefined;
|
|
157556
157600
|
} | undefined;
|
|
157557
157601
|
promptMetadata?: Record<string, any> | undefined;
|
|
157558
157602
|
};
|
|
@@ -157571,6 +157615,7 @@ declare const DTOForgeProjectActionFeatureCreate: z$1.ZodObject<{
|
|
|
157571
157615
|
attachments?: {
|
|
157572
157616
|
iterationId?: string | undefined;
|
|
157573
157617
|
fileIds?: string[] | undefined;
|
|
157618
|
+
templateId?: string | undefined;
|
|
157574
157619
|
} | undefined;
|
|
157575
157620
|
promptMetadata?: Record<string, any> | undefined;
|
|
157576
157621
|
};
|
|
@@ -157592,6 +157637,7 @@ declare const DTOForgeProjectActionFeatureCreate: z$1.ZodObject<{
|
|
|
157592
157637
|
attachments?: {
|
|
157593
157638
|
iterationId?: string | undefined;
|
|
157594
157639
|
fileIds?: string[] | undefined;
|
|
157640
|
+
templateId?: string | undefined;
|
|
157595
157641
|
} | undefined;
|
|
157596
157642
|
promptMetadata?: Record<string, any> | undefined;
|
|
157597
157643
|
};
|
|
@@ -157613,6 +157659,7 @@ declare const DTOForgeProjectActionFeatureCreate: z$1.ZodObject<{
|
|
|
157613
157659
|
attachments?: {
|
|
157614
157660
|
iterationId?: string | undefined;
|
|
157615
157661
|
fileIds?: string[] | undefined;
|
|
157662
|
+
templateId?: string | undefined;
|
|
157616
157663
|
} | undefined;
|
|
157617
157664
|
promptMetadata?: Record<string, any> | undefined;
|
|
157618
157665
|
};
|
|
@@ -157888,12 +157935,15 @@ declare const DTOForgeProjectActionArtifactCreate: z$1.ZodObject<{
|
|
|
157888
157935
|
attachments: z$1.ZodOptional<z$1.ZodObject<{
|
|
157889
157936
|
iterationId: z$1.ZodOptional<z$1.ZodString>;
|
|
157890
157937
|
fileIds: z$1.ZodOptional<z$1.ZodArray<z$1.ZodString, "many">>;
|
|
157938
|
+
templateId: z$1.ZodOptional<z$1.ZodString>;
|
|
157891
157939
|
}, "strip", z$1.ZodTypeAny, {
|
|
157892
157940
|
iterationId?: string | undefined;
|
|
157893
157941
|
fileIds?: string[] | undefined;
|
|
157942
|
+
templateId?: string | undefined;
|
|
157894
157943
|
}, {
|
|
157895
157944
|
iterationId?: string | undefined;
|
|
157896
157945
|
fileIds?: string[] | undefined;
|
|
157946
|
+
templateId?: string | undefined;
|
|
157897
157947
|
}>>;
|
|
157898
157948
|
}, "strip", z$1.ZodTypeAny, {
|
|
157899
157949
|
id: string;
|
|
@@ -157904,6 +157954,7 @@ declare const DTOForgeProjectActionArtifactCreate: z$1.ZodObject<{
|
|
|
157904
157954
|
attachments?: {
|
|
157905
157955
|
iterationId?: string | undefined;
|
|
157906
157956
|
fileIds?: string[] | undefined;
|
|
157957
|
+
templateId?: string | undefined;
|
|
157907
157958
|
} | undefined;
|
|
157908
157959
|
promptMetadata?: Record<string, any> | undefined;
|
|
157909
157960
|
}, {
|
|
@@ -157915,6 +157966,7 @@ declare const DTOForgeProjectActionArtifactCreate: z$1.ZodObject<{
|
|
|
157915
157966
|
attachments?: {
|
|
157916
157967
|
iterationId?: string | undefined;
|
|
157917
157968
|
fileIds?: string[] | undefined;
|
|
157969
|
+
templateId?: string | undefined;
|
|
157918
157970
|
} | undefined;
|
|
157919
157971
|
promptMetadata?: Record<string, any> | undefined;
|
|
157920
157972
|
}>>;
|
|
@@ -157932,6 +157984,7 @@ declare const DTOForgeProjectActionArtifactCreate: z$1.ZodObject<{
|
|
|
157932
157984
|
attachments?: {
|
|
157933
157985
|
iterationId?: string | undefined;
|
|
157934
157986
|
fileIds?: string[] | undefined;
|
|
157987
|
+
templateId?: string | undefined;
|
|
157935
157988
|
} | undefined;
|
|
157936
157989
|
promptMetadata?: Record<string, any> | undefined;
|
|
157937
157990
|
} | undefined;
|
|
@@ -157949,6 +158002,7 @@ declare const DTOForgeProjectActionArtifactCreate: z$1.ZodObject<{
|
|
|
157949
158002
|
attachments?: {
|
|
157950
158003
|
iterationId?: string | undefined;
|
|
157951
158004
|
fileIds?: string[] | undefined;
|
|
158005
|
+
templateId?: string | undefined;
|
|
157952
158006
|
} | undefined;
|
|
157953
158007
|
promptMetadata?: Record<string, any> | undefined;
|
|
157954
158008
|
} | undefined;
|
|
@@ -157969,6 +158023,7 @@ declare const DTOForgeProjectActionArtifactCreate: z$1.ZodObject<{
|
|
|
157969
158023
|
attachments?: {
|
|
157970
158024
|
iterationId?: string | undefined;
|
|
157971
158025
|
fileIds?: string[] | undefined;
|
|
158026
|
+
templateId?: string | undefined;
|
|
157972
158027
|
} | undefined;
|
|
157973
158028
|
promptMetadata?: Record<string, any> | undefined;
|
|
157974
158029
|
} | undefined;
|
|
@@ -157989,6 +158044,7 @@ declare const DTOForgeProjectActionArtifactCreate: z$1.ZodObject<{
|
|
|
157989
158044
|
attachments?: {
|
|
157990
158045
|
iterationId?: string | undefined;
|
|
157991
158046
|
fileIds?: string[] | undefined;
|
|
158047
|
+
templateId?: string | undefined;
|
|
157992
158048
|
} | undefined;
|
|
157993
158049
|
promptMetadata?: Record<string, any> | undefined;
|
|
157994
158050
|
} | undefined;
|
|
@@ -158355,12 +158411,15 @@ declare const DTOForgeProjectAction: z$1.ZodIntersection<z$1.ZodDiscriminatedUni
|
|
|
158355
158411
|
attachments: z$1.ZodOptional<z$1.ZodObject<{
|
|
158356
158412
|
iterationId: z$1.ZodOptional<z$1.ZodString>;
|
|
158357
158413
|
fileIds: z$1.ZodOptional<z$1.ZodArray<z$1.ZodString, "many">>;
|
|
158414
|
+
templateId: z$1.ZodOptional<z$1.ZodString>;
|
|
158358
158415
|
}, "strip", z$1.ZodTypeAny, {
|
|
158359
158416
|
iterationId?: string | undefined;
|
|
158360
158417
|
fileIds?: string[] | undefined;
|
|
158418
|
+
templateId?: string | undefined;
|
|
158361
158419
|
}, {
|
|
158362
158420
|
iterationId?: string | undefined;
|
|
158363
158421
|
fileIds?: string[] | undefined;
|
|
158422
|
+
templateId?: string | undefined;
|
|
158364
158423
|
}>>;
|
|
158365
158424
|
}, "strip", z$1.ZodTypeAny, {
|
|
158366
158425
|
id: string;
|
|
@@ -158371,6 +158430,7 @@ declare const DTOForgeProjectAction: z$1.ZodIntersection<z$1.ZodDiscriminatedUni
|
|
|
158371
158430
|
attachments?: {
|
|
158372
158431
|
iterationId?: string | undefined;
|
|
158373
158432
|
fileIds?: string[] | undefined;
|
|
158433
|
+
templateId?: string | undefined;
|
|
158374
158434
|
} | undefined;
|
|
158375
158435
|
promptMetadata?: Record<string, any> | undefined;
|
|
158376
158436
|
}, {
|
|
@@ -158382,6 +158442,7 @@ declare const DTOForgeProjectAction: z$1.ZodIntersection<z$1.ZodDiscriminatedUni
|
|
|
158382
158442
|
attachments?: {
|
|
158383
158443
|
iterationId?: string | undefined;
|
|
158384
158444
|
fileIds?: string[] | undefined;
|
|
158445
|
+
templateId?: string | undefined;
|
|
158385
158446
|
} | undefined;
|
|
158386
158447
|
promptMetadata?: Record<string, any> | undefined;
|
|
158387
158448
|
}>;
|
|
@@ -158397,6 +158458,7 @@ declare const DTOForgeProjectAction: z$1.ZodIntersection<z$1.ZodDiscriminatedUni
|
|
|
158397
158458
|
attachments?: {
|
|
158398
158459
|
iterationId?: string | undefined;
|
|
158399
158460
|
fileIds?: string[] | undefined;
|
|
158461
|
+
templateId?: string | undefined;
|
|
158400
158462
|
} | undefined;
|
|
158401
158463
|
promptMetadata?: Record<string, any> | undefined;
|
|
158402
158464
|
};
|
|
@@ -158415,6 +158477,7 @@ declare const DTOForgeProjectAction: z$1.ZodIntersection<z$1.ZodDiscriminatedUni
|
|
|
158415
158477
|
attachments?: {
|
|
158416
158478
|
iterationId?: string | undefined;
|
|
158417
158479
|
fileIds?: string[] | undefined;
|
|
158480
|
+
templateId?: string | undefined;
|
|
158418
158481
|
} | undefined;
|
|
158419
158482
|
promptMetadata?: Record<string, any> | undefined;
|
|
158420
158483
|
};
|
|
@@ -158436,6 +158499,7 @@ declare const DTOForgeProjectAction: z$1.ZodIntersection<z$1.ZodDiscriminatedUni
|
|
|
158436
158499
|
attachments?: {
|
|
158437
158500
|
iterationId?: string | undefined;
|
|
158438
158501
|
fileIds?: string[] | undefined;
|
|
158502
|
+
templateId?: string | undefined;
|
|
158439
158503
|
} | undefined;
|
|
158440
158504
|
promptMetadata?: Record<string, any> | undefined;
|
|
158441
158505
|
};
|
|
@@ -158457,6 +158521,7 @@ declare const DTOForgeProjectAction: z$1.ZodIntersection<z$1.ZodDiscriminatedUni
|
|
|
158457
158521
|
attachments?: {
|
|
158458
158522
|
iterationId?: string | undefined;
|
|
158459
158523
|
fileIds?: string[] | undefined;
|
|
158524
|
+
templateId?: string | undefined;
|
|
158460
158525
|
} | undefined;
|
|
158461
158526
|
promptMetadata?: Record<string, any> | undefined;
|
|
158462
158527
|
};
|
|
@@ -158724,12 +158789,15 @@ declare const DTOForgeProjectAction: z$1.ZodIntersection<z$1.ZodDiscriminatedUni
|
|
|
158724
158789
|
attachments: z$1.ZodOptional<z$1.ZodObject<{
|
|
158725
158790
|
iterationId: z$1.ZodOptional<z$1.ZodString>;
|
|
158726
158791
|
fileIds: z$1.ZodOptional<z$1.ZodArray<z$1.ZodString, "many">>;
|
|
158792
|
+
templateId: z$1.ZodOptional<z$1.ZodString>;
|
|
158727
158793
|
}, "strip", z$1.ZodTypeAny, {
|
|
158728
158794
|
iterationId?: string | undefined;
|
|
158729
158795
|
fileIds?: string[] | undefined;
|
|
158796
|
+
templateId?: string | undefined;
|
|
158730
158797
|
}, {
|
|
158731
158798
|
iterationId?: string | undefined;
|
|
158732
158799
|
fileIds?: string[] | undefined;
|
|
158800
|
+
templateId?: string | undefined;
|
|
158733
158801
|
}>>;
|
|
158734
158802
|
}, "strip", z$1.ZodTypeAny, {
|
|
158735
158803
|
id: string;
|
|
@@ -158740,6 +158808,7 @@ declare const DTOForgeProjectAction: z$1.ZodIntersection<z$1.ZodDiscriminatedUni
|
|
|
158740
158808
|
attachments?: {
|
|
158741
158809
|
iterationId?: string | undefined;
|
|
158742
158810
|
fileIds?: string[] | undefined;
|
|
158811
|
+
templateId?: string | undefined;
|
|
158743
158812
|
} | undefined;
|
|
158744
158813
|
promptMetadata?: Record<string, any> | undefined;
|
|
158745
158814
|
}, {
|
|
@@ -158751,6 +158820,7 @@ declare const DTOForgeProjectAction: z$1.ZodIntersection<z$1.ZodDiscriminatedUni
|
|
|
158751
158820
|
attachments?: {
|
|
158752
158821
|
iterationId?: string | undefined;
|
|
158753
158822
|
fileIds?: string[] | undefined;
|
|
158823
|
+
templateId?: string | undefined;
|
|
158754
158824
|
} | undefined;
|
|
158755
158825
|
promptMetadata?: Record<string, any> | undefined;
|
|
158756
158826
|
}>>;
|
|
@@ -158768,6 +158838,7 @@ declare const DTOForgeProjectAction: z$1.ZodIntersection<z$1.ZodDiscriminatedUni
|
|
|
158768
158838
|
attachments?: {
|
|
158769
158839
|
iterationId?: string | undefined;
|
|
158770
158840
|
fileIds?: string[] | undefined;
|
|
158841
|
+
templateId?: string | undefined;
|
|
158771
158842
|
} | undefined;
|
|
158772
158843
|
promptMetadata?: Record<string, any> | undefined;
|
|
158773
158844
|
} | undefined;
|
|
@@ -158785,6 +158856,7 @@ declare const DTOForgeProjectAction: z$1.ZodIntersection<z$1.ZodDiscriminatedUni
|
|
|
158785
158856
|
attachments?: {
|
|
158786
158857
|
iterationId?: string | undefined;
|
|
158787
158858
|
fileIds?: string[] | undefined;
|
|
158859
|
+
templateId?: string | undefined;
|
|
158788
158860
|
} | undefined;
|
|
158789
158861
|
promptMetadata?: Record<string, any> | undefined;
|
|
158790
158862
|
} | undefined;
|
|
@@ -158805,6 +158877,7 @@ declare const DTOForgeProjectAction: z$1.ZodIntersection<z$1.ZodDiscriminatedUni
|
|
|
158805
158877
|
attachments?: {
|
|
158806
158878
|
iterationId?: string | undefined;
|
|
158807
158879
|
fileIds?: string[] | undefined;
|
|
158880
|
+
templateId?: string | undefined;
|
|
158808
158881
|
} | undefined;
|
|
158809
158882
|
promptMetadata?: Record<string, any> | undefined;
|
|
158810
158883
|
} | undefined;
|
|
@@ -158825,6 +158898,7 @@ declare const DTOForgeProjectAction: z$1.ZodIntersection<z$1.ZodDiscriminatedUni
|
|
|
158825
158898
|
attachments?: {
|
|
158826
158899
|
iterationId?: string | undefined;
|
|
158827
158900
|
fileIds?: string[] | undefined;
|
|
158901
|
+
templateId?: string | undefined;
|
|
158828
158902
|
} | undefined;
|
|
158829
158903
|
promptMetadata?: Record<string, any> | undefined;
|
|
158830
158904
|
} | undefined;
|
|
@@ -159343,12 +159417,15 @@ declare const DTOForgeProjectArtifactCreateInput: z.ZodObject<{
|
|
|
159343
159417
|
attachments: z.ZodOptional<z.ZodObject<{
|
|
159344
159418
|
iterationId: z.ZodOptional<z.ZodString>;
|
|
159345
159419
|
fileIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
159420
|
+
templateId: z.ZodOptional<z.ZodString>;
|
|
159346
159421
|
}, "strip", z.ZodTypeAny, {
|
|
159347
159422
|
iterationId?: string | undefined;
|
|
159348
159423
|
fileIds?: string[] | undefined;
|
|
159424
|
+
templateId?: string | undefined;
|
|
159349
159425
|
}, {
|
|
159350
159426
|
iterationId?: string | undefined;
|
|
159351
159427
|
fileIds?: string[] | undefined;
|
|
159428
|
+
templateId?: string | undefined;
|
|
159352
159429
|
}>>;
|
|
159353
159430
|
}, "strip", z.ZodTypeAny, {
|
|
159354
159431
|
id: string;
|
|
@@ -159359,6 +159436,7 @@ declare const DTOForgeProjectArtifactCreateInput: z.ZodObject<{
|
|
|
159359
159436
|
attachments?: {
|
|
159360
159437
|
iterationId?: string | undefined;
|
|
159361
159438
|
fileIds?: string[] | undefined;
|
|
159439
|
+
templateId?: string | undefined;
|
|
159362
159440
|
} | undefined;
|
|
159363
159441
|
promptMetadata?: Record<string, any> | undefined;
|
|
159364
159442
|
}, {
|
|
@@ -159370,6 +159448,7 @@ declare const DTOForgeProjectArtifactCreateInput: z.ZodObject<{
|
|
|
159370
159448
|
attachments?: {
|
|
159371
159449
|
iterationId?: string | undefined;
|
|
159372
159450
|
fileIds?: string[] | undefined;
|
|
159451
|
+
templateId?: string | undefined;
|
|
159373
159452
|
} | undefined;
|
|
159374
159453
|
promptMetadata?: Record<string, any> | undefined;
|
|
159375
159454
|
}>>;
|
|
@@ -159387,6 +159466,7 @@ declare const DTOForgeProjectArtifactCreateInput: z.ZodObject<{
|
|
|
159387
159466
|
attachments?: {
|
|
159388
159467
|
iterationId?: string | undefined;
|
|
159389
159468
|
fileIds?: string[] | undefined;
|
|
159469
|
+
templateId?: string | undefined;
|
|
159390
159470
|
} | undefined;
|
|
159391
159471
|
promptMetadata?: Record<string, any> | undefined;
|
|
159392
159472
|
} | undefined;
|
|
@@ -159404,6 +159484,7 @@ declare const DTOForgeProjectArtifactCreateInput: z.ZodObject<{
|
|
|
159404
159484
|
attachments?: {
|
|
159405
159485
|
iterationId?: string | undefined;
|
|
159406
159486
|
fileIds?: string[] | undefined;
|
|
159487
|
+
templateId?: string | undefined;
|
|
159407
159488
|
} | undefined;
|
|
159408
159489
|
promptMetadata?: Record<string, any> | undefined;
|
|
159409
159490
|
} | undefined;
|
|
@@ -266039,12 +266120,15 @@ declare const DTOForgeProjectFeatureCreateInput: z$1.ZodObject<{
|
|
|
266039
266120
|
attachments: z$1.ZodOptional<z$1.ZodObject<{
|
|
266040
266121
|
iterationId: z$1.ZodOptional<z$1.ZodString>;
|
|
266041
266122
|
fileIds: z$1.ZodOptional<z$1.ZodArray<z$1.ZodString, "many">>;
|
|
266123
|
+
templateId: z$1.ZodOptional<z$1.ZodString>;
|
|
266042
266124
|
}, "strip", z$1.ZodTypeAny, {
|
|
266043
266125
|
iterationId?: string | undefined;
|
|
266044
266126
|
fileIds?: string[] | undefined;
|
|
266127
|
+
templateId?: string | undefined;
|
|
266045
266128
|
}, {
|
|
266046
266129
|
iterationId?: string | undefined;
|
|
266047
266130
|
fileIds?: string[] | undefined;
|
|
266131
|
+
templateId?: string | undefined;
|
|
266048
266132
|
}>>;
|
|
266049
266133
|
}, "strip", z$1.ZodTypeAny, {
|
|
266050
266134
|
id: string;
|
|
@@ -266055,6 +266139,7 @@ declare const DTOForgeProjectFeatureCreateInput: z$1.ZodObject<{
|
|
|
266055
266139
|
attachments?: {
|
|
266056
266140
|
iterationId?: string | undefined;
|
|
266057
266141
|
fileIds?: string[] | undefined;
|
|
266142
|
+
templateId?: string | undefined;
|
|
266058
266143
|
} | undefined;
|
|
266059
266144
|
promptMetadata?: Record<string, any> | undefined;
|
|
266060
266145
|
}, {
|
|
@@ -266066,6 +266151,7 @@ declare const DTOForgeProjectFeatureCreateInput: z$1.ZodObject<{
|
|
|
266066
266151
|
attachments?: {
|
|
266067
266152
|
iterationId?: string | undefined;
|
|
266068
266153
|
fileIds?: string[] | undefined;
|
|
266154
|
+
templateId?: string | undefined;
|
|
266069
266155
|
} | undefined;
|
|
266070
266156
|
promptMetadata?: Record<string, any> | undefined;
|
|
266071
266157
|
}>;
|
|
@@ -266081,6 +266167,7 @@ declare const DTOForgeProjectFeatureCreateInput: z$1.ZodObject<{
|
|
|
266081
266167
|
attachments?: {
|
|
266082
266168
|
iterationId?: string | undefined;
|
|
266083
266169
|
fileIds?: string[] | undefined;
|
|
266170
|
+
templateId?: string | undefined;
|
|
266084
266171
|
} | undefined;
|
|
266085
266172
|
promptMetadata?: Record<string, any> | undefined;
|
|
266086
266173
|
};
|
|
@@ -266099,6 +266186,7 @@ declare const DTOForgeProjectFeatureCreateInput: z$1.ZodObject<{
|
|
|
266099
266186
|
attachments?: {
|
|
266100
266187
|
iterationId?: string | undefined;
|
|
266101
266188
|
fileIds?: string[] | undefined;
|
|
266189
|
+
templateId?: string | undefined;
|
|
266102
266190
|
} | undefined;
|
|
266103
266191
|
promptMetadata?: Record<string, any> | undefined;
|
|
266104
266192
|
};
|
|
@@ -303045,12 +303133,15 @@ declare const DTOForgeProjectCreate: z.ZodObject<Pick<{
|
|
|
303045
303133
|
attachments: z.ZodOptional<z.ZodObject<{
|
|
303046
303134
|
iterationId: z.ZodOptional<z.ZodString>;
|
|
303047
303135
|
fileIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
303136
|
+
templateId: z.ZodOptional<z.ZodString>;
|
|
303048
303137
|
}, "strip", z.ZodTypeAny, {
|
|
303049
303138
|
iterationId?: string | undefined;
|
|
303050
303139
|
fileIds?: string[] | undefined;
|
|
303140
|
+
templateId?: string | undefined;
|
|
303051
303141
|
}, {
|
|
303052
303142
|
iterationId?: string | undefined;
|
|
303053
303143
|
fileIds?: string[] | undefined;
|
|
303144
|
+
templateId?: string | undefined;
|
|
303054
303145
|
}>>;
|
|
303055
303146
|
}, "strip", z.ZodTypeAny, {
|
|
303056
303147
|
id: string;
|
|
@@ -303061,6 +303152,7 @@ declare const DTOForgeProjectCreate: z.ZodObject<Pick<{
|
|
|
303061
303152
|
attachments?: {
|
|
303062
303153
|
iterationId?: string | undefined;
|
|
303063
303154
|
fileIds?: string[] | undefined;
|
|
303155
|
+
templateId?: string | undefined;
|
|
303064
303156
|
} | undefined;
|
|
303065
303157
|
promptMetadata?: Record<string, any> | undefined;
|
|
303066
303158
|
}, {
|
|
@@ -303072,6 +303164,7 @@ declare const DTOForgeProjectCreate: z.ZodObject<Pick<{
|
|
|
303072
303164
|
attachments?: {
|
|
303073
303165
|
iterationId?: string | undefined;
|
|
303074
303166
|
fileIds?: string[] | undefined;
|
|
303167
|
+
templateId?: string | undefined;
|
|
303075
303168
|
} | undefined;
|
|
303076
303169
|
promptMetadata?: Record<string, any> | undefined;
|
|
303077
303170
|
}>;
|
|
@@ -303087,6 +303180,7 @@ declare const DTOForgeProjectCreate: z.ZodObject<Pick<{
|
|
|
303087
303180
|
attachments?: {
|
|
303088
303181
|
iterationId?: string | undefined;
|
|
303089
303182
|
fileIds?: string[] | undefined;
|
|
303183
|
+
templateId?: string | undefined;
|
|
303090
303184
|
} | undefined;
|
|
303091
303185
|
promptMetadata?: Record<string, any> | undefined;
|
|
303092
303186
|
};
|
|
@@ -303105,6 +303199,7 @@ declare const DTOForgeProjectCreate: z.ZodObject<Pick<{
|
|
|
303105
303199
|
attachments?: {
|
|
303106
303200
|
iterationId?: string | undefined;
|
|
303107
303201
|
fileIds?: string[] | undefined;
|
|
303202
|
+
templateId?: string | undefined;
|
|
303108
303203
|
} | undefined;
|
|
303109
303204
|
promptMetadata?: Record<string, any> | undefined;
|
|
303110
303205
|
};
|
|
@@ -303248,12 +303343,15 @@ declare const DTOForgeProjectCreate: z.ZodObject<Pick<{
|
|
|
303248
303343
|
attachments: z.ZodOptional<z.ZodObject<{
|
|
303249
303344
|
iterationId: z.ZodOptional<z.ZodString>;
|
|
303250
303345
|
fileIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
303346
|
+
templateId: z.ZodOptional<z.ZodString>;
|
|
303251
303347
|
}, "strip", z.ZodTypeAny, {
|
|
303252
303348
|
iterationId?: string | undefined;
|
|
303253
303349
|
fileIds?: string[] | undefined;
|
|
303350
|
+
templateId?: string | undefined;
|
|
303254
303351
|
}, {
|
|
303255
303352
|
iterationId?: string | undefined;
|
|
303256
303353
|
fileIds?: string[] | undefined;
|
|
303354
|
+
templateId?: string | undefined;
|
|
303257
303355
|
}>>;
|
|
303258
303356
|
}, "strip", z.ZodTypeAny, {
|
|
303259
303357
|
id: string;
|
|
@@ -303264,6 +303362,7 @@ declare const DTOForgeProjectCreate: z.ZodObject<Pick<{
|
|
|
303264
303362
|
attachments?: {
|
|
303265
303363
|
iterationId?: string | undefined;
|
|
303266
303364
|
fileIds?: string[] | undefined;
|
|
303365
|
+
templateId?: string | undefined;
|
|
303267
303366
|
} | undefined;
|
|
303268
303367
|
promptMetadata?: Record<string, any> | undefined;
|
|
303269
303368
|
}, {
|
|
@@ -303275,6 +303374,7 @@ declare const DTOForgeProjectCreate: z.ZodObject<Pick<{
|
|
|
303275
303374
|
attachments?: {
|
|
303276
303375
|
iterationId?: string | undefined;
|
|
303277
303376
|
fileIds?: string[] | undefined;
|
|
303377
|
+
templateId?: string | undefined;
|
|
303278
303378
|
} | undefined;
|
|
303279
303379
|
promptMetadata?: Record<string, any> | undefined;
|
|
303280
303380
|
}>>;
|
|
@@ -303292,6 +303392,7 @@ declare const DTOForgeProjectCreate: z.ZodObject<Pick<{
|
|
|
303292
303392
|
attachments?: {
|
|
303293
303393
|
iterationId?: string | undefined;
|
|
303294
303394
|
fileIds?: string[] | undefined;
|
|
303395
|
+
templateId?: string | undefined;
|
|
303295
303396
|
} | undefined;
|
|
303296
303397
|
promptMetadata?: Record<string, any> | undefined;
|
|
303297
303398
|
} | undefined;
|
|
@@ -303309,6 +303410,7 @@ declare const DTOForgeProjectCreate: z.ZodObject<Pick<{
|
|
|
303309
303410
|
attachments?: {
|
|
303310
303411
|
iterationId?: string | undefined;
|
|
303311
303412
|
fileIds?: string[] | undefined;
|
|
303413
|
+
templateId?: string | undefined;
|
|
303312
303414
|
} | undefined;
|
|
303313
303415
|
promptMetadata?: Record<string, any> | undefined;
|
|
303314
303416
|
} | undefined;
|
|
@@ -303346,6 +303448,7 @@ declare const DTOForgeProjectCreate: z.ZodObject<Pick<{
|
|
|
303346
303448
|
attachments?: {
|
|
303347
303449
|
iterationId?: string | undefined;
|
|
303348
303450
|
fileIds?: string[] | undefined;
|
|
303451
|
+
templateId?: string | undefined;
|
|
303349
303452
|
} | undefined;
|
|
303350
303453
|
promptMetadata?: Record<string, any> | undefined;
|
|
303351
303454
|
};
|
|
@@ -303367,6 +303470,7 @@ declare const DTOForgeProjectCreate: z.ZodObject<Pick<{
|
|
|
303367
303470
|
attachments?: {
|
|
303368
303471
|
iterationId?: string | undefined;
|
|
303369
303472
|
fileIds?: string[] | undefined;
|
|
303473
|
+
templateId?: string | undefined;
|
|
303370
303474
|
} | undefined;
|
|
303371
303475
|
promptMetadata?: Record<string, any> | undefined;
|
|
303372
303476
|
} | undefined;
|
|
@@ -303402,6 +303506,7 @@ declare const DTOForgeProjectCreate: z.ZodObject<Pick<{
|
|
|
303402
303506
|
attachments?: {
|
|
303403
303507
|
iterationId?: string | undefined;
|
|
303404
303508
|
fileIds?: string[] | undefined;
|
|
303509
|
+
templateId?: string | undefined;
|
|
303405
303510
|
} | undefined;
|
|
303406
303511
|
promptMetadata?: Record<string, any> | undefined;
|
|
303407
303512
|
};
|
|
@@ -303423,6 +303528,7 @@ declare const DTOForgeProjectCreate: z.ZodObject<Pick<{
|
|
|
303423
303528
|
attachments?: {
|
|
303424
303529
|
iterationId?: string | undefined;
|
|
303425
303530
|
fileIds?: string[] | undefined;
|
|
303531
|
+
templateId?: string | undefined;
|
|
303426
303532
|
} | undefined;
|
|
303427
303533
|
promptMetadata?: Record<string, any> | undefined;
|
|
303428
303534
|
} | undefined;
|
|
@@ -303587,12 +303693,15 @@ declare const DTOForgeProjectUpdate: z.ZodObject<{
|
|
|
303587
303693
|
attachments: z.ZodOptional<z.ZodObject<{
|
|
303588
303694
|
iterationId: z.ZodOptional<z.ZodString>;
|
|
303589
303695
|
fileIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
303696
|
+
templateId: z.ZodOptional<z.ZodString>;
|
|
303590
303697
|
}, "strip", z.ZodTypeAny, {
|
|
303591
303698
|
iterationId?: string | undefined;
|
|
303592
303699
|
fileIds?: string[] | undefined;
|
|
303700
|
+
templateId?: string | undefined;
|
|
303593
303701
|
}, {
|
|
303594
303702
|
iterationId?: string | undefined;
|
|
303595
303703
|
fileIds?: string[] | undefined;
|
|
303704
|
+
templateId?: string | undefined;
|
|
303596
303705
|
}>>;
|
|
303597
303706
|
}, "strip", z.ZodTypeAny, {
|
|
303598
303707
|
id: string;
|
|
@@ -303603,6 +303712,7 @@ declare const DTOForgeProjectUpdate: z.ZodObject<{
|
|
|
303603
303712
|
attachments?: {
|
|
303604
303713
|
iterationId?: string | undefined;
|
|
303605
303714
|
fileIds?: string[] | undefined;
|
|
303715
|
+
templateId?: string | undefined;
|
|
303606
303716
|
} | undefined;
|
|
303607
303717
|
promptMetadata?: Record<string, any> | undefined;
|
|
303608
303718
|
}, {
|
|
@@ -303614,6 +303724,7 @@ declare const DTOForgeProjectUpdate: z.ZodObject<{
|
|
|
303614
303724
|
attachments?: {
|
|
303615
303725
|
iterationId?: string | undefined;
|
|
303616
303726
|
fileIds?: string[] | undefined;
|
|
303727
|
+
templateId?: string | undefined;
|
|
303617
303728
|
} | undefined;
|
|
303618
303729
|
promptMetadata?: Record<string, any> | undefined;
|
|
303619
303730
|
}>;
|
|
@@ -303629,6 +303740,7 @@ declare const DTOForgeProjectUpdate: z.ZodObject<{
|
|
|
303629
303740
|
attachments?: {
|
|
303630
303741
|
iterationId?: string | undefined;
|
|
303631
303742
|
fileIds?: string[] | undefined;
|
|
303743
|
+
templateId?: string | undefined;
|
|
303632
303744
|
} | undefined;
|
|
303633
303745
|
promptMetadata?: Record<string, any> | undefined;
|
|
303634
303746
|
};
|
|
@@ -303647,6 +303759,7 @@ declare const DTOForgeProjectUpdate: z.ZodObject<{
|
|
|
303647
303759
|
attachments?: {
|
|
303648
303760
|
iterationId?: string | undefined;
|
|
303649
303761
|
fileIds?: string[] | undefined;
|
|
303762
|
+
templateId?: string | undefined;
|
|
303650
303763
|
} | undefined;
|
|
303651
303764
|
promptMetadata?: Record<string, any> | undefined;
|
|
303652
303765
|
};
|
|
@@ -303790,12 +303903,15 @@ declare const DTOForgeProjectUpdate: z.ZodObject<{
|
|
|
303790
303903
|
attachments: z.ZodOptional<z.ZodObject<{
|
|
303791
303904
|
iterationId: z.ZodOptional<z.ZodString>;
|
|
303792
303905
|
fileIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
303906
|
+
templateId: z.ZodOptional<z.ZodString>;
|
|
303793
303907
|
}, "strip", z.ZodTypeAny, {
|
|
303794
303908
|
iterationId?: string | undefined;
|
|
303795
303909
|
fileIds?: string[] | undefined;
|
|
303910
|
+
templateId?: string | undefined;
|
|
303796
303911
|
}, {
|
|
303797
303912
|
iterationId?: string | undefined;
|
|
303798
303913
|
fileIds?: string[] | undefined;
|
|
303914
|
+
templateId?: string | undefined;
|
|
303799
303915
|
}>>;
|
|
303800
303916
|
}, "strip", z.ZodTypeAny, {
|
|
303801
303917
|
id: string;
|
|
@@ -303806,6 +303922,7 @@ declare const DTOForgeProjectUpdate: z.ZodObject<{
|
|
|
303806
303922
|
attachments?: {
|
|
303807
303923
|
iterationId?: string | undefined;
|
|
303808
303924
|
fileIds?: string[] | undefined;
|
|
303925
|
+
templateId?: string | undefined;
|
|
303809
303926
|
} | undefined;
|
|
303810
303927
|
promptMetadata?: Record<string, any> | undefined;
|
|
303811
303928
|
}, {
|
|
@@ -303817,6 +303934,7 @@ declare const DTOForgeProjectUpdate: z.ZodObject<{
|
|
|
303817
303934
|
attachments?: {
|
|
303818
303935
|
iterationId?: string | undefined;
|
|
303819
303936
|
fileIds?: string[] | undefined;
|
|
303937
|
+
templateId?: string | undefined;
|
|
303820
303938
|
} | undefined;
|
|
303821
303939
|
promptMetadata?: Record<string, any> | undefined;
|
|
303822
303940
|
}>>;
|
|
@@ -303834,6 +303952,7 @@ declare const DTOForgeProjectUpdate: z.ZodObject<{
|
|
|
303834
303952
|
attachments?: {
|
|
303835
303953
|
iterationId?: string | undefined;
|
|
303836
303954
|
fileIds?: string[] | undefined;
|
|
303955
|
+
templateId?: string | undefined;
|
|
303837
303956
|
} | undefined;
|
|
303838
303957
|
promptMetadata?: Record<string, any> | undefined;
|
|
303839
303958
|
} | undefined;
|
|
@@ -303851,6 +303970,7 @@ declare const DTOForgeProjectUpdate: z.ZodObject<{
|
|
|
303851
303970
|
attachments?: {
|
|
303852
303971
|
iterationId?: string | undefined;
|
|
303853
303972
|
fileIds?: string[] | undefined;
|
|
303973
|
+
templateId?: string | undefined;
|
|
303854
303974
|
} | undefined;
|
|
303855
303975
|
promptMetadata?: Record<string, any> | undefined;
|
|
303856
303976
|
} | undefined;
|
|
@@ -303887,6 +304007,7 @@ declare const DTOForgeProjectUpdate: z.ZodObject<{
|
|
|
303887
304007
|
attachments?: {
|
|
303888
304008
|
iterationId?: string | undefined;
|
|
303889
304009
|
fileIds?: string[] | undefined;
|
|
304010
|
+
templateId?: string | undefined;
|
|
303890
304011
|
} | undefined;
|
|
303891
304012
|
promptMetadata?: Record<string, any> | undefined;
|
|
303892
304013
|
};
|
|
@@ -303908,6 +304029,7 @@ declare const DTOForgeProjectUpdate: z.ZodObject<{
|
|
|
303908
304029
|
attachments?: {
|
|
303909
304030
|
iterationId?: string | undefined;
|
|
303910
304031
|
fileIds?: string[] | undefined;
|
|
304032
|
+
templateId?: string | undefined;
|
|
303911
304033
|
} | undefined;
|
|
303912
304034
|
promptMetadata?: Record<string, any> | undefined;
|
|
303913
304035
|
} | undefined;
|
|
@@ -303941,6 +304063,7 @@ declare const DTOForgeProjectUpdate: z.ZodObject<{
|
|
|
303941
304063
|
attachments?: {
|
|
303942
304064
|
iterationId?: string | undefined;
|
|
303943
304065
|
fileIds?: string[] | undefined;
|
|
304066
|
+
templateId?: string | undefined;
|
|
303944
304067
|
} | undefined;
|
|
303945
304068
|
promptMetadata?: Record<string, any> | undefined;
|
|
303946
304069
|
};
|
|
@@ -303962,6 +304085,7 @@ declare const DTOForgeProjectUpdate: z.ZodObject<{
|
|
|
303962
304085
|
attachments?: {
|
|
303963
304086
|
iterationId?: string | undefined;
|
|
303964
304087
|
fileIds?: string[] | undefined;
|
|
304088
|
+
templateId?: string | undefined;
|
|
303965
304089
|
} | undefined;
|
|
303966
304090
|
promptMetadata?: Record<string, any> | undefined;
|
|
303967
304091
|
} | undefined;
|
|
@@ -352007,12 +352131,15 @@ type DTOThreadAgentResponseTracker = z$1.infer<typeof DTOThreadAgentResponseTrac
|
|
|
352007
352131
|
declare const DTOThreadMessageAttachmentsCreateInput: z$1.ZodObject<{
|
|
352008
352132
|
iterationId: z$1.ZodOptional<z$1.ZodString>;
|
|
352009
352133
|
fileIds: z$1.ZodOptional<z$1.ZodArray<z$1.ZodString, "many">>;
|
|
352134
|
+
templateId: z$1.ZodOptional<z$1.ZodString>;
|
|
352010
352135
|
}, "strip", z$1.ZodTypeAny, {
|
|
352011
352136
|
iterationId?: string | undefined;
|
|
352012
352137
|
fileIds?: string[] | undefined;
|
|
352138
|
+
templateId?: string | undefined;
|
|
352013
352139
|
}, {
|
|
352014
352140
|
iterationId?: string | undefined;
|
|
352015
352141
|
fileIds?: string[] | undefined;
|
|
352142
|
+
templateId?: string | undefined;
|
|
352016
352143
|
}>;
|
|
352017
352144
|
type DTOThreadMessageAttachmentsCreateInput = z$1.infer<typeof DTOThreadMessageAttachmentsCreateInput>;
|
|
352018
352145
|
declare const DTOThreadMessageFinalizeInput: z$1.ZodObject<{
|
|
@@ -352403,12 +352530,15 @@ declare const DTOThreadMessageCreateInput: z$1.ZodObject<Pick<{
|
|
|
352403
352530
|
attachments: z$1.ZodOptional<z$1.ZodObject<{
|
|
352404
352531
|
iterationId: z$1.ZodOptional<z$1.ZodString>;
|
|
352405
352532
|
fileIds: z$1.ZodOptional<z$1.ZodArray<z$1.ZodString, "many">>;
|
|
352533
|
+
templateId: z$1.ZodOptional<z$1.ZodString>;
|
|
352406
352534
|
}, "strip", z$1.ZodTypeAny, {
|
|
352407
352535
|
iterationId?: string | undefined;
|
|
352408
352536
|
fileIds?: string[] | undefined;
|
|
352537
|
+
templateId?: string | undefined;
|
|
352409
352538
|
}, {
|
|
352410
352539
|
iterationId?: string | undefined;
|
|
352411
352540
|
fileIds?: string[] | undefined;
|
|
352541
|
+
templateId?: string | undefined;
|
|
352412
352542
|
}>>;
|
|
352413
352543
|
}, "strip", z$1.ZodTypeAny, {
|
|
352414
352544
|
id: string;
|
|
@@ -352419,6 +352549,7 @@ declare const DTOThreadMessageCreateInput: z$1.ZodObject<Pick<{
|
|
|
352419
352549
|
attachments?: {
|
|
352420
352550
|
iterationId?: string | undefined;
|
|
352421
352551
|
fileIds?: string[] | undefined;
|
|
352552
|
+
templateId?: string | undefined;
|
|
352422
352553
|
} | undefined;
|
|
352423
352554
|
promptMetadata?: Record<string, any> | undefined;
|
|
352424
352555
|
}, {
|
|
@@ -352430,6 +352561,7 @@ declare const DTOThreadMessageCreateInput: z$1.ZodObject<Pick<{
|
|
|
352430
352561
|
attachments?: {
|
|
352431
352562
|
iterationId?: string | undefined;
|
|
352432
352563
|
fileIds?: string[] | undefined;
|
|
352564
|
+
templateId?: string | undefined;
|
|
352433
352565
|
} | undefined;
|
|
352434
352566
|
promptMetadata?: Record<string, any> | undefined;
|
|
352435
352567
|
}>;
|
|
@@ -377431,6 +377563,7 @@ declare class TokenCollectionsEndpoint {
|
|
|
377431
377563
|
origin?: {
|
|
377432
377564
|
id: string;
|
|
377433
377565
|
sourceId: string;
|
|
377566
|
+
sourceIds: string[];
|
|
377434
377567
|
collectionKeyMigrated: boolean;
|
|
377435
377568
|
parentId?: string | undefined;
|
|
377436
377569
|
} | undefined;
|
|
@@ -393507,4 +393640,4 @@ declare function isValidRedirectPath(path: string): {
|
|
|
393507
393640
|
reason: ValidationErrorReason | undefined;
|
|
393508
393641
|
};
|
|
393509
393642
|
|
|
393510
|
-
export { BackendFeatureRoomYDoc, BackendForgeProjectRoomYDoc, BackendThreadRoomYDoc, BackendVersionRoomYDoc, BlockDefinitionUtils, BlockParsingUtils, BrandsEndpoint, ChatThreadMessagesEndpoint, CodeComponentsEndpoint, CodegenEndpoint, Collection, DTOAccessToken, DTOAccessTokenCreatePayload, DTOAccessTokenFull, DTOAccessTokenFullResponse, DTOAccessTokenListResponse, DTOAccessTokenResponse, DTOAddMembersToForgeProject, DTOAnalyzeCodeComponentsInPackage, DTOAnalyzeCodeComponentsInPackageInput, DTOAnalyzeCodeComponentsInPackageResponse, DTOAppBootstrapDataQuery, DTOAppBootstrapDataResponse, DTOAssetRenderConfiguration, DTOAssetScope, DTOAuthenticatedUser, DTOAuthenticatedUserProfile, DTOAuthenticatedUserResponse, DTOAvailableProductListResponse, DTOBffFigmaImportRequestBody, DTOBffImportRequestBody, DTOBffUploadImportRequestBody, DTOBillingCheckoutCreditsTopUpInput, DTOBillingCheckoutInput, DTOBillingCheckoutMode, DTOBillingCheckoutOldInput, DTOBillingCheckoutResponse, DTOBillingCheckoutSubscriptionChangeInput, DTOBillingCreditsCheckIfCanSpendResponse, DTOBillingCreditsSpendAction, DTOBillingCreditsSpendInput, DTOBillingCreditsSpendResponse, DTOBillingInterval, DTOBillingSubscriptionChangePreviewInput, DTOBillingSupportedModels, DTOBrand, DTOBrandCreatePayload, DTOBrandCreateResponse, DTOBrandGetResponse, DTOBrandUpdatePayload, DTOBrandsListResponse, DTOCodeComponent, DTOCodeComponentCreateInput, DTOCodeComponentListResponse, DTOCodeComponentParentType, DTOCodeComponentProperty, DTOCodeComponentResolvedType, DTOCodeComponentResolvedTypeKind, DTOCodeComponentResponse, DTOCodeComponentUpsertResponse, DTOCodeComponentsCreateInput, DTOColorTokenInlineData, DTOCreateDocumentationGroupInput, DTOCreateDocumentationPageInputV2, DTOCreateDocumentationTabInput, 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, 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, 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, DTOLiveblocksAuthRequest, DTOLiveblocksAuthResponse, 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, 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, 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, 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, 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, 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, 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 };
|
|
393643
|
+
export { BackendFeatureRoomYDoc, BackendForgeProjectRoomYDoc, BackendThreadRoomYDoc, BackendVersionRoomYDoc, BlockDefinitionUtils, BlockParsingUtils, BrandsEndpoint, ChatThreadMessagesEndpoint, CodeComponentsEndpoint, CodegenEndpoint, Collection, DTOAccessToken, DTOAccessTokenCreatePayload, DTOAccessTokenFull, DTOAccessTokenFullResponse, DTOAccessTokenListResponse, DTOAccessTokenResponse, DTOAddMembersToForgeProject, DTOAnalyzeCodeComponentsInPackage, DTOAnalyzeCodeComponentsInPackageInput, DTOAnalyzeCodeComponentsInPackageResponse, DTOAppBootstrapDataQuery, DTOAppBootstrapDataResponse, DTOAssetRenderConfiguration, DTOAssetScope, DTOAuthenticatedUser, DTOAuthenticatedUserProfile, DTOAuthenticatedUserResponse, DTOAvailableProductListResponse, DTOBffFigmaImportRequestBody, DTOBffImportRequestBody, DTOBffUploadImportRequestBody, DTOBillingCheckoutCreditsTopUpInput, DTOBillingCheckoutInput, DTOBillingCheckoutMode, DTOBillingCheckoutOldInput, DTOBillingCheckoutResponse, DTOBillingCheckoutSubscriptionChangeInput, DTOBillingCreditsCheckIfCanSpendResponse, DTOBillingCreditsSpendAction, DTOBillingCreditsSpendInput, DTOBillingCreditsSpendResponse, DTOBillingInterval, DTOBillingSubscriptionChangePreviewInput, DTOBillingSupportedModels, DTOBrand, DTOBrandCreatePayload, DTOBrandCreateResponse, DTOBrandGetResponse, DTOBrandUpdatePayload, DTOBrandsListResponse, DTOCodeComponent, DTOCodeComponentCreateInput, DTOCodeComponentListResponse, DTOCodeComponentParentType, DTOCodeComponentProperty, DTOCodeComponentResolvedType, DTOCodeComponentResolvedTypeKind, DTOCodeComponentResponse, DTOCodeComponentUpsertResponse, DTOCodeComponentsCreateInput, 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, 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, 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, DTOLiveblocksAuthRequest, DTOLiveblocksAuthResponse, 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, 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, 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, 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, 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, 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, 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 };
|