@lifeready/core 5.0.12 → 5.0.13
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 +116 -19
- 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/query-processor/query-processor.service.js +6 -1
- package/esm2015/lib/api/types/lr-graphql.types.js +1 -1
- package/esm2015/lib/item2/item2.types.js +1 -1
- package/esm2015/lib/reminder/reminder.gql.js +27 -0
- package/esm2015/lib/reminder/reminder.service.js +85 -0
- package/esm2015/lib/reminder/reminder.types.js +2 -0
- package/esm2015/public-api.js +3 -1
- package/fesm2015/lifeready-core.js +110 -1
- package/fesm2015/lifeready-core.js.map +1 -1
- package/lib/api/types/lr-graphql.types.d.ts +9 -0
- package/lib/item2/item2.types.d.ts +1 -1
- package/lib/reminder/reminder.gql.d.ts +23 -0
- package/lib/reminder/reminder.service.d.ts +33 -0
- package/lib/reminder/reminder.types.d.ts +13 -0
- package/lifeready-core.metadata.json +1 -1
- package/package.json +1 -1
- package/public-api.d.ts +2 -0
|
@@ -3004,6 +3004,11 @@
|
|
|
3004
3004
|
plainFieldName: 'config',
|
|
3005
3005
|
}),
|
|
3006
3006
|
]));
|
|
3007
|
+
this.registerProcessor('ReminderNode', common.series([
|
|
3008
|
+
common.makeJsonParseProcessor({
|
|
3009
|
+
plainFieldName: 'plain',
|
|
3010
|
+
}),
|
|
3011
|
+
]));
|
|
3007
3012
|
}
|
|
3008
3013
|
QueryProcessorService.prototype.processQuery = function (fields, options) {
|
|
3009
3014
|
return __awaiter(this, void 0, void 0, function () {
|
|
@@ -13991,6 +13996,98 @@
|
|
|
13991
13996
|
{ type: PasswordService }
|
|
13992
13997
|
]; };
|
|
13993
13998
|
|
|
13999
|
+
var CreateReminderMutation = gqlTyped(templateObject_1$s || (templateObject_1$s = __makeTemplateObject(["\nmutation CreateReminderMutation($input: CreateReminderInput!) {\n createReminder(input: $input) {\n reminder {\n id\n }\n }\n}\n"], ["\nmutation CreateReminderMutation($input: CreateReminderInput!) {\n createReminder(input: $input) {\n reminder {\n id\n }\n }\n}\n"])));
|
|
14000
|
+
var UpdateReminderMutation = gqlTyped(templateObject_2$o || (templateObject_2$o = __makeTemplateObject(["\nmutation UpdateReminderMutation($input: UpdateReminderInput!) {\n updateReminder(input: $input) {\n reminder {\n id\n }\n }\n}\n"], ["\nmutation UpdateReminderMutation($input: UpdateReminderInput!) {\n updateReminder(input: $input) {\n reminder {\n id\n }\n }\n}\n"])));
|
|
14001
|
+
var DeleteReminderMutation = gqlTyped(templateObject_3$k || (templateObject_3$k = __makeTemplateObject(["\nmutation DeleteReminderMutation($input: DeleteReminderInput!) {\n deleteReminder(input: $input) {\n id\n }\n}\n"], ["\nmutation DeleteReminderMutation($input: DeleteReminderInput!) {\n deleteReminder(input: $input) {\n id\n }\n}\n"])));
|
|
14002
|
+
var templateObject_1$s, templateObject_2$o, templateObject_3$k;
|
|
14003
|
+
|
|
14004
|
+
exports.ReminderService = /** @class */ (function (_super) {
|
|
14005
|
+
__extends(ReminderService, _super);
|
|
14006
|
+
function ReminderService(ngZone, injector) {
|
|
14007
|
+
var _this = _super.call(this, injector) || this;
|
|
14008
|
+
_this.ngZone = ngZone;
|
|
14009
|
+
_this.injector = injector;
|
|
14010
|
+
return _this;
|
|
14011
|
+
}
|
|
14012
|
+
ReminderService.prototype.createReminder = function (options) {
|
|
14013
|
+
return this.mutate(this.createReminderMutation(options));
|
|
14014
|
+
};
|
|
14015
|
+
ReminderService.prototype.createReminderMutation = function (options) {
|
|
14016
|
+
var _a, _b;
|
|
14017
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
14018
|
+
return __generator(this, function (_c) {
|
|
14019
|
+
return [2 /*return*/, new LrMutation({
|
|
14020
|
+
mutation: CreateReminderMutation,
|
|
14021
|
+
variables: {
|
|
14022
|
+
input: {
|
|
14023
|
+
directoryId: options.directoryId,
|
|
14024
|
+
firstEvent: options.firstEvent.toISOString(),
|
|
14025
|
+
plain: JSON.stringify((_a = options.plainJson) !== null && _a !== void 0 ? _a : {}),
|
|
14026
|
+
notifyAheadSeconds: (_b = options.notifyAheadSeconds) !== null && _b !== void 0 ? _b : 0,
|
|
14027
|
+
},
|
|
14028
|
+
},
|
|
14029
|
+
})];
|
|
14030
|
+
});
|
|
14031
|
+
});
|
|
14032
|
+
};
|
|
14033
|
+
ReminderService.prototype.updateReminder = function (options) {
|
|
14034
|
+
return this.mutate(this.updateReminderMutation(options));
|
|
14035
|
+
};
|
|
14036
|
+
ReminderService.prototype.updateReminderMutation = function (options) {
|
|
14037
|
+
var _a, _b;
|
|
14038
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
14039
|
+
return __generator(this, function (_c) {
|
|
14040
|
+
return [2 /*return*/, new LrMutation({
|
|
14041
|
+
mutation: UpdateReminderMutation,
|
|
14042
|
+
variables: {
|
|
14043
|
+
input: {
|
|
14044
|
+
id: options.id,
|
|
14045
|
+
firstEvent: (_a = options.firstEvent) === null || _a === void 0 ? void 0 : _a.toISOString(),
|
|
14046
|
+
// Ok to use undefined in side JSON.stringify: JSON.stringify(undefined) === undefined
|
|
14047
|
+
// Passing in undefined to plain means don't update the plain field.
|
|
14048
|
+
plain: JSON.stringify((_b = options.plainJson) !== null && _b !== void 0 ? _b : undefined),
|
|
14049
|
+
notifyAheadSeconds: options.notifyAheadSeconds,
|
|
14050
|
+
},
|
|
14051
|
+
},
|
|
14052
|
+
})];
|
|
14053
|
+
});
|
|
14054
|
+
});
|
|
14055
|
+
};
|
|
14056
|
+
ReminderService.prototype.deleteReminder = function (id) {
|
|
14057
|
+
return this.mutate(this.deleteReminderMutation(id));
|
|
14058
|
+
};
|
|
14059
|
+
ReminderService.prototype.deleteReminderMutation = function (id) {
|
|
14060
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
14061
|
+
return __generator(this, function (_c) {
|
|
14062
|
+
return [2 /*return*/, new LrMutation({
|
|
14063
|
+
mutation: DeleteReminderMutation,
|
|
14064
|
+
variables: {
|
|
14065
|
+
input: {
|
|
14066
|
+
id: id,
|
|
14067
|
+
},
|
|
14068
|
+
},
|
|
14069
|
+
})];
|
|
14070
|
+
});
|
|
14071
|
+
});
|
|
14072
|
+
};
|
|
14073
|
+
return ReminderService;
|
|
14074
|
+
}(LrService));
|
|
14075
|
+
exports.ReminderService.ɵprov = i0.ɵɵdefineInjectable({ factory: function ReminderService_Factory() { return new exports.ReminderService(i0.ɵɵinject(i0.NgZone), i0.ɵɵinject(i0.INJECTOR)); }, token: exports.ReminderService, providedIn: "root" });
|
|
14076
|
+
exports.ReminderService.decorators = [
|
|
14077
|
+
{ type: i0.Injectable, args: [{
|
|
14078
|
+
providedIn: 'root',
|
|
14079
|
+
},] }
|
|
14080
|
+
];
|
|
14081
|
+
exports.ReminderService.ctorParameters = function () { return [
|
|
14082
|
+
{ type: i0.NgZone },
|
|
14083
|
+
{ type: i0.Injector }
|
|
14084
|
+
]; };
|
|
14085
|
+
exports.ReminderService = __decorate([
|
|
14086
|
+
RunOutsideAngular({
|
|
14087
|
+
ngZoneName: 'ngZone',
|
|
14088
|
+
})
|
|
14089
|
+
], exports.ReminderService);
|
|
14090
|
+
|
|
13994
14091
|
var SCENARIO_SLIP39_PASSPHRASE = 'lifeready';
|
|
13995
14092
|
|
|
13996
14093
|
exports.ɵn = /** @class */ (function (_super) {
|
|
@@ -14023,9 +14120,9 @@
|
|
|
14023
14120
|
})
|
|
14024
14121
|
], exports.ɵn);
|
|
14025
14122
|
|
|
14026
|
-
var CreateScenarioMutation = gqlTyped(templateObject_1$
|
|
14027
|
-
var UpdateScenarioMutation = gqlTyped(templateObject_2$
|
|
14028
|
-
var DeleteScenarioMutation = gqlTyped(templateObject_3$
|
|
14123
|
+
var CreateScenarioMutation = gqlTyped(templateObject_1$t || (templateObject_1$t = __makeTemplateObject(["\nmutation CreateScenarioMutation($input: CreateScenarioInput!) {\n createScenario(input: $input) {\n scenario {\n id\n }\n }\n}\n"], ["\nmutation CreateScenarioMutation($input: CreateScenarioInput!) {\n createScenario(input: $input) {\n scenario {\n id\n }\n }\n}\n"])));
|
|
14124
|
+
var UpdateScenarioMutation = gqlTyped(templateObject_2$p || (templateObject_2$p = __makeTemplateObject(["\nmutation UpdateScenarioMutation($input: UpdateScenarioInput!) {\n updateScenario(input: $input) {\n scenario {\n id\n }\n }\n}\n"], ["\nmutation UpdateScenarioMutation($input: UpdateScenarioInput!) {\n updateScenario(input: $input) {\n scenario {\n id\n }\n }\n}\n"])));
|
|
14125
|
+
var DeleteScenarioMutation = gqlTyped(templateObject_3$l || (templateObject_3$l = __makeTemplateObject(["\nmutation DeleteScenarioMutation($input: DeleteScenarioInput!) {\n deleteScenario(input: $input) {\n id\n }\n}\n"], ["\nmutation DeleteScenarioMutation($input: DeleteScenarioInput!) {\n deleteScenario(input: $input) {\n id\n }\n}\n"])));
|
|
14029
14126
|
var CreateScenarioClaimMutation = gqlTyped(templateObject_4$f || (templateObject_4$f = __makeTemplateObject(["\nmutation CreateScenarioClaimMutation($input: CreateScenarioClaimInput!) {\n createScenarioClaim(input: $input) {\n sharedClaim {\n id\n }\n }\n}\n"], ["\nmutation CreateScenarioClaimMutation($input: CreateScenarioClaimInput!) {\n createScenarioClaim(input: $input) {\n sharedClaim {\n id\n }\n }\n}\n"])));
|
|
14030
14127
|
var CancelScenarioClaimMutation = gqlTyped(templateObject_5$e || (templateObject_5$e = __makeTemplateObject(["\nmutation CancelScenarioClaimMutation($input: CancelScenarioClaimInput!) {\n cancelScenarioClaim(input: $input) {\n sharedClaim {\n id\n }\n }\n}\n"], ["\nmutation CancelScenarioClaimMutation($input: CancelScenarioClaimInput!) {\n cancelScenarioClaim(input: $input) {\n sharedClaim {\n id\n }\n }\n}\n"])));
|
|
14031
14128
|
var RejectScenarioClaimMutation = gqlTyped(templateObject_6$b || (templateObject_6$b = __makeTemplateObject(["\nmutation RejectScenarioClaimMutation($input: RejectScenarioClaimInput!) {\n rejectScenarioClaim(input: $input) {\n claimApprover {\n id\n }\n }\n}\n"], ["\nmutation RejectScenarioClaimMutation($input: RejectScenarioClaimInput!) {\n rejectScenarioClaim(input: $input) {\n claimApprover {\n id\n }\n }\n}\n"])));
|
|
@@ -14033,11 +14130,11 @@
|
|
|
14033
14130
|
var ReceiveScenarioClaimMutation = gqlTyped(templateObject_8$9 || (templateObject_8$9 = __makeTemplateObject(["\nmutation ReceiveScenarioClaimMutation($input: ReceiveScenarioClaimInput!) {\n receiveScenarioClaim(input: $input) {\n sharedClaim {\n id\n }\n }\n}\n"], ["\nmutation ReceiveScenarioClaimMutation($input: ReceiveScenarioClaimInput!) {\n receiveScenarioClaim(input: $input) {\n sharedClaim {\n id\n }\n }\n}\n"])));
|
|
14034
14131
|
var DebugExpireScenarioClaimMutation = gqlTyped(templateObject_9$6 || (templateObject_9$6 = __makeTemplateObject(["\nmutation DebugExpireScenarioClaimMutation($input: DebugExpireScenarioClaimInput!) {\n debugExpireScenarioClaim(input: $input) {\n scenarioClaim {\n id\n }\n }\n}\n"], ["\nmutation DebugExpireScenarioClaimMutation($input: DebugExpireScenarioClaimInput!) {\n debugExpireScenarioClaim(input: $input) {\n scenarioClaim {\n id\n }\n }\n}\n"])));
|
|
14035
14132
|
var DebugExpireTpPasswordResetRequestMutation = gqlTyped(templateObject_10$4 || (templateObject_10$4 = __makeTemplateObject(["\nmutation DebugExpireTpPasswordResetRequestMutation($input: DebugExpireTpPasswordResetRequestInput!) {\n debugExpireTpPasswordResetRequest(input: $input) {\n passwordResetRequest {\n id\n }\n }\n}\n"], ["\nmutation DebugExpireTpPasswordResetRequestMutation($input: DebugExpireTpPasswordResetRequestInput!) {\n debugExpireTpPasswordResetRequest(input: $input) {\n passwordResetRequest {\n id\n }\n }\n}\n"])));
|
|
14036
|
-
var templateObject_1$
|
|
14133
|
+
var templateObject_1$t, templateObject_2$p, templateObject_3$l, templateObject_4$f, templateObject_5$e, templateObject_6$b, templateObject_7$a, templateObject_8$9, templateObject_9$6, templateObject_10$4;
|
|
14037
14134
|
|
|
14038
|
-
var ScenarioQuery = gqlTyped(templateObject_1$
|
|
14039
|
-
var SharedScenarioQuery = gqlTyped(templateObject_2$
|
|
14040
|
-
var templateObject_1$
|
|
14135
|
+
var ScenarioQuery = gqlTyped(templateObject_1$u || (templateObject_1$u = __makeTemplateObject(["\nquery ScenarioQuery(\n $scenarioId: LrRelayIdInput!\n) {\n scenario(id: $scenarioId) {\n id\n state\n assembly {\n quorum\n singleReject\n assemblyKey {\n id\n }\n subjectKey {\n id\n }\n subjectCipherData\n subAssemblies {\n edges {\n node {\n id\n subjectKey {\n id\n }\n subjectCipherData\n quorum\n singleReject\n approvers {\n edges {\n node {\n id\n tp {\n id\n }\n sharedKey {\n id\n }\n }\n }\n }\n }\n }\n }\n }\n claimants {\n edges {\n node {\n tp {\n id\n }\n sharedKey {\n id\n }\n }\n }\n }\n receivers {\n edges {\n node {\n tp {\n id\n }\n sharedKey {\n id\n }\n sharedCipherData\n receiverDirectories {\n edges {\n node {\n id\n sharedCipherData\n sharedKey {\n id\n }\n accessRole\n itemKey {\n id\n }\n directory {\n id\n keyId\n }\n }\n }\n }\n receiverFiles {\n edges {\n node {\n id\n sharedCipherData\n sharedKey {\n id\n }\n accessRole\n itemKey {\n id\n }\n }\n }\n }\n }\n }\n }\n }\n}"], ["\nquery ScenarioQuery(\n $scenarioId: LrRelayIdInput!\n) {\n scenario(id: $scenarioId) {\n id\n state\n assembly {\n quorum\n singleReject\n assemblyKey {\n id\n }\n subjectKey {\n id\n }\n subjectCipherData\n subAssemblies {\n edges {\n node {\n id\n subjectKey {\n id\n }\n subjectCipherData\n quorum\n singleReject\n approvers {\n edges {\n node {\n id\n tp {\n id\n }\n sharedKey {\n id\n }\n }\n }\n }\n }\n }\n }\n }\n claimants {\n edges {\n node {\n tp {\n id\n }\n sharedKey {\n id\n }\n }\n }\n }\n receivers {\n edges {\n node {\n tp {\n id\n }\n sharedKey {\n id\n }\n sharedCipherData\n receiverDirectories {\n edges {\n node {\n id\n sharedCipherData\n sharedKey {\n id\n }\n accessRole\n itemKey {\n id\n }\n directory {\n id\n keyId\n }\n }\n }\n }\n receiverFiles {\n edges {\n node {\n id\n sharedCipherData\n sharedKey {\n id\n }\n accessRole\n itemKey {\n id\n }\n }\n }\n }\n }\n }\n }\n }\n}"])));
|
|
14136
|
+
var SharedScenarioQuery = gqlTyped(templateObject_2$q || (templateObject_2$q = __makeTemplateObject(["\nquery SharedScenarioQuery($scenarioId: LrRelayIdInput!) {\n sharedScenario(id: $scenarioId) {\n id\n state\n tp {\n id\n }\n asClaimant {\n sharedKey {\n id\n }\n sharedCipherData\n }\n asReceiver {\n sharedKey {\n id\n }\n sharedCipherData\n pbk {\n id\n }\n receiverDirectories {\n edges {\n node {\n id\n wrappedItemKey\n }\n }\n }\n }\n assembly {\n asApprovers {\n edges {\n node {\n id\n sharedKey {\n id\n }\n sharedCipherData\n }\n }\n }\n }\n sharedClaim {\n\t \t\tid\n isClaimant\n claim {\n state\n asClaimApprovers {\n edges {\n node {\n id\n state\n sharedKey {\n id\n }\n sharedCipherApprovalData\n sharedCipherPartialAssemblyKey\n receiverApprovals {\n edges {\n node {\n id\n pxk {\n id\n }\n }\n }\n }\n }\n }\n }\n }\n asClaimReceiver {\n received\n approvals {\n edges {\n node {\n receiverCipher\n receiverCipherPartialAssemblyKey\n pxk {\n id\n }\n }\n }\n }\n }\n }\n }\n}\n"], ["\nquery SharedScenarioQuery($scenarioId: LrRelayIdInput!) {\n sharedScenario(id: $scenarioId) {\n id\n state\n tp {\n id\n }\n asClaimant {\n sharedKey {\n id\n }\n sharedCipherData\n }\n asReceiver {\n sharedKey {\n id\n }\n sharedCipherData\n pbk {\n id\n }\n receiverDirectories {\n edges {\n node {\n id\n wrappedItemKey\n }\n }\n }\n }\n assembly {\n asApprovers {\n edges {\n node {\n id\n sharedKey {\n id\n }\n sharedCipherData\n }\n }\n }\n }\n sharedClaim {\n\t \t\tid\n isClaimant\n claim {\n state\n asClaimApprovers {\n edges {\n node {\n id\n state\n sharedKey {\n id\n }\n sharedCipherApprovalData\n sharedCipherPartialAssemblyKey\n receiverApprovals {\n edges {\n node {\n id\n pxk {\n id\n }\n }\n }\n }\n }\n }\n }\n }\n asClaimReceiver {\n received\n approvals {\n edges {\n node {\n receiverCipher\n receiverCipherPartialAssemblyKey\n pxk {\n id\n }\n }\n }\n }\n }\n }\n }\n}\n"])));
|
|
14137
|
+
var templateObject_1$u, templateObject_2$q;
|
|
14041
14138
|
|
|
14042
14139
|
function throwClaimIdMismatch() {
|
|
14043
14140
|
throw new KcBadArgumentException('claimId does not match with the current claimId of the scenario');
|
|
@@ -14883,8 +14980,8 @@
|
|
|
14883
14980
|
})
|
|
14884
14981
|
], exports.ScenarioService);
|
|
14885
14982
|
|
|
14886
|
-
var ServerConfigQuery = gqlTyped(templateObject_1$
|
|
14887
|
-
var templateObject_1$
|
|
14983
|
+
var ServerConfigQuery = gqlTyped(templateObject_1$v || (templateObject_1$v = __makeTemplateObject(["\nquery ServerConfigQuery {\n serverConfig {\n relayConnectionMaxLimit\n }\n}\n"], ["\nquery ServerConfigQuery {\n serverConfig {\n relayConnectionMaxLimit\n }\n}\n"])));
|
|
14984
|
+
var templateObject_1$v;
|
|
14888
14985
|
|
|
14889
14986
|
exports.ServerConfigService = /** @class */ (function (_super) {
|
|
14890
14987
|
__extends(ServerConfigService, _super);
|
|
@@ -14932,11 +15029,11 @@
|
|
|
14932
15029
|
})
|
|
14933
15030
|
], exports.ServerConfigService);
|
|
14934
15031
|
|
|
14935
|
-
var UpdateOwnedContactCardMutation = gqlTyped(templateObject_1$
|
|
14936
|
-
var UpdateReceivedContactCardMutation = gqlTyped(templateObject_2$
|
|
14937
|
-
var GetOwnedContactCardKeyIdsQuery = gqlTyped(templateObject_3$
|
|
15032
|
+
var UpdateOwnedContactCardMutation = gqlTyped(templateObject_1$w || (templateObject_1$w = __makeTemplateObject(["\nmutation UpdateOwnedContactCardMutation(\n $input: UpdateOwnedContactCardInput!\n) {\n updateOwnedContactCard(input: $input) {\n ownedContactCard {\n id\n }\n }\n}"], ["\nmutation UpdateOwnedContactCardMutation(\n $input: UpdateOwnedContactCardInput!\n) {\n updateOwnedContactCard(input: $input) {\n ownedContactCard {\n id\n }\n }\n}"])));
|
|
15033
|
+
var UpdateReceivedContactCardMutation = gqlTyped(templateObject_2$r || (templateObject_2$r = __makeTemplateObject(["\nmutation UpdateReceivedContactCardMutation(\n $input: UpdateReceivedContactCardInput!\n) {\n updateReceivedContactCard(input: $input) {\n receivedContactCard {\n id\n }\n }\n}"], ["\nmutation UpdateReceivedContactCardMutation(\n $input: UpdateReceivedContactCardInput!\n) {\n updateReceivedContactCard(input: $input) {\n receivedContactCard {\n id\n }\n }\n}"])));
|
|
15034
|
+
var GetOwnedContactCardKeyIdsQuery = gqlTyped(templateObject_3$m || (templateObject_3$m = __makeTemplateObject(["\nquery GetOwnedContactCardKeyIdsQuery($id: LrRelayIdInput!) {\n ownedContactCard(id: $id) {\n sharedKey {\n id\n }\n ownerKey {\n id\n }\n }\n}"], ["\nquery GetOwnedContactCardKeyIdsQuery($id: LrRelayIdInput!) {\n ownedContactCard(id: $id) {\n sharedKey {\n id\n }\n ownerKey {\n id\n }\n }\n}"])));
|
|
14938
15035
|
var GetReceivedContactCardKeyIdQuery = gqlTyped(templateObject_4$g || (templateObject_4$g = __makeTemplateObject(["\nquery GetReceivedContactCardKeyIdQuery($id: LrRelayIdInput!) {\n receivedContactCard(id: $id) {\n receiverKey {\n id\n }\n }\n}"], ["\nquery GetReceivedContactCardKeyIdQuery($id: LrRelayIdInput!) {\n receivedContactCard(id: $id) {\n receiverKey {\n id\n }\n }\n}"])));
|
|
14939
|
-
var templateObject_1$
|
|
15036
|
+
var templateObject_1$w, templateObject_2$r, templateObject_3$m, templateObject_4$g;
|
|
14940
15037
|
|
|
14941
15038
|
exports.SharedContactCard2Service = /** @class */ (function () {
|
|
14942
15039
|
function SharedContactCard2Service(ngZone, keyService, keyGraph, encryptionService, lrGraphQL) {
|
|
@@ -15565,18 +15662,18 @@
|
|
|
15565
15662
|
})
|
|
15566
15663
|
], exports.TpPasswordResetService);
|
|
15567
15664
|
|
|
15568
|
-
var DeleteTpMutation = gqlTyped(templateObject_1$
|
|
15569
|
-
var ShareDirectoryMutation = gqlTyped(templateObject_2$
|
|
15570
|
-
var UnshareDirectoryMutation = gqlTyped(templateObject_3$
|
|
15665
|
+
var DeleteTpMutation = gqlTyped(templateObject_1$x || (templateObject_1$x = __makeTemplateObject(["\nmutation DeleteTpMutation($input: DeleteTpInput!) {\n deleteTp(input: $input) {\n id\n }\n}\n"], ["\nmutation DeleteTpMutation($input: DeleteTpInput!) {\n deleteTp(input: $input) {\n id\n }\n}\n"])));
|
|
15666
|
+
var ShareDirectoryMutation = gqlTyped(templateObject_2$s || (templateObject_2$s = __makeTemplateObject(["\n mutation ShareDirectoryMutation($input: ShareDirectoryInput!) {\n shareDirectory(input: $input) {\n tpSharedDirectory {\n id\n }\n }\n }\n"], ["\n mutation ShareDirectoryMutation($input: ShareDirectoryInput!) {\n shareDirectory(input: $input) {\n tpSharedDirectory {\n id\n }\n }\n }\n"])));
|
|
15667
|
+
var UnshareDirectoryMutation = gqlTyped(templateObject_3$n || (templateObject_3$n = __makeTemplateObject(["\n mutation UnshareDirectoryMutation($input: UnshareDirectoryInput!) {\n unshareDirectory(input: $input) {\n tpSharedDirectory {\n id\n }\n }\n }\n"], ["\n mutation UnshareDirectoryMutation($input: UnshareDirectoryInput!) {\n unshareDirectory(input: $input) {\n tpSharedDirectory {\n id\n }\n }\n }\n"])));
|
|
15571
15668
|
var ShareFileMutation = gqlTyped(templateObject_4$h || (templateObject_4$h = __makeTemplateObject(["\n mutation ShareFileMutation($input: ShareFileInput!) {\n shareFile(input: $input) {\n tpSharedFile {\n id\n }\n }\n }\n"], ["\n mutation ShareFileMutation($input: ShareFileInput!) {\n shareFile(input: $input) {\n tpSharedFile {\n id\n }\n }\n }\n"])));
|
|
15572
15669
|
var UnshareFileMutation = gqlTyped(templateObject_5$f || (templateObject_5$f = __makeTemplateObject(["\n mutation UnshareFileMutation($input: UnshareFileInput!) {\n unshareFile(input: $input) {\n tpSharedFile {\n id\n }\n }\n }\n"], ["\n mutation UnshareFileMutation($input: UnshareFileInput!) {\n unshareFile(input: $input) {\n tpSharedFile {\n id\n }\n }\n }\n"])));
|
|
15573
15670
|
var RequestTpMkReshareMutation = gqlTyped(templateObject_6$c || (templateObject_6$c = __makeTemplateObject(["\nmutation RequestTpMkReshareMutation($input: RequestTpMkReshareInput!) {\n requestTpMkReshare(input: $input) {\n id\n }\n}"], ["\nmutation RequestTpMkReshareMutation($input: RequestTpMkReshareInput!) {\n requestTpMkReshare(input: $input) {\n id\n }\n}"])));
|
|
15574
15671
|
var RespondTpMkReshareMutation = gqlTyped(templateObject_7$b || (templateObject_7$b = __makeTemplateObject(["\n mutation RespondTpMkReshareMutation($input: RespondTpMkReshareInput!) {\n respondTpMkReshare(input: $input) {\n id\n }\n }\n"], ["\n mutation RespondTpMkReshareMutation($input: RespondTpMkReshareInput!) {\n respondTpMkReshare(input: $input) {\n id\n }\n }\n"])));
|
|
15575
15672
|
var CompleteTpMkReshareMutation = gqlTyped(templateObject_8$a || (templateObject_8$a = __makeTemplateObject(["\nmutation CompleteTpMkReshareMutation($input: CompleteTpMkReshareInput!) {\n completeTpMkReshare(input: $input) {\n id\n }\n}"], ["\nmutation CompleteTpMkReshareMutation($input: CompleteTpMkReshareInput!) {\n completeTpMkReshare(input: $input) {\n id\n }\n}"])));
|
|
15576
|
-
var templateObject_1$
|
|
15673
|
+
var templateObject_1$x, templateObject_2$s, templateObject_3$n, templateObject_4$h, templateObject_5$f, templateObject_6$c, templateObject_7$b, templateObject_8$a;
|
|
15577
15674
|
|
|
15578
|
-
var TpCurrentUserSharedKeyQuery = gqlTyped(templateObject_1$
|
|
15579
|
-
var templateObject_1$
|
|
15675
|
+
var TpCurrentUserSharedKeyQuery = gqlTyped(templateObject_1$y || (templateObject_1$y = __makeTemplateObject(["\nquery TpCurrentUserSharedKeyQuery($id: LrRelayIdInput!) {\n tp(id: $id){\n currentUserSharedKey {\n userSharedKey {\n sharedKey {\n id\n }\n mkSharedKey {\n id\n }\n mkPxk {\n id\n }\n mkReshareRequestCipher\n mkReshareRequestSent\n mkReshareResponseCipher\n mkReshareResponseSent\n }\n }\n }\n}\n"], ["\nquery TpCurrentUserSharedKeyQuery($id: LrRelayIdInput!) {\n tp(id: $id){\n currentUserSharedKey {\n userSharedKey {\n sharedKey {\n id\n }\n mkSharedKey {\n id\n }\n mkPxk {\n id\n }\n mkReshareRequestCipher\n mkReshareRequestSent\n mkReshareResponseCipher\n mkReshareResponseSent\n }\n }\n }\n}\n"])));
|
|
15676
|
+
var templateObject_1$y;
|
|
15580
15677
|
|
|
15581
15678
|
exports.TrustedParty2Service = /** @class */ (function (_super) {
|
|
15582
15679
|
__extends(TrustedParty2Service, _super);
|