@d-najd/universal-media-tracker-sdk 0.1.0 → 0.1.1

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.
@@ -1,4 +1,5 @@
1
1
  import BaseHandler from "../../base/baseHandler";
2
- import PluginSourceHandlerResponse from "../source/pluginSourceHandlerResponse";
3
- type CreatePluginFactoryHandler = BaseHandler<PluginSourceHandlerArgs, PluginSourceHandlerResponse> & {};
2
+ import PluginFactoryHandlerArgs from "./pluginFactoryHandlerArgs";
3
+ import PluginFactoryHandlerResponse from "./pluginFactoryHandlerResponse";
4
+ type CreatePluginFactoryHandler = BaseHandler<PluginFactoryHandlerArgs, PluginFactoryHandlerResponse> & {};
4
5
  export default CreatePluginFactoryHandler;
@@ -1,3 +1,4 @@
1
1
  type PluginFactoryHandlerArgs = {
2
2
  uri: string;
3
3
  };
4
+ export default PluginFactoryHandlerArgs;
@@ -1 +1 @@
1
- "use strict";
1
+ export {};
@@ -1,4 +1,5 @@
1
1
  import PluginSourceHandlerResponse from "./pluginSourceHandlerResponse";
2
2
  import BaseHandler from "../../base/baseHandler";
3
+ import PluginSourceHandlerArgs from "./pluginSourceHandlerArgs";
3
4
  type CreatePluginSourceHandler = BaseHandler<PluginSourceHandlerArgs, PluginSourceHandlerResponse> & {};
4
5
  export default CreatePluginSourceHandler;
@@ -1,3 +1,4 @@
1
1
  type PluginSourceHandlerArgs = {
2
2
  uri: string;
3
3
  };
4
+ export default PluginSourceHandlerArgs;
@@ -1 +1 @@
1
- "use strict";
1
+ export {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@d-najd/universal-media-tracker-sdk",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "main": "dist/index.js",
5
5
  "types": "dist/types/index.d.ts",
6
6
  "files": [