@supernova-studio/client 1.39.1 → 1.40.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.mjs CHANGED
@@ -249,7 +249,8 @@ var AuthV2Request = z3.object({
249
249
  codeChallenge: z3.string(),
250
250
  codeChallengeMethod: z3.string(),
251
251
  redirectUri: z3.string(),
252
- sessionId: z3.string()
252
+ sessionId: z3.string(),
253
+ clientApp: z3.string().optional()
253
254
  });
254
255
  var AuthV2Session = z4.object({
255
256
  id: z4.string(),
@@ -474,8 +475,7 @@ var ForgeChatMessage = z14.object({
474
475
  updatedAt: z14.coerce.date(),
475
476
  opikTraceId: z14.string().optional(),
476
477
  sender: ForgeChatMessageSender,
477
- userScore: ForgeChatMessageUserScore.optional(),
478
- replyToMessageId: z14.string().optional()
478
+ userScore: ForgeChatMessageUserScore.optional()
479
479
  });
480
480
  var ForgeChatThread = z15.object({
481
481
  id: z15.string(),
@@ -9557,7 +9557,7 @@ var DTOForgeProjectFeatureGetResponse = z317.object({
9557
9557
  });
9558
9558
  var DTOForgeProjectFeatureCreateInput = z317.object({
9559
9559
  id: Id,
9560
- name: z317.string(),
9560
+ name: z317.string().optional(),
9561
9561
  description: z317.string(),
9562
9562
  sectionId: Id.optional(),
9563
9563
  afterFeatureId: Id.nullable().optional(),
@@ -9915,8 +9915,7 @@ var DTOForgeChatThreadListResponse = z328.object({
9915
9915
  var DTOForgeChatMessageCreateInput = z328.object({
9916
9916
  payload: z328.string(),
9917
9917
  sender: DTOForgeChatMessageSender.optional(),
9918
- opikTraceId: z328.string().optional(),
9919
- replyToMessageId: z328.string().optional()
9918
+ opikTraceId: z328.string().optional()
9920
9919
  });
9921
9920
  var DTOForgeChatMessageCreateResponse = z328.object({
9922
9921
  message: DTOForgeChatMessage
@@ -18286,7 +18285,7 @@ var LocalProjectActionExecutor = class {
18286
18285
  isArchived: false,
18287
18286
  sectionId: input.sectionId,
18288
18287
  sortOrder,
18289
- name: input.name,
18288
+ name: input.name ?? "New Feature",
18290
18289
  status: "Draft",
18291
18290
  updatedAt: /* @__PURE__ */ new Date(),
18292
18291
  createdAt: /* @__PURE__ */ new Date(),