pollination-react-io 1.86.3 → 1.88.0

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.
@@ -6,7 +6,7 @@ export declare const _defaultConfig: {
6
6
  isLocalJob: boolean;
7
7
  cloudProjectName: any;
8
8
  cloudProjectOwner: any;
9
- validationWithHandlers: boolean;
9
+ useHandlers: boolean;
10
10
  };
11
11
  export declare const ConfigureLocalRun: React.FC<ConfigureLocalRunProps>;
12
12
  export default ConfigureLocalRun;
@@ -29,11 +29,11 @@ export interface LocalConfig {
29
29
  isLocalJob: boolean;
30
30
  cloudProjectName: string;
31
31
  cloudProjectOwner: string;
32
- validationWithHandlers: boolean;
32
+ useHandlers: boolean;
33
33
  }
34
34
  export declare const useCreateStudy: (accountName: string, projectName: string, client: APIClient) => {
35
35
  host: string;
36
36
  createStudy: ({ name, recipe, description }: JobArgs, data: object, onSuccess?: (projectJobInfo: ProjectJobInfo) => void) => Promise<void>;
37
- createLocalStudy: ({ name, description, recipe, recipeFilter, authUserName }: JobArgs, data: object, { localCPUCount, localRunFolder, isLocalJob, cloudProjectName, cloudProjectOwner, validationWithHandlers }: LocalConfig, onSuccess?: (projectJobInfo: ProjectJobInfo) => void, key?: string) => Promise<any>;
37
+ createLocalStudy: ({ name, description, recipe, recipeFilter, authUserName }: JobArgs, data: object, { localCPUCount, localRunFolder, isLocalJob, cloudProjectName, cloudProjectOwner, useHandlers }: LocalConfig, onSuccess?: (projectJobInfo: ProjectJobInfo) => void, key?: string) => Promise<any>;
38
38
  };
39
39
  export {};