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
|
@@ -679,13 +679,13 @@ export declare const campaignStatusActivitySchema: z.ZodObject<z.objectUtil.exte
|
|
|
679
679
|
}, "strip", z.ZodTypeAny, {
|
|
680
680
|
contractorName: string | null;
|
|
681
681
|
agencyName: string | null;
|
|
682
|
-
bidderId: string | null;
|
|
683
682
|
specialisedProfile: string | null;
|
|
683
|
+
bidderId: string | null;
|
|
684
684
|
}, {
|
|
685
685
|
contractorName: string | null;
|
|
686
686
|
agencyName: string | null;
|
|
687
|
-
bidderId: string | null;
|
|
688
687
|
specialisedProfile: string | null;
|
|
688
|
+
bidderId: string | null;
|
|
689
689
|
}>>;
|
|
690
690
|
coverLetterTemplateId: z.ZodNullable<z.ZodString>;
|
|
691
691
|
priority: z.ZodNullable<z.ZodNumber>;
|
|
@@ -1319,13 +1319,13 @@ export declare const leadAnalysisActivitySchema: z.ZodObject<z.objectUtil.extend
|
|
|
1319
1319
|
}, "strip", z.ZodTypeAny, {
|
|
1320
1320
|
contractorName: string | null;
|
|
1321
1321
|
agencyName: string | null;
|
|
1322
|
-
bidderId: string | null;
|
|
1323
1322
|
specialisedProfile: string | null;
|
|
1323
|
+
bidderId: string | null;
|
|
1324
1324
|
}, {
|
|
1325
1325
|
contractorName: string | null;
|
|
1326
1326
|
agencyName: string | null;
|
|
1327
|
-
bidderId: string | null;
|
|
1328
1327
|
specialisedProfile: string | null;
|
|
1328
|
+
bidderId: string | null;
|
|
1329
1329
|
}>>;
|
|
1330
1330
|
coverLetterTemplateId: z.ZodNullable<z.ZodString>;
|
|
1331
1331
|
priority: z.ZodNullable<z.ZodNumber>;
|
|
@@ -1726,6 +1726,8 @@ export declare const leadAnalysisActivitySchema: z.ZodObject<z.objectUtil.extend
|
|
|
1726
1726
|
biddingAmount: z.ZodNullable<z.ZodNumber>;
|
|
1727
1727
|
boosted: z.ZodNullable<z.ZodBoolean>;
|
|
1728
1728
|
boostingAmount: z.ZodNullable<z.ZodNumber>;
|
|
1729
|
+
boostedForPlace: z.ZodNullable<z.ZodNumber>;
|
|
1730
|
+
specialisedProfile: z.ZodNullable<z.ZodString>;
|
|
1729
1731
|
biddingTaskScheduled: z.ZodNullable<z.ZodBoolean>;
|
|
1730
1732
|
scheduledBiddingTime: z.ZodNullable<z.ZodNumber>;
|
|
1731
1733
|
wonAmount: z.ZodOptional<z.ZodNumber>;
|
|
@@ -2311,13 +2313,13 @@ export declare const leadStatusActivitySchema: z.ZodObject<z.objectUtil.extendSh
|
|
|
2311
2313
|
}, "strip", z.ZodTypeAny, {
|
|
2312
2314
|
contractorName: string | null;
|
|
2313
2315
|
agencyName: string | null;
|
|
2314
|
-
bidderId: string | null;
|
|
2315
2316
|
specialisedProfile: string | null;
|
|
2317
|
+
bidderId: string | null;
|
|
2316
2318
|
}, {
|
|
2317
2319
|
contractorName: string | null;
|
|
2318
2320
|
agencyName: string | null;
|
|
2319
|
-
bidderId: string | null;
|
|
2320
2321
|
specialisedProfile: string | null;
|
|
2322
|
+
bidderId: string | null;
|
|
2321
2323
|
}>>;
|
|
2322
2324
|
coverLetterTemplateId: z.ZodNullable<z.ZodString>;
|
|
2323
2325
|
priority: z.ZodNullable<z.ZodNumber>;
|
|
@@ -2719,6 +2721,8 @@ export declare const leadStatusActivitySchema: z.ZodObject<z.objectUtil.extendSh
|
|
|
2719
2721
|
biddingAmount: z.ZodNullable<z.ZodNumber>;
|
|
2720
2722
|
boosted: z.ZodNullable<z.ZodBoolean>;
|
|
2721
2723
|
boostingAmount: z.ZodNullable<z.ZodNumber>;
|
|
2724
|
+
boostedForPlace: z.ZodNullable<z.ZodNumber>;
|
|
2725
|
+
specialisedProfile: z.ZodNullable<z.ZodString>;
|
|
2722
2726
|
biddingTaskScheduled: z.ZodNullable<z.ZodBoolean>;
|
|
2723
2727
|
scheduledBiddingTime: z.ZodNullable<z.ZodNumber>;
|
|
2724
2728
|
wonAmount: z.ZodOptional<z.ZodNumber>;
|
|
@@ -3303,13 +3307,13 @@ export declare const proposalSentActivitySchema: z.ZodObject<z.objectUtil.extend
|
|
|
3303
3307
|
}, "strip", z.ZodTypeAny, {
|
|
3304
3308
|
contractorName: string | null;
|
|
3305
3309
|
agencyName: string | null;
|
|
3306
|
-
bidderId: string | null;
|
|
3307
3310
|
specialisedProfile: string | null;
|
|
3311
|
+
bidderId: string | null;
|
|
3308
3312
|
}, {
|
|
3309
3313
|
contractorName: string | null;
|
|
3310
3314
|
agencyName: string | null;
|
|
3311
|
-
bidderId: string | null;
|
|
3312
3315
|
specialisedProfile: string | null;
|
|
3316
|
+
bidderId: string | null;
|
|
3313
3317
|
}>>;
|
|
3314
3318
|
coverLetterTemplateId: z.ZodNullable<z.ZodString>;
|
|
3315
3319
|
priority: z.ZodNullable<z.ZodNumber>;
|
|
@@ -3710,6 +3714,8 @@ export declare const proposalSentActivitySchema: z.ZodObject<z.objectUtil.extend
|
|
|
3710
3714
|
biddingAmount: z.ZodNullable<z.ZodNumber>;
|
|
3711
3715
|
boosted: z.ZodNullable<z.ZodBoolean>;
|
|
3712
3716
|
boostingAmount: z.ZodNullable<z.ZodNumber>;
|
|
3717
|
+
boostedForPlace: z.ZodNullable<z.ZodNumber>;
|
|
3718
|
+
specialisedProfile: z.ZodNullable<z.ZodString>;
|
|
3713
3719
|
biddingTaskScheduled: z.ZodNullable<z.ZodBoolean>;
|
|
3714
3720
|
scheduledBiddingTime: z.ZodNullable<z.ZodNumber>;
|
|
3715
3721
|
wonAmount: z.ZodOptional<z.ZodNumber>;
|
|
@@ -4292,13 +4298,13 @@ export declare const campaignActivitySchema: z.ZodDiscriminatedUnion<"type", [z.
|
|
|
4292
4298
|
}, "strip", z.ZodTypeAny, {
|
|
4293
4299
|
contractorName: string | null;
|
|
4294
4300
|
agencyName: string | null;
|
|
4295
|
-
bidderId: string | null;
|
|
4296
4301
|
specialisedProfile: string | null;
|
|
4302
|
+
bidderId: string | null;
|
|
4297
4303
|
}, {
|
|
4298
4304
|
contractorName: string | null;
|
|
4299
4305
|
agencyName: string | null;
|
|
4300
|
-
bidderId: string | null;
|
|
4301
4306
|
specialisedProfile: string | null;
|
|
4307
|
+
bidderId: string | null;
|
|
4302
4308
|
}>>;
|
|
4303
4309
|
coverLetterTemplateId: z.ZodNullable<z.ZodString>;
|
|
4304
4310
|
priority: z.ZodNullable<z.ZodNumber>;
|
|
@@ -4931,13 +4937,13 @@ export declare const campaignActivitySchema: z.ZodDiscriminatedUnion<"type", [z.
|
|
|
4931
4937
|
}, "strip", z.ZodTypeAny, {
|
|
4932
4938
|
contractorName: string | null;
|
|
4933
4939
|
agencyName: string | null;
|
|
4934
|
-
bidderId: string | null;
|
|
4935
4940
|
specialisedProfile: string | null;
|
|
4941
|
+
bidderId: string | null;
|
|
4936
4942
|
}, {
|
|
4937
4943
|
contractorName: string | null;
|
|
4938
4944
|
agencyName: string | null;
|
|
4939
|
-
bidderId: string | null;
|
|
4940
4945
|
specialisedProfile: string | null;
|
|
4946
|
+
bidderId: string | null;
|
|
4941
4947
|
}>>;
|
|
4942
4948
|
coverLetterTemplateId: z.ZodNullable<z.ZodString>;
|
|
4943
4949
|
priority: z.ZodNullable<z.ZodNumber>;
|
|
@@ -5338,6 +5344,8 @@ export declare const campaignActivitySchema: z.ZodDiscriminatedUnion<"type", [z.
|
|
|
5338
5344
|
biddingAmount: z.ZodNullable<z.ZodNumber>;
|
|
5339
5345
|
boosted: z.ZodNullable<z.ZodBoolean>;
|
|
5340
5346
|
boostingAmount: z.ZodNullable<z.ZodNumber>;
|
|
5347
|
+
boostedForPlace: z.ZodNullable<z.ZodNumber>;
|
|
5348
|
+
specialisedProfile: z.ZodNullable<z.ZodString>;
|
|
5341
5349
|
biddingTaskScheduled: z.ZodNullable<z.ZodBoolean>;
|
|
5342
5350
|
scheduledBiddingTime: z.ZodNullable<z.ZodNumber>;
|
|
5343
5351
|
wonAmount: z.ZodOptional<z.ZodNumber>;
|
|
@@ -5922,13 +5930,13 @@ export declare const campaignActivitySchema: z.ZodDiscriminatedUnion<"type", [z.
|
|
|
5922
5930
|
}, "strip", z.ZodTypeAny, {
|
|
5923
5931
|
contractorName: string | null;
|
|
5924
5932
|
agencyName: string | null;
|
|
5925
|
-
bidderId: string | null;
|
|
5926
5933
|
specialisedProfile: string | null;
|
|
5934
|
+
bidderId: string | null;
|
|
5927
5935
|
}, {
|
|
5928
5936
|
contractorName: string | null;
|
|
5929
5937
|
agencyName: string | null;
|
|
5930
|
-
bidderId: string | null;
|
|
5931
5938
|
specialisedProfile: string | null;
|
|
5939
|
+
bidderId: string | null;
|
|
5932
5940
|
}>>;
|
|
5933
5941
|
coverLetterTemplateId: z.ZodNullable<z.ZodString>;
|
|
5934
5942
|
priority: z.ZodNullable<z.ZodNumber>;
|
|
@@ -6330,6 +6338,8 @@ export declare const campaignActivitySchema: z.ZodDiscriminatedUnion<"type", [z.
|
|
|
6330
6338
|
biddingAmount: z.ZodNullable<z.ZodNumber>;
|
|
6331
6339
|
boosted: z.ZodNullable<z.ZodBoolean>;
|
|
6332
6340
|
boostingAmount: z.ZodNullable<z.ZodNumber>;
|
|
6341
|
+
boostedForPlace: z.ZodNullable<z.ZodNumber>;
|
|
6342
|
+
specialisedProfile: z.ZodNullable<z.ZodString>;
|
|
6333
6343
|
biddingTaskScheduled: z.ZodNullable<z.ZodBoolean>;
|
|
6334
6344
|
scheduledBiddingTime: z.ZodNullable<z.ZodNumber>;
|
|
6335
6345
|
wonAmount: z.ZodOptional<z.ZodNumber>;
|
|
@@ -6913,13 +6923,13 @@ export declare const campaignActivitySchema: z.ZodDiscriminatedUnion<"type", [z.
|
|
|
6913
6923
|
}, "strip", z.ZodTypeAny, {
|
|
6914
6924
|
contractorName: string | null;
|
|
6915
6925
|
agencyName: string | null;
|
|
6916
|
-
bidderId: string | null;
|
|
6917
6926
|
specialisedProfile: string | null;
|
|
6927
|
+
bidderId: string | null;
|
|
6918
6928
|
}, {
|
|
6919
6929
|
contractorName: string | null;
|
|
6920
6930
|
agencyName: string | null;
|
|
6921
|
-
bidderId: string | null;
|
|
6922
6931
|
specialisedProfile: string | null;
|
|
6932
|
+
bidderId: string | null;
|
|
6923
6933
|
}>>;
|
|
6924
6934
|
coverLetterTemplateId: z.ZodNullable<z.ZodString>;
|
|
6925
6935
|
priority: z.ZodNullable<z.ZodNumber>;
|
|
@@ -7320,6 +7330,8 @@ export declare const campaignActivitySchema: z.ZodDiscriminatedUnion<"type", [z.
|
|
|
7320
7330
|
biddingAmount: z.ZodNullable<z.ZodNumber>;
|
|
7321
7331
|
boosted: z.ZodNullable<z.ZodBoolean>;
|
|
7322
7332
|
boostingAmount: z.ZodNullable<z.ZodNumber>;
|
|
7333
|
+
boostedForPlace: z.ZodNullable<z.ZodNumber>;
|
|
7334
|
+
specialisedProfile: z.ZodNullable<z.ZodString>;
|
|
7323
7335
|
biddingTaskScheduled: z.ZodNullable<z.ZodBoolean>;
|
|
7324
7336
|
scheduledBiddingTime: z.ZodNullable<z.ZodNumber>;
|
|
7325
7337
|
wonAmount: z.ZodOptional<z.ZodNumber>;
|
|
@@ -7712,6 +7724,8 @@ export declare const campaignActivityCreateSchema: z.ZodDiscriminatedUnion<"type
|
|
|
7712
7724
|
biddingAmount: z.ZodNullable<z.ZodNumber>;
|
|
7713
7725
|
boosted: z.ZodNullable<z.ZodBoolean>;
|
|
7714
7726
|
boostingAmount: z.ZodNullable<z.ZodNumber>;
|
|
7727
|
+
boostedForPlace: z.ZodNullable<z.ZodNumber>;
|
|
7728
|
+
specialisedProfile: z.ZodNullable<z.ZodString>;
|
|
7715
7729
|
biddingTaskScheduled: z.ZodNullable<z.ZodBoolean>;
|
|
7716
7730
|
scheduledBiddingTime: z.ZodNullable<z.ZodNumber>;
|
|
7717
7731
|
wonAmount: z.ZodOptional<z.ZodNumber>;
|
|
@@ -8077,6 +8091,8 @@ export declare const campaignActivityCreateSchema: z.ZodDiscriminatedUnion<"type
|
|
|
8077
8091
|
biddingAmount: z.ZodNullable<z.ZodNumber>;
|
|
8078
8092
|
boosted: z.ZodNullable<z.ZodBoolean>;
|
|
8079
8093
|
boostingAmount: z.ZodNullable<z.ZodNumber>;
|
|
8094
|
+
boostedForPlace: z.ZodNullable<z.ZodNumber>;
|
|
8095
|
+
specialisedProfile: z.ZodNullable<z.ZodString>;
|
|
8080
8096
|
biddingTaskScheduled: z.ZodNullable<z.ZodBoolean>;
|
|
8081
8097
|
scheduledBiddingTime: z.ZodNullable<z.ZodNumber>;
|
|
8082
8098
|
wonAmount: z.ZodOptional<z.ZodNumber>;
|
|
@@ -8440,6 +8456,8 @@ export declare const campaignActivityCreateSchema: z.ZodDiscriminatedUnion<"type
|
|
|
8440
8456
|
biddingAmount: z.ZodNullable<z.ZodNumber>;
|
|
8441
8457
|
boosted: z.ZodNullable<z.ZodBoolean>;
|
|
8442
8458
|
boostingAmount: z.ZodNullable<z.ZodNumber>;
|
|
8459
|
+
boostedForPlace: z.ZodNullable<z.ZodNumber>;
|
|
8460
|
+
specialisedProfile: z.ZodNullable<z.ZodString>;
|
|
8443
8461
|
biddingTaskScheduled: z.ZodNullable<z.ZodBoolean>;
|
|
8444
8462
|
scheduledBiddingTime: z.ZodNullable<z.ZodNumber>;
|
|
8445
8463
|
wonAmount: z.ZodOptional<z.ZodNumber>;
|
|
@@ -8,13 +8,13 @@ export declare const bidConfigSchema: z.ZodObject<{
|
|
|
8
8
|
}, "strip", z.ZodTypeAny, {
|
|
9
9
|
contractorName: string | null;
|
|
10
10
|
agencyName: string | null;
|
|
11
|
-
bidderId: string | null;
|
|
12
11
|
specialisedProfile: string | null;
|
|
12
|
+
bidderId: string | null;
|
|
13
13
|
}, {
|
|
14
14
|
contractorName: string | null;
|
|
15
15
|
agencyName: string | null;
|
|
16
|
-
bidderId: string | null;
|
|
17
16
|
specialisedProfile: string | null;
|
|
17
|
+
bidderId: string | null;
|
|
18
18
|
}>;
|
|
19
19
|
export declare const campaignStatusSchema: z.ZodUnion<[z.ZodLiteral<"active">, z.ZodLiteral<"draft">, z.ZodLiteral<"paused">, z.ZodLiteral<"error">]>;
|
|
20
20
|
export declare const biddingHourlyRateStrategyEnum: z.ZodEnum<["match_job_budget", "match_profile_rate", "fixed_rate"]>;
|
|
@@ -367,13 +367,13 @@ export declare const campaignSchema: z.ZodObject<{
|
|
|
367
367
|
}, "strip", z.ZodTypeAny, {
|
|
368
368
|
contractorName: string | null;
|
|
369
369
|
agencyName: string | null;
|
|
370
|
-
bidderId: string | null;
|
|
371
370
|
specialisedProfile: string | null;
|
|
371
|
+
bidderId: string | null;
|
|
372
372
|
}, {
|
|
373
373
|
contractorName: string | null;
|
|
374
374
|
agencyName: string | null;
|
|
375
|
-
bidderId: string | null;
|
|
376
375
|
specialisedProfile: string | null;
|
|
376
|
+
bidderId: string | null;
|
|
377
377
|
}>>;
|
|
378
378
|
coverLetterTemplateId: z.ZodNullable<z.ZodString>;
|
|
379
379
|
priority: z.ZodNullable<z.ZodNumber>;
|
|
@@ -537,8 +537,8 @@ export declare const campaignSchema: z.ZodObject<{
|
|
|
537
537
|
bidConfig: {
|
|
538
538
|
contractorName: string | null;
|
|
539
539
|
agencyName: string | null;
|
|
540
|
-
bidderId: string | null;
|
|
541
540
|
specialisedProfile: string | null;
|
|
541
|
+
bidderId: string | null;
|
|
542
542
|
} | null;
|
|
543
543
|
coverLetterTemplateId: string | null;
|
|
544
544
|
coverLetterTemplate: {
|
|
@@ -650,8 +650,8 @@ export declare const campaignSchema: z.ZodObject<{
|
|
|
650
650
|
bidConfig: {
|
|
651
651
|
contractorName: string | null;
|
|
652
652
|
agencyName: string | null;
|
|
653
|
-
bidderId: string | null;
|
|
654
653
|
specialisedProfile: string | null;
|
|
654
|
+
bidderId: string | null;
|
|
655
655
|
} | null;
|
|
656
656
|
coverLetterTemplateId: string | null;
|
|
657
657
|
coverLetterTemplate: {
|
|
@@ -1003,13 +1003,13 @@ export declare const createCampaignSchema: z.ZodObject<Omit<{
|
|
|
1003
1003
|
}, "strip", z.ZodTypeAny, {
|
|
1004
1004
|
contractorName: string | null;
|
|
1005
1005
|
agencyName: string | null;
|
|
1006
|
-
bidderId: string | null;
|
|
1007
1006
|
specialisedProfile: string | null;
|
|
1007
|
+
bidderId: string | null;
|
|
1008
1008
|
}, {
|
|
1009
1009
|
contractorName: string | null;
|
|
1010
1010
|
agencyName: string | null;
|
|
1011
|
-
bidderId: string | null;
|
|
1012
1011
|
specialisedProfile: string | null;
|
|
1012
|
+
bidderId: string | null;
|
|
1013
1013
|
}>>;
|
|
1014
1014
|
coverLetterTemplateId: z.ZodNullable<z.ZodString>;
|
|
1015
1015
|
priority: z.ZodNullable<z.ZodNumber>;
|
|
@@ -1614,13 +1614,13 @@ export declare const updateCampaignSchema: z.ZodObject<{
|
|
|
1614
1614
|
}, "strip", z.ZodTypeAny, {
|
|
1615
1615
|
contractorName: string | null;
|
|
1616
1616
|
agencyName: string | null;
|
|
1617
|
-
bidderId: string | null;
|
|
1618
1617
|
specialisedProfile: string | null;
|
|
1618
|
+
bidderId: string | null;
|
|
1619
1619
|
}, {
|
|
1620
1620
|
contractorName: string | null;
|
|
1621
1621
|
agencyName: string | null;
|
|
1622
|
-
bidderId: string | null;
|
|
1623
1622
|
specialisedProfile: string | null;
|
|
1623
|
+
bidderId: string | null;
|
|
1624
1624
|
}>>>;
|
|
1625
1625
|
coverLetterTemplateId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1626
1626
|
coverLetterTemplate: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
@@ -1769,8 +1769,8 @@ export declare const updateCampaignSchema: z.ZodObject<{
|
|
|
1769
1769
|
bidConfig?: {
|
|
1770
1770
|
contractorName: string | null;
|
|
1771
1771
|
agencyName: string | null;
|
|
1772
|
-
bidderId: string | null;
|
|
1773
1772
|
specialisedProfile: string | null;
|
|
1773
|
+
bidderId: string | null;
|
|
1774
1774
|
} | null | undefined;
|
|
1775
1775
|
coverLetterTemplateId?: string | null | undefined;
|
|
1776
1776
|
coverLetterTemplate?: {
|
|
@@ -1885,8 +1885,8 @@ export declare const updateCampaignSchema: z.ZodObject<{
|
|
|
1885
1885
|
bidConfig?: {
|
|
1886
1886
|
contractorName: string | null;
|
|
1887
1887
|
agencyName: string | null;
|
|
1888
|
-
bidderId: string | null;
|
|
1889
1888
|
specialisedProfile: string | null;
|
|
1889
|
+
bidderId: string | null;
|
|
1890
1890
|
} | null | undefined;
|
|
1891
1891
|
coverLetterTemplateId?: string | null | undefined;
|
|
1892
1892
|
coverLetterTemplate?: {
|
|
@@ -333,6 +333,8 @@ export declare const leadSchema: z.ZodObject<Omit<z.objectUtil.extendShape<{
|
|
|
333
333
|
biddingAmount: z.ZodNullable<z.ZodNumber>;
|
|
334
334
|
boosted: z.ZodNullable<z.ZodBoolean>;
|
|
335
335
|
boostingAmount: z.ZodNullable<z.ZodNumber>;
|
|
336
|
+
boostedForPlace: z.ZodNullable<z.ZodNumber>;
|
|
337
|
+
specialisedProfile: z.ZodNullable<z.ZodString>;
|
|
336
338
|
biddingTaskScheduled: z.ZodNullable<z.ZodBoolean>;
|
|
337
339
|
scheduledBiddingTime: z.ZodNullable<z.ZodNumber>;
|
|
338
340
|
wonAmount: z.ZodOptional<z.ZodNumber>;
|
|
@@ -447,6 +449,8 @@ export declare const leadSchema: z.ZodObject<Omit<z.objectUtil.extendShape<{
|
|
|
447
449
|
biddingAmount: number | null;
|
|
448
450
|
boosted: boolean | null;
|
|
449
451
|
boostingAmount: number | null;
|
|
452
|
+
boostedForPlace: number | null;
|
|
453
|
+
specialisedProfile: string | null;
|
|
450
454
|
biddingTaskScheduled: boolean | null;
|
|
451
455
|
scheduledBiddingTime: number | null;
|
|
452
456
|
feedbackCheckTaskId: string | null;
|
|
@@ -582,6 +586,8 @@ export declare const leadSchema: z.ZodObject<Omit<z.objectUtil.extendShape<{
|
|
|
582
586
|
biddingAmount: number | null;
|
|
583
587
|
boosted: boolean | null;
|
|
584
588
|
boostingAmount: number | null;
|
|
589
|
+
boostedForPlace: number | null;
|
|
590
|
+
specialisedProfile: string | null;
|
|
585
591
|
biddingTaskScheduled: boolean | null;
|
|
586
592
|
scheduledBiddingTime: number | null;
|
|
587
593
|
feedbackCheckTaskId: string | null;
|
|
@@ -934,6 +940,8 @@ export declare const leadResponseSchema: z.ZodObject<{
|
|
|
934
940
|
biddingAmount: z.ZodNullable<z.ZodNumber>;
|
|
935
941
|
boosted: z.ZodNullable<z.ZodBoolean>;
|
|
936
942
|
boostingAmount: z.ZodNullable<z.ZodNumber>;
|
|
943
|
+
boostedForPlace: z.ZodNullable<z.ZodNumber>;
|
|
944
|
+
specialisedProfile: z.ZodNullable<z.ZodString>;
|
|
937
945
|
biddingTaskScheduled: z.ZodNullable<z.ZodBoolean>;
|
|
938
946
|
scheduledBiddingTime: z.ZodNullable<z.ZodNumber>;
|
|
939
947
|
wonAmount: z.ZodOptional<z.ZodNumber>;
|
|
@@ -1048,6 +1056,8 @@ export declare const leadResponseSchema: z.ZodObject<{
|
|
|
1048
1056
|
biddingAmount: number | null;
|
|
1049
1057
|
boosted: boolean | null;
|
|
1050
1058
|
boostingAmount: number | null;
|
|
1059
|
+
boostedForPlace: number | null;
|
|
1060
|
+
specialisedProfile: string | null;
|
|
1051
1061
|
biddingTaskScheduled: boolean | null;
|
|
1052
1062
|
scheduledBiddingTime: number | null;
|
|
1053
1063
|
feedbackCheckTaskId: string | null;
|
|
@@ -1183,6 +1193,8 @@ export declare const leadResponseSchema: z.ZodObject<{
|
|
|
1183
1193
|
biddingAmount: number | null;
|
|
1184
1194
|
boosted: boolean | null;
|
|
1185
1195
|
boostingAmount: number | null;
|
|
1196
|
+
boostedForPlace: number | null;
|
|
1197
|
+
specialisedProfile: string | null;
|
|
1186
1198
|
biddingTaskScheduled: boolean | null;
|
|
1187
1199
|
scheduledBiddingTime: number | null;
|
|
1188
1200
|
feedbackCheckTaskId: string | null;
|
|
@@ -1323,6 +1335,8 @@ export declare const leadResponseSchema: z.ZodObject<{
|
|
|
1323
1335
|
biddingAmount: number | null;
|
|
1324
1336
|
boosted: boolean | null;
|
|
1325
1337
|
boostingAmount: number | null;
|
|
1338
|
+
boostedForPlace: number | null;
|
|
1339
|
+
specialisedProfile: string | null;
|
|
1326
1340
|
biddingTaskScheduled: boolean | null;
|
|
1327
1341
|
scheduledBiddingTime: number | null;
|
|
1328
1342
|
feedbackCheckTaskId: string | null;
|
|
@@ -1463,6 +1477,8 @@ export declare const leadResponseSchema: z.ZodObject<{
|
|
|
1463
1477
|
biddingAmount: number | null;
|
|
1464
1478
|
boosted: boolean | null;
|
|
1465
1479
|
boostingAmount: number | null;
|
|
1480
|
+
boostedForPlace: number | null;
|
|
1481
|
+
specialisedProfile: string | null;
|
|
1466
1482
|
biddingTaskScheduled: boolean | null;
|
|
1467
1483
|
scheduledBiddingTime: number | null;
|
|
1468
1484
|
feedbackCheckTaskId: string | null;
|
|
@@ -2355,6 +2371,8 @@ export declare const findLeadsResponseSchema: z.ZodObject<{
|
|
|
2355
2371
|
biddingAmount: z.ZodNullable<z.ZodNumber>;
|
|
2356
2372
|
boosted: z.ZodNullable<z.ZodBoolean>;
|
|
2357
2373
|
boostingAmount: z.ZodNullable<z.ZodNumber>;
|
|
2374
|
+
boostedForPlace: z.ZodNullable<z.ZodNumber>;
|
|
2375
|
+
specialisedProfile: z.ZodNullable<z.ZodString>;
|
|
2358
2376
|
biddingTaskScheduled: z.ZodNullable<z.ZodBoolean>;
|
|
2359
2377
|
scheduledBiddingTime: z.ZodNullable<z.ZodNumber>;
|
|
2360
2378
|
wonAmount: z.ZodOptional<z.ZodNumber>;
|
|
@@ -2469,6 +2487,8 @@ export declare const findLeadsResponseSchema: z.ZodObject<{
|
|
|
2469
2487
|
biddingAmount: number | null;
|
|
2470
2488
|
boosted: boolean | null;
|
|
2471
2489
|
boostingAmount: number | null;
|
|
2490
|
+
boostedForPlace: number | null;
|
|
2491
|
+
specialisedProfile: string | null;
|
|
2472
2492
|
biddingTaskScheduled: boolean | null;
|
|
2473
2493
|
scheduledBiddingTime: number | null;
|
|
2474
2494
|
feedbackCheckTaskId: string | null;
|
|
@@ -2604,6 +2624,8 @@ export declare const findLeadsResponseSchema: z.ZodObject<{
|
|
|
2604
2624
|
biddingAmount: number | null;
|
|
2605
2625
|
boosted: boolean | null;
|
|
2606
2626
|
boostingAmount: number | null;
|
|
2627
|
+
boostedForPlace: number | null;
|
|
2628
|
+
specialisedProfile: string | null;
|
|
2607
2629
|
biddingTaskScheduled: boolean | null;
|
|
2608
2630
|
scheduledBiddingTime: number | null;
|
|
2609
2631
|
feedbackCheckTaskId: string | null;
|
|
@@ -2855,6 +2877,8 @@ export declare const findLeadsResponseSchema: z.ZodObject<{
|
|
|
2855
2877
|
biddingAmount: number | null;
|
|
2856
2878
|
boosted: boolean | null;
|
|
2857
2879
|
boostingAmount: number | null;
|
|
2880
|
+
boostedForPlace: number | null;
|
|
2881
|
+
specialisedProfile: string | null;
|
|
2858
2882
|
biddingTaskScheduled: boolean | null;
|
|
2859
2883
|
scheduledBiddingTime: number | null;
|
|
2860
2884
|
feedbackCheckTaskId: string | null;
|
|
@@ -3107,6 +3131,8 @@ export declare const findLeadsResponseSchema: z.ZodObject<{
|
|
|
3107
3131
|
biddingAmount: number | null;
|
|
3108
3132
|
boosted: boolean | null;
|
|
3109
3133
|
boostingAmount: number | null;
|
|
3134
|
+
boostedForPlace: number | null;
|
|
3135
|
+
specialisedProfile: string | null;
|
|
3110
3136
|
biddingTaskScheduled: boolean | null;
|
|
3111
3137
|
scheduledBiddingTime: number | null;
|
|
3112
3138
|
feedbackCheckTaskId: string | null;
|
|
@@ -3478,6 +3504,8 @@ export declare const getCampaignLeadsResponseSchema: z.ZodObject<{
|
|
|
3478
3504
|
biddingAmount: z.ZodNullable<z.ZodNumber>;
|
|
3479
3505
|
boosted: z.ZodNullable<z.ZodBoolean>;
|
|
3480
3506
|
boostingAmount: z.ZodNullable<z.ZodNumber>;
|
|
3507
|
+
boostedForPlace: z.ZodNullable<z.ZodNumber>;
|
|
3508
|
+
specialisedProfile: z.ZodNullable<z.ZodString>;
|
|
3481
3509
|
biddingTaskScheduled: z.ZodNullable<z.ZodBoolean>;
|
|
3482
3510
|
scheduledBiddingTime: z.ZodNullable<z.ZodNumber>;
|
|
3483
3511
|
wonAmount: z.ZodOptional<z.ZodNumber>;
|
|
@@ -3592,6 +3620,8 @@ export declare const getCampaignLeadsResponseSchema: z.ZodObject<{
|
|
|
3592
3620
|
biddingAmount: number | null;
|
|
3593
3621
|
boosted: boolean | null;
|
|
3594
3622
|
boostingAmount: number | null;
|
|
3623
|
+
boostedForPlace: number | null;
|
|
3624
|
+
specialisedProfile: string | null;
|
|
3595
3625
|
biddingTaskScheduled: boolean | null;
|
|
3596
3626
|
scheduledBiddingTime: number | null;
|
|
3597
3627
|
feedbackCheckTaskId: string | null;
|
|
@@ -3727,6 +3757,8 @@ export declare const getCampaignLeadsResponseSchema: z.ZodObject<{
|
|
|
3727
3757
|
biddingAmount: number | null;
|
|
3728
3758
|
boosted: boolean | null;
|
|
3729
3759
|
boostingAmount: number | null;
|
|
3760
|
+
boostedForPlace: number | null;
|
|
3761
|
+
specialisedProfile: string | null;
|
|
3730
3762
|
biddingTaskScheduled: boolean | null;
|
|
3731
3763
|
scheduledBiddingTime: number | null;
|
|
3732
3764
|
feedbackCheckTaskId: string | null;
|
|
@@ -3877,6 +3909,8 @@ export declare const getCampaignLeadsResponseSchema: z.ZodObject<{
|
|
|
3877
3909
|
biddingAmount: number | null;
|
|
3878
3910
|
boosted: boolean | null;
|
|
3879
3911
|
boostingAmount: number | null;
|
|
3912
|
+
boostedForPlace: number | null;
|
|
3913
|
+
specialisedProfile: string | null;
|
|
3880
3914
|
biddingTaskScheduled: boolean | null;
|
|
3881
3915
|
scheduledBiddingTime: number | null;
|
|
3882
3916
|
feedbackCheckTaskId: string | null;
|
|
@@ -4019,6 +4053,8 @@ export declare const getCampaignLeadsResponseSchema: z.ZodObject<{
|
|
|
4019
4053
|
biddingAmount: number | null;
|
|
4020
4054
|
boosted: boolean | null;
|
|
4021
4055
|
boostingAmount: number | null;
|
|
4056
|
+
boostedForPlace: number | null;
|
|
4057
|
+
specialisedProfile: string | null;
|
|
4022
4058
|
biddingTaskScheduled: boolean | null;
|
|
4023
4059
|
scheduledBiddingTime: number | null;
|
|
4024
4060
|
feedbackCheckTaskId: string | null;
|
|
@@ -42,15 +42,18 @@ export declare const biddingCompletedEventMetadata: z.ZodObject<{
|
|
|
42
42
|
boosted: z.ZodBoolean;
|
|
43
43
|
boostingAmount: z.ZodNumber;
|
|
44
44
|
applicationId: z.ZodString;
|
|
45
|
+
boostedForPlace: z.ZodNullable<z.ZodNumber>;
|
|
45
46
|
}, "strip", z.ZodTypeAny, {
|
|
46
47
|
biddingAmount: number;
|
|
47
48
|
boosted: boolean;
|
|
48
49
|
boostingAmount: number;
|
|
50
|
+
boostedForPlace: number | null;
|
|
49
51
|
applicationId: string;
|
|
50
52
|
}, {
|
|
51
53
|
biddingAmount: number;
|
|
52
54
|
boosted: boolean;
|
|
53
55
|
boostingAmount: number;
|
|
56
|
+
boostedForPlace: number | null;
|
|
54
57
|
applicationId: string;
|
|
55
58
|
}>;
|
|
56
59
|
export declare const biddingFailedEventMetadata: z.ZodObject<{
|
|
@@ -722,13 +722,13 @@ export declare const checkLeadStatusPayloadSchema: z.ZodObject<{
|
|
|
722
722
|
}, "strip", z.ZodTypeAny, {
|
|
723
723
|
contractorName: string | null;
|
|
724
724
|
agencyName: string | null;
|
|
725
|
-
bidderId: string | null;
|
|
726
725
|
specialisedProfile: string | null;
|
|
726
|
+
bidderId: string | null;
|
|
727
727
|
}, {
|
|
728
728
|
contractorName: string | null;
|
|
729
729
|
agencyName: string | null;
|
|
730
|
-
bidderId: string | null;
|
|
731
730
|
specialisedProfile: string | null;
|
|
731
|
+
bidderId: string | null;
|
|
732
732
|
}>>;
|
|
733
733
|
coverLetterTemplateId: z.ZodNullable<z.ZodString>;
|
|
734
734
|
priority: z.ZodNullable<z.ZodNumber>;
|
|
@@ -892,8 +892,8 @@ export declare const checkLeadStatusPayloadSchema: z.ZodObject<{
|
|
|
892
892
|
bidConfig: {
|
|
893
893
|
contractorName: string | null;
|
|
894
894
|
agencyName: string | null;
|
|
895
|
-
bidderId: string | null;
|
|
896
895
|
specialisedProfile: string | null;
|
|
896
|
+
bidderId: string | null;
|
|
897
897
|
} | null;
|
|
898
898
|
coverLetterTemplateId: string | null;
|
|
899
899
|
coverLetterTemplate: {
|
|
@@ -1005,8 +1005,8 @@ export declare const checkLeadStatusPayloadSchema: z.ZodObject<{
|
|
|
1005
1005
|
bidConfig: {
|
|
1006
1006
|
contractorName: string | null;
|
|
1007
1007
|
agencyName: string | null;
|
|
1008
|
-
bidderId: string | null;
|
|
1009
1008
|
specialisedProfile: string | null;
|
|
1009
|
+
bidderId: string | null;
|
|
1010
1010
|
} | null;
|
|
1011
1011
|
coverLetterTemplateId: string | null;
|
|
1012
1012
|
coverLetterTemplate: {
|
|
@@ -1685,6 +1685,8 @@ export declare const checkLeadStatusPayloadSchema: z.ZodObject<{
|
|
|
1685
1685
|
biddingAmount: z.ZodNullable<z.ZodNumber>;
|
|
1686
1686
|
boosted: z.ZodNullable<z.ZodBoolean>;
|
|
1687
1687
|
boostingAmount: z.ZodNullable<z.ZodNumber>;
|
|
1688
|
+
boostedForPlace: z.ZodNullable<z.ZodNumber>;
|
|
1689
|
+
specialisedProfile: z.ZodNullable<z.ZodString>;
|
|
1688
1690
|
biddingTaskScheduled: z.ZodNullable<z.ZodBoolean>;
|
|
1689
1691
|
scheduledBiddingTime: z.ZodNullable<z.ZodNumber>;
|
|
1690
1692
|
wonAmount: z.ZodOptional<z.ZodNumber>;
|
|
@@ -1799,6 +1801,8 @@ export declare const checkLeadStatusPayloadSchema: z.ZodObject<{
|
|
|
1799
1801
|
biddingAmount: number | null;
|
|
1800
1802
|
boosted: boolean | null;
|
|
1801
1803
|
boostingAmount: number | null;
|
|
1804
|
+
boostedForPlace: number | null;
|
|
1805
|
+
specialisedProfile: string | null;
|
|
1802
1806
|
biddingTaskScheduled: boolean | null;
|
|
1803
1807
|
scheduledBiddingTime: number | null;
|
|
1804
1808
|
feedbackCheckTaskId: string | null;
|
|
@@ -1934,6 +1938,8 @@ export declare const checkLeadStatusPayloadSchema: z.ZodObject<{
|
|
|
1934
1938
|
biddingAmount: number | null;
|
|
1935
1939
|
boosted: boolean | null;
|
|
1936
1940
|
boostingAmount: number | null;
|
|
1941
|
+
boostedForPlace: number | null;
|
|
1942
|
+
specialisedProfile: string | null;
|
|
1937
1943
|
biddingTaskScheduled: boolean | null;
|
|
1938
1944
|
scheduledBiddingTime: number | null;
|
|
1939
1945
|
feedbackCheckTaskId: string | null;
|
|
@@ -2239,6 +2245,8 @@ export declare const checkLeadStatusPayloadSchema: z.ZodObject<{
|
|
|
2239
2245
|
biddingAmount: number | null;
|
|
2240
2246
|
boosted: boolean | null;
|
|
2241
2247
|
boostingAmount: number | null;
|
|
2248
|
+
boostedForPlace: number | null;
|
|
2249
|
+
specialisedProfile: string | null;
|
|
2242
2250
|
biddingTaskScheduled: boolean | null;
|
|
2243
2251
|
scheduledBiddingTime: number | null;
|
|
2244
2252
|
feedbackCheckTaskId: string | null;
|
|
@@ -2363,8 +2371,8 @@ export declare const checkLeadStatusPayloadSchema: z.ZodObject<{
|
|
|
2363
2371
|
bidConfig: {
|
|
2364
2372
|
contractorName: string | null;
|
|
2365
2373
|
agencyName: string | null;
|
|
2366
|
-
bidderId: string | null;
|
|
2367
2374
|
specialisedProfile: string | null;
|
|
2375
|
+
bidderId: string | null;
|
|
2368
2376
|
} | null;
|
|
2369
2377
|
coverLetterTemplateId: string | null;
|
|
2370
2378
|
coverLetterTemplate: {
|
|
@@ -2585,6 +2593,8 @@ export declare const checkLeadStatusPayloadSchema: z.ZodObject<{
|
|
|
2585
2593
|
biddingAmount: number | null;
|
|
2586
2594
|
boosted: boolean | null;
|
|
2587
2595
|
boostingAmount: number | null;
|
|
2596
|
+
boostedForPlace: number | null;
|
|
2597
|
+
specialisedProfile: string | null;
|
|
2588
2598
|
biddingTaskScheduled: boolean | null;
|
|
2589
2599
|
scheduledBiddingTime: number | null;
|
|
2590
2600
|
feedbackCheckTaskId: string | null;
|
|
@@ -2704,8 +2714,8 @@ export declare const checkLeadStatusPayloadSchema: z.ZodObject<{
|
|
|
2704
2714
|
bidConfig: {
|
|
2705
2715
|
contractorName: string | null;
|
|
2706
2716
|
agencyName: string | null;
|
|
2707
|
-
bidderId: string | null;
|
|
2708
2717
|
specialisedProfile: string | null;
|
|
2718
|
+
bidderId: string | null;
|
|
2709
2719
|
} | null;
|
|
2710
2720
|
coverLetterTemplateId: string | null;
|
|
2711
2721
|
coverLetterTemplate: {
|