@supernova-studio/client 1.2.3 → 1.3.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.js CHANGED
@@ -131,6 +131,7 @@ var _slugify = require('@sindresorhus/slugify'); var _slugify2 = _interopRequire
131
131
 
132
132
 
133
133
 
134
+
134
135
 
135
136
 
136
137
  var _ipcidr = require('ip-cidr'); var _ipcidr2 = _interopRequireDefault(_ipcidr);
@@ -3305,6 +3306,12 @@ var DataSourceVersion = _zod.z.object({
3305
3306
  function zeroNumberByDefault2() {
3306
3307
  return _zod.z.number().nullish().transform((v) => _nullishCoalesce(v, () => ( 0)));
3307
3308
  }
3309
+ var FigmaFile = _zod.z.object({
3310
+ id: _zod.z.string(),
3311
+ name: _zod.z.string(),
3312
+ lastModifiedAt: _zod.z.date(),
3313
+ thumbnailUrl: _zod.z.string().optional()
3314
+ });
3308
3315
  var ImportJobState = _zod.z.enum(["PendingInput", "Queued", "InProgress", "Failed", "Success"]);
3309
3316
  var ImportJobOperation = _zod.z.enum(["Check", "Import"]);
3310
3317
  var ImportJob = Entity.extend({