@lifeready/core 5.0.2 → 5.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 +5 -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/types/lr-graphql.types.js +1 -1
- package/esm2015/lib/category/category.gql.js +2 -2
- package/esm2015/lib/category/category.service.js +3 -3
- package/esm2015/lib/trusted-party/trusted-party.gql.js +3 -3
- package/esm2015/lib/trusted-party/trusted-party.service.js +2 -2
- package/fesm2015/lifeready-core.js +5 -5
- package/fesm2015/lifeready-core.js.map +1 -1
- package/lib/api/types/lr-graphql.types.d.ts +1 -1
- package/lib/category/category.gql.d.ts +1 -1
- package/package.json +1 -1
|
@@ -3352,7 +3352,7 @@ const GetTrustedPartyCategoriesQuery = gql `
|
|
|
3352
3352
|
query GetTrustedPartyCategoriesQuery($trustedPartyId: LrRelayIdInput!, $categoryFilter: LrJSONFilter!, $recordFilter: LrJSONFilter!, $contentFilter: LrJSONFilter, $cachedKeyIds: [LrRelayIdInput!])
|
|
3353
3353
|
{
|
|
3354
3354
|
tp(id: $trustedPartyId) {
|
|
3355
|
-
|
|
3355
|
+
theirItems {
|
|
3356
3356
|
list: directories(plainMeta: $categoryFilter, orderBy: "created") {
|
|
3357
3357
|
edges {
|
|
3358
3358
|
node {
|
|
@@ -6262,8 +6262,8 @@ class CategoryService {
|
|
|
6262
6262
|
},
|
|
6263
6263
|
});
|
|
6264
6264
|
return {
|
|
6265
|
-
categories: yield this.mapCategories(tp.
|
|
6266
|
-
records: yield this.mapRecords(tp.
|
|
6265
|
+
categories: yield this.mapCategories(tp.theirItems.list),
|
|
6266
|
+
records: yield this.mapRecords(tp.theirItems.records),
|
|
6267
6267
|
};
|
|
6268
6268
|
});
|
|
6269
6269
|
}
|
|
@@ -10145,7 +10145,7 @@ const TrustedPartyProperties = `
|
|
|
10145
10145
|
}
|
|
10146
10146
|
}
|
|
10147
10147
|
}
|
|
10148
|
-
|
|
10148
|
+
theirItems {
|
|
10149
10149
|
directories {
|
|
10150
10150
|
edges {
|
|
10151
10151
|
node {
|
|
@@ -10514,7 +10514,7 @@ class TrustedPartyService {
|
|
|
10514
10514
|
id: tp.id,
|
|
10515
10515
|
type: TrustedPartyType.User,
|
|
10516
10516
|
hasScenarios: !!tp.sharedScenarios.edges.length,
|
|
10517
|
-
hasSharedVault: !!tp.
|
|
10517
|
+
hasSharedVault: !!tp.theirItems.directories.edges.length,
|
|
10518
10518
|
name: contactCard && contactCard.name && contactCard.name.name,
|
|
10519
10519
|
details: contactCard,
|
|
10520
10520
|
mySharedDetails: myContactCard,
|