lancer-shared 1.2.310 → 1.2.312
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 +108 -136
- package/dist/bundle.cjs.js.map +1 -1
- package/dist/bundle.esm.js +103 -135
- package/dist/bundle.esm.js.map +1 -1
- package/dist/constants/routes.d.ts +8 -0
- package/dist/schemas/campaign/campaign-analytics.d.ts +32 -0
- package/dist/schemas/index.d.ts +1 -1
- package/dist/schemas/scraper/scrape-payload.d.ts +43 -0
- package/dist/schemas/upwork-talent/index.d.ts +562 -0
- package/package.json +1 -1
package/dist/bundle.esm.js
CHANGED
|
@@ -5656,7 +5656,7 @@ const jobListingSchema = objectType({
|
|
|
5656
5656
|
weeklyBudget: amountSchema,
|
|
5657
5657
|
isSTSVectorSearchResult: booleanType(),
|
|
5658
5658
|
});
|
|
5659
|
-
const pagingSchema
|
|
5659
|
+
const pagingSchema = objectType({
|
|
5660
5660
|
total: numberType(),
|
|
5661
5661
|
offset: numberType(),
|
|
5662
5662
|
count: numberType(),
|
|
@@ -5668,7 +5668,7 @@ const jobsSearchSchema = objectType({
|
|
|
5668
5668
|
failed: booleanType(),
|
|
5669
5669
|
}),
|
|
5670
5670
|
jobs: arrayType(jobListingSchema),
|
|
5671
|
-
paging: pagingSchema
|
|
5671
|
+
paging: pagingSchema,
|
|
5672
5672
|
abortController: anyType().nullable(),
|
|
5673
5673
|
currentPage: numberType(),
|
|
5674
5674
|
jobsPerPage: numberType(),
|
|
@@ -9423,138 +9423,6 @@ const systemSchema = objectType({
|
|
|
9423
9423
|
prompts: systemPromptSchema,
|
|
9424
9424
|
});
|
|
9425
9425
|
|
|
9426
|
-
const skillSchema = objectType({
|
|
9427
|
-
prettyName: stringType(),
|
|
9428
|
-
uid: stringType(),
|
|
9429
|
-
});
|
|
9430
|
-
const skillWrapperSchema = objectType({
|
|
9431
|
-
skill: skillSchema,
|
|
9432
|
-
uid: stringType(),
|
|
9433
|
-
});
|
|
9434
|
-
const portfolioCategorySchema = objectType({
|
|
9435
|
-
id: stringType().optional(),
|
|
9436
|
-
level1: stringType().optional(),
|
|
9437
|
-
level2: stringType().optional(),
|
|
9438
|
-
});
|
|
9439
|
-
const portfolioItemSchema = objectType({
|
|
9440
|
-
description: stringType().optional(),
|
|
9441
|
-
title: stringType(),
|
|
9442
|
-
videoUrl: stringType().optional(),
|
|
9443
|
-
uid: stringType(),
|
|
9444
|
-
thumbnailUrl: stringType().optional(),
|
|
9445
|
-
publicPortfolioItem: booleanType(),
|
|
9446
|
-
category: portfolioCategorySchema,
|
|
9447
|
-
});
|
|
9448
|
-
const locationSchema = objectType({
|
|
9449
|
-
country: stringType(),
|
|
9450
|
-
state: stringType().optional(),
|
|
9451
|
-
city: stringType().optional(),
|
|
9452
|
-
region: stringType(),
|
|
9453
|
-
subregion: stringType(),
|
|
9454
|
-
timezone: stringType(),
|
|
9455
|
-
zip: stringType().optional(),
|
|
9456
|
-
});
|
|
9457
|
-
const chargeRateSchema = objectType({
|
|
9458
|
-
rawValue: stringType(),
|
|
9459
|
-
currency: stringType(),
|
|
9460
|
-
});
|
|
9461
|
-
const portraitSchema = objectType({
|
|
9462
|
-
portrait: stringType(),
|
|
9463
|
-
});
|
|
9464
|
-
const statsSchema = objectType({
|
|
9465
|
-
hideJss: booleanType(),
|
|
9466
|
-
hideEarnings: booleanType(),
|
|
9467
|
-
topRatedStatus: stringType(),
|
|
9468
|
-
topRatedStatusEx: stringType(),
|
|
9469
|
-
rate: numberType(),
|
|
9470
|
-
earned: numberType(),
|
|
9471
|
-
jobSuccessScore: numberType(),
|
|
9472
|
-
rankInfo: anyType().optional(),
|
|
9473
|
-
totalHours: numberType(),
|
|
9474
|
-
totalHourlyJobs: numberType(),
|
|
9475
|
-
totalFpJobs: numberType(),
|
|
9476
|
-
totalCompletedJobs: numberType(),
|
|
9477
|
-
});
|
|
9478
|
-
const nuxtStateProfileSchema = objectType({
|
|
9479
|
-
title: stringType().optional(),
|
|
9480
|
-
firstName: stringType().optional(),
|
|
9481
|
-
lastName: stringType().optional(),
|
|
9482
|
-
description: stringType().optional(),
|
|
9483
|
-
location: locationSchema.optional(),
|
|
9484
|
-
chargeRate: chargeRateSchema.optional(),
|
|
9485
|
-
portrait: portraitSchema.optional(),
|
|
9486
|
-
profileUrl: stringType().optional(),
|
|
9487
|
-
offerConsultations: booleanType().optional(),
|
|
9488
|
-
jobSummariesAssignmentRids: anyType().optional(),
|
|
9489
|
-
shortName: stringType().optional(),
|
|
9490
|
-
skills: skillWrapperSchema.array().optional(),
|
|
9491
|
-
stats: statsSchema.optional(),
|
|
9492
|
-
portfolioItems: portfolioItemSchema.array().optional(),
|
|
9493
|
-
totalPortfolioItems: numberType().optional(),
|
|
9494
|
-
specializedProfiles: anyType().array().optional(),
|
|
9495
|
-
isDiversityCertified: booleanType().optional(),
|
|
9496
|
-
isBoosted: booleanType().optional(),
|
|
9497
|
-
boosted: booleanType().optional(),
|
|
9498
|
-
boostedWouldHaveBeen: booleanType().optional(),
|
|
9499
|
-
});
|
|
9500
|
-
const identitySchema = objectType({
|
|
9501
|
-
id: stringType().optional(),
|
|
9502
|
-
ciphertext: stringType(),
|
|
9503
|
-
uid: stringType(),
|
|
9504
|
-
});
|
|
9505
|
-
const agencySchema = objectType({
|
|
9506
|
-
orgId: stringType(),
|
|
9507
|
-
ciphertext: stringType(),
|
|
9508
|
-
name: stringType(),
|
|
9509
|
-
classifications: anyType().array(),
|
|
9510
|
-
logo: stringType().optional(),
|
|
9511
|
-
hideEarnings: booleanType(),
|
|
9512
|
-
totalEarnings: numberType(),
|
|
9513
|
-
isAgencyDiversityCertified: anyType().array(),
|
|
9514
|
-
});
|
|
9515
|
-
const optionsSchema = objectType({
|
|
9516
|
-
position: numberType(),
|
|
9517
|
-
});
|
|
9518
|
-
const upworkTalentSchema = objectType({
|
|
9519
|
-
identity: identitySchema,
|
|
9520
|
-
isPibAvailable: booleanType(),
|
|
9521
|
-
profile: nuxtStateProfileSchema,
|
|
9522
|
-
agency: agencySchema,
|
|
9523
|
-
options: optionsSchema,
|
|
9524
|
-
linkedInURL: stringType().nullish(),
|
|
9525
|
-
});
|
|
9526
|
-
const statusSchema = objectType({
|
|
9527
|
-
loading: booleanType(),
|
|
9528
|
-
loaded: booleanType(),
|
|
9529
|
-
failed: booleanType(),
|
|
9530
|
-
});
|
|
9531
|
-
const pagingSchema = objectType({
|
|
9532
|
-
total: numberType(),
|
|
9533
|
-
offset: numberType(),
|
|
9534
|
-
count: numberType(),
|
|
9535
|
-
originTotal: numberType(),
|
|
9536
|
-
pagesTotal: numberType(),
|
|
9537
|
-
page: numberType(),
|
|
9538
|
-
perPage: numberType(),
|
|
9539
|
-
});
|
|
9540
|
-
const flagsSchema = objectType({
|
|
9541
|
-
portfolioSearch: booleanType(),
|
|
9542
|
-
});
|
|
9543
|
-
const nuxtStateProfileSearchSchema = objectType({
|
|
9544
|
-
status: statusSchema,
|
|
9545
|
-
profiles: nuxtStateProfileSchema.array(),
|
|
9546
|
-
currentPage: numberType(),
|
|
9547
|
-
paging: pagingSchema,
|
|
9548
|
-
flags: flagsSchema,
|
|
9549
|
-
searchQueryCache: recordType(anyType()),
|
|
9550
|
-
});
|
|
9551
|
-
const profileSearchNuxtObjectStateSchema = objectType({
|
|
9552
|
-
profilesSearch: nuxtStateProfileSearchSchema,
|
|
9553
|
-
});
|
|
9554
|
-
const profileSearchNuxtObjectSchema = objectType({
|
|
9555
|
-
state: profileSearchNuxtObjectStateSchema,
|
|
9556
|
-
});
|
|
9557
|
-
|
|
9558
9426
|
const periodTypeSchema = z.union([
|
|
9559
9427
|
z.literal("weekly"),
|
|
9560
9428
|
z.literal("monthly"),
|
|
@@ -9660,6 +9528,98 @@ const getTop20CategoriesByAvgHourlyRatePaidResponseSchema = z.array(z.object({
|
|
|
9660
9528
|
avgHourlyRatePaid: z.number(),
|
|
9661
9529
|
}));
|
|
9662
9530
|
|
|
9531
|
+
const upworkTalentSkillWithRankSchema = objectType({
|
|
9532
|
+
skill: stringType(),
|
|
9533
|
+
rank: numberType(),
|
|
9534
|
+
});
|
|
9535
|
+
const upworkTalentSchema = objectType({
|
|
9536
|
+
id: stringType(),
|
|
9537
|
+
ciphertext: stringType(),
|
|
9538
|
+
vanityUrl: stringType().nullable(),
|
|
9539
|
+
name: stringType(),
|
|
9540
|
+
title: stringType(),
|
|
9541
|
+
description: stringType().nullable(),
|
|
9542
|
+
city: stringType().nullable(),
|
|
9543
|
+
country: stringType(),
|
|
9544
|
+
countryCode: stringType().nullable(),
|
|
9545
|
+
bigPortraitUrl: stringType().nullable(),
|
|
9546
|
+
portrait500Url: stringType().nullable(),
|
|
9547
|
+
hourlyRate: numberType().nullable(),
|
|
9548
|
+
totalJobsWorked: numberType(),
|
|
9549
|
+
totalJobsWorkedRecent: numberType(),
|
|
9550
|
+
totalFixedJobs: numberType(),
|
|
9551
|
+
totalHourlyJobs: numberType(),
|
|
9552
|
+
activeJobs: numberType().nullable(),
|
|
9553
|
+
hideEarnings: booleanType(),
|
|
9554
|
+
contractorEarnings: numberType(),
|
|
9555
|
+
recentEarnings: numberType(),
|
|
9556
|
+
averageRecentEarnings: numberType(),
|
|
9557
|
+
mrr: numberType(),
|
|
9558
|
+
earningsPerProject: numberType(),
|
|
9559
|
+
earningsPerProjectRecent: numberType(),
|
|
9560
|
+
badge: z.enum(['top_rated_plus', 'top_rated', 'rising_talent']).nullable(),
|
|
9561
|
+
jobSuccessScore: numberType().nullable(),
|
|
9562
|
+
totalFeedback: numberType(),
|
|
9563
|
+
rating: numberType(),
|
|
9564
|
+
ratingRecent: numberType(),
|
|
9565
|
+
isVetted: booleanType(),
|
|
9566
|
+
skills: stringType().array(),
|
|
9567
|
+
videoUrl: stringType().nullable(),
|
|
9568
|
+
memberSince: stringType().nullable(),
|
|
9569
|
+
worldTotal: numberType().nullable(),
|
|
9570
|
+
countryTotal: numberType().nullable(),
|
|
9571
|
+
mrrWorldRank: numberType().nullable(),
|
|
9572
|
+
mrrCountryRank: numberType().nullable(),
|
|
9573
|
+
totalEarningsWorldRank: numberType().nullable(),
|
|
9574
|
+
totalEarningsCountryRank: numberType().nullable(),
|
|
9575
|
+
recentEarningsWorldRank: numberType().nullable(),
|
|
9576
|
+
recentEarningsCountryRank: numberType().nullable(),
|
|
9577
|
+
totalProjectsWorldRank: numberType().nullable(),
|
|
9578
|
+
totalProjectsCountryRank: numberType().nullable(),
|
|
9579
|
+
averageEarningsPerProjectWorldRank: numberType().nullable(),
|
|
9580
|
+
averageEarningsPerProjectCountryRank: numberType().nullable(),
|
|
9581
|
+
skillsWithRank: upworkTalentSkillWithRankSchema.array(),
|
|
9582
|
+
});
|
|
9583
|
+
const upworkTalentSearchRequestSchema = objectType({
|
|
9584
|
+
page: numberType().nullable().optional(),
|
|
9585
|
+
limit: numberType().nullable().optional(),
|
|
9586
|
+
sortBy: stringType().nullable().optional(),
|
|
9587
|
+
sortOrder: z.enum(['asc', 'desc']).nullable().optional(),
|
|
9588
|
+
country: stringType().nullable().optional(),
|
|
9589
|
+
skill: stringType().nullable().optional(),
|
|
9590
|
+
badge: z.enum(['top_rated_plus', 'top_rated', 'rising_talent']).nullable().optional(),
|
|
9591
|
+
isVetted: booleanType().nullable().optional(),
|
|
9592
|
+
minEarnings: numberType().nullable().optional(),
|
|
9593
|
+
maxEarnings: numberType().nullable().optional(),
|
|
9594
|
+
minMrr: numberType().nullable().optional(),
|
|
9595
|
+
maxMrr: numberType().nullable().optional(),
|
|
9596
|
+
minHourlyRate: numberType().nullable().optional(),
|
|
9597
|
+
maxHourlyRate: numberType().nullable().optional(),
|
|
9598
|
+
minJobSuccessScore: numberType().nullable().optional(),
|
|
9599
|
+
searchQuery: stringType().nullable().optional(),
|
|
9600
|
+
});
|
|
9601
|
+
const upworkTalentSearchResponseSchema = objectType({
|
|
9602
|
+
data: upworkTalentSchema.array(),
|
|
9603
|
+
pagination: objectType({
|
|
9604
|
+
page: numberType(),
|
|
9605
|
+
limit: numberType(),
|
|
9606
|
+
total: numberType(),
|
|
9607
|
+
totalPages: numberType(),
|
|
9608
|
+
}),
|
|
9609
|
+
});
|
|
9610
|
+
const upworkTalentCountrySchema = objectType({
|
|
9611
|
+
country: stringType(),
|
|
9612
|
+
countryCode: stringType().nullable(),
|
|
9613
|
+
count: numberType(),
|
|
9614
|
+
});
|
|
9615
|
+
const upworkTalentSkillsSchema = objectType({
|
|
9616
|
+
skill: stringType(),
|
|
9617
|
+
count: numberType(),
|
|
9618
|
+
});
|
|
9619
|
+
const upworkTalentSkillsResponseSchema = objectType({
|
|
9620
|
+
data: upworkTalentSkillsSchema.array(),
|
|
9621
|
+
});
|
|
9622
|
+
|
|
9663
9623
|
const breakdownSchema = objectType({
|
|
9664
9624
|
suitability: numberType(),
|
|
9665
9625
|
proposal: numberType(),
|
|
@@ -15484,6 +15444,7 @@ const ROUTES = {
|
|
|
15484
15444
|
BY_PROVIDER: (provider) => `admin/bidder-accounts/${provider}`,
|
|
15485
15445
|
BY_PROVIDER_AND_ID: (provider, id) => `admin/bidder-accounts/${provider}/${id}`,
|
|
15486
15446
|
REFRESH_PROXY: (bidderId) => `admin/bidder-accounts/${bidderId}/refresh-proxy`,
|
|
15447
|
+
REFRESH_WITH_IPROYAL_PROXY: (bidderId) => `admin/bidder-accounts/${bidderId}/refresh-with-iproyal-proxy`,
|
|
15487
15448
|
AGENCIES: 'admin/bidder-accounts/agencies',
|
|
15488
15449
|
ASSIGN_IPROYAL_PROXY: (bidderId) => `admin/bidder-accounts/${bidderId}/assign-iproyal-proxy`,
|
|
15489
15450
|
},
|
|
@@ -15721,6 +15682,13 @@ const ROUTES = {
|
|
|
15721
15682
|
TOP_10_CATEGORIES_BY_AVG_PAID_PER_PROJECT: 'upwork-analytics/top-10-categories-by-avg-paid-per-project',
|
|
15722
15683
|
TOP_20_CATEGORIES_BY_AVG_HOURLY_RATE_PAID: 'upwork-analytics/top-20-categories-by-avg-hourly-rate-paid',
|
|
15723
15684
|
},
|
|
15685
|
+
UPWORK_TALENT: {
|
|
15686
|
+
BASE: 'upwork-talent',
|
|
15687
|
+
SEARCH: 'upwork-talent/search',
|
|
15688
|
+
BY_ID: (id) => `upwork-talent/${id}`,
|
|
15689
|
+
COUNTRIES: 'upwork-talent/countries',
|
|
15690
|
+
SKILLS: 'upwork-talent/skills',
|
|
15691
|
+
},
|
|
15724
15692
|
BIDDER_INSTANCES: {
|
|
15725
15693
|
BASE: 'bidder-instances',
|
|
15726
15694
|
BY_ID: (id) => `bidder-instances/${id}`,
|
|
@@ -24315,5 +24283,5 @@ async function tryCatch(promise) {
|
|
|
24315
24283
|
}
|
|
24316
24284
|
}
|
|
24317
24285
|
|
|
24318
|
-
export { BidderAccountAlreadyConnectedException, BoostAboveMaxConnectsException, CAMPAIGN_NOTIFICATION_SETTINGS, CAMPAIGN_NOTIFICATION_TYPES, CLIENT_SIZE_TO_NUMBER, CloudflareChallengeFailedException, DeleteMultiloginProfileException, DropdownOptionNotPresentException, ElementNotClickableException, EvaluateElementException, EvaluateFunctionException, FEED_JOB_TO_JOB_DETAILS_FIELD_MAPPING, FailedToParseNuxtJobException, FeedJobEnrichException, FeedScrapeException, GOAT_COUNTRIES, GetMultiloginBrowserException, GoToUrlException, HIERARCHICAL_CATEGORIES_TO_CHILDREN, INFINITY, IncorrectSecurityQuestionAnswerException, InitBrowserException, InsufficientConnectsException, InvalidCredentialsException, InvalidGoogleOAuthTokenException, InvalidJobUrlException, JOB_FILTER_OPTIONS, JobAlreadyBiddedOnException, JobAlreadyHiredException, JobAlreadyProcessedInAnotherCampaignException, JobIsPrivateException, JobNoLongerAvailableException, LogEventTypeEnum, LoginFailedException, MultiloginAuthenticationException, NavigationTimeoutException, NetworkRestrictionsException, NewBrowserPageException, NewPageException, NoBidderAccountsAvailableException, NoGoogleOAuthTokensFoundException, NoScraperAccountAvailableException, OpenPageException, PageClosedException, PageContentException, ParseConnectsException, ParseJobListingsException, PrivateJobException, ProposalErrorAlertException, ProposalFormWarningAlertException, ProposalGenerationFailedException, ProposalSubmitFailedException, PuppeteerConnectionErrorException, QuestionPairNotMatchingException, ROUTES, ScraperAccountProxyNotFoundException, SearchFieldsSchema, SearchQueryBuilder, SelectAgencyException, SelectContractorException, SelectorNotFoundError, TwoFactorPresentException, TypedValueInFieldNotMatchingException, TypingInputFieldException, WaitForFunctionTimeoutError, acceptUpworkInvitationResponseSchema, acceptUpworkInvitationSchema, accountStatusDisplayMap, accountStatusOrder, accountStatusSchema, addFromClientHireRateNodeFormSchema, addFromClientRatingNodeFormSchema, addFromClientSizeNodeFormSchema, addFromClientSpentNodeFormSchema, addFromHourlyRateNodeFormSchema, addFromSuitabilityNodeFormSchema, agencyBidPayloadSchema, agencyBidProposalDataSchema, agentCalculateSuitabilityRequestSchema, agentGenerateProposalRequestSchema, agentGenerateProposalResponseSchema, agentPickSpecialisedProfileRequestSchema, agentPickSpecialisedProfileResponseSchema, agentStatusSchema, agentTaskResponseSchema, aiConfigSchema, alreadyHiredActionEnum, bidAsEnum, bidConfigSchema, bidDtoSchema, bidFailedSchema, bidPayloadProposalDataSchema, bidPayloadSchema, bidRangeSchema, bidSuccessSchema, bidWithWarningEnum, bidderAccountAgencyContractorSchema, bidderAccountAgencySchema, bidderAccountAlreadyConnectedException, bidderAccountPortfolioSchema, bidderAccountProvider, bidderAccountProviderDisplayMap, bidderAccountSchema, bidderAccountStatusEnum, bidderInstanceSchema, bidderInstanceStatusEnum, biddingCompletedEventMetadata, biddingFailedEventMetadata, biddingHourlyRateStrategyEnum, biddingProcessingEventMetadata, biddingRejectedWithFeedbackEventMetadata, billingIntervalEnum, booleanSchema, boostAboveMaxConnectsException, boostFormSchema, buildRoute, campaignAIMetricsSchema, campaignActivityCreateSchema, campaignActivitySchema, campaignActivityTypeSchema, campaignAnalyticsResponseSchema, campaignAnalyticsSchema, campaignAnalyticsStatsSchema, campaignCountByStatusSchema, campaignExpensesSchema, campaignInsightsSchema, campaignNotificationType, campaignSchema, campaignStatusActivitySchema, campaignStatusSchema, capitalize, caseStudySchema, categoryEnum, chatbotChannelSchema, chatbotPlatforms, chatbotSchema, checkLeadStatusPayloadSchema, clientIndustryEnum, clientInfoSchema, clientReviewSchema, clientSizeEnum, cloudflareProtectionFailure, connectUpworkAccountSchema, convertToUtc, countryMapping, coverLetterTemplateSchema, createBidderAccountSchema, createCampaignSchema, createChatbotSchema, createClientHireRateFormSchema, createClientRatingFormSchema, createClientSizeFormSchema, createClientSpentFormSchema, createCoverLetterTemplateSchema, createHourlyRateFormSchema, createOrganizationProfileSchema, createOrganizationSchema, createSampleSchema, createScraperAccountSchema, createSuitabilityFormSchema, dailyUsageSchema, dateSchema, defaultQuestions, deleteMultiloginProfileException, dropdownOptionNotPresentException, elementNotClickableException, employmentHistorySchema, engagementTypeEnum, englishLevelEnum, evaluateElementException, evaluateFunctionException, eventLoggerPayloadSchema, experienceLevelEnum, externalProxySchema, failedToParseNuxtJobException, feedChunkEnrichCompletedEventMetadata, feedChunkEnrichFailedEventMetadata, feedChunkEnrichStartedEventMetadata, feedEnrichCompletedEventMetadata, feedEnrichFailedEventMetadata, feedEnrichStartedEventMetadata, feedJobEnrichCompletedEventMetadata, feedJobEnrichFailedEventMetadata, feedJobEnrichFailedException, feedJobEnrichStartedEventMetadata, feedJobSchema, feedScrapeCompletedEventMetadata, feedScrapeException, feedScrapeFailedEventMetadata, feedScrapeResultSchema, feedScrapeStartedEventMetadata, filterOptionItemSchema, filterOptionsResponseSchema, findLeadsRequestSchema, findLeadsResponseSchema, forgotPasswordSchema, formatCurrency, formatDuration, freelancerBidPayloadSchema, freelancerBidProposalDataSchema, generateLeadCountsRequestSchema, generateSlug, getAverageClientHireRateResponseSchema, getAverageClientTotalSpentResponseSchema, getAverageFixedPriceBudgetResponseSchema, getAverageHourlyRateBudgetResponseSchema, getAverageHourlyRatePaidByCountryResponseSchema, getAveragePaidPerProjectResponseSchema, getBiddingProcessingEventFromAnotherCampaignsPayloadSchema, getBiddingProcessingEventFromAnotherCampaignsResponseSchema, getCampaignLeadsRequestQuerySchema, getCampaignLeadsResponseSchema, getCampaignLeadsStatusEnum, getJobsByClientTotalSpentResponseSchema, getJobsByCountryResponseSchema, getJobsByDayOfWeekResponseSchema, getJobsByHourPostedResponseSchema, getJobsCountLast3MonthsResponseSchema, getJobsPostedResponseSchema, getMultiloginBrowserException, getNextStatus, getOrganizationLeadsRequestQuerySchema, getOrganizationLeadsStatusEnum, getPreviousStatus, getRouteWithoutAdminPrefix, getSamplesRequestSchema, getTop10CategoriesByAvgHourlyBudgetResponseSchema, getTop10CategoriesByAvgPaidPerProjectResponseSchema, getTop10CategoriesByClientHireRateResponseSchema, getTop10CategoriesByClientTotalSpentResponseSchema, getTop10CategoriesByJobsPostedResponseSchema, getTop10CountriesByAvgHourlyBudgetResponseSchema, getTop10CountriesByAvgPaidPerProjectResponseSchema, getTop10CountriesByClientHireRateResponseSchema, getTop10CountriesByClientTotalSpentResponseSchema, getTop10CountriesByJobsPostedResponseSchema, getTop10SkillsResponseSchema, getTop20CategoriesByAvgHourlyRatePaidResponseSchema, goToUrlException, hasQuestionsEnum, incorrectSecurityQuestionAnswerException, initBrowserException, insufficeintBoostConnectsActionEnum, insufficientConnectsActionEnum, insufficientConnectsException, invalidCredentialsException, invalidGoogleOAuthTokenSchema, invalidJobUrlException, invoiceLineItemSchema, invoiceSchema, invoiceStatusEnum, invoiceStatusNames, invoiceStripeMetadataLineSchema, invoiceStripeMetadataSchema, isNumeric, isPaymentVerifiedEnum, isPhoneVerifiedEnum, isWorkTime, jobActivityDeltaSchema, jobActivityOffsetEnum, jobActivityOffsetHourSchema, jobActivityOffsetHours, jobActivitySchema, jobActivityScrapeFailedEventMetadata, jobActivityScrapedEventMetadata, jobActivitySnapshotSchema, jobActivityUpdateSchema, jobAlreadyBiddedOnException, jobAlreadyHiredException, jobAlreadyProcessedInAnotherCampaignException, jobDetailsStateSchema, jobFiltersSchema, jobIsPrivateException, jobListingSchema, jobNoLongerAvailableException, jobQualityScoreSchema, jobSkillsSchema, jobStatusOrder, labelEnum, lancerBiddingExceptionEventMetadata, largeCountries, leadAnalysisActivitySchema, leadBiddingConfigSchema, leadResponseSchema, leadSchema, leadStatusActivitySchema, leadStatusEnum, leadStatusEventMetadata, limitsSchema, logEventSchema, loginFailedException, loginSchema, metadataSchema, multiloginAuthenticationException, navigationTimeoutException, networkRestrictionsException, newBrowserPageException, newPageException, noBidderAccountsAvailableException, noGoogleOAuthTokensFoundException, noScraperAccountAvailableException, nodeEnums, notificationConfigSchema, nuxtStateJobDetailsSchema, nuxtStateJobSchema, nuxtStateJobsSearchSchema, onboardingSectionSchema, openPageException, organizationCampaignStatsSchema, organizationMemberRoleEnum, organizationMemberSchema, organizationProfileSchema, organizationSchema, organizationSettingsSchema, organizationTierEnum, organizationTypeSchema, organizationUpdateSchema, pageClosedException, pageContentException, parseConnectsException, parseJobListingsException, passwordSchema, paymentTypeEnum, periodTypeSchema, periodUsageSchema, pickProfileRequestSchema, pickProfileResponseSchema, planFeatureSchema, planPricingIntervalSchema, planPricingSchema, planSchema, planSlugEnum, planSlugToNameMap, planStripeMetadataSchema, pluralize, portfolioSchema, privateJobException, processFeedPayloadSchema, profileSearchNuxtObjectSchema, profileSearchNuxtObjectStateSchema, projectDurationEnum, proposalCompleteEventMetadataSchema, proposalErrorAlertException, proposalFormWarningAlertException, proposalGenerationFailed, proposalSchema, proposalSentActivitySchema, proposalSubmitFailedException, proxyAvailableReplacementsSchema, proxyCountryCodeToName, proxyCountryEnum, proxyProviderSchema, proxySchema, proxyStatusSchema, proxyTypeSchema, puppeteerConnectionErrorException, questionAnswerPairSchema, questionPairNotMatchingException, questionRulesSchema, reconnectBidderAccountRequestBodySchema, reconnectBidderAccountResponseSchema, refreshRotatingProxiesRequestBodySchema, regionEnum, regionMapping, regionNames, regionSchema, registerSchema, requiredEarningsEnum, requiredJSSEnum, sampleSchema, savedSearchSchema, scheduleBiddingEventMetadataSchema, scrapeJobActivityPayloadSchema, scrapeJobPayloadSchema, scrapeJobsCompletedEventMetadata, scrapePayloadSchema, scrapeResultSchema, scrapeUserProfileRequestSchema, scraperAccountErrorEventMetadata, scraperAccountProxyNotFoundException, scraperAccountRegionEnum, scraperAccountSchema, scraperAccountSwapCompletedEventMetadata, scraperAccountSwapFailedEventMetadata, scraperAccountSwapStartedEventMetadata, scraperAccountTypeEnum, selectAgencyException, selectContractorException, selectorNotFoundError, sendAlertPayloadSchema, sendNotificationRequestSchema, specialisedProfileSchema, stringify, subscribePayloadSchema, subscriptionSchema, subscriptionSourceEnum, subscriptionStatusEnum, subscriptionStripeMetadataItemSchema, subscriptionStripeMetadataSchema, suitabilityCompleteEventMetadataSchema, suitabilityFailedEventMetadataSchema, suitabilityPendingEventMetadataSchema, suitabilityRatingSchema, syncProposalsStatusCompletedEventMetadata, syncProposalsStatusFailedEventMetadata, syncProposalsStatusRequestPayloadSchema, systemPromptSchema, systemSchema, talentTypeEnum, timeBlockSchema, trackUsageEventTypeEnum, trackUsagePayloadSchema, transactionSchema, transactionStatusEnum, transactionStripeMetadataSchema, transactionTypeEnum, tryCatch, twoFactorPresentException, typedValueInFieldNotMatchingException, typingInputFieldException, updateBidderAccountSchema, updateCampaignAnalyticsSchema, updateCampaignSchema, updateChatbotSchema, updateLeadStatusSchema, updateOrganizationLeadsStatusPayloadSchema, updateOrganizationProfileSchema, updateSampleSchema, updateScraperAccountSchema, updateSuitableLeadNotificationBodySchema, updateSuitableLeadNotificationType, upworkAccountConnectSchema, upworkAccountConnectStatusSchema, upworkJobSchema, upworkProfileSchema, upworkTalentSchema, usageEventMetadataSchema, usageEventSchema, usageEventTypeEnum, userAccountBiddingExceptionEventMetadata, userSchema, vendorQualificationSchema, vendorTypeEnum, verifyBidderAccountCredentialsResponseSchema, verifyBidderAccountCredentialsSchema, verifyCredentialsFailedEventMetadataSchema, verifyCredentialsSucceededEventMetadataSchema, waitForFunctionTimeoutError, weekDaysEnum, workTimeSchema };
|
|
24286
|
+
export { BidderAccountAlreadyConnectedException, BoostAboveMaxConnectsException, CAMPAIGN_NOTIFICATION_SETTINGS, CAMPAIGN_NOTIFICATION_TYPES, CLIENT_SIZE_TO_NUMBER, CloudflareChallengeFailedException, DeleteMultiloginProfileException, DropdownOptionNotPresentException, ElementNotClickableException, EvaluateElementException, EvaluateFunctionException, FEED_JOB_TO_JOB_DETAILS_FIELD_MAPPING, FailedToParseNuxtJobException, FeedJobEnrichException, FeedScrapeException, GOAT_COUNTRIES, GetMultiloginBrowserException, GoToUrlException, HIERARCHICAL_CATEGORIES_TO_CHILDREN, INFINITY, IncorrectSecurityQuestionAnswerException, InitBrowserException, InsufficientConnectsException, InvalidCredentialsException, InvalidGoogleOAuthTokenException, InvalidJobUrlException, JOB_FILTER_OPTIONS, JobAlreadyBiddedOnException, JobAlreadyHiredException, JobAlreadyProcessedInAnotherCampaignException, JobIsPrivateException, JobNoLongerAvailableException, LogEventTypeEnum, LoginFailedException, MultiloginAuthenticationException, NavigationTimeoutException, NetworkRestrictionsException, NewBrowserPageException, NewPageException, NoBidderAccountsAvailableException, NoGoogleOAuthTokensFoundException, NoScraperAccountAvailableException, OpenPageException, PageClosedException, PageContentException, ParseConnectsException, ParseJobListingsException, PrivateJobException, ProposalErrorAlertException, ProposalFormWarningAlertException, ProposalGenerationFailedException, ProposalSubmitFailedException, PuppeteerConnectionErrorException, QuestionPairNotMatchingException, ROUTES, ScraperAccountProxyNotFoundException, SearchFieldsSchema, SearchQueryBuilder, SelectAgencyException, SelectContractorException, SelectorNotFoundError, TwoFactorPresentException, TypedValueInFieldNotMatchingException, TypingInputFieldException, WaitForFunctionTimeoutError, acceptUpworkInvitationResponseSchema, acceptUpworkInvitationSchema, accountStatusDisplayMap, accountStatusOrder, accountStatusSchema, addFromClientHireRateNodeFormSchema, addFromClientRatingNodeFormSchema, addFromClientSizeNodeFormSchema, addFromClientSpentNodeFormSchema, addFromHourlyRateNodeFormSchema, addFromSuitabilityNodeFormSchema, agencyBidPayloadSchema, agencyBidProposalDataSchema, agentCalculateSuitabilityRequestSchema, agentGenerateProposalRequestSchema, agentGenerateProposalResponseSchema, agentPickSpecialisedProfileRequestSchema, agentPickSpecialisedProfileResponseSchema, agentStatusSchema, agentTaskResponseSchema, aiConfigSchema, alreadyHiredActionEnum, bidAsEnum, bidConfigSchema, bidDtoSchema, bidFailedSchema, bidPayloadProposalDataSchema, bidPayloadSchema, bidRangeSchema, bidSuccessSchema, bidWithWarningEnum, bidderAccountAgencyContractorSchema, bidderAccountAgencySchema, bidderAccountAlreadyConnectedException, bidderAccountPortfolioSchema, bidderAccountProvider, bidderAccountProviderDisplayMap, bidderAccountSchema, bidderAccountStatusEnum, bidderInstanceSchema, bidderInstanceStatusEnum, biddingCompletedEventMetadata, biddingFailedEventMetadata, biddingHourlyRateStrategyEnum, biddingProcessingEventMetadata, biddingRejectedWithFeedbackEventMetadata, billingIntervalEnum, booleanSchema, boostAboveMaxConnectsException, boostFormSchema, buildRoute, campaignAIMetricsSchema, campaignActivityCreateSchema, campaignActivitySchema, campaignActivityTypeSchema, campaignAnalyticsResponseSchema, campaignAnalyticsSchema, campaignAnalyticsStatsSchema, campaignCountByStatusSchema, campaignExpensesSchema, campaignInsightsSchema, campaignNotificationType, campaignSchema, campaignStatusActivitySchema, campaignStatusSchema, capitalize, caseStudySchema, categoryEnum, chatbotChannelSchema, chatbotPlatforms, chatbotSchema, checkLeadStatusPayloadSchema, clientIndustryEnum, clientInfoSchema, clientReviewSchema, clientSizeEnum, cloudflareProtectionFailure, connectUpworkAccountSchema, convertToUtc, countryMapping, coverLetterTemplateSchema, createBidderAccountSchema, createCampaignSchema, createChatbotSchema, createClientHireRateFormSchema, createClientRatingFormSchema, createClientSizeFormSchema, createClientSpentFormSchema, createCoverLetterTemplateSchema, createHourlyRateFormSchema, createOrganizationProfileSchema, createOrganizationSchema, createSampleSchema, createScraperAccountSchema, createSuitabilityFormSchema, dailyUsageSchema, dateSchema, defaultQuestions, deleteMultiloginProfileException, dropdownOptionNotPresentException, elementNotClickableException, employmentHistorySchema, engagementTypeEnum, englishLevelEnum, evaluateElementException, evaluateFunctionException, eventLoggerPayloadSchema, experienceLevelEnum, externalProxySchema, failedToParseNuxtJobException, feedChunkEnrichCompletedEventMetadata, feedChunkEnrichFailedEventMetadata, feedChunkEnrichStartedEventMetadata, feedEnrichCompletedEventMetadata, feedEnrichFailedEventMetadata, feedEnrichStartedEventMetadata, feedJobEnrichCompletedEventMetadata, feedJobEnrichFailedEventMetadata, feedJobEnrichFailedException, feedJobEnrichStartedEventMetadata, feedJobSchema, feedScrapeCompletedEventMetadata, feedScrapeException, feedScrapeFailedEventMetadata, feedScrapeResultSchema, feedScrapeStartedEventMetadata, filterOptionItemSchema, filterOptionsResponseSchema, findLeadsRequestSchema, findLeadsResponseSchema, forgotPasswordSchema, formatCurrency, formatDuration, freelancerBidPayloadSchema, freelancerBidProposalDataSchema, generateLeadCountsRequestSchema, generateSlug, getAverageClientHireRateResponseSchema, getAverageClientTotalSpentResponseSchema, getAverageFixedPriceBudgetResponseSchema, getAverageHourlyRateBudgetResponseSchema, getAverageHourlyRatePaidByCountryResponseSchema, getAveragePaidPerProjectResponseSchema, getBiddingProcessingEventFromAnotherCampaignsPayloadSchema, getBiddingProcessingEventFromAnotherCampaignsResponseSchema, getCampaignLeadsRequestQuerySchema, getCampaignLeadsResponseSchema, getCampaignLeadsStatusEnum, getJobsByClientTotalSpentResponseSchema, getJobsByCountryResponseSchema, getJobsByDayOfWeekResponseSchema, getJobsByHourPostedResponseSchema, getJobsCountLast3MonthsResponseSchema, getJobsPostedResponseSchema, getMultiloginBrowserException, getNextStatus, getOrganizationLeadsRequestQuerySchema, getOrganizationLeadsStatusEnum, getPreviousStatus, getRouteWithoutAdminPrefix, getSamplesRequestSchema, getTop10CategoriesByAvgHourlyBudgetResponseSchema, getTop10CategoriesByAvgPaidPerProjectResponseSchema, getTop10CategoriesByClientHireRateResponseSchema, getTop10CategoriesByClientTotalSpentResponseSchema, getTop10CategoriesByJobsPostedResponseSchema, getTop10CountriesByAvgHourlyBudgetResponseSchema, getTop10CountriesByAvgPaidPerProjectResponseSchema, getTop10CountriesByClientHireRateResponseSchema, getTop10CountriesByClientTotalSpentResponseSchema, getTop10CountriesByJobsPostedResponseSchema, getTop10SkillsResponseSchema, getTop20CategoriesByAvgHourlyRatePaidResponseSchema, goToUrlException, hasQuestionsEnum, incorrectSecurityQuestionAnswerException, initBrowserException, insufficeintBoostConnectsActionEnum, insufficientConnectsActionEnum, insufficientConnectsException, invalidCredentialsException, invalidGoogleOAuthTokenSchema, invalidJobUrlException, invoiceLineItemSchema, invoiceSchema, invoiceStatusEnum, invoiceStatusNames, invoiceStripeMetadataLineSchema, invoiceStripeMetadataSchema, isNumeric, isPaymentVerifiedEnum, isPhoneVerifiedEnum, isWorkTime, jobActivityDeltaSchema, jobActivityOffsetEnum, jobActivityOffsetHourSchema, jobActivityOffsetHours, jobActivitySchema, jobActivityScrapeFailedEventMetadata, jobActivityScrapedEventMetadata, jobActivitySnapshotSchema, jobActivityUpdateSchema, jobAlreadyBiddedOnException, jobAlreadyHiredException, jobAlreadyProcessedInAnotherCampaignException, jobDetailsStateSchema, jobFiltersSchema, jobIsPrivateException, jobListingSchema, jobNoLongerAvailableException, jobQualityScoreSchema, jobSkillsSchema, jobStatusOrder, labelEnum, lancerBiddingExceptionEventMetadata, largeCountries, leadAnalysisActivitySchema, leadBiddingConfigSchema, leadResponseSchema, leadSchema, leadStatusActivitySchema, leadStatusEnum, leadStatusEventMetadata, limitsSchema, logEventSchema, loginFailedException, loginSchema, metadataSchema, multiloginAuthenticationException, navigationTimeoutException, networkRestrictionsException, newBrowserPageException, newPageException, noBidderAccountsAvailableException, noGoogleOAuthTokensFoundException, noScraperAccountAvailableException, nodeEnums, notificationConfigSchema, nuxtStateJobDetailsSchema, nuxtStateJobSchema, nuxtStateJobsSearchSchema, onboardingSectionSchema, openPageException, organizationCampaignStatsSchema, organizationMemberRoleEnum, organizationMemberSchema, organizationProfileSchema, organizationSchema, organizationSettingsSchema, organizationTierEnum, organizationTypeSchema, organizationUpdateSchema, pageClosedException, pageContentException, parseConnectsException, parseJobListingsException, passwordSchema, paymentTypeEnum, periodTypeSchema, periodUsageSchema, pickProfileRequestSchema, pickProfileResponseSchema, planFeatureSchema, planPricingIntervalSchema, planPricingSchema, planSchema, planSlugEnum, planSlugToNameMap, planStripeMetadataSchema, pluralize, portfolioSchema, privateJobException, processFeedPayloadSchema, projectDurationEnum, proposalCompleteEventMetadataSchema, proposalErrorAlertException, proposalFormWarningAlertException, proposalGenerationFailed, proposalSchema, proposalSentActivitySchema, proposalSubmitFailedException, proxyAvailableReplacementsSchema, proxyCountryCodeToName, proxyCountryEnum, proxyProviderSchema, proxySchema, proxyStatusSchema, proxyTypeSchema, puppeteerConnectionErrorException, questionAnswerPairSchema, questionPairNotMatchingException, questionRulesSchema, reconnectBidderAccountRequestBodySchema, reconnectBidderAccountResponseSchema, refreshRotatingProxiesRequestBodySchema, regionEnum, regionMapping, regionNames, regionSchema, registerSchema, requiredEarningsEnum, requiredJSSEnum, sampleSchema, savedSearchSchema, scheduleBiddingEventMetadataSchema, scrapeJobActivityPayloadSchema, scrapeJobPayloadSchema, scrapeJobsCompletedEventMetadata, scrapePayloadSchema, scrapeResultSchema, scrapeUserProfileRequestSchema, scraperAccountErrorEventMetadata, scraperAccountProxyNotFoundException, scraperAccountRegionEnum, scraperAccountSchema, scraperAccountSwapCompletedEventMetadata, scraperAccountSwapFailedEventMetadata, scraperAccountSwapStartedEventMetadata, scraperAccountTypeEnum, selectAgencyException, selectContractorException, selectorNotFoundError, sendAlertPayloadSchema, sendNotificationRequestSchema, specialisedProfileSchema, stringify, subscribePayloadSchema, subscriptionSchema, subscriptionSourceEnum, subscriptionStatusEnum, subscriptionStripeMetadataItemSchema, subscriptionStripeMetadataSchema, suitabilityCompleteEventMetadataSchema, suitabilityFailedEventMetadataSchema, suitabilityPendingEventMetadataSchema, suitabilityRatingSchema, syncProposalsStatusCompletedEventMetadata, syncProposalsStatusFailedEventMetadata, syncProposalsStatusRequestPayloadSchema, systemPromptSchema, systemSchema, talentTypeEnum, timeBlockSchema, trackUsageEventTypeEnum, trackUsagePayloadSchema, transactionSchema, transactionStatusEnum, transactionStripeMetadataSchema, transactionTypeEnum, tryCatch, twoFactorPresentException, typedValueInFieldNotMatchingException, typingInputFieldException, updateBidderAccountSchema, updateCampaignAnalyticsSchema, updateCampaignSchema, updateChatbotSchema, updateLeadStatusSchema, updateOrganizationLeadsStatusPayloadSchema, updateOrganizationProfileSchema, updateSampleSchema, updateScraperAccountSchema, updateSuitableLeadNotificationBodySchema, updateSuitableLeadNotificationType, upworkAccountConnectSchema, upworkAccountConnectStatusSchema, upworkJobSchema, upworkProfileSchema, upworkTalentCountrySchema, upworkTalentSchema, upworkTalentSearchRequestSchema, upworkTalentSearchResponseSchema, upworkTalentSkillWithRankSchema, upworkTalentSkillsResponseSchema, upworkTalentSkillsSchema, usageEventMetadataSchema, usageEventSchema, usageEventTypeEnum, userAccountBiddingExceptionEventMetadata, userSchema, vendorQualificationSchema, vendorTypeEnum, verifyBidderAccountCredentialsResponseSchema, verifyBidderAccountCredentialsSchema, verifyCredentialsFailedEventMetadataSchema, verifyCredentialsSucceededEventMetadataSchema, waitForFunctionTimeoutError, weekDaysEnum, workTimeSchema };
|
|
24319
24287
|
//# sourceMappingURL=bundle.esm.js.map
|