@supernova-studio/model 1.9.0 → 1.9.2

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
@@ -518,7 +518,10 @@ var Asset = z22.object({
518
518
  scope: AssetScope,
519
519
  properties: AssetProperties.nullish(),
520
520
  originKey: z22.string().optional(),
521
- createdAt: z22.coerce.date().optional()
521
+ createdAt: z22.coerce.date().optional(),
522
+ pendingUpload: z22.boolean().optional(),
523
+ size: z22.number().int().positive().optional(),
524
+ checksum: z22.string().optional()
522
525
  });
523
526
  var ResolvedAsset = Asset.extend({
524
527
  url: z22.string()