lancer-shared 1.2.265 → 1.2.267
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 +26 -0
- package/dist/bundle.cjs.js.map +1 -1
- package/dist/bundle.esm.js +24 -1
- package/dist/bundle.esm.js.map +1 -1
- package/dist/schemas/agent/index.d.ts +18 -11
- package/dist/schemas/bidder/bid.d.ts +207 -121
- package/dist/schemas/bidder/exceptions/index.d.ts +3 -1
- package/dist/schemas/bidder/exceptions/job-already-hired.exception.d.ts +5 -0
- package/dist/schemas/campaign/campaign-analytics.d.ts +82 -47
- package/dist/schemas/campaign/campaign-chat-bot.d.ts +11 -11
- package/dist/schemas/campaign/campaign.d.ts +24 -15
- package/dist/schemas/lead/already-hired-action.d.ts +3 -0
- package/dist/schemas/lead/index.d.ts +76 -46
- package/dist/schemas/lead/lead-status.d.ts +7 -7
- package/dist/schemas/logger/log-event.d.ts +5 -5
- package/dist/schemas/organization/organization-leads.d.ts +4 -4
- package/dist/schemas/scraper/scrape-payload.d.ts +32 -20
- package/package.json +1 -1
|
@@ -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;
|