@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.
- package/bundles/lifeready-core.umd.js +185 -180
- 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/auth/auth.types.js +1 -1
- package/esm2015/lib/auth/life-ready-auth.service.js +3 -1
- package/esm2015/lib/category/category.gql.js +2 -2
- package/esm2015/lib/category/category.service.js +3 -3
- package/esm2015/lib/item2/item2.service.js +7 -4
- package/esm2015/lib/profile/profile.gql.js +2 -1
- package/esm2015/lib/profile/profile.types.js +1 -1
- 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 +14 -8
- package/fesm2015/lifeready-core.js.map +1 -1
- package/lib/api/types/lr-graphql.types.d.ts +1 -1
- package/lib/auth/auth.types.d.ts +2 -0
- package/lib/category/category.gql.d.ts +1 -1
- package/lib/profile/profile.types.d.ts +2 -1
- package/lifeready-core.metadata.json +1 -1
- package/package.json +1 -1
|
@@ -317,7 +317,7 @@ export interface TpNode extends Node, TimeStamped {
|
|
|
317
317
|
sharedContactCard?: SharedContactCardNode;
|
|
318
318
|
myContactCard?: SharedContactCardNode;
|
|
319
319
|
myItems?: SharedItems;
|
|
320
|
-
|
|
320
|
+
theirItems?: SharedItems;
|
|
321
321
|
myScenarios?: Connection<ScenarioNode>;
|
|
322
322
|
sharedScenarios?: Connection<SharedScenarioNode>;
|
|
323
323
|
}
|
package/lib/auth/auth.types.d.ts
CHANGED
|
@@ -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
|
-
|
|
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;
|