@quesmed/types-rn 2.4.15 → 2.4.16
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/package.json
CHANGED
|
@@ -26,7 +26,10 @@ export interface IUpdateUserVar {
|
|
|
26
26
|
id?: number;
|
|
27
27
|
data: IUserInput;
|
|
28
28
|
}
|
|
29
|
-
export declare type IUpdateUserData = RestrictedData<
|
|
29
|
+
export declare type IUpdateUserData = RestrictedData<{
|
|
30
|
+
jwt: string;
|
|
31
|
+
user: IUser & graphqlNormalize;
|
|
32
|
+
}, 'updateUser'>;
|
|
30
33
|
export declare const RENEW_TOKEN: import("@apollo/client").DocumentNode;
|
|
31
34
|
export declare type IRenewTokenVar = null;
|
|
32
35
|
export declare type IRenewTokenData = RestrictedData<string, 'renewToken'>;
|