@supernova-studio/client 1.44.7 → 1.44.8
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 +1 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +3 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +3 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -237318,6 +237318,7 @@ type ProjectContentState = {
|
|
|
237318
237318
|
features: DTOForgeProjectFeature[];
|
|
237319
237319
|
artifactSections: DTOForgeSection[];
|
|
237320
237320
|
featureSections: DTOForgeSection[];
|
|
237321
|
+
relations: DTOForgeRelation[];
|
|
237321
237322
|
};
|
|
237322
237323
|
|
|
237323
237324
|
type DocsPage$3 = LocalDocsPage | VersionRoomDocsPage;
|
package/dist/index.d.ts
CHANGED
|
@@ -237318,6 +237318,7 @@ type ProjectContentState = {
|
|
|
237318
237318
|
features: DTOForgeProjectFeature[];
|
|
237319
237319
|
artifactSections: DTOForgeSection[];
|
|
237320
237320
|
featureSections: DTOForgeSection[];
|
|
237321
|
+
relations: DTOForgeRelation[];
|
|
237321
237322
|
};
|
|
237322
237323
|
|
|
237323
237324
|
type DocsPage$3 = LocalDocsPage | VersionRoomDocsPage;
|
package/dist/index.js
CHANGED
|
@@ -19141,7 +19141,9 @@ var ForgeProjectContentRepository = class {
|
|
|
19141
19141
|
artifacts: state.artifacts,
|
|
19142
19142
|
features: state.features,
|
|
19143
19143
|
artifactSections: state.artifactSections,
|
|
19144
|
-
featureSections: state.featureSections
|
|
19144
|
+
featureSections: state.featureSections,
|
|
19145
|
+
// we don't apply local actions to relations, so we can just use the Yjs state
|
|
19146
|
+
relations: yState.relations
|
|
19145
19147
|
};
|
|
19146
19148
|
}
|
|
19147
19149
|
onYUpdate() {
|