lancer-shared 1.2.333 → 1.2.334
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.
- package/dist/bundle.cjs.js +10 -0
- package/dist/bundle.cjs.js.map +1 -1
- package/dist/bundle.esm.js +9 -1
- package/dist/bundle.esm.js.map +1 -1
- package/dist/schemas/bidder/exceptions/index.d.ts +3 -1
- package/dist/schemas/bidder/exceptions/proxy-not-reachable.exception.d.ts +5 -0
- package/package.json +1 -1
|
@@ -28,6 +28,7 @@ import { ProposalErrorAlertException } from './proposal-error-alert.exception';
|
|
|
28
28
|
import { ProposalFormWarningAlertException } from './proposal-form-warning-alert.exception';
|
|
29
29
|
import { ProposalGenerationFailedException } from './proposal-generation-failed.exception';
|
|
30
30
|
import { ProposalSubmitFailedException } from './proposal-submit-failed.exception';
|
|
31
|
+
import { ProxyNotReachableException } from './proxy-not-reachable.exception';
|
|
31
32
|
import { PuppeteerConnectionErrorException } from './pupeteer-conection-error.exception';
|
|
32
33
|
import { QuestionPairNotMatchingException } from './question-pair-not-matching.exception';
|
|
33
34
|
import { SelectAgencyException } from './select-agency.exception';
|
|
@@ -67,6 +68,7 @@ export * from './proposal-error-alert.exception';
|
|
|
67
68
|
export * from './proposal-form-warning-alert.exception';
|
|
68
69
|
export * from './proposal-generation-failed.exception';
|
|
69
70
|
export * from './proposal-submit-failed.exception';
|
|
71
|
+
export * from './proxy-not-reachable.exception';
|
|
70
72
|
export * from './pupeteer-conection-error.exception';
|
|
71
73
|
export * from './question-pair-not-matching.exception';
|
|
72
74
|
export * from './select-agency.exception';
|
|
@@ -76,4 +78,4 @@ export * from './two-factor-present.exception';
|
|
|
76
78
|
export * from './typed-value-not-matching.exception';
|
|
77
79
|
export * from './typing-input-field.exception';
|
|
78
80
|
export * from './wait-for-function-timeout.exception';
|
|
79
|
-
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 | NetworkRestrictionsException | TwoFactorPresentException;
|
|
81
|
+
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 | NetworkRestrictionsException | TwoFactorPresentException | ProxyNotReachableException;
|