@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.d.mts +425 -344
- package/dist/index.d.ts +425 -344
- package/dist/index.js +4 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +4 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -518,7 +518,10 @@ var Asset = _zod.z.object({
|
|
|
518
518
|
scope: AssetScope,
|
|
519
519
|
properties: AssetProperties.nullish(),
|
|
520
520
|
originKey: _zod.z.string().optional(),
|
|
521
|
-
createdAt: _zod.z.coerce.date().optional()
|
|
521
|
+
createdAt: _zod.z.coerce.date().optional(),
|
|
522
|
+
pendingUpload: _zod.z.boolean().optional(),
|
|
523
|
+
size: _zod.z.number().int().positive().optional(),
|
|
524
|
+
checksum: _zod.z.string().optional()
|
|
522
525
|
});
|
|
523
526
|
var ResolvedAsset = Asset.extend({
|
|
524
527
|
url: _zod.z.string()
|