@supernova-studio/client 1.22.0 → 1.22.1
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 +177 -61
- package/dist/index.d.ts +177 -61
- package/dist/index.js +20 -3
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +19 -2
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
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,40 @@ 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>;
|
|
68762
68786
|
declare const DTOFeatureMessageResponse: z__default.ZodObject<{
|
|
68763
68787
|
message: z__default.ZodObject<{
|
|
68764
68788
|
id: z__default.ZodString;
|
|
@@ -68776,13 +68800,10 @@ declare const DTOFeatureMessageResponse: z__default.ZodObject<{
|
|
|
68776
68800
|
userId: string;
|
|
68777
68801
|
}>, z__default.ZodObject<{
|
|
68778
68802
|
type: z__default.ZodLiteral<"Agent">;
|
|
68779
|
-
agentType: z__default.ZodEnum<["Cody"]>;
|
|
68780
68803
|
}, "strip", z__default.ZodTypeAny, {
|
|
68781
68804
|
type: "Agent";
|
|
68782
|
-
agentType: "Cody";
|
|
68783
68805
|
}, {
|
|
68784
68806
|
type: "Agent";
|
|
68785
|
-
agentType: "Cody";
|
|
68786
68807
|
}>, z__default.ZodObject<{
|
|
68787
68808
|
type: z__default.ZodLiteral<"System">;
|
|
68788
68809
|
onBehalfOfUserId: z__default.ZodString;
|
|
@@ -68834,7 +68855,6 @@ declare const DTOFeatureMessageResponse: z__default.ZodObject<{
|
|
|
68834
68855
|
userId: string;
|
|
68835
68856
|
} | {
|
|
68836
68857
|
type: "Agent";
|
|
68837
|
-
agentType: "Cody";
|
|
68838
68858
|
} | {
|
|
68839
68859
|
type: "System";
|
|
68840
68860
|
onBehalfOfUserId: string;
|
|
@@ -68857,7 +68877,6 @@ declare const DTOFeatureMessageResponse: z__default.ZodObject<{
|
|
|
68857
68877
|
userId: string;
|
|
68858
68878
|
} | {
|
|
68859
68879
|
type: "Agent";
|
|
68860
|
-
agentType: "Cody";
|
|
68861
68880
|
} | {
|
|
68862
68881
|
type: "System";
|
|
68863
68882
|
onBehalfOfUserId: string;
|
|
@@ -68882,7 +68901,6 @@ declare const DTOFeatureMessageResponse: z__default.ZodObject<{
|
|
|
68882
68901
|
userId: string;
|
|
68883
68902
|
} | {
|
|
68884
68903
|
type: "Agent";
|
|
68885
|
-
agentType: "Cody";
|
|
68886
68904
|
} | {
|
|
68887
68905
|
type: "System";
|
|
68888
68906
|
onBehalfOfUserId: string;
|
|
@@ -68907,7 +68925,6 @@ declare const DTOFeatureMessageResponse: z__default.ZodObject<{
|
|
|
68907
68925
|
userId: string;
|
|
68908
68926
|
} | {
|
|
68909
68927
|
type: "Agent";
|
|
68910
|
-
agentType: "Cody";
|
|
68911
68928
|
} | {
|
|
68912
68929
|
type: "System";
|
|
68913
68930
|
onBehalfOfUserId: string;
|
|
@@ -68975,13 +68992,10 @@ declare const DTOFeatureMessageListResponse: z__default.ZodObject<{
|
|
|
68975
68992
|
userId: string;
|
|
68976
68993
|
}>, z__default.ZodObject<{
|
|
68977
68994
|
type: z__default.ZodLiteral<"Agent">;
|
|
68978
|
-
agentType: z__default.ZodEnum<["Cody"]>;
|
|
68979
68995
|
}, "strip", z__default.ZodTypeAny, {
|
|
68980
68996
|
type: "Agent";
|
|
68981
|
-
agentType: "Cody";
|
|
68982
68997
|
}, {
|
|
68983
68998
|
type: "Agent";
|
|
68984
|
-
agentType: "Cody";
|
|
68985
68999
|
}>, z__default.ZodObject<{
|
|
68986
69000
|
type: z__default.ZodLiteral<"System">;
|
|
68987
69001
|
onBehalfOfUserId: z__default.ZodString;
|
|
@@ -69033,7 +69047,6 @@ declare const DTOFeatureMessageListResponse: z__default.ZodObject<{
|
|
|
69033
69047
|
userId: string;
|
|
69034
69048
|
} | {
|
|
69035
69049
|
type: "Agent";
|
|
69036
|
-
agentType: "Cody";
|
|
69037
69050
|
} | {
|
|
69038
69051
|
type: "System";
|
|
69039
69052
|
onBehalfOfUserId: string;
|
|
@@ -69056,7 +69069,6 @@ declare const DTOFeatureMessageListResponse: z__default.ZodObject<{
|
|
|
69056
69069
|
userId: string;
|
|
69057
69070
|
} | {
|
|
69058
69071
|
type: "Agent";
|
|
69059
|
-
agentType: "Cody";
|
|
69060
69072
|
} | {
|
|
69061
69073
|
type: "System";
|
|
69062
69074
|
onBehalfOfUserId: string;
|
|
@@ -69098,7 +69110,6 @@ declare const DTOFeatureMessageListResponse: z__default.ZodObject<{
|
|
|
69098
69110
|
userId: string;
|
|
69099
69111
|
} | {
|
|
69100
69112
|
type: "Agent";
|
|
69101
|
-
agentType: "Cody";
|
|
69102
69113
|
} | {
|
|
69103
69114
|
type: "System";
|
|
69104
69115
|
onBehalfOfUserId: string;
|
|
@@ -69130,7 +69141,6 @@ declare const DTOFeatureMessageListResponse: z__default.ZodObject<{
|
|
|
69130
69141
|
userId: string;
|
|
69131
69142
|
} | {
|
|
69132
69143
|
type: "Agent";
|
|
69133
|
-
agentType: "Cody";
|
|
69134
69144
|
} | {
|
|
69135
69145
|
type: "System";
|
|
69136
69146
|
onBehalfOfUserId: string;
|
|
@@ -69259,6 +69269,142 @@ declare const DTOFeatureArtifactListResponse: z__default.ZodObject<{
|
|
|
69259
69269
|
}[];
|
|
69260
69270
|
}>;
|
|
69261
69271
|
type DTOFeatureArtifactListResponse = z__default.infer<typeof DTOFeatureArtifactListResponse>;
|
|
69272
|
+
declare const DTOFeatureIterationListResponse: z__default.ZodObject<{
|
|
69273
|
+
iterations: z__default.ZodArray<z__default.ZodObject<{
|
|
69274
|
+
id: z__default.ZodString;
|
|
69275
|
+
/**
|
|
69276
|
+
* ID of the iteration that this iteration is based on
|
|
69277
|
+
*/
|
|
69278
|
+
baseIterationId: z__default.ZodOptional<z__default.ZodString>;
|
|
69279
|
+
/**
|
|
69280
|
+
* Message ID that triggered creation of the iteration
|
|
69281
|
+
*/
|
|
69282
|
+
startedFromMessageId: z__default.ZodString;
|
|
69283
|
+
/**
|
|
69284
|
+
* Indicates whether the iteration is currently being generated by an agent
|
|
69285
|
+
*/
|
|
69286
|
+
isInProgress: z__default.ZodOptional<z__default.ZodBoolean>;
|
|
69287
|
+
/**
|
|
69288
|
+
* Artifacts that the iteration is built from
|
|
69289
|
+
*/
|
|
69290
|
+
artifactIds: z__default.ZodOptional<z__default.ZodArray<z__default.ZodString, "many">>;
|
|
69291
|
+
/**
|
|
69292
|
+
* URL of a static preview of the feature
|
|
69293
|
+
*/
|
|
69294
|
+
staticPreviewUrl: z__default.ZodOptional<z__default.ZodString>;
|
|
69295
|
+
createdAt: z__default.ZodDate;
|
|
69296
|
+
updatedAt: z__default.ZodOptional<z__default.ZodDate>;
|
|
69297
|
+
}, "strip", z__default.ZodTypeAny, {
|
|
69298
|
+
id: string;
|
|
69299
|
+
createdAt: Date;
|
|
69300
|
+
startedFromMessageId: string;
|
|
69301
|
+
updatedAt?: Date | undefined;
|
|
69302
|
+
baseIterationId?: string | undefined;
|
|
69303
|
+
isInProgress?: boolean | undefined;
|
|
69304
|
+
artifactIds?: string[] | undefined;
|
|
69305
|
+
staticPreviewUrl?: string | undefined;
|
|
69306
|
+
}, {
|
|
69307
|
+
id: string;
|
|
69308
|
+
createdAt: Date;
|
|
69309
|
+
startedFromMessageId: string;
|
|
69310
|
+
updatedAt?: Date | undefined;
|
|
69311
|
+
baseIterationId?: string | undefined;
|
|
69312
|
+
isInProgress?: boolean | undefined;
|
|
69313
|
+
artifactIds?: string[] | undefined;
|
|
69314
|
+
staticPreviewUrl?: string | undefined;
|
|
69315
|
+
}>, "many">;
|
|
69316
|
+
}, "strip", z__default.ZodTypeAny, {
|
|
69317
|
+
iterations: {
|
|
69318
|
+
id: string;
|
|
69319
|
+
createdAt: Date;
|
|
69320
|
+
startedFromMessageId: string;
|
|
69321
|
+
updatedAt?: Date | undefined;
|
|
69322
|
+
baseIterationId?: string | undefined;
|
|
69323
|
+
isInProgress?: boolean | undefined;
|
|
69324
|
+
artifactIds?: string[] | undefined;
|
|
69325
|
+
staticPreviewUrl?: string | undefined;
|
|
69326
|
+
}[];
|
|
69327
|
+
}, {
|
|
69328
|
+
iterations: {
|
|
69329
|
+
id: string;
|
|
69330
|
+
createdAt: Date;
|
|
69331
|
+
startedFromMessageId: string;
|
|
69332
|
+
updatedAt?: Date | undefined;
|
|
69333
|
+
baseIterationId?: string | undefined;
|
|
69334
|
+
isInProgress?: boolean | undefined;
|
|
69335
|
+
artifactIds?: string[] | undefined;
|
|
69336
|
+
staticPreviewUrl?: string | undefined;
|
|
69337
|
+
}[];
|
|
69338
|
+
}>;
|
|
69339
|
+
type DTOFeatureIterationListResponse = z__default.infer<typeof DTOFeatureIterationListResponse>;
|
|
69340
|
+
declare const DTOFeatureIterationResponse: z__default.ZodObject<{
|
|
69341
|
+
iteration: z__default.ZodObject<{
|
|
69342
|
+
id: z__default.ZodString;
|
|
69343
|
+
/**
|
|
69344
|
+
* ID of the iteration that this iteration is based on
|
|
69345
|
+
*/
|
|
69346
|
+
baseIterationId: z__default.ZodOptional<z__default.ZodString>;
|
|
69347
|
+
/**
|
|
69348
|
+
* Message ID that triggered creation of the iteration
|
|
69349
|
+
*/
|
|
69350
|
+
startedFromMessageId: z__default.ZodString;
|
|
69351
|
+
/**
|
|
69352
|
+
* Indicates whether the iteration is currently being generated by an agent
|
|
69353
|
+
*/
|
|
69354
|
+
isInProgress: z__default.ZodOptional<z__default.ZodBoolean>;
|
|
69355
|
+
/**
|
|
69356
|
+
* Artifacts that the iteration is built from
|
|
69357
|
+
*/
|
|
69358
|
+
artifactIds: z__default.ZodOptional<z__default.ZodArray<z__default.ZodString, "many">>;
|
|
69359
|
+
/**
|
|
69360
|
+
* URL of a static preview of the feature
|
|
69361
|
+
*/
|
|
69362
|
+
staticPreviewUrl: z__default.ZodOptional<z__default.ZodString>;
|
|
69363
|
+
createdAt: z__default.ZodDate;
|
|
69364
|
+
updatedAt: z__default.ZodOptional<z__default.ZodDate>;
|
|
69365
|
+
}, "strip", z__default.ZodTypeAny, {
|
|
69366
|
+
id: string;
|
|
69367
|
+
createdAt: Date;
|
|
69368
|
+
startedFromMessageId: string;
|
|
69369
|
+
updatedAt?: Date | undefined;
|
|
69370
|
+
baseIterationId?: string | undefined;
|
|
69371
|
+
isInProgress?: boolean | undefined;
|
|
69372
|
+
artifactIds?: string[] | undefined;
|
|
69373
|
+
staticPreviewUrl?: string | undefined;
|
|
69374
|
+
}, {
|
|
69375
|
+
id: string;
|
|
69376
|
+
createdAt: Date;
|
|
69377
|
+
startedFromMessageId: string;
|
|
69378
|
+
updatedAt?: Date | undefined;
|
|
69379
|
+
baseIterationId?: string | undefined;
|
|
69380
|
+
isInProgress?: boolean | undefined;
|
|
69381
|
+
artifactIds?: string[] | undefined;
|
|
69382
|
+
staticPreviewUrl?: string | undefined;
|
|
69383
|
+
}>;
|
|
69384
|
+
}, "strip", z__default.ZodTypeAny, {
|
|
69385
|
+
iteration: {
|
|
69386
|
+
id: string;
|
|
69387
|
+
createdAt: Date;
|
|
69388
|
+
startedFromMessageId: string;
|
|
69389
|
+
updatedAt?: Date | undefined;
|
|
69390
|
+
baseIterationId?: string | undefined;
|
|
69391
|
+
isInProgress?: boolean | undefined;
|
|
69392
|
+
artifactIds?: string[] | undefined;
|
|
69393
|
+
staticPreviewUrl?: string | undefined;
|
|
69394
|
+
};
|
|
69395
|
+
}, {
|
|
69396
|
+
iteration: {
|
|
69397
|
+
id: string;
|
|
69398
|
+
createdAt: Date;
|
|
69399
|
+
startedFromMessageId: string;
|
|
69400
|
+
updatedAt?: Date | undefined;
|
|
69401
|
+
baseIterationId?: string | undefined;
|
|
69402
|
+
isInProgress?: boolean | undefined;
|
|
69403
|
+
artifactIds?: string[] | undefined;
|
|
69404
|
+
staticPreviewUrl?: string | undefined;
|
|
69405
|
+
};
|
|
69406
|
+
}>;
|
|
69407
|
+
type DTOFeatureIterationResponse = z__default.infer<typeof DTOFeatureIterationResponse>;
|
|
69262
69408
|
declare const DTOFeatureEventMessagesSent: z__default.ZodObject<{
|
|
69263
69409
|
type: z__default.ZodLiteral<"MessagesSent">;
|
|
69264
69410
|
data: z__default.ZodArray<z__default.ZodObject<{
|
|
@@ -69277,13 +69423,10 @@ declare const DTOFeatureEventMessagesSent: z__default.ZodObject<{
|
|
|
69277
69423
|
userId: string;
|
|
69278
69424
|
}>, z__default.ZodObject<{
|
|
69279
69425
|
type: z__default.ZodLiteral<"Agent">;
|
|
69280
|
-
agentType: z__default.ZodEnum<["Cody"]>;
|
|
69281
69426
|
}, "strip", z__default.ZodTypeAny, {
|
|
69282
69427
|
type: "Agent";
|
|
69283
|
-
agentType: "Cody";
|
|
69284
69428
|
}, {
|
|
69285
69429
|
type: "Agent";
|
|
69286
|
-
agentType: "Cody";
|
|
69287
69430
|
}>, z__default.ZodObject<{
|
|
69288
69431
|
type: z__default.ZodLiteral<"System">;
|
|
69289
69432
|
onBehalfOfUserId: z__default.ZodString;
|
|
@@ -69335,7 +69478,6 @@ declare const DTOFeatureEventMessagesSent: z__default.ZodObject<{
|
|
|
69335
69478
|
userId: string;
|
|
69336
69479
|
} | {
|
|
69337
69480
|
type: "Agent";
|
|
69338
|
-
agentType: "Cody";
|
|
69339
69481
|
} | {
|
|
69340
69482
|
type: "System";
|
|
69341
69483
|
onBehalfOfUserId: string;
|
|
@@ -69358,7 +69500,6 @@ declare const DTOFeatureEventMessagesSent: z__default.ZodObject<{
|
|
|
69358
69500
|
userId: string;
|
|
69359
69501
|
} | {
|
|
69360
69502
|
type: "Agent";
|
|
69361
|
-
agentType: "Cody";
|
|
69362
69503
|
} | {
|
|
69363
69504
|
type: "System";
|
|
69364
69505
|
onBehalfOfUserId: string;
|
|
@@ -69384,7 +69525,6 @@ declare const DTOFeatureEventMessagesSent: z__default.ZodObject<{
|
|
|
69384
69525
|
userId: string;
|
|
69385
69526
|
} | {
|
|
69386
69527
|
type: "Agent";
|
|
69387
|
-
agentType: "Cody";
|
|
69388
69528
|
} | {
|
|
69389
69529
|
type: "System";
|
|
69390
69530
|
onBehalfOfUserId: string;
|
|
@@ -69410,7 +69550,6 @@ declare const DTOFeatureEventMessagesSent: z__default.ZodObject<{
|
|
|
69410
69550
|
userId: string;
|
|
69411
69551
|
} | {
|
|
69412
69552
|
type: "Agent";
|
|
69413
|
-
agentType: "Cody";
|
|
69414
69553
|
} | {
|
|
69415
69554
|
type: "System";
|
|
69416
69555
|
onBehalfOfUserId: string;
|
|
@@ -69518,13 +69657,10 @@ declare const DTOFeatureEventAgentResponseFinished: z__default.ZodObject<{
|
|
|
69518
69657
|
userId: string;
|
|
69519
69658
|
}>, z__default.ZodObject<{
|
|
69520
69659
|
type: z__default.ZodLiteral<"Agent">;
|
|
69521
|
-
agentType: z__default.ZodEnum<["Cody"]>;
|
|
69522
69660
|
}, "strip", z__default.ZodTypeAny, {
|
|
69523
69661
|
type: "Agent";
|
|
69524
|
-
agentType: "Cody";
|
|
69525
69662
|
}, {
|
|
69526
69663
|
type: "Agent";
|
|
69527
|
-
agentType: "Cody";
|
|
69528
69664
|
}>, z__default.ZodObject<{
|
|
69529
69665
|
type: z__default.ZodLiteral<"System">;
|
|
69530
69666
|
onBehalfOfUserId: z__default.ZodString;
|
|
@@ -69576,7 +69712,6 @@ declare const DTOFeatureEventAgentResponseFinished: z__default.ZodObject<{
|
|
|
69576
69712
|
userId: string;
|
|
69577
69713
|
} | {
|
|
69578
69714
|
type: "Agent";
|
|
69579
|
-
agentType: "Cody";
|
|
69580
69715
|
} | {
|
|
69581
69716
|
type: "System";
|
|
69582
69717
|
onBehalfOfUserId: string;
|
|
@@ -69599,7 +69734,6 @@ declare const DTOFeatureEventAgentResponseFinished: z__default.ZodObject<{
|
|
|
69599
69734
|
userId: string;
|
|
69600
69735
|
} | {
|
|
69601
69736
|
type: "Agent";
|
|
69602
|
-
agentType: "Cody";
|
|
69603
69737
|
} | {
|
|
69604
69738
|
type: "System";
|
|
69605
69739
|
onBehalfOfUserId: string;
|
|
@@ -69625,7 +69759,6 @@ declare const DTOFeatureEventAgentResponseFinished: z__default.ZodObject<{
|
|
|
69625
69759
|
userId: string;
|
|
69626
69760
|
} | {
|
|
69627
69761
|
type: "Agent";
|
|
69628
|
-
agentType: "Cody";
|
|
69629
69762
|
} | {
|
|
69630
69763
|
type: "System";
|
|
69631
69764
|
onBehalfOfUserId: string;
|
|
@@ -69651,7 +69784,6 @@ declare const DTOFeatureEventAgentResponseFinished: z__default.ZodObject<{
|
|
|
69651
69784
|
userId: string;
|
|
69652
69785
|
} | {
|
|
69653
69786
|
type: "Agent";
|
|
69654
|
-
agentType: "Cody";
|
|
69655
69787
|
} | {
|
|
69656
69788
|
type: "System";
|
|
69657
69789
|
onBehalfOfUserId: string;
|
|
@@ -69687,13 +69819,10 @@ declare const DTOFeatureEvent: z__default.ZodDiscriminatedUnion<"type", [z__defa
|
|
|
69687
69819
|
userId: string;
|
|
69688
69820
|
}>, z__default.ZodObject<{
|
|
69689
69821
|
type: z__default.ZodLiteral<"Agent">;
|
|
69690
|
-
agentType: z__default.ZodEnum<["Cody"]>;
|
|
69691
69822
|
}, "strip", z__default.ZodTypeAny, {
|
|
69692
69823
|
type: "Agent";
|
|
69693
|
-
agentType: "Cody";
|
|
69694
69824
|
}, {
|
|
69695
69825
|
type: "Agent";
|
|
69696
|
-
agentType: "Cody";
|
|
69697
69826
|
}>, z__default.ZodObject<{
|
|
69698
69827
|
type: z__default.ZodLiteral<"System">;
|
|
69699
69828
|
onBehalfOfUserId: z__default.ZodString;
|
|
@@ -69745,7 +69874,6 @@ declare const DTOFeatureEvent: z__default.ZodDiscriminatedUnion<"type", [z__defa
|
|
|
69745
69874
|
userId: string;
|
|
69746
69875
|
} | {
|
|
69747
69876
|
type: "Agent";
|
|
69748
|
-
agentType: "Cody";
|
|
69749
69877
|
} | {
|
|
69750
69878
|
type: "System";
|
|
69751
69879
|
onBehalfOfUserId: string;
|
|
@@ -69768,7 +69896,6 @@ declare const DTOFeatureEvent: z__default.ZodDiscriminatedUnion<"type", [z__defa
|
|
|
69768
69896
|
userId: string;
|
|
69769
69897
|
} | {
|
|
69770
69898
|
type: "Agent";
|
|
69771
|
-
agentType: "Cody";
|
|
69772
69899
|
} | {
|
|
69773
69900
|
type: "System";
|
|
69774
69901
|
onBehalfOfUserId: string;
|
|
@@ -69794,7 +69921,6 @@ declare const DTOFeatureEvent: z__default.ZodDiscriminatedUnion<"type", [z__defa
|
|
|
69794
69921
|
userId: string;
|
|
69795
69922
|
} | {
|
|
69796
69923
|
type: "Agent";
|
|
69797
|
-
agentType: "Cody";
|
|
69798
69924
|
} | {
|
|
69799
69925
|
type: "System";
|
|
69800
69926
|
onBehalfOfUserId: string;
|
|
@@ -69820,7 +69946,6 @@ declare const DTOFeatureEvent: z__default.ZodDiscriminatedUnion<"type", [z__defa
|
|
|
69820
69946
|
userId: string;
|
|
69821
69947
|
} | {
|
|
69822
69948
|
type: "Agent";
|
|
69823
|
-
agentType: "Cody";
|
|
69824
69949
|
} | {
|
|
69825
69950
|
type: "System";
|
|
69826
69951
|
onBehalfOfUserId: string;
|
|
@@ -69922,13 +70047,10 @@ declare const DTOFeatureEvent: z__default.ZodDiscriminatedUnion<"type", [z__defa
|
|
|
69922
70047
|
userId: string;
|
|
69923
70048
|
}>, z__default.ZodObject<{
|
|
69924
70049
|
type: z__default.ZodLiteral<"Agent">;
|
|
69925
|
-
agentType: z__default.ZodEnum<["Cody"]>;
|
|
69926
70050
|
}, "strip", z__default.ZodTypeAny, {
|
|
69927
70051
|
type: "Agent";
|
|
69928
|
-
agentType: "Cody";
|
|
69929
70052
|
}, {
|
|
69930
70053
|
type: "Agent";
|
|
69931
|
-
agentType: "Cody";
|
|
69932
70054
|
}>, z__default.ZodObject<{
|
|
69933
70055
|
type: z__default.ZodLiteral<"System">;
|
|
69934
70056
|
onBehalfOfUserId: z__default.ZodString;
|
|
@@ -69980,7 +70102,6 @@ declare const DTOFeatureEvent: z__default.ZodDiscriminatedUnion<"type", [z__defa
|
|
|
69980
70102
|
userId: string;
|
|
69981
70103
|
} | {
|
|
69982
70104
|
type: "Agent";
|
|
69983
|
-
agentType: "Cody";
|
|
69984
70105
|
} | {
|
|
69985
70106
|
type: "System";
|
|
69986
70107
|
onBehalfOfUserId: string;
|
|
@@ -70003,7 +70124,6 @@ declare const DTOFeatureEvent: z__default.ZodDiscriminatedUnion<"type", [z__defa
|
|
|
70003
70124
|
userId: string;
|
|
70004
70125
|
} | {
|
|
70005
70126
|
type: "Agent";
|
|
70006
|
-
agentType: "Cody";
|
|
70007
70127
|
} | {
|
|
70008
70128
|
type: "System";
|
|
70009
70129
|
onBehalfOfUserId: string;
|
|
@@ -70029,7 +70149,6 @@ declare const DTOFeatureEvent: z__default.ZodDiscriminatedUnion<"type", [z__defa
|
|
|
70029
70149
|
userId: string;
|
|
70030
70150
|
} | {
|
|
70031
70151
|
type: "Agent";
|
|
70032
|
-
agentType: "Cody";
|
|
70033
70152
|
} | {
|
|
70034
70153
|
type: "System";
|
|
70035
70154
|
onBehalfOfUserId: string;
|
|
@@ -70055,7 +70174,6 @@ declare const DTOFeatureEvent: z__default.ZodDiscriminatedUnion<"type", [z__defa
|
|
|
70055
70174
|
userId: string;
|
|
70056
70175
|
} | {
|
|
70057
70176
|
type: "Agent";
|
|
70058
|
-
agentType: "Cody";
|
|
70059
70177
|
} | {
|
|
70060
70178
|
type: "System";
|
|
70061
70179
|
onBehalfOfUserId: string;
|
|
@@ -141658,7 +141776,6 @@ declare class ForgeFeatureMessagesEndpoint {
|
|
|
141658
141776
|
userId: string;
|
|
141659
141777
|
} | {
|
|
141660
141778
|
type: "Agent";
|
|
141661
|
-
agentType: "Cody";
|
|
141662
141779
|
} | {
|
|
141663
141780
|
type: "System";
|
|
141664
141781
|
onBehalfOfUserId: string;
|
|
@@ -141691,7 +141808,6 @@ declare class ForgeFeatureMessagesEndpoint {
|
|
|
141691
141808
|
userId: string;
|
|
141692
141809
|
} | {
|
|
141693
141810
|
type: "Agent";
|
|
141694
|
-
agentType: "Cody";
|
|
141695
141811
|
} | {
|
|
141696
141812
|
type: "System";
|
|
141697
141813
|
onBehalfOfUserId: string;
|
|
@@ -146514,4 +146630,4 @@ declare function isValidRedirectPath(path: string): {
|
|
|
146514
146630
|
reason: ValidationErrorReason | undefined;
|
|
146515
146631
|
};
|
|
146516
146632
|
|
|
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 };
|
|
146633
|
+
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, 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 };
|