@lifeready/core 1.0.18 → 1.0.19
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/bundles/lifeready-core.umd.js +9 -5
- package/bundles/lifeready-core.umd.js.map +1 -1
- package/bundles/lifeready-core.umd.min.js +1 -1
- package/bundles/lifeready-core.umd.min.js.map +1 -1
- package/esm2015/lib/api/contact-card.service.js +1 -1
- package/esm2015/lib/api/contact-card2.service.js +1 -1
- package/esm2015/lib/api/key-exchange.types.js +1 -1
- package/esm2015/lib/api/key-exchange2.gql.js +1 -1
- package/esm2015/lib/api/key-exchange2.service.js +3 -2
- package/esm2015/lib/api/shared-contact-card.service.js +1 -1
- package/esm2015/lib/api/types/graphql.types.js +1 -1
- package/esm2015/lib/api/types/lr-graphql.types.js +10 -1
- package/esm2015/lib/auth/auth.types.js +1 -1
- package/esm2015/lib/cryptography/key-factory.service.js +1 -1
- package/esm2015/lib/cryptography/key-graph.service.js +1 -1
- package/esm2015/lib/scenario/scenario.service.js +1 -1
- package/esm2015/lib/scenario/scenario.types.js +1 -1
- package/esm2015/lib/trusted-parties/tp-password-reset.gql.js +1 -1
- package/esm2015/lib/users/profile.types.js +1 -1
- package/esm2015/lib/users/user.service.js +1 -1
- package/esm2015/lib/users/user.types.js +1 -5
- package/fesm2015/lifeready-core.js +12 -7
- package/fesm2015/lifeready-core.js.map +1 -1
- package/lib/api/contact-card.service.d.ts +8 -7
- package/lib/api/contact-card2.service.d.ts +4 -3
- package/lib/api/key-exchange.types.d.ts +5 -5
- package/lib/api/key-exchange2.gql.d.ts +3 -3
- package/lib/api/key-exchange2.service.d.ts +3 -3
- package/lib/api/shared-contact-card.service.d.ts +4 -3
- package/lib/api/types/graphql.types.d.ts +1 -0
- package/lib/api/types/lr-graphql.types.d.ts +84 -33
- package/lib/auth/auth.types.d.ts +2 -3
- package/lib/cryptography/key-graph.service.d.ts +2 -1
- package/lib/scenario/scenario.types.d.ts +3 -3
- package/lib/trusted-parties/tp-password-reset.gql.d.ts +6 -6
- package/lib/users/profile.types.d.ts +2 -2
- package/lib/users/user.service.d.ts +3 -2
- package/lib/users/user.types.d.ts +0 -7
- package/lifeready-core.metadata.json +1 -1
- package/package.json +1 -1
|
@@ -5191,6 +5191,13 @@
|
|
|
5191
5191
|
function mapEdges(connection) {
|
|
5192
5192
|
return connection.edges.map(function (edge) { return edge.node; });
|
|
5193
5193
|
}
|
|
5194
|
+
(function (UserDeleteState) {
|
|
5195
|
+
UserDeleteState["REQUESTED"] = "REQUESTED";
|
|
5196
|
+
})(exports.UserDeleteState || (exports.UserDeleteState = {}));
|
|
5197
|
+
(function (PlanState) {
|
|
5198
|
+
PlanState["ENABLED"] = "ENABLED";
|
|
5199
|
+
PlanState["DISABLED"] = "DISABLED";
|
|
5200
|
+
})(exports.PlanState || (exports.PlanState = {}));
|
|
5194
5201
|
(function (AccessRoleChoice) {
|
|
5195
5202
|
AccessRoleChoice["READER"] = "READER";
|
|
5196
5203
|
AccessRoleChoice["WRITER"] = "WRITER";
|
|
@@ -10919,10 +10926,6 @@
|
|
|
10919
10926
|
{ type: LifeReadyAuthService }
|
|
10920
10927
|
]; };
|
|
10921
10928
|
|
|
10922
|
-
(function (UserDeleteState) {
|
|
10923
|
-
UserDeleteState["REQUESTED"] = "REQUESTED";
|
|
10924
|
-
})(exports.UserDeleteState || (exports.UserDeleteState = {}));
|
|
10925
|
-
|
|
10926
10929
|
var LifeReadyModule = /** @class */ (function () {
|
|
10927
10930
|
function LifeReadyModule() {
|
|
10928
10931
|
}
|
|
@@ -11790,7 +11793,8 @@
|
|
|
11790
11793
|
_o = (_m = JSON).stringify;
|
|
11791
11794
|
return [4 /*yield*/, this.encryptionService.sign(initiatorSigPrk.jwk, sharedCipherData)];
|
|
11792
11795
|
case 27:
|
|
11793
|
-
_l.sharedCipherDataSig =
|
|
11796
|
+
_l.sharedCipherDataSig =
|
|
11797
|
+
_o.apply(_m, [_p.sent()]);
|
|
11794
11798
|
_p.label = 28;
|
|
11795
11799
|
case 28:
|
|
11796
11800
|
// TODO ideally we update the shared data in the contact card sent to the responder as well since that
|