@supernova-studio/model 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.d.mts +296 -1
- package/dist/index.d.ts +296 -1
- package/dist/index.js +11 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +10 -0
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/export/export-destinations.ts +11 -0
package/dist/index.mjs
CHANGED
|
@@ -4978,6 +4978,15 @@ var ExportDestinationsMap = z148.object({
|
|
|
4978
4978
|
destinationGitlab: ExporterDestinationGitlab.optional(),
|
|
4979
4979
|
destinationBitbucket: ExporterDestinationBitbucket.optional()
|
|
4980
4980
|
});
|
|
4981
|
+
var ExportDestinationsMapUpdate = z148.object({
|
|
4982
|
+
webhookUrl: z148.string().nullish(),
|
|
4983
|
+
destinationSnDocs: ExporterDestinationDocs.nullish(),
|
|
4984
|
+
destinationS3: ExporterDestinationS3.nullish(),
|
|
4985
|
+
destinationGithub: ExporterDestinationGithub.nullish(),
|
|
4986
|
+
destinationAzure: ExporterDestinationAzure.nullish(),
|
|
4987
|
+
destinationGitlab: ExporterDestinationGitlab.nullish(),
|
|
4988
|
+
destinationBitbucket: ExporterDestinationBitbucket.nullish()
|
|
4989
|
+
});
|
|
4981
4990
|
|
|
4982
4991
|
// src/export/pipeline.ts
|
|
4983
4992
|
var PipelineEventType = z149.enum(["OnVersionReleased", "OnHeadChanged", "OnSourceUpdated", "None"]);
|
|
@@ -5809,6 +5818,7 @@ export {
|
|
|
5809
5818
|
EventDataSourceImported,
|
|
5810
5819
|
EventVersionReleased,
|
|
5811
5820
|
ExportDestinationsMap,
|
|
5821
|
+
ExportDestinationsMapUpdate,
|
|
5812
5822
|
ExportJob,
|
|
5813
5823
|
ExportJobContext,
|
|
5814
5824
|
ExportJobDestinationType,
|