@lifeready/core 5.0.13 → 6.0.3
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 +3 -3
- 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/reminder/reminder.service.js +4 -4
- package/esm2015/lib/reminder/reminder.types.js +1 -1
- package/fesm2015/lifeready-core.js +3 -3
- package/fesm2015/lifeready-core.js.map +1 -1
- package/lib/reminder/reminder.types.d.ts +7 -3
- package/lifeready-core.metadata.json +1 -1
- package/package.json +1 -1
|
@@ -14013,7 +14013,7 @@
|
|
|
14013
14013
|
return this.mutate(this.createReminderMutation(options));
|
|
14014
14014
|
};
|
|
14015
14015
|
ReminderService.prototype.createReminderMutation = function (options) {
|
|
14016
|
-
var _a
|
|
14016
|
+
var _a;
|
|
14017
14017
|
return __awaiter(this, void 0, void 0, function () {
|
|
14018
14018
|
return __generator(this, function (_c) {
|
|
14019
14019
|
return [2 /*return*/, new LrMutation({
|
|
@@ -14022,8 +14022,8 @@
|
|
|
14022
14022
|
input: {
|
|
14023
14023
|
directoryId: options.directoryId,
|
|
14024
14024
|
firstEvent: options.firstEvent.toISOString(),
|
|
14025
|
-
plain: JSON.stringify(
|
|
14026
|
-
notifyAheadSeconds: (
|
|
14025
|
+
plain: JSON.stringify(options.plainJson),
|
|
14026
|
+
notifyAheadSeconds: (_a = options.notifyAheadSeconds) !== null && _a !== void 0 ? _a : 0,
|
|
14027
14027
|
},
|
|
14028
14028
|
},
|
|
14029
14029
|
})];
|