@d-najd/universal-media-tracker-sdk 0.3.0 → 0.3.2
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 +4 -3
- package/dist/types/handler/ui/Navigator.d.ts +3 -5
- package/dist/types/handler/ui/NavigatorEntry.d.ts +6 -0
- package/dist/types/handler/ui/NavigatorEntry.js +1 -0
- package/dist/types/handler/ui/screen/CreateScreenHandler.d.ts +1 -1
- package/dist/types/handler/ui/screen/ScreenHandlerArgs.d.ts +2 -2
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -2,6 +2,7 @@ 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 NavigatorEntry } from './types/handler/ui/NavigatorEntry';
|
|
5
6
|
export { default as Navigator } from './types/handler/ui/Navigator';
|
|
6
7
|
export { default as ResourceType } from './types/handler/media/ResourceType';
|
|
7
8
|
export { default as ResourceHandlerResponse } from './types/handler/media/ResourceHandlerResponse';
|
|
@@ -13,15 +14,15 @@ export { default as HandlerTypes } from './types/handler/base/HandlerTypes';
|
|
|
13
14
|
export { default as Handler } from './types/handler/base/Handler';
|
|
14
15
|
export { default as CreateHandler } from './types/handler/base/CreateHandler';
|
|
15
16
|
export { default as BaseHandler } from './types/handler/base/BaseHandler';
|
|
16
|
-
export { default as ScreenHandlerResponse } from './types/handler/ui/screen/ScreenHandlerResponse';
|
|
17
|
-
export { default as ScreenHandlerArgs } from './types/handler/ui/screen/ScreenHandlerArgs';
|
|
18
|
-
export { default as CreateScreenHandler } from './types/handler/ui/screen/CreateScreenHandler';
|
|
19
17
|
export { default as PluginSourceHandlerResponse } from './types/handler/plugin/source/PluginSourceHandlerResponse';
|
|
20
18
|
export { default as PluginSourceHandlerArgs } from './types/handler/plugin/source/PluginSourceHandlerArgs';
|
|
21
19
|
export { default as CreatePluginSourceHandler } from './types/handler/plugin/source/CreatePluginSourceHandler';
|
|
22
20
|
export { default as PluginFactoryHandlerResponse } from './types/handler/plugin/factory/PluginFactoryHandlerResponse';
|
|
23
21
|
export { default as PluginFactoryHandlerArgs } from './types/handler/plugin/factory/PluginFactoryHandlerArgs';
|
|
24
22
|
export { default as CreatePluginFactoryHandler } from './types/handler/plugin/factory/CreatePluginFactoryHandler';
|
|
23
|
+
export { default as ScreenHandlerResponse } from './types/handler/ui/screen/ScreenHandlerResponse';
|
|
24
|
+
export { default as ScreenHandlerArgs } from './types/handler/ui/screen/ScreenHandlerArgs';
|
|
25
|
+
export { default as CreateScreenHandler } from './types/handler/ui/screen/CreateScreenHandler';
|
|
25
26
|
export { default as MetaPreview } from './types/handler/media/catalog/MetaPreview';
|
|
26
27
|
export { default as CreateCatalogHandler } from './types/handler/media/catalog/CreateCatalogHandler';
|
|
27
28
|
export { default as CatalogHandlerResponse } from './types/handler/media/catalog/CatalogHandlerResponse';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -9,10 +9,10 @@ type ScreenHandlerArgs<S = any> = {
|
|
|
9
9
|
/**
|
|
10
10
|
* /library/1
|
|
11
11
|
*/
|
|
12
|
-
readonly
|
|
12
|
+
readonly path: string;
|
|
13
13
|
/**
|
|
14
14
|
* /library/:id
|
|
15
15
|
*/
|
|
16
|
-
readonly
|
|
16
|
+
readonly pattern: string;
|
|
17
17
|
};
|
|
18
18
|
export default ScreenHandlerArgs;
|