lancer-shared 1.2.326 → 1.2.327
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 +105 -0
- package/dist/bundle.cjs.js.map +1 -1
- package/dist/bundle.esm.js +94 -1
- package/dist/bundle.esm.js.map +1 -1
- package/dist/constants/chat.d.ts +17 -1
- package/dist/constants/routes.d.ts +1 -0
- package/dist/schemas/account/bidder-account.d.ts +33 -33
- package/dist/schemas/account/scraper-account.d.ts +10 -10
- package/dist/schemas/agent/index.d.ts +208 -208
- package/dist/schemas/agent/proposal.d.ts +2 -2
- package/dist/schemas/bidder/bid.d.ts +1744 -1744
- package/dist/schemas/campaign/campaign-analytics.d.ts +250 -250
- package/dist/schemas/campaign/campaign-chat-bot.d.ts +4 -4
- package/dist/schemas/campaign/campaign.d.ts +69 -69
- package/dist/schemas/chat/index.d.ts +563 -68
- package/dist/schemas/dashboard/index.d.ts +18 -18
- package/dist/schemas/golden-dataset/sample.d.ts +4 -4
- package/dist/schemas/job/index.d.ts +70 -70
- package/dist/schemas/job/job-details.d.ts +14 -14
- package/dist/schemas/job/job-listing.d.ts +10 -10
- package/dist/schemas/job/nuxt.d.ts +6 -6
- package/dist/schemas/lead/index.d.ts +683 -683
- package/dist/schemas/lead/lead-status.d.ts +2 -2
- package/dist/schemas/logger/feed/feed-job-enrich.d.ts +98 -98
- package/dist/schemas/logger/log-event.d.ts +40 -40
- package/dist/schemas/logger/scraper-events.d.ts +8 -8
- package/dist/schemas/notifications/index.d.ts +4 -4
- package/dist/schemas/organization/billing.d.ts +2 -2
- package/dist/schemas/organization/index.d.ts +34 -34
- package/dist/schemas/organization/onboarding.d.ts +2 -2
- package/dist/schemas/organization/organization-leads.d.ts +2 -2
- package/dist/schemas/organization/subscription.d.ts +6 -6
- package/dist/schemas/plan/index.d.ts +2 -2
- package/dist/schemas/proxy/proxy.d.ts +3 -3
- package/dist/schemas/scraper/scrape-payload.d.ts +262 -262
- package/dist/schemas/scraper/scrape-result.d.ts +86 -86
- package/dist/schemas/transaction/index.d.ts +4 -4
- package/dist/schemas/upwork-talent/index.d.ts +8 -8
- package/dist/schemas/usage/index.d.ts +2 -2
- package/dist/schemas/usage-event/index.d.ts +8 -8
- package/package.json +1 -1
|
@@ -11,16 +11,16 @@ export declare const updateLeadStatusSchema: z.ZodObject<{
|
|
|
11
11
|
wonAmount: z.ZodOptional<z.ZodNumber>;
|
|
12
12
|
}, "strip", z.ZodTypeAny, {
|
|
13
13
|
status: "rejected" | "biddingFailed" | "leads" | "contacted" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "viewed" | "replied" | "biddingScheduled" | "alreadyHired" | "won";
|
|
14
|
-
leadId: string;
|
|
15
14
|
organizationId: string;
|
|
15
|
+
leadId: string;
|
|
16
16
|
campaignId: string;
|
|
17
17
|
userId?: string | undefined;
|
|
18
18
|
proposalId?: string | undefined;
|
|
19
19
|
wonAmount?: number | undefined;
|
|
20
20
|
}, {
|
|
21
21
|
status: "rejected" | "biddingFailed" | "leads" | "contacted" | "insufficientConnects" | "doesNotMeetCriteria" | "syncedInAnotherCampaign" | "dailyLimitReached" | "boostAboveMaxConnects" | "privateJob" | "noLongerAvailable" | "alreadyBiddedOn" | "viewed" | "replied" | "biddingScheduled" | "alreadyHired" | "won";
|
|
22
|
-
leadId: string;
|
|
23
22
|
organizationId: string;
|
|
23
|
+
leadId: string;
|
|
24
24
|
campaignId: string;
|
|
25
25
|
userId?: string | undefined;
|
|
26
26
|
proposalId?: string | undefined;
|
|
@@ -122,6 +122,7 @@ export declare const feedJobEnrichStartedEventMetadata: z.ZodObject<{
|
|
|
122
122
|
totalFeedback: number;
|
|
123
123
|
hasFinancialPrivacy: boolean;
|
|
124
124
|
};
|
|
125
|
+
premium: boolean;
|
|
125
126
|
publishedOn: string;
|
|
126
127
|
renewedOn: string | null;
|
|
127
128
|
engagement: string | null;
|
|
@@ -132,7 +133,6 @@ export declare const feedJobEnrichStartedEventMetadata: z.ZodObject<{
|
|
|
132
133
|
tierText: string | null;
|
|
133
134
|
isApplied: boolean;
|
|
134
135
|
proposalsTier: string | null;
|
|
135
|
-
premium: boolean;
|
|
136
136
|
attrs: {
|
|
137
137
|
uid: string;
|
|
138
138
|
prefLabel: string;
|
|
@@ -173,6 +173,7 @@ export declare const feedJobEnrichStartedEventMetadata: z.ZodObject<{
|
|
|
173
173
|
totalFeedback: number;
|
|
174
174
|
hasFinancialPrivacy: boolean;
|
|
175
175
|
};
|
|
176
|
+
premium: boolean;
|
|
176
177
|
publishedOn: string;
|
|
177
178
|
renewedOn: string | null;
|
|
178
179
|
engagement: string | null;
|
|
@@ -183,7 +184,6 @@ export declare const feedJobEnrichStartedEventMetadata: z.ZodObject<{
|
|
|
183
184
|
tierText: string | null;
|
|
184
185
|
isApplied: boolean;
|
|
185
186
|
proposalsTier: string | null;
|
|
186
|
-
premium: boolean;
|
|
187
187
|
attrs: {
|
|
188
188
|
uid: string;
|
|
189
189
|
prefLabel: string;
|
|
@@ -229,6 +229,7 @@ export declare const feedJobEnrichStartedEventMetadata: z.ZodObject<{
|
|
|
229
229
|
totalFeedback: number;
|
|
230
230
|
hasFinancialPrivacy: boolean;
|
|
231
231
|
};
|
|
232
|
+
premium: boolean;
|
|
232
233
|
publishedOn: string;
|
|
233
234
|
renewedOn: string | null;
|
|
234
235
|
engagement: string | null;
|
|
@@ -239,7 +240,6 @@ export declare const feedJobEnrichStartedEventMetadata: z.ZodObject<{
|
|
|
239
240
|
tierText: string | null;
|
|
240
241
|
isApplied: boolean;
|
|
241
242
|
proposalsTier: string | null;
|
|
242
|
-
premium: boolean;
|
|
243
243
|
attrs: {
|
|
244
244
|
uid: string;
|
|
245
245
|
prefLabel: string;
|
|
@@ -285,6 +285,7 @@ export declare const feedJobEnrichStartedEventMetadata: z.ZodObject<{
|
|
|
285
285
|
totalFeedback: number;
|
|
286
286
|
hasFinancialPrivacy: boolean;
|
|
287
287
|
};
|
|
288
|
+
premium: boolean;
|
|
288
289
|
publishedOn: string;
|
|
289
290
|
renewedOn: string | null;
|
|
290
291
|
engagement: string | null;
|
|
@@ -295,7 +296,6 @@ export declare const feedJobEnrichStartedEventMetadata: z.ZodObject<{
|
|
|
295
296
|
tierText: string | null;
|
|
296
297
|
isApplied: boolean;
|
|
297
298
|
proposalsTier: string | null;
|
|
298
|
-
premium: boolean;
|
|
299
299
|
attrs: {
|
|
300
300
|
uid: string;
|
|
301
301
|
prefLabel: string;
|
|
@@ -443,6 +443,7 @@ export declare const feedJobEnrichCompletedEventMetadata: z.ZodObject<z.objectUt
|
|
|
443
443
|
totalFeedback: number;
|
|
444
444
|
hasFinancialPrivacy: boolean;
|
|
445
445
|
};
|
|
446
|
+
premium: boolean;
|
|
446
447
|
publishedOn: string;
|
|
447
448
|
renewedOn: string | null;
|
|
448
449
|
engagement: string | null;
|
|
@@ -453,7 +454,6 @@ export declare const feedJobEnrichCompletedEventMetadata: z.ZodObject<z.objectUt
|
|
|
453
454
|
tierText: string | null;
|
|
454
455
|
isApplied: boolean;
|
|
455
456
|
proposalsTier: string | null;
|
|
456
|
-
premium: boolean;
|
|
457
457
|
attrs: {
|
|
458
458
|
uid: string;
|
|
459
459
|
prefLabel: string;
|
|
@@ -494,6 +494,7 @@ export declare const feedJobEnrichCompletedEventMetadata: z.ZodObject<z.objectUt
|
|
|
494
494
|
totalFeedback: number;
|
|
495
495
|
hasFinancialPrivacy: boolean;
|
|
496
496
|
};
|
|
497
|
+
premium: boolean;
|
|
497
498
|
publishedOn: string;
|
|
498
499
|
renewedOn: string | null;
|
|
499
500
|
engagement: string | null;
|
|
@@ -504,7 +505,6 @@ export declare const feedJobEnrichCompletedEventMetadata: z.ZodObject<z.objectUt
|
|
|
504
505
|
tierText: string | null;
|
|
505
506
|
isApplied: boolean;
|
|
506
507
|
proposalsTier: string | null;
|
|
507
|
-
premium: boolean;
|
|
508
508
|
attrs: {
|
|
509
509
|
uid: string;
|
|
510
510
|
prefLabel: string;
|
|
@@ -573,9 +573,9 @@ export declare const feedJobEnrichCompletedEventMetadata: z.ZodObject<z.objectUt
|
|
|
573
573
|
max: number | null;
|
|
574
574
|
min: number | null;
|
|
575
575
|
} | null;
|
|
576
|
+
experienceLevel: string | null;
|
|
576
577
|
paymentType: string | null;
|
|
577
578
|
fixedPrice: number | null;
|
|
578
|
-
experienceLevel: string | null;
|
|
579
579
|
}, {
|
|
580
580
|
hours: string | null;
|
|
581
581
|
duration: string | null;
|
|
@@ -583,9 +583,9 @@ export declare const feedJobEnrichCompletedEventMetadata: z.ZodObject<z.objectUt
|
|
|
583
583
|
max: number | null;
|
|
584
584
|
min: number | null;
|
|
585
585
|
} | null;
|
|
586
|
+
experienceLevel: string | null;
|
|
586
587
|
paymentType: string | null;
|
|
587
588
|
fixedPrice: number | null;
|
|
588
|
-
experienceLevel: string | null;
|
|
589
589
|
}>>;
|
|
590
590
|
clientInfo: z.ZodNullable<z.ZodObject<{
|
|
591
591
|
isPaymentVerified: z.ZodNullable<z.ZodBoolean>;
|
|
@@ -683,29 +683,29 @@ export declare const feedJobEnrichCompletedEventMetadata: z.ZodObject<z.objectUt
|
|
|
683
683
|
numHours: z.ZodNullable<z.ZodNumber>;
|
|
684
684
|
totalBilled: z.ZodNullable<z.ZodNumber>;
|
|
685
685
|
}, "strip", z.ZodTypeAny, {
|
|
686
|
-
freelancerName: string | null;
|
|
687
|
-
jobTitle: string | null;
|
|
688
686
|
hourlyRate: number | null;
|
|
687
|
+
paymentType: string | null;
|
|
688
|
+
fixedPrice: number | null;
|
|
689
|
+
jobTitle: string | null;
|
|
690
|
+
freelancerName: string | null;
|
|
689
691
|
freelancerRating: number | null;
|
|
690
692
|
freelancerFeedback: string | null;
|
|
691
693
|
clientFeedback: string | null;
|
|
692
694
|
clientFeedbackRating: number | null;
|
|
693
695
|
dateRange: string | null;
|
|
694
|
-
paymentType: string | null;
|
|
695
|
-
fixedPrice: number | null;
|
|
696
696
|
numHours: number | null;
|
|
697
697
|
totalBilled: number | null;
|
|
698
698
|
}, {
|
|
699
|
-
freelancerName: string | null;
|
|
700
|
-
jobTitle: string | null;
|
|
701
699
|
hourlyRate: number | null;
|
|
700
|
+
paymentType: string | null;
|
|
701
|
+
fixedPrice: number | null;
|
|
702
|
+
jobTitle: string | null;
|
|
703
|
+
freelancerName: string | null;
|
|
702
704
|
freelancerRating: number | null;
|
|
703
705
|
freelancerFeedback: string | null;
|
|
704
706
|
clientFeedback: string | null;
|
|
705
707
|
clientFeedbackRating: number | null;
|
|
706
708
|
dateRange: string | null;
|
|
707
|
-
paymentType: string | null;
|
|
708
|
-
fixedPrice: number | null;
|
|
709
709
|
numHours: number | null;
|
|
710
710
|
totalBilled: number | null;
|
|
711
711
|
}>, "many">>;
|
|
@@ -742,8 +742,8 @@ export declare const feedJobEnrichCompletedEventMetadata: z.ZodObject<z.objectUt
|
|
|
742
742
|
unansweredInvites: z.ZodNullable<z.ZodNumber>;
|
|
743
743
|
updatedAt: z.ZodNullable<z.ZodNumber>;
|
|
744
744
|
}, "strip", z.ZodTypeAny, {
|
|
745
|
-
updatedAt: number | null;
|
|
746
745
|
unansweredInvites: number | null;
|
|
746
|
+
updatedAt: number | null;
|
|
747
747
|
proposals: {
|
|
748
748
|
max: number | null;
|
|
749
749
|
min: number | null;
|
|
@@ -754,8 +754,8 @@ export declare const feedJobEnrichCompletedEventMetadata: z.ZodObject<z.objectUt
|
|
|
754
754
|
interviewing: number | null;
|
|
755
755
|
invitesSent: number | null;
|
|
756
756
|
}, {
|
|
757
|
-
updatedAt: number | null;
|
|
758
757
|
unansweredInvites: number | null;
|
|
758
|
+
updatedAt: number | null;
|
|
759
759
|
proposals: {
|
|
760
760
|
max: number | null;
|
|
761
761
|
min: number | null;
|
|
@@ -787,8 +787,8 @@ export declare const feedJobEnrichCompletedEventMetadata: z.ZodObject<z.objectUt
|
|
|
787
787
|
unansweredInvites: z.ZodNullable<z.ZodNumber>;
|
|
788
788
|
updatedAt: z.ZodNullable<z.ZodNumber>;
|
|
789
789
|
}, "strip", z.ZodTypeAny, {
|
|
790
|
-
updatedAt: number | null;
|
|
791
790
|
unansweredInvites: number | null;
|
|
791
|
+
updatedAt: number | null;
|
|
792
792
|
proposals: {
|
|
793
793
|
max: number | null;
|
|
794
794
|
min: number | null;
|
|
@@ -799,8 +799,8 @@ export declare const feedJobEnrichCompletedEventMetadata: z.ZodObject<z.objectUt
|
|
|
799
799
|
interviewing: number | null;
|
|
800
800
|
invitesSent: number | null;
|
|
801
801
|
}, {
|
|
802
|
-
updatedAt: number | null;
|
|
803
802
|
unansweredInvites: number | null;
|
|
803
|
+
updatedAt: number | null;
|
|
804
804
|
proposals: {
|
|
805
805
|
max: number | null;
|
|
806
806
|
min: number | null;
|
|
@@ -840,32 +840,18 @@ export declare const feedJobEnrichCompletedEventMetadata: z.ZodObject<z.objectUt
|
|
|
840
840
|
max: number | null;
|
|
841
841
|
min: number | null;
|
|
842
842
|
} | null;
|
|
843
|
+
experienceLevel: string | null;
|
|
843
844
|
paymentType: string | null;
|
|
844
845
|
fixedPrice: number | null;
|
|
845
|
-
experienceLevel: string | null;
|
|
846
846
|
} | null;
|
|
847
847
|
description: string | null;
|
|
848
848
|
region: "USOnly" | "UKOnly" | "Worldwide" | "All" | null;
|
|
849
849
|
datetime: number | null;
|
|
850
|
-
createdAt: number | null;
|
|
851
850
|
category: string | null;
|
|
852
851
|
uid: string | null;
|
|
853
852
|
questions: string[] | null;
|
|
854
853
|
occupation: string | null;
|
|
855
|
-
|
|
856
|
-
freelancerName: string | null;
|
|
857
|
-
jobTitle: string | null;
|
|
858
|
-
hourlyRate: number | null;
|
|
859
|
-
freelancerRating: number | null;
|
|
860
|
-
freelancerFeedback: string | null;
|
|
861
|
-
clientFeedback: string | null;
|
|
862
|
-
clientFeedbackRating: number | null;
|
|
863
|
-
dateRange: string | null;
|
|
864
|
-
paymentType: string | null;
|
|
865
|
-
fixedPrice: number | null;
|
|
866
|
-
numHours: number | null;
|
|
867
|
-
totalBilled: number | null;
|
|
868
|
-
}[] | null;
|
|
854
|
+
createdAt: number | null;
|
|
869
855
|
skills: {
|
|
870
856
|
name: string;
|
|
871
857
|
}[] | null;
|
|
@@ -904,14 +890,28 @@ export declare const feedJobEnrichCompletedEventMetadata: z.ZodObject<z.objectUt
|
|
|
904
890
|
} | null;
|
|
905
891
|
processed: boolean | null;
|
|
906
892
|
isFeatured: boolean | null;
|
|
893
|
+
clientReviews: {
|
|
894
|
+
hourlyRate: number | null;
|
|
895
|
+
paymentType: string | null;
|
|
896
|
+
fixedPrice: number | null;
|
|
897
|
+
jobTitle: string | null;
|
|
898
|
+
freelancerName: string | null;
|
|
899
|
+
freelancerRating: number | null;
|
|
900
|
+
freelancerFeedback: string | null;
|
|
901
|
+
clientFeedback: string | null;
|
|
902
|
+
clientFeedbackRating: number | null;
|
|
903
|
+
dateRange: string | null;
|
|
904
|
+
numHours: number | null;
|
|
905
|
+
totalBilled: number | null;
|
|
906
|
+
}[] | null;
|
|
907
907
|
bidRange: {
|
|
908
908
|
high: number | null;
|
|
909
909
|
low: number | null;
|
|
910
910
|
avg: number | null;
|
|
911
911
|
} | null;
|
|
912
912
|
jobActivity: {
|
|
913
|
-
updatedAt: number | null;
|
|
914
913
|
unansweredInvites: number | null;
|
|
914
|
+
updatedAt: number | null;
|
|
915
915
|
proposals: {
|
|
916
916
|
max: number | null;
|
|
917
917
|
min: number | null;
|
|
@@ -924,8 +924,8 @@ export declare const feedJobEnrichCompletedEventMetadata: z.ZodObject<z.objectUt
|
|
|
924
924
|
} | null;
|
|
925
925
|
activityUpdates: 2 | 1 | 3 | null;
|
|
926
926
|
activity?: Partial<Record<"4h" | "24h", {
|
|
927
|
-
updatedAt: number | null;
|
|
928
927
|
unansweredInvites: number | null;
|
|
928
|
+
updatedAt: number | null;
|
|
929
929
|
proposals: {
|
|
930
930
|
max: number | null;
|
|
931
931
|
min: number | null;
|
|
@@ -953,32 +953,18 @@ export declare const feedJobEnrichCompletedEventMetadata: z.ZodObject<z.objectUt
|
|
|
953
953
|
max: number | null;
|
|
954
954
|
min: number | null;
|
|
955
955
|
} | null;
|
|
956
|
+
experienceLevel: string | null;
|
|
956
957
|
paymentType: string | null;
|
|
957
958
|
fixedPrice: number | null;
|
|
958
|
-
experienceLevel: string | null;
|
|
959
959
|
} | null;
|
|
960
960
|
description: string | null;
|
|
961
961
|
region: "USOnly" | "UKOnly" | "Worldwide" | "All" | null;
|
|
962
962
|
datetime: number | null;
|
|
963
|
-
createdAt: number | null;
|
|
964
963
|
category: string | null;
|
|
965
964
|
uid: string | null;
|
|
966
965
|
questions: string[] | null;
|
|
967
966
|
occupation: string | null;
|
|
968
|
-
|
|
969
|
-
freelancerName: string | null;
|
|
970
|
-
jobTitle: string | null;
|
|
971
|
-
hourlyRate: number | null;
|
|
972
|
-
freelancerRating: number | null;
|
|
973
|
-
freelancerFeedback: string | null;
|
|
974
|
-
clientFeedback: string | null;
|
|
975
|
-
clientFeedbackRating: number | null;
|
|
976
|
-
dateRange: string | null;
|
|
977
|
-
paymentType: string | null;
|
|
978
|
-
fixedPrice: number | null;
|
|
979
|
-
numHours: number | null;
|
|
980
|
-
totalBilled: number | null;
|
|
981
|
-
}[] | null;
|
|
967
|
+
createdAt: number | null;
|
|
982
968
|
skills: {
|
|
983
969
|
name: string;
|
|
984
970
|
}[] | null;
|
|
@@ -1017,14 +1003,28 @@ export declare const feedJobEnrichCompletedEventMetadata: z.ZodObject<z.objectUt
|
|
|
1017
1003
|
} | null;
|
|
1018
1004
|
processed: boolean | null;
|
|
1019
1005
|
isFeatured: boolean | null;
|
|
1006
|
+
clientReviews: {
|
|
1007
|
+
hourlyRate: number | null;
|
|
1008
|
+
paymentType: string | null;
|
|
1009
|
+
fixedPrice: number | null;
|
|
1010
|
+
jobTitle: string | null;
|
|
1011
|
+
freelancerName: string | null;
|
|
1012
|
+
freelancerRating: number | null;
|
|
1013
|
+
freelancerFeedback: string | null;
|
|
1014
|
+
clientFeedback: string | null;
|
|
1015
|
+
clientFeedbackRating: number | null;
|
|
1016
|
+
dateRange: string | null;
|
|
1017
|
+
numHours: number | null;
|
|
1018
|
+
totalBilled: number | null;
|
|
1019
|
+
}[] | null;
|
|
1020
1020
|
bidRange: {
|
|
1021
1021
|
high: number | null;
|
|
1022
1022
|
low: number | null;
|
|
1023
1023
|
avg: number | null;
|
|
1024
1024
|
} | null;
|
|
1025
1025
|
jobActivity: {
|
|
1026
|
-
updatedAt: number | null;
|
|
1027
1026
|
unansweredInvites: number | null;
|
|
1027
|
+
updatedAt: number | null;
|
|
1028
1028
|
proposals: {
|
|
1029
1029
|
max: number | null;
|
|
1030
1030
|
min: number | null;
|
|
@@ -1037,8 +1037,8 @@ export declare const feedJobEnrichCompletedEventMetadata: z.ZodObject<z.objectUt
|
|
|
1037
1037
|
} | null;
|
|
1038
1038
|
activityUpdates: 2 | 1 | 3 | null;
|
|
1039
1039
|
activity?: Partial<Record<"4h" | "24h", {
|
|
1040
|
-
updatedAt: number | null;
|
|
1041
1040
|
unansweredInvites: number | null;
|
|
1041
|
+
updatedAt: number | null;
|
|
1042
1042
|
proposals: {
|
|
1043
1043
|
max: number | null;
|
|
1044
1044
|
min: number | null;
|
|
@@ -1061,7 +1061,6 @@ export declare const feedJobEnrichCompletedEventMetadata: z.ZodObject<z.objectUt
|
|
|
1061
1061
|
}>, "strip", z.ZodTypeAny, {
|
|
1062
1062
|
region: "USOnly" | "UKOnly" | "Worldwide" | "All";
|
|
1063
1063
|
duration: string;
|
|
1064
|
-
accountId: string;
|
|
1065
1064
|
job: {
|
|
1066
1065
|
id: string | null;
|
|
1067
1066
|
title: string | null;
|
|
@@ -1072,32 +1071,18 @@ export declare const feedJobEnrichCompletedEventMetadata: z.ZodObject<z.objectUt
|
|
|
1072
1071
|
max: number | null;
|
|
1073
1072
|
min: number | null;
|
|
1074
1073
|
} | null;
|
|
1074
|
+
experienceLevel: string | null;
|
|
1075
1075
|
paymentType: string | null;
|
|
1076
1076
|
fixedPrice: number | null;
|
|
1077
|
-
experienceLevel: string | null;
|
|
1078
1077
|
} | null;
|
|
1079
1078
|
description: string | null;
|
|
1080
1079
|
region: "USOnly" | "UKOnly" | "Worldwide" | "All" | null;
|
|
1081
1080
|
datetime: number | null;
|
|
1082
|
-
createdAt: number | null;
|
|
1083
1081
|
category: string | null;
|
|
1084
1082
|
uid: string | null;
|
|
1085
1083
|
questions: string[] | null;
|
|
1086
1084
|
occupation: string | null;
|
|
1087
|
-
|
|
1088
|
-
freelancerName: string | null;
|
|
1089
|
-
jobTitle: string | null;
|
|
1090
|
-
hourlyRate: number | null;
|
|
1091
|
-
freelancerRating: number | null;
|
|
1092
|
-
freelancerFeedback: string | null;
|
|
1093
|
-
clientFeedback: string | null;
|
|
1094
|
-
clientFeedbackRating: number | null;
|
|
1095
|
-
dateRange: string | null;
|
|
1096
|
-
paymentType: string | null;
|
|
1097
|
-
fixedPrice: number | null;
|
|
1098
|
-
numHours: number | null;
|
|
1099
|
-
totalBilled: number | null;
|
|
1100
|
-
}[] | null;
|
|
1085
|
+
createdAt: number | null;
|
|
1101
1086
|
skills: {
|
|
1102
1087
|
name: string;
|
|
1103
1088
|
}[] | null;
|
|
@@ -1136,14 +1121,28 @@ export declare const feedJobEnrichCompletedEventMetadata: z.ZodObject<z.objectUt
|
|
|
1136
1121
|
} | null;
|
|
1137
1122
|
processed: boolean | null;
|
|
1138
1123
|
isFeatured: boolean | null;
|
|
1124
|
+
clientReviews: {
|
|
1125
|
+
hourlyRate: number | null;
|
|
1126
|
+
paymentType: string | null;
|
|
1127
|
+
fixedPrice: number | null;
|
|
1128
|
+
jobTitle: string | null;
|
|
1129
|
+
freelancerName: string | null;
|
|
1130
|
+
freelancerRating: number | null;
|
|
1131
|
+
freelancerFeedback: string | null;
|
|
1132
|
+
clientFeedback: string | null;
|
|
1133
|
+
clientFeedbackRating: number | null;
|
|
1134
|
+
dateRange: string | null;
|
|
1135
|
+
numHours: number | null;
|
|
1136
|
+
totalBilled: number | null;
|
|
1137
|
+
}[] | null;
|
|
1139
1138
|
bidRange: {
|
|
1140
1139
|
high: number | null;
|
|
1141
1140
|
low: number | null;
|
|
1142
1141
|
avg: number | null;
|
|
1143
1142
|
} | null;
|
|
1144
1143
|
jobActivity: {
|
|
1145
|
-
updatedAt: number | null;
|
|
1146
1144
|
unansweredInvites: number | null;
|
|
1145
|
+
updatedAt: number | null;
|
|
1147
1146
|
proposals: {
|
|
1148
1147
|
max: number | null;
|
|
1149
1148
|
min: number | null;
|
|
@@ -1156,8 +1155,8 @@ export declare const feedJobEnrichCompletedEventMetadata: z.ZodObject<z.objectUt
|
|
|
1156
1155
|
} | null;
|
|
1157
1156
|
activityUpdates: 2 | 1 | 3 | null;
|
|
1158
1157
|
activity?: Partial<Record<"4h" | "24h", {
|
|
1159
|
-
updatedAt: number | null;
|
|
1160
1158
|
unansweredInvites: number | null;
|
|
1159
|
+
updatedAt: number | null;
|
|
1161
1160
|
proposals: {
|
|
1162
1161
|
max: number | null;
|
|
1163
1162
|
min: number | null;
|
|
@@ -1176,11 +1175,11 @@ export declare const feedJobEnrichCompletedEventMetadata: z.ZodObject<z.objectUt
|
|
|
1176
1175
|
invitesSent: number;
|
|
1177
1176
|
} | null | undefined;
|
|
1178
1177
|
};
|
|
1178
|
+
accountId: string;
|
|
1179
1179
|
accountEmail: string;
|
|
1180
1180
|
}, {
|
|
1181
1181
|
region: "USOnly" | "UKOnly" | "Worldwide" | "All";
|
|
1182
1182
|
duration: string;
|
|
1183
|
-
accountId: string;
|
|
1184
1183
|
job: {
|
|
1185
1184
|
id: string | null;
|
|
1186
1185
|
title: string | null;
|
|
@@ -1191,32 +1190,18 @@ export declare const feedJobEnrichCompletedEventMetadata: z.ZodObject<z.objectUt
|
|
|
1191
1190
|
max: number | null;
|
|
1192
1191
|
min: number | null;
|
|
1193
1192
|
} | null;
|
|
1193
|
+
experienceLevel: string | null;
|
|
1194
1194
|
paymentType: string | null;
|
|
1195
1195
|
fixedPrice: number | null;
|
|
1196
|
-
experienceLevel: string | null;
|
|
1197
1196
|
} | null;
|
|
1198
1197
|
description: string | null;
|
|
1199
1198
|
region: "USOnly" | "UKOnly" | "Worldwide" | "All" | null;
|
|
1200
1199
|
datetime: number | null;
|
|
1201
|
-
createdAt: number | null;
|
|
1202
1200
|
category: string | null;
|
|
1203
1201
|
uid: string | null;
|
|
1204
1202
|
questions: string[] | null;
|
|
1205
1203
|
occupation: string | null;
|
|
1206
|
-
|
|
1207
|
-
freelancerName: string | null;
|
|
1208
|
-
jobTitle: string | null;
|
|
1209
|
-
hourlyRate: number | null;
|
|
1210
|
-
freelancerRating: number | null;
|
|
1211
|
-
freelancerFeedback: string | null;
|
|
1212
|
-
clientFeedback: string | null;
|
|
1213
|
-
clientFeedbackRating: number | null;
|
|
1214
|
-
dateRange: string | null;
|
|
1215
|
-
paymentType: string | null;
|
|
1216
|
-
fixedPrice: number | null;
|
|
1217
|
-
numHours: number | null;
|
|
1218
|
-
totalBilled: number | null;
|
|
1219
|
-
}[] | null;
|
|
1204
|
+
createdAt: number | null;
|
|
1220
1205
|
skills: {
|
|
1221
1206
|
name: string;
|
|
1222
1207
|
}[] | null;
|
|
@@ -1255,14 +1240,28 @@ export declare const feedJobEnrichCompletedEventMetadata: z.ZodObject<z.objectUt
|
|
|
1255
1240
|
} | null;
|
|
1256
1241
|
processed: boolean | null;
|
|
1257
1242
|
isFeatured: boolean | null;
|
|
1243
|
+
clientReviews: {
|
|
1244
|
+
hourlyRate: number | null;
|
|
1245
|
+
paymentType: string | null;
|
|
1246
|
+
fixedPrice: number | null;
|
|
1247
|
+
jobTitle: string | null;
|
|
1248
|
+
freelancerName: string | null;
|
|
1249
|
+
freelancerRating: number | null;
|
|
1250
|
+
freelancerFeedback: string | null;
|
|
1251
|
+
clientFeedback: string | null;
|
|
1252
|
+
clientFeedbackRating: number | null;
|
|
1253
|
+
dateRange: string | null;
|
|
1254
|
+
numHours: number | null;
|
|
1255
|
+
totalBilled: number | null;
|
|
1256
|
+
}[] | null;
|
|
1258
1257
|
bidRange: {
|
|
1259
1258
|
high: number | null;
|
|
1260
1259
|
low: number | null;
|
|
1261
1260
|
avg: number | null;
|
|
1262
1261
|
} | null;
|
|
1263
1262
|
jobActivity: {
|
|
1264
|
-
updatedAt: number | null;
|
|
1265
1263
|
unansweredInvites: number | null;
|
|
1264
|
+
updatedAt: number | null;
|
|
1266
1265
|
proposals: {
|
|
1267
1266
|
max: number | null;
|
|
1268
1267
|
min: number | null;
|
|
@@ -1275,8 +1274,8 @@ export declare const feedJobEnrichCompletedEventMetadata: z.ZodObject<z.objectUt
|
|
|
1275
1274
|
} | null;
|
|
1276
1275
|
activityUpdates: 2 | 1 | 3 | null;
|
|
1277
1276
|
activity?: Partial<Record<"4h" | "24h", {
|
|
1278
|
-
updatedAt: number | null;
|
|
1279
1277
|
unansweredInvites: number | null;
|
|
1278
|
+
updatedAt: number | null;
|
|
1280
1279
|
proposals: {
|
|
1281
1280
|
max: number | null;
|
|
1282
1281
|
min: number | null;
|
|
@@ -1295,6 +1294,7 @@ export declare const feedJobEnrichCompletedEventMetadata: z.ZodObject<z.objectUt
|
|
|
1295
1294
|
invitesSent: number;
|
|
1296
1295
|
} | null | undefined;
|
|
1297
1296
|
};
|
|
1297
|
+
accountId: string;
|
|
1298
1298
|
accountEmail: string;
|
|
1299
1299
|
}>;
|
|
1300
1300
|
export declare const feedJobEnrichFailedEventMetadata: z.ZodObject<z.objectUtil.extendShape<{
|
|
@@ -1420,6 +1420,7 @@ export declare const feedJobEnrichFailedEventMetadata: z.ZodObject<z.objectUtil.
|
|
|
1420
1420
|
totalFeedback: number;
|
|
1421
1421
|
hasFinancialPrivacy: boolean;
|
|
1422
1422
|
};
|
|
1423
|
+
premium: boolean;
|
|
1423
1424
|
publishedOn: string;
|
|
1424
1425
|
renewedOn: string | null;
|
|
1425
1426
|
engagement: string | null;
|
|
@@ -1430,7 +1431,6 @@ export declare const feedJobEnrichFailedEventMetadata: z.ZodObject<z.objectUtil.
|
|
|
1430
1431
|
tierText: string | null;
|
|
1431
1432
|
isApplied: boolean;
|
|
1432
1433
|
proposalsTier: string | null;
|
|
1433
|
-
premium: boolean;
|
|
1434
1434
|
attrs: {
|
|
1435
1435
|
uid: string;
|
|
1436
1436
|
prefLabel: string;
|
|
@@ -1471,6 +1471,7 @@ export declare const feedJobEnrichFailedEventMetadata: z.ZodObject<z.objectUtil.
|
|
|
1471
1471
|
totalFeedback: number;
|
|
1472
1472
|
hasFinancialPrivacy: boolean;
|
|
1473
1473
|
};
|
|
1474
|
+
premium: boolean;
|
|
1474
1475
|
publishedOn: string;
|
|
1475
1476
|
renewedOn: string | null;
|
|
1476
1477
|
engagement: string | null;
|
|
@@ -1481,7 +1482,6 @@ export declare const feedJobEnrichFailedEventMetadata: z.ZodObject<z.objectUtil.
|
|
|
1481
1482
|
tierText: string | null;
|
|
1482
1483
|
isApplied: boolean;
|
|
1483
1484
|
proposalsTier: string | null;
|
|
1484
|
-
premium: boolean;
|
|
1485
1485
|
attrs: {
|
|
1486
1486
|
uid: string;
|
|
1487
1487
|
prefLabel: string;
|
|
@@ -1532,6 +1532,7 @@ export declare const feedJobEnrichFailedEventMetadata: z.ZodObject<z.objectUtil.
|
|
|
1532
1532
|
totalFeedback: number;
|
|
1533
1533
|
hasFinancialPrivacy: boolean;
|
|
1534
1534
|
};
|
|
1535
|
+
premium: boolean;
|
|
1535
1536
|
publishedOn: string;
|
|
1536
1537
|
renewedOn: string | null;
|
|
1537
1538
|
engagement: string | null;
|
|
@@ -1542,7 +1543,6 @@ export declare const feedJobEnrichFailedEventMetadata: z.ZodObject<z.objectUtil.
|
|
|
1542
1543
|
tierText: string | null;
|
|
1543
1544
|
isApplied: boolean;
|
|
1544
1545
|
proposalsTier: string | null;
|
|
1545
|
-
premium: boolean;
|
|
1546
1546
|
attrs: {
|
|
1547
1547
|
uid: string;
|
|
1548
1548
|
prefLabel: string;
|
|
@@ -1591,6 +1591,7 @@ export declare const feedJobEnrichFailedEventMetadata: z.ZodObject<z.objectUtil.
|
|
|
1591
1591
|
totalFeedback: number;
|
|
1592
1592
|
hasFinancialPrivacy: boolean;
|
|
1593
1593
|
};
|
|
1594
|
+
premium: boolean;
|
|
1594
1595
|
publishedOn: string;
|
|
1595
1596
|
renewedOn: string | null;
|
|
1596
1597
|
engagement: string | null;
|
|
@@ -1601,7 +1602,6 @@ export declare const feedJobEnrichFailedEventMetadata: z.ZodObject<z.objectUtil.
|
|
|
1601
1602
|
tierText: string | null;
|
|
1602
1603
|
isApplied: boolean;
|
|
1603
1604
|
proposalsTier: string | null;
|
|
1604
|
-
premium: boolean;
|
|
1605
1605
|
attrs: {
|
|
1606
1606
|
uid: string;
|
|
1607
1607
|
prefLabel: string;
|