@supernova-studio/model 0.48.6 → 0.48.7
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 +255 -1
- package/dist/index.d.ts +255 -1
- package/dist/index.js +8 -2
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +7 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/export/export-destinations.ts +7 -0
package/dist/index.mjs
CHANGED
|
@@ -3172,8 +3172,13 @@ var VersionCreationJob = z119.object({
|
|
|
3172
3172
|
// src/export/export-destinations.ts
|
|
3173
3173
|
var BITBUCKET_SLUG = /^[-a-zA-Z0-9~]*$/;
|
|
3174
3174
|
var BITBUCKET_MAX_LENGTH = 64;
|
|
3175
|
+
var ExportJobDocumentationChanges = z120.object({
|
|
3176
|
+
pagePersistentIds: z120.string().array(),
|
|
3177
|
+
groupPersistentIds: z120.string().array()
|
|
3178
|
+
});
|
|
3175
3179
|
var ExporterDestinationDocs = z120.object({
|
|
3176
|
-
environment: PublishedDocEnvironment
|
|
3180
|
+
environment: PublishedDocEnvironment,
|
|
3181
|
+
changes: nullishToOptional(ExportJobDocumentationChanges)
|
|
3177
3182
|
});
|
|
3178
3183
|
var ExporterDestinationS3 = z120.object({});
|
|
3179
3184
|
var ExporterDestinationGithub = z120.object({
|
|
@@ -5068,6 +5073,7 @@ export {
|
|
|
5068
5073
|
ExportJobContext,
|
|
5069
5074
|
ExportJobDestinationType,
|
|
5070
5075
|
ExportJobDocsDestinationResult,
|
|
5076
|
+
ExportJobDocumentationChanges,
|
|
5071
5077
|
ExportJobDocumentationContext,
|
|
5072
5078
|
ExportJobDump,
|
|
5073
5079
|
ExportJobFindByFilter,
|