@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.
@@ -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
- sharedItems {
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.sharedItems.list),
6266
- records: yield this.mapRecords(tp.sharedItems.records),
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
- sharedItems {
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.sharedItems.directories.edges.length,
10517
+ hasSharedVault: !!tp.theirItems.directories.edges.length,
10518
10518
  name: contactCard && contactCard.name && contactCard.name.name,
10519
10519
  details: contactCard,
10520
10520
  mySharedDetails: myContactCard,