@adminide-stack/core 1.1.1-alpha.328 → 1.1.1-alpha.344

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.
@@ -2327,6 +2327,9 @@ export declare type IQueryfilterIntegrationConfigurationArgs = {
2327
2327
  export declare type IQuerygetAccountsArgs = {
2328
2328
  where?: Maybe<IUserAccountWhere>;
2329
2329
  };
2330
+ export declare type IQuerygetAllCountriesArgs = {
2331
+ criteria?: Maybe<Scalars['JSON']>;
2332
+ };
2330
2333
  export declare type IQuerygetAsanaWorkspaceProjectsArgs = {
2331
2334
  workspaceId: Scalars['String'];
2332
2335
  };
@@ -3463,7 +3466,7 @@ export declare type IGetAccountsQuery = ({
3463
3466
  } & Pick<IUserAccount, 'username' | 'email'>)>>>;
3464
3467
  });
3465
3468
  export declare type IGetAllCountriesQueryVariables = Exact<{
3466
- [key: string]: never;
3469
+ criteria?: Maybe<Scalars['JSON']>;
3467
3470
  }>;
3468
3471
  export declare type IGetAllCountriesQuery = ({
3469
3472
  __typename?: 'Query';
@@ -5891,14 +5894,15 @@ export declare const GetAllCountriesDocument: DocumentNode;
5891
5894
  * @example
5892
5895
  * const { data, loading, error } = useGetAllCountriesQuery({
5893
5896
  * variables: {
5897
+ * criteria: // value for 'criteria'
5894
5898
  * },
5895
5899
  * });
5896
5900
  */
5897
5901
  export declare function useGetAllCountriesQuery(baseOptions?: Apollo.QueryHookOptions<IGetAllCountriesQuery, IGetAllCountriesQueryVariables>): Apollo.QueryResult<IGetAllCountriesQuery, Exact<{
5898
- [key: string]: never;
5902
+ criteria?: any;
5899
5903
  }>>;
5900
5904
  export declare function useGetAllCountriesLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<IGetAllCountriesQuery, IGetAllCountriesQueryVariables>): Apollo.QueryTuple<IGetAllCountriesQuery, Exact<{
5901
- [key: string]: never;
5905
+ criteria?: any;
5902
5906
  }>>;
5903
5907
  export declare type GetAllCountriesQueryHookResult = ReturnType<typeof useGetAllCountriesQuery>;
5904
5908
  export declare type GetAllCountriesLazyQueryHookResult = ReturnType<typeof useGetAllCountriesLazyQuery>;
@@ -9942,7 +9946,7 @@ export declare type IQueryResolvers<ContextType = MyContext, ParentType extends
9942
9946
  fetchAuth0User?: Resolver<Maybe<IResolversTypes['UserProfile']>, ParentType, ContextType, RequireFields<IQueryfetchAuth0UserArgs, 'auth0UserId'>>;
9943
9947
  filterIntegrationConfiguration?: Resolver<Maybe<Array<Maybe<IResolversTypes['IntegrationConfiguration']>>>, ParentType, ContextType, RequireFields<IQueryfilterIntegrationConfigurationArgs, never>>;
9944
9948
  getAccounts?: Resolver<Maybe<Array<Maybe<IResolversTypes['UserAccount']>>>, ParentType, ContextType, RequireFields<IQuerygetAccountsArgs, never>>;
9945
- getAllCountries?: Resolver<Maybe<Array<Maybe<IResolversTypes['Country']>>>, ParentType, ContextType>;
9949
+ getAllCountries?: Resolver<Maybe<Array<Maybe<IResolversTypes['Country']>>>, ParentType, ContextType, RequireFields<IQuerygetAllCountriesArgs, never>>;
9946
9950
  getAllIntegrationConfigurations?: Resolver<Maybe<Array<Maybe<IResolversTypes['IntegrationConfiguration']>>>, ParentType, ContextType>;
9947
9951
  getAsanaConnectionState?: Resolver<Maybe<IResolversTypes['AsanaConnection']>, ParentType, ContextType>;
9948
9952
  getAsanaWorkspaceProjects?: Resolver<Maybe<Array<Maybe<IResolversTypes['AsanaProjects']>>>, ParentType, ContextType, RequireFields<IQuerygetAsanaWorkspaceProjectsArgs, 'workspaceId'>>;
@@ -1399,7 +1399,7 @@ function useGetAccountsLazyQuery(baseOptions) {
1399
1399
  return Apollo.useLazyQuery(exports.GetAccountsDocument, options);
1400
1400
  }
1401
1401
  exports.useGetAccountsLazyQuery = useGetAccountsLazyQuery;
1402
- exports.GetAllCountriesDocument = { "kind": "Document", "definitions": [{ "kind": "OperationDefinition", "operation": "query", "name": { "kind": "Name", "value": "GetAllCountries" }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "getAllCountries" }, "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "id" } }, { "kind": "Field", "name": { "kind": "Name", "value": "name" } }, { "kind": "Field", "name": { "kind": "Name", "value": "phoneCode" } }] } }] } }] };
1402
+ exports.GetAllCountriesDocument = { "kind": "Document", "definitions": [{ "kind": "OperationDefinition", "operation": "query", "name": { "kind": "Name", "value": "GetAllCountries" }, "variableDefinitions": [{ "kind": "VariableDefinition", "variable": { "kind": "Variable", "name": { "kind": "Name", "value": "criteria" } }, "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "JSON" } } }], "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "getAllCountries" }, "arguments": [{ "kind": "Argument", "name": { "kind": "Name", "value": "criteria" }, "value": { "kind": "Variable", "name": { "kind": "Name", "value": "criteria" } } }], "selectionSet": { "kind": "SelectionSet", "selections": [{ "kind": "Field", "name": { "kind": "Name", "value": "id" } }, { "kind": "Field", "name": { "kind": "Name", "value": "name" } }, { "kind": "Field", "name": { "kind": "Name", "value": "phoneCode" } }] } }] } }] };
1403
1403
  /**
1404
1404
  * __useGetAllCountriesQuery__
1405
1405
  *
@@ -1412,6 +1412,7 @@ exports.GetAllCountriesDocument = { "kind": "Document", "definitions": [{ "kind"
1412
1412
  * @example
1413
1413
  * const { data, loading, error } = useGetAllCountriesQuery({
1414
1414
  * variables: {
1415
+ * criteria: // value for 'criteria'
1415
1416
  * },
1416
1417
  * });
1417
1418
  */