lancer-shared 1.2.266 → 1.2.268

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.
@@ -12,6 +12,7 @@ import { InsufficientConnectsException } from './insufficient-connects.exception
12
12
  import { InvalidCredentialsException } from './invalid-credentials.exception';
13
13
  import { InvalidJobUrlException } from './invalid-job-url.exception';
14
14
  import { JobAlreadyBiddedOnException } from './job-already-bidded-on.exception';
15
+ import { JobAlreadyHiredException } from './job-already-hired.exception';
15
16
  import { JobAlreadyProcessedInAnotherCampaignException } from './job-already-processed-in-another-campaign.exception';
16
17
  import { JobNoLongerAvailableException } from './job-no-longer-available.exception';
17
18
  import { LoginFailedException } from './login-failed.exception';
@@ -48,6 +49,7 @@ export * from './insufficient-connects.exception';
48
49
  export * from './invalid-credentials.exception';
49
50
  export * from './invalid-job-url.exception';
50
51
  export * from './job-already-bidded-on.exception';
52
+ export * from './job-already-hired.exception';
51
53
  export * from './job-already-processed-in-another-campaign.exception';
52
54
  export * from './job-no-longer-available.exception';
53
55
  export * from './login-failed.exception';
@@ -70,4 +72,4 @@ export * from './selector-not-found.exception';
70
72
  export * from './typed-value-not-matching.exception';
71
73
  export * from './typing-input-field.exception';
72
74
  export * from './wait-for-function-timeout.exception';
73
- export type BiddingError = CloudflareChallengeFailedException | DeleteMultiloginProfileException | DropdownOptionNotPresentException | ElementNotClickableException | EvaluateFunctionException | GetMultiloginBrowserException | InitBrowserException | InsufficientConnectsException | InvalidJobUrlException | LoginFailedException | NavigationTimeoutException | NewBrowserPageException | NewPageException | GoToUrlException | ParseConnectsException | ProposalErrorAlertException | ProposalFormWarningAlertException | ProposalSubmitFailedException | PuppeteerConnectionErrorException | QuestionPairNotMatchingException | SelectAgencyException | SelectContractorException | SelectorNotFoundError | TypedValueInFieldNotMatchingException | TypingInputFieldException | WaitForFunctionTimeoutError | IncorrectSecurityQuestionAnswerException | EvaluateElementException | MultiloginAuthenticationException | InvalidCredentialsException | ProposalGenerationFailedException | BoostAboveMaxConnectsException | PrivateJobException | JobNoLongerAvailableException | JobAlreadyProcessedInAnotherCampaignException | JobAlreadyBiddedOnException;
75
+ export type BiddingError = CloudflareChallengeFailedException | DeleteMultiloginProfileException | DropdownOptionNotPresentException | ElementNotClickableException | EvaluateFunctionException | GetMultiloginBrowserException | InitBrowserException | InsufficientConnectsException | InvalidJobUrlException | LoginFailedException | NavigationTimeoutException | NewBrowserPageException | NewPageException | GoToUrlException | ParseConnectsException | ProposalErrorAlertException | ProposalFormWarningAlertException | ProposalSubmitFailedException | PuppeteerConnectionErrorException | QuestionPairNotMatchingException | SelectAgencyException | SelectContractorException | SelectorNotFoundError | TypedValueInFieldNotMatchingException | TypingInputFieldException | WaitForFunctionTimeoutError | IncorrectSecurityQuestionAnswerException | EvaluateElementException | MultiloginAuthenticationException | InvalidCredentialsException | ProposalGenerationFailedException | BoostAboveMaxConnectsException | PrivateJobException | JobNoLongerAvailableException | JobAlreadyProcessedInAnotherCampaignException | JobAlreadyBiddedOnException | JobAlreadyHiredException;
@@ -0,0 +1,5 @@
1
+ export declare class JobAlreadyHiredException extends Error {
2
+ readonly code = "JOB_ALREADY_HIRED_EXCEPTION";
3
+ constructor(message: string);
4
+ }
5
+ export declare const jobAlreadyHiredException: (message: string) => JobAlreadyHiredException;