@supernova-studio/client 1.37.6 → 1.38.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.mts +88 -62
- package/dist/index.d.ts +88 -62
- package/dist/index.js +10 -4
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +9 -3
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -406,7 +406,7 @@ var PriceSchema = z11.object({
|
|
|
406
406
|
seatType: WorkspaceSeatType.optional(),
|
|
407
407
|
monthlyCreditGrant: z11.number().optional()
|
|
408
408
|
});
|
|
409
|
-
var ProductCodeSchema = z12.enum(["free", "team", "company", "enterprise"]);
|
|
409
|
+
var ProductCodeSchema = z12.enum(["free", "team", "company", "enterprise", "pro"]);
|
|
410
410
|
var ProductCode = ProductCodeSchema.enum;
|
|
411
411
|
var StripeSubscriptionStatusSchema = z13.enum([
|
|
412
412
|
"trialing",
|
|
@@ -474,7 +474,8 @@ var ForgeChatMessage = z14.object({
|
|
|
474
474
|
updatedAt: z14.coerce.date(),
|
|
475
475
|
opikTraceId: z14.string().optional(),
|
|
476
476
|
sender: ForgeChatMessageSender,
|
|
477
|
-
userScore: ForgeChatMessageUserScore.optional()
|
|
477
|
+
userScore: ForgeChatMessageUserScore.optional(),
|
|
478
|
+
replyToMessageId: z14.string().optional()
|
|
478
479
|
});
|
|
479
480
|
var ForgeChatThread = z15.object({
|
|
480
481
|
id: z15.string(),
|
|
@@ -9887,7 +9888,8 @@ var DTOForgeChatThreadListResponse = z327.object({
|
|
|
9887
9888
|
var DTOForgeChatMessageCreateInput = z327.object({
|
|
9888
9889
|
payload: z327.string(),
|
|
9889
9890
|
sender: DTOForgeChatMessageSender.optional(),
|
|
9890
|
-
opikTraceId: z327.string().optional()
|
|
9891
|
+
opikTraceId: z327.string().optional(),
|
|
9892
|
+
replyToMessageId: z327.string().optional()
|
|
9891
9893
|
});
|
|
9892
9894
|
var DTOForgeChatMessageCreateResponse = z327.object({
|
|
9893
9895
|
message: DTOForgeChatMessage
|
|
@@ -9901,6 +9903,9 @@ var DTOForgeChatMessageListResponse = z327.object({
|
|
|
9901
9903
|
totalCount: z327.number(),
|
|
9902
9904
|
hasMore: z327.boolean()
|
|
9903
9905
|
});
|
|
9906
|
+
var DTOForgeChatExportResponse = z327.object({
|
|
9907
|
+
csvDownloadUrl: z327.string().nullable()
|
|
9908
|
+
});
|
|
9904
9909
|
var DTOForgeChatMessageScoreInput = z327.object({
|
|
9905
9910
|
messageId: z327.string(),
|
|
9906
9911
|
name: z327.string(),
|
|
@@ -18634,6 +18639,7 @@ export {
|
|
|
18634
18639
|
DTOForgeArtifactsListResponse,
|
|
18635
18640
|
DTOForgeAvatarBuilder,
|
|
18636
18641
|
DTOForgeBuildArtifact,
|
|
18642
|
+
DTOForgeChatExportResponse,
|
|
18637
18643
|
DTOForgeChatMessage,
|
|
18638
18644
|
DTOForgeChatMessageCreateInput,
|
|
18639
18645
|
DTOForgeChatMessageCreateResponse,
|