@supernova-studio/client 0.59.16 → 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 CHANGED
@@ -4326,6 +4326,15 @@ var ExportDestinationsMap = _zod.z.object({
4326
4326
  destinationGitlab: ExporterDestinationGitlab.optional(),
4327
4327
  destinationBitbucket: ExporterDestinationBitbucket.optional()
4328
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
+ });
4329
4338
  var PipelineEventType = _zod.z.enum(["OnVersionReleased", "OnHeadChanged", "OnSourceUpdated", "None"]);
4330
4339
  var PipelineDestinationGitType = _zod.z.enum(["Github", "Gitlab", "Bitbucket", "Azure"]);
4331
4340
  var PipelineDestinationExtraType = _zod.z.enum(["WebhookUrl", "S3", "Documentation"]);