@revstackhq/providers-registry 0.2.0 → 0.2.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.
- package/dist/index.d.ts +2 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { IProvider } from '@revstackhq/providers-core';
|
|
1
|
+
import { IProvider, ProviderManifest } from '@revstackhq/providers-core';
|
|
2
2
|
|
|
3
3
|
/**
|
|
4
4
|
* Factory class responsible for instantiating Provider SDKs.
|
|
@@ -24,6 +24,7 @@ interface ProviderModule {
|
|
|
24
24
|
* Must implement the IProvider interface and have a constructor.
|
|
25
25
|
*/
|
|
26
26
|
DefaultProvider: new () => IProvider;
|
|
27
|
+
manifest: ProviderManifest;
|
|
27
28
|
}
|
|
28
29
|
/**
|
|
29
30
|
* A function that loads a provider module dynamically.
|