@adminide-stack/core 1.1.1-alpha.267 → 1.1.1-alpha.294

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.
@@ -634,7 +634,7 @@ export declare const enum IConfigFragmentName {
634
634
  teamMembers = "teamMembers",
635
635
  /** Organization Members Document with role value */
636
636
  orgMembers = "orgMembers",
637
- /** Billing Plans */
637
+ /** Billing */
638
638
  billingPlanPolicies = "billingPlanPolicies"
639
639
  }
640
640
  export declare type IConfiguration = IDefaultConfiguration | IMachineConfiguration | IUserConfiguration | IOrganizationConfiguration | IOrganizationResourceConfiguration;
@@ -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>;
@@ -179,7 +179,7 @@ var IConfigFragmentName;
179
179
  IConfigFragmentName["teamMembers"] = "teamMembers";
180
180
  /** Organization Members Document with role value */
181
181
  IConfigFragmentName["orgMembers"] = "orgMembers";
182
- /** Billing Plans */
182
+ /** Billing */
183
183
  IConfigFragmentName["billingPlanPolicies"] = "billingPlanPolicies";
184
184
  })(IConfigFragmentName = exports.IConfigFragmentName || (exports.IConfigFragmentName = {}));
185
185
  ;
@@ -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
  *