@supernova-studio/client 1.22.0 → 1.22.2
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 +185 -61
- package/dist/index.d.ts +185 -61
- package/dist/index.js +24 -3
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +23 -2
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -68354,13 +68354,10 @@ declare const DTOFeatureMessageUserSender: z__default.ZodObject<{
|
|
|
68354
68354
|
type DTOFeatureMessageUserSender = z__default.infer<typeof DTOFeatureMessageUserSender>;
|
|
68355
68355
|
declare const DTOFeatureMessageAgentSender: z__default.ZodObject<{
|
|
68356
68356
|
type: z__default.ZodLiteral<"Agent">;
|
|
68357
|
-
agentType: z__default.ZodEnum<["Cody"]>;
|
|
68358
68357
|
}, "strip", z__default.ZodTypeAny, {
|
|
68359
68358
|
type: "Agent";
|
|
68360
|
-
agentType: "Cody";
|
|
68361
68359
|
}, {
|
|
68362
68360
|
type: "Agent";
|
|
68363
|
-
agentType: "Cody";
|
|
68364
68361
|
}>;
|
|
68365
68362
|
type DTOFeatureMessageAgentSender = z__default.infer<typeof DTOFeatureMessageAgentSender>;
|
|
68366
68363
|
declare const DTOFeatureMessageSystemSender: z__default.ZodObject<{
|
|
@@ -68385,13 +68382,10 @@ declare const DTOFeatureMessageSender: z__default.ZodDiscriminatedUnion<"type",
|
|
|
68385
68382
|
userId: string;
|
|
68386
68383
|
}>, z__default.ZodObject<{
|
|
68387
68384
|
type: z__default.ZodLiteral<"Agent">;
|
|
68388
|
-
agentType: z__default.ZodEnum<["Cody"]>;
|
|
68389
68385
|
}, "strip", z__default.ZodTypeAny, {
|
|
68390
68386
|
type: "Agent";
|
|
68391
|
-
agentType: "Cody";
|
|
68392
68387
|
}, {
|
|
68393
68388
|
type: "Agent";
|
|
68394
|
-
agentType: "Cody";
|
|
68395
68389
|
}>, z__default.ZodObject<{
|
|
68396
68390
|
type: z__default.ZodLiteral<"System">;
|
|
68397
68391
|
onBehalfOfUserId: z__default.ZodString;
|
|
@@ -68447,13 +68441,10 @@ declare const DTOFeatureMessage: z__default.ZodObject<{
|
|
|
68447
68441
|
userId: string;
|
|
68448
68442
|
}>, z__default.ZodObject<{
|
|
68449
68443
|
type: z__default.ZodLiteral<"Agent">;
|
|
68450
|
-
agentType: z__default.ZodEnum<["Cody"]>;
|
|
68451
68444
|
}, "strip", z__default.ZodTypeAny, {
|
|
68452
68445
|
type: "Agent";
|
|
68453
|
-
agentType: "Cody";
|
|
68454
68446
|
}, {
|
|
68455
68447
|
type: "Agent";
|
|
68456
|
-
agentType: "Cody";
|
|
68457
68448
|
}>, z__default.ZodObject<{
|
|
68458
68449
|
type: z__default.ZodLiteral<"System">;
|
|
68459
68450
|
onBehalfOfUserId: z__default.ZodString;
|
|
@@ -68505,7 +68496,6 @@ declare const DTOFeatureMessage: z__default.ZodObject<{
|
|
|
68505
68496
|
userId: string;
|
|
68506
68497
|
} | {
|
|
68507
68498
|
type: "Agent";
|
|
68508
|
-
agentType: "Cody";
|
|
68509
68499
|
} | {
|
|
68510
68500
|
type: "System";
|
|
68511
68501
|
onBehalfOfUserId: string;
|
|
@@ -68528,7 +68518,6 @@ declare const DTOFeatureMessage: z__default.ZodObject<{
|
|
|
68528
68518
|
userId: string;
|
|
68529
68519
|
} | {
|
|
68530
68520
|
type: "Agent";
|
|
68531
|
-
agentType: "Cody";
|
|
68532
68521
|
} | {
|
|
68533
68522
|
type: "System";
|
|
68534
68523
|
onBehalfOfUserId: string;
|
|
@@ -68579,6 +68568,10 @@ declare const DTOFeatureArtifact: z__default.ZodObject<{
|
|
|
68579
68568
|
type DTOFeatureArtifact = z__default.infer<typeof DTOFeatureArtifact>;
|
|
68580
68569
|
declare const DTOFeatureIteration: z__default.ZodObject<{
|
|
68581
68570
|
id: z__default.ZodString;
|
|
68571
|
+
/**
|
|
68572
|
+
* ID of the iteration that this iteration is based on
|
|
68573
|
+
*/
|
|
68574
|
+
baseIterationId: z__default.ZodOptional<z__default.ZodString>;
|
|
68582
68575
|
/**
|
|
68583
68576
|
* Message ID that triggered creation of the iteration
|
|
68584
68577
|
*/
|
|
@@ -68602,6 +68595,7 @@ declare const DTOFeatureIteration: z__default.ZodObject<{
|
|
|
68602
68595
|
createdAt: Date;
|
|
68603
68596
|
startedFromMessageId: string;
|
|
68604
68597
|
updatedAt?: Date | undefined;
|
|
68598
|
+
baseIterationId?: string | undefined;
|
|
68605
68599
|
isInProgress?: boolean | undefined;
|
|
68606
68600
|
artifactIds?: string[] | undefined;
|
|
68607
68601
|
staticPreviewUrl?: string | undefined;
|
|
@@ -68610,6 +68604,7 @@ declare const DTOFeatureIteration: z__default.ZodObject<{
|
|
|
68610
68604
|
createdAt: Date;
|
|
68611
68605
|
startedFromMessageId: string;
|
|
68612
68606
|
updatedAt?: Date | undefined;
|
|
68607
|
+
baseIterationId?: string | undefined;
|
|
68613
68608
|
isInProgress?: boolean | undefined;
|
|
68614
68609
|
artifactIds?: string[] | undefined;
|
|
68615
68610
|
staticPreviewUrl?: string | undefined;
|
|
@@ -68631,13 +68626,10 @@ declare const DTOFeatureMessageCreateInput: z__default.ZodObject<Pick<{
|
|
|
68631
68626
|
userId: string;
|
|
68632
68627
|
}>, z__default.ZodObject<{
|
|
68633
68628
|
type: z__default.ZodLiteral<"Agent">;
|
|
68634
|
-
agentType: z__default.ZodEnum<["Cody"]>;
|
|
68635
68629
|
}, "strip", z__default.ZodTypeAny, {
|
|
68636
68630
|
type: "Agent";
|
|
68637
|
-
agentType: "Cody";
|
|
68638
68631
|
}, {
|
|
68639
68632
|
type: "Agent";
|
|
68640
|
-
agentType: "Cody";
|
|
68641
68633
|
}>, z__default.ZodObject<{
|
|
68642
68634
|
type: z__default.ZodLiteral<"System">;
|
|
68643
68635
|
onBehalfOfUserId: z__default.ZodString;
|
|
@@ -68688,7 +68680,6 @@ declare const DTOFeatureMessageCreateInput: z__default.ZodObject<Pick<{
|
|
|
68688
68680
|
userId: string;
|
|
68689
68681
|
} | {
|
|
68690
68682
|
type: "Agent";
|
|
68691
|
-
agentType: "Cody";
|
|
68692
68683
|
} | {
|
|
68693
68684
|
type: "System";
|
|
68694
68685
|
onBehalfOfUserId: string;
|
|
@@ -68704,7 +68695,6 @@ declare const DTOFeatureMessageCreateInput: z__default.ZodObject<Pick<{
|
|
|
68704
68695
|
userId: string;
|
|
68705
68696
|
} | {
|
|
68706
68697
|
type: "Agent";
|
|
68707
|
-
agentType: "Cody";
|
|
68708
68698
|
} | {
|
|
68709
68699
|
type: "System";
|
|
68710
68700
|
onBehalfOfUserId: string;
|
|
@@ -68759,6 +68749,48 @@ declare const DTOFeatureArtifactDeleteInput: z__default.ZodObject<{
|
|
|
68759
68749
|
id: string;
|
|
68760
68750
|
}>;
|
|
68761
68751
|
type DTOFeatureArtifactDeleteInput = z__default.infer<typeof DTOFeatureArtifactDeleteInput>;
|
|
68752
|
+
declare const DTOFeatureIterationCreateInput: z__default.ZodObject<Pick<{
|
|
68753
|
+
id: z__default.ZodString;
|
|
68754
|
+
/**
|
|
68755
|
+
* ID of the iteration that this iteration is based on
|
|
68756
|
+
*/
|
|
68757
|
+
baseIterationId: z__default.ZodOptional<z__default.ZodString>;
|
|
68758
|
+
/**
|
|
68759
|
+
* Message ID that triggered creation of the iteration
|
|
68760
|
+
*/
|
|
68761
|
+
startedFromMessageId: z__default.ZodString;
|
|
68762
|
+
/**
|
|
68763
|
+
* Indicates whether the iteration is currently being generated by an agent
|
|
68764
|
+
*/
|
|
68765
|
+
isInProgress: z__default.ZodOptional<z__default.ZodBoolean>;
|
|
68766
|
+
/**
|
|
68767
|
+
* Artifacts that the iteration is built from
|
|
68768
|
+
*/
|
|
68769
|
+
artifactIds: z__default.ZodOptional<z__default.ZodArray<z__default.ZodString, "many">>;
|
|
68770
|
+
/**
|
|
68771
|
+
* URL of a static preview of the feature
|
|
68772
|
+
*/
|
|
68773
|
+
staticPreviewUrl: z__default.ZodOptional<z__default.ZodString>;
|
|
68774
|
+
createdAt: z__default.ZodDate;
|
|
68775
|
+
updatedAt: z__default.ZodOptional<z__default.ZodDate>;
|
|
68776
|
+
}, "id" | "startedFromMessageId" | "artifactIds">, "strip", z__default.ZodTypeAny, {
|
|
68777
|
+
id: string;
|
|
68778
|
+
startedFromMessageId: string;
|
|
68779
|
+
artifactIds?: string[] | undefined;
|
|
68780
|
+
}, {
|
|
68781
|
+
id: string;
|
|
68782
|
+
startedFromMessageId: string;
|
|
68783
|
+
artifactIds?: string[] | undefined;
|
|
68784
|
+
}>;
|
|
68785
|
+
type DTOFeatureIterationCreateInput = z__default.infer<typeof DTOFeatureIterationCreateInput>;
|
|
68786
|
+
declare const DTOFeatureIterationPromoteInput: z__default.ZodObject<{
|
|
68787
|
+
id: z__default.ZodString;
|
|
68788
|
+
}, "strip", z__default.ZodTypeAny, {
|
|
68789
|
+
id: string;
|
|
68790
|
+
}, {
|
|
68791
|
+
id: string;
|
|
68792
|
+
}>;
|
|
68793
|
+
type DTOFeatureIterationPromoteInput = z__default.infer<typeof DTOFeatureIterationPromoteInput>;
|
|
68762
68794
|
declare const DTOFeatureMessageResponse: z__default.ZodObject<{
|
|
68763
68795
|
message: z__default.ZodObject<{
|
|
68764
68796
|
id: z__default.ZodString;
|
|
@@ -68776,13 +68808,10 @@ declare const DTOFeatureMessageResponse: z__default.ZodObject<{
|
|
|
68776
68808
|
userId: string;
|
|
68777
68809
|
}>, z__default.ZodObject<{
|
|
68778
68810
|
type: z__default.ZodLiteral<"Agent">;
|
|
68779
|
-
agentType: z__default.ZodEnum<["Cody"]>;
|
|
68780
68811
|
}, "strip", z__default.ZodTypeAny, {
|
|
68781
68812
|
type: "Agent";
|
|
68782
|
-
agentType: "Cody";
|
|
68783
68813
|
}, {
|
|
68784
68814
|
type: "Agent";
|
|
68785
|
-
agentType: "Cody";
|
|
68786
68815
|
}>, z__default.ZodObject<{
|
|
68787
68816
|
type: z__default.ZodLiteral<"System">;
|
|
68788
68817
|
onBehalfOfUserId: z__default.ZodString;
|
|
@@ -68834,7 +68863,6 @@ declare const DTOFeatureMessageResponse: z__default.ZodObject<{
|
|
|
68834
68863
|
userId: string;
|
|
68835
68864
|
} | {
|
|
68836
68865
|
type: "Agent";
|
|
68837
|
-
agentType: "Cody";
|
|
68838
68866
|
} | {
|
|
68839
68867
|
type: "System";
|
|
68840
68868
|
onBehalfOfUserId: string;
|
|
@@ -68857,7 +68885,6 @@ declare const DTOFeatureMessageResponse: z__default.ZodObject<{
|
|
|
68857
68885
|
userId: string;
|
|
68858
68886
|
} | {
|
|
68859
68887
|
type: "Agent";
|
|
68860
|
-
agentType: "Cody";
|
|
68861
68888
|
} | {
|
|
68862
68889
|
type: "System";
|
|
68863
68890
|
onBehalfOfUserId: string;
|
|
@@ -68882,7 +68909,6 @@ declare const DTOFeatureMessageResponse: z__default.ZodObject<{
|
|
|
68882
68909
|
userId: string;
|
|
68883
68910
|
} | {
|
|
68884
68911
|
type: "Agent";
|
|
68885
|
-
agentType: "Cody";
|
|
68886
68912
|
} | {
|
|
68887
68913
|
type: "System";
|
|
68888
68914
|
onBehalfOfUserId: string;
|
|
@@ -68907,7 +68933,6 @@ declare const DTOFeatureMessageResponse: z__default.ZodObject<{
|
|
|
68907
68933
|
userId: string;
|
|
68908
68934
|
} | {
|
|
68909
68935
|
type: "Agent";
|
|
68910
|
-
agentType: "Cody";
|
|
68911
68936
|
} | {
|
|
68912
68937
|
type: "System";
|
|
68913
68938
|
onBehalfOfUserId: string;
|
|
@@ -68975,13 +69000,10 @@ declare const DTOFeatureMessageListResponse: z__default.ZodObject<{
|
|
|
68975
69000
|
userId: string;
|
|
68976
69001
|
}>, z__default.ZodObject<{
|
|
68977
69002
|
type: z__default.ZodLiteral<"Agent">;
|
|
68978
|
-
agentType: z__default.ZodEnum<["Cody"]>;
|
|
68979
69003
|
}, "strip", z__default.ZodTypeAny, {
|
|
68980
69004
|
type: "Agent";
|
|
68981
|
-
agentType: "Cody";
|
|
68982
69005
|
}, {
|
|
68983
69006
|
type: "Agent";
|
|
68984
|
-
agentType: "Cody";
|
|
68985
69007
|
}>, z__default.ZodObject<{
|
|
68986
69008
|
type: z__default.ZodLiteral<"System">;
|
|
68987
69009
|
onBehalfOfUserId: z__default.ZodString;
|
|
@@ -69033,7 +69055,6 @@ declare const DTOFeatureMessageListResponse: z__default.ZodObject<{
|
|
|
69033
69055
|
userId: string;
|
|
69034
69056
|
} | {
|
|
69035
69057
|
type: "Agent";
|
|
69036
|
-
agentType: "Cody";
|
|
69037
69058
|
} | {
|
|
69038
69059
|
type: "System";
|
|
69039
69060
|
onBehalfOfUserId: string;
|
|
@@ -69056,7 +69077,6 @@ declare const DTOFeatureMessageListResponse: z__default.ZodObject<{
|
|
|
69056
69077
|
userId: string;
|
|
69057
69078
|
} | {
|
|
69058
69079
|
type: "Agent";
|
|
69059
|
-
agentType: "Cody";
|
|
69060
69080
|
} | {
|
|
69061
69081
|
type: "System";
|
|
69062
69082
|
onBehalfOfUserId: string;
|
|
@@ -69098,7 +69118,6 @@ declare const DTOFeatureMessageListResponse: z__default.ZodObject<{
|
|
|
69098
69118
|
userId: string;
|
|
69099
69119
|
} | {
|
|
69100
69120
|
type: "Agent";
|
|
69101
|
-
agentType: "Cody";
|
|
69102
69121
|
} | {
|
|
69103
69122
|
type: "System";
|
|
69104
69123
|
onBehalfOfUserId: string;
|
|
@@ -69130,7 +69149,6 @@ declare const DTOFeatureMessageListResponse: z__default.ZodObject<{
|
|
|
69130
69149
|
userId: string;
|
|
69131
69150
|
} | {
|
|
69132
69151
|
type: "Agent";
|
|
69133
|
-
agentType: "Cody";
|
|
69134
69152
|
} | {
|
|
69135
69153
|
type: "System";
|
|
69136
69154
|
onBehalfOfUserId: string;
|
|
@@ -69259,6 +69277,142 @@ declare const DTOFeatureArtifactListResponse: z__default.ZodObject<{
|
|
|
69259
69277
|
}[];
|
|
69260
69278
|
}>;
|
|
69261
69279
|
type DTOFeatureArtifactListResponse = z__default.infer<typeof DTOFeatureArtifactListResponse>;
|
|
69280
|
+
declare const DTOFeatureIterationListResponse: z__default.ZodObject<{
|
|
69281
|
+
iterations: z__default.ZodArray<z__default.ZodObject<{
|
|
69282
|
+
id: z__default.ZodString;
|
|
69283
|
+
/**
|
|
69284
|
+
* ID of the iteration that this iteration is based on
|
|
69285
|
+
*/
|
|
69286
|
+
baseIterationId: z__default.ZodOptional<z__default.ZodString>;
|
|
69287
|
+
/**
|
|
69288
|
+
* Message ID that triggered creation of the iteration
|
|
69289
|
+
*/
|
|
69290
|
+
startedFromMessageId: z__default.ZodString;
|
|
69291
|
+
/**
|
|
69292
|
+
* Indicates whether the iteration is currently being generated by an agent
|
|
69293
|
+
*/
|
|
69294
|
+
isInProgress: z__default.ZodOptional<z__default.ZodBoolean>;
|
|
69295
|
+
/**
|
|
69296
|
+
* Artifacts that the iteration is built from
|
|
69297
|
+
*/
|
|
69298
|
+
artifactIds: z__default.ZodOptional<z__default.ZodArray<z__default.ZodString, "many">>;
|
|
69299
|
+
/**
|
|
69300
|
+
* URL of a static preview of the feature
|
|
69301
|
+
*/
|
|
69302
|
+
staticPreviewUrl: z__default.ZodOptional<z__default.ZodString>;
|
|
69303
|
+
createdAt: z__default.ZodDate;
|
|
69304
|
+
updatedAt: z__default.ZodOptional<z__default.ZodDate>;
|
|
69305
|
+
}, "strip", z__default.ZodTypeAny, {
|
|
69306
|
+
id: string;
|
|
69307
|
+
createdAt: Date;
|
|
69308
|
+
startedFromMessageId: string;
|
|
69309
|
+
updatedAt?: Date | undefined;
|
|
69310
|
+
baseIterationId?: string | undefined;
|
|
69311
|
+
isInProgress?: boolean | undefined;
|
|
69312
|
+
artifactIds?: string[] | undefined;
|
|
69313
|
+
staticPreviewUrl?: string | undefined;
|
|
69314
|
+
}, {
|
|
69315
|
+
id: string;
|
|
69316
|
+
createdAt: Date;
|
|
69317
|
+
startedFromMessageId: string;
|
|
69318
|
+
updatedAt?: Date | undefined;
|
|
69319
|
+
baseIterationId?: string | undefined;
|
|
69320
|
+
isInProgress?: boolean | undefined;
|
|
69321
|
+
artifactIds?: string[] | undefined;
|
|
69322
|
+
staticPreviewUrl?: string | undefined;
|
|
69323
|
+
}>, "many">;
|
|
69324
|
+
}, "strip", z__default.ZodTypeAny, {
|
|
69325
|
+
iterations: {
|
|
69326
|
+
id: string;
|
|
69327
|
+
createdAt: Date;
|
|
69328
|
+
startedFromMessageId: string;
|
|
69329
|
+
updatedAt?: Date | undefined;
|
|
69330
|
+
baseIterationId?: string | undefined;
|
|
69331
|
+
isInProgress?: boolean | undefined;
|
|
69332
|
+
artifactIds?: string[] | undefined;
|
|
69333
|
+
staticPreviewUrl?: string | undefined;
|
|
69334
|
+
}[];
|
|
69335
|
+
}, {
|
|
69336
|
+
iterations: {
|
|
69337
|
+
id: string;
|
|
69338
|
+
createdAt: Date;
|
|
69339
|
+
startedFromMessageId: string;
|
|
69340
|
+
updatedAt?: Date | undefined;
|
|
69341
|
+
baseIterationId?: string | undefined;
|
|
69342
|
+
isInProgress?: boolean | undefined;
|
|
69343
|
+
artifactIds?: string[] | undefined;
|
|
69344
|
+
staticPreviewUrl?: string | undefined;
|
|
69345
|
+
}[];
|
|
69346
|
+
}>;
|
|
69347
|
+
type DTOFeatureIterationListResponse = z__default.infer<typeof DTOFeatureIterationListResponse>;
|
|
69348
|
+
declare const DTOFeatureIterationResponse: z__default.ZodObject<{
|
|
69349
|
+
iteration: z__default.ZodObject<{
|
|
69350
|
+
id: z__default.ZodString;
|
|
69351
|
+
/**
|
|
69352
|
+
* ID of the iteration that this iteration is based on
|
|
69353
|
+
*/
|
|
69354
|
+
baseIterationId: z__default.ZodOptional<z__default.ZodString>;
|
|
69355
|
+
/**
|
|
69356
|
+
* Message ID that triggered creation of the iteration
|
|
69357
|
+
*/
|
|
69358
|
+
startedFromMessageId: z__default.ZodString;
|
|
69359
|
+
/**
|
|
69360
|
+
* Indicates whether the iteration is currently being generated by an agent
|
|
69361
|
+
*/
|
|
69362
|
+
isInProgress: z__default.ZodOptional<z__default.ZodBoolean>;
|
|
69363
|
+
/**
|
|
69364
|
+
* Artifacts that the iteration is built from
|
|
69365
|
+
*/
|
|
69366
|
+
artifactIds: z__default.ZodOptional<z__default.ZodArray<z__default.ZodString, "many">>;
|
|
69367
|
+
/**
|
|
69368
|
+
* URL of a static preview of the feature
|
|
69369
|
+
*/
|
|
69370
|
+
staticPreviewUrl: z__default.ZodOptional<z__default.ZodString>;
|
|
69371
|
+
createdAt: z__default.ZodDate;
|
|
69372
|
+
updatedAt: z__default.ZodOptional<z__default.ZodDate>;
|
|
69373
|
+
}, "strip", z__default.ZodTypeAny, {
|
|
69374
|
+
id: string;
|
|
69375
|
+
createdAt: Date;
|
|
69376
|
+
startedFromMessageId: string;
|
|
69377
|
+
updatedAt?: Date | undefined;
|
|
69378
|
+
baseIterationId?: string | undefined;
|
|
69379
|
+
isInProgress?: boolean | undefined;
|
|
69380
|
+
artifactIds?: string[] | undefined;
|
|
69381
|
+
staticPreviewUrl?: string | undefined;
|
|
69382
|
+
}, {
|
|
69383
|
+
id: string;
|
|
69384
|
+
createdAt: Date;
|
|
69385
|
+
startedFromMessageId: string;
|
|
69386
|
+
updatedAt?: Date | undefined;
|
|
69387
|
+
baseIterationId?: string | undefined;
|
|
69388
|
+
isInProgress?: boolean | undefined;
|
|
69389
|
+
artifactIds?: string[] | undefined;
|
|
69390
|
+
staticPreviewUrl?: string | undefined;
|
|
69391
|
+
}>;
|
|
69392
|
+
}, "strip", z__default.ZodTypeAny, {
|
|
69393
|
+
iteration: {
|
|
69394
|
+
id: string;
|
|
69395
|
+
createdAt: Date;
|
|
69396
|
+
startedFromMessageId: string;
|
|
69397
|
+
updatedAt?: Date | undefined;
|
|
69398
|
+
baseIterationId?: string | undefined;
|
|
69399
|
+
isInProgress?: boolean | undefined;
|
|
69400
|
+
artifactIds?: string[] | undefined;
|
|
69401
|
+
staticPreviewUrl?: string | undefined;
|
|
69402
|
+
};
|
|
69403
|
+
}, {
|
|
69404
|
+
iteration: {
|
|
69405
|
+
id: string;
|
|
69406
|
+
createdAt: Date;
|
|
69407
|
+
startedFromMessageId: string;
|
|
69408
|
+
updatedAt?: Date | undefined;
|
|
69409
|
+
baseIterationId?: string | undefined;
|
|
69410
|
+
isInProgress?: boolean | undefined;
|
|
69411
|
+
artifactIds?: string[] | undefined;
|
|
69412
|
+
staticPreviewUrl?: string | undefined;
|
|
69413
|
+
};
|
|
69414
|
+
}>;
|
|
69415
|
+
type DTOFeatureIterationResponse = z__default.infer<typeof DTOFeatureIterationResponse>;
|
|
69262
69416
|
declare const DTOFeatureEventMessagesSent: z__default.ZodObject<{
|
|
69263
69417
|
type: z__default.ZodLiteral<"MessagesSent">;
|
|
69264
69418
|
data: z__default.ZodArray<z__default.ZodObject<{
|
|
@@ -69277,13 +69431,10 @@ declare const DTOFeatureEventMessagesSent: z__default.ZodObject<{
|
|
|
69277
69431
|
userId: string;
|
|
69278
69432
|
}>, z__default.ZodObject<{
|
|
69279
69433
|
type: z__default.ZodLiteral<"Agent">;
|
|
69280
|
-
agentType: z__default.ZodEnum<["Cody"]>;
|
|
69281
69434
|
}, "strip", z__default.ZodTypeAny, {
|
|
69282
69435
|
type: "Agent";
|
|
69283
|
-
agentType: "Cody";
|
|
69284
69436
|
}, {
|
|
69285
69437
|
type: "Agent";
|
|
69286
|
-
agentType: "Cody";
|
|
69287
69438
|
}>, z__default.ZodObject<{
|
|
69288
69439
|
type: z__default.ZodLiteral<"System">;
|
|
69289
69440
|
onBehalfOfUserId: z__default.ZodString;
|
|
@@ -69335,7 +69486,6 @@ declare const DTOFeatureEventMessagesSent: z__default.ZodObject<{
|
|
|
69335
69486
|
userId: string;
|
|
69336
69487
|
} | {
|
|
69337
69488
|
type: "Agent";
|
|
69338
|
-
agentType: "Cody";
|
|
69339
69489
|
} | {
|
|
69340
69490
|
type: "System";
|
|
69341
69491
|
onBehalfOfUserId: string;
|
|
@@ -69358,7 +69508,6 @@ declare const DTOFeatureEventMessagesSent: z__default.ZodObject<{
|
|
|
69358
69508
|
userId: string;
|
|
69359
69509
|
} | {
|
|
69360
69510
|
type: "Agent";
|
|
69361
|
-
agentType: "Cody";
|
|
69362
69511
|
} | {
|
|
69363
69512
|
type: "System";
|
|
69364
69513
|
onBehalfOfUserId: string;
|
|
@@ -69384,7 +69533,6 @@ declare const DTOFeatureEventMessagesSent: z__default.ZodObject<{
|
|
|
69384
69533
|
userId: string;
|
|
69385
69534
|
} | {
|
|
69386
69535
|
type: "Agent";
|
|
69387
|
-
agentType: "Cody";
|
|
69388
69536
|
} | {
|
|
69389
69537
|
type: "System";
|
|
69390
69538
|
onBehalfOfUserId: string;
|
|
@@ -69410,7 +69558,6 @@ declare const DTOFeatureEventMessagesSent: z__default.ZodObject<{
|
|
|
69410
69558
|
userId: string;
|
|
69411
69559
|
} | {
|
|
69412
69560
|
type: "Agent";
|
|
69413
|
-
agentType: "Cody";
|
|
69414
69561
|
} | {
|
|
69415
69562
|
type: "System";
|
|
69416
69563
|
onBehalfOfUserId: string;
|
|
@@ -69518,13 +69665,10 @@ declare const DTOFeatureEventAgentResponseFinished: z__default.ZodObject<{
|
|
|
69518
69665
|
userId: string;
|
|
69519
69666
|
}>, z__default.ZodObject<{
|
|
69520
69667
|
type: z__default.ZodLiteral<"Agent">;
|
|
69521
|
-
agentType: z__default.ZodEnum<["Cody"]>;
|
|
69522
69668
|
}, "strip", z__default.ZodTypeAny, {
|
|
69523
69669
|
type: "Agent";
|
|
69524
|
-
agentType: "Cody";
|
|
69525
69670
|
}, {
|
|
69526
69671
|
type: "Agent";
|
|
69527
|
-
agentType: "Cody";
|
|
69528
69672
|
}>, z__default.ZodObject<{
|
|
69529
69673
|
type: z__default.ZodLiteral<"System">;
|
|
69530
69674
|
onBehalfOfUserId: z__default.ZodString;
|
|
@@ -69576,7 +69720,6 @@ declare const DTOFeatureEventAgentResponseFinished: z__default.ZodObject<{
|
|
|
69576
69720
|
userId: string;
|
|
69577
69721
|
} | {
|
|
69578
69722
|
type: "Agent";
|
|
69579
|
-
agentType: "Cody";
|
|
69580
69723
|
} | {
|
|
69581
69724
|
type: "System";
|
|
69582
69725
|
onBehalfOfUserId: string;
|
|
@@ -69599,7 +69742,6 @@ declare const DTOFeatureEventAgentResponseFinished: z__default.ZodObject<{
|
|
|
69599
69742
|
userId: string;
|
|
69600
69743
|
} | {
|
|
69601
69744
|
type: "Agent";
|
|
69602
|
-
agentType: "Cody";
|
|
69603
69745
|
} | {
|
|
69604
69746
|
type: "System";
|
|
69605
69747
|
onBehalfOfUserId: string;
|
|
@@ -69625,7 +69767,6 @@ declare const DTOFeatureEventAgentResponseFinished: z__default.ZodObject<{
|
|
|
69625
69767
|
userId: string;
|
|
69626
69768
|
} | {
|
|
69627
69769
|
type: "Agent";
|
|
69628
|
-
agentType: "Cody";
|
|
69629
69770
|
} | {
|
|
69630
69771
|
type: "System";
|
|
69631
69772
|
onBehalfOfUserId: string;
|
|
@@ -69651,7 +69792,6 @@ declare const DTOFeatureEventAgentResponseFinished: z__default.ZodObject<{
|
|
|
69651
69792
|
userId: string;
|
|
69652
69793
|
} | {
|
|
69653
69794
|
type: "Agent";
|
|
69654
|
-
agentType: "Cody";
|
|
69655
69795
|
} | {
|
|
69656
69796
|
type: "System";
|
|
69657
69797
|
onBehalfOfUserId: string;
|
|
@@ -69687,13 +69827,10 @@ declare const DTOFeatureEvent: z__default.ZodDiscriminatedUnion<"type", [z__defa
|
|
|
69687
69827
|
userId: string;
|
|
69688
69828
|
}>, z__default.ZodObject<{
|
|
69689
69829
|
type: z__default.ZodLiteral<"Agent">;
|
|
69690
|
-
agentType: z__default.ZodEnum<["Cody"]>;
|
|
69691
69830
|
}, "strip", z__default.ZodTypeAny, {
|
|
69692
69831
|
type: "Agent";
|
|
69693
|
-
agentType: "Cody";
|
|
69694
69832
|
}, {
|
|
69695
69833
|
type: "Agent";
|
|
69696
|
-
agentType: "Cody";
|
|
69697
69834
|
}>, z__default.ZodObject<{
|
|
69698
69835
|
type: z__default.ZodLiteral<"System">;
|
|
69699
69836
|
onBehalfOfUserId: z__default.ZodString;
|
|
@@ -69745,7 +69882,6 @@ declare const DTOFeatureEvent: z__default.ZodDiscriminatedUnion<"type", [z__defa
|
|
|
69745
69882
|
userId: string;
|
|
69746
69883
|
} | {
|
|
69747
69884
|
type: "Agent";
|
|
69748
|
-
agentType: "Cody";
|
|
69749
69885
|
} | {
|
|
69750
69886
|
type: "System";
|
|
69751
69887
|
onBehalfOfUserId: string;
|
|
@@ -69768,7 +69904,6 @@ declare const DTOFeatureEvent: z__default.ZodDiscriminatedUnion<"type", [z__defa
|
|
|
69768
69904
|
userId: string;
|
|
69769
69905
|
} | {
|
|
69770
69906
|
type: "Agent";
|
|
69771
|
-
agentType: "Cody";
|
|
69772
69907
|
} | {
|
|
69773
69908
|
type: "System";
|
|
69774
69909
|
onBehalfOfUserId: string;
|
|
@@ -69794,7 +69929,6 @@ declare const DTOFeatureEvent: z__default.ZodDiscriminatedUnion<"type", [z__defa
|
|
|
69794
69929
|
userId: string;
|
|
69795
69930
|
} | {
|
|
69796
69931
|
type: "Agent";
|
|
69797
|
-
agentType: "Cody";
|
|
69798
69932
|
} | {
|
|
69799
69933
|
type: "System";
|
|
69800
69934
|
onBehalfOfUserId: string;
|
|
@@ -69820,7 +69954,6 @@ declare const DTOFeatureEvent: z__default.ZodDiscriminatedUnion<"type", [z__defa
|
|
|
69820
69954
|
userId: string;
|
|
69821
69955
|
} | {
|
|
69822
69956
|
type: "Agent";
|
|
69823
|
-
agentType: "Cody";
|
|
69824
69957
|
} | {
|
|
69825
69958
|
type: "System";
|
|
69826
69959
|
onBehalfOfUserId: string;
|
|
@@ -69922,13 +70055,10 @@ declare const DTOFeatureEvent: z__default.ZodDiscriminatedUnion<"type", [z__defa
|
|
|
69922
70055
|
userId: string;
|
|
69923
70056
|
}>, z__default.ZodObject<{
|
|
69924
70057
|
type: z__default.ZodLiteral<"Agent">;
|
|
69925
|
-
agentType: z__default.ZodEnum<["Cody"]>;
|
|
69926
70058
|
}, "strip", z__default.ZodTypeAny, {
|
|
69927
70059
|
type: "Agent";
|
|
69928
|
-
agentType: "Cody";
|
|
69929
70060
|
}, {
|
|
69930
70061
|
type: "Agent";
|
|
69931
|
-
agentType: "Cody";
|
|
69932
70062
|
}>, z__default.ZodObject<{
|
|
69933
70063
|
type: z__default.ZodLiteral<"System">;
|
|
69934
70064
|
onBehalfOfUserId: z__default.ZodString;
|
|
@@ -69980,7 +70110,6 @@ declare const DTOFeatureEvent: z__default.ZodDiscriminatedUnion<"type", [z__defa
|
|
|
69980
70110
|
userId: string;
|
|
69981
70111
|
} | {
|
|
69982
70112
|
type: "Agent";
|
|
69983
|
-
agentType: "Cody";
|
|
69984
70113
|
} | {
|
|
69985
70114
|
type: "System";
|
|
69986
70115
|
onBehalfOfUserId: string;
|
|
@@ -70003,7 +70132,6 @@ declare const DTOFeatureEvent: z__default.ZodDiscriminatedUnion<"type", [z__defa
|
|
|
70003
70132
|
userId: string;
|
|
70004
70133
|
} | {
|
|
70005
70134
|
type: "Agent";
|
|
70006
|
-
agentType: "Cody";
|
|
70007
70135
|
} | {
|
|
70008
70136
|
type: "System";
|
|
70009
70137
|
onBehalfOfUserId: string;
|
|
@@ -70029,7 +70157,6 @@ declare const DTOFeatureEvent: z__default.ZodDiscriminatedUnion<"type", [z__defa
|
|
|
70029
70157
|
userId: string;
|
|
70030
70158
|
} | {
|
|
70031
70159
|
type: "Agent";
|
|
70032
|
-
agentType: "Cody";
|
|
70033
70160
|
} | {
|
|
70034
70161
|
type: "System";
|
|
70035
70162
|
onBehalfOfUserId: string;
|
|
@@ -70055,7 +70182,6 @@ declare const DTOFeatureEvent: z__default.ZodDiscriminatedUnion<"type", [z__defa
|
|
|
70055
70182
|
userId: string;
|
|
70056
70183
|
} | {
|
|
70057
70184
|
type: "Agent";
|
|
70058
|
-
agentType: "Cody";
|
|
70059
70185
|
} | {
|
|
70060
70186
|
type: "System";
|
|
70061
70187
|
onBehalfOfUserId: string;
|
|
@@ -141658,7 +141784,6 @@ declare class ForgeFeatureMessagesEndpoint {
|
|
|
141658
141784
|
userId: string;
|
|
141659
141785
|
} | {
|
|
141660
141786
|
type: "Agent";
|
|
141661
|
-
agentType: "Cody";
|
|
141662
141787
|
} | {
|
|
141663
141788
|
type: "System";
|
|
141664
141789
|
onBehalfOfUserId: string;
|
|
@@ -141691,7 +141816,6 @@ declare class ForgeFeatureMessagesEndpoint {
|
|
|
141691
141816
|
userId: string;
|
|
141692
141817
|
} | {
|
|
141693
141818
|
type: "Agent";
|
|
141694
|
-
agentType: "Cody";
|
|
141695
141819
|
} | {
|
|
141696
141820
|
type: "System";
|
|
141697
141821
|
onBehalfOfUserId: string;
|
|
@@ -146514,4 +146638,4 @@ declare function isValidRedirectPath(path: string): {
|
|
|
146514
146638
|
reason: ValidationErrorReason | undefined;
|
|
146515
146639
|
};
|
|
146516
146640
|
|
|
146517
|
-
export { 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, DTOFeatureArtifact, DTOFeatureArtifactCreateInput, DTOFeatureArtifactDeleteInput, DTOFeatureArtifactListResponse, DTOFeatureArtifactResponse, DTOFeatureEvent, DTOFeatureEventAgentResponseFinished, DTOFeatureEventMessagesSent, DTOFeatureEventReactionsDeleted, DTOFeatureEventReactionsSent, DTOFeatureIteration, 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, 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, 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 };
|
|
146641
|
+
export { 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, DTOFeatureArtifact, DTOFeatureArtifactCreateInput, DTOFeatureArtifactDeleteInput, DTOFeatureArtifactListResponse, DTOFeatureArtifactResponse, DTOFeatureEvent, DTOFeatureEventAgentResponseFinished, DTOFeatureEventMessagesSent, DTOFeatureEventReactionsDeleted, DTOFeatureEventReactionsSent, DTOFeatureIteration, DTOFeatureIterationCreateInput, DTOFeatureIterationListResponse, DTOFeatureIterationPromoteInput, DTOFeatureIterationResponse, 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, 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, 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 };
|