arvo-core 2.1.5 → 2.1.6
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/utils.d.ts +3 -2
- package/package.json +1 -1
package/dist/utils.d.ts
CHANGED
@@ -1,4 +1,5 @@
|
|
1
1
|
import { VersionedArvoContract } from './ArvoContract/VersionedArvoContract';
|
2
|
+
import { WildCardArvoSemanticVersion } from './ArvoContract/WildCardArvoSemanticVersion';
|
2
3
|
import ArvoEvent from './ArvoEvent';
|
3
4
|
import { ArvoSemanticVersion } from './types';
|
4
5
|
/**
|
@@ -88,13 +89,13 @@ export declare class EventDataschemaUtil {
|
|
88
89
|
* // Returns: "my-contract/1.0.0"
|
89
90
|
* ```
|
90
91
|
*/
|
91
|
-
static create
|
92
|
+
static create<T extends VersionedArvoContract<any, any>>(contract: T): `${T['uri']}/${T['version']}`;
|
92
93
|
/**
|
93
94
|
* Creates dataschema string with wildcard version.
|
94
95
|
* @param contract Versioned contract
|
95
96
|
* @returns `{contract.uri}/{WildCardArvoSemanticVersion}`
|
96
97
|
*/
|
97
|
-
static createWithWildCardVersion
|
98
|
+
static createWithWildCardVersion<T extends VersionedArvoContract<any, any>>(contract: T): `${T['uri']}/${typeof WildCardArvoSemanticVersion}`;
|
98
99
|
/**
|
99
100
|
* Extracts URI and version from dataschema string.
|
100
101
|
*
|