lumiverse-spindle-types 0.5.21 → 0.5.22

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/dom.ts +0 -2
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "lumiverse-spindle-types",
3
- "version": "0.5.21",
3
+ "version": "0.5.22",
4
4
  "types": "./src/index.ts",
5
5
  "keywords": [
6
6
  "lumiverse",
package/src/dom.ts CHANGED
@@ -691,8 +691,6 @@ export interface SpindleDisplayResolverRegistry {
691
691
  registerResolver(resolver: SpindleDisplayResolver): () => void;
692
692
  /** Ask the host to invalidate cached display resolutions whose dependencies (a `<scope>:<name>` set) changed. */
693
693
  invalidate(touchedVars: string[]): void;
694
- /** Publish the set of character IDs whose display this extension owns. The host uses it to decide synchronously, at render time, whether a chat is owned by this resolver. */
695
- setOwnedCharacters(characterIds: string[]): void;
696
694
  }
697
695
 
698
696
  /** Context object provided to frontend extension modules */