lancer-shared 1.2.123 → 1.2.125
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 +551 -566
- package/dist/constants/job-filter-options.d.ts +2 -2
- package/dist/schemas/agent/index.d.ts +132 -38
- package/dist/schemas/bid/bid.d.ts +2623 -1
- package/dist/schemas/bid/exceptions/index.d.ts +3 -1
- package/dist/schemas/bid/exceptions/proposal-generation-failed.exception.d.ts +5 -0
- package/dist/schemas/campaign/campaign-analytics.d.ts +80 -80
- package/dist/schemas/campaign/campaign.d.ts +42 -42
- package/dist/schemas/job/index.d.ts +1 -1
- package/dist/schemas/job/job-filters.d.ts +14 -13
- package/dist/schemas/job/job-listing.d.ts +866 -0
- package/dist/schemas/logger/index.d.ts +2 -1
- package/dist/schemas/logger/log-event.d.ts +14 -1513
- package/dist/schemas/logger/scraper-events.d.ts +1535 -0
- package/dist/schemas/organization/index.d.ts +7 -7
- package/dist/schemas/scraper/exceptions.d.ts +11 -0
- package/dist/schemas/scraper/scrape-payload.d.ts +372 -102
- package/dist/schemas/usage-event/index.d.ts +1 -1
- package/package.json +1 -1
|
@@ -19,6 +19,7 @@ import { GoToUrlException } from './open-new-url.exception';
|
|
|
19
19
|
import { ParseConnectsException } from './parse-connects.exception';
|
|
20
20
|
import { ProposalErrorAlertException } from './proposal-error-alert.exception';
|
|
21
21
|
import { ProposalFormWarningAlertException } from './proposal-form-warning-alert.exception';
|
|
22
|
+
import { ProposalGenerationFailedException } from './proposal-generation-failed.exception';
|
|
22
23
|
import { ProposalSubmitFailedException } from './proposal-submit-failed.exception';
|
|
23
24
|
import { PuppeteerConnectionErrorException } from './pupeteer-conection-error.exception';
|
|
24
25
|
import { QuestionPairNotMatchingException } from './question-pair-not-matching.exception';
|
|
@@ -49,6 +50,7 @@ export * from './open-new-url.exception';
|
|
|
49
50
|
export * from './parse-connects.exception';
|
|
50
51
|
export * from './proposal-error-alert.exception';
|
|
51
52
|
export * from './proposal-form-warning-alert.exception';
|
|
53
|
+
export * from './proposal-generation-failed.exception';
|
|
52
54
|
export * from './proposal-submit-failed.exception';
|
|
53
55
|
export * from './pupeteer-conection-error.exception';
|
|
54
56
|
export * from './question-pair-not-matching.exception';
|
|
@@ -58,4 +60,4 @@ export * from './selector-not-found.exception';
|
|
|
58
60
|
export * from './typed-value-not-matching.exception';
|
|
59
61
|
export * from './typing-input-field.exception';
|
|
60
62
|
export * from './wait-for-function-timeout.exception';
|
|
61
|
-
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;
|
|
63
|
+
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;
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
export declare class ProposalGenerationFailedException extends Error {
|
|
2
|
+
readonly code = "PROPOSAL_GENERATION_FAILED_EXCEPTION";
|
|
3
|
+
constructor(message: string, organizationId: string, campaignId: string, leadId: string);
|
|
4
|
+
}
|
|
5
|
+
export declare const proposalGenerationFailed: (message: string, leadId: string, campaignId: string, organizationId: string) => ProposalGenerationFailedException;
|