@luminocity/lemonate-gateway 8.0.0 → 8.0.2
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/README.md +5 -0
- package/dist/index.d.ts +3 -0
- package/dist/lemonate-gateway.cjs.js +1 -1
- package/dist/lemonate-gateway.cjs.js.map +1 -1
- package/dist/lemonate-gateway.esm.js +1 -1
- package/dist/lemonate-gateway.esm.js.map +1 -1
- package/dist/lemonate-gateway.umd.js +1 -1
- package/dist/lemonate-gateway.umd.js.map +1 -1
- package/package.json +3 -2
package/README.md
ADDED
package/dist/index.d.ts
CHANGED
|
@@ -4149,7 +4149,9 @@ declare class ItemRepo {
|
|
|
4149
4149
|
traverseItems(func: Function, rootItem?: PreparedItem | MetadataItem | undefined): Promise<void>;
|
|
4150
4150
|
traverseBlocks(func: Function, blocks: Block[]): Promise<void>;
|
|
4151
4151
|
traverseFieldInstances(func: Function, fieldInstances: Field[]): Promise<void>;
|
|
4152
|
+
_updateLinkReferences(targetId: string, newItem: PreparedItem | undefined, newId: string, forceReset: boolean): Promise<void>;
|
|
4152
4153
|
replaceLink(oldId: string, newId: string): Promise<void>;
|
|
4154
|
+
forceUpdateLink(id: string): Promise<void>;
|
|
4153
4155
|
saveItem(item: PreparedItem): Promise<PreparedItem> | null;
|
|
4154
4156
|
save(): Promise<void>;
|
|
4155
4157
|
existsUnsavedChanges(): Promise<boolean>;
|
|
@@ -4157,6 +4159,7 @@ declare class ItemRepo {
|
|
|
4157
4159
|
id: any;
|
|
4158
4160
|
newName: any;
|
|
4159
4161
|
}): void;
|
|
4162
|
+
invalidateId(itemId: string): void;
|
|
4160
4163
|
}
|
|
4161
4164
|
|
|
4162
4165
|
declare class ProxyEvent {
|