@lifeready/core 9.0.1 → 9.0.2
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 +12 -4
- 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/types/lr-graphql.types.js +13 -5
- package/fesm2015/lifeready-core.js +12 -4
- package/fesm2015/lifeready-core.js.map +1 -1
- package/lib/api/types/lr-graphql.types.d.ts +1 -1
- package/package.json +1 -1
|
@@ -3829,10 +3829,18 @@
|
|
|
3829
3829
|
return connection.edges.map(function (edge) { return edge.node; });
|
|
3830
3830
|
}
|
|
3831
3831
|
function toIdKeyPair(t) {
|
|
3832
|
-
|
|
3833
|
-
|
|
3834
|
-
|
|
3835
|
-
|
|
3832
|
+
if (t === undefined) {
|
|
3833
|
+
return undefined;
|
|
3834
|
+
}
|
|
3835
|
+
else if (t === null) {
|
|
3836
|
+
return null;
|
|
3837
|
+
}
|
|
3838
|
+
else {
|
|
3839
|
+
return {
|
|
3840
|
+
id: t.id,
|
|
3841
|
+
keyId: t.keyId,
|
|
3842
|
+
};
|
|
3843
|
+
}
|
|
3836
3844
|
}
|
|
3837
3845
|
(function (UserDeleteState) {
|
|
3838
3846
|
UserDeleteState["REQUESTED"] = "REQUESTED";
|