@supernova-studio/model 0.59.5 → 0.59.7
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 +1593 -99
- package/dist/index.d.ts +1593 -99
- package/dist/index.js +9 -2
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +8 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/export/export-configuration.ts +9 -1
- package/src/integrations/integration.ts +7 -2
package/dist/index.mjs
CHANGED
|
@@ -361,11 +361,17 @@ var ExporterPropertyType = z17.enum(["Enum", "Boolean", "String", "Number", "Arr
|
|
|
361
361
|
var PropertyDefinitionBase = z17.object({
|
|
362
362
|
key: z17.string(),
|
|
363
363
|
title: z17.string(),
|
|
364
|
+
description: z17.string(),
|
|
365
|
+
category: z17.string().optional(),
|
|
366
|
+
dependsOn: z17.record(z17.boolean()).optional()
|
|
367
|
+
});
|
|
368
|
+
var ExporterPropertyDefinitionEnumOption = z17.object({
|
|
369
|
+
label: z17.string(),
|
|
364
370
|
description: z17.string()
|
|
365
371
|
});
|
|
366
372
|
var ExporterPropertyDefinitionEnum = PropertyDefinitionBase.extend({
|
|
367
373
|
type: z17.literal(ExporterPropertyType.Enum.Enum),
|
|
368
|
-
options: z17.
|
|
374
|
+
options: z17.record(ExporterPropertyDefinitionEnumOption),
|
|
369
375
|
default: z17.string()
|
|
370
376
|
});
|
|
371
377
|
var ExporterPropertyDefinitionBoolean = PropertyDefinitionBase.extend({
|
|
@@ -5801,6 +5807,7 @@ export {
|
|
|
5801
5807
|
ExporterPropertyDefinitionArray,
|
|
5802
5808
|
ExporterPropertyDefinitionBoolean,
|
|
5803
5809
|
ExporterPropertyDefinitionEnum,
|
|
5810
|
+
ExporterPropertyDefinitionEnumOption,
|
|
5804
5811
|
ExporterPropertyDefinitionNumber,
|
|
5805
5812
|
ExporterPropertyDefinitionObject,
|
|
5806
5813
|
ExporterPropertyDefinitionString,
|