@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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@supernova-studio/model",
3
- "version": "0.59.16",
3
+ "version": "0.59.17",
4
4
  "description": "Supernova Data Models",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -117,6 +117,16 @@ export const ExportDestinationsMap = z.object({
117
117
  destinationBitbucket: ExporterDestinationBitbucket.optional(),
118
118
  });
119
119
 
120
+ export const ExportDestinationsMapUpdate = z.object({
121
+ webhookUrl: z.string().nullish(),
122
+ destinationSnDocs: ExporterDestinationDocs.nullish(),
123
+ destinationS3: ExporterDestinationS3.nullish(),
124
+ destinationGithub: ExporterDestinationGithub.nullish(),
125
+ destinationAzure: ExporterDestinationAzure.nullish(),
126
+ destinationGitlab: ExporterDestinationGitlab.nullish(),
127
+ destinationBitbucket: ExporterDestinationBitbucket.nullish(),
128
+ });
129
+
120
130
  export type ExportJobDocumentationChanges = z.infer<typeof ExportJobDocumentationChanges>;
121
131
  export type ExporterDestinationDocs = z.infer<typeof ExporterDestinationDocs>;
122
132
  export type ExporterDestinationS3 = z.infer<typeof ExporterDestinationS3>;
@@ -125,3 +135,4 @@ export type ExporterDestinationAzure = z.infer<typeof ExporterDestinationAzure>;
125
135
  export type ExporterDestinationGitlab = z.infer<typeof ExporterDestinationGitlab>;
126
136
  export type ExporterDestinationBitbucket = z.infer<typeof ExporterDestinationBitbucket>;
127
137
  export type ExportDestinationsMap = z.infer<typeof ExportDestinationsMap>;
138
+ export type ExportDestinationsMapUpdate = z.infer<typeof ExportDestinationsMapUpdate>;