@adminide-stack/core 1.1.1-alpha.267 → 1.1.1-alpha.277
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.
@@ -2429,6 +2429,7 @@ export declare type IOrgMember = {
|
|
2429
2429
|
role?: Maybe<IApplicationRoles>;
|
2430
2430
|
inactive?: Maybe<Scalars['Boolean']>;
|
2431
2431
|
name?: Maybe<Scalars['String']>;
|
2432
|
+
email?: Maybe<Scalars['String']>;
|
2432
2433
|
crossCheckEmail?: Maybe<Scalars['String']>;
|
2433
2434
|
teamNames?: Maybe<Array<Maybe<Scalars['String']>>>;
|
2434
2435
|
};
|
@@ -4962,7 +4963,7 @@ export declare type IGetOrganizationMembersQuery = ({
|
|
4962
4963
|
} & {
|
4963
4964
|
getOrganizationMembers?: Maybe<Array<Maybe<({
|
4964
4965
|
__typename?: 'OrgMember';
|
4965
|
-
} & Pick<IOrgMember, 'userId' | 'role' | 'name' | 'teamNames' | 'crossCheckEmail'>)>>>;
|
4966
|
+
} & Pick<IOrgMember, 'userId' | 'role' | 'name' | 'email' | 'teamNames' | 'crossCheckEmail'>)>>>;
|
4966
4967
|
});
|
4967
4968
|
export declare type IorganizationsQueryVariables = Exact<{
|
4968
4969
|
[key: string]: never;
|
@@ -12925,6 +12926,7 @@ export declare type IOrgMemberResolvers<ContextType = MyContext, ParentType exte
|
|
12925
12926
|
role?: Resolver<Maybe<IResolversTypes['ApplicationRoles']>, ParentType, ContextType>;
|
12926
12927
|
inactive?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType>;
|
12927
12928
|
name?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
12929
|
+
email?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
12928
12930
|
crossCheckEmail?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
12929
12931
|
teamNames?: Resolver<Maybe<Array<Maybe<IResolversTypes['String']>>>, ParentType, ContextType>;
|
12930
12932
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
@@ -2055,7 +2055,7 @@ function usegetUserOrganizationsWithRoleLazyQuery(baseOptions) {
|
|
2055
2055
|
return Apollo.useLazyQuery(exports.getUserOrganizationsWithRoleDocument, options);
|
2056
2056
|
}
|
2057
2057
|
exports.usegetUserOrganizationsWithRoleLazyQuery = usegetUserOrganizationsWithRoleLazyQuery;
|
2058
|
-
exports.GetOrganizationMembersDocument = { "kind": "Document", "definitions": [{ "kind": "OperationDefinition", "operation": "query", "name": { "kind": "Name", "value": "GetOrganizationMembers" }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "getOrganizationMembers" }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "userId" } }, { "kind": "Field", "name": { "kind": "Name", "value": "role" } }, { "kind": "Field", "name": { "kind": "Name", "value": "name" } }, { "kind": "Field", "name": { "kind": "Name", "value": "teamNames" } }, { "kind": "Field", "name": { "kind": "Name", "value": "crossCheckEmail" } }] } }] } }] };
|
2058
|
+
exports.GetOrganizationMembersDocument = { "kind": "Document", "definitions": [{ "kind": "OperationDefinition", "operation": "query", "name": { "kind": "Name", "value": "GetOrganizationMembers" }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "getOrganizationMembers" }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "userId" } }, { "kind": "Field", "name": { "kind": "Name", "value": "role" } }, { "kind": "Field", "name": { "kind": "Name", "value": "name" } }, { "kind": "Field", "name": { "kind": "Name", "value": "email" } }, { "kind": "Field", "name": { "kind": "Name", "value": "teamNames" } }, { "kind": "Field", "name": { "kind": "Name", "value": "crossCheckEmail" } }] } }] } }] };
|
2059
2059
|
/**
|
2060
2060
|
* __useGetOrganizationMembersQuery__
|
2061
2061
|
*
|