@supernova-studio/client 1.26.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 +154 -61
- package/dist/index.d.ts +154 -61
- package/dist/index.js +61 -6
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +60 -5
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
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;
|
|
@@ -68545,6 +68539,10 @@ declare const DTOFeatureArtifact: z__default.ZodObject<{
|
|
|
68545
68539
|
* Id of the project file that holds content of this artifact
|
|
68546
68540
|
*/
|
|
68547
68541
|
fileId: z__default.ZodString;
|
|
68542
|
+
/**
|
|
68543
|
+
* Id of the Iteration that this artifact belongs to
|
|
68544
|
+
*/
|
|
68545
|
+
iterationId: z__default.ZodOptional<z__default.ZodString>;
|
|
68548
68546
|
/**
|
|
68549
68547
|
* URL of the feature artifact's contents
|
|
68550
68548
|
*/
|
|
@@ -68558,6 +68556,7 @@ declare const DTOFeatureArtifact: z__default.ZodObject<{
|
|
|
68558
68556
|
updatedAt: string;
|
|
68559
68557
|
fileId: string;
|
|
68560
68558
|
key: string;
|
|
68559
|
+
iterationId?: string | undefined;
|
|
68561
68560
|
}, {
|
|
68562
68561
|
id: string;
|
|
68563
68562
|
createdAt: string;
|
|
@@ -68565,6 +68564,7 @@ declare const DTOFeatureArtifact: z__default.ZodObject<{
|
|
|
68565
68564
|
updatedAt: string;
|
|
68566
68565
|
fileId: string;
|
|
68567
68566
|
key: string;
|
|
68567
|
+
iterationId?: string | undefined;
|
|
68568
68568
|
}>;
|
|
68569
68569
|
type DTOFeatureArtifact = z__default.infer<typeof DTOFeatureArtifact>;
|
|
68570
68570
|
declare const DTOFeatureIteration: z__default.ZodObject<{
|
|
@@ -68605,6 +68605,30 @@ declare const DTOFeatureIteration: z__default.ZodObject<{
|
|
|
68605
68605
|
staticPreviewUrl?: string | undefined;
|
|
68606
68606
|
}>;
|
|
68607
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>;
|
|
68608
68632
|
declare const DTOFeatureMessageCreateInput: z__default.ZodObject<Pick<{
|
|
68609
68633
|
id: z__default.ZodString;
|
|
68610
68634
|
/**
|
|
@@ -68656,10 +68680,6 @@ declare const DTOFeatureMessageCreateInput: z__default.ZodObject<Pick<{
|
|
|
68656
68680
|
* Link agent response object describing current state of
|
|
68657
68681
|
*/
|
|
68658
68682
|
agentResponseTrackerId: z__default.ZodOptional<z__default.ZodString>;
|
|
68659
|
-
/**
|
|
68660
|
-
* If the message started a thread, this indicates the current iteration within that thread
|
|
68661
|
-
*/
|
|
68662
|
-
currentIterationId: z__default.ZodOptional<z__default.ZodString>;
|
|
68663
68683
|
attachments: z__default.ZodOptional<z__default.ZodObject<{
|
|
68664
68684
|
iterationId: z__default.ZodOptional<z__default.ZodString>;
|
|
68665
68685
|
}, "strip", z__default.ZodTypeAny, {
|
|
@@ -68727,14 +68747,17 @@ declare const DTOFeatureArtifactCreateInput: z__default.ZodObject<{
|
|
|
68727
68747
|
id: z__default.ZodString;
|
|
68728
68748
|
key: z__default.ZodString;
|
|
68729
68749
|
fileId: z__default.ZodString;
|
|
68750
|
+
iterationId: z__default.ZodOptional<z__default.ZodString>;
|
|
68730
68751
|
}, "strip", z__default.ZodTypeAny, {
|
|
68731
68752
|
id: string;
|
|
68732
68753
|
fileId: string;
|
|
68733
68754
|
key: string;
|
|
68755
|
+
iterationId?: string | undefined;
|
|
68734
68756
|
}, {
|
|
68735
68757
|
id: string;
|
|
68736
68758
|
fileId: string;
|
|
68737
68759
|
key: string;
|
|
68760
|
+
iterationId?: string | undefined;
|
|
68738
68761
|
}>;
|
|
68739
68762
|
type DTOFeatureArtifactCreateInput = z__default.infer<typeof DTOFeatureArtifactCreateInput>;
|
|
68740
68763
|
declare const DTOFeatureArtifactDeleteInput: z__default.ZodObject<{
|
|
@@ -68781,6 +68804,20 @@ declare const DTOFeatureIterationPromoteInput: z__default.ZodObject<{
|
|
|
68781
68804
|
id: string;
|
|
68782
68805
|
}>;
|
|
68783
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>;
|
|
68784
68821
|
declare const DTOFeatureIterationArtifactDiff: z__default.ZodObject<{
|
|
68785
68822
|
/**
|
|
68786
68823
|
* Map of artifact key -> artifact content that describes artifacts that will be
|
|
@@ -68916,10 +68953,6 @@ declare const DTOFeatureMessageResponse: z__default.ZodObject<{
|
|
|
68916
68953
|
* Link agent response object describing current state of
|
|
68917
68954
|
*/
|
|
68918
68955
|
agentResponseTrackerId: z__default.ZodOptional<z__default.ZodString>;
|
|
68919
|
-
/**
|
|
68920
|
-
* If the message started a thread, this indicates the current iteration within that thread
|
|
68921
|
-
*/
|
|
68922
|
-
currentIterationId: z__default.ZodOptional<z__default.ZodString>;
|
|
68923
68956
|
attachments: z__default.ZodOptional<z__default.ZodObject<{
|
|
68924
68957
|
iterationId: z__default.ZodOptional<z__default.ZodString>;
|
|
68925
68958
|
}, "strip", z__default.ZodTypeAny, {
|
|
@@ -68947,7 +68980,6 @@ declare const DTOFeatureMessageResponse: z__default.ZodObject<{
|
|
|
68947
68980
|
startsNewThread?: boolean | undefined;
|
|
68948
68981
|
parentMessageId?: string | undefined;
|
|
68949
68982
|
agentResponseTrackerId?: string | undefined;
|
|
68950
|
-
currentIterationId?: string | undefined;
|
|
68951
68983
|
attachments?: {
|
|
68952
68984
|
iterationId?: string | undefined;
|
|
68953
68985
|
} | undefined;
|
|
@@ -68969,7 +69001,6 @@ declare const DTOFeatureMessageResponse: z__default.ZodObject<{
|
|
|
68969
69001
|
startsNewThread?: boolean | undefined;
|
|
68970
69002
|
parentMessageId?: string | undefined;
|
|
68971
69003
|
agentResponseTrackerId?: string | undefined;
|
|
68972
|
-
currentIterationId?: string | undefined;
|
|
68973
69004
|
attachments?: {
|
|
68974
69005
|
iterationId?: string | undefined;
|
|
68975
69006
|
} | undefined;
|
|
@@ -68993,7 +69024,6 @@ declare const DTOFeatureMessageResponse: z__default.ZodObject<{
|
|
|
68993
69024
|
startsNewThread?: boolean | undefined;
|
|
68994
69025
|
parentMessageId?: string | undefined;
|
|
68995
69026
|
agentResponseTrackerId?: string | undefined;
|
|
68996
|
-
currentIterationId?: string | undefined;
|
|
68997
69027
|
attachments?: {
|
|
68998
69028
|
iterationId?: string | undefined;
|
|
68999
69029
|
} | undefined;
|
|
@@ -69017,7 +69047,6 @@ declare const DTOFeatureMessageResponse: z__default.ZodObject<{
|
|
|
69017
69047
|
startsNewThread?: boolean | undefined;
|
|
69018
69048
|
parentMessageId?: string | undefined;
|
|
69019
69049
|
agentResponseTrackerId?: string | undefined;
|
|
69020
|
-
currentIterationId?: string | undefined;
|
|
69021
69050
|
attachments?: {
|
|
69022
69051
|
iterationId?: string | undefined;
|
|
69023
69052
|
} | undefined;
|
|
@@ -69109,10 +69138,6 @@ declare const DTOFeatureMessageListResponse: z__default.ZodObject<{
|
|
|
69109
69138
|
* Link agent response object describing current state of
|
|
69110
69139
|
*/
|
|
69111
69140
|
agentResponseTrackerId: z__default.ZodOptional<z__default.ZodString>;
|
|
69112
|
-
/**
|
|
69113
|
-
* If the message started a thread, this indicates the current iteration within that thread
|
|
69114
|
-
*/
|
|
69115
|
-
currentIterationId: z__default.ZodOptional<z__default.ZodString>;
|
|
69116
69141
|
attachments: z__default.ZodOptional<z__default.ZodObject<{
|
|
69117
69142
|
iterationId: z__default.ZodOptional<z__default.ZodString>;
|
|
69118
69143
|
}, "strip", z__default.ZodTypeAny, {
|
|
@@ -69140,7 +69165,6 @@ declare const DTOFeatureMessageListResponse: z__default.ZodObject<{
|
|
|
69140
69165
|
startsNewThread?: boolean | undefined;
|
|
69141
69166
|
parentMessageId?: string | undefined;
|
|
69142
69167
|
agentResponseTrackerId?: string | undefined;
|
|
69143
|
-
currentIterationId?: string | undefined;
|
|
69144
69168
|
attachments?: {
|
|
69145
69169
|
iterationId?: string | undefined;
|
|
69146
69170
|
} | undefined;
|
|
@@ -69162,7 +69186,6 @@ declare const DTOFeatureMessageListResponse: z__default.ZodObject<{
|
|
|
69162
69186
|
startsNewThread?: boolean | undefined;
|
|
69163
69187
|
parentMessageId?: string | undefined;
|
|
69164
69188
|
agentResponseTrackerId?: string | undefined;
|
|
69165
|
-
currentIterationId?: string | undefined;
|
|
69166
69189
|
attachments?: {
|
|
69167
69190
|
iterationId?: string | undefined;
|
|
69168
69191
|
} | undefined;
|
|
@@ -69203,7 +69226,6 @@ declare const DTOFeatureMessageListResponse: z__default.ZodObject<{
|
|
|
69203
69226
|
startsNewThread?: boolean | undefined;
|
|
69204
69227
|
parentMessageId?: string | undefined;
|
|
69205
69228
|
agentResponseTrackerId?: string | undefined;
|
|
69206
|
-
currentIterationId?: string | undefined;
|
|
69207
69229
|
attachments?: {
|
|
69208
69230
|
iterationId?: string | undefined;
|
|
69209
69231
|
} | undefined;
|
|
@@ -69234,7 +69256,6 @@ declare const DTOFeatureMessageListResponse: z__default.ZodObject<{
|
|
|
69234
69256
|
startsNewThread?: boolean | undefined;
|
|
69235
69257
|
parentMessageId?: string | undefined;
|
|
69236
69258
|
agentResponseTrackerId?: string | undefined;
|
|
69237
|
-
currentIterationId?: string | undefined;
|
|
69238
69259
|
attachments?: {
|
|
69239
69260
|
iterationId?: string | undefined;
|
|
69240
69261
|
} | undefined;
|
|
@@ -69259,6 +69280,10 @@ declare const DTOFeatureArtifactResponse: z__default.ZodObject<{
|
|
|
69259
69280
|
* Id of the project file that holds content of this artifact
|
|
69260
69281
|
*/
|
|
69261
69282
|
fileId: z__default.ZodString;
|
|
69283
|
+
/**
|
|
69284
|
+
* Id of the Iteration that this artifact belongs to
|
|
69285
|
+
*/
|
|
69286
|
+
iterationId: z__default.ZodOptional<z__default.ZodString>;
|
|
69262
69287
|
/**
|
|
69263
69288
|
* URL of the feature artifact's contents
|
|
69264
69289
|
*/
|
|
@@ -69272,6 +69297,7 @@ declare const DTOFeatureArtifactResponse: z__default.ZodObject<{
|
|
|
69272
69297
|
updatedAt: string;
|
|
69273
69298
|
fileId: string;
|
|
69274
69299
|
key: string;
|
|
69300
|
+
iterationId?: string | undefined;
|
|
69275
69301
|
}, {
|
|
69276
69302
|
id: string;
|
|
69277
69303
|
createdAt: string;
|
|
@@ -69279,6 +69305,7 @@ declare const DTOFeatureArtifactResponse: z__default.ZodObject<{
|
|
|
69279
69305
|
updatedAt: string;
|
|
69280
69306
|
fileId: string;
|
|
69281
69307
|
key: string;
|
|
69308
|
+
iterationId?: string | undefined;
|
|
69282
69309
|
}>;
|
|
69283
69310
|
}, "strip", z__default.ZodTypeAny, {
|
|
69284
69311
|
artifact: {
|
|
@@ -69288,6 +69315,7 @@ declare const DTOFeatureArtifactResponse: z__default.ZodObject<{
|
|
|
69288
69315
|
updatedAt: string;
|
|
69289
69316
|
fileId: string;
|
|
69290
69317
|
key: string;
|
|
69318
|
+
iterationId?: string | undefined;
|
|
69291
69319
|
};
|
|
69292
69320
|
}, {
|
|
69293
69321
|
artifact: {
|
|
@@ -69297,6 +69325,7 @@ declare const DTOFeatureArtifactResponse: z__default.ZodObject<{
|
|
|
69297
69325
|
updatedAt: string;
|
|
69298
69326
|
fileId: string;
|
|
69299
69327
|
key: string;
|
|
69328
|
+
iterationId?: string | undefined;
|
|
69300
69329
|
};
|
|
69301
69330
|
}>;
|
|
69302
69331
|
type DTOFeatureArtifactResponse = z__default.infer<typeof DTOFeatureArtifactResponse>;
|
|
@@ -69311,6 +69340,10 @@ declare const DTOFeatureArtifactListResponse: z__default.ZodObject<{
|
|
|
69311
69340
|
* Id of the project file that holds content of this artifact
|
|
69312
69341
|
*/
|
|
69313
69342
|
fileId: z__default.ZodString;
|
|
69343
|
+
/**
|
|
69344
|
+
* Id of the Iteration that this artifact belongs to
|
|
69345
|
+
*/
|
|
69346
|
+
iterationId: z__default.ZodOptional<z__default.ZodString>;
|
|
69314
69347
|
/**
|
|
69315
69348
|
* URL of the feature artifact's contents
|
|
69316
69349
|
*/
|
|
@@ -69324,6 +69357,7 @@ declare const DTOFeatureArtifactListResponse: z__default.ZodObject<{
|
|
|
69324
69357
|
updatedAt: string;
|
|
69325
69358
|
fileId: string;
|
|
69326
69359
|
key: string;
|
|
69360
|
+
iterationId?: string | undefined;
|
|
69327
69361
|
}, {
|
|
69328
69362
|
id: string;
|
|
69329
69363
|
createdAt: string;
|
|
@@ -69331,6 +69365,7 @@ declare const DTOFeatureArtifactListResponse: z__default.ZodObject<{
|
|
|
69331
69365
|
updatedAt: string;
|
|
69332
69366
|
fileId: string;
|
|
69333
69367
|
key: string;
|
|
69368
|
+
iterationId?: string | undefined;
|
|
69334
69369
|
}>, "many">;
|
|
69335
69370
|
}, "strip", z__default.ZodTypeAny, {
|
|
69336
69371
|
artifacts: {
|
|
@@ -69340,6 +69375,7 @@ declare const DTOFeatureArtifactListResponse: z__default.ZodObject<{
|
|
|
69340
69375
|
updatedAt: string;
|
|
69341
69376
|
fileId: string;
|
|
69342
69377
|
key: string;
|
|
69378
|
+
iterationId?: string | undefined;
|
|
69343
69379
|
}[];
|
|
69344
69380
|
}, {
|
|
69345
69381
|
artifacts: {
|
|
@@ -69349,6 +69385,7 @@ declare const DTOFeatureArtifactListResponse: z__default.ZodObject<{
|
|
|
69349
69385
|
updatedAt: string;
|
|
69350
69386
|
fileId: string;
|
|
69351
69387
|
key: string;
|
|
69388
|
+
iterationId?: string | undefined;
|
|
69352
69389
|
}[];
|
|
69353
69390
|
}>;
|
|
69354
69391
|
type DTOFeatureArtifactListResponse = z__default.infer<typeof DTOFeatureArtifactListResponse>;
|
|
@@ -69472,6 +69509,86 @@ declare const DTOFeatureIterationResponse: z__default.ZodObject<{
|
|
|
69472
69509
|
};
|
|
69473
69510
|
}>;
|
|
69474
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>;
|
|
69475
69592
|
declare const DTOFeatureEventMessagesSent: z__default.ZodObject<{
|
|
69476
69593
|
type: z__default.ZodLiteral<"MessagesSent">;
|
|
69477
69594
|
data: z__default.ZodArray<z__default.ZodObject<{
|
|
@@ -69525,10 +69642,6 @@ declare const DTOFeatureEventMessagesSent: z__default.ZodObject<{
|
|
|
69525
69642
|
* Link agent response object describing current state of
|
|
69526
69643
|
*/
|
|
69527
69644
|
agentResponseTrackerId: z__default.ZodOptional<z__default.ZodString>;
|
|
69528
|
-
/**
|
|
69529
|
-
* If the message started a thread, this indicates the current iteration within that thread
|
|
69530
|
-
*/
|
|
69531
|
-
currentIterationId: z__default.ZodOptional<z__default.ZodString>;
|
|
69532
69645
|
attachments: z__default.ZodOptional<z__default.ZodObject<{
|
|
69533
69646
|
iterationId: z__default.ZodOptional<z__default.ZodString>;
|
|
69534
69647
|
}, "strip", z__default.ZodTypeAny, {
|
|
@@ -69556,7 +69669,6 @@ declare const DTOFeatureEventMessagesSent: z__default.ZodObject<{
|
|
|
69556
69669
|
startsNewThread?: boolean | undefined;
|
|
69557
69670
|
parentMessageId?: string | undefined;
|
|
69558
69671
|
agentResponseTrackerId?: string | undefined;
|
|
69559
|
-
currentIterationId?: string | undefined;
|
|
69560
69672
|
attachments?: {
|
|
69561
69673
|
iterationId?: string | undefined;
|
|
69562
69674
|
} | undefined;
|
|
@@ -69578,7 +69690,6 @@ declare const DTOFeatureEventMessagesSent: z__default.ZodObject<{
|
|
|
69578
69690
|
startsNewThread?: boolean | undefined;
|
|
69579
69691
|
parentMessageId?: string | undefined;
|
|
69580
69692
|
agentResponseTrackerId?: string | undefined;
|
|
69581
|
-
currentIterationId?: string | undefined;
|
|
69582
69693
|
attachments?: {
|
|
69583
69694
|
iterationId?: string | undefined;
|
|
69584
69695
|
} | undefined;
|
|
@@ -69603,7 +69714,6 @@ declare const DTOFeatureEventMessagesSent: z__default.ZodObject<{
|
|
|
69603
69714
|
startsNewThread?: boolean | undefined;
|
|
69604
69715
|
parentMessageId?: string | undefined;
|
|
69605
69716
|
agentResponseTrackerId?: string | undefined;
|
|
69606
|
-
currentIterationId?: string | undefined;
|
|
69607
69717
|
attachments?: {
|
|
69608
69718
|
iterationId?: string | undefined;
|
|
69609
69719
|
} | undefined;
|
|
@@ -69628,7 +69738,6 @@ declare const DTOFeatureEventMessagesSent: z__default.ZodObject<{
|
|
|
69628
69738
|
startsNewThread?: boolean | undefined;
|
|
69629
69739
|
parentMessageId?: string | undefined;
|
|
69630
69740
|
agentResponseTrackerId?: string | undefined;
|
|
69631
|
-
currentIterationId?: string | undefined;
|
|
69632
69741
|
attachments?: {
|
|
69633
69742
|
iterationId?: string | undefined;
|
|
69634
69743
|
} | undefined;
|
|
@@ -69760,10 +69869,6 @@ declare const DTOFeatureEventAgentResponseFinished: z__default.ZodObject<{
|
|
|
69760
69869
|
* Link agent response object describing current state of
|
|
69761
69870
|
*/
|
|
69762
69871
|
agentResponseTrackerId: z__default.ZodOptional<z__default.ZodString>;
|
|
69763
|
-
/**
|
|
69764
|
-
* If the message started a thread, this indicates the current iteration within that thread
|
|
69765
|
-
*/
|
|
69766
|
-
currentIterationId: z__default.ZodOptional<z__default.ZodString>;
|
|
69767
69872
|
attachments: z__default.ZodOptional<z__default.ZodObject<{
|
|
69768
69873
|
iterationId: z__default.ZodOptional<z__default.ZodString>;
|
|
69769
69874
|
}, "strip", z__default.ZodTypeAny, {
|
|
@@ -69791,7 +69896,6 @@ declare const DTOFeatureEventAgentResponseFinished: z__default.ZodObject<{
|
|
|
69791
69896
|
startsNewThread?: boolean | undefined;
|
|
69792
69897
|
parentMessageId?: string | undefined;
|
|
69793
69898
|
agentResponseTrackerId?: string | undefined;
|
|
69794
|
-
currentIterationId?: string | undefined;
|
|
69795
69899
|
attachments?: {
|
|
69796
69900
|
iterationId?: string | undefined;
|
|
69797
69901
|
} | undefined;
|
|
@@ -69813,7 +69917,6 @@ declare const DTOFeatureEventAgentResponseFinished: z__default.ZodObject<{
|
|
|
69813
69917
|
startsNewThread?: boolean | undefined;
|
|
69814
69918
|
parentMessageId?: string | undefined;
|
|
69815
69919
|
agentResponseTrackerId?: string | undefined;
|
|
69816
|
-
currentIterationId?: string | undefined;
|
|
69817
69920
|
attachments?: {
|
|
69818
69921
|
iterationId?: string | undefined;
|
|
69819
69922
|
} | undefined;
|
|
@@ -69838,7 +69941,6 @@ declare const DTOFeatureEventAgentResponseFinished: z__default.ZodObject<{
|
|
|
69838
69941
|
startsNewThread?: boolean | undefined;
|
|
69839
69942
|
parentMessageId?: string | undefined;
|
|
69840
69943
|
agentResponseTrackerId?: string | undefined;
|
|
69841
|
-
currentIterationId?: string | undefined;
|
|
69842
69944
|
attachments?: {
|
|
69843
69945
|
iterationId?: string | undefined;
|
|
69844
69946
|
} | undefined;
|
|
@@ -69863,7 +69965,6 @@ declare const DTOFeatureEventAgentResponseFinished: z__default.ZodObject<{
|
|
|
69863
69965
|
startsNewThread?: boolean | undefined;
|
|
69864
69966
|
parentMessageId?: string | undefined;
|
|
69865
69967
|
agentResponseTrackerId?: string | undefined;
|
|
69866
|
-
currentIterationId?: string | undefined;
|
|
69867
69968
|
attachments?: {
|
|
69868
69969
|
iterationId?: string | undefined;
|
|
69869
69970
|
} | undefined;
|
|
@@ -69923,10 +70024,6 @@ declare const DTOFeatureEvent: z__default.ZodDiscriminatedUnion<"type", [z__defa
|
|
|
69923
70024
|
* Link agent response object describing current state of
|
|
69924
70025
|
*/
|
|
69925
70026
|
agentResponseTrackerId: z__default.ZodOptional<z__default.ZodString>;
|
|
69926
|
-
/**
|
|
69927
|
-
* If the message started a thread, this indicates the current iteration within that thread
|
|
69928
|
-
*/
|
|
69929
|
-
currentIterationId: z__default.ZodOptional<z__default.ZodString>;
|
|
69930
70027
|
attachments: z__default.ZodOptional<z__default.ZodObject<{
|
|
69931
70028
|
iterationId: z__default.ZodOptional<z__default.ZodString>;
|
|
69932
70029
|
}, "strip", z__default.ZodTypeAny, {
|
|
@@ -69954,7 +70051,6 @@ declare const DTOFeatureEvent: z__default.ZodDiscriminatedUnion<"type", [z__defa
|
|
|
69954
70051
|
startsNewThread?: boolean | undefined;
|
|
69955
70052
|
parentMessageId?: string | undefined;
|
|
69956
70053
|
agentResponseTrackerId?: string | undefined;
|
|
69957
|
-
currentIterationId?: string | undefined;
|
|
69958
70054
|
attachments?: {
|
|
69959
70055
|
iterationId?: string | undefined;
|
|
69960
70056
|
} | undefined;
|
|
@@ -69976,7 +70072,6 @@ declare const DTOFeatureEvent: z__default.ZodDiscriminatedUnion<"type", [z__defa
|
|
|
69976
70072
|
startsNewThread?: boolean | undefined;
|
|
69977
70073
|
parentMessageId?: string | undefined;
|
|
69978
70074
|
agentResponseTrackerId?: string | undefined;
|
|
69979
|
-
currentIterationId?: string | undefined;
|
|
69980
70075
|
attachments?: {
|
|
69981
70076
|
iterationId?: string | undefined;
|
|
69982
70077
|
} | undefined;
|
|
@@ -70001,7 +70096,6 @@ declare const DTOFeatureEvent: z__default.ZodDiscriminatedUnion<"type", [z__defa
|
|
|
70001
70096
|
startsNewThread?: boolean | undefined;
|
|
70002
70097
|
parentMessageId?: string | undefined;
|
|
70003
70098
|
agentResponseTrackerId?: string | undefined;
|
|
70004
|
-
currentIterationId?: string | undefined;
|
|
70005
70099
|
attachments?: {
|
|
70006
70100
|
iterationId?: string | undefined;
|
|
70007
70101
|
} | undefined;
|
|
@@ -70026,7 +70120,6 @@ declare const DTOFeatureEvent: z__default.ZodDiscriminatedUnion<"type", [z__defa
|
|
|
70026
70120
|
startsNewThread?: boolean | undefined;
|
|
70027
70121
|
parentMessageId?: string | undefined;
|
|
70028
70122
|
agentResponseTrackerId?: string | undefined;
|
|
70029
|
-
currentIterationId?: string | undefined;
|
|
70030
70123
|
attachments?: {
|
|
70031
70124
|
iterationId?: string | undefined;
|
|
70032
70125
|
} | undefined;
|
|
@@ -70152,10 +70245,6 @@ declare const DTOFeatureEvent: z__default.ZodDiscriminatedUnion<"type", [z__defa
|
|
|
70152
70245
|
* Link agent response object describing current state of
|
|
70153
70246
|
*/
|
|
70154
70247
|
agentResponseTrackerId: z__default.ZodOptional<z__default.ZodString>;
|
|
70155
|
-
/**
|
|
70156
|
-
* If the message started a thread, this indicates the current iteration within that thread
|
|
70157
|
-
*/
|
|
70158
|
-
currentIterationId: z__default.ZodOptional<z__default.ZodString>;
|
|
70159
70248
|
attachments: z__default.ZodOptional<z__default.ZodObject<{
|
|
70160
70249
|
iterationId: z__default.ZodOptional<z__default.ZodString>;
|
|
70161
70250
|
}, "strip", z__default.ZodTypeAny, {
|
|
@@ -70183,7 +70272,6 @@ declare const DTOFeatureEvent: z__default.ZodDiscriminatedUnion<"type", [z__defa
|
|
|
70183
70272
|
startsNewThread?: boolean | undefined;
|
|
70184
70273
|
parentMessageId?: string | undefined;
|
|
70185
70274
|
agentResponseTrackerId?: string | undefined;
|
|
70186
|
-
currentIterationId?: string | undefined;
|
|
70187
70275
|
attachments?: {
|
|
70188
70276
|
iterationId?: string | undefined;
|
|
70189
70277
|
} | undefined;
|
|
@@ -70205,7 +70293,6 @@ declare const DTOFeatureEvent: z__default.ZodDiscriminatedUnion<"type", [z__defa
|
|
|
70205
70293
|
startsNewThread?: boolean | undefined;
|
|
70206
70294
|
parentMessageId?: string | undefined;
|
|
70207
70295
|
agentResponseTrackerId?: string | undefined;
|
|
70208
|
-
currentIterationId?: string | undefined;
|
|
70209
70296
|
attachments?: {
|
|
70210
70297
|
iterationId?: string | undefined;
|
|
70211
70298
|
} | undefined;
|
|
@@ -70230,7 +70317,6 @@ declare const DTOFeatureEvent: z__default.ZodDiscriminatedUnion<"type", [z__defa
|
|
|
70230
70317
|
startsNewThread?: boolean | undefined;
|
|
70231
70318
|
parentMessageId?: string | undefined;
|
|
70232
70319
|
agentResponseTrackerId?: string | undefined;
|
|
70233
|
-
currentIterationId?: string | undefined;
|
|
70234
70320
|
attachments?: {
|
|
70235
70321
|
iterationId?: string | undefined;
|
|
70236
70322
|
} | undefined;
|
|
@@ -70255,7 +70341,6 @@ declare const DTOFeatureEvent: z__default.ZodDiscriminatedUnion<"type", [z__defa
|
|
|
70255
70341
|
startsNewThread?: boolean | undefined;
|
|
70256
70342
|
parentMessageId?: string | undefined;
|
|
70257
70343
|
agentResponseTrackerId?: string | undefined;
|
|
70258
|
-
currentIterationId?: string | undefined;
|
|
70259
70344
|
attachments?: {
|
|
70260
70345
|
iterationId?: string | undefined;
|
|
70261
70346
|
} | undefined;
|
|
@@ -141857,7 +141942,6 @@ declare class ForgeFeatureMessagesEndpoint {
|
|
|
141857
141942
|
startsNewThread?: boolean | undefined;
|
|
141858
141943
|
parentMessageId?: string | undefined;
|
|
141859
141944
|
agentResponseTrackerId?: string | undefined;
|
|
141860
|
-
currentIterationId?: string | undefined;
|
|
141861
141945
|
attachments?: {
|
|
141862
141946
|
iterationId?: string | undefined;
|
|
141863
141947
|
} | undefined;
|
|
@@ -141889,7 +141973,6 @@ declare class ForgeFeatureMessagesEndpoint {
|
|
|
141889
141973
|
startsNewThread?: boolean | undefined;
|
|
141890
141974
|
parentMessageId?: string | undefined;
|
|
141891
141975
|
agentResponseTrackerId?: string | undefined;
|
|
141892
|
-
currentIterationId?: string | undefined;
|
|
141893
141976
|
attachments?: {
|
|
141894
141977
|
iterationId?: string | undefined;
|
|
141895
141978
|
} | undefined;
|
|
@@ -146203,6 +146286,7 @@ interface FeatureRoomBaseYDocState {
|
|
|
146203
146286
|
isLoaded: boolean;
|
|
146204
146287
|
iterations: DTOFeatureIteration[];
|
|
146205
146288
|
artifacts: DTOFeatureArtifact[];
|
|
146289
|
+
iterationTags: DTOFeatureIterationTag[];
|
|
146206
146290
|
agentResponseTrackers: DTOFeatureAgentResponseTracker[];
|
|
146207
146291
|
executedTransactionIds: string[];
|
|
146208
146292
|
}
|
|
@@ -146211,6 +146295,8 @@ interface FeatureRoomUpdate {
|
|
|
146211
146295
|
iterationIdsToDelete?: string[];
|
|
146212
146296
|
artifacts?: DTOFeatureArtifact[];
|
|
146213
146297
|
artifactIdsToDelete?: string[];
|
|
146298
|
+
iterationTags?: DTOFeatureIterationTag[];
|
|
146299
|
+
iterationTagIdsToDelete?: string[];
|
|
146214
146300
|
agentResponseTrackers?: DTOFeatureAgentResponseTracker[];
|
|
146215
146301
|
agentResponseTrackerIdsToDelete?: string[];
|
|
146216
146302
|
executedTransactionIds?: string[];
|
|
@@ -146227,6 +146313,10 @@ declare class FeatureRoomBaseYDoc {
|
|
|
146227
146313
|
updateArtifacts(artifacts: DTOFeatureArtifact[]): void;
|
|
146228
146314
|
deleteArtifacts(ids: string[]): void;
|
|
146229
146315
|
private get artifactsYMap();
|
|
146316
|
+
getIterationTags(): DTOFeatureIterationTag[];
|
|
146317
|
+
updateIterationTags(iterationTags: DTOFeatureIterationTag[]): void;
|
|
146318
|
+
deleteIterationTags(ids: string[]): void;
|
|
146319
|
+
private get iterationTagsYMap();
|
|
146230
146320
|
getAgentResponseTrackers(): DTOFeatureAgentResponseTracker[];
|
|
146231
146321
|
updateAgentResponseTrackers(trackers: DTOFeatureAgentResponseTracker[]): void;
|
|
146232
146322
|
deleteAgentResponseTrackers(ids: string[]): void;
|
|
@@ -146244,6 +146334,8 @@ type FeatureRoomTransaction = {
|
|
|
146244
146334
|
iterationIdsToDelete?: string[];
|
|
146245
146335
|
artifacts?: DTOFeatureArtifact[];
|
|
146246
146336
|
artifactIdsToDelete?: string[];
|
|
146337
|
+
iterationTags?: DTOFeatureIterationTag[];
|
|
146338
|
+
iterationTagIdsToDelete?: string[];
|
|
146247
146339
|
agentResponseTrackers?: DTOFeatureAgentResponseTracker[];
|
|
146248
146340
|
agentResponseTrackerIdsToDelete?: string[];
|
|
146249
146341
|
executedTransactionIds?: string[];
|
|
@@ -146262,6 +146354,7 @@ declare class FrontendFeatureRoomYDoc {
|
|
|
146262
146354
|
getState(): FeatureRoomBaseYDocState;
|
|
146263
146355
|
getIterations(): DTOFeatureIteration[];
|
|
146264
146356
|
getArtifacts(): DTOFeatureArtifact[];
|
|
146357
|
+
getIterationTags(): DTOFeatureIterationTag[];
|
|
146265
146358
|
getAgentResponseTrackers(): DTOFeatureAgentResponseTracker[];
|
|
146266
146359
|
isLoaded(): boolean;
|
|
146267
146360
|
getExecutedTransactionIds(): string[];
|
|
@@ -146769,4 +146862,4 @@ declare function isValidRedirectPath(path: string): {
|
|
|
146769
146862
|
reason: ValidationErrorReason | undefined;
|
|
146770
146863
|
};
|
|
146771
146864
|
|
|
146772
|
-
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 };
|