@supernova-studio/client 1.41.4 → 1.42.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 +720 -12
- package/dist/index.d.ts +720 -12
- package/dist/index.js +5 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +5 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -10271,7 +10271,11 @@ var DTOForgeProjectCreate = ForgeProject.pick({
|
|
|
10271
10271
|
fpContextId: true,
|
|
10272
10272
|
isArchived: true,
|
|
10273
10273
|
emoji: true
|
|
10274
|
-
}).extend({
|
|
10274
|
+
}).extend({
|
|
10275
|
+
membersToInvite: DTOCreateForgeProjectInvitation.array().min(1).optional(),
|
|
10276
|
+
initialFeature: DTOForgeProjectFeatureCreateInput.optional(),
|
|
10277
|
+
initialArtifact: DTOForgeProjectArtifactCreateInput.optional()
|
|
10278
|
+
});
|
|
10275
10279
|
var DTOForgeProjectUpdate = DTOForgeProjectCreate.omit({ membersToInvite: true }).partial().extend({
|
|
10276
10280
|
id: z330.string()
|
|
10277
10281
|
});
|