@adminide-stack/core 1.1.3-alpha.50 → 1.1.3-alpha.58
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.
@@ -3007,7 +3007,8 @@ export declare type IUserAccountRemoveRequest = {
|
|
3007
3007
|
};
|
3008
3008
|
export declare type IUserAccountRemovedEvent = {
|
3009
3009
|
__typename?: 'UserAccountRemovedEvent';
|
3010
|
-
id
|
3010
|
+
id: Scalars['String'];
|
3011
|
+
userId: Scalars['String'];
|
3011
3012
|
email: Scalars['String'];
|
3012
3013
|
username: Scalars['String'];
|
3013
3014
|
notificationEmail?: Maybe<Scalars['String']>;
|
@@ -10602,7 +10603,8 @@ export declare type IUserAccountCreatedEventResolvers<ContextType = MyContext, P
|
|
10602
10603
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
10603
10604
|
};
|
10604
10605
|
export declare type IUserAccountRemovedEventResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['UserAccountRemovedEvent'] = IResolversParentTypes['UserAccountRemovedEvent']> = {
|
10605
|
-
id?: Resolver<
|
10606
|
+
id?: Resolver<IResolversTypes['String'], ParentType, ContextType>;
|
10607
|
+
userId?: Resolver<IResolversTypes['String'], ParentType, ContextType>;
|
10606
10608
|
email?: Resolver<IResolversTypes['String'], ParentType, ContextType>;
|
10607
10609
|
username?: Resolver<IResolversTypes['String'], ParentType, ContextType>;
|
10608
10610
|
notificationEmail?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|