@sprucelabs/spruce-heartwood-utils 5.15.1 → 5.16.0

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.
@@ -18,7 +18,7 @@ export default class RemoteViewControllerFactory implements Factory {
18
18
  Controller(name: string, options: Record<string, any>): any;
19
19
  private getNamespace;
20
20
  getController(name: string): any;
21
- loadController(name: string): Promise<any>;
21
+ fetchRemoteController(name: string): Promise<any>;
22
22
  RemoteController(name: string, options: Record<string, any>): Promise<any>;
23
23
  private optionallLoadController;
24
24
  }
@@ -25,7 +25,7 @@ class RemoteViewControllerFactory {
25
25
  getController(name) {
26
26
  return this.vcFactory.getController(name);
27
27
  }
28
- async loadController(name) {
28
+ async fetchRemoteController(name) {
29
29
  await this.optionallLoadController(name);
30
30
  return this.vcFactory.getController(name);
31
31
  }
@@ -32,7 +32,7 @@ export default class RemoteViewControllerFactory {
32
32
  getController(name) {
33
33
  return this.vcFactory.getController(name);
34
34
  }
35
- loadController(name) {
35
+ fetchRemoteController(name) {
36
36
  return __awaiter(this, void 0, void 0, function* () {
37
37
  yield this.optionallLoadController(name);
38
38
  return this.vcFactory.getController(name);
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@sprucelabs/spruce-heartwood-utils",
3
3
  "description": "Heartwood Utilities",
4
- "version": "5.15.1",
4
+ "version": "5.16.0",
5
5
  "skill": {
6
6
  "namespace": "heartwood"
7
7
  },