@sphereon/ssi-sdk.contact-manager-rest-api 0.23.5-unstable.88 → 0.24.0
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/README.md +34 -34
- package/package.json +9 -9
package/README.md
CHANGED
|
@@ -1,34 +1,34 @@
|
|
|
1
|
-
<!--suppress HtmlDeprecatedAttribute -->
|
|
2
|
-
<h1 align="center">
|
|
3
|
-
<br>
|
|
4
|
-
<a href="https://www.sphereon.com"><img src="https://sphereon.com/content/themes/sphereon/assets/img/logo.svg" alt="Sphereon" width="400"></a>
|
|
5
|
-
<br>Contact Manager Rest API (Typescript)
|
|
6
|
-
<br>
|
|
7
|
-
</h1>
|
|
8
|
-
|
|
9
|
-
---
|
|
10
|
-
|
|
11
|
-
**Warning: This package still is in very early development. Breaking changes without notice will happen at this point!**
|
|
12
|
-
|
|
13
|
-
---
|
|
14
|
-
|
|
15
|
-
A contact manager REST API plugin. This plugin provides rest APIs and calls into another plugin which manages contacts and identity configurations to third parties and persists them. These configurations can then be used to establish a connection.
|
|
16
|
-
|
|
17
|
-
## Supported identity connection types
|
|
18
|
-
|
|
19
|
-
For now the following connection types are supported:
|
|
20
|
-
|
|
21
|
-
- OpenID Connect
|
|
22
|
-
- Self Issued OpenID v2
|
|
23
|
-
|
|
24
|
-
## Installation
|
|
25
|
-
|
|
26
|
-
```shell
|
|
27
|
-
yarn add @sphereon/ssi-sdk.contact-manager-rest-api
|
|
28
|
-
```
|
|
29
|
-
|
|
30
|
-
## Build
|
|
31
|
-
|
|
32
|
-
```shell
|
|
33
|
-
yarn build
|
|
34
|
-
```
|
|
1
|
+
<!--suppress HtmlDeprecatedAttribute -->
|
|
2
|
+
<h1 align="center">
|
|
3
|
+
<br>
|
|
4
|
+
<a href="https://www.sphereon.com"><img src="https://sphereon.com/content/themes/sphereon/assets/img/logo.svg" alt="Sphereon" width="400"></a>
|
|
5
|
+
<br>Contact Manager Rest API (Typescript)
|
|
6
|
+
<br>
|
|
7
|
+
</h1>
|
|
8
|
+
|
|
9
|
+
---
|
|
10
|
+
|
|
11
|
+
**Warning: This package still is in very early development. Breaking changes without notice will happen at this point!**
|
|
12
|
+
|
|
13
|
+
---
|
|
14
|
+
|
|
15
|
+
A contact manager REST API plugin. This plugin provides rest APIs and calls into another plugin which manages contacts and identity configurations to third parties and persists them. These configurations can then be used to establish a connection.
|
|
16
|
+
|
|
17
|
+
## Supported identity connection types
|
|
18
|
+
|
|
19
|
+
For now the following connection types are supported:
|
|
20
|
+
|
|
21
|
+
- OpenID Connect
|
|
22
|
+
- Self Issued OpenID v2
|
|
23
|
+
|
|
24
|
+
## Installation
|
|
25
|
+
|
|
26
|
+
```shell
|
|
27
|
+
yarn add @sphereon/ssi-sdk.contact-manager-rest-api
|
|
28
|
+
```
|
|
29
|
+
|
|
30
|
+
## Build
|
|
31
|
+
|
|
32
|
+
```shell
|
|
33
|
+
yarn build
|
|
34
|
+
```
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sphereon/ssi-sdk.contact-manager-rest-api",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.24.0",
|
|
4
4
|
"source": "src/index.ts",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -11,15 +11,15 @@
|
|
|
11
11
|
"start:dev": "ts-node __tests__/RestAPI.ts"
|
|
12
12
|
},
|
|
13
13
|
"dependencies": {
|
|
14
|
-
"@sphereon/ssi-express-support": "0.
|
|
14
|
+
"@sphereon/ssi-express-support": "0.24.0",
|
|
15
15
|
"@sphereon/ssi-sdk-ext.key-manager": "0.19.0",
|
|
16
16
|
"@sphereon/ssi-sdk-ext.key-utils": "0.19.0",
|
|
17
|
-
"@sphereon/ssi-sdk.agent-config": "0.
|
|
18
|
-
"@sphereon/ssi-sdk.contact-manager": "0.
|
|
19
|
-
"@sphereon/ssi-sdk.core": "0.
|
|
20
|
-
"@sphereon/ssi-sdk.data-store": "0.
|
|
21
|
-
"@sphereon/ssi-sdk.kv-store-temp": "0.
|
|
22
|
-
"@sphereon/ssi-types": "0.
|
|
17
|
+
"@sphereon/ssi-sdk.agent-config": "0.24.0",
|
|
18
|
+
"@sphereon/ssi-sdk.contact-manager": "0.24.0",
|
|
19
|
+
"@sphereon/ssi-sdk.core": "0.24.0",
|
|
20
|
+
"@sphereon/ssi-sdk.data-store": "0.24.0",
|
|
21
|
+
"@sphereon/ssi-sdk.kv-store-temp": "0.24.0",
|
|
22
|
+
"@sphereon/ssi-types": "0.24.0",
|
|
23
23
|
"@veramo/core": "4.2.0",
|
|
24
24
|
"body-parser": "^1.19.0",
|
|
25
25
|
"casbin": "^5.26.2",
|
|
@@ -80,5 +80,5 @@
|
|
|
80
80
|
"REST",
|
|
81
81
|
"API"
|
|
82
82
|
],
|
|
83
|
-
"gitHead": "
|
|
83
|
+
"gitHead": "fd8e1082588463c2bd5c8d81d711974971812ef7"
|
|
84
84
|
}
|