@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/package.json
CHANGED
|
@@ -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>;
|