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
package/dist/bundle.cjs.js
CHANGED
|
@@ -8800,6 +8800,14 @@ const proposalSubmitFailedException = (message) => {
|
|
|
8800
8800
|
return new ProposalSubmitFailedException(message);
|
|
8801
8801
|
};
|
|
8802
8802
|
|
|
8803
|
+
class ProxyNotReachableException extends Error {
|
|
8804
|
+
code = 'PROXY_NOT_REACHABLE_EXCEPTION';
|
|
8805
|
+
constructor(message) {
|
|
8806
|
+
super(message);
|
|
8807
|
+
}
|
|
8808
|
+
}
|
|
8809
|
+
const proxyNotReachableException = (message) => new ProxyNotReachableException(message);
|
|
8810
|
+
|
|
8803
8811
|
class PuppeteerConnectionErrorException extends Error {
|
|
8804
8812
|
code = 'PUPPETEER_CONNECTION_ERROR_EXCEPTION';
|
|
8805
8813
|
constructor(message) {
|
|
@@ -24690,6 +24698,7 @@ exports.ProposalErrorAlertException = ProposalErrorAlertException;
|
|
|
24690
24698
|
exports.ProposalFormWarningAlertException = ProposalFormWarningAlertException;
|
|
24691
24699
|
exports.ProposalGenerationFailedException = ProposalGenerationFailedException;
|
|
24692
24700
|
exports.ProposalSubmitFailedException = ProposalSubmitFailedException;
|
|
24701
|
+
exports.ProxyNotReachableException = ProxyNotReachableException;
|
|
24693
24702
|
exports.PuppeteerConnectionErrorException = PuppeteerConnectionErrorException;
|
|
24694
24703
|
exports.QuestionPairNotMatchingException = QuestionPairNotMatchingException;
|
|
24695
24704
|
exports.ROOM_CRM_ARCHIVED_REASON_LABELS = ROOM_CRM_ARCHIVED_REASON_LABELS;
|
|
@@ -25004,6 +25013,7 @@ exports.proposalSubmitFailedException = proposalSubmitFailedException;
|
|
|
25004
25013
|
exports.proxyAvailableReplacementsSchema = proxyAvailableReplacementsSchema;
|
|
25005
25014
|
exports.proxyCountryCodeToName = proxyCountryCodeToName;
|
|
25006
25015
|
exports.proxyCountryEnum = proxyCountryEnum;
|
|
25016
|
+
exports.proxyNotReachableException = proxyNotReachableException;
|
|
25007
25017
|
exports.proxyProviderSchema = proxyProviderSchema;
|
|
25008
25018
|
exports.proxySchema = proxySchema;
|
|
25009
25019
|
exports.proxyStatusSchema = proxyStatusSchema;
|