@twin.org/identity-connector-entity-storage 0.0.1-next.24 → 0.0.1-next.26
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/cjs/index.cjs
CHANGED
|
@@ -36,19 +36,19 @@ exports.IdentityDocument = class IdentityDocument {
|
|
|
36
36
|
__decorate([
|
|
37
37
|
entity.property({ type: "string", isPrimary: true }),
|
|
38
38
|
__metadata("design:type", String)
|
|
39
|
-
], exports.IdentityDocument.prototype, "id",
|
|
39
|
+
], exports.IdentityDocument.prototype, "id", void 0);
|
|
40
40
|
__decorate([
|
|
41
41
|
entity.property({ type: "object" }),
|
|
42
42
|
__metadata("design:type", Object)
|
|
43
|
-
], exports.IdentityDocument.prototype, "document",
|
|
43
|
+
], exports.IdentityDocument.prototype, "document", void 0);
|
|
44
44
|
__decorate([
|
|
45
45
|
entity.property({ type: "string" }),
|
|
46
46
|
__metadata("design:type", String)
|
|
47
|
-
], exports.IdentityDocument.prototype, "signature",
|
|
47
|
+
], exports.IdentityDocument.prototype, "signature", void 0);
|
|
48
48
|
__decorate([
|
|
49
49
|
entity.property({ type: "string" }),
|
|
50
50
|
__metadata("design:type", String)
|
|
51
|
-
], exports.IdentityDocument.prototype, "controller",
|
|
51
|
+
], exports.IdentityDocument.prototype, "controller", void 0);
|
|
52
52
|
exports.IdentityDocument = __decorate([
|
|
53
53
|
entity.entity()
|
|
54
54
|
], exports.IdentityDocument);
|
|
@@ -75,15 +75,15 @@ exports.IdentityProfile = class IdentityProfile {
|
|
|
75
75
|
__decorate([
|
|
76
76
|
entity.property({ type: "string", isPrimary: true }),
|
|
77
77
|
__metadata("design:type", String)
|
|
78
|
-
], exports.IdentityProfile.prototype, "identity",
|
|
78
|
+
], exports.IdentityProfile.prototype, "identity", void 0);
|
|
79
79
|
__decorate([
|
|
80
80
|
entity.property({ type: "object" }),
|
|
81
81
|
__metadata("design:type", Object)
|
|
82
|
-
], exports.IdentityProfile.prototype, "publicProfile",
|
|
82
|
+
], exports.IdentityProfile.prototype, "publicProfile", void 0);
|
|
83
83
|
__decorate([
|
|
84
84
|
entity.property({ type: "object" }),
|
|
85
85
|
__metadata("design:type", Object)
|
|
86
|
-
], exports.IdentityProfile.prototype, "privateProfile",
|
|
86
|
+
], exports.IdentityProfile.prototype, "privateProfile", void 0);
|
|
87
87
|
exports.IdentityProfile = __decorate([
|
|
88
88
|
entity.entity()
|
|
89
89
|
], exports.IdentityProfile);
|
package/dist/esm/index.mjs
CHANGED
|
@@ -34,19 +34,19 @@ let IdentityDocument = class IdentityDocument {
|
|
|
34
34
|
__decorate([
|
|
35
35
|
property({ type: "string", isPrimary: true }),
|
|
36
36
|
__metadata("design:type", String)
|
|
37
|
-
], IdentityDocument.prototype, "id",
|
|
37
|
+
], IdentityDocument.prototype, "id", void 0);
|
|
38
38
|
__decorate([
|
|
39
39
|
property({ type: "object" }),
|
|
40
40
|
__metadata("design:type", Object)
|
|
41
|
-
], IdentityDocument.prototype, "document",
|
|
41
|
+
], IdentityDocument.prototype, "document", void 0);
|
|
42
42
|
__decorate([
|
|
43
43
|
property({ type: "string" }),
|
|
44
44
|
__metadata("design:type", String)
|
|
45
|
-
], IdentityDocument.prototype, "signature",
|
|
45
|
+
], IdentityDocument.prototype, "signature", void 0);
|
|
46
46
|
__decorate([
|
|
47
47
|
property({ type: "string" }),
|
|
48
48
|
__metadata("design:type", String)
|
|
49
|
-
], IdentityDocument.prototype, "controller",
|
|
49
|
+
], IdentityDocument.prototype, "controller", void 0);
|
|
50
50
|
IdentityDocument = __decorate([
|
|
51
51
|
entity()
|
|
52
52
|
], IdentityDocument);
|
|
@@ -73,15 +73,15 @@ let IdentityProfile = class IdentityProfile {
|
|
|
73
73
|
__decorate([
|
|
74
74
|
property({ type: "string", isPrimary: true }),
|
|
75
75
|
__metadata("design:type", String)
|
|
76
|
-
], IdentityProfile.prototype, "identity",
|
|
76
|
+
], IdentityProfile.prototype, "identity", void 0);
|
|
77
77
|
__decorate([
|
|
78
78
|
property({ type: "object" }),
|
|
79
79
|
__metadata("design:type", Object)
|
|
80
|
-
], IdentityProfile.prototype, "publicProfile",
|
|
80
|
+
], IdentityProfile.prototype, "publicProfile", void 0);
|
|
81
81
|
__decorate([
|
|
82
82
|
property({ type: "object" }),
|
|
83
83
|
__metadata("design:type", Object)
|
|
84
|
-
], IdentityProfile.prototype, "privateProfile",
|
|
84
|
+
], IdentityProfile.prototype, "privateProfile", void 0);
|
|
85
85
|
IdentityProfile = __decorate([
|
|
86
86
|
entity()
|
|
87
87
|
], IdentityProfile);
|
package/docs/changelog.md
CHANGED
|
@@ -10,13 +10,13 @@ Initialize the schema for the identity entity storage connector.
|
|
|
10
10
|
|
|
11
11
|
Options for which entities to register.
|
|
12
12
|
|
|
13
|
-
#### includeDocument
|
|
13
|
+
#### includeDocument?
|
|
14
14
|
|
|
15
15
|
`boolean`
|
|
16
16
|
|
|
17
17
|
Whether to include the document entity, defaults to true.
|
|
18
18
|
|
|
19
|
-
#### includeProfile
|
|
19
|
+
#### includeProfile?
|
|
20
20
|
|
|
21
21
|
`boolean`
|
|
22
22
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@twin.org/identity-connector-entity-storage",
|
|
3
|
-
"version": "0.0.1-next.
|
|
3
|
+
"version": "0.0.1-next.26",
|
|
4
4
|
"description": "Identity connector implementation using entity storage",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -19,7 +19,7 @@
|
|
|
19
19
|
"@twin.org/data-core": "next",
|
|
20
20
|
"@twin.org/data-json-ld": "next",
|
|
21
21
|
"@twin.org/entity": "next",
|
|
22
|
-
"@twin.org/identity-models": "0.0.1-next.
|
|
22
|
+
"@twin.org/identity-models": "0.0.1-next.26",
|
|
23
23
|
"@twin.org/nameof": "next",
|
|
24
24
|
"@twin.org/standards-w3c-did": "next",
|
|
25
25
|
"@twin.org/vault-models": "next",
|