@supernova-studio/model 0.48.5 → 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 +4119 -569
- package/dist/index.d.ts +4119 -569
- package/dist/index.js +10 -2
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +9 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/export/export-destinations.ts +7 -0
- package/src/liveblocks/rooms/design-system-version-room.ts +3 -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({
|
|
@@ -3289,6 +3294,8 @@ var DesignSystemVersionRoomInternalSettings = z123.object({
|
|
|
3289
3294
|
var DesignSystemVersionRoomInitialState = z123.object({
|
|
3290
3295
|
pages: z123.array(DocumentationPageV2),
|
|
3291
3296
|
groups: z123.array(ElementGroup),
|
|
3297
|
+
pageSnapshots: z123.array(DocumentationPageSnapshot),
|
|
3298
|
+
groupSnapshots: z123.array(ElementGroupSnapshot),
|
|
3292
3299
|
internalSettings: DesignSystemVersionRoomInternalSettings
|
|
3293
3300
|
});
|
|
3294
3301
|
var DesignSystemVersionRoomUpdate = z123.object({
|
|
@@ -5066,6 +5073,7 @@ export {
|
|
|
5066
5073
|
ExportJobContext,
|
|
5067
5074
|
ExportJobDestinationType,
|
|
5068
5075
|
ExportJobDocsDestinationResult,
|
|
5076
|
+
ExportJobDocumentationChanges,
|
|
5069
5077
|
ExportJobDocumentationContext,
|
|
5070
5078
|
ExportJobDump,
|
|
5071
5079
|
ExportJobFindByFilter,
|