@supernova-studio/client 1.27.0 → 1.28.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 +129 -61
- package/dist/index.d.ts +129 -61
- package/dist/index.js +55 -5
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +54 -4
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -68476,10 +68476,6 @@ declare const DTOFeatureMessage: z__default.ZodObject<{
|
|
|
68476
68476
|
* Link agent response object describing current state of
|
|
68477
68477
|
*/
|
|
68478
68478
|
agentResponseTrackerId: z__default.ZodOptional<z__default.ZodString>;
|
|
68479
|
-
/**
|
|
68480
|
-
* If the message started a thread, this indicates the current iteration within that thread
|
|
68481
|
-
*/
|
|
68482
|
-
currentIterationId: z__default.ZodOptional<z__default.ZodString>;
|
|
68483
68479
|
attachments: z__default.ZodOptional<z__default.ZodObject<{
|
|
68484
68480
|
iterationId: z__default.ZodOptional<z__default.ZodString>;
|
|
68485
68481
|
}, "strip", z__default.ZodTypeAny, {
|
|
@@ -68507,7 +68503,6 @@ declare const DTOFeatureMessage: z__default.ZodObject<{
|
|
|
68507
68503
|
startsNewThread?: boolean | undefined;
|
|
68508
68504
|
parentMessageId?: string | undefined;
|
|
68509
68505
|
agentResponseTrackerId?: string | undefined;
|
|
68510
|
-
currentIterationId?: string | undefined;
|
|
68511
68506
|
attachments?: {
|
|
68512
68507
|
iterationId?: string | undefined;
|
|
68513
68508
|
} | undefined;
|
|
@@ -68529,7 +68524,6 @@ declare const DTOFeatureMessage: z__default.ZodObject<{
|
|
|
68529
68524
|
startsNewThread?: boolean | undefined;
|
|
68530
68525
|
parentMessageId?: string | undefined;
|
|
68531
68526
|
agentResponseTrackerId?: string | undefined;
|
|
68532
|
-
currentIterationId?: string | undefined;
|
|
68533
68527
|
attachments?: {
|
|
68534
68528
|
iterationId?: string | undefined;
|
|
68535
68529
|
} | undefined;
|
|
@@ -68611,6 +68605,30 @@ declare const DTOFeatureIteration: z__default.ZodObject<{
|
|
|
68611
68605
|
staticPreviewUrl?: string | undefined;
|
|
68612
68606
|
}>;
|
|
68613
68607
|
type DTOFeatureIteration = z__default.infer<typeof DTOFeatureIteration>;
|
|
68608
|
+
declare const DTOFeatureIterationTag: z__default.ZodObject<{
|
|
68609
|
+
id: z__default.ZodString;
|
|
68610
|
+
featureId: z__default.ZodString;
|
|
68611
|
+
/**
|
|
68612
|
+
* If defined, this latest tag is specific to a message thread.
|
|
68613
|
+
* If null, this is the latest tag for the entire feature.
|
|
68614
|
+
*/
|
|
68615
|
+
messageId: z__default.ZodOptional<z__default.ZodString>;
|
|
68616
|
+
/**
|
|
68617
|
+
* The iteration that is marked as latest for this context
|
|
68618
|
+
*/
|
|
68619
|
+
iterationId: z__default.ZodString;
|
|
68620
|
+
}, "strip", z__default.ZodTypeAny, {
|
|
68621
|
+
id: string;
|
|
68622
|
+
iterationId: string;
|
|
68623
|
+
featureId: string;
|
|
68624
|
+
messageId?: string | undefined;
|
|
68625
|
+
}, {
|
|
68626
|
+
id: string;
|
|
68627
|
+
iterationId: string;
|
|
68628
|
+
featureId: string;
|
|
68629
|
+
messageId?: string | undefined;
|
|
68630
|
+
}>;
|
|
68631
|
+
type DTOFeatureIterationTag = z__default.infer<typeof DTOFeatureIterationTag>;
|
|
68614
68632
|
declare const DTOFeatureMessageCreateInput: z__default.ZodObject<Pick<{
|
|
68615
68633
|
id: z__default.ZodString;
|
|
68616
68634
|
/**
|
|
@@ -68662,10 +68680,6 @@ declare const DTOFeatureMessageCreateInput: z__default.ZodObject<Pick<{
|
|
|
68662
68680
|
* Link agent response object describing current state of
|
|
68663
68681
|
*/
|
|
68664
68682
|
agentResponseTrackerId: z__default.ZodOptional<z__default.ZodString>;
|
|
68665
|
-
/**
|
|
68666
|
-
* If the message started a thread, this indicates the current iteration within that thread
|
|
68667
|
-
*/
|
|
68668
|
-
currentIterationId: z__default.ZodOptional<z__default.ZodString>;
|
|
68669
68683
|
attachments: z__default.ZodOptional<z__default.ZodObject<{
|
|
68670
68684
|
iterationId: z__default.ZodOptional<z__default.ZodString>;
|
|
68671
68685
|
}, "strip", z__default.ZodTypeAny, {
|
|
@@ -68790,6 +68804,20 @@ declare const DTOFeatureIterationPromoteInput: z__default.ZodObject<{
|
|
|
68790
68804
|
id: string;
|
|
68791
68805
|
}>;
|
|
68792
68806
|
type DTOFeatureIterationPromoteInput = z__default.infer<typeof DTOFeatureIterationPromoteInput>;
|
|
68807
|
+
declare const DTOFeatureIterationTagCreateInput: z__default.ZodObject<{
|
|
68808
|
+
featureId: z__default.ZodString;
|
|
68809
|
+
iterationId: z__default.ZodString;
|
|
68810
|
+
messageId: z__default.ZodOptional<z__default.ZodString>;
|
|
68811
|
+
}, "strip", z__default.ZodTypeAny, {
|
|
68812
|
+
iterationId: string;
|
|
68813
|
+
featureId: string;
|
|
68814
|
+
messageId?: string | undefined;
|
|
68815
|
+
}, {
|
|
68816
|
+
iterationId: string;
|
|
68817
|
+
featureId: string;
|
|
68818
|
+
messageId?: string | undefined;
|
|
68819
|
+
}>;
|
|
68820
|
+
type DTOFeatureIterationTagCreateInput = z__default.infer<typeof DTOFeatureIterationTagCreateInput>;
|
|
68793
68821
|
declare const DTOFeatureIterationArtifactDiff: z__default.ZodObject<{
|
|
68794
68822
|
/**
|
|
68795
68823
|
* Map of artifact key -> artifact content that describes artifacts that will be
|
|
@@ -68925,10 +68953,6 @@ declare const DTOFeatureMessageResponse: z__default.ZodObject<{
|
|
|
68925
68953
|
* Link agent response object describing current state of
|
|
68926
68954
|
*/
|
|
68927
68955
|
agentResponseTrackerId: z__default.ZodOptional<z__default.ZodString>;
|
|
68928
|
-
/**
|
|
68929
|
-
* If the message started a thread, this indicates the current iteration within that thread
|
|
68930
|
-
*/
|
|
68931
|
-
currentIterationId: z__default.ZodOptional<z__default.ZodString>;
|
|
68932
68956
|
attachments: z__default.ZodOptional<z__default.ZodObject<{
|
|
68933
68957
|
iterationId: z__default.ZodOptional<z__default.ZodString>;
|
|
68934
68958
|
}, "strip", z__default.ZodTypeAny, {
|
|
@@ -68956,7 +68980,6 @@ declare const DTOFeatureMessageResponse: z__default.ZodObject<{
|
|
|
68956
68980
|
startsNewThread?: boolean | undefined;
|
|
68957
68981
|
parentMessageId?: string | undefined;
|
|
68958
68982
|
agentResponseTrackerId?: string | undefined;
|
|
68959
|
-
currentIterationId?: string | undefined;
|
|
68960
68983
|
attachments?: {
|
|
68961
68984
|
iterationId?: string | undefined;
|
|
68962
68985
|
} | undefined;
|
|
@@ -68978,7 +69001,6 @@ declare const DTOFeatureMessageResponse: z__default.ZodObject<{
|
|
|
68978
69001
|
startsNewThread?: boolean | undefined;
|
|
68979
69002
|
parentMessageId?: string | undefined;
|
|
68980
69003
|
agentResponseTrackerId?: string | undefined;
|
|
68981
|
-
currentIterationId?: string | undefined;
|
|
68982
69004
|
attachments?: {
|
|
68983
69005
|
iterationId?: string | undefined;
|
|
68984
69006
|
} | undefined;
|
|
@@ -69002,7 +69024,6 @@ declare const DTOFeatureMessageResponse: z__default.ZodObject<{
|
|
|
69002
69024
|
startsNewThread?: boolean | undefined;
|
|
69003
69025
|
parentMessageId?: string | undefined;
|
|
69004
69026
|
agentResponseTrackerId?: string | undefined;
|
|
69005
|
-
currentIterationId?: string | undefined;
|
|
69006
69027
|
attachments?: {
|
|
69007
69028
|
iterationId?: string | undefined;
|
|
69008
69029
|
} | undefined;
|
|
@@ -69026,7 +69047,6 @@ declare const DTOFeatureMessageResponse: z__default.ZodObject<{
|
|
|
69026
69047
|
startsNewThread?: boolean | undefined;
|
|
69027
69048
|
parentMessageId?: string | undefined;
|
|
69028
69049
|
agentResponseTrackerId?: string | undefined;
|
|
69029
|
-
currentIterationId?: string | undefined;
|
|
69030
69050
|
attachments?: {
|
|
69031
69051
|
iterationId?: string | undefined;
|
|
69032
69052
|
} | undefined;
|
|
@@ -69118,10 +69138,6 @@ declare const DTOFeatureMessageListResponse: z__default.ZodObject<{
|
|
|
69118
69138
|
* Link agent response object describing current state of
|
|
69119
69139
|
*/
|
|
69120
69140
|
agentResponseTrackerId: z__default.ZodOptional<z__default.ZodString>;
|
|
69121
|
-
/**
|
|
69122
|
-
* If the message started a thread, this indicates the current iteration within that thread
|
|
69123
|
-
*/
|
|
69124
|
-
currentIterationId: z__default.ZodOptional<z__default.ZodString>;
|
|
69125
69141
|
attachments: z__default.ZodOptional<z__default.ZodObject<{
|
|
69126
69142
|
iterationId: z__default.ZodOptional<z__default.ZodString>;
|
|
69127
69143
|
}, "strip", z__default.ZodTypeAny, {
|
|
@@ -69149,7 +69165,6 @@ declare const DTOFeatureMessageListResponse: z__default.ZodObject<{
|
|
|
69149
69165
|
startsNewThread?: boolean | undefined;
|
|
69150
69166
|
parentMessageId?: string | undefined;
|
|
69151
69167
|
agentResponseTrackerId?: string | undefined;
|
|
69152
|
-
currentIterationId?: string | undefined;
|
|
69153
69168
|
attachments?: {
|
|
69154
69169
|
iterationId?: string | undefined;
|
|
69155
69170
|
} | undefined;
|
|
@@ -69171,7 +69186,6 @@ declare const DTOFeatureMessageListResponse: z__default.ZodObject<{
|
|
|
69171
69186
|
startsNewThread?: boolean | undefined;
|
|
69172
69187
|
parentMessageId?: string | undefined;
|
|
69173
69188
|
agentResponseTrackerId?: string | undefined;
|
|
69174
|
-
currentIterationId?: string | undefined;
|
|
69175
69189
|
attachments?: {
|
|
69176
69190
|
iterationId?: string | undefined;
|
|
69177
69191
|
} | undefined;
|
|
@@ -69212,7 +69226,6 @@ declare const DTOFeatureMessageListResponse: z__default.ZodObject<{
|
|
|
69212
69226
|
startsNewThread?: boolean | undefined;
|
|
69213
69227
|
parentMessageId?: string | undefined;
|
|
69214
69228
|
agentResponseTrackerId?: string | undefined;
|
|
69215
|
-
currentIterationId?: string | undefined;
|
|
69216
69229
|
attachments?: {
|
|
69217
69230
|
iterationId?: string | undefined;
|
|
69218
69231
|
} | undefined;
|
|
@@ -69243,7 +69256,6 @@ declare const DTOFeatureMessageListResponse: z__default.ZodObject<{
|
|
|
69243
69256
|
startsNewThread?: boolean | undefined;
|
|
69244
69257
|
parentMessageId?: string | undefined;
|
|
69245
69258
|
agentResponseTrackerId?: string | undefined;
|
|
69246
|
-
currentIterationId?: string | undefined;
|
|
69247
69259
|
attachments?: {
|
|
69248
69260
|
iterationId?: string | undefined;
|
|
69249
69261
|
} | undefined;
|
|
@@ -69497,6 +69509,86 @@ declare const DTOFeatureIterationResponse: z__default.ZodObject<{
|
|
|
69497
69509
|
};
|
|
69498
69510
|
}>;
|
|
69499
69511
|
type DTOFeatureIterationResponse = z__default.infer<typeof DTOFeatureIterationResponse>;
|
|
69512
|
+
declare const DTOFeatureIterationTagResponse: z__default.ZodObject<{
|
|
69513
|
+
tag: z__default.ZodObject<{
|
|
69514
|
+
id: z__default.ZodString;
|
|
69515
|
+
featureId: z__default.ZodString;
|
|
69516
|
+
/**
|
|
69517
|
+
* If defined, this latest tag is specific to a message thread.
|
|
69518
|
+
* If null, this is the latest tag for the entire feature.
|
|
69519
|
+
*/
|
|
69520
|
+
messageId: z__default.ZodOptional<z__default.ZodString>;
|
|
69521
|
+
/**
|
|
69522
|
+
* The iteration that is marked as latest for this context
|
|
69523
|
+
*/
|
|
69524
|
+
iterationId: z__default.ZodString;
|
|
69525
|
+
}, "strip", z__default.ZodTypeAny, {
|
|
69526
|
+
id: string;
|
|
69527
|
+
iterationId: string;
|
|
69528
|
+
featureId: string;
|
|
69529
|
+
messageId?: string | undefined;
|
|
69530
|
+
}, {
|
|
69531
|
+
id: string;
|
|
69532
|
+
iterationId: string;
|
|
69533
|
+
featureId: string;
|
|
69534
|
+
messageId?: string | undefined;
|
|
69535
|
+
}>;
|
|
69536
|
+
}, "strip", z__default.ZodTypeAny, {
|
|
69537
|
+
tag: {
|
|
69538
|
+
id: string;
|
|
69539
|
+
iterationId: string;
|
|
69540
|
+
featureId: string;
|
|
69541
|
+
messageId?: string | undefined;
|
|
69542
|
+
};
|
|
69543
|
+
}, {
|
|
69544
|
+
tag: {
|
|
69545
|
+
id: string;
|
|
69546
|
+
iterationId: string;
|
|
69547
|
+
featureId: string;
|
|
69548
|
+
messageId?: string | undefined;
|
|
69549
|
+
};
|
|
69550
|
+
}>;
|
|
69551
|
+
type DTOFeatureIterationTagResponse = z__default.infer<typeof DTOFeatureIterationTagResponse>;
|
|
69552
|
+
declare const DTOFeatureIterationTagListResponse: z__default.ZodObject<{
|
|
69553
|
+
tags: z__default.ZodArray<z__default.ZodObject<{
|
|
69554
|
+
id: z__default.ZodString;
|
|
69555
|
+
featureId: z__default.ZodString;
|
|
69556
|
+
/**
|
|
69557
|
+
* If defined, this latest tag is specific to a message thread.
|
|
69558
|
+
* If null, this is the latest tag for the entire feature.
|
|
69559
|
+
*/
|
|
69560
|
+
messageId: z__default.ZodOptional<z__default.ZodString>;
|
|
69561
|
+
/**
|
|
69562
|
+
* The iteration that is marked as latest for this context
|
|
69563
|
+
*/
|
|
69564
|
+
iterationId: z__default.ZodString;
|
|
69565
|
+
}, "strip", z__default.ZodTypeAny, {
|
|
69566
|
+
id: string;
|
|
69567
|
+
iterationId: string;
|
|
69568
|
+
featureId: string;
|
|
69569
|
+
messageId?: string | undefined;
|
|
69570
|
+
}, {
|
|
69571
|
+
id: string;
|
|
69572
|
+
iterationId: string;
|
|
69573
|
+
featureId: string;
|
|
69574
|
+
messageId?: string | undefined;
|
|
69575
|
+
}>, "many">;
|
|
69576
|
+
}, "strip", z__default.ZodTypeAny, {
|
|
69577
|
+
tags: {
|
|
69578
|
+
id: string;
|
|
69579
|
+
iterationId: string;
|
|
69580
|
+
featureId: string;
|
|
69581
|
+
messageId?: string | undefined;
|
|
69582
|
+
}[];
|
|
69583
|
+
}, {
|
|
69584
|
+
tags: {
|
|
69585
|
+
id: string;
|
|
69586
|
+
iterationId: string;
|
|
69587
|
+
featureId: string;
|
|
69588
|
+
messageId?: string | undefined;
|
|
69589
|
+
}[];
|
|
69590
|
+
}>;
|
|
69591
|
+
type DTOFeatureIterationTagListResponse = z__default.infer<typeof DTOFeatureIterationTagListResponse>;
|
|
69500
69592
|
declare const DTOFeatureEventMessagesSent: z__default.ZodObject<{
|
|
69501
69593
|
type: z__default.ZodLiteral<"MessagesSent">;
|
|
69502
69594
|
data: z__default.ZodArray<z__default.ZodObject<{
|
|
@@ -69550,10 +69642,6 @@ declare const DTOFeatureEventMessagesSent: z__default.ZodObject<{
|
|
|
69550
69642
|
* Link agent response object describing current state of
|
|
69551
69643
|
*/
|
|
69552
69644
|
agentResponseTrackerId: z__default.ZodOptional<z__default.ZodString>;
|
|
69553
|
-
/**
|
|
69554
|
-
* If the message started a thread, this indicates the current iteration within that thread
|
|
69555
|
-
*/
|
|
69556
|
-
currentIterationId: z__default.ZodOptional<z__default.ZodString>;
|
|
69557
69645
|
attachments: z__default.ZodOptional<z__default.ZodObject<{
|
|
69558
69646
|
iterationId: z__default.ZodOptional<z__default.ZodString>;
|
|
69559
69647
|
}, "strip", z__default.ZodTypeAny, {
|
|
@@ -69581,7 +69669,6 @@ declare const DTOFeatureEventMessagesSent: z__default.ZodObject<{
|
|
|
69581
69669
|
startsNewThread?: boolean | undefined;
|
|
69582
69670
|
parentMessageId?: string | undefined;
|
|
69583
69671
|
agentResponseTrackerId?: string | undefined;
|
|
69584
|
-
currentIterationId?: string | undefined;
|
|
69585
69672
|
attachments?: {
|
|
69586
69673
|
iterationId?: string | undefined;
|
|
69587
69674
|
} | undefined;
|
|
@@ -69603,7 +69690,6 @@ declare const DTOFeatureEventMessagesSent: z__default.ZodObject<{
|
|
|
69603
69690
|
startsNewThread?: boolean | undefined;
|
|
69604
69691
|
parentMessageId?: string | undefined;
|
|
69605
69692
|
agentResponseTrackerId?: string | undefined;
|
|
69606
|
-
currentIterationId?: string | undefined;
|
|
69607
69693
|
attachments?: {
|
|
69608
69694
|
iterationId?: string | undefined;
|
|
69609
69695
|
} | undefined;
|
|
@@ -69628,7 +69714,6 @@ declare const DTOFeatureEventMessagesSent: z__default.ZodObject<{
|
|
|
69628
69714
|
startsNewThread?: boolean | undefined;
|
|
69629
69715
|
parentMessageId?: string | undefined;
|
|
69630
69716
|
agentResponseTrackerId?: string | undefined;
|
|
69631
|
-
currentIterationId?: string | undefined;
|
|
69632
69717
|
attachments?: {
|
|
69633
69718
|
iterationId?: string | undefined;
|
|
69634
69719
|
} | undefined;
|
|
@@ -69653,7 +69738,6 @@ declare const DTOFeatureEventMessagesSent: z__default.ZodObject<{
|
|
|
69653
69738
|
startsNewThread?: boolean | undefined;
|
|
69654
69739
|
parentMessageId?: string | undefined;
|
|
69655
69740
|
agentResponseTrackerId?: string | undefined;
|
|
69656
|
-
currentIterationId?: string | undefined;
|
|
69657
69741
|
attachments?: {
|
|
69658
69742
|
iterationId?: string | undefined;
|
|
69659
69743
|
} | undefined;
|
|
@@ -69785,10 +69869,6 @@ declare const DTOFeatureEventAgentResponseFinished: z__default.ZodObject<{
|
|
|
69785
69869
|
* Link agent response object describing current state of
|
|
69786
69870
|
*/
|
|
69787
69871
|
agentResponseTrackerId: z__default.ZodOptional<z__default.ZodString>;
|
|
69788
|
-
/**
|
|
69789
|
-
* If the message started a thread, this indicates the current iteration within that thread
|
|
69790
|
-
*/
|
|
69791
|
-
currentIterationId: z__default.ZodOptional<z__default.ZodString>;
|
|
69792
69872
|
attachments: z__default.ZodOptional<z__default.ZodObject<{
|
|
69793
69873
|
iterationId: z__default.ZodOptional<z__default.ZodString>;
|
|
69794
69874
|
}, "strip", z__default.ZodTypeAny, {
|
|
@@ -69816,7 +69896,6 @@ declare const DTOFeatureEventAgentResponseFinished: z__default.ZodObject<{
|
|
|
69816
69896
|
startsNewThread?: boolean | undefined;
|
|
69817
69897
|
parentMessageId?: string | undefined;
|
|
69818
69898
|
agentResponseTrackerId?: string | undefined;
|
|
69819
|
-
currentIterationId?: string | undefined;
|
|
69820
69899
|
attachments?: {
|
|
69821
69900
|
iterationId?: string | undefined;
|
|
69822
69901
|
} | undefined;
|
|
@@ -69838,7 +69917,6 @@ declare const DTOFeatureEventAgentResponseFinished: z__default.ZodObject<{
|
|
|
69838
69917
|
startsNewThread?: boolean | undefined;
|
|
69839
69918
|
parentMessageId?: string | undefined;
|
|
69840
69919
|
agentResponseTrackerId?: string | undefined;
|
|
69841
|
-
currentIterationId?: string | undefined;
|
|
69842
69920
|
attachments?: {
|
|
69843
69921
|
iterationId?: string | undefined;
|
|
69844
69922
|
} | undefined;
|
|
@@ -69863,7 +69941,6 @@ declare const DTOFeatureEventAgentResponseFinished: z__default.ZodObject<{
|
|
|
69863
69941
|
startsNewThread?: boolean | undefined;
|
|
69864
69942
|
parentMessageId?: string | undefined;
|
|
69865
69943
|
agentResponseTrackerId?: string | undefined;
|
|
69866
|
-
currentIterationId?: string | undefined;
|
|
69867
69944
|
attachments?: {
|
|
69868
69945
|
iterationId?: string | undefined;
|
|
69869
69946
|
} | undefined;
|
|
@@ -69888,7 +69965,6 @@ declare const DTOFeatureEventAgentResponseFinished: z__default.ZodObject<{
|
|
|
69888
69965
|
startsNewThread?: boolean | undefined;
|
|
69889
69966
|
parentMessageId?: string | undefined;
|
|
69890
69967
|
agentResponseTrackerId?: string | undefined;
|
|
69891
|
-
currentIterationId?: string | undefined;
|
|
69892
69968
|
attachments?: {
|
|
69893
69969
|
iterationId?: string | undefined;
|
|
69894
69970
|
} | undefined;
|
|
@@ -69948,10 +70024,6 @@ declare const DTOFeatureEvent: z__default.ZodDiscriminatedUnion<"type", [z__defa
|
|
|
69948
70024
|
* Link agent response object describing current state of
|
|
69949
70025
|
*/
|
|
69950
70026
|
agentResponseTrackerId: z__default.ZodOptional<z__default.ZodString>;
|
|
69951
|
-
/**
|
|
69952
|
-
* If the message started a thread, this indicates the current iteration within that thread
|
|
69953
|
-
*/
|
|
69954
|
-
currentIterationId: z__default.ZodOptional<z__default.ZodString>;
|
|
69955
70027
|
attachments: z__default.ZodOptional<z__default.ZodObject<{
|
|
69956
70028
|
iterationId: z__default.ZodOptional<z__default.ZodString>;
|
|
69957
70029
|
}, "strip", z__default.ZodTypeAny, {
|
|
@@ -69979,7 +70051,6 @@ declare const DTOFeatureEvent: z__default.ZodDiscriminatedUnion<"type", [z__defa
|
|
|
69979
70051
|
startsNewThread?: boolean | undefined;
|
|
69980
70052
|
parentMessageId?: string | undefined;
|
|
69981
70053
|
agentResponseTrackerId?: string | undefined;
|
|
69982
|
-
currentIterationId?: string | undefined;
|
|
69983
70054
|
attachments?: {
|
|
69984
70055
|
iterationId?: string | undefined;
|
|
69985
70056
|
} | undefined;
|
|
@@ -70001,7 +70072,6 @@ declare const DTOFeatureEvent: z__default.ZodDiscriminatedUnion<"type", [z__defa
|
|
|
70001
70072
|
startsNewThread?: boolean | undefined;
|
|
70002
70073
|
parentMessageId?: string | undefined;
|
|
70003
70074
|
agentResponseTrackerId?: string | undefined;
|
|
70004
|
-
currentIterationId?: string | undefined;
|
|
70005
70075
|
attachments?: {
|
|
70006
70076
|
iterationId?: string | undefined;
|
|
70007
70077
|
} | undefined;
|
|
@@ -70026,7 +70096,6 @@ declare const DTOFeatureEvent: z__default.ZodDiscriminatedUnion<"type", [z__defa
|
|
|
70026
70096
|
startsNewThread?: boolean | undefined;
|
|
70027
70097
|
parentMessageId?: string | undefined;
|
|
70028
70098
|
agentResponseTrackerId?: string | undefined;
|
|
70029
|
-
currentIterationId?: string | undefined;
|
|
70030
70099
|
attachments?: {
|
|
70031
70100
|
iterationId?: string | undefined;
|
|
70032
70101
|
} | undefined;
|
|
@@ -70051,7 +70120,6 @@ declare const DTOFeatureEvent: z__default.ZodDiscriminatedUnion<"type", [z__defa
|
|
|
70051
70120
|
startsNewThread?: boolean | undefined;
|
|
70052
70121
|
parentMessageId?: string | undefined;
|
|
70053
70122
|
agentResponseTrackerId?: string | undefined;
|
|
70054
|
-
currentIterationId?: string | undefined;
|
|
70055
70123
|
attachments?: {
|
|
70056
70124
|
iterationId?: string | undefined;
|
|
70057
70125
|
} | undefined;
|
|
@@ -70177,10 +70245,6 @@ declare const DTOFeatureEvent: z__default.ZodDiscriminatedUnion<"type", [z__defa
|
|
|
70177
70245
|
* Link agent response object describing current state of
|
|
70178
70246
|
*/
|
|
70179
70247
|
agentResponseTrackerId: z__default.ZodOptional<z__default.ZodString>;
|
|
70180
|
-
/**
|
|
70181
|
-
* If the message started a thread, this indicates the current iteration within that thread
|
|
70182
|
-
*/
|
|
70183
|
-
currentIterationId: z__default.ZodOptional<z__default.ZodString>;
|
|
70184
70248
|
attachments: z__default.ZodOptional<z__default.ZodObject<{
|
|
70185
70249
|
iterationId: z__default.ZodOptional<z__default.ZodString>;
|
|
70186
70250
|
}, "strip", z__default.ZodTypeAny, {
|
|
@@ -70208,7 +70272,6 @@ declare const DTOFeatureEvent: z__default.ZodDiscriminatedUnion<"type", [z__defa
|
|
|
70208
70272
|
startsNewThread?: boolean | undefined;
|
|
70209
70273
|
parentMessageId?: string | undefined;
|
|
70210
70274
|
agentResponseTrackerId?: string | undefined;
|
|
70211
|
-
currentIterationId?: string | undefined;
|
|
70212
70275
|
attachments?: {
|
|
70213
70276
|
iterationId?: string | undefined;
|
|
70214
70277
|
} | undefined;
|
|
@@ -70230,7 +70293,6 @@ declare const DTOFeatureEvent: z__default.ZodDiscriminatedUnion<"type", [z__defa
|
|
|
70230
70293
|
startsNewThread?: boolean | undefined;
|
|
70231
70294
|
parentMessageId?: string | undefined;
|
|
70232
70295
|
agentResponseTrackerId?: string | undefined;
|
|
70233
|
-
currentIterationId?: string | undefined;
|
|
70234
70296
|
attachments?: {
|
|
70235
70297
|
iterationId?: string | undefined;
|
|
70236
70298
|
} | undefined;
|
|
@@ -70255,7 +70317,6 @@ declare const DTOFeatureEvent: z__default.ZodDiscriminatedUnion<"type", [z__defa
|
|
|
70255
70317
|
startsNewThread?: boolean | undefined;
|
|
70256
70318
|
parentMessageId?: string | undefined;
|
|
70257
70319
|
agentResponseTrackerId?: string | undefined;
|
|
70258
|
-
currentIterationId?: string | undefined;
|
|
70259
70320
|
attachments?: {
|
|
70260
70321
|
iterationId?: string | undefined;
|
|
70261
70322
|
} | undefined;
|
|
@@ -70280,7 +70341,6 @@ declare const DTOFeatureEvent: z__default.ZodDiscriminatedUnion<"type", [z__defa
|
|
|
70280
70341
|
startsNewThread?: boolean | undefined;
|
|
70281
70342
|
parentMessageId?: string | undefined;
|
|
70282
70343
|
agentResponseTrackerId?: string | undefined;
|
|
70283
|
-
currentIterationId?: string | undefined;
|
|
70284
70344
|
attachments?: {
|
|
70285
70345
|
iterationId?: string | undefined;
|
|
70286
70346
|
} | undefined;
|
|
@@ -141882,7 +141942,6 @@ declare class ForgeFeatureMessagesEndpoint {
|
|
|
141882
141942
|
startsNewThread?: boolean | undefined;
|
|
141883
141943
|
parentMessageId?: string | undefined;
|
|
141884
141944
|
agentResponseTrackerId?: string | undefined;
|
|
141885
|
-
currentIterationId?: string | undefined;
|
|
141886
141945
|
attachments?: {
|
|
141887
141946
|
iterationId?: string | undefined;
|
|
141888
141947
|
} | undefined;
|
|
@@ -141914,7 +141973,6 @@ declare class ForgeFeatureMessagesEndpoint {
|
|
|
141914
141973
|
startsNewThread?: boolean | undefined;
|
|
141915
141974
|
parentMessageId?: string | undefined;
|
|
141916
141975
|
agentResponseTrackerId?: string | undefined;
|
|
141917
|
-
currentIterationId?: string | undefined;
|
|
141918
141976
|
attachments?: {
|
|
141919
141977
|
iterationId?: string | undefined;
|
|
141920
141978
|
} | undefined;
|
|
@@ -146228,6 +146286,7 @@ interface FeatureRoomBaseYDocState {
|
|
|
146228
146286
|
isLoaded: boolean;
|
|
146229
146287
|
iterations: DTOFeatureIteration[];
|
|
146230
146288
|
artifacts: DTOFeatureArtifact[];
|
|
146289
|
+
iterationTags: DTOFeatureIterationTag[];
|
|
146231
146290
|
agentResponseTrackers: DTOFeatureAgentResponseTracker[];
|
|
146232
146291
|
executedTransactionIds: string[];
|
|
146233
146292
|
}
|
|
@@ -146236,6 +146295,8 @@ interface FeatureRoomUpdate {
|
|
|
146236
146295
|
iterationIdsToDelete?: string[];
|
|
146237
146296
|
artifacts?: DTOFeatureArtifact[];
|
|
146238
146297
|
artifactIdsToDelete?: string[];
|
|
146298
|
+
iterationTags?: DTOFeatureIterationTag[];
|
|
146299
|
+
iterationTagIdsToDelete?: string[];
|
|
146239
146300
|
agentResponseTrackers?: DTOFeatureAgentResponseTracker[];
|
|
146240
146301
|
agentResponseTrackerIdsToDelete?: string[];
|
|
146241
146302
|
executedTransactionIds?: string[];
|
|
@@ -146252,6 +146313,10 @@ declare class FeatureRoomBaseYDoc {
|
|
|
146252
146313
|
updateArtifacts(artifacts: DTOFeatureArtifact[]): void;
|
|
146253
146314
|
deleteArtifacts(ids: string[]): void;
|
|
146254
146315
|
private get artifactsYMap();
|
|
146316
|
+
getIterationTags(): DTOFeatureIterationTag[];
|
|
146317
|
+
updateIterationTags(iterationTags: DTOFeatureIterationTag[]): void;
|
|
146318
|
+
deleteIterationTags(ids: string[]): void;
|
|
146319
|
+
private get iterationTagsYMap();
|
|
146255
146320
|
getAgentResponseTrackers(): DTOFeatureAgentResponseTracker[];
|
|
146256
146321
|
updateAgentResponseTrackers(trackers: DTOFeatureAgentResponseTracker[]): void;
|
|
146257
146322
|
deleteAgentResponseTrackers(ids: string[]): void;
|
|
@@ -146269,6 +146334,8 @@ type FeatureRoomTransaction = {
|
|
|
146269
146334
|
iterationIdsToDelete?: string[];
|
|
146270
146335
|
artifacts?: DTOFeatureArtifact[];
|
|
146271
146336
|
artifactIdsToDelete?: string[];
|
|
146337
|
+
iterationTags?: DTOFeatureIterationTag[];
|
|
146338
|
+
iterationTagIdsToDelete?: string[];
|
|
146272
146339
|
agentResponseTrackers?: DTOFeatureAgentResponseTracker[];
|
|
146273
146340
|
agentResponseTrackerIdsToDelete?: string[];
|
|
146274
146341
|
executedTransactionIds?: string[];
|
|
@@ -146287,6 +146354,7 @@ declare class FrontendFeatureRoomYDoc {
|
|
|
146287
146354
|
getState(): FeatureRoomBaseYDocState;
|
|
146288
146355
|
getIterations(): DTOFeatureIteration[];
|
|
146289
146356
|
getArtifacts(): DTOFeatureArtifact[];
|
|
146357
|
+
getIterationTags(): DTOFeatureIterationTag[];
|
|
146290
146358
|
getAgentResponseTrackers(): DTOFeatureAgentResponseTracker[];
|
|
146291
146359
|
isLoaded(): boolean;
|
|
146292
146360
|
getExecutedTransactionIds(): string[];
|
|
@@ -146794,4 +146862,4 @@ declare function isValidRedirectPath(path: string): {
|
|
|
146794
146862
|
reason: ValidationErrorReason | undefined;
|
|
146795
146863
|
};
|
|
146796
146864
|
|
|
146797
|
-
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, 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, DTOCreateForgeProject, DTOCreateForgeProjectContext, DTOCreateForgeProjectInvitation, DTOCreateForgeProjectIteration, DTOCreateForgeProjectIterationResponse, DTOCreateForgeProjectMember, DTOCreateForgeProjectResponse, DTOCreateForgeSpecArtifact, DTOCreateVersionInput, DTOCreditBalance, 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, DTOFeatureIterationUpdateArtifactsInput, DTOFeatureMessage, DTOFeatureMessageAgentSender, DTOFeatureMessageAttachments, DTOFeatureMessageCreateInput, DTOFeatureMessageListResponse, DTOFeatureMessageReaction, DTOFeatureMessageReactionCreateInput, DTOFeatureMessageReactionDeleteInput, DTOFeatureMessageReactionResponse, DTOFeatureMessageResponse, DTOFeatureMessageSender, DTOFeatureMessageSystemSender, DTOFeatureMessageUserSender, 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, 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, DTOForgeProjectMember, DTOForgeProjectMemberCreateResponse, DTOForgeProjectMemberGetResponse, DTOForgeProjectMemberRemoveResponse, DTOForgeProjectMemberRole, DTOForgeProjectMemberUpdateResponse, DTOForgeProjectMembersListResponse, DTOForgeProjectRoom, DTOForgeProjectRoomResponse, DTOForgeProjectsListResponse, 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, DTORemoveForgeProjectResponse, 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, DTOUGetForgeProjectResponse, DTOUpdateDocumentationGroupInput, DTOUpdateDocumentationPageDocumentInputV2, DTOUpdateDocumentationPageInputV2, DTOUpdateForgeAgent, DTOUpdateForgeAgentResponse, DTOUpdateForgeArtifact, DTOUpdateForgeArtifactResponse, DTOUpdateForgeBuildArtifact, DTOUpdateForgeFigmaArtifact, DTOUpdateForgeFileArtifact, DTOUpdateForgeIterationMessage, DTOUpdateForgeIterationMessageResponse, DTOUpdateForgeParticipant, DTOUpdateForgeParticipantResponse, DTOUpdateForgeProject, DTOUpdateForgeProjectContext, DTOUpdateForgeProjectInvitation, DTOUpdateForgeProjectIteration, DTOUpdateForgeProjectIterationResponse, DTOUpdateForgeProjectMember, DTOUpdateForgeProjectResponse, 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, ForgeFeatureMessagesEndpoint, ForgeFeaturesEndpoint, ForgeIterationMessagesEndpoint, ForgeParticipantsEndpoint, ForgeProjectContentRepository, ForgeProjectContextsEndpoint, ForgeProjectFeaturesEndpoint, ForgeProjectFilesEndpoint, ForgeProjectInvitationsEndpoint, ForgeProjectIterationsEndpoint, ForgeProjectMembersEndpoint, ForgeProjectRoomBaseYDoc, type ForgeProjectRoomBaseYDocState, ForgeProjectsEndpoint, ForgesEndpoint, 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 };
|
|
146865
|
+
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, 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, DTOCreateForgeProject, DTOCreateForgeProjectContext, DTOCreateForgeProjectInvitation, DTOCreateForgeProjectIteration, DTOCreateForgeProjectIterationResponse, DTOCreateForgeProjectMember, DTOCreateForgeProjectResponse, DTOCreateForgeSpecArtifact, DTOCreateVersionInput, DTOCreditBalance, 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, DTOFeatureIterationTag, DTOFeatureIterationTagCreateInput, DTOFeatureIterationTagListResponse, DTOFeatureIterationTagResponse, DTOFeatureIterationUpdateArtifactsInput, DTOFeatureMessage, DTOFeatureMessageAgentSender, DTOFeatureMessageAttachments, DTOFeatureMessageCreateInput, DTOFeatureMessageListResponse, DTOFeatureMessageReaction, DTOFeatureMessageReactionCreateInput, DTOFeatureMessageReactionDeleteInput, DTOFeatureMessageReactionResponse, DTOFeatureMessageResponse, DTOFeatureMessageSender, DTOFeatureMessageSystemSender, DTOFeatureMessageUserSender, 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, 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, DTOForgeProjectMember, DTOForgeProjectMemberCreateResponse, DTOForgeProjectMemberGetResponse, DTOForgeProjectMemberRemoveResponse, DTOForgeProjectMemberRole, DTOForgeProjectMemberUpdateResponse, DTOForgeProjectMembersListResponse, DTOForgeProjectRoom, DTOForgeProjectRoomResponse, DTOForgeProjectsListResponse, 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, DTORemoveForgeProjectResponse, 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, DTOUGetForgeProjectResponse, DTOUpdateDocumentationGroupInput, DTOUpdateDocumentationPageDocumentInputV2, DTOUpdateDocumentationPageInputV2, DTOUpdateForgeAgent, DTOUpdateForgeAgentResponse, DTOUpdateForgeArtifact, DTOUpdateForgeArtifactResponse, DTOUpdateForgeBuildArtifact, DTOUpdateForgeFigmaArtifact, DTOUpdateForgeFileArtifact, DTOUpdateForgeIterationMessage, DTOUpdateForgeIterationMessageResponse, DTOUpdateForgeParticipant, DTOUpdateForgeParticipantResponse, DTOUpdateForgeProject, DTOUpdateForgeProjectContext, DTOUpdateForgeProjectInvitation, DTOUpdateForgeProjectIteration, DTOUpdateForgeProjectIterationResponse, DTOUpdateForgeProjectMember, DTOUpdateForgeProjectResponse, 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, ForgeFeatureMessagesEndpoint, ForgeFeaturesEndpoint, ForgeIterationMessagesEndpoint, ForgeParticipantsEndpoint, ForgeProjectContentRepository, ForgeProjectContextsEndpoint, ForgeProjectFeaturesEndpoint, ForgeProjectFilesEndpoint, ForgeProjectInvitationsEndpoint, ForgeProjectIterationsEndpoint, ForgeProjectMembersEndpoint, ForgeProjectRoomBaseYDoc, type ForgeProjectRoomBaseYDocState, ForgeProjectsEndpoint, ForgesEndpoint, 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 };
|