@supernova-studio/client 1.35.4 → 1.37.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 +193 -1
- package/dist/index.d.ts +193 -1
- package/dist/index.js +21 -2
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +20 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -68370,6 +68370,20 @@ declare const DTOUpdateForgeFigmaArtifact: z$1.ZodObject<Omit<{
|
|
|
68370
68370
|
}>;
|
|
68371
68371
|
type DTOUpdateForgeFigmaArtifact = z$1.infer<typeof DTOUpdateForgeFigmaArtifact>;
|
|
68372
68372
|
|
|
68373
|
+
declare const DTOFeatureIterationArtifactsDiff: z__default.ZodObject<{
|
|
68374
|
+
created: z__default.ZodDefault<z__default.ZodOptional<z__default.ZodArray<z__default.ZodString, "many">>>;
|
|
68375
|
+
updated: z__default.ZodDefault<z__default.ZodOptional<z__default.ZodArray<z__default.ZodString, "many">>>;
|
|
68376
|
+
deleted: z__default.ZodDefault<z__default.ZodOptional<z__default.ZodArray<z__default.ZodString, "many">>>;
|
|
68377
|
+
}, "strip", z__default.ZodTypeAny, {
|
|
68378
|
+
created: string[];
|
|
68379
|
+
updated: string[];
|
|
68380
|
+
deleted: string[];
|
|
68381
|
+
}, {
|
|
68382
|
+
created?: string[] | undefined;
|
|
68383
|
+
updated?: string[] | undefined;
|
|
68384
|
+
deleted?: string[] | undefined;
|
|
68385
|
+
}>;
|
|
68386
|
+
type DTOFeatureIterationArtifactsDiff = z__default.infer<typeof DTOFeatureIterationArtifactsDiff>;
|
|
68373
68387
|
declare const DTOFeatureMessageUserSender: z__default.ZodObject<{
|
|
68374
68388
|
type: z__default.ZodLiteral<"User">;
|
|
68375
68389
|
userId: z__default.ZodString;
|
|
@@ -68628,28 +68642,57 @@ declare const DTOFeatureIteration: z__default.ZodObject<{
|
|
|
68628
68642
|
* Indicates whether the iteration is bookmarked by user
|
|
68629
68643
|
*/
|
|
68630
68644
|
isBookmarked: z__default.ZodOptional<z__default.ZodBoolean>;
|
|
68645
|
+
/**
|
|
68646
|
+
* URL of a static thumbnail of the feature iteration
|
|
68647
|
+
*/
|
|
68648
|
+
thumbnailUrl: z__default.ZodOptional<z__default.ZodString>;
|
|
68631
68649
|
createdAt: z__default.ZodString;
|
|
68632
68650
|
updatedAt: z__default.ZodOptional<z__default.ZodString>;
|
|
68651
|
+
artifactsDiff: z__default.ZodNullable<z__default.ZodOptional<z__default.ZodObject<{
|
|
68652
|
+
created: z__default.ZodDefault<z__default.ZodOptional<z__default.ZodArray<z__default.ZodString, "many">>>;
|
|
68653
|
+
updated: z__default.ZodDefault<z__default.ZodOptional<z__default.ZodArray<z__default.ZodString, "many">>>;
|
|
68654
|
+
deleted: z__default.ZodDefault<z__default.ZodOptional<z__default.ZodArray<z__default.ZodString, "many">>>;
|
|
68655
|
+
}, "strip", z__default.ZodTypeAny, {
|
|
68656
|
+
created: string[];
|
|
68657
|
+
updated: string[];
|
|
68658
|
+
deleted: string[];
|
|
68659
|
+
}, {
|
|
68660
|
+
created?: string[] | undefined;
|
|
68661
|
+
updated?: string[] | undefined;
|
|
68662
|
+
deleted?: string[] | undefined;
|
|
68663
|
+
}>>>;
|
|
68633
68664
|
}, "strip", z__default.ZodTypeAny, {
|
|
68634
68665
|
id: string;
|
|
68635
68666
|
createdAt: string;
|
|
68636
68667
|
name: string;
|
|
68637
68668
|
startedFromMessageId: string;
|
|
68638
68669
|
updatedAt?: string | undefined;
|
|
68670
|
+
thumbnailUrl?: string | undefined;
|
|
68639
68671
|
baseIterationId?: string | undefined;
|
|
68640
68672
|
isInProgress?: boolean | undefined;
|
|
68641
68673
|
staticPreviewUrl?: string | undefined;
|
|
68642
68674
|
isBookmarked?: boolean | undefined;
|
|
68675
|
+
artifactsDiff?: {
|
|
68676
|
+
created: string[];
|
|
68677
|
+
updated: string[];
|
|
68678
|
+
deleted: string[];
|
|
68679
|
+
} | null | undefined;
|
|
68643
68680
|
}, {
|
|
68644
68681
|
id: string;
|
|
68645
68682
|
createdAt: string;
|
|
68646
68683
|
name: string;
|
|
68647
68684
|
startedFromMessageId: string;
|
|
68648
68685
|
updatedAt?: string | undefined;
|
|
68686
|
+
thumbnailUrl?: string | undefined;
|
|
68649
68687
|
baseIterationId?: string | undefined;
|
|
68650
68688
|
isInProgress?: boolean | undefined;
|
|
68651
68689
|
staticPreviewUrl?: string | undefined;
|
|
68652
68690
|
isBookmarked?: boolean | undefined;
|
|
68691
|
+
artifactsDiff?: {
|
|
68692
|
+
created?: string[] | undefined;
|
|
68693
|
+
updated?: string[] | undefined;
|
|
68694
|
+
deleted?: string[] | undefined;
|
|
68695
|
+
} | null | undefined;
|
|
68653
68696
|
}>;
|
|
68654
68697
|
type DTOFeatureIteration = z__default.infer<typeof DTOFeatureIteration>;
|
|
68655
68698
|
declare const DTOFeatureIterationTag: z__default.ZodObject<{
|
|
@@ -68894,8 +68937,25 @@ declare const DTOFeatureIterationCreateInput: z__default.ZodObject<Pick<{
|
|
|
68894
68937
|
* Indicates whether the iteration is bookmarked by user
|
|
68895
68938
|
*/
|
|
68896
68939
|
isBookmarked: z__default.ZodOptional<z__default.ZodBoolean>;
|
|
68940
|
+
/**
|
|
68941
|
+
* URL of a static thumbnail of the feature iteration
|
|
68942
|
+
*/
|
|
68943
|
+
thumbnailUrl: z__default.ZodOptional<z__default.ZodString>;
|
|
68897
68944
|
createdAt: z__default.ZodString;
|
|
68898
68945
|
updatedAt: z__default.ZodOptional<z__default.ZodString>;
|
|
68946
|
+
artifactsDiff: z__default.ZodNullable<z__default.ZodOptional<z__default.ZodObject<{
|
|
68947
|
+
created: z__default.ZodDefault<z__default.ZodOptional<z__default.ZodArray<z__default.ZodString, "many">>>;
|
|
68948
|
+
updated: z__default.ZodDefault<z__default.ZodOptional<z__default.ZodArray<z__default.ZodString, "many">>>;
|
|
68949
|
+
deleted: z__default.ZodDefault<z__default.ZodOptional<z__default.ZodArray<z__default.ZodString, "many">>>;
|
|
68950
|
+
}, "strip", z__default.ZodTypeAny, {
|
|
68951
|
+
created: string[];
|
|
68952
|
+
updated: string[];
|
|
68953
|
+
deleted: string[];
|
|
68954
|
+
}, {
|
|
68955
|
+
created?: string[] | undefined;
|
|
68956
|
+
updated?: string[] | undefined;
|
|
68957
|
+
deleted?: string[] | undefined;
|
|
68958
|
+
}>>>;
|
|
68899
68959
|
}, "id" | "startedFromMessageId">, "strip", z__default.ZodTypeAny, {
|
|
68900
68960
|
id: string;
|
|
68901
68961
|
startedFromMessageId: string;
|
|
@@ -68946,6 +69006,16 @@ declare const DTOFeatureIterationTagCreateInput: z__default.ZodObject<{
|
|
|
68946
69006
|
}>;
|
|
68947
69007
|
type DTOFeatureIterationTagCreateInput = z__default.infer<typeof DTOFeatureIterationTagCreateInput>;
|
|
68948
69008
|
declare const DTOFeatureIterationArtifactDiff: z__default.ZodObject<{
|
|
69009
|
+
/**
|
|
69010
|
+
* Map of artifact key -> new key that describes artifacts that will be moved in this iteration
|
|
69011
|
+
*/
|
|
69012
|
+
move: z__default.ZodRecord<z__default.ZodString, z__default.ZodObject<{
|
|
69013
|
+
newKey: z__default.ZodString;
|
|
69014
|
+
}, "strip", z__default.ZodTypeAny, {
|
|
69015
|
+
newKey: string;
|
|
69016
|
+
}, {
|
|
69017
|
+
newKey: string;
|
|
69018
|
+
}>>;
|
|
68949
69019
|
/**
|
|
68950
69020
|
* Map of artifact key -> artifact content that describes artifacts that will be
|
|
68951
69021
|
* create or updated in this iteration
|
|
@@ -68962,11 +69032,17 @@ declare const DTOFeatureIterationArtifactDiff: z__default.ZodObject<{
|
|
|
68962
69032
|
*/
|
|
68963
69033
|
remove: z__default.ZodArray<z__default.ZodString, "many">;
|
|
68964
69034
|
}, "strip", z__default.ZodTypeAny, {
|
|
69035
|
+
move: Record<string, {
|
|
69036
|
+
newKey: string;
|
|
69037
|
+
}>;
|
|
68965
69038
|
upsert: Record<string, {
|
|
68966
69039
|
artifactContent: string;
|
|
68967
69040
|
}>;
|
|
68968
69041
|
remove: string[];
|
|
68969
69042
|
}, {
|
|
69043
|
+
move: Record<string, {
|
|
69044
|
+
newKey: string;
|
|
69045
|
+
}>;
|
|
68970
69046
|
upsert: Record<string, {
|
|
68971
69047
|
artifactContent: string;
|
|
68972
69048
|
}>;
|
|
@@ -68977,6 +69053,16 @@ declare const DTOFeatureIterationUpdateArtifactsInput: z__default.ZodObject<{
|
|
|
68977
69053
|
id: z__default.ZodString;
|
|
68978
69054
|
name: z__default.ZodOptional<z__default.ZodString>;
|
|
68979
69055
|
artifactDiff: z__default.ZodObject<{
|
|
69056
|
+
/**
|
|
69057
|
+
* Map of artifact key -> new key that describes artifacts that will be moved in this iteration
|
|
69058
|
+
*/
|
|
69059
|
+
move: z__default.ZodRecord<z__default.ZodString, z__default.ZodObject<{
|
|
69060
|
+
newKey: z__default.ZodString;
|
|
69061
|
+
}, "strip", z__default.ZodTypeAny, {
|
|
69062
|
+
newKey: string;
|
|
69063
|
+
}, {
|
|
69064
|
+
newKey: string;
|
|
69065
|
+
}>>;
|
|
68980
69066
|
/**
|
|
68981
69067
|
* Map of artifact key -> artifact content that describes artifacts that will be
|
|
68982
69068
|
* create or updated in this iteration
|
|
@@ -68993,11 +69079,17 @@ declare const DTOFeatureIterationUpdateArtifactsInput: z__default.ZodObject<{
|
|
|
68993
69079
|
*/
|
|
68994
69080
|
remove: z__default.ZodArray<z__default.ZodString, "many">;
|
|
68995
69081
|
}, "strip", z__default.ZodTypeAny, {
|
|
69082
|
+
move: Record<string, {
|
|
69083
|
+
newKey: string;
|
|
69084
|
+
}>;
|
|
68996
69085
|
upsert: Record<string, {
|
|
68997
69086
|
artifactContent: string;
|
|
68998
69087
|
}>;
|
|
68999
69088
|
remove: string[];
|
|
69000
69089
|
}, {
|
|
69090
|
+
move: Record<string, {
|
|
69091
|
+
newKey: string;
|
|
69092
|
+
}>;
|
|
69001
69093
|
upsert: Record<string, {
|
|
69002
69094
|
artifactContent: string;
|
|
69003
69095
|
}>;
|
|
@@ -69006,6 +69098,9 @@ declare const DTOFeatureIterationUpdateArtifactsInput: z__default.ZodObject<{
|
|
|
69006
69098
|
}, "strip", z__default.ZodTypeAny, {
|
|
69007
69099
|
id: string;
|
|
69008
69100
|
artifactDiff: {
|
|
69101
|
+
move: Record<string, {
|
|
69102
|
+
newKey: string;
|
|
69103
|
+
}>;
|
|
69009
69104
|
upsert: Record<string, {
|
|
69010
69105
|
artifactContent: string;
|
|
69011
69106
|
}>;
|
|
@@ -69015,6 +69110,9 @@ declare const DTOFeatureIterationUpdateArtifactsInput: z__default.ZodObject<{
|
|
|
69015
69110
|
}, {
|
|
69016
69111
|
id: string;
|
|
69017
69112
|
artifactDiff: {
|
|
69113
|
+
move: Record<string, {
|
|
69114
|
+
newKey: string;
|
|
69115
|
+
}>;
|
|
69018
69116
|
upsert: Record<string, {
|
|
69019
69117
|
artifactContent: string;
|
|
69020
69118
|
}>;
|
|
@@ -69562,28 +69660,57 @@ declare const DTOFeatureIterationListResponse: z__default.ZodObject<{
|
|
|
69562
69660
|
* Indicates whether the iteration is bookmarked by user
|
|
69563
69661
|
*/
|
|
69564
69662
|
isBookmarked: z__default.ZodOptional<z__default.ZodBoolean>;
|
|
69663
|
+
/**
|
|
69664
|
+
* URL of a static thumbnail of the feature iteration
|
|
69665
|
+
*/
|
|
69666
|
+
thumbnailUrl: z__default.ZodOptional<z__default.ZodString>;
|
|
69565
69667
|
createdAt: z__default.ZodString;
|
|
69566
69668
|
updatedAt: z__default.ZodOptional<z__default.ZodString>;
|
|
69669
|
+
artifactsDiff: z__default.ZodNullable<z__default.ZodOptional<z__default.ZodObject<{
|
|
69670
|
+
created: z__default.ZodDefault<z__default.ZodOptional<z__default.ZodArray<z__default.ZodString, "many">>>;
|
|
69671
|
+
updated: z__default.ZodDefault<z__default.ZodOptional<z__default.ZodArray<z__default.ZodString, "many">>>;
|
|
69672
|
+
deleted: z__default.ZodDefault<z__default.ZodOptional<z__default.ZodArray<z__default.ZodString, "many">>>;
|
|
69673
|
+
}, "strip", z__default.ZodTypeAny, {
|
|
69674
|
+
created: string[];
|
|
69675
|
+
updated: string[];
|
|
69676
|
+
deleted: string[];
|
|
69677
|
+
}, {
|
|
69678
|
+
created?: string[] | undefined;
|
|
69679
|
+
updated?: string[] | undefined;
|
|
69680
|
+
deleted?: string[] | undefined;
|
|
69681
|
+
}>>>;
|
|
69567
69682
|
}, "strip", z__default.ZodTypeAny, {
|
|
69568
69683
|
id: string;
|
|
69569
69684
|
createdAt: string;
|
|
69570
69685
|
name: string;
|
|
69571
69686
|
startedFromMessageId: string;
|
|
69572
69687
|
updatedAt?: string | undefined;
|
|
69688
|
+
thumbnailUrl?: string | undefined;
|
|
69573
69689
|
baseIterationId?: string | undefined;
|
|
69574
69690
|
isInProgress?: boolean | undefined;
|
|
69575
69691
|
staticPreviewUrl?: string | undefined;
|
|
69576
69692
|
isBookmarked?: boolean | undefined;
|
|
69693
|
+
artifactsDiff?: {
|
|
69694
|
+
created: string[];
|
|
69695
|
+
updated: string[];
|
|
69696
|
+
deleted: string[];
|
|
69697
|
+
} | null | undefined;
|
|
69577
69698
|
}, {
|
|
69578
69699
|
id: string;
|
|
69579
69700
|
createdAt: string;
|
|
69580
69701
|
name: string;
|
|
69581
69702
|
startedFromMessageId: string;
|
|
69582
69703
|
updatedAt?: string | undefined;
|
|
69704
|
+
thumbnailUrl?: string | undefined;
|
|
69583
69705
|
baseIterationId?: string | undefined;
|
|
69584
69706
|
isInProgress?: boolean | undefined;
|
|
69585
69707
|
staticPreviewUrl?: string | undefined;
|
|
69586
69708
|
isBookmarked?: boolean | undefined;
|
|
69709
|
+
artifactsDiff?: {
|
|
69710
|
+
created?: string[] | undefined;
|
|
69711
|
+
updated?: string[] | undefined;
|
|
69712
|
+
deleted?: string[] | undefined;
|
|
69713
|
+
} | null | undefined;
|
|
69587
69714
|
}>, "many">;
|
|
69588
69715
|
}, "strip", z__default.ZodTypeAny, {
|
|
69589
69716
|
iterations: {
|
|
@@ -69592,10 +69719,16 @@ declare const DTOFeatureIterationListResponse: z__default.ZodObject<{
|
|
|
69592
69719
|
name: string;
|
|
69593
69720
|
startedFromMessageId: string;
|
|
69594
69721
|
updatedAt?: string | undefined;
|
|
69722
|
+
thumbnailUrl?: string | undefined;
|
|
69595
69723
|
baseIterationId?: string | undefined;
|
|
69596
69724
|
isInProgress?: boolean | undefined;
|
|
69597
69725
|
staticPreviewUrl?: string | undefined;
|
|
69598
69726
|
isBookmarked?: boolean | undefined;
|
|
69727
|
+
artifactsDiff?: {
|
|
69728
|
+
created: string[];
|
|
69729
|
+
updated: string[];
|
|
69730
|
+
deleted: string[];
|
|
69731
|
+
} | null | undefined;
|
|
69599
69732
|
}[];
|
|
69600
69733
|
}, {
|
|
69601
69734
|
iterations: {
|
|
@@ -69604,10 +69737,16 @@ declare const DTOFeatureIterationListResponse: z__default.ZodObject<{
|
|
|
69604
69737
|
name: string;
|
|
69605
69738
|
startedFromMessageId: string;
|
|
69606
69739
|
updatedAt?: string | undefined;
|
|
69740
|
+
thumbnailUrl?: string | undefined;
|
|
69607
69741
|
baseIterationId?: string | undefined;
|
|
69608
69742
|
isInProgress?: boolean | undefined;
|
|
69609
69743
|
staticPreviewUrl?: string | undefined;
|
|
69610
69744
|
isBookmarked?: boolean | undefined;
|
|
69745
|
+
artifactsDiff?: {
|
|
69746
|
+
created?: string[] | undefined;
|
|
69747
|
+
updated?: string[] | undefined;
|
|
69748
|
+
deleted?: string[] | undefined;
|
|
69749
|
+
} | null | undefined;
|
|
69611
69750
|
}[];
|
|
69612
69751
|
}>;
|
|
69613
69752
|
type DTOFeatureIterationListResponse = z__default.infer<typeof DTOFeatureIterationListResponse>;
|
|
@@ -69638,28 +69777,57 @@ declare const DTOFeatureIterationResponse: z__default.ZodObject<{
|
|
|
69638
69777
|
* Indicates whether the iteration is bookmarked by user
|
|
69639
69778
|
*/
|
|
69640
69779
|
isBookmarked: z__default.ZodOptional<z__default.ZodBoolean>;
|
|
69780
|
+
/**
|
|
69781
|
+
* URL of a static thumbnail of the feature iteration
|
|
69782
|
+
*/
|
|
69783
|
+
thumbnailUrl: z__default.ZodOptional<z__default.ZodString>;
|
|
69641
69784
|
createdAt: z__default.ZodString;
|
|
69642
69785
|
updatedAt: z__default.ZodOptional<z__default.ZodString>;
|
|
69786
|
+
artifactsDiff: z__default.ZodNullable<z__default.ZodOptional<z__default.ZodObject<{
|
|
69787
|
+
created: z__default.ZodDefault<z__default.ZodOptional<z__default.ZodArray<z__default.ZodString, "many">>>;
|
|
69788
|
+
updated: z__default.ZodDefault<z__default.ZodOptional<z__default.ZodArray<z__default.ZodString, "many">>>;
|
|
69789
|
+
deleted: z__default.ZodDefault<z__default.ZodOptional<z__default.ZodArray<z__default.ZodString, "many">>>;
|
|
69790
|
+
}, "strip", z__default.ZodTypeAny, {
|
|
69791
|
+
created: string[];
|
|
69792
|
+
updated: string[];
|
|
69793
|
+
deleted: string[];
|
|
69794
|
+
}, {
|
|
69795
|
+
created?: string[] | undefined;
|
|
69796
|
+
updated?: string[] | undefined;
|
|
69797
|
+
deleted?: string[] | undefined;
|
|
69798
|
+
}>>>;
|
|
69643
69799
|
}, "strip", z__default.ZodTypeAny, {
|
|
69644
69800
|
id: string;
|
|
69645
69801
|
createdAt: string;
|
|
69646
69802
|
name: string;
|
|
69647
69803
|
startedFromMessageId: string;
|
|
69648
69804
|
updatedAt?: string | undefined;
|
|
69805
|
+
thumbnailUrl?: string | undefined;
|
|
69649
69806
|
baseIterationId?: string | undefined;
|
|
69650
69807
|
isInProgress?: boolean | undefined;
|
|
69651
69808
|
staticPreviewUrl?: string | undefined;
|
|
69652
69809
|
isBookmarked?: boolean | undefined;
|
|
69810
|
+
artifactsDiff?: {
|
|
69811
|
+
created: string[];
|
|
69812
|
+
updated: string[];
|
|
69813
|
+
deleted: string[];
|
|
69814
|
+
} | null | undefined;
|
|
69653
69815
|
}, {
|
|
69654
69816
|
id: string;
|
|
69655
69817
|
createdAt: string;
|
|
69656
69818
|
name: string;
|
|
69657
69819
|
startedFromMessageId: string;
|
|
69658
69820
|
updatedAt?: string | undefined;
|
|
69821
|
+
thumbnailUrl?: string | undefined;
|
|
69659
69822
|
baseIterationId?: string | undefined;
|
|
69660
69823
|
isInProgress?: boolean | undefined;
|
|
69661
69824
|
staticPreviewUrl?: string | undefined;
|
|
69662
69825
|
isBookmarked?: boolean | undefined;
|
|
69826
|
+
artifactsDiff?: {
|
|
69827
|
+
created?: string[] | undefined;
|
|
69828
|
+
updated?: string[] | undefined;
|
|
69829
|
+
deleted?: string[] | undefined;
|
|
69830
|
+
} | null | undefined;
|
|
69663
69831
|
}>;
|
|
69664
69832
|
}, "strip", z__default.ZodTypeAny, {
|
|
69665
69833
|
iteration: {
|
|
@@ -69668,10 +69836,16 @@ declare const DTOFeatureIterationResponse: z__default.ZodObject<{
|
|
|
69668
69836
|
name: string;
|
|
69669
69837
|
startedFromMessageId: string;
|
|
69670
69838
|
updatedAt?: string | undefined;
|
|
69839
|
+
thumbnailUrl?: string | undefined;
|
|
69671
69840
|
baseIterationId?: string | undefined;
|
|
69672
69841
|
isInProgress?: boolean | undefined;
|
|
69673
69842
|
staticPreviewUrl?: string | undefined;
|
|
69674
69843
|
isBookmarked?: boolean | undefined;
|
|
69844
|
+
artifactsDiff?: {
|
|
69845
|
+
created: string[];
|
|
69846
|
+
updated: string[];
|
|
69847
|
+
deleted: string[];
|
|
69848
|
+
} | null | undefined;
|
|
69675
69849
|
};
|
|
69676
69850
|
}, {
|
|
69677
69851
|
iteration: {
|
|
@@ -69680,10 +69854,16 @@ declare const DTOFeatureIterationResponse: z__default.ZodObject<{
|
|
|
69680
69854
|
name: string;
|
|
69681
69855
|
startedFromMessageId: string;
|
|
69682
69856
|
updatedAt?: string | undefined;
|
|
69857
|
+
thumbnailUrl?: string | undefined;
|
|
69683
69858
|
baseIterationId?: string | undefined;
|
|
69684
69859
|
isInProgress?: boolean | undefined;
|
|
69685
69860
|
staticPreviewUrl?: string | undefined;
|
|
69686
69861
|
isBookmarked?: boolean | undefined;
|
|
69862
|
+
artifactsDiff?: {
|
|
69863
|
+
created?: string[] | undefined;
|
|
69864
|
+
updated?: string[] | undefined;
|
|
69865
|
+
deleted?: string[] | undefined;
|
|
69866
|
+
} | null | undefined;
|
|
69687
69867
|
};
|
|
69688
69868
|
}>;
|
|
69689
69869
|
type DTOFeatureIterationResponse = z__default.infer<typeof DTOFeatureIterationResponse>;
|
|
@@ -141116,10 +141296,16 @@ declare class ForgeFeatureIterationsEndpoint {
|
|
|
141116
141296
|
name: string;
|
|
141117
141297
|
startedFromMessageId: string;
|
|
141118
141298
|
updatedAt?: string | undefined;
|
|
141299
|
+
thumbnailUrl?: string | undefined;
|
|
141119
141300
|
baseIterationId?: string | undefined;
|
|
141120
141301
|
isInProgress?: boolean | undefined;
|
|
141121
141302
|
staticPreviewUrl?: string | undefined;
|
|
141122
141303
|
isBookmarked?: boolean | undefined;
|
|
141304
|
+
artifactsDiff?: {
|
|
141305
|
+
created: string[];
|
|
141306
|
+
updated: string[];
|
|
141307
|
+
deleted: string[];
|
|
141308
|
+
} | null | undefined;
|
|
141123
141309
|
}[];
|
|
141124
141310
|
}>;
|
|
141125
141311
|
updateArtifacts(workspaceId: string, projectId: string, featureId: string, body: DTOFeatureIterationUpdateArtifactsInput): Promise<any>;
|
|
@@ -141252,10 +141438,16 @@ declare class ForgeProjectFeaturesEndpoint {
|
|
|
141252
141438
|
name: string;
|
|
141253
141439
|
startedFromMessageId: string;
|
|
141254
141440
|
updatedAt?: string | undefined;
|
|
141441
|
+
thumbnailUrl?: string | undefined;
|
|
141255
141442
|
baseIterationId?: string | undefined;
|
|
141256
141443
|
isInProgress?: boolean | undefined;
|
|
141257
141444
|
staticPreviewUrl?: string | undefined;
|
|
141258
141445
|
isBookmarked?: boolean | undefined;
|
|
141446
|
+
artifactsDiff?: {
|
|
141447
|
+
created: string[];
|
|
141448
|
+
updated: string[];
|
|
141449
|
+
deleted: string[];
|
|
141450
|
+
} | null | undefined;
|
|
141259
141451
|
};
|
|
141260
141452
|
}>;
|
|
141261
141453
|
}
|
|
@@ -145741,4 +145933,4 @@ declare function isValidRedirectPath(path: string): {
|
|
|
145741
145933
|
reason: ValidationErrorReason | undefined;
|
|
145742
145934
|
};
|
|
145743
145935
|
|
|
145744
|
-
export { BackendFeatureRoomYDoc, BackendForgeProjectRoomYDoc, 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, DTOBffFigmaImportRequestBody, DTOBffImportRequestBody, DTOBffUploadImportRequestBody, DTOBillingCheckoutInput, DTOBillingCheckoutMode, DTOBillingCheckoutResponse, DTOBillingCreditsCheckIfCanSpendResponse, DTOBillingCreditsSpendInput, DTOBillingCreditsSpendResponse, DTOBillingSupportedModels, DTOBrand, DTOBrandCreatePayload, DTOBrandCreateResponse, DTOBrandGetResponse, DTOBrandUpdatePayload, DTOBrandsListResponse, DTOCodeComponent, DTOCodeComponentCreateInput, DTOCodeComponentListResponse, DTOCodeComponentParentType, DTOCodeComponentProperty, DTOCodeComponentResolvedType, DTOCodeComponentResolvedTypeKind, DTOCodeComponentResponse, DTOCodeComponentUpsertResponse, DTOCodeComponentsCreateInput, DTOColorTokenInlineData, DTOCreateDocumentationGroupInput, DTOCreateDocumentationPageInputV2, DTOCreateDocumentationTabInput, DTOCreateForgeAgent, DTOCreateForgeAgentResponse, DTOCreateForgeArtifact, DTOCreateForgeArtifactResponse, DTOCreateForgeBuildArtifact, DTOCreateForgeFigmaArtifact, DTOCreateForgeFileArtifact, DTOCreateForgeIterationMessage, DTOCreateForgeIterationMessageResponse, DTOCreateForgeParticipant, DTOCreateForgeParticipantResponse, DTOCreateForgeProjectContext, DTOCreateForgeProjectInvitation, DTOCreateForgeProjectIteration, DTOCreateForgeProjectIterationResponse, DTOCreateForgeProjectMember, DTOCreateForgeSpecArtifact, DTOCreateVersionInput, DTOCreditBalance, DTOCreditsPrices, DTODataSource, DTODataSourceFigma, DTODataSourceFigmaCloud, DTODataSourceFigmaCreatePayload, DTODataSourceFigmaImportPayload, DTODataSourceFigmaScope, DTODataSourceFigmaVariablesPlugin, DTODataSourceResponse, DTODataSourceStorybook, DTODataSourceStorybookCreatePayload, DTODataSourceTokenStudio, DTODataSourcesListResponse, DTODataSourcesStorybookResponse, DTODeleteDocumentationGroupInput, DTODeleteDocumentationPageInputV2, DTODeleteDocumentationTabGroupInput, DTODeleteForgeAgentResponse, DTODeleteForgeArtifactResponse, DTODeleteForgeIterationMessageResponse, DTODeleteForgeParticipantResponse, DTODeleteForgeProjectIterationResponse, DTODependencyDefinition, DTODesignElementsDataDiffResponse, DTODesignSystem, DTODesignSystemComponent, DTODesignSystemComponentCreateInput, DTODesignSystemComponentListResponse, DTODesignSystemComponentResponse, DTODesignSystemContactsResponse, DTODesignSystemCreateInput, DTODesignSystemInvitation, DTODesignSystemMember, DTODesignSystemMemberListResponse, DTODesignSystemMembersUpdatePayload, DTODesignSystemMembersUpdateResponse, DTODesignSystemResponse, DTODesignSystemRole, DTODesignSystemUpdateAccessModeInput, DTODesignSystemUpdateInput, DTODesignSystemVersion, DTODesignSystemVersionCreationResponse, DTODesignSystemVersionGetResponse, DTODesignSystemVersionJobStatusResponse, DTODesignSystemVersionJobsResponse, DTODesignSystemVersionRoom, DTODesignSystemVersionRoomResponse, DTODesignSystemVersionStats, DTODesignSystemVersionStatsQuery, DTODesignSystemVersionsListResponse, DTODesignSystemsListResponse, DTODesignToken, DTODesignTokenCreatePayload, DTODesignTokenGroup, DTODesignTokenGroupCreatePayload, DTODesignTokenGroupListResponse, DTODesignTokenGroupResponse, DTODesignTokenListResponse, DTODesignTokenResponse, DTODiffCountBase, DTODocumentationAnalyticsDiffPayload, DTODocumentationAnalyticsRequest, DTODocumentationAnalyticsTimeFrame, DTODocumentationAnalyticsTimeFrameComparison, DTODocumentationDraftChangeType, DTODocumentationDraftState, DTODocumentationDraftStateCreated, DTODocumentationDraftStateDeleted, DTODocumentationDraftStateUpdated, DTODocumentationGroupApprovalState, DTODocumentationGroupCreateActionInputV2, DTODocumentationGroupCreateActionOutputV2, DTODocumentationGroupDeleteActionInputV2, DTODocumentationGroupDeleteActionOutputV2, DTODocumentationGroupDuplicateActionInputV2, DTODocumentationGroupDuplicateActionOutputV2, DTODocumentationGroupMoveActionInputV2, DTODocumentationGroupMoveActionOutputV2, DTODocumentationGroupRestoreActionInput, DTODocumentationGroupRestoreActionOutput, DTODocumentationGroupStructureV1, DTODocumentationGroupUpdateActionInputV2, DTODocumentationGroupUpdateActionOutputV2, DTODocumentationGroupV1, DTODocumentationGroupV2, DTODocumentationHierarchyV2, DTODocumentationItemConfigurationV1, DTODocumentationItemConfigurationV2, DTODocumentationItemHeaderV2, DTODocumentationLinkPreviewRequest, DTODocumentationLinkPreviewResponse, DTODocumentationPageAnalyticsDifference, DTODocumentationPageAnalyticsResponse, DTODocumentationPageAnchor, DTODocumentationPageApprovalState, DTODocumentationPageApprovalStateChangeActionInput, DTODocumentationPageApprovalStateChangeActionOutput, DTODocumentationPageApprovalStateChangeInput, DTODocumentationPageContent, DTODocumentationPageContentGetResponse, DTODocumentationPageCreateActionInputV2, DTODocumentationPageCreateActionOutputV2, DTODocumentationPageDeleteActionInputV2, DTODocumentationPageDeleteActionOutputV2, DTODocumentationPageDependencies, DTODocumentationPageDependenciesGetResponse, DTODocumentationPageDuplicateActionInputV2, DTODocumentationPageDuplicateActionOutputV2, DTODocumentationPageIntervalDifferenceResponse, DTODocumentationPageMoveActionInputV2, DTODocumentationPageMoveActionOutputV2, DTODocumentationPageRestoreActionInput, DTODocumentationPageRestoreActionOutput, DTODocumentationPageRoom, DTODocumentationPageRoomHeaderData, DTODocumentationPageRoomHeaderDataUpdate, DTODocumentationPageRoomResponse, DTODocumentationPageSnapshot, DTODocumentationPageUpdateActionInputV2, DTODocumentationPageUpdateActionOutputV2, DTODocumentationPageUpdateDocumentActionInputV2, DTODocumentationPageUpdateDocumentActionOutputV2, DTODocumentationPageV2, DTODocumentationPublishMetadata, DTODocumentationPublishTypeQueryParams, DTODocumentationSettings, DTODocumentationStructure, DTODocumentationStructureGroupItem, DTODocumentationStructureItem, DTODocumentationStructurePageItem, DTODocumentationTabCreateActionInputV2, DTODocumentationTabCreateActionOutputV2, type DTODocumentationTabGroupCreateActionInputV2, DTODocumentationTabGroupDeleteActionInputV2, DTODocumentationTabGroupDeleteActionOutputV2, DTODownloadAssetsRequest, DTODownloadAssetsResponse, DTODuplicateDocumentationGroupInput, DTODuplicateDocumentationPageInputV2, DTOElementActionInput, type DTOElementActionInputOfType, DTOElementActionOutput, DTOElementPropertyDefinition, DTOElementPropertyDefinitionCreatePayload, DTOElementPropertyDefinitionListResponse, DTOElementPropertyDefinitionOption, DTOElementPropertyDefinitionResponse, DTOElementPropertyDefinitionUpdatePayload, DTOElementPropertyValue, DTOElementPropertyValueListResponse, DTOElementPropertyValueResponse, DTOElementPropertyValueUpsertPaylod, DTOElementPropertyValuesEditActionInput, DTOElementPropertyValuesEditActionOutput, DTOElementView, DTOElementViewBasePropertyColumn, DTOElementViewColumn, DTOElementViewColumnSharedAttributes, DTOElementViewPropertyDefinitionColumn, DTOElementViewThemeColumn, DTOElementViewsListResponse, DTOElementsGetOutput, DTOElementsGetOutputV2, type DTOElementsGetQueryParsed, type DTOElementsGetQueryRaw, DTOElementsGetQuerySchema, DTOElementsGetTypeFilter, DTOEvent, DTOEventDataSourcesImported, DTOEventFigmaNodesRendered, DTOExportJob, DTOExportJobCreateInput, DTOExportJobCreatedBy, DTOExportJobDesignSystemPreview, DTOExportJobDesignSystemVersionPreview, DTOExportJobDestinations, DTOExportJobResponse, DTOExportJobResponseLegacy, DTOExportJobResult, DTOExportJobsListFilter, DTOExporter, DTOExporterCreateInput, DTOExporterDeprecationInput, DTOExporterGitProviderEnum, DTOExporterListQuery, DTOExporterListResponse, DTOExporterMembership, DTOExporterMembershipRole, DTOExporterPropertyDefinition, DTOExporterPropertyDefinitionArray, DTOExporterPropertyDefinitionBoolean, DTOExporterPropertyDefinitionCode, DTOExporterPropertyDefinitionEnum, DTOExporterPropertyDefinitionEnumOption, DTOExporterPropertyDefinitionNumber, DTOExporterPropertyDefinitionObject, DTOExporterPropertyDefinitionString, type DTOExporterPropertyDefinitionValue, DTOExporterPropertyDefinitionsResponse, DTOExporterPropertyType, DTOExporterPropertyValue, DTOExporterPropertyValueMap, DTOExporterResponse, DTOExporterSource, DTOExporterType, DTOExporterUpdateInput, DTOFeatureAgentResponseTracker, DTOFeatureAgentWorkFinalizeInput, DTOFeatureArtifact, DTOFeatureArtifactCreateInput, DTOFeatureArtifactDeleteInput, DTOFeatureArtifactListResponse, DTOFeatureArtifactResponse, DTOFeatureEvent, DTOFeatureEventAgentResponseFinished, DTOFeatureEventMessagesSent, DTOFeatureEventReactionsDeleted, DTOFeatureEventReactionsSent, DTOFeatureIteration, DTOFeatureIterationArtifactDiff, DTOFeatureIterationCreateInput, DTOFeatureIterationListResponse, DTOFeatureIterationPromoteInput, DTOFeatureIterationResponse, DTOFeatureIterationSetLatestInput, DTOFeatureIterationTag, DTOFeatureIterationTagCreateInput, DTOFeatureIterationTagListResponse, DTOFeatureIterationTagResponse, DTOFeatureIterationUpdateArtifactsInput, DTOFeatureIterationUpdateInput, DTOFeatureMessage, DTOFeatureMessageAgentSender, DTOFeatureMessageAttachments, DTOFeatureMessageCreateInput, DTOFeatureMessageListResponse, DTOFeatureMessageReaction, DTOFeatureMessageReactionCreateInput, DTOFeatureMessageReactionDeleteInput, DTOFeatureMessageReactionResponse, DTOFeatureMessageResponse, DTOFeatureMessageSender, DTOFeatureMessageSystemSender, DTOFeatureMessageUpdateInput, DTOFeatureMessageUserSender, DTOFeatureSandbox, DTOFigmaComponent, DTOFigmaComponentBooleanProperty, DTOFigmaComponentGroup, DTOFigmaComponentGroupListResponse, DTOFigmaComponentInstanceSwapProperty, DTOFigmaComponentListResponse, DTOFigmaComponentProperty, DTOFigmaComponentPropertyMap, DTOFigmaComponentTextProperty, DTOFigmaComponentVariantProperty, DTOFigmaNode, DTOFigmaNodeData, DTOFigmaNodeDataV2, DTOFigmaNodeOrigin, DTOFigmaNodeRenderActionInput, DTOFigmaNodeRenderActionOutput, DTOFigmaNodeRenderAsyncActionInput, DTOFigmaNodeRenderAsyncActionOutput, DTOFigmaNodeRenderFormat, DTOFigmaNodeRenderIdInput, DTOFigmaNodeRenderInput, DTOFigmaNodeRenderUrlInput, DTOFigmaNodeRerenderInput, DTOFigmaNodeResponse, DTOFigmaNodeStructure, DTOFigmaNodeStructureDetail, DTOFigmaNodeStructureDetailResponse, DTOFigmaNodeStructureListResponse, DTOFigmaNodeV2, DTOFigmaSourceUpdatePayload, DTOFileResponseItem, DTOFileUploadFinalizePayload, DTOFileUploadFinalizeResponse, DTOFileUploadItem, DTOFileUploadPayload, DTOFileUploadResponse, DTOFileUploadResponseItem, DTOFilesGetPayload, DTOFilesGetQuery, DTOFilesResponse, DTOForgeAgent, DTOForgeAgentsListResponse, DTOForgeArtifact, DTOForgeArtifactGetResponse, DTOForgeArtifactsListResponse, DTOForgeAvatarBuilder, DTOForgeBuildArtifact, DTOForgeChatMessage, DTOForgeChatMessageCreateInput, DTOForgeChatMessageCreateResponse, DTOForgeChatMessageListQuery, DTOForgeChatMessageListResponse, DTOForgeChatMessageScoreInput, DTOForgeChatMessageScoreRequest, DTOForgeChatMessageSender, DTOForgeChatMessageSenderType, DTOForgeChatMessageTagInput, DTOForgeChatThread, DTOForgeChatThreadCreateInput, DTOForgeChatThreadCreateResponse, DTOForgeChatThreadDeleteResponse, DTOForgeChatThreadListQuery, DTOForgeChatThreadListResponse, DTOForgeChatThreadUpdateInput, DTOForgeChatThreadUpdateResponse, DTOForgeFeatureRoom, DTOForgeFeatureRoomResponse, DTOForgeFigmaArtifact, DTOForgeFileArtifact, DTOForgeIterationMessage, DTOForgeIterationMessagesListResponse, DTOForgeParticipant, DTOForgeParticipantGetResponse, DTOForgeParticipantsListResponse, DTOForgeProject, DTOForgeProjectAction, DTOForgeProjectActionArtifactCreate, DTOForgeProjectActionArtifactDelete, DTOForgeProjectActionArtifactMove, DTOForgeProjectActionArtifactUpdate, DTOForgeProjectActionFeatureCreate, DTOForgeProjectActionFeatureDelete, DTOForgeProjectActionFeatureMove, DTOForgeProjectActionFeatureUpdate, type DTOForgeProjectActionOfType, DTOForgeProjectActionSectionCreate, DTOForgeProjectActionSectionDelete, DTOForgeProjectActionSectionMove, DTOForgeProjectActionSectionUpdate, type DTOForgeProjectActionType, DTOForgeProjectArtifact, DTOForgeProjectArtifactCreateInput, DTOForgeProjectArtifactCreateResponse, DTOForgeProjectArtifactDeleteInput, DTOForgeProjectArtifactDeleteResponse, DTOForgeProjectArtifactGetResponse, DTOForgeProjectArtifactMoveInput, DTOForgeProjectArtifactMoveResponse, DTOForgeProjectArtifactRoom, DTOForgeProjectArtifactRoomResponse, DTOForgeProjectArtifactUpdateInput, DTOForgeProjectArtifactUpdateResponse, DTOForgeProjectArtifactsListResponse, DTOForgeProjectContext, DTOForgeProjectContextCreateResponse, DTOForgeProjectContextGetResponse, DTOForgeProjectContextListResponse, DTOForgeProjectContextRemoveResponse, DTOForgeProjectContextUpdateResponse, DTOForgeProjectCreate, DTOForgeProjectCreateResponse, DTOForgeProjectFeature, DTOForgeProjectFeatureCreateInput, DTOForgeProjectFeatureDeleteInput, DTOForgeProjectFeatureGetResponse, DTOForgeProjectFeatureListResponse, DTOForgeProjectFeatureMoveInput, DTOForgeProjectFeatureUpdateInput, DTOForgeProjectFigmaNode, DTOForgeProjectFigmaNodeRenderInput, DTOForgeProjectFile, DTOForgeProjectFileListResponse, DTOForgeProjectFileUploadFinalizePayload, DTOForgeProjectFileUploadFinalizeResponse, DTOForgeProjectFileUploadPayload, DTOForgeProjectFileUploadPayloadItem, DTOForgeProjectFileUploadResponse, DTOForgeProjectGetResponse, DTOForgeProjectInvitation, DTOForgeProjectInvitationCreateResponse, DTOForgeProjectInvitationGetResponse, DTOForgeProjectInvitationRemoveResponse, DTOForgeProjectInvitationUpdateResponse, DTOForgeProjectInvitationsListResponse, DTOForgeProjectIteration, DTOForgeProjectIterationListResponse, DTOForgeProjectIterationMergeMeta, DTOForgeProjectListResponse, DTOForgeProjectMember, DTOForgeProjectMemberCreateResponse, DTOForgeProjectMemberGetResponse, DTOForgeProjectMemberRemoveResponse, DTOForgeProjectMemberRole, DTOForgeProjectMemberUpdateResponse, DTOForgeProjectMembersListResponse, DTOForgeProjectRemoveResponse, DTOForgeProjectRoom, DTOForgeProjectRoomResponse, DTOForgeProjectUpdate, DTOForgeProjectUpdateResponse, DTOForgeSection, DTOForgeSectionCreateInput, DTOForgeSectionDeleteInput, DTOForgeSectionItemMoveInput, DTOForgeSectionMoveInput, DTOForgeSectionUpdateInput, DTOForgeSpecArtifact, DTOFrameNodeStructure, DTOFrameNodeStructureListResponse, DTOGetBlockDefinitionsOutput, DTOGetBlockDefinitionsQuery, DTOGetDocumentationPageAnchorsResponse, DTOGetForgeIterationMessageResponse, DTOGetForgeProjectIterationResponse, DTOGitBranch, DTOGitOrganization, DTOGitProject, DTOGitRepository, DTOImportJob, DTOImportJobResponse, DTOIntegration, DTOIntegrationCredentials, DTOIntegrationOAuthGetResponse, DTOIntegrationPostResponse, DTOIntegrationsGetListResponse, DTOLiveblocksAuthRequest, DTOLiveblocksAuthResponse, DTOMoveDocumentationGroupInput, DTOMoveDocumentationPageInputV2, DTONpmRegistryAccessTokenResponse, DTONpmRegistryConfig, DTONpmRegistryConfigConstants, DTOObjectMeta, DTOPageBlockColorV2, DTOPageBlockDefinition, DTOPageBlockDefinitionBehavior, DTOPageBlockDefinitionItem, DTOPageBlockDefinitionLayout, DTOPageBlockDefinitionProperty, DTOPageBlockDefinitionVariant, DTOPageBlockItemV2, DTOPageRedirect, DTOPageRedirectCreateBody, DTOPageRedirectDeleteResponse, DTOPageRedirectListResponse, DTOPageRedirectResponse, DTOPageRedirectUpdateBody, DTOPagination, DTOPipeline, DTOPipelineCreateBody, DTOPipelineListQuery, DTOPipelineListResponse, DTOPipelineResponse, DTOPipelineTriggerBody, DTOPipelineUpdateBody, DTOPortalSettings, DTOPortalSettingsGetResponse, DTOPortalSettingsSidebar, DTOPortalSettingsSidebarLink, DTOPortalSettingsSidebarSection, DTOPortalSettingsTheme, DTOPortalSettingsUpdatePayload, type DTOPropertyDefinitionBase, DTOPublishDocumentationChanges, DTOPublishDocumentationRequest, DTOPublishDocumentationResponse, DTOPublishedDocAnalyticsComparisonData, DTOPublishedDocPageAnalyticsComparisonData, DTOPublishedDocPageVisitData, DTOPublishedDocVisitData, DTOPublishedDocVisitHeatMapWeek, DTORegistry, DTORemoveForgeProjectInvitation, DTORemoveForgeProjectMember, DTORenderedAssetFile, DTORestoreDocumentationGroupInput, DTORestoreDocumentationPageInput, DTOStorybookAccessTokenPayload, DTOStorybookAccessTokenResponse, DTOStorybookEntry, DTOStorybookEntryListResponse, DTOStorybookEntryOrigin, DTOStorybookEntryQuery, DTOStorybookEntryReplaceAction, DTOStorybookEntryResponse, DTOStorybookImportPayload, DTOStorybookSourceUpdatePayload, DTOStorybookUploadStatus, DTOStorybookUploadUrlRequest, DTOStorybookUploadUrlResponse, DTOSubscription, DTOSubscriptionResponse, DTOTheme, DTOThemeCreatePayload, DTOThemeListResponse, DTOThemeOverride, DTOThemeOverrideCreatePayload, DTOThemeResponse, DTOTokenCollection, DTOTokenCollectionsListReponse, DTOTransferOwnershipPayload, DTOUGetForgeAgentResponse, DTOUpdateDocumentationGroupInput, DTOUpdateDocumentationPageDocumentInputV2, DTOUpdateDocumentationPageInputV2, DTOUpdateForgeAgent, DTOUpdateForgeAgentResponse, DTOUpdateForgeArtifact, DTOUpdateForgeArtifactResponse, DTOUpdateForgeBuildArtifact, DTOUpdateForgeFigmaArtifact, DTOUpdateForgeFileArtifact, DTOUpdateForgeIterationMessage, DTOUpdateForgeIterationMessageResponse, DTOUpdateForgeParticipant, DTOUpdateForgeParticipantResponse, DTOUpdateForgeProjectContext, DTOUpdateForgeProjectInvitation, DTOUpdateForgeProjectIteration, DTOUpdateForgeProjectIterationResponse, DTOUpdateForgeProjectMember, DTOUpdateForgeSpecArtifact, DTOUpdateRegistryInput, DTOUpdateRegistryOutput, DTOUpdateUserNotificationSettingsPayload, DTOUpdateVersionInput, DTOUploadUrlItem, DTOUser, DTOUserDesignSystemsResponse, DTOUserGetResponse, DTOUserNotificationSettingsResponse, DTOUserOnboarding, DTOUserOnboardingDepartment, DTOUserOnboardingJobLevel, DTOUserProfile, DTOUserProfileUpdate, DTOUserProfileUpdatePayload, DTOUserProfileUpdateResponse, DTOUserSource, DTOUserTheme, DTOUserWorkspaceMembership, DTOUserWorkspaceMembershipsResponse, DTOWorkspace, DTOWorkspaceCreateInput, DTOWorkspaceIntegrationGetGitObjectsInput, DTOWorkspaceIntegrationOauthInput, DTOWorkspaceIntegrationPATInput, DTOWorkspaceInvitationInput, DTOWorkspaceInvitationUpdateResponse, DTOWorkspaceInvitationsListInput, DTOWorkspaceInvitationsResponse, DTOWorkspaceInviteUpdate, DTOWorkspaceMember, DTOWorkspaceMembersListResponse, DTOWorkspaceProfile, DTOWorkspaceResponse, DTOWorkspaceRole, DTOWorkspaceSeatType, DTOWorkspaceUntypedData, DTOWorkspaceUntypedDataCreatePayload, DTOWorkspaceUntypedDataListResponse, DTOWorkspaceUntypedDataResponse, DTOWorkspaceUntypedDataUpdatePayload, type DTPGetForgeAgentResponse, DesignSystemAnalyticsEndpoint, DesignSystemBffEndpoint, DesignSystemComponentEndpoint, DesignSystemContactsEndpoint, DesignSystemMembersEndpoint, DesignSystemPageRedirectsEndpoint, DesignSystemSourcesEndpoint, DesignSystemVersionsEndpoint, DesignSystemsEndpoint, DimensionsVariableScopeType, DocsStructureRepository, DocumentationEndpoint, DocumentationHierarchySettings, DocumentationPageEditorModel, DocumentationPageV1DTO, ElementPropertyDefinitionsEndpoint, ElementPropertyValuesEndpoint, ElementsActionEndpoint, ElementsEndpoint, ExporterJobsEndpoint, ExportersEndpoint, FeatureRoomBaseYDoc, type FeatureRoomBaseYDocState, type FeatureRoomUpdate, FigmaComponentGroupsEndpoint, FigmaComponentsEndpoint, FigmaFrameStructuresEndpoint, FigmaNodeStructuresEndpoint, FigmaUtils, FilesEndpoint, ForgeAgentsEndpoint, ForgeArtifactsEndpoint, ForgeEndpoint, ForgeFeatureArtifactsEndpoint, ForgeFeatureIterationsEndpoint, ForgeFeatureMessagesEndpoint, ForgeProjectContentRepository, ForgeProjectContextsEndpoint, ForgeProjectFeaturesEndpoint, ForgeProjectFilesEndpoint, ForgeProjectInvitationsEndpoint, ForgeProjectIterationsEndpoint, ForgeProjectMembersEndpoint, ForgeProjectRoomBaseYDoc, type ForgeProjectRoomBaseYDocState, ForgeProjectsEndpoint, FormattedCollections, FrontendFeatureRoomYDoc, FrontendVersionRoomYDoc, GitDestinationOptions, ImportJobsEndpoint, type ListItemNode, type ListNode, ListTreeBuilder, LiveblocksEndpoint, type LocalApproval, LocalDocsElementActionExecutor, type LocalDocsPage, type LocalDocsPageGroup, LocalProjectActionExecutor, NpmRegistryInput, ObjectMeta, OverridesEndpoint, PageBlockEditorModel, PageSectionEditorModel, ParsedFigmaFileURLError, PipelinesEndpoint, type ProjectContentState, type ProsemirrorBlockItem, type ProsemirrorMark, type ProsemirrorNode, RGB, RGBA, type RequestEexecutorServerErrorCode, RequestExecutor, type RequestExecutorConfig, RequestExecutorError, type RequestExecutorErrorType, type RequestExecutorJSONRequest, ResolvedVariableType, StorybookEntriesEndpoint, StorybookHostingEndpoint, StringVariableScopeType, SupernovaApiClient, type SupportedElementActionType, ThemesEndpoint, TokenCollectionsEndpoint, TokenGroupsEndpoint, TokensEndpoint, UsersEndpoint, Variable, VariableAlias, VariableMode, VariableValue, VariablesMapping, type VersionRoomApproval, VersionRoomBaseYDoc, type VersionRoomBaseYDocState, type VersionRoomDocsPage, type VersionRoomDocsPageGroup, VersionSQSPayload, VersionStatsEndpoint, WorkspaceChatThreadsEndpoint, WorkspaceConfigurationPayload, WorkspaceIntegrationsEndpoint, WorkspaceInvitationsEndpoint, WorkspaceMembersEndpoint, WorkspaceNpmRegistryEndpoint, WorkspacesEndpoint, applyActionsLocally, applyPrivacyConfigurationToNestedItems, applyProjectActionsLocally, blockToProsemirrorNode, buildDocPagePublishPaths, calculateElementParentChain, computeDocsHierarchy, documentationAnalyticsToComparisonDto, documentationAnalyticsToGlobalDto, documentationAnalyticsToHeatMapDto, documentationAnalyticsToPageComparisonDto, documentationAnalyticsToPageDto, documentationItemConfigurationToDTOV1, documentationItemConfigurationToDTOV2, documentationPageToDTOV2, documentationPagesFixedConfigurationToDTOV1, documentationPagesFixedConfigurationToDTOV2, documentationPagesToDTOV1, documentationPagesToDTOV2, elementGroupsToDocumentationGroupDTOV1, elementGroupsToDocumentationGroupDTOV2, elementGroupsToDocumentationGroupFixedConfigurationDTOV1, elementGroupsToDocumentationGroupFixedConfigurationDTOV2, elementGroupsToDocumentationGroupStructureDTOV1, exhaustiveInvalidUriPaths, generateHash, generatePageContentHash, getDtoDefaultItemConfigurationV1, getDtoDefaultItemConfigurationV2, getMockPageBlockDefinitions, gitBranchToDto, gitOrganizationToDto, gitProjectToDto, gitRepositoryToDto, innerEditorProsemirrorSchema, integrationCredentialToDto, integrationToDto, isValidRedirectPath, itemConfigurationToYjs, mainEditorProsemirrorSchema, pageToProsemirrorDoc, pageToYDoc, pageToYXmlFragment, pipelineToDto, prosemirrorDocToPage, prosemirrorDocToRichTextPropertyValue, prosemirrorNodeToSection, prosemirrorNodesToBlocks, richTextPropertyValueToProsemirror, serializeAsCustomBlock, serializeQuery, shallowProsemirrorNodeToBlock, validateDesignSystemVersion, validateSsoPayload, yDocToPage, yXmlFragmentToPage, yjsToDocumentationHierarchy };
|
|
145936
|
+
export { BackendFeatureRoomYDoc, BackendForgeProjectRoomYDoc, 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, DTOBffFigmaImportRequestBody, DTOBffImportRequestBody, DTOBffUploadImportRequestBody, DTOBillingCheckoutInput, DTOBillingCheckoutMode, DTOBillingCheckoutResponse, DTOBillingCreditsCheckIfCanSpendResponse, DTOBillingCreditsSpendInput, DTOBillingCreditsSpendResponse, DTOBillingSupportedModels, DTOBrand, DTOBrandCreatePayload, DTOBrandCreateResponse, DTOBrandGetResponse, DTOBrandUpdatePayload, DTOBrandsListResponse, DTOCodeComponent, DTOCodeComponentCreateInput, DTOCodeComponentListResponse, DTOCodeComponentParentType, DTOCodeComponentProperty, DTOCodeComponentResolvedType, DTOCodeComponentResolvedTypeKind, DTOCodeComponentResponse, DTOCodeComponentUpsertResponse, DTOCodeComponentsCreateInput, DTOColorTokenInlineData, DTOCreateDocumentationGroupInput, DTOCreateDocumentationPageInputV2, DTOCreateDocumentationTabInput, DTOCreateForgeAgent, DTOCreateForgeAgentResponse, DTOCreateForgeArtifact, DTOCreateForgeArtifactResponse, DTOCreateForgeBuildArtifact, DTOCreateForgeFigmaArtifact, DTOCreateForgeFileArtifact, DTOCreateForgeIterationMessage, DTOCreateForgeIterationMessageResponse, DTOCreateForgeParticipant, DTOCreateForgeParticipantResponse, DTOCreateForgeProjectContext, DTOCreateForgeProjectInvitation, DTOCreateForgeProjectIteration, DTOCreateForgeProjectIterationResponse, DTOCreateForgeProjectMember, DTOCreateForgeSpecArtifact, DTOCreateVersionInput, DTOCreditBalance, DTOCreditsPrices, DTODataSource, DTODataSourceFigma, DTODataSourceFigmaCloud, DTODataSourceFigmaCreatePayload, DTODataSourceFigmaImportPayload, DTODataSourceFigmaScope, DTODataSourceFigmaVariablesPlugin, DTODataSourceResponse, DTODataSourceStorybook, DTODataSourceStorybookCreatePayload, DTODataSourceTokenStudio, DTODataSourcesListResponse, DTODataSourcesStorybookResponse, DTODeleteDocumentationGroupInput, DTODeleteDocumentationPageInputV2, DTODeleteDocumentationTabGroupInput, DTODeleteForgeAgentResponse, DTODeleteForgeArtifactResponse, DTODeleteForgeIterationMessageResponse, DTODeleteForgeParticipantResponse, DTODeleteForgeProjectIterationResponse, DTODependencyDefinition, DTODesignElementsDataDiffResponse, DTODesignSystem, DTODesignSystemComponent, DTODesignSystemComponentCreateInput, DTODesignSystemComponentListResponse, DTODesignSystemComponentResponse, DTODesignSystemContactsResponse, DTODesignSystemCreateInput, DTODesignSystemInvitation, DTODesignSystemMember, DTODesignSystemMemberListResponse, DTODesignSystemMembersUpdatePayload, DTODesignSystemMembersUpdateResponse, DTODesignSystemResponse, DTODesignSystemRole, DTODesignSystemUpdateAccessModeInput, DTODesignSystemUpdateInput, DTODesignSystemVersion, DTODesignSystemVersionCreationResponse, DTODesignSystemVersionGetResponse, DTODesignSystemVersionJobStatusResponse, DTODesignSystemVersionJobsResponse, DTODesignSystemVersionRoom, DTODesignSystemVersionRoomResponse, DTODesignSystemVersionStats, DTODesignSystemVersionStatsQuery, DTODesignSystemVersionsListResponse, DTODesignSystemsListResponse, DTODesignToken, DTODesignTokenCreatePayload, DTODesignTokenGroup, DTODesignTokenGroupCreatePayload, DTODesignTokenGroupListResponse, DTODesignTokenGroupResponse, DTODesignTokenListResponse, DTODesignTokenResponse, DTODiffCountBase, DTODocumentationAnalyticsDiffPayload, DTODocumentationAnalyticsRequest, DTODocumentationAnalyticsTimeFrame, DTODocumentationAnalyticsTimeFrameComparison, DTODocumentationDraftChangeType, DTODocumentationDraftState, DTODocumentationDraftStateCreated, DTODocumentationDraftStateDeleted, DTODocumentationDraftStateUpdated, DTODocumentationGroupApprovalState, DTODocumentationGroupCreateActionInputV2, DTODocumentationGroupCreateActionOutputV2, DTODocumentationGroupDeleteActionInputV2, DTODocumentationGroupDeleteActionOutputV2, DTODocumentationGroupDuplicateActionInputV2, DTODocumentationGroupDuplicateActionOutputV2, DTODocumentationGroupMoveActionInputV2, DTODocumentationGroupMoveActionOutputV2, DTODocumentationGroupRestoreActionInput, DTODocumentationGroupRestoreActionOutput, DTODocumentationGroupStructureV1, DTODocumentationGroupUpdateActionInputV2, DTODocumentationGroupUpdateActionOutputV2, DTODocumentationGroupV1, DTODocumentationGroupV2, DTODocumentationHierarchyV2, DTODocumentationItemConfigurationV1, DTODocumentationItemConfigurationV2, DTODocumentationItemHeaderV2, DTODocumentationLinkPreviewRequest, DTODocumentationLinkPreviewResponse, DTODocumentationPageAnalyticsDifference, DTODocumentationPageAnalyticsResponse, DTODocumentationPageAnchor, DTODocumentationPageApprovalState, DTODocumentationPageApprovalStateChangeActionInput, DTODocumentationPageApprovalStateChangeActionOutput, DTODocumentationPageApprovalStateChangeInput, DTODocumentationPageContent, DTODocumentationPageContentGetResponse, DTODocumentationPageCreateActionInputV2, DTODocumentationPageCreateActionOutputV2, DTODocumentationPageDeleteActionInputV2, DTODocumentationPageDeleteActionOutputV2, DTODocumentationPageDependencies, DTODocumentationPageDependenciesGetResponse, DTODocumentationPageDuplicateActionInputV2, DTODocumentationPageDuplicateActionOutputV2, DTODocumentationPageIntervalDifferenceResponse, DTODocumentationPageMoveActionInputV2, DTODocumentationPageMoveActionOutputV2, DTODocumentationPageRestoreActionInput, DTODocumentationPageRestoreActionOutput, DTODocumentationPageRoom, DTODocumentationPageRoomHeaderData, DTODocumentationPageRoomHeaderDataUpdate, DTODocumentationPageRoomResponse, DTODocumentationPageSnapshot, DTODocumentationPageUpdateActionInputV2, DTODocumentationPageUpdateActionOutputV2, DTODocumentationPageUpdateDocumentActionInputV2, DTODocumentationPageUpdateDocumentActionOutputV2, DTODocumentationPageV2, DTODocumentationPublishMetadata, DTODocumentationPublishTypeQueryParams, DTODocumentationSettings, DTODocumentationStructure, DTODocumentationStructureGroupItem, DTODocumentationStructureItem, DTODocumentationStructurePageItem, DTODocumentationTabCreateActionInputV2, DTODocumentationTabCreateActionOutputV2, type DTODocumentationTabGroupCreateActionInputV2, DTODocumentationTabGroupDeleteActionInputV2, DTODocumentationTabGroupDeleteActionOutputV2, DTODownloadAssetsRequest, DTODownloadAssetsResponse, DTODuplicateDocumentationGroupInput, DTODuplicateDocumentationPageInputV2, DTOElementActionInput, type DTOElementActionInputOfType, DTOElementActionOutput, DTOElementPropertyDefinition, DTOElementPropertyDefinitionCreatePayload, DTOElementPropertyDefinitionListResponse, DTOElementPropertyDefinitionOption, DTOElementPropertyDefinitionResponse, DTOElementPropertyDefinitionUpdatePayload, DTOElementPropertyValue, DTOElementPropertyValueListResponse, DTOElementPropertyValueResponse, DTOElementPropertyValueUpsertPaylod, DTOElementPropertyValuesEditActionInput, DTOElementPropertyValuesEditActionOutput, DTOElementView, DTOElementViewBasePropertyColumn, DTOElementViewColumn, DTOElementViewColumnSharedAttributes, DTOElementViewPropertyDefinitionColumn, DTOElementViewThemeColumn, DTOElementViewsListResponse, DTOElementsGetOutput, DTOElementsGetOutputV2, type DTOElementsGetQueryParsed, type DTOElementsGetQueryRaw, DTOElementsGetQuerySchema, DTOElementsGetTypeFilter, DTOEvent, DTOEventDataSourcesImported, DTOEventFigmaNodesRendered, DTOExportJob, DTOExportJobCreateInput, DTOExportJobCreatedBy, DTOExportJobDesignSystemPreview, DTOExportJobDesignSystemVersionPreview, DTOExportJobDestinations, DTOExportJobResponse, DTOExportJobResponseLegacy, DTOExportJobResult, DTOExportJobsListFilter, DTOExporter, DTOExporterCreateInput, DTOExporterDeprecationInput, DTOExporterGitProviderEnum, DTOExporterListQuery, DTOExporterListResponse, DTOExporterMembership, DTOExporterMembershipRole, DTOExporterPropertyDefinition, DTOExporterPropertyDefinitionArray, DTOExporterPropertyDefinitionBoolean, DTOExporterPropertyDefinitionCode, DTOExporterPropertyDefinitionEnum, DTOExporterPropertyDefinitionEnumOption, DTOExporterPropertyDefinitionNumber, DTOExporterPropertyDefinitionObject, DTOExporterPropertyDefinitionString, type DTOExporterPropertyDefinitionValue, DTOExporterPropertyDefinitionsResponse, DTOExporterPropertyType, DTOExporterPropertyValue, DTOExporterPropertyValueMap, DTOExporterResponse, DTOExporterSource, DTOExporterType, DTOExporterUpdateInput, DTOFeatureAgentResponseTracker, DTOFeatureAgentWorkFinalizeInput, DTOFeatureArtifact, DTOFeatureArtifactCreateInput, DTOFeatureArtifactDeleteInput, DTOFeatureArtifactListResponse, DTOFeatureArtifactResponse, DTOFeatureEvent, DTOFeatureEventAgentResponseFinished, DTOFeatureEventMessagesSent, DTOFeatureEventReactionsDeleted, DTOFeatureEventReactionsSent, DTOFeatureIteration, DTOFeatureIterationArtifactDiff, DTOFeatureIterationArtifactsDiff, DTOFeatureIterationCreateInput, DTOFeatureIterationListResponse, DTOFeatureIterationPromoteInput, DTOFeatureIterationResponse, DTOFeatureIterationSetLatestInput, DTOFeatureIterationTag, DTOFeatureIterationTagCreateInput, DTOFeatureIterationTagListResponse, DTOFeatureIterationTagResponse, DTOFeatureIterationUpdateArtifactsInput, DTOFeatureIterationUpdateInput, DTOFeatureMessage, DTOFeatureMessageAgentSender, DTOFeatureMessageAttachments, DTOFeatureMessageCreateInput, DTOFeatureMessageListResponse, DTOFeatureMessageReaction, DTOFeatureMessageReactionCreateInput, DTOFeatureMessageReactionDeleteInput, DTOFeatureMessageReactionResponse, DTOFeatureMessageResponse, DTOFeatureMessageSender, DTOFeatureMessageSystemSender, DTOFeatureMessageUpdateInput, DTOFeatureMessageUserSender, DTOFeatureSandbox, DTOFigmaComponent, DTOFigmaComponentBooleanProperty, DTOFigmaComponentGroup, DTOFigmaComponentGroupListResponse, DTOFigmaComponentInstanceSwapProperty, DTOFigmaComponentListResponse, DTOFigmaComponentProperty, DTOFigmaComponentPropertyMap, DTOFigmaComponentTextProperty, DTOFigmaComponentVariantProperty, DTOFigmaNode, DTOFigmaNodeData, DTOFigmaNodeDataV2, DTOFigmaNodeOrigin, DTOFigmaNodeRenderActionInput, DTOFigmaNodeRenderActionOutput, DTOFigmaNodeRenderAsyncActionInput, DTOFigmaNodeRenderAsyncActionOutput, DTOFigmaNodeRenderFormat, DTOFigmaNodeRenderIdInput, DTOFigmaNodeRenderInput, DTOFigmaNodeRenderUrlInput, DTOFigmaNodeRerenderInput, DTOFigmaNodeResponse, DTOFigmaNodeStructure, DTOFigmaNodeStructureDetail, DTOFigmaNodeStructureDetailResponse, DTOFigmaNodeStructureListResponse, DTOFigmaNodeV2, DTOFigmaSourceUpdatePayload, DTOFileResponseItem, DTOFileUploadFinalizePayload, DTOFileUploadFinalizeResponse, DTOFileUploadItem, DTOFileUploadPayload, DTOFileUploadResponse, DTOFileUploadResponseItem, DTOFilesGetPayload, DTOFilesGetQuery, DTOFilesResponse, DTOForgeAgent, DTOForgeAgentsListResponse, DTOForgeArtifact, DTOForgeArtifactGetResponse, DTOForgeArtifactsListResponse, DTOForgeAvatarBuilder, DTOForgeBuildArtifact, DTOForgeChatMessage, DTOForgeChatMessageCreateInput, DTOForgeChatMessageCreateResponse, DTOForgeChatMessageListQuery, DTOForgeChatMessageListResponse, DTOForgeChatMessageScoreInput, DTOForgeChatMessageScoreRequest, DTOForgeChatMessageSender, DTOForgeChatMessageSenderType, DTOForgeChatMessageTagInput, DTOForgeChatThread, DTOForgeChatThreadCreateInput, DTOForgeChatThreadCreateResponse, DTOForgeChatThreadDeleteResponse, DTOForgeChatThreadListQuery, DTOForgeChatThreadListResponse, DTOForgeChatThreadUpdateInput, DTOForgeChatThreadUpdateResponse, DTOForgeFeatureRoom, DTOForgeFeatureRoomResponse, DTOForgeFigmaArtifact, DTOForgeFileArtifact, DTOForgeIterationMessage, DTOForgeIterationMessagesListResponse, DTOForgeParticipant, DTOForgeParticipantGetResponse, DTOForgeParticipantsListResponse, DTOForgeProject, DTOForgeProjectAction, DTOForgeProjectActionArtifactCreate, DTOForgeProjectActionArtifactDelete, DTOForgeProjectActionArtifactMove, DTOForgeProjectActionArtifactUpdate, DTOForgeProjectActionFeatureCreate, DTOForgeProjectActionFeatureDelete, DTOForgeProjectActionFeatureMove, DTOForgeProjectActionFeatureUpdate, type DTOForgeProjectActionOfType, DTOForgeProjectActionSectionCreate, DTOForgeProjectActionSectionDelete, DTOForgeProjectActionSectionMove, DTOForgeProjectActionSectionUpdate, type DTOForgeProjectActionType, DTOForgeProjectArtifact, DTOForgeProjectArtifactCreateInput, DTOForgeProjectArtifactCreateResponse, DTOForgeProjectArtifactDeleteInput, DTOForgeProjectArtifactDeleteResponse, DTOForgeProjectArtifactGetResponse, DTOForgeProjectArtifactMoveInput, DTOForgeProjectArtifactMoveResponse, DTOForgeProjectArtifactRoom, DTOForgeProjectArtifactRoomResponse, DTOForgeProjectArtifactUpdateInput, DTOForgeProjectArtifactUpdateResponse, DTOForgeProjectArtifactsListResponse, DTOForgeProjectContext, DTOForgeProjectContextCreateResponse, DTOForgeProjectContextGetResponse, DTOForgeProjectContextListResponse, DTOForgeProjectContextRemoveResponse, DTOForgeProjectContextUpdateResponse, DTOForgeProjectCreate, DTOForgeProjectCreateResponse, DTOForgeProjectFeature, DTOForgeProjectFeatureCreateInput, DTOForgeProjectFeatureDeleteInput, DTOForgeProjectFeatureGetResponse, DTOForgeProjectFeatureListResponse, DTOForgeProjectFeatureMoveInput, DTOForgeProjectFeatureUpdateInput, DTOForgeProjectFigmaNode, DTOForgeProjectFigmaNodeRenderInput, DTOForgeProjectFile, DTOForgeProjectFileListResponse, DTOForgeProjectFileUploadFinalizePayload, DTOForgeProjectFileUploadFinalizeResponse, DTOForgeProjectFileUploadPayload, DTOForgeProjectFileUploadPayloadItem, DTOForgeProjectFileUploadResponse, DTOForgeProjectGetResponse, DTOForgeProjectInvitation, DTOForgeProjectInvitationCreateResponse, DTOForgeProjectInvitationGetResponse, DTOForgeProjectInvitationRemoveResponse, DTOForgeProjectInvitationUpdateResponse, DTOForgeProjectInvitationsListResponse, DTOForgeProjectIteration, DTOForgeProjectIterationListResponse, DTOForgeProjectIterationMergeMeta, DTOForgeProjectListResponse, DTOForgeProjectMember, DTOForgeProjectMemberCreateResponse, DTOForgeProjectMemberGetResponse, DTOForgeProjectMemberRemoveResponse, DTOForgeProjectMemberRole, DTOForgeProjectMemberUpdateResponse, DTOForgeProjectMembersListResponse, DTOForgeProjectRemoveResponse, DTOForgeProjectRoom, DTOForgeProjectRoomResponse, DTOForgeProjectUpdate, DTOForgeProjectUpdateResponse, DTOForgeSection, DTOForgeSectionCreateInput, DTOForgeSectionDeleteInput, DTOForgeSectionItemMoveInput, DTOForgeSectionMoveInput, DTOForgeSectionUpdateInput, DTOForgeSpecArtifact, DTOFrameNodeStructure, DTOFrameNodeStructureListResponse, DTOGetBlockDefinitionsOutput, DTOGetBlockDefinitionsQuery, DTOGetDocumentationPageAnchorsResponse, DTOGetForgeIterationMessageResponse, DTOGetForgeProjectIterationResponse, DTOGitBranch, DTOGitOrganization, DTOGitProject, DTOGitRepository, DTOImportJob, DTOImportJobResponse, DTOIntegration, DTOIntegrationCredentials, DTOIntegrationOAuthGetResponse, DTOIntegrationPostResponse, DTOIntegrationsGetListResponse, DTOLiveblocksAuthRequest, DTOLiveblocksAuthResponse, DTOMoveDocumentationGroupInput, DTOMoveDocumentationPageInputV2, DTONpmRegistryAccessTokenResponse, DTONpmRegistryConfig, DTONpmRegistryConfigConstants, DTOObjectMeta, DTOPageBlockColorV2, DTOPageBlockDefinition, DTOPageBlockDefinitionBehavior, DTOPageBlockDefinitionItem, DTOPageBlockDefinitionLayout, DTOPageBlockDefinitionProperty, DTOPageBlockDefinitionVariant, DTOPageBlockItemV2, DTOPageRedirect, DTOPageRedirectCreateBody, DTOPageRedirectDeleteResponse, DTOPageRedirectListResponse, DTOPageRedirectResponse, DTOPageRedirectUpdateBody, DTOPagination, DTOPipeline, DTOPipelineCreateBody, DTOPipelineListQuery, DTOPipelineListResponse, DTOPipelineResponse, DTOPipelineTriggerBody, DTOPipelineUpdateBody, DTOPortalSettings, DTOPortalSettingsGetResponse, DTOPortalSettingsSidebar, DTOPortalSettingsSidebarLink, DTOPortalSettingsSidebarSection, DTOPortalSettingsTheme, DTOPortalSettingsUpdatePayload, type DTOPropertyDefinitionBase, DTOPublishDocumentationChanges, DTOPublishDocumentationRequest, DTOPublishDocumentationResponse, DTOPublishedDocAnalyticsComparisonData, DTOPublishedDocPageAnalyticsComparisonData, DTOPublishedDocPageVisitData, DTOPublishedDocVisitData, DTOPublishedDocVisitHeatMapWeek, DTORegistry, DTORemoveForgeProjectInvitation, DTORemoveForgeProjectMember, DTORenderedAssetFile, DTORestoreDocumentationGroupInput, DTORestoreDocumentationPageInput, DTOStorybookAccessTokenPayload, DTOStorybookAccessTokenResponse, DTOStorybookEntry, DTOStorybookEntryListResponse, DTOStorybookEntryOrigin, DTOStorybookEntryQuery, DTOStorybookEntryReplaceAction, DTOStorybookEntryResponse, DTOStorybookImportPayload, DTOStorybookSourceUpdatePayload, DTOStorybookUploadStatus, DTOStorybookUploadUrlRequest, DTOStorybookUploadUrlResponse, DTOSubscription, DTOSubscriptionResponse, DTOTheme, DTOThemeCreatePayload, DTOThemeListResponse, DTOThemeOverride, DTOThemeOverrideCreatePayload, DTOThemeResponse, DTOTokenCollection, DTOTokenCollectionsListReponse, DTOTransferOwnershipPayload, DTOUGetForgeAgentResponse, DTOUpdateDocumentationGroupInput, DTOUpdateDocumentationPageDocumentInputV2, DTOUpdateDocumentationPageInputV2, DTOUpdateForgeAgent, DTOUpdateForgeAgentResponse, DTOUpdateForgeArtifact, DTOUpdateForgeArtifactResponse, DTOUpdateForgeBuildArtifact, DTOUpdateForgeFigmaArtifact, DTOUpdateForgeFileArtifact, DTOUpdateForgeIterationMessage, DTOUpdateForgeIterationMessageResponse, DTOUpdateForgeParticipant, DTOUpdateForgeParticipantResponse, DTOUpdateForgeProjectContext, DTOUpdateForgeProjectInvitation, DTOUpdateForgeProjectIteration, DTOUpdateForgeProjectIterationResponse, DTOUpdateForgeProjectMember, DTOUpdateForgeSpecArtifact, DTOUpdateRegistryInput, DTOUpdateRegistryOutput, DTOUpdateUserNotificationSettingsPayload, DTOUpdateVersionInput, DTOUploadUrlItem, DTOUser, DTOUserDesignSystemsResponse, DTOUserGetResponse, DTOUserNotificationSettingsResponse, DTOUserOnboarding, DTOUserOnboardingDepartment, DTOUserOnboardingJobLevel, DTOUserProfile, DTOUserProfileUpdate, DTOUserProfileUpdatePayload, DTOUserProfileUpdateResponse, DTOUserSource, DTOUserTheme, DTOUserWorkspaceMembership, DTOUserWorkspaceMembershipsResponse, DTOWorkspace, DTOWorkspaceCreateInput, DTOWorkspaceIntegrationGetGitObjectsInput, DTOWorkspaceIntegrationOauthInput, DTOWorkspaceIntegrationPATInput, DTOWorkspaceInvitationInput, DTOWorkspaceInvitationUpdateResponse, DTOWorkspaceInvitationsListInput, DTOWorkspaceInvitationsResponse, DTOWorkspaceInviteUpdate, DTOWorkspaceMember, DTOWorkspaceMembersListResponse, DTOWorkspaceProfile, DTOWorkspaceResponse, DTOWorkspaceRole, DTOWorkspaceSeatType, DTOWorkspaceUntypedData, DTOWorkspaceUntypedDataCreatePayload, DTOWorkspaceUntypedDataListResponse, DTOWorkspaceUntypedDataResponse, DTOWorkspaceUntypedDataUpdatePayload, type DTPGetForgeAgentResponse, DesignSystemAnalyticsEndpoint, DesignSystemBffEndpoint, DesignSystemComponentEndpoint, DesignSystemContactsEndpoint, DesignSystemMembersEndpoint, DesignSystemPageRedirectsEndpoint, DesignSystemSourcesEndpoint, DesignSystemVersionsEndpoint, DesignSystemsEndpoint, DimensionsVariableScopeType, DocsStructureRepository, DocumentationEndpoint, DocumentationHierarchySettings, DocumentationPageEditorModel, DocumentationPageV1DTO, ElementPropertyDefinitionsEndpoint, ElementPropertyValuesEndpoint, ElementsActionEndpoint, ElementsEndpoint, ExporterJobsEndpoint, ExportersEndpoint, FeatureRoomBaseYDoc, type FeatureRoomBaseYDocState, type FeatureRoomUpdate, FigmaComponentGroupsEndpoint, FigmaComponentsEndpoint, FigmaFrameStructuresEndpoint, FigmaNodeStructuresEndpoint, FigmaUtils, FilesEndpoint, ForgeAgentsEndpoint, ForgeArtifactsEndpoint, ForgeEndpoint, ForgeFeatureArtifactsEndpoint, ForgeFeatureIterationsEndpoint, ForgeFeatureMessagesEndpoint, ForgeProjectContentRepository, ForgeProjectContextsEndpoint, ForgeProjectFeaturesEndpoint, ForgeProjectFilesEndpoint, ForgeProjectInvitationsEndpoint, ForgeProjectIterationsEndpoint, ForgeProjectMembersEndpoint, ForgeProjectRoomBaseYDoc, type ForgeProjectRoomBaseYDocState, ForgeProjectsEndpoint, FormattedCollections, FrontendFeatureRoomYDoc, FrontendVersionRoomYDoc, GitDestinationOptions, ImportJobsEndpoint, type ListItemNode, type ListNode, ListTreeBuilder, LiveblocksEndpoint, type LocalApproval, LocalDocsElementActionExecutor, type LocalDocsPage, type LocalDocsPageGroup, LocalProjectActionExecutor, NpmRegistryInput, ObjectMeta, OverridesEndpoint, PageBlockEditorModel, PageSectionEditorModel, ParsedFigmaFileURLError, PipelinesEndpoint, type ProjectContentState, type ProsemirrorBlockItem, type ProsemirrorMark, type ProsemirrorNode, RGB, RGBA, type RequestEexecutorServerErrorCode, RequestExecutor, type RequestExecutorConfig, RequestExecutorError, type RequestExecutorErrorType, type RequestExecutorJSONRequest, ResolvedVariableType, StorybookEntriesEndpoint, StorybookHostingEndpoint, StringVariableScopeType, SupernovaApiClient, type SupportedElementActionType, ThemesEndpoint, TokenCollectionsEndpoint, TokenGroupsEndpoint, TokensEndpoint, UsersEndpoint, Variable, VariableAlias, VariableMode, VariableValue, VariablesMapping, type VersionRoomApproval, VersionRoomBaseYDoc, type VersionRoomBaseYDocState, type VersionRoomDocsPage, type VersionRoomDocsPageGroup, VersionSQSPayload, VersionStatsEndpoint, WorkspaceChatThreadsEndpoint, WorkspaceConfigurationPayload, WorkspaceIntegrationsEndpoint, WorkspaceInvitationsEndpoint, WorkspaceMembersEndpoint, WorkspaceNpmRegistryEndpoint, WorkspacesEndpoint, applyActionsLocally, applyPrivacyConfigurationToNestedItems, applyProjectActionsLocally, blockToProsemirrorNode, buildDocPagePublishPaths, calculateElementParentChain, computeDocsHierarchy, documentationAnalyticsToComparisonDto, documentationAnalyticsToGlobalDto, documentationAnalyticsToHeatMapDto, documentationAnalyticsToPageComparisonDto, documentationAnalyticsToPageDto, documentationItemConfigurationToDTOV1, documentationItemConfigurationToDTOV2, documentationPageToDTOV2, documentationPagesFixedConfigurationToDTOV1, documentationPagesFixedConfigurationToDTOV2, documentationPagesToDTOV1, documentationPagesToDTOV2, elementGroupsToDocumentationGroupDTOV1, elementGroupsToDocumentationGroupDTOV2, elementGroupsToDocumentationGroupFixedConfigurationDTOV1, elementGroupsToDocumentationGroupFixedConfigurationDTOV2, elementGroupsToDocumentationGroupStructureDTOV1, exhaustiveInvalidUriPaths, generateHash, generatePageContentHash, getDtoDefaultItemConfigurationV1, getDtoDefaultItemConfigurationV2, getMockPageBlockDefinitions, gitBranchToDto, gitOrganizationToDto, gitProjectToDto, gitRepositoryToDto, innerEditorProsemirrorSchema, integrationCredentialToDto, integrationToDto, isValidRedirectPath, itemConfigurationToYjs, mainEditorProsemirrorSchema, pageToProsemirrorDoc, pageToYDoc, pageToYXmlFragment, pipelineToDto, prosemirrorDocToPage, prosemirrorDocToRichTextPropertyValue, prosemirrorNodeToSection, prosemirrorNodesToBlocks, richTextPropertyValueToProsemirror, serializeAsCustomBlock, serializeQuery, shallowProsemirrorNodeToBlock, validateDesignSystemVersion, validateSsoPayload, yDocToPage, yXmlFragmentToPage, yjsToDocumentationHierarchy };
|