@sphereon/ssi-sdk.agent-config 0.33.1-feature.vcdm2.4 → 0.33.1-feature.vcdm2.tsup.18
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.cjs +432 -0
- package/dist/index.cjs.map +1 -0
- package/dist/index.d.cts +186 -0
- package/dist/index.d.ts +183 -7
- package/dist/index.js +375 -9
- package/dist/index.js.map +1 -1
- package/package.json +22 -11
- package/src/dataSources.ts +3 -4
- package/dist/agentContextUtils.d.ts +0 -21
- package/dist/agentContextUtils.d.ts.map +0 -1
- package/dist/agentContextUtils.js +0 -40
- package/dist/agentContextUtils.js.map +0 -1
- package/dist/agentCreator.d.ts +0 -54
- package/dist/agentCreator.d.ts.map +0 -1
- package/dist/agentCreator.js +0 -88
- package/dist/agentCreator.js.map +0 -1
- package/dist/dataSources.d.ts +0 -45
- package/dist/dataSources.d.ts.map +0 -1
- package/dist/dataSources.js +0 -131
- package/dist/dataSources.js.map +0 -1
- package/dist/generic.d.ts +0 -7
- package/dist/generic.d.ts.map +0 -1
- package/dist/generic.js +0 -2
- package/dist/generic.js.map +0 -1
- package/dist/index.d.ts.map +0 -1
- package/dist/objectCreator.d.ts +0 -48
- package/dist/objectCreator.d.ts.map +0 -1
- package/dist/objectCreator.js +0 -155
- package/dist/objectCreator.js.map +0 -1
- package/dist/typeormTypes.d.ts +0 -11
- package/dist/typeormTypes.d.ts.map +0 -1
- package/dist/typeormTypes.js +0 -24
- package/dist/typeormTypes.js.map +0 -1
package/package.json
CHANGED
|
@@ -1,29 +1,41 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sphereon/ssi-sdk.agent-config",
|
|
3
|
-
"version": "0.33.1-feature.vcdm2.
|
|
3
|
+
"version": "0.33.1-feature.vcdm2.tsup.18+1fbb8be0",
|
|
4
4
|
"source": "src/index.ts",
|
|
5
|
-
"
|
|
6
|
-
"
|
|
5
|
+
"type": "module",
|
|
6
|
+
"main": "./dist/index.cjs",
|
|
7
|
+
"module": "./dist/index.js",
|
|
8
|
+
"types": "./dist/index.d.ts",
|
|
9
|
+
"exports": {
|
|
10
|
+
"import": {
|
|
11
|
+
"types": "./dist/index.d.ts",
|
|
12
|
+
"import": "./dist/index.js"
|
|
13
|
+
},
|
|
14
|
+
"require": {
|
|
15
|
+
"types": "./dist/index.d.cts",
|
|
16
|
+
"require": "./dist/index.cjs"
|
|
17
|
+
}
|
|
18
|
+
},
|
|
7
19
|
"scripts": {
|
|
8
|
-
"build": "
|
|
9
|
-
"build:clean": "tsc --build --clean && tsc --build"
|
|
20
|
+
"build": "tsup --config ../../tsup.config.ts --tsconfig ../../tsconfig.tsup.json"
|
|
10
21
|
},
|
|
11
22
|
"dependencies": {
|
|
12
23
|
"@veramo/core": "4.2.0",
|
|
13
24
|
"debug": "^4.3.5",
|
|
14
25
|
"jsonpointer": "^5.0.1",
|
|
15
|
-
"
|
|
26
|
+
"reflect-metadata": "^0.2.2",
|
|
27
|
+
"typeorm": "^0.3.22",
|
|
16
28
|
"url-parse": "^1.5.10",
|
|
17
29
|
"yaml": "^2.4.5"
|
|
18
30
|
},
|
|
19
31
|
"devDependencies": {
|
|
20
32
|
"@types/debug": "^4.1.12",
|
|
21
33
|
"@types/url-parse": "^1.4.11",
|
|
22
|
-
"typescript": "5.
|
|
34
|
+
"typescript": "5.8.3"
|
|
23
35
|
},
|
|
24
36
|
"files": [
|
|
25
|
-
"dist
|
|
26
|
-
"src
|
|
37
|
+
"dist",
|
|
38
|
+
"src",
|
|
27
39
|
"README.md",
|
|
28
40
|
"LICENSE"
|
|
29
41
|
],
|
|
@@ -38,6 +50,5 @@
|
|
|
38
50
|
"SSI",
|
|
39
51
|
"Agent"
|
|
40
52
|
],
|
|
41
|
-
"
|
|
42
|
-
"gitHead": "9f634bdb714061141e277508c124b08d626f6036"
|
|
53
|
+
"gitHead": "1fbb8be0256ec8dbc1b52d860b7bfd09d12f0d00"
|
|
43
54
|
}
|
package/src/dataSources.ts
CHANGED
|
@@ -1,8 +1,7 @@
|
|
|
1
1
|
import Debug from 'debug'
|
|
2
|
-
import { DataSource } from 'typeorm'
|
|
3
|
-
import { BaseDataSourceOptions } from 'typeorm/data-source/BaseDataSourceOptions'
|
|
4
|
-
|
|
5
|
-
import { DataSourceOptions } from 'typeorm/data-source/DataSourceOptions'
|
|
2
|
+
import { DataSource } from 'typeorm/data-source/DataSource.js'
|
|
3
|
+
import { BaseDataSourceOptions } from 'typeorm/data-source/BaseDataSourceOptions.js'
|
|
4
|
+
import { DataSourceOptions } from 'typeorm/data-source/DataSourceOptions.js'
|
|
6
5
|
|
|
7
6
|
const debug = Debug(`sphereon:ssi-sdk:database`)
|
|
8
7
|
|
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
import { IAgentContext, ICredentialVerifier, IDataStore, IDataStoreORM, IDIDManager, IKeyManager, IPluginMethodMap, IResolver, ICredentialIssuer, ICredentialStatusVerifier } from '@veramo/core';
|
|
2
|
-
/**
|
|
3
|
-
* Allows to get a type agent context plugin methods based on provided or inferred types and at least one method for these plugin(s)
|
|
4
|
-
* @param context Tje agent context to check against
|
|
5
|
-
* @param requiredMethod One or more method the plugin provides, so we can check availability and thus plugin presence
|
|
6
|
-
*/
|
|
7
|
-
export declare function contextHasPlugin<Plugins extends IPluginMethodMap>(context: IAgentContext<any>, requiredMethod: string | string[]): context is IAgentContext<Plugins>;
|
|
8
|
-
/**
|
|
9
|
-
* The below methods are convenience methods to directly get the appropriate context after calling the respective method
|
|
10
|
-
*
|
|
11
|
-
* @param context
|
|
12
|
-
*/
|
|
13
|
-
export declare function contextHasKeyManager(context: IAgentContext<IPluginMethodMap>): context is IAgentContext<IKeyManager>;
|
|
14
|
-
export declare function contextHasDidManager(context: IAgentContext<IPluginMethodMap>): context is IAgentContext<IResolver & IDIDManager>;
|
|
15
|
-
export declare function contextHasDidResolver(context: IAgentContext<IPluginMethodMap>): context is IAgentContext<IResolver>;
|
|
16
|
-
export declare function contextHasCredentialIssuer(context: IAgentContext<IPluginMethodMap>): context is IAgentContext<ICredentialIssuer>;
|
|
17
|
-
export declare function contextHasCredentialVerifier(context: IAgentContext<IPluginMethodMap>): context is IAgentContext<ICredentialVerifier>;
|
|
18
|
-
export declare function contextHasCredentialStatusVerifier(context: IAgentContext<IPluginMethodMap>): context is IAgentContext<ICredentialStatusVerifier>;
|
|
19
|
-
export declare function contextHasDataStore(context: IAgentContext<IPluginMethodMap>): context is IAgentContext<IDataStore>;
|
|
20
|
-
export declare function contextHasDataStoreORM(context: IAgentContext<IPluginMethodMap>): context is IAgentContext<IDataStoreORM>;
|
|
21
|
-
//# sourceMappingURL=agentContextUtils.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"agentContextUtils.d.ts","sourceRoot":"","sources":["../src/agentContextUtils.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,aAAa,EACb,mBAAmB,EACnB,UAAU,EACV,aAAa,EACb,WAAW,EACX,WAAW,EACX,gBAAgB,EAChB,SAAS,EACT,iBAAiB,EACjB,yBAAyB,EAC1B,MAAM,cAAc,CAAA;AAErB;;;;GAIG;AACH,wBAAgB,gBAAgB,CAAC,OAAO,SAAS,gBAAgB,EAC/D,OAAO,EAAE,aAAa,CAAC,GAAG,CAAC,EAC3B,cAAc,EAAE,MAAM,GAAG,MAAM,EAAE,GAChC,OAAO,IAAI,aAAa,CAAC,OAAO,CAAC,CAInC;AAED;;;;GAIG;AAEH,wBAAgB,oBAAoB,CAAC,OAAO,EAAE,aAAa,CAAC,gBAAgB,CAAC,GAAG,OAAO,IAAI,aAAa,CAAC,WAAW,CAAC,CAEpH;AAED,wBAAgB,oBAAoB,CAAC,OAAO,EAAE,aAAa,CAAC,gBAAgB,CAAC,GAAG,OAAO,IAAI,aAAa,CAAC,SAAS,GAAG,WAAW,CAAC,CAEhI;AAED,wBAAgB,qBAAqB,CAAC,OAAO,EAAE,aAAa,CAAC,gBAAgB,CAAC,GAAG,OAAO,IAAI,aAAa,CAAC,SAAS,CAAC,CAEnH;AAED,wBAAgB,0BAA0B,CAAC,OAAO,EAAE,aAAa,CAAC,gBAAgB,CAAC,GAAG,OAAO,IAAI,aAAa,CAAC,iBAAiB,CAAC,CAEhI;AAED,wBAAgB,4BAA4B,CAAC,OAAO,EAAE,aAAa,CAAC,gBAAgB,CAAC,GAAG,OAAO,IAAI,aAAa,CAAC,mBAAmB,CAAC,CAEpI;AAED,wBAAgB,kCAAkC,CAAC,OAAO,EAAE,aAAa,CAAC,gBAAgB,CAAC,GAAG,OAAO,IAAI,aAAa,CAAC,yBAAyB,CAAC,CAEhJ;AAED,wBAAgB,mBAAmB,CAAC,OAAO,EAAE,aAAa,CAAC,gBAAgB,CAAC,GAAG,OAAO,IAAI,aAAa,CAAC,UAAU,CAAC,CAElH;AAED,wBAAgB,sBAAsB,CAAC,OAAO,EAAE,aAAa,CAAC,gBAAgB,CAAC,GAAG,OAAO,IAAI,aAAa,CAAC,aAAa,CAAC,CAExH"}
|
|
@@ -1,40 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Allows to get a type agent context plugin methods based on provided or inferred types and at least one method for these plugin(s)
|
|
3
|
-
* @param context Tje agent context to check against
|
|
4
|
-
* @param requiredMethod One or more method the plugin provides, so we can check availability and thus plugin presence
|
|
5
|
-
*/
|
|
6
|
-
export function contextHasPlugin(context, requiredMethod) {
|
|
7
|
-
const methods = Array.isArray(requiredMethod) ? requiredMethod : [requiredMethod];
|
|
8
|
-
const allMethods = context.agent.availableMethods();
|
|
9
|
-
return methods.every((method) => allMethods.includes(method));
|
|
10
|
-
}
|
|
11
|
-
/**
|
|
12
|
-
* The below methods are convenience methods to directly get the appropriate context after calling the respective method
|
|
13
|
-
*
|
|
14
|
-
* @param context
|
|
15
|
-
*/
|
|
16
|
-
export function contextHasKeyManager(context) {
|
|
17
|
-
return contextHasPlugin(context, 'keyManagerGet');
|
|
18
|
-
}
|
|
19
|
-
export function contextHasDidManager(context) {
|
|
20
|
-
return contextHasPlugin(context, 'didManagerGet'); // IResolver is always required for IDIDManager
|
|
21
|
-
}
|
|
22
|
-
export function contextHasDidResolver(context) {
|
|
23
|
-
return contextHasPlugin(context, 'resolveDid'); // IResolver is always required for IDIDManager
|
|
24
|
-
}
|
|
25
|
-
export function contextHasCredentialIssuer(context) {
|
|
26
|
-
return contextHasPlugin(context, ['createVerifiableCredential', 'createVerifiablePresentation']); // W3C Credential issuer
|
|
27
|
-
}
|
|
28
|
-
export function contextHasCredentialVerifier(context) {
|
|
29
|
-
return contextHasPlugin(context, ['verifyCredential', 'verifyPresentation']); // W3c Credential Verifier
|
|
30
|
-
}
|
|
31
|
-
export function contextHasCredentialStatusVerifier(context) {
|
|
32
|
-
return contextHasPlugin(context, ['checkCredentialStatus']); // W3c Credential status Verifier
|
|
33
|
-
}
|
|
34
|
-
export function contextHasDataStore(context) {
|
|
35
|
-
return contextHasPlugin(context, ['dataStoreGetVerifiableCredential', 'dataStoreGetVerifiablePresentation']);
|
|
36
|
-
}
|
|
37
|
-
export function contextHasDataStoreORM(context) {
|
|
38
|
-
return contextHasPlugin(context, ['dataStoreORMGetVerifiableCredentials', 'dataStoreORMGetVerifiablePresentations']);
|
|
39
|
-
}
|
|
40
|
-
//# sourceMappingURL=agentContextUtils.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"agentContextUtils.js","sourceRoot":"","sources":["../src/agentContextUtils.ts"],"names":[],"mappings":"AAaA;;;;GAIG;AACH,MAAM,UAAU,gBAAgB,CAC9B,OAA2B,EAC3B,cAAiC;IAEjC,MAAM,OAAO,GAAG,KAAK,CAAC,OAAO,CAAC,cAAc,CAAC,CAAC,CAAC,CAAC,cAAc,CAAC,CAAC,CAAC,CAAC,cAAc,CAAC,CAAA;IACjF,MAAM,UAAU,GAAG,OAAO,CAAC,KAAK,CAAC,gBAAgB,EAAE,CAAA;IACnD,OAAO,OAAO,CAAC,KAAK,CAAC,CAAC,MAAM,EAAE,EAAE,CAAC,UAAU,CAAC,QAAQ,CAAC,MAAM,CAAC,CAAC,CAAA;AAC/D,CAAC;AAED;;;;GAIG;AAEH,MAAM,UAAU,oBAAoB,CAAC,OAAwC;IAC3E,OAAO,gBAAgB,CAAC,OAAO,EAAE,eAAe,CAAC,CAAA;AACnD,CAAC;AAED,MAAM,UAAU,oBAAoB,CAAC,OAAwC;IAC3E,OAAO,gBAAgB,CAAC,OAAO,EAAE,eAAe,CAAC,CAAA,CAAC,+CAA+C;AACnG,CAAC;AAED,MAAM,UAAU,qBAAqB,CAAC,OAAwC;IAC5E,OAAO,gBAAgB,CAAC,OAAO,EAAE,YAAY,CAAC,CAAA,CAAC,+CAA+C;AAChG,CAAC;AAED,MAAM,UAAU,0BAA0B,CAAC,OAAwC;IACjF,OAAO,gBAAgB,CAAC,OAAO,EAAE,CAAC,4BAA4B,EAAE,8BAA8B,CAAC,CAAC,CAAA,CAAC,wBAAwB;AAC3H,CAAC;AAED,MAAM,UAAU,4BAA4B,CAAC,OAAwC;IACnF,OAAO,gBAAgB,CAAC,OAAO,EAAE,CAAC,kBAAkB,EAAE,oBAAoB,CAAC,CAAC,CAAA,CAAC,0BAA0B;AACzG,CAAC;AAED,MAAM,UAAU,kCAAkC,CAAC,OAAwC;IACzF,OAAO,gBAAgB,CAAC,OAAO,EAAE,CAAC,uBAAuB,CAAC,CAAC,CAAA,CAAC,iCAAiC;AAC/F,CAAC;AAED,MAAM,UAAU,mBAAmB,CAAC,OAAwC;IAC1E,OAAO,gBAAgB,CAAC,OAAO,EAAE,CAAC,kCAAkC,EAAE,oCAAoC,CAAC,CAAC,CAAA;AAC9G,CAAC;AAED,MAAM,UAAU,sBAAsB,CAAC,OAAwC;IAC7E,OAAO,gBAAgB,CAAC,OAAO,EAAE,CAAC,sCAAsC,EAAE,wCAAwC,CAAC,CAAC,CAAA;AACtH,CAAC"}
|
package/dist/agentCreator.d.ts
DELETED
|
@@ -1,54 +0,0 @@
|
|
|
1
|
-
import { TAgent, IPluginMethodMap, IAgentOptions } from '@veramo/core';
|
|
2
|
-
/**
|
|
3
|
-
* Creates a Veramo agent from a config object containing an `/agent` pointer.
|
|
4
|
-
* @param config - The configuration object
|
|
5
|
-
*
|
|
6
|
-
* @see {@link https://veramo.io/docs/veramo_agent/configuration_internals | Configuration Internals} for details on
|
|
7
|
-
* the configuration options.
|
|
8
|
-
*
|
|
9
|
-
* @beta - This API may change without a major version bump
|
|
10
|
-
*/
|
|
11
|
-
export declare function createAgentFromConfig<T extends IPluginMethodMap>(config: object): Promise<TAgent<T>>;
|
|
12
|
-
/**
|
|
13
|
-
* Helper function to create a new instance of the {@link Agent} class with correct type
|
|
14
|
-
*
|
|
15
|
-
* @remarks
|
|
16
|
-
* Use {@link TAgent} to configure agent type (list of available methods) for autocomplete in IDE
|
|
17
|
-
*
|
|
18
|
-
* @example
|
|
19
|
-
* ```typescript
|
|
20
|
-
* import { createAgent, IResolver, IMessageHandler } from '@veramo/core'
|
|
21
|
-
* import { AgentRestClient } from '@veramo/remote-client'
|
|
22
|
-
* import { CredentialIssuer, ICredentialIssuer } from '@veramo/credential-w3c'
|
|
23
|
-
* const agent = createAgent<IResolver & IMessageHandler & ICredentialIssuer>({
|
|
24
|
-
* plugins: [
|
|
25
|
-
* new CredentialIssuer(),
|
|
26
|
-
* new AgentRestClient({
|
|
27
|
-
* url: 'http://localhost:3002/agent',
|
|
28
|
-
* enabledMethods: [
|
|
29
|
-
* 'resolveDid',
|
|
30
|
-
* 'handleMessage',
|
|
31
|
-
* ],
|
|
32
|
-
* }),
|
|
33
|
-
* ],
|
|
34
|
-
* })
|
|
35
|
-
* ```
|
|
36
|
-
* @param options - Agent configuration options
|
|
37
|
-
* @returns configured agent
|
|
38
|
-
* @public
|
|
39
|
-
*/
|
|
40
|
-
export declare function createAgent<T extends IPluginMethodMap, C = Record<string, any>>(options: IAgentOptions & {
|
|
41
|
-
context?: C;
|
|
42
|
-
}): Promise<TAgent<T> & {
|
|
43
|
-
context?: C;
|
|
44
|
-
}>;
|
|
45
|
-
/**
|
|
46
|
-
* Parses a yaml config file and returns a config object
|
|
47
|
-
* @param filePath
|
|
48
|
-
*/
|
|
49
|
-
export declare const getConfig: (filePath: string | Buffer | URL) => Promise<{
|
|
50
|
-
version?: number;
|
|
51
|
-
[x: string]: any;
|
|
52
|
-
}>;
|
|
53
|
-
export declare function getAgent<T extends IPluginMethodMap>(fileName: string): Promise<TAgent<T>>;
|
|
54
|
-
//# sourceMappingURL=agentCreator.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"agentCreator.d.ts","sourceRoot":"","sources":["../src/agentCreator.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,MAAM,EAAE,gBAAgB,EAAE,aAAa,EAAE,MAAM,cAAc,CAAA;AAItE;;;;;;;;GAQG;AACH,wBAAsB,qBAAqB,CAAC,CAAC,SAAS,gBAAgB,EAAE,MAAM,EAAE,MAAM,GAAG,OAAO,CAAC,MAAM,CAAC,CAAC,CAAC,CAAC,CAI1G;AAED;;;;;;;;;;;;;;;;;;;;;;;;;;;GA2BG;AACH,wBAAsB,WAAW,CAAC,CAAC,SAAS,gBAAgB,EAAE,CAAC,GAAG,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,EACnF,OAAO,EAAE,aAAa,GAAG;IAAE,OAAO,CAAC,EAAE,CAAC,CAAA;CAAE,GACvC,OAAO,CAAC,MAAM,CAAC,CAAC,CAAC,GAAG;IAAE,OAAO,CAAC,EAAE,CAAC,CAAA;CAAE,CAAC,CAGtC;AAED;;;GAGG;AACH,eAAO,MAAM,SAAS,aAAoB,MAAM,GAAG,MAAM,GAAG,GAAG,KAAG,OAAO,CAAC;IAAE,OAAO,CAAC,EAAE,MAAM,CAAC;IAAC,CAAC,CAAC,EAAE,MAAM,GAAG,GAAG,CAAA;CAAE,CA2B/G,CAAA;AAED,wBAAsB,QAAQ,CAAC,CAAC,SAAS,gBAAgB,EAAE,QAAQ,EAAE,MAAM,GAAG,OAAO,CAAC,MAAM,CAAC,CAAC,CAAC,CAAC,CAO/F"}
|
package/dist/agentCreator.js
DELETED
|
@@ -1,88 +0,0 @@
|
|
|
1
|
-
import { createObjects } from './objectCreator';
|
|
2
|
-
import yaml from 'yaml';
|
|
3
|
-
/**
|
|
4
|
-
* Creates a Veramo agent from a config object containing an `/agent` pointer.
|
|
5
|
-
* @param config - The configuration object
|
|
6
|
-
*
|
|
7
|
-
* @see {@link https://veramo.io/docs/veramo_agent/configuration_internals | Configuration Internals} for details on
|
|
8
|
-
* the configuration options.
|
|
9
|
-
*
|
|
10
|
-
* @beta - This API may change without a major version bump
|
|
11
|
-
*/
|
|
12
|
-
export async function createAgentFromConfig(config) {
|
|
13
|
-
// @ts-ignore
|
|
14
|
-
const { agent } = await createObjects(config, { agent: '/agent' });
|
|
15
|
-
return agent;
|
|
16
|
-
}
|
|
17
|
-
/**
|
|
18
|
-
* Helper function to create a new instance of the {@link Agent} class with correct type
|
|
19
|
-
*
|
|
20
|
-
* @remarks
|
|
21
|
-
* Use {@link TAgent} to configure agent type (list of available methods) for autocomplete in IDE
|
|
22
|
-
*
|
|
23
|
-
* @example
|
|
24
|
-
* ```typescript
|
|
25
|
-
* import { createAgent, IResolver, IMessageHandler } from '@veramo/core'
|
|
26
|
-
* import { AgentRestClient } from '@veramo/remote-client'
|
|
27
|
-
* import { CredentialIssuer, ICredentialIssuer } from '@veramo/credential-w3c'
|
|
28
|
-
* const agent = createAgent<IResolver & IMessageHandler & ICredentialIssuer>({
|
|
29
|
-
* plugins: [
|
|
30
|
-
* new CredentialIssuer(),
|
|
31
|
-
* new AgentRestClient({
|
|
32
|
-
* url: 'http://localhost:3002/agent',
|
|
33
|
-
* enabledMethods: [
|
|
34
|
-
* 'resolveDid',
|
|
35
|
-
* 'handleMessage',
|
|
36
|
-
* ],
|
|
37
|
-
* }),
|
|
38
|
-
* ],
|
|
39
|
-
* })
|
|
40
|
-
* ```
|
|
41
|
-
* @param options - Agent configuration options
|
|
42
|
-
* @returns configured agent
|
|
43
|
-
* @public
|
|
44
|
-
*/
|
|
45
|
-
export async function createAgent(options) {
|
|
46
|
-
//@ts-ignore
|
|
47
|
-
return new Agent(options);
|
|
48
|
-
}
|
|
49
|
-
/**
|
|
50
|
-
* Parses a yaml config file and returns a config object
|
|
51
|
-
* @param filePath
|
|
52
|
-
*/
|
|
53
|
-
export const getConfig = async (filePath) => {
|
|
54
|
-
let fileContent;
|
|
55
|
-
// read file async
|
|
56
|
-
try {
|
|
57
|
-
const fs = await import(/* webpackIgnore: true */ 'fs');
|
|
58
|
-
fileContent = await fs.promises.readFile(filePath, 'utf8');
|
|
59
|
-
}
|
|
60
|
-
catch (e) {
|
|
61
|
-
console.log('Config file not found: ' + filePath);
|
|
62
|
-
console.log('Use "veramo config create" to create one');
|
|
63
|
-
process.exit(1);
|
|
64
|
-
}
|
|
65
|
-
let config;
|
|
66
|
-
try {
|
|
67
|
-
config = yaml.parse(fileContent, { prettyErrors: true });
|
|
68
|
-
}
|
|
69
|
-
catch (e) {
|
|
70
|
-
console.error(`Unable to parse config file: ${e.message} ${e.linePos}`);
|
|
71
|
-
process.exit(1);
|
|
72
|
-
}
|
|
73
|
-
if (config?.version != 3) {
|
|
74
|
-
console.error('Unsupported configuration file version:', config.version);
|
|
75
|
-
process.exit(1);
|
|
76
|
-
}
|
|
77
|
-
return config;
|
|
78
|
-
};
|
|
79
|
-
export async function getAgent(fileName) {
|
|
80
|
-
try {
|
|
81
|
-
return await createAgentFromConfig(await getConfig(fileName));
|
|
82
|
-
}
|
|
83
|
-
catch (e) {
|
|
84
|
-
console.log('Unable to create agent from ' + fileName + '.', e.message);
|
|
85
|
-
process.exit(1);
|
|
86
|
-
}
|
|
87
|
-
}
|
|
88
|
-
//# sourceMappingURL=agentCreator.js.map
|
package/dist/agentCreator.js.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"agentCreator.js","sourceRoot":"","sources":["../src/agentCreator.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,aAAa,EAAE,MAAM,iBAAiB,CAAA;AAC/C,OAAO,IAAI,MAAM,MAAM,CAAA;AAEvB;;;;;;;;GAQG;AACH,MAAM,CAAC,KAAK,UAAU,qBAAqB,CAA6B,MAAc;IACpF,aAAa;IACb,MAAM,EAAE,KAAK,EAAE,GAAG,MAAM,aAAa,CAAC,MAAM,EAAE,EAAE,KAAK,EAAE,QAAQ,EAAE,CAAC,CAAA;IAClE,OAAO,KAAK,CAAA;AACd,CAAC;AAED;;;;;;;;;;;;;;;;;;;;;;;;;;;GA2BG;AACH,MAAM,CAAC,KAAK,UAAU,WAAW,CAC/B,OAAwC;IAExC,YAAY;IACZ,OAAO,IAAI,KAAK,CAAC,OAAO,CAAc,CAAA;AACxC,CAAC;AAED;;;GAGG;AACH,MAAM,CAAC,MAAM,SAAS,GAAG,KAAK,EAAE,QAA+B,EAAmD,EAAE;IAClH,IAAI,WAAmB,CAAA;IAEvB,kBAAkB;IAClB,IAAI,CAAC;QACH,MAAM,EAAE,GAAG,MAAM,MAAM,CAAC,yBAAyB,CAAC,IAAI,CAAC,CAAA;QACvD,WAAW,GAAG,MAAM,EAAE,CAAC,QAAQ,CAAC,QAAQ,CAAC,QAAQ,EAAE,MAAM,CAAC,CAAA;IAC5D,CAAC;IAAC,OAAO,CAAC,EAAE,CAAC;QACX,OAAO,CAAC,GAAG,CAAC,yBAAyB,GAAG,QAAQ,CAAC,CAAA;QACjD,OAAO,CAAC,GAAG,CAAC,0CAA0C,CAAC,CAAA;QACvD,OAAO,CAAC,IAAI,CAAC,CAAC,CAAC,CAAA;IACjB,CAAC;IAED,IAAI,MAAM,CAAA;IAEV,IAAI,CAAC;QACH,MAAM,GAAG,IAAI,CAAC,KAAK,CAAC,WAAW,EAAE,EAAE,YAAY,EAAE,IAAI,EAAE,CAAC,CAAA;IAC1D,CAAC;IAAC,OAAO,CAAM,EAAE,CAAC;QAChB,OAAO,CAAC,KAAK,CAAC,gCAAgC,CAAC,CAAC,OAAO,IAAI,CAAC,CAAC,OAAO,EAAE,CAAC,CAAA;QACvE,OAAO,CAAC,IAAI,CAAC,CAAC,CAAC,CAAA;IACjB,CAAC;IAED,IAAI,MAAM,EAAE,OAAO,IAAI,CAAC,EAAE,CAAC;QACzB,OAAO,CAAC,KAAK,CAAC,yCAAyC,EAAE,MAAM,CAAC,OAAO,CAAC,CAAA;QACxE,OAAO,CAAC,IAAI,CAAC,CAAC,CAAC,CAAA;IACjB,CAAC;IACD,OAAO,MAAM,CAAA;AACf,CAAC,CAAA;AAED,MAAM,CAAC,KAAK,UAAU,QAAQ,CAA6B,QAAgB;IACzE,IAAI,CAAC;QACH,OAAO,MAAM,qBAAqB,CAAI,MAAM,SAAS,CAAC,QAAQ,CAAC,CAAC,CAAA;IAClE,CAAC;IAAC,OAAO,CAAM,EAAE,CAAC;QAChB,OAAO,CAAC,GAAG,CAAC,8BAA8B,GAAG,QAAQ,GAAG,GAAG,EAAE,CAAC,CAAC,OAAO,CAAC,CAAA;QACvE,OAAO,CAAC,IAAI,CAAC,CAAC,CAAC,CAAA;IACjB,CAAC;AACH,CAAC"}
|
package/dist/dataSources.d.ts
DELETED
|
@@ -1,45 +0,0 @@
|
|
|
1
|
-
import { DataSource } from 'typeorm';
|
|
2
|
-
import { BaseDataSourceOptions } from 'typeorm/data-source/BaseDataSourceOptions';
|
|
3
|
-
import { DataSourceOptions } from 'typeorm/data-source/DataSourceOptions';
|
|
4
|
-
export declare class DataSources {
|
|
5
|
-
get defaultDbType(): SupportedDatabaseType;
|
|
6
|
-
set defaultDbType(value: SupportedDatabaseType);
|
|
7
|
-
private dataSources;
|
|
8
|
-
private configs;
|
|
9
|
-
private _defaultDbType;
|
|
10
|
-
private static singleton;
|
|
11
|
-
static singleInstance(): DataSources;
|
|
12
|
-
static newInstance(configs?: Map<string, DataSourceOptions>): DataSources;
|
|
13
|
-
private constructor();
|
|
14
|
-
addConfig(dbName: string, config: DataSourceOptions): this;
|
|
15
|
-
deleteConfig(dbName: string): this;
|
|
16
|
-
has(dbName: string): boolean;
|
|
17
|
-
delete(dbName: string): this;
|
|
18
|
-
getConfig(dbName: string): BaseDataSourceOptions;
|
|
19
|
-
getDbNames(): string[];
|
|
20
|
-
getDbConnection(dbName: string): Promise<DataSource>;
|
|
21
|
-
}
|
|
22
|
-
export type SupportedDatabaseType = 'postgres' | 'sqlite' | 'react-native';
|
|
23
|
-
export type DateTimeType = 'timestamp' | 'datetime';
|
|
24
|
-
export type DateType = 'date';
|
|
25
|
-
/**
|
|
26
|
-
* Gets the database connection.
|
|
27
|
-
*
|
|
28
|
-
* Also makes sure that migrations are run (versioning for DB schema's), so we can properly update over time
|
|
29
|
-
*
|
|
30
|
-
* @param connectionName The database name
|
|
31
|
-
* @param opts
|
|
32
|
-
*/
|
|
33
|
-
export declare const getDbConnection: (connectionName: string, opts?: {
|
|
34
|
-
config: BaseDataSourceOptions | any;
|
|
35
|
-
}) => Promise<DataSource>;
|
|
36
|
-
export declare const dropDatabase: (dbName: string, opts?: {
|
|
37
|
-
removeDataSource?: boolean;
|
|
38
|
-
}) => Promise<void>;
|
|
39
|
-
/**
|
|
40
|
-
* Runs a migration down (drops DB schema)
|
|
41
|
-
* @param dataSource
|
|
42
|
-
*/
|
|
43
|
-
export declare const revertMigration: (dataSource: DataSource) => Promise<void>;
|
|
44
|
-
export declare const resetDatabase: (dbName: string) => Promise<void>;
|
|
45
|
-
//# sourceMappingURL=dataSources.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"dataSources.d.ts","sourceRoot":"","sources":["../src/dataSources.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,UAAU,EAAE,MAAM,SAAS,CAAA;AACpC,OAAO,EAAE,qBAAqB,EAAE,MAAM,2CAA2C,CAAA;AAEjF,OAAO,EAAE,iBAAiB,EAAE,MAAM,uCAAuC,CAAA;AAIzE,qBAAa,WAAW;IACtB,IAAI,aAAa,IAAI,qBAAqB,CAEzC;IAED,IAAI,aAAa,CAAC,KAAK,EAAE,qBAAqB,EAE7C;IACD,OAAO,CAAC,WAAW,CAAgC;IACnD,OAAO,CAAC,OAAO,CAAuC;IACtD,OAAO,CAAC,cAAc,CAAkC;IAExD,OAAO,CAAC,MAAM,CAAC,SAAS,CAAa;WAEvB,cAAc;WAOd,WAAW,CAAC,OAAO,CAAC,EAAE,GAAG,CAAC,MAAM,EAAE,iBAAiB,CAAC;IAIlE,OAAO;IAIP,SAAS,CAAC,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,iBAAiB,GAAG,IAAI;IAO1D,YAAY,CAAC,MAAM,EAAE,MAAM,GAAG,IAAI;IAIlC,GAAG,CAAC,MAAM,EAAE,MAAM;IAIlB,MAAM,CAAC,MAAM,EAAE,MAAM,GAAG,IAAI;IAM5B,SAAS,CAAC,MAAM,EAAE,MAAM,GAAG,qBAAqB;IAQzC,UAAU,IAAI,MAAM,EAAE;IAIvB,eAAe,CAAC,MAAM,EAAE,MAAM,GAAG,OAAO,CAAC,UAAU,CAAC;CA+B3D;AAED,MAAM,MAAM,qBAAqB,GAAG,UAAU,GAAG,QAAQ,GAAG,cAAc,CAAA;AAC1E,MAAM,MAAM,YAAY,GAAG,WAAW,GAAG,UAAU,CAAA;AAEnD,MAAM,MAAM,QAAQ,GAAG,MAAM,CAAA;AAE7B;;;;;;;GAOG;AACH,eAAO,MAAM,eAAe,mBACV,MAAM,SACf;IACL,MAAM,EAAE,qBAAqB,GAAG,GAAG,CAAA;CACpC,KACA,OAAO,CAAC,UAAU,CAKpB,CAAA;AAED,eAAO,MAAM,YAAY,WAAkB,MAAM,SAAS;IAAE,gBAAgB,CAAC,EAAE,OAAO,CAAA;CAAE,KAAG,OAAO,CAAC,IAAI,CAatG,CAAA;AAED;;;GAGG;AACH,eAAO,MAAM,eAAe,eAAsB,UAAU,KAAG,OAAO,CAAC,IAAI,CAM1E,CAAA;AACD,eAAO,MAAM,aAAa,WAAkB,MAAM,KAAG,OAAO,CAAC,IAAI,CAIhE,CAAA"}
|
package/dist/dataSources.js
DELETED
|
@@ -1,131 +0,0 @@
|
|
|
1
|
-
import Debug from 'debug';
|
|
2
|
-
import { DataSource } from 'typeorm';
|
|
3
|
-
const debug = Debug(`sphereon:ssi-sdk:database`);
|
|
4
|
-
export class DataSources {
|
|
5
|
-
get defaultDbType() {
|
|
6
|
-
return this._defaultDbType;
|
|
7
|
-
}
|
|
8
|
-
set defaultDbType(value) {
|
|
9
|
-
this._defaultDbType = value;
|
|
10
|
-
}
|
|
11
|
-
dataSources = new Map();
|
|
12
|
-
configs = new Map();
|
|
13
|
-
_defaultDbType = 'sqlite';
|
|
14
|
-
static singleton;
|
|
15
|
-
static singleInstance() {
|
|
16
|
-
if (!DataSources.singleton) {
|
|
17
|
-
DataSources.singleton = new DataSources();
|
|
18
|
-
}
|
|
19
|
-
return DataSources.singleton;
|
|
20
|
-
}
|
|
21
|
-
static newInstance(configs) {
|
|
22
|
-
return new DataSources(configs);
|
|
23
|
-
}
|
|
24
|
-
constructor(configs) {
|
|
25
|
-
;
|
|
26
|
-
(configs ?? new Map()).forEach((config, name) => this.addConfig(name, config));
|
|
27
|
-
}
|
|
28
|
-
addConfig(dbName, config) {
|
|
29
|
-
this.configs.set(dbName, config);
|
|
30
|
-
// yes we are aware last one wins
|
|
31
|
-
this._defaultDbType = config.type;
|
|
32
|
-
return this;
|
|
33
|
-
}
|
|
34
|
-
deleteConfig(dbName) {
|
|
35
|
-
this.configs.delete(dbName);
|
|
36
|
-
return this;
|
|
37
|
-
}
|
|
38
|
-
has(dbName) {
|
|
39
|
-
return this.configs.has(dbName) && this.dataSources.has(dbName);
|
|
40
|
-
}
|
|
41
|
-
delete(dbName) {
|
|
42
|
-
this.deleteConfig(dbName);
|
|
43
|
-
this.dataSources.delete(dbName);
|
|
44
|
-
return this;
|
|
45
|
-
}
|
|
46
|
-
getConfig(dbName) {
|
|
47
|
-
const config = this.configs.get(dbName);
|
|
48
|
-
if (!config) {
|
|
49
|
-
throw Error(`No DB config found for ${dbName}`);
|
|
50
|
-
}
|
|
51
|
-
return config;
|
|
52
|
-
}
|
|
53
|
-
getDbNames() {
|
|
54
|
-
return [...this.configs.keys()];
|
|
55
|
-
}
|
|
56
|
-
async getDbConnection(dbName) {
|
|
57
|
-
const config = this.getConfig(dbName);
|
|
58
|
-
if (!this._defaultDbType) {
|
|
59
|
-
this._defaultDbType = config.type;
|
|
60
|
-
}
|
|
61
|
-
/*if (config.synchronize) {
|
|
62
|
-
return Promise.reject(
|
|
63
|
-
`WARNING: Automatic migrations need to be disabled in this app! Adjust the database configuration and set synchronize to false`
|
|
64
|
-
)
|
|
65
|
-
}*/
|
|
66
|
-
let dataSource = this.dataSources.get(dbName);
|
|
67
|
-
if (dataSource) {
|
|
68
|
-
return dataSource;
|
|
69
|
-
}
|
|
70
|
-
dataSource = await new DataSource({ ...config, name: dbName }).initialize();
|
|
71
|
-
this.dataSources.set(dbName, dataSource);
|
|
72
|
-
if (config.synchronize) {
|
|
73
|
-
debug(`WARNING: Automatic migrations need to be disabled in this app! Adjust the database configuration and set synchronize to false`);
|
|
74
|
-
}
|
|
75
|
-
else if (config.migrationsRun) {
|
|
76
|
-
debug(`Migrations are currently managed from config. Please set migrationsRun and synchronize to false to get consistent behaviour. We run migrations from code explicitly`);
|
|
77
|
-
}
|
|
78
|
-
else {
|
|
79
|
-
debug(`Running ${dataSource.migrations.length} migration(s) from code if needed...`);
|
|
80
|
-
await dataSource.runMigrations();
|
|
81
|
-
debug(`${dataSource.migrations.length} migration(s) from code were inspected and applied`);
|
|
82
|
-
}
|
|
83
|
-
return dataSource;
|
|
84
|
-
}
|
|
85
|
-
}
|
|
86
|
-
/**
|
|
87
|
-
* Gets the database connection.
|
|
88
|
-
*
|
|
89
|
-
* Also makes sure that migrations are run (versioning for DB schema's), so we can properly update over time
|
|
90
|
-
*
|
|
91
|
-
* @param connectionName The database name
|
|
92
|
-
* @param opts
|
|
93
|
-
*/
|
|
94
|
-
export const getDbConnection = async (connectionName, opts) => {
|
|
95
|
-
if (!DataSources.singleInstance().has(connectionName) && opts?.config) {
|
|
96
|
-
DataSources.singleInstance().addConfig(connectionName, opts?.config);
|
|
97
|
-
}
|
|
98
|
-
return DataSources.singleInstance().getDbConnection(connectionName);
|
|
99
|
-
};
|
|
100
|
-
export const dropDatabase = async (dbName, opts) => {
|
|
101
|
-
const { removeDataSource = false } = { ...opts };
|
|
102
|
-
if (!DataSources.singleInstance().has(dbName)) {
|
|
103
|
-
return Promise.reject(Error(`No database present with name: ${dbName}`));
|
|
104
|
-
}
|
|
105
|
-
const connection = await getDbConnection(dbName);
|
|
106
|
-
await connection.dropDatabase();
|
|
107
|
-
if (removeDataSource) {
|
|
108
|
-
DataSources.singleInstance().delete(dbName);
|
|
109
|
-
}
|
|
110
|
-
else if (!connection.isInitialized) {
|
|
111
|
-
await connection.initialize();
|
|
112
|
-
}
|
|
113
|
-
};
|
|
114
|
-
/**
|
|
115
|
-
* Runs a migration down (drops DB schema)
|
|
116
|
-
* @param dataSource
|
|
117
|
-
*/
|
|
118
|
-
export const revertMigration = async (dataSource) => {
|
|
119
|
-
if (dataSource.isInitialized) {
|
|
120
|
-
await dataSource.undoLastMigration();
|
|
121
|
-
}
|
|
122
|
-
else {
|
|
123
|
-
console.error('DataSource is not initialized');
|
|
124
|
-
}
|
|
125
|
-
};
|
|
126
|
-
export const resetDatabase = async (dbName) => {
|
|
127
|
-
await dropDatabase(dbName);
|
|
128
|
-
const connection = await getDbConnection(dbName);
|
|
129
|
-
await connection.runMigrations();
|
|
130
|
-
};
|
|
131
|
-
//# sourceMappingURL=dataSources.js.map
|
package/dist/dataSources.js.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"dataSources.js","sourceRoot":"","sources":["../src/dataSources.ts"],"names":[],"mappings":"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"}
|
package/dist/generic.d.ts
DELETED
package/dist/generic.d.ts.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"generic.d.ts","sourceRoot":"","sources":["../src/generic.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AACH,MAAM,MAAM,SAAS,CAAC,CAAC,IAAI,CAAC,GAAG,OAAO,CAAC,CAAC,CAAC,CAAA"}
|
package/dist/generic.js
DELETED
package/dist/generic.js.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"generic.js","sourceRoot":"","sources":["../src/generic.ts"],"names":[],"mappings":""}
|
package/dist/index.d.ts.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA;;GAEG;AACH,cAAc,qBAAqB,CAAA;AACnC,cAAc,eAAe,CAAA;AAC7B,cAAc,gBAAgB,CAAA;AAC9B,cAAc,iBAAiB,CAAA;AAC/B,cAAc,WAAW,CAAA;AACzB,cAAc,gBAAgB,CAAA"}
|
package/dist/objectCreator.d.ts
DELETED
|
@@ -1,48 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Creates objects from a configuration object and a set of pointers.
|
|
3
|
-
*
|
|
4
|
-
* Example:
|
|
5
|
-
* ```ts
|
|
6
|
-
* const { url } = createObjects({ "rpcUrl": "http://localhost:8545", }, { url: '/rpcUrl' })
|
|
7
|
-
* ```
|
|
8
|
-
*
|
|
9
|
-
* The config can contain references (`$ref`) to other objects within using JSON pointers.
|
|
10
|
-
* Example:
|
|
11
|
-
* ```json
|
|
12
|
-
* {
|
|
13
|
-
* "rpcUrl": "http://localhost:8545",
|
|
14
|
-
* "endpoint": {
|
|
15
|
-
* "url": {
|
|
16
|
-
* "$ref": "/rpcUrl"
|
|
17
|
-
* }
|
|
18
|
-
* }
|
|
19
|
-
* }
|
|
20
|
-
* ```
|
|
21
|
-
*
|
|
22
|
-
* The config object can also contain references to NPM modules using the `$require` property.
|
|
23
|
-
* Example:
|
|
24
|
-
* ```json
|
|
25
|
-
* {
|
|
26
|
-
* "agent": {
|
|
27
|
-
* "$require": "@veramo/core#Agent",
|
|
28
|
-
* "$args": {
|
|
29
|
-
* "plugins": [
|
|
30
|
-
* { "$require": "@veramo/did-comm#DIDComm" },
|
|
31
|
-
* ]
|
|
32
|
-
* }
|
|
33
|
-
* }
|
|
34
|
-
* }
|
|
35
|
-
* ```
|
|
36
|
-
*
|
|
37
|
-
* Environment variables can also be specified using the `$env` property.
|
|
38
|
-
*
|
|
39
|
-
* @see Please see {@link https://veramo.io/docs/veramo_agent/configuration_internals | Configuration Internals} for
|
|
40
|
-
* more information.
|
|
41
|
-
*
|
|
42
|
-
* @param config - The configuration object
|
|
43
|
-
* @param pointers - A map of JSON pointers to objects within that config that you wish to create
|
|
44
|
-
*
|
|
45
|
-
* @beta - This API may change without a major version bump
|
|
46
|
-
*/
|
|
47
|
-
export declare function createObjects(config: object, pointers: Record<string, string>): Promise<Record<string, any>>;
|
|
48
|
-
//# sourceMappingURL=objectCreator.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"objectCreator.d.ts","sourceRoot":"","sources":["../src/objectCreator.ts"],"names":[],"mappings":"AAGA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA6CG;AACH,wBAAsB,aAAa,CAAC,MAAM,EAAE,MAAM,EAAE,QAAQ,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,GAAG,OAAO,CAAC,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC,CAsGlH"}
|