@d-najd/universal-media-tracker-sdk 0.3.1 → 0.3.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/index.d.ts +8 -7
- package/dist/{types/handler/ui → navigator}/Navigator.d.ts +1 -0
- package/dist/{types/handler/ui → navigator}/NavigatorEntry.d.ts +1 -0
- package/dist/types/handler/ui/screen/ScreenHandlerArgs.d.ts +1 -1
- package/package.json +2 -2
- package/dist/types/handler/base/BaseHandlerArgs.d.ts +0 -2
- package/dist/types/handler/base/BaseHandlerResponse.d.ts +0 -4
- package/dist/types/handler/base/BaseHandlerResponse.js +0 -1
- package/dist/types/handler/media/ResourceExtra.d.ts +0 -6
- package/dist/types/handler/media/ResourceExtra.js +0 -1
- package/dist/types/handler/media/browse-option/ResourceBrowseOptionConverter.d.ts +0 -5
- package/dist/types/handler/media/browse-option/ResourceBrowseOptionConverter.js +0 -7
- package/dist/types/handler/ui/NavigatorEntry.js +0 -1
- package/dist/types/handler/ui/screen/BaseScreenHandler.d.ts +0 -0
- package/dist/types/handler/ui/screen/BaseScreenHandler.js +0 -1
- /package/dist/{types/handler/ui → navigator}/Navigator.js +0 -0
- /package/dist/{types/handler/base/BaseHandlerArgs.js → navigator/NavigatorEntry.js} +0 -0
package/dist/index.d.ts
CHANGED
|
@@ -2,7 +2,8 @@ export { default as Plugin } from './Plugin';
|
|
|
2
2
|
export { default as TriState } from './types/TriState';
|
|
3
3
|
export { default as PluginSpec } from './types/PluginSpec';
|
|
4
4
|
export { default as PluginConfig } from './types/PluginConfig';
|
|
5
|
-
export { default as
|
|
5
|
+
export { default as NavigatorEntry } from './navigator/NavigatorEntry';
|
|
6
|
+
export { default as Navigator } from './navigator/Navigator';
|
|
6
7
|
export { default as ResourceType } from './types/handler/media/ResourceType';
|
|
7
8
|
export { default as ResourceHandlerResponse } from './types/handler/media/ResourceHandlerResponse';
|
|
8
9
|
export { default as ResourceHandlerArgs } from './types/handler/media/ResourceHandlerArgs';
|
|
@@ -16,12 +17,6 @@ export { default as BaseHandler } from './types/handler/base/BaseHandler';
|
|
|
16
17
|
export { default as ScreenHandlerResponse } from './types/handler/ui/screen/ScreenHandlerResponse';
|
|
17
18
|
export { default as ScreenHandlerArgs } from './types/handler/ui/screen/ScreenHandlerArgs';
|
|
18
19
|
export { default as CreateScreenHandler } from './types/handler/ui/screen/CreateScreenHandler';
|
|
19
|
-
export { default as PluginSourceHandlerResponse } from './types/handler/plugin/source/PluginSourceHandlerResponse';
|
|
20
|
-
export { default as PluginSourceHandlerArgs } from './types/handler/plugin/source/PluginSourceHandlerArgs';
|
|
21
|
-
export { default as CreatePluginSourceHandler } from './types/handler/plugin/source/CreatePluginSourceHandler';
|
|
22
|
-
export { default as PluginFactoryHandlerResponse } from './types/handler/plugin/factory/PluginFactoryHandlerResponse';
|
|
23
|
-
export { default as PluginFactoryHandlerArgs } from './types/handler/plugin/factory/PluginFactoryHandlerArgs';
|
|
24
|
-
export { default as CreatePluginFactoryHandler } from './types/handler/plugin/factory/CreatePluginFactoryHandler';
|
|
25
20
|
export { default as MetaPreview } from './types/handler/media/catalog/MetaPreview';
|
|
26
21
|
export { default as CreateCatalogHandler } from './types/handler/media/catalog/CreateCatalogHandler';
|
|
27
22
|
export { default as CatalogHandlerResponse } from './types/handler/media/catalog/CatalogHandlerResponse';
|
|
@@ -29,3 +24,9 @@ export { default as CatalogHandlerArgs } from './types/handler/media/catalog/Cat
|
|
|
29
24
|
export { default as ResourceBrowseOptionDefaults } from './types/handler/media/browse-option/ResourceBrowseOptionDefaults';
|
|
30
25
|
export { default as ResourceBrowseOptionArgs } from './types/handler/media/browse-option/ResourceBrowseOptionArgs';
|
|
31
26
|
export { default as ResourceBrowseOption } from './types/handler/media/browse-option/ResourceBrowseOption';
|
|
27
|
+
export { default as PluginSourceHandlerResponse } from './types/handler/plugin/source/PluginSourceHandlerResponse';
|
|
28
|
+
export { default as PluginSourceHandlerArgs } from './types/handler/plugin/source/PluginSourceHandlerArgs';
|
|
29
|
+
export { default as CreatePluginSourceHandler } from './types/handler/plugin/source/CreatePluginSourceHandler';
|
|
30
|
+
export { default as PluginFactoryHandlerResponse } from './types/handler/plugin/factory/PluginFactoryHandlerResponse';
|
|
31
|
+
export { default as PluginFactoryHandlerArgs } from './types/handler/plugin/factory/PluginFactoryHandlerArgs';
|
|
32
|
+
export { default as CreatePluginFactoryHandler } from './types/handler/plugin/factory/CreatePluginFactoryHandler';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@d-najd/universal-media-tracker-sdk",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.3",
|
|
4
4
|
"main": "dist/index.js",
|
|
5
5
|
"types": "dist/index.d.ts",
|
|
6
6
|
"files": [
|
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
}
|
|
15
15
|
},
|
|
16
16
|
"scripts": {
|
|
17
|
-
"build": "node scripts/generate.js && tsc"
|
|
17
|
+
"build": "rimraf dist & node scripts/generate.js && tsc"
|
|
18
18
|
},
|
|
19
19
|
"license": "MIT",
|
|
20
20
|
"type": "module",
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
File without changes
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
File without changes
|
|
File without changes
|