lancer-shared 1.2.250 → 1.2.252
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 +21 -0
- package/dist/bundle.cjs.js.map +1 -1
- package/dist/bundle.esm.js +19 -1
- package/dist/bundle.esm.js.map +1 -1
- package/dist/constants/routes.d.ts +1 -0
- package/dist/schemas/agent/index.d.ts +13 -2
- package/dist/schemas/agent/profile.d.ts +55 -0
- package/dist/schemas/bidder/bid.d.ts +98 -0
- package/dist/schemas/campaign/campaign-analytics.d.ts +34 -16
- package/dist/schemas/campaign/campaign.d.ts +12 -12
- package/dist/schemas/lead/index.d.ts +36 -0
- package/dist/schemas/logger/log-event.d.ts +3 -0
- package/dist/schemas/scraper/scrape-payload.d.ts +16 -6
- package/package.json +1 -1
|
@@ -235,6 +235,7 @@ export declare const ROUTES: {
|
|
|
235
235
|
readonly TEST_SUITABILITY: "agent/test-suitability";
|
|
236
236
|
readonly TEST_PROPOSAL: "agent/test-proposal";
|
|
237
237
|
readonly TEST_SYSTEM_PROMPTS: "agent/test-system-prompts";
|
|
238
|
+
readonly TEST_PICK_PROFILE: "agent/test-pick-profile";
|
|
238
239
|
readonly ANALYZE_LEAD: "agent/analyze-lead";
|
|
239
240
|
readonly GENERATE_PROPOSAL: "agent/generate-proposal";
|
|
240
241
|
readonly PICK_SPECIALISED_PROFILE: "agent/pick-specialised-profile";
|
|
@@ -423,6 +423,8 @@ export declare const agentCalculateSuitabilityRequestSchema: z.ZodObject<{
|
|
|
423
423
|
biddingAmount: z.ZodNullable<z.ZodNumber>;
|
|
424
424
|
boosted: z.ZodNullable<z.ZodBoolean>;
|
|
425
425
|
boostingAmount: z.ZodNullable<z.ZodNumber>;
|
|
426
|
+
boostedForPlace: z.ZodNullable<z.ZodNumber>;
|
|
427
|
+
specialisedProfile: z.ZodNullable<z.ZodString>;
|
|
426
428
|
biddingTaskScheduled: z.ZodNullable<z.ZodBoolean>;
|
|
427
429
|
scheduledBiddingTime: z.ZodNullable<z.ZodNumber>;
|
|
428
430
|
wonAmount: z.ZodOptional<z.ZodNumber>;
|
|
@@ -537,6 +539,8 @@ export declare const agentCalculateSuitabilityRequestSchema: z.ZodObject<{
|
|
|
537
539
|
biddingAmount: number | null;
|
|
538
540
|
boosted: boolean | null;
|
|
539
541
|
boostingAmount: number | null;
|
|
542
|
+
boostedForPlace: number | null;
|
|
543
|
+
specialisedProfile: string | null;
|
|
540
544
|
biddingTaskScheduled: boolean | null;
|
|
541
545
|
scheduledBiddingTime: number | null;
|
|
542
546
|
feedbackCheckTaskId: string | null;
|
|
@@ -672,6 +676,8 @@ export declare const agentCalculateSuitabilityRequestSchema: z.ZodObject<{
|
|
|
672
676
|
biddingAmount: number | null;
|
|
673
677
|
boosted: boolean | null;
|
|
674
678
|
boostingAmount: number | null;
|
|
679
|
+
boostedForPlace: number | null;
|
|
680
|
+
specialisedProfile: string | null;
|
|
675
681
|
biddingTaskScheduled: boolean | null;
|
|
676
682
|
scheduledBiddingTime: number | null;
|
|
677
683
|
feedbackCheckTaskId: string | null;
|
|
@@ -823,6 +829,8 @@ export declare const agentCalculateSuitabilityRequestSchema: z.ZodObject<{
|
|
|
823
829
|
biddingAmount: number | null;
|
|
824
830
|
boosted: boolean | null;
|
|
825
831
|
boostingAmount: number | null;
|
|
832
|
+
boostedForPlace: number | null;
|
|
833
|
+
specialisedProfile: string | null;
|
|
826
834
|
biddingTaskScheduled: boolean | null;
|
|
827
835
|
scheduledBiddingTime: number | null;
|
|
828
836
|
feedbackCheckTaskId: string | null;
|
|
@@ -968,6 +976,8 @@ export declare const agentCalculateSuitabilityRequestSchema: z.ZodObject<{
|
|
|
968
976
|
biddingAmount: number | null;
|
|
969
977
|
boosted: boolean | null;
|
|
970
978
|
boostingAmount: number | null;
|
|
979
|
+
boostedForPlace: number | null;
|
|
980
|
+
specialisedProfile: string | null;
|
|
971
981
|
biddingTaskScheduled: boolean | null;
|
|
972
982
|
scheduledBiddingTime: number | null;
|
|
973
983
|
feedbackCheckTaskId: string | null;
|
|
@@ -1095,6 +1105,7 @@ export declare const agentTaskResponseSchema: z.ZodObject<{
|
|
|
1095
1105
|
completionTokens: z.ZodNumber;
|
|
1096
1106
|
}, "strip", z.ZodTypeAny, {
|
|
1097
1107
|
provider: string;
|
|
1108
|
+
model: string;
|
|
1098
1109
|
result: {
|
|
1099
1110
|
questionAnswerPairs: {
|
|
1100
1111
|
answer: string;
|
|
@@ -1105,11 +1116,11 @@ export declare const agentTaskResponseSchema: z.ZodObject<{
|
|
|
1105
1116
|
reason: string;
|
|
1106
1117
|
rating: number;
|
|
1107
1118
|
};
|
|
1108
|
-
model: string;
|
|
1109
1119
|
promptTokens: number;
|
|
1110
1120
|
completionTokens: number;
|
|
1111
1121
|
}, {
|
|
1112
1122
|
provider: string;
|
|
1123
|
+
model: string;
|
|
1113
1124
|
result: {
|
|
1114
1125
|
questionAnswerPairs: {
|
|
1115
1126
|
answer: string;
|
|
@@ -1120,9 +1131,9 @@ export declare const agentTaskResponseSchema: z.ZodObject<{
|
|
|
1120
1131
|
reason: string;
|
|
1121
1132
|
rating: number;
|
|
1122
1133
|
};
|
|
1123
|
-
model: string;
|
|
1124
1134
|
promptTokens: number;
|
|
1125
1135
|
completionTokens: number;
|
|
1126
1136
|
}>;
|
|
1127
1137
|
export type AgentTaskResponse = z.infer<typeof agentTaskResponseSchema>;
|
|
1128
1138
|
export type SuitabilityRating = z.infer<typeof suitabilityRatingSchema>;
|
|
1139
|
+
export * from './profile';
|
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
import { z } from 'zod';
|
|
2
|
+
export declare const specialisedProfileSchema: z.ZodObject<{
|
|
3
|
+
name: z.ZodString;
|
|
4
|
+
title: z.ZodString;
|
|
5
|
+
}, "strip", z.ZodTypeAny, {
|
|
6
|
+
name: string;
|
|
7
|
+
title: string;
|
|
8
|
+
}, {
|
|
9
|
+
name: string;
|
|
10
|
+
title: string;
|
|
11
|
+
}>;
|
|
12
|
+
export declare const pickProfileRequestSchema: z.ZodObject<{
|
|
13
|
+
jobTitle: z.ZodString;
|
|
14
|
+
jobDescription: z.ZodString;
|
|
15
|
+
model: z.ZodString;
|
|
16
|
+
}, "strip", z.ZodTypeAny, {
|
|
17
|
+
jobTitle: string;
|
|
18
|
+
jobDescription: string;
|
|
19
|
+
model: string;
|
|
20
|
+
}, {
|
|
21
|
+
jobTitle: string;
|
|
22
|
+
jobDescription: string;
|
|
23
|
+
model: string;
|
|
24
|
+
}>;
|
|
25
|
+
export declare const pickProfileResponseSchema: z.ZodObject<{
|
|
26
|
+
selectedProfile: z.ZodObject<{
|
|
27
|
+
name: z.ZodString;
|
|
28
|
+
title: z.ZodString;
|
|
29
|
+
}, "strip", z.ZodTypeAny, {
|
|
30
|
+
name: string;
|
|
31
|
+
title: string;
|
|
32
|
+
}, {
|
|
33
|
+
name: string;
|
|
34
|
+
title: string;
|
|
35
|
+
}>;
|
|
36
|
+
confidence: z.ZodString;
|
|
37
|
+
matchingKeywords: z.ZodArray<z.ZodString, "many">;
|
|
38
|
+
}, "strip", z.ZodTypeAny, {
|
|
39
|
+
selectedProfile: {
|
|
40
|
+
name: string;
|
|
41
|
+
title: string;
|
|
42
|
+
};
|
|
43
|
+
confidence: string;
|
|
44
|
+
matchingKeywords: string[];
|
|
45
|
+
}, {
|
|
46
|
+
selectedProfile: {
|
|
47
|
+
name: string;
|
|
48
|
+
title: string;
|
|
49
|
+
};
|
|
50
|
+
confidence: string;
|
|
51
|
+
matchingKeywords: string[];
|
|
52
|
+
}>;
|
|
53
|
+
export type PickProfileRequest = z.infer<typeof pickProfileRequestSchema>;
|
|
54
|
+
export type PickProfileResponse = z.infer<typeof pickProfileResponseSchema>;
|
|
55
|
+
export type SpecialisedProfile = z.infer<typeof specialisedProfileSchema>;
|
|
@@ -325,6 +325,8 @@ export declare const bidPayloadProposalDataSchema: z.ZodObject<{
|
|
|
325
325
|
biddingAmount: z.ZodNullable<z.ZodNumber>;
|
|
326
326
|
boosted: z.ZodNullable<z.ZodBoolean>;
|
|
327
327
|
boostingAmount: z.ZodNullable<z.ZodNumber>;
|
|
328
|
+
boostedForPlace: z.ZodNullable<z.ZodNumber>;
|
|
329
|
+
specialisedProfile: z.ZodNullable<z.ZodString>;
|
|
328
330
|
biddingTaskScheduled: z.ZodNullable<z.ZodBoolean>;
|
|
329
331
|
scheduledBiddingTime: z.ZodNullable<z.ZodNumber>;
|
|
330
332
|
wonAmount: z.ZodOptional<z.ZodNumber>;
|
|
@@ -439,6 +441,8 @@ export declare const bidPayloadProposalDataSchema: z.ZodObject<{
|
|
|
439
441
|
biddingAmount: number | null;
|
|
440
442
|
boosted: boolean | null;
|
|
441
443
|
boostingAmount: number | null;
|
|
444
|
+
boostedForPlace: number | null;
|
|
445
|
+
specialisedProfile: string | null;
|
|
442
446
|
biddingTaskScheduled: boolean | null;
|
|
443
447
|
scheduledBiddingTime: number | null;
|
|
444
448
|
feedbackCheckTaskId: string | null;
|
|
@@ -574,6 +578,8 @@ export declare const bidPayloadProposalDataSchema: z.ZodObject<{
|
|
|
574
578
|
biddingAmount: number | null;
|
|
575
579
|
boosted: boolean | null;
|
|
576
580
|
boostingAmount: number | null;
|
|
581
|
+
boostedForPlace: number | null;
|
|
582
|
+
specialisedProfile: string | null;
|
|
577
583
|
biddingTaskScheduled: boolean | null;
|
|
578
584
|
scheduledBiddingTime: number | null;
|
|
579
585
|
feedbackCheckTaskId: string | null;
|
|
@@ -743,6 +749,8 @@ export declare const bidPayloadProposalDataSchema: z.ZodObject<{
|
|
|
743
749
|
biddingAmount: number | null;
|
|
744
750
|
boosted: boolean | null;
|
|
745
751
|
boostingAmount: number | null;
|
|
752
|
+
boostedForPlace: number | null;
|
|
753
|
+
specialisedProfile: string | null;
|
|
746
754
|
biddingTaskScheduled: boolean | null;
|
|
747
755
|
scheduledBiddingTime: number | null;
|
|
748
756
|
feedbackCheckTaskId: string | null;
|
|
@@ -901,6 +909,8 @@ export declare const bidPayloadProposalDataSchema: z.ZodObject<{
|
|
|
901
909
|
biddingAmount: number | null;
|
|
902
910
|
boosted: boolean | null;
|
|
903
911
|
boostingAmount: number | null;
|
|
912
|
+
boostedForPlace: number | null;
|
|
913
|
+
specialisedProfile: string | null;
|
|
904
914
|
biddingTaskScheduled: boolean | null;
|
|
905
915
|
scheduledBiddingTime: number | null;
|
|
906
916
|
feedbackCheckTaskId: string | null;
|
|
@@ -1270,6 +1280,8 @@ export declare const freelancerBidProposalDataSchema: z.ZodObject<{
|
|
|
1270
1280
|
biddingAmount: z.ZodNullable<z.ZodNumber>;
|
|
1271
1281
|
boosted: z.ZodNullable<z.ZodBoolean>;
|
|
1272
1282
|
boostingAmount: z.ZodNullable<z.ZodNumber>;
|
|
1283
|
+
boostedForPlace: z.ZodNullable<z.ZodNumber>;
|
|
1284
|
+
specialisedProfile: z.ZodNullable<z.ZodString>;
|
|
1273
1285
|
biddingTaskScheduled: z.ZodNullable<z.ZodBoolean>;
|
|
1274
1286
|
scheduledBiddingTime: z.ZodNullable<z.ZodNumber>;
|
|
1275
1287
|
wonAmount: z.ZodOptional<z.ZodNumber>;
|
|
@@ -1384,6 +1396,8 @@ export declare const freelancerBidProposalDataSchema: z.ZodObject<{
|
|
|
1384
1396
|
biddingAmount: number | null;
|
|
1385
1397
|
boosted: boolean | null;
|
|
1386
1398
|
boostingAmount: number | null;
|
|
1399
|
+
boostedForPlace: number | null;
|
|
1400
|
+
specialisedProfile: string | null;
|
|
1387
1401
|
biddingTaskScheduled: boolean | null;
|
|
1388
1402
|
scheduledBiddingTime: number | null;
|
|
1389
1403
|
feedbackCheckTaskId: string | null;
|
|
@@ -1519,6 +1533,8 @@ export declare const freelancerBidProposalDataSchema: z.ZodObject<{
|
|
|
1519
1533
|
biddingAmount: number | null;
|
|
1520
1534
|
boosted: boolean | null;
|
|
1521
1535
|
boostingAmount: number | null;
|
|
1536
|
+
boostedForPlace: number | null;
|
|
1537
|
+
specialisedProfile: string | null;
|
|
1522
1538
|
biddingTaskScheduled: boolean | null;
|
|
1523
1539
|
scheduledBiddingTime: number | null;
|
|
1524
1540
|
feedbackCheckTaskId: string | null;
|
|
@@ -1688,6 +1704,8 @@ export declare const freelancerBidProposalDataSchema: z.ZodObject<{
|
|
|
1688
1704
|
biddingAmount: number | null;
|
|
1689
1705
|
boosted: boolean | null;
|
|
1690
1706
|
boostingAmount: number | null;
|
|
1707
|
+
boostedForPlace: number | null;
|
|
1708
|
+
specialisedProfile: string | null;
|
|
1691
1709
|
biddingTaskScheduled: boolean | null;
|
|
1692
1710
|
scheduledBiddingTime: number | null;
|
|
1693
1711
|
feedbackCheckTaskId: string | null;
|
|
@@ -1846,6 +1864,8 @@ export declare const freelancerBidProposalDataSchema: z.ZodObject<{
|
|
|
1846
1864
|
biddingAmount: number | null;
|
|
1847
1865
|
boosted: boolean | null;
|
|
1848
1866
|
boostingAmount: number | null;
|
|
1867
|
+
boostedForPlace: number | null;
|
|
1868
|
+
specialisedProfile: string | null;
|
|
1849
1869
|
biddingTaskScheduled: boolean | null;
|
|
1850
1870
|
scheduledBiddingTime: number | null;
|
|
1851
1871
|
feedbackCheckTaskId: string | null;
|
|
@@ -2215,6 +2235,8 @@ export declare const agencyBidProposalDataSchema: z.ZodObject<z.objectUtil.exten
|
|
|
2215
2235
|
biddingAmount: z.ZodNullable<z.ZodNumber>;
|
|
2216
2236
|
boosted: z.ZodNullable<z.ZodBoolean>;
|
|
2217
2237
|
boostingAmount: z.ZodNullable<z.ZodNumber>;
|
|
2238
|
+
boostedForPlace: z.ZodNullable<z.ZodNumber>;
|
|
2239
|
+
specialisedProfile: z.ZodNullable<z.ZodString>;
|
|
2218
2240
|
biddingTaskScheduled: z.ZodNullable<z.ZodBoolean>;
|
|
2219
2241
|
scheduledBiddingTime: z.ZodNullable<z.ZodNumber>;
|
|
2220
2242
|
wonAmount: z.ZodOptional<z.ZodNumber>;
|
|
@@ -2329,6 +2351,8 @@ export declare const agencyBidProposalDataSchema: z.ZodObject<z.objectUtil.exten
|
|
|
2329
2351
|
biddingAmount: number | null;
|
|
2330
2352
|
boosted: boolean | null;
|
|
2331
2353
|
boostingAmount: number | null;
|
|
2354
|
+
boostedForPlace: number | null;
|
|
2355
|
+
specialisedProfile: string | null;
|
|
2332
2356
|
biddingTaskScheduled: boolean | null;
|
|
2333
2357
|
scheduledBiddingTime: number | null;
|
|
2334
2358
|
feedbackCheckTaskId: string | null;
|
|
@@ -2464,6 +2488,8 @@ export declare const agencyBidProposalDataSchema: z.ZodObject<z.objectUtil.exten
|
|
|
2464
2488
|
biddingAmount: number | null;
|
|
2465
2489
|
boosted: boolean | null;
|
|
2466
2490
|
boostingAmount: number | null;
|
|
2491
|
+
boostedForPlace: number | null;
|
|
2492
|
+
specialisedProfile: string | null;
|
|
2467
2493
|
biddingTaskScheduled: boolean | null;
|
|
2468
2494
|
scheduledBiddingTime: number | null;
|
|
2469
2495
|
feedbackCheckTaskId: string | null;
|
|
@@ -2639,6 +2665,8 @@ export declare const agencyBidProposalDataSchema: z.ZodObject<z.objectUtil.exten
|
|
|
2639
2665
|
biddingAmount: number | null;
|
|
2640
2666
|
boosted: boolean | null;
|
|
2641
2667
|
boostingAmount: number | null;
|
|
2668
|
+
boostedForPlace: number | null;
|
|
2669
|
+
specialisedProfile: string | null;
|
|
2642
2670
|
biddingTaskScheduled: boolean | null;
|
|
2643
2671
|
scheduledBiddingTime: number | null;
|
|
2644
2672
|
feedbackCheckTaskId: string | null;
|
|
@@ -2800,6 +2828,8 @@ export declare const agencyBidProposalDataSchema: z.ZodObject<z.objectUtil.exten
|
|
|
2800
2828
|
biddingAmount: number | null;
|
|
2801
2829
|
boosted: boolean | null;
|
|
2802
2830
|
boostingAmount: number | null;
|
|
2831
|
+
boostedForPlace: number | null;
|
|
2832
|
+
specialisedProfile: string | null;
|
|
2803
2833
|
biddingTaskScheduled: boolean | null;
|
|
2804
2834
|
scheduledBiddingTime: number | null;
|
|
2805
2835
|
feedbackCheckTaskId: string | null;
|
|
@@ -3170,6 +3200,8 @@ export declare const bidPayloadSchema: z.ZodObject<{
|
|
|
3170
3200
|
biddingAmount: z.ZodNullable<z.ZodNumber>;
|
|
3171
3201
|
boosted: z.ZodNullable<z.ZodBoolean>;
|
|
3172
3202
|
boostingAmount: z.ZodNullable<z.ZodNumber>;
|
|
3203
|
+
boostedForPlace: z.ZodNullable<z.ZodNumber>;
|
|
3204
|
+
specialisedProfile: z.ZodNullable<z.ZodString>;
|
|
3173
3205
|
biddingTaskScheduled: z.ZodNullable<z.ZodBoolean>;
|
|
3174
3206
|
scheduledBiddingTime: z.ZodNullable<z.ZodNumber>;
|
|
3175
3207
|
wonAmount: z.ZodOptional<z.ZodNumber>;
|
|
@@ -3284,6 +3316,8 @@ export declare const bidPayloadSchema: z.ZodObject<{
|
|
|
3284
3316
|
biddingAmount: number | null;
|
|
3285
3317
|
boosted: boolean | null;
|
|
3286
3318
|
boostingAmount: number | null;
|
|
3319
|
+
boostedForPlace: number | null;
|
|
3320
|
+
specialisedProfile: string | null;
|
|
3287
3321
|
biddingTaskScheduled: boolean | null;
|
|
3288
3322
|
scheduledBiddingTime: number | null;
|
|
3289
3323
|
feedbackCheckTaskId: string | null;
|
|
@@ -3419,6 +3453,8 @@ export declare const bidPayloadSchema: z.ZodObject<{
|
|
|
3419
3453
|
biddingAmount: number | null;
|
|
3420
3454
|
boosted: boolean | null;
|
|
3421
3455
|
boostingAmount: number | null;
|
|
3456
|
+
boostedForPlace: number | null;
|
|
3457
|
+
specialisedProfile: string | null;
|
|
3422
3458
|
biddingTaskScheduled: boolean | null;
|
|
3423
3459
|
scheduledBiddingTime: number | null;
|
|
3424
3460
|
feedbackCheckTaskId: string | null;
|
|
@@ -3564,6 +3600,8 @@ export declare const bidPayloadSchema: z.ZodObject<{
|
|
|
3564
3600
|
biddingAmount: number | null;
|
|
3565
3601
|
boosted: boolean | null;
|
|
3566
3602
|
boostingAmount: number | null;
|
|
3603
|
+
boostedForPlace: number | null;
|
|
3604
|
+
specialisedProfile: string | null;
|
|
3567
3605
|
biddingTaskScheduled: boolean | null;
|
|
3568
3606
|
scheduledBiddingTime: number | null;
|
|
3569
3607
|
feedbackCheckTaskId: string | null;
|
|
@@ -3706,6 +3744,8 @@ export declare const bidPayloadSchema: z.ZodObject<{
|
|
|
3706
3744
|
biddingAmount: number | null;
|
|
3707
3745
|
boosted: boolean | null;
|
|
3708
3746
|
boostingAmount: number | null;
|
|
3747
|
+
boostedForPlace: number | null;
|
|
3748
|
+
specialisedProfile: string | null;
|
|
3709
3749
|
biddingTaskScheduled: boolean | null;
|
|
3710
3750
|
scheduledBiddingTime: number | null;
|
|
3711
3751
|
feedbackCheckTaskId: string | null;
|
|
@@ -4061,6 +4101,8 @@ export declare const agencyBidPayloadSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
4061
4101
|
biddingAmount: z.ZodNullable<z.ZodNumber>;
|
|
4062
4102
|
boosted: z.ZodNullable<z.ZodBoolean>;
|
|
4063
4103
|
boostingAmount: z.ZodNullable<z.ZodNumber>;
|
|
4104
|
+
boostedForPlace: z.ZodNullable<z.ZodNumber>;
|
|
4105
|
+
specialisedProfile: z.ZodNullable<z.ZodString>;
|
|
4064
4106
|
biddingTaskScheduled: z.ZodNullable<z.ZodBoolean>;
|
|
4065
4107
|
scheduledBiddingTime: z.ZodNullable<z.ZodNumber>;
|
|
4066
4108
|
wonAmount: z.ZodOptional<z.ZodNumber>;
|
|
@@ -4175,6 +4217,8 @@ export declare const agencyBidPayloadSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
4175
4217
|
biddingAmount: number | null;
|
|
4176
4218
|
boosted: boolean | null;
|
|
4177
4219
|
boostingAmount: number | null;
|
|
4220
|
+
boostedForPlace: number | null;
|
|
4221
|
+
specialisedProfile: string | null;
|
|
4178
4222
|
biddingTaskScheduled: boolean | null;
|
|
4179
4223
|
scheduledBiddingTime: number | null;
|
|
4180
4224
|
feedbackCheckTaskId: string | null;
|
|
@@ -4310,6 +4354,8 @@ export declare const agencyBidPayloadSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
4310
4354
|
biddingAmount: number | null;
|
|
4311
4355
|
boosted: boolean | null;
|
|
4312
4356
|
boostingAmount: number | null;
|
|
4357
|
+
boostedForPlace: number | null;
|
|
4358
|
+
specialisedProfile: string | null;
|
|
4313
4359
|
biddingTaskScheduled: boolean | null;
|
|
4314
4360
|
scheduledBiddingTime: number | null;
|
|
4315
4361
|
feedbackCheckTaskId: string | null;
|
|
@@ -4668,6 +4714,8 @@ export declare const agencyBidPayloadSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
4668
4714
|
biddingAmount: z.ZodNullable<z.ZodNumber>;
|
|
4669
4715
|
boosted: z.ZodNullable<z.ZodBoolean>;
|
|
4670
4716
|
boostingAmount: z.ZodNullable<z.ZodNumber>;
|
|
4717
|
+
boostedForPlace: z.ZodNullable<z.ZodNumber>;
|
|
4718
|
+
specialisedProfile: z.ZodNullable<z.ZodString>;
|
|
4671
4719
|
biddingTaskScheduled: z.ZodNullable<z.ZodBoolean>;
|
|
4672
4720
|
scheduledBiddingTime: z.ZodNullable<z.ZodNumber>;
|
|
4673
4721
|
wonAmount: z.ZodOptional<z.ZodNumber>;
|
|
@@ -4782,6 +4830,8 @@ export declare const agencyBidPayloadSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
4782
4830
|
biddingAmount: number | null;
|
|
4783
4831
|
boosted: boolean | null;
|
|
4784
4832
|
boostingAmount: number | null;
|
|
4833
|
+
boostedForPlace: number | null;
|
|
4834
|
+
specialisedProfile: string | null;
|
|
4785
4835
|
biddingTaskScheduled: boolean | null;
|
|
4786
4836
|
scheduledBiddingTime: number | null;
|
|
4787
4837
|
feedbackCheckTaskId: string | null;
|
|
@@ -4917,6 +4967,8 @@ export declare const agencyBidPayloadSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
4917
4967
|
biddingAmount: number | null;
|
|
4918
4968
|
boosted: boolean | null;
|
|
4919
4969
|
boostingAmount: number | null;
|
|
4970
|
+
boostedForPlace: number | null;
|
|
4971
|
+
specialisedProfile: string | null;
|
|
4920
4972
|
biddingTaskScheduled: boolean | null;
|
|
4921
4973
|
scheduledBiddingTime: number | null;
|
|
4922
4974
|
feedbackCheckTaskId: string | null;
|
|
@@ -5092,6 +5144,8 @@ export declare const agencyBidPayloadSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
5092
5144
|
biddingAmount: number | null;
|
|
5093
5145
|
boosted: boolean | null;
|
|
5094
5146
|
boostingAmount: number | null;
|
|
5147
|
+
boostedForPlace: number | null;
|
|
5148
|
+
specialisedProfile: string | null;
|
|
5095
5149
|
biddingTaskScheduled: boolean | null;
|
|
5096
5150
|
scheduledBiddingTime: number | null;
|
|
5097
5151
|
feedbackCheckTaskId: string | null;
|
|
@@ -5253,6 +5307,8 @@ export declare const agencyBidPayloadSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
5253
5307
|
biddingAmount: number | null;
|
|
5254
5308
|
boosted: boolean | null;
|
|
5255
5309
|
boostingAmount: number | null;
|
|
5310
|
+
boostedForPlace: number | null;
|
|
5311
|
+
specialisedProfile: string | null;
|
|
5256
5312
|
biddingTaskScheduled: boolean | null;
|
|
5257
5313
|
scheduledBiddingTime: number | null;
|
|
5258
5314
|
feedbackCheckTaskId: string | null;
|
|
@@ -5411,6 +5467,8 @@ export declare const agencyBidPayloadSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
5411
5467
|
biddingAmount: number | null;
|
|
5412
5468
|
boosted: boolean | null;
|
|
5413
5469
|
boostingAmount: number | null;
|
|
5470
|
+
boostedForPlace: number | null;
|
|
5471
|
+
specialisedProfile: string | null;
|
|
5414
5472
|
biddingTaskScheduled: boolean | null;
|
|
5415
5473
|
scheduledBiddingTime: number | null;
|
|
5416
5474
|
feedbackCheckTaskId: string | null;
|
|
@@ -5557,6 +5615,8 @@ export declare const agencyBidPayloadSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
5557
5615
|
biddingAmount: number | null;
|
|
5558
5616
|
boosted: boolean | null;
|
|
5559
5617
|
boostingAmount: number | null;
|
|
5618
|
+
boostedForPlace: number | null;
|
|
5619
|
+
specialisedProfile: string | null;
|
|
5560
5620
|
biddingTaskScheduled: boolean | null;
|
|
5561
5621
|
scheduledBiddingTime: number | null;
|
|
5562
5622
|
feedbackCheckTaskId: string | null;
|
|
@@ -5715,6 +5775,8 @@ export declare const agencyBidPayloadSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
5715
5775
|
biddingAmount: number | null;
|
|
5716
5776
|
boosted: boolean | null;
|
|
5717
5777
|
boostingAmount: number | null;
|
|
5778
|
+
boostedForPlace: number | null;
|
|
5779
|
+
specialisedProfile: string | null;
|
|
5718
5780
|
biddingTaskScheduled: boolean | null;
|
|
5719
5781
|
scheduledBiddingTime: number | null;
|
|
5720
5782
|
feedbackCheckTaskId: string | null;
|
|
@@ -5861,6 +5923,8 @@ export declare const agencyBidPayloadSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
5861
5923
|
biddingAmount: number | null;
|
|
5862
5924
|
boosted: boolean | null;
|
|
5863
5925
|
boostingAmount: number | null;
|
|
5926
|
+
boostedForPlace: number | null;
|
|
5927
|
+
specialisedProfile: string | null;
|
|
5864
5928
|
biddingTaskScheduled: boolean | null;
|
|
5865
5929
|
scheduledBiddingTime: number | null;
|
|
5866
5930
|
feedbackCheckTaskId: string | null;
|
|
@@ -6232,6 +6296,8 @@ export declare const freelancerBidPayloadSchema: z.ZodObject<z.objectUtil.extend
|
|
|
6232
6296
|
biddingAmount: z.ZodNullable<z.ZodNumber>;
|
|
6233
6297
|
boosted: z.ZodNullable<z.ZodBoolean>;
|
|
6234
6298
|
boostingAmount: z.ZodNullable<z.ZodNumber>;
|
|
6299
|
+
boostedForPlace: z.ZodNullable<z.ZodNumber>;
|
|
6300
|
+
specialisedProfile: z.ZodNullable<z.ZodString>;
|
|
6235
6301
|
biddingTaskScheduled: z.ZodNullable<z.ZodBoolean>;
|
|
6236
6302
|
scheduledBiddingTime: z.ZodNullable<z.ZodNumber>;
|
|
6237
6303
|
wonAmount: z.ZodOptional<z.ZodNumber>;
|
|
@@ -6346,6 +6412,8 @@ export declare const freelancerBidPayloadSchema: z.ZodObject<z.objectUtil.extend
|
|
|
6346
6412
|
biddingAmount: number | null;
|
|
6347
6413
|
boosted: boolean | null;
|
|
6348
6414
|
boostingAmount: number | null;
|
|
6415
|
+
boostedForPlace: number | null;
|
|
6416
|
+
specialisedProfile: string | null;
|
|
6349
6417
|
biddingTaskScheduled: boolean | null;
|
|
6350
6418
|
scheduledBiddingTime: number | null;
|
|
6351
6419
|
feedbackCheckTaskId: string | null;
|
|
@@ -6481,6 +6549,8 @@ export declare const freelancerBidPayloadSchema: z.ZodObject<z.objectUtil.extend
|
|
|
6481
6549
|
biddingAmount: number | null;
|
|
6482
6550
|
boosted: boolean | null;
|
|
6483
6551
|
boostingAmount: number | null;
|
|
6552
|
+
boostedForPlace: number | null;
|
|
6553
|
+
specialisedProfile: string | null;
|
|
6484
6554
|
biddingTaskScheduled: boolean | null;
|
|
6485
6555
|
scheduledBiddingTime: number | null;
|
|
6486
6556
|
feedbackCheckTaskId: string | null;
|
|
@@ -6839,6 +6909,8 @@ export declare const freelancerBidPayloadSchema: z.ZodObject<z.objectUtil.extend
|
|
|
6839
6909
|
biddingAmount: z.ZodNullable<z.ZodNumber>;
|
|
6840
6910
|
boosted: z.ZodNullable<z.ZodBoolean>;
|
|
6841
6911
|
boostingAmount: z.ZodNullable<z.ZodNumber>;
|
|
6912
|
+
boostedForPlace: z.ZodNullable<z.ZodNumber>;
|
|
6913
|
+
specialisedProfile: z.ZodNullable<z.ZodString>;
|
|
6842
6914
|
biddingTaskScheduled: z.ZodNullable<z.ZodBoolean>;
|
|
6843
6915
|
scheduledBiddingTime: z.ZodNullable<z.ZodNumber>;
|
|
6844
6916
|
wonAmount: z.ZodOptional<z.ZodNumber>;
|
|
@@ -6953,6 +7025,8 @@ export declare const freelancerBidPayloadSchema: z.ZodObject<z.objectUtil.extend
|
|
|
6953
7025
|
biddingAmount: number | null;
|
|
6954
7026
|
boosted: boolean | null;
|
|
6955
7027
|
boostingAmount: number | null;
|
|
7028
|
+
boostedForPlace: number | null;
|
|
7029
|
+
specialisedProfile: string | null;
|
|
6956
7030
|
biddingTaskScheduled: boolean | null;
|
|
6957
7031
|
scheduledBiddingTime: number | null;
|
|
6958
7032
|
feedbackCheckTaskId: string | null;
|
|
@@ -7088,6 +7162,8 @@ export declare const freelancerBidPayloadSchema: z.ZodObject<z.objectUtil.extend
|
|
|
7088
7162
|
biddingAmount: number | null;
|
|
7089
7163
|
boosted: boolean | null;
|
|
7090
7164
|
boostingAmount: number | null;
|
|
7165
|
+
boostedForPlace: number | null;
|
|
7166
|
+
specialisedProfile: string | null;
|
|
7091
7167
|
biddingTaskScheduled: boolean | null;
|
|
7092
7168
|
scheduledBiddingTime: number | null;
|
|
7093
7169
|
feedbackCheckTaskId: string | null;
|
|
@@ -7257,6 +7333,8 @@ export declare const freelancerBidPayloadSchema: z.ZodObject<z.objectUtil.extend
|
|
|
7257
7333
|
biddingAmount: number | null;
|
|
7258
7334
|
boosted: boolean | null;
|
|
7259
7335
|
boostingAmount: number | null;
|
|
7336
|
+
boostedForPlace: number | null;
|
|
7337
|
+
specialisedProfile: string | null;
|
|
7260
7338
|
biddingTaskScheduled: boolean | null;
|
|
7261
7339
|
scheduledBiddingTime: number | null;
|
|
7262
7340
|
feedbackCheckTaskId: string | null;
|
|
@@ -7415,6 +7493,8 @@ export declare const freelancerBidPayloadSchema: z.ZodObject<z.objectUtil.extend
|
|
|
7415
7493
|
biddingAmount: number | null;
|
|
7416
7494
|
boosted: boolean | null;
|
|
7417
7495
|
boostingAmount: number | null;
|
|
7496
|
+
boostedForPlace: number | null;
|
|
7497
|
+
specialisedProfile: string | null;
|
|
7418
7498
|
biddingTaskScheduled: boolean | null;
|
|
7419
7499
|
scheduledBiddingTime: number | null;
|
|
7420
7500
|
feedbackCheckTaskId: string | null;
|
|
@@ -7572,6 +7652,8 @@ export declare const freelancerBidPayloadSchema: z.ZodObject<z.objectUtil.extend
|
|
|
7572
7652
|
biddingAmount: number | null;
|
|
7573
7653
|
boosted: boolean | null;
|
|
7574
7654
|
boostingAmount: number | null;
|
|
7655
|
+
boostedForPlace: number | null;
|
|
7656
|
+
specialisedProfile: string | null;
|
|
7575
7657
|
biddingTaskScheduled: boolean | null;
|
|
7576
7658
|
scheduledBiddingTime: number | null;
|
|
7577
7659
|
feedbackCheckTaskId: string | null;
|
|
@@ -7716,6 +7798,8 @@ export declare const freelancerBidPayloadSchema: z.ZodObject<z.objectUtil.extend
|
|
|
7716
7798
|
biddingAmount: number | null;
|
|
7717
7799
|
boosted: boolean | null;
|
|
7718
7800
|
boostingAmount: number | null;
|
|
7801
|
+
boostedForPlace: number | null;
|
|
7802
|
+
specialisedProfile: string | null;
|
|
7719
7803
|
biddingTaskScheduled: boolean | null;
|
|
7720
7804
|
scheduledBiddingTime: number | null;
|
|
7721
7805
|
feedbackCheckTaskId: string | null;
|
|
@@ -7873,6 +7957,8 @@ export declare const freelancerBidPayloadSchema: z.ZodObject<z.objectUtil.extend
|
|
|
7873
7957
|
biddingAmount: number | null;
|
|
7874
7958
|
boosted: boolean | null;
|
|
7875
7959
|
boostingAmount: number | null;
|
|
7960
|
+
boostedForPlace: number | null;
|
|
7961
|
+
specialisedProfile: string | null;
|
|
7876
7962
|
biddingTaskScheduled: boolean | null;
|
|
7877
7963
|
scheduledBiddingTime: number | null;
|
|
7878
7964
|
feedbackCheckTaskId: string | null;
|
|
@@ -8017,6 +8103,8 @@ export declare const freelancerBidPayloadSchema: z.ZodObject<z.objectUtil.extend
|
|
|
8017
8103
|
biddingAmount: number | null;
|
|
8018
8104
|
boosted: boolean | null;
|
|
8019
8105
|
boostingAmount: number | null;
|
|
8106
|
+
boostedForPlace: number | null;
|
|
8107
|
+
specialisedProfile: string | null;
|
|
8020
8108
|
biddingTaskScheduled: boolean | null;
|
|
8021
8109
|
scheduledBiddingTime: number | null;
|
|
8022
8110
|
feedbackCheckTaskId: string | null;
|
|
@@ -8388,6 +8476,8 @@ export declare const bidDtoSchema: z.ZodObject<{
|
|
|
8388
8476
|
biddingAmount: z.ZodNullable<z.ZodNumber>;
|
|
8389
8477
|
boosted: z.ZodNullable<z.ZodBoolean>;
|
|
8390
8478
|
boostingAmount: z.ZodNullable<z.ZodNumber>;
|
|
8479
|
+
boostedForPlace: z.ZodNullable<z.ZodNumber>;
|
|
8480
|
+
specialisedProfile: z.ZodNullable<z.ZodString>;
|
|
8391
8481
|
biddingTaskScheduled: z.ZodNullable<z.ZodBoolean>;
|
|
8392
8482
|
scheduledBiddingTime: z.ZodNullable<z.ZodNumber>;
|
|
8393
8483
|
wonAmount: z.ZodOptional<z.ZodNumber>;
|
|
@@ -8502,6 +8592,8 @@ export declare const bidDtoSchema: z.ZodObject<{
|
|
|
8502
8592
|
biddingAmount: number | null;
|
|
8503
8593
|
boosted: boolean | null;
|
|
8504
8594
|
boostingAmount: number | null;
|
|
8595
|
+
boostedForPlace: number | null;
|
|
8596
|
+
specialisedProfile: string | null;
|
|
8505
8597
|
biddingTaskScheduled: boolean | null;
|
|
8506
8598
|
scheduledBiddingTime: number | null;
|
|
8507
8599
|
feedbackCheckTaskId: string | null;
|
|
@@ -8637,6 +8729,8 @@ export declare const bidDtoSchema: z.ZodObject<{
|
|
|
8637
8729
|
biddingAmount: number | null;
|
|
8638
8730
|
boosted: boolean | null;
|
|
8639
8731
|
boostingAmount: number | null;
|
|
8732
|
+
boostedForPlace: number | null;
|
|
8733
|
+
specialisedProfile: string | null;
|
|
8640
8734
|
biddingTaskScheduled: boolean | null;
|
|
8641
8735
|
scheduledBiddingTime: number | null;
|
|
8642
8736
|
feedbackCheckTaskId: string | null;
|
|
@@ -8777,6 +8871,8 @@ export declare const bidDtoSchema: z.ZodObject<{
|
|
|
8777
8871
|
biddingAmount: number | null;
|
|
8778
8872
|
boosted: boolean | null;
|
|
8779
8873
|
boostingAmount: number | null;
|
|
8874
|
+
boostedForPlace: number | null;
|
|
8875
|
+
specialisedProfile: string | null;
|
|
8780
8876
|
biddingTaskScheduled: boolean | null;
|
|
8781
8877
|
scheduledBiddingTime: number | null;
|
|
8782
8878
|
feedbackCheckTaskId: string | null;
|
|
@@ -8917,6 +9013,8 @@ export declare const bidDtoSchema: z.ZodObject<{
|
|
|
8917
9013
|
biddingAmount: number | null;
|
|
8918
9014
|
boosted: boolean | null;
|
|
8919
9015
|
boostingAmount: number | null;
|
|
9016
|
+
boostedForPlace: number | null;
|
|
9017
|
+
specialisedProfile: string | null;
|
|
8920
9018
|
biddingTaskScheduled: boolean | null;
|
|
8921
9019
|
scheduledBiddingTime: number | null;
|
|
8922
9020
|
feedbackCheckTaskId: string | null;
|