@lifeready/core 5.0.2 → 5.0.4

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.
@@ -317,7 +317,7 @@ export interface TpNode extends Node, TimeStamped {
317
317
  sharedContactCard?: SharedContactCardNode;
318
318
  myContactCard?: SharedContactCardNode;
319
319
  myItems?: SharedItems;
320
- sharedItems?: SharedItems;
320
+ theirItems?: SharedItems;
321
321
  myScenarios?: Connection<ScenarioNode>;
322
322
  sharedScenarios?: Connection<SharedScenarioNode>;
323
323
  }
@@ -1,6 +1,7 @@
1
1
  import { CognitoUser } from '@aws-amplify/auth';
2
2
  import { JWK } from 'node-jose';
3
3
  import { JSONObject, TpPasswordResetUserNode, UserDeleteNode } from '../api/types';
4
+ import { DateTime } from '../api/types/graphql.types';
4
5
  import { PassIdpParams, PassKeyParams } from '../key/key.types';
5
6
  import { UserPlan } from '../plan/plan.types';
6
7
  import { CurrentUserKey, Features, MainContactCard } from '../profile/profile.types';
@@ -33,6 +34,7 @@ export declare class CurrentUser {
33
34
  features: Features;
34
35
  hasTPVaultAccess: boolean;
35
36
  sessionEncryptionKey: string;
37
+ dateJoined: DateTime;
36
38
  }
37
39
  export interface TpPasswordResetUser extends TpPasswordResetUserNode {
38
40
  sub: string;
@@ -17,7 +17,7 @@ export declare const GetCategoriesQuery: import("graphql").DocumentNode;
17
17
  export declare const GetVaultsQuery: import("graphql").DocumentNode;
18
18
  export interface GetTrustedPartyCategoriesQueryType extends HasKeyGraph {
19
19
  tp: {
20
- sharedItems: {
20
+ theirItems: {
21
21
  list: HasEdges<any>;
22
22
  records: HasEdges<any>;
23
23
  };
@@ -1,4 +1,4 @@
1
- import { UserDeleteNode } from '../api/types';
1
+ import { DateTime, UserDeleteNode } from '../api/types';
2
2
  import { PassIdpParams, PassKey } from '../key/key.types';
3
3
  export declare enum FeatureAction {
4
4
  ACCESS = "access"
@@ -30,6 +30,7 @@ export declare class ApiCurrentUser {
30
30
  userDelete: UserDeleteNode;
31
31
  features: Features;
32
32
  sessionEncryptionKey: string;
33
+ dateJoined: DateTime;
33
34
  }
34
35
  export declare class ApiContactCard {
35
36
  id: string;