@supernova-studio/model 1.16.2 → 1.17.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.mjs CHANGED
@@ -6007,13 +6007,19 @@ var ForgeProjectRoom = Entity.extend({
6007
6007
  });
6008
6008
  var ForgeProjectRoomInitialState = z183.object({
6009
6009
  artifacts: z183.array(ForgeProjectArtifact),
6010
- features: z183.array(ProjectFeature)
6010
+ features: z183.array(ProjectFeature),
6011
+ artifactSections: z183.array(ForgeSection),
6012
+ featureSections: z183.array(ForgeSection)
6011
6013
  });
6012
6014
  var ForgeProjectRoomUpdate = z183.object({
6013
6015
  artifacts: z183.array(ForgeProjectArtifact).optional(),
6014
6016
  artifactIdsToDelete: z183.array(z183.string()).optional(),
6015
6017
  features: z183.array(ProjectFeature).optional(),
6016
6018
  featureIdsToDelete: z183.array(z183.string()).optional(),
6019
+ artifactSections: z183.array(ForgeSection).optional(),
6020
+ artifactSectionIdsToDelete: z183.array(z183.string()).optional(),
6021
+ featureSections: z183.array(ForgeSection).optional(),
6022
+ featureSectionIdsToDelete: z183.array(z183.string()).optional(),
6017
6023
  executedTransactionIds: z183.string().array().optional()
6018
6024
  });
6019
6025