@d-najd/universal-media-tracker-sdk 0.1.2 → 0.1.4
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
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@d-najd/universal-media-tracker-sdk",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.4",
|
|
4
4
|
"main": "dist/index.js",
|
|
5
5
|
"types": "dist/types/index.d.ts",
|
|
6
6
|
"files": [
|
|
@@ -9,6 +9,20 @@
|
|
|
9
9
|
"scripts": {
|
|
10
10
|
"build": "tsc"
|
|
11
11
|
},
|
|
12
|
+
"exports": {
|
|
13
|
+
".": {
|
|
14
|
+
"types": "./dist/index.d.ts",
|
|
15
|
+
"default": "./dist/index.js"
|
|
16
|
+
},
|
|
17
|
+
"./*": {
|
|
18
|
+
"types": "./dist/*.d.ts",
|
|
19
|
+
"default": "./dist/*"
|
|
20
|
+
},
|
|
21
|
+
"./**/*": {
|
|
22
|
+
"types": "./dist/**/*.d.ts",
|
|
23
|
+
"default": "./dist/**/*"
|
|
24
|
+
}
|
|
25
|
+
},
|
|
12
26
|
"license": "MIT",
|
|
13
27
|
"type": "module",
|
|
14
28
|
"devDependencies": {
|