@adminide-stack/core 7.0.1-alpha.35 → 7.0.1-alpha.43
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.
@@ -10404,6 +10404,10 @@ export type IHasScopeDirectiveArgs = {
|
|
10404
10404
|
scope?: Maybe<Array<Maybe<Scalars['String']['input']>>>;
|
10405
10405
|
};
|
10406
10406
|
export type IHasScopeDirectiveResolver<Result, Parent, ContextType = MyContext, Args = IHasScopeDirectiveArgs> = DirectiveResolverFn<Result, Parent, ContextType, Args>;
|
10407
|
+
export type IInvalidateCacheDirectiveArgs = {
|
10408
|
+
queries: Array<Scalars['String']['input']>;
|
10409
|
+
};
|
10410
|
+
export type IInvalidateCacheDirectiveResolver<Result, Parent, ContextType = MyContext, Args = IInvalidateCacheDirectiveArgs> = DirectiveResolverFn<Result, Parent, ContextType, Args>;
|
10407
10411
|
export type IIsAuthenticatedDirectiveArgs = {};
|
10408
10412
|
export type IIsAuthenticatedDirectiveResolver<Result, Parent, ContextType = MyContext, Args = IIsAuthenticatedDirectiveArgs> = DirectiveResolverFn<Result, Parent, ContextType, Args>;
|
10409
10413
|
export type IProfileDirectiveArgs = {};
|
@@ -12049,6 +12053,7 @@ export type IDirectiveResolvers<ContextType = MyContext> = {
|
|
12049
12053
|
addNamespaceContext?: IAddNamespaceContextDirectiveResolver<any, any, ContextType>;
|
12050
12054
|
cacheControl?: ICacheControlDirectiveResolver<any, any, ContextType>;
|
12051
12055
|
hasScope?: IHasScopeDirectiveResolver<any, any, ContextType>;
|
12056
|
+
invalidateCache?: IInvalidateCacheDirectiveResolver<any, any, ContextType>;
|
12052
12057
|
isAuthenticated?: IIsAuthenticatedDirectiveResolver<any, any, ContextType>;
|
12053
12058
|
profile?: IProfileDirectiveResolver<any, any, ContextType>;
|
12054
12059
|
};
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@adminide-stack/core",
|
3
|
-
"version": "7.0.1-alpha.
|
3
|
+
"version": "7.0.1-alpha.43",
|
4
4
|
"description": "AdminIDE core for higher packages to depend on",
|
5
5
|
"license": "ISC",
|
6
6
|
"author": "CDMBase LLC",
|
@@ -36,5 +36,5 @@
|
|
36
36
|
"typescript": {
|
37
37
|
"definition": "lib/index.d.ts"
|
38
38
|
},
|
39
|
-
"gitHead": "
|
39
|
+
"gitHead": "7499467b250b2ba65957183058c763b013e1b19b"
|
40
40
|
}
|