@d-najd/universal-media-tracker-sdk 0.1.2 → 0.1.3

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/Plugin.d.ts CHANGED
@@ -6,6 +6,9 @@ import CreateHandler from "./types/handler/base/CreateHandler";
6
6
  import CreatePluginFactoryHandler from "./types/handler/plugin/factory/CreatePluginFactoryHandler";
7
7
  export default class Plugin {
8
8
  readonly config: PluginConfig;
9
+ /**
10
+ * key is the handler id
11
+ */
9
12
  private handlers;
10
13
  private counter;
11
14
  private loaded;
package/dist/Plugin.js CHANGED
@@ -1,5 +1,8 @@
1
1
  export default class Plugin {
2
2
  config;
3
+ /**
4
+ * key is the handler id
5
+ */
3
6
  handlers = new Map();
4
7
  counter = 0;
5
8
  loaded = false;
@@ -1,4 +1,4 @@
1
1
  type PluginFactoryHandlerArgs = {
2
- uri: string;
2
+ url: string;
3
3
  };
4
4
  export default PluginFactoryHandlerArgs;
@@ -1,4 +1,4 @@
1
1
  type PluginSourceHandlerArgs = {
2
- uri: string;
2
+ url: string;
3
3
  };
4
4
  export default PluginSourceHandlerArgs;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@d-najd/universal-media-tracker-sdk",
3
- "version": "0.1.2",
3
+ "version": "0.1.3",
4
4
  "main": "dist/index.js",
5
5
  "types": "dist/types/index.d.ts",
6
6
  "files": [