@live-change/identicon-service 0.3.40 → 0.4.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/definition.js +4 -3
- package/endpoint.js +8 -7
- package/index.js +5 -4
- package/package.json +5 -4
package/definition.js
CHANGED
|
@@ -1,10 +1,11 @@
|
|
|
1
|
-
|
|
1
|
+
import App from '@live-change/framework'
|
|
2
|
+
const app = App.app()
|
|
2
3
|
|
|
3
|
-
|
|
4
|
+
import relationsPlugin from '@live-change/relations-plugin'
|
|
4
5
|
|
|
5
6
|
const definition = app.createServiceDefinition({
|
|
6
7
|
name: "identicon",
|
|
7
8
|
use: [ ]
|
|
8
9
|
})
|
|
9
10
|
|
|
10
|
-
|
|
11
|
+
export default definition
|
package/endpoint.js
CHANGED
|
@@ -1,11 +1,12 @@
|
|
|
1
|
-
|
|
2
|
-
const
|
|
1
|
+
import App from '@live-change/framework'
|
|
2
|
+
const app = App.app()
|
|
3
|
+
import definition from './definition.js'
|
|
3
4
|
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
5
|
+
import crypto from "crypto"
|
|
6
|
+
import Identicon from "identicon.js"
|
|
7
|
+
import * as jdenticon from "jdenticon"
|
|
7
8
|
|
|
8
|
-
|
|
9
|
+
import express from "express"
|
|
9
10
|
|
|
10
11
|
definition.endpoint({
|
|
11
12
|
name: 'identicon',
|
|
@@ -45,4 +46,4 @@ definition.endpoint({
|
|
|
45
46
|
}
|
|
46
47
|
})
|
|
47
48
|
|
|
48
|
-
|
|
49
|
+
export {}
|
package/index.js
CHANGED
|
@@ -1,7 +1,8 @@
|
|
|
1
|
-
|
|
1
|
+
import App from '@live-change/framework'
|
|
2
|
+
const app = App.app()
|
|
2
3
|
|
|
3
|
-
|
|
4
|
+
import definition from './definition.js'
|
|
4
5
|
|
|
5
|
-
|
|
6
|
+
import './endpoint.js'
|
|
6
7
|
|
|
7
|
-
|
|
8
|
+
export default definition
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@live-change/identicon-service",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.4.0",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"scripts": {
|
|
@@ -21,10 +21,11 @@
|
|
|
21
21
|
"url": "https://www.viamage.com/"
|
|
22
22
|
},
|
|
23
23
|
"dependencies": {
|
|
24
|
-
"@live-change/framework": "0.
|
|
25
|
-
"@live-change/relations-plugin": "0.
|
|
24
|
+
"@live-change/framework": "0.8.0",
|
|
25
|
+
"@live-change/relations-plugin": "0.8.0",
|
|
26
26
|
"identicon.js": "2.3.3",
|
|
27
27
|
"jdenticon": "3.1.1"
|
|
28
28
|
},
|
|
29
|
-
"gitHead": "
|
|
29
|
+
"gitHead": "87010b19907140a326943f22cd538eafdc9c28f1",
|
|
30
|
+
"type": "module"
|
|
30
31
|
}
|