@supernova-studio/client 1.40.0 → 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.d.mts +13 -13
- package/dist/index.d.ts +13 -13
- package/dist/index.js +4 -3
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +4 -3
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
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(),
|
|
@@ -9556,7 +9557,7 @@ var DTOForgeProjectFeatureGetResponse = z317.object({
|
|
|
9556
9557
|
});
|
|
9557
9558
|
var DTOForgeProjectFeatureCreateInput = z317.object({
|
|
9558
9559
|
id: Id,
|
|
9559
|
-
name: z317.string(),
|
|
9560
|
+
name: z317.string().optional(),
|
|
9560
9561
|
description: z317.string(),
|
|
9561
9562
|
sectionId: Id.optional(),
|
|
9562
9563
|
afterFeatureId: Id.nullable().optional(),
|
|
@@ -18284,7 +18285,7 @@ var LocalProjectActionExecutor = class {
|
|
|
18284
18285
|
isArchived: false,
|
|
18285
18286
|
sectionId: input.sectionId,
|
|
18286
18287
|
sortOrder,
|
|
18287
|
-
name: input.name,
|
|
18288
|
+
name: input.name ?? "New Feature",
|
|
18288
18289
|
status: "Draft",
|
|
18289
18290
|
updatedAt: /* @__PURE__ */ new Date(),
|
|
18290
18291
|
createdAt: /* @__PURE__ */ new Date(),
|