@supernova-studio/client 0.59.15 → 0.59.17
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 +11 -6
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +11 -6
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -3300,7 +3300,7 @@ var ImportJob = Entity.extend({
|
|
|
3300
3300
|
var ImportFunctionInput = _zod.z.object({
|
|
3301
3301
|
importJobId: _zod.z.string(),
|
|
3302
3302
|
importContextId: _zod.z.string(),
|
|
3303
|
-
designSystemId: _zod.z.string()
|
|
3303
|
+
designSystemId: _zod.z.string()
|
|
3304
3304
|
});
|
|
3305
3305
|
var ImportedFigmaSourceData = _zod.z.object({
|
|
3306
3306
|
sourceId: _zod.z.string(),
|
|
@@ -3463,11 +3463,7 @@ var DataSourceImportModel = _zod.z.object({
|
|
|
3463
3463
|
fileName: _zod.z.string().optional(),
|
|
3464
3464
|
thumbnailUrl: _zod.z.string().optional()
|
|
3465
3465
|
});
|
|
3466
|
-
var
|
|
3467
|
-
png: FigmaPngRenderImportModel,
|
|
3468
|
-
svg: FigmaSvgRenderImportModel
|
|
3469
|
-
});
|
|
3470
|
-
var FigmaFileStructureNodeImportModel = FigmaFileStructureNodeImportModelBase.extend({
|
|
3466
|
+
var FigmaFileStructureNodeImportModel = FigmaFileStructureNodeBase.extend({
|
|
3471
3467
|
children: _zod.z.lazy(() => FigmaFileStructureNodeImportModel.array())
|
|
3472
3468
|
});
|
|
3473
3469
|
var FigmaFileStructureImportModelPart = _zod.z.object({
|
|
@@ -4330,6 +4326,15 @@ var ExportDestinationsMap = _zod.z.object({
|
|
|
4330
4326
|
destinationGitlab: ExporterDestinationGitlab.optional(),
|
|
4331
4327
|
destinationBitbucket: ExporterDestinationBitbucket.optional()
|
|
4332
4328
|
});
|
|
4329
|
+
var ExportDestinationsMapUpdate = _zod.z.object({
|
|
4330
|
+
webhookUrl: _zod.z.string().nullish(),
|
|
4331
|
+
destinationSnDocs: ExporterDestinationDocs.nullish(),
|
|
4332
|
+
destinationS3: ExporterDestinationS3.nullish(),
|
|
4333
|
+
destinationGithub: ExporterDestinationGithub.nullish(),
|
|
4334
|
+
destinationAzure: ExporterDestinationAzure.nullish(),
|
|
4335
|
+
destinationGitlab: ExporterDestinationGitlab.nullish(),
|
|
4336
|
+
destinationBitbucket: ExporterDestinationBitbucket.nullish()
|
|
4337
|
+
});
|
|
4333
4338
|
var PipelineEventType = _zod.z.enum(["OnVersionReleased", "OnHeadChanged", "OnSourceUpdated", "None"]);
|
|
4334
4339
|
var PipelineDestinationGitType = _zod.z.enum(["Github", "Gitlab", "Bitbucket", "Azure"]);
|
|
4335
4340
|
var PipelineDestinationExtraType = _zod.z.enum(["WebhookUrl", "S3", "Documentation"]);
|