lancer-shared 1.2.251 → 1.2.253
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 +3 -0
- package/dist/bundle.cjs.js.map +1 -1
- package/dist/bundle.esm.js +3 -0
- package/dist/bundle.esm.js.map +1 -1
- package/dist/schemas/agent/index.d.ts +10 -5
- package/dist/schemas/bidder/bid.d.ts +98 -49
- package/dist/schemas/campaign/campaign-analytics.d.ts +34 -25
- package/dist/schemas/campaign/campaign.d.ts +12 -12
- package/dist/schemas/lead/index.d.ts +36 -18
- package/dist/schemas/logger/log-event.d.ts +5 -2
- package/dist/schemas/scraper/scrape-payload.d.ts +16 -11
- 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,7 +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
|
-
|
|
1729
|
+
boostedForPlace: z.ZodNullable<z.ZodNumber>;
|
|
1730
|
+
specialisedProfile: z.ZodNullable<z.ZodString>;
|
|
1730
1731
|
biddingTaskScheduled: z.ZodNullable<z.ZodBoolean>;
|
|
1731
1732
|
scheduledBiddingTime: z.ZodNullable<z.ZodNumber>;
|
|
1732
1733
|
wonAmount: z.ZodOptional<z.ZodNumber>;
|
|
@@ -2312,13 +2313,13 @@ export declare const leadStatusActivitySchema: z.ZodObject<z.objectUtil.extendSh
|
|
|
2312
2313
|
}, "strip", z.ZodTypeAny, {
|
|
2313
2314
|
contractorName: string | null;
|
|
2314
2315
|
agencyName: string | null;
|
|
2315
|
-
bidderId: string | null;
|
|
2316
2316
|
specialisedProfile: string | null;
|
|
2317
|
+
bidderId: string | null;
|
|
2317
2318
|
}, {
|
|
2318
2319
|
contractorName: string | null;
|
|
2319
2320
|
agencyName: string | null;
|
|
2320
|
-
bidderId: string | null;
|
|
2321
2321
|
specialisedProfile: string | null;
|
|
2322
|
+
bidderId: string | null;
|
|
2322
2323
|
}>>;
|
|
2323
2324
|
coverLetterTemplateId: z.ZodNullable<z.ZodString>;
|
|
2324
2325
|
priority: z.ZodNullable<z.ZodNumber>;
|
|
@@ -2720,7 +2721,8 @@ export declare const leadStatusActivitySchema: z.ZodObject<z.objectUtil.extendSh
|
|
|
2720
2721
|
biddingAmount: z.ZodNullable<z.ZodNumber>;
|
|
2721
2722
|
boosted: z.ZodNullable<z.ZodBoolean>;
|
|
2722
2723
|
boostingAmount: z.ZodNullable<z.ZodNumber>;
|
|
2723
|
-
|
|
2724
|
+
boostedForPlace: z.ZodNullable<z.ZodNumber>;
|
|
2725
|
+
specialisedProfile: z.ZodNullable<z.ZodString>;
|
|
2724
2726
|
biddingTaskScheduled: z.ZodNullable<z.ZodBoolean>;
|
|
2725
2727
|
scheduledBiddingTime: z.ZodNullable<z.ZodNumber>;
|
|
2726
2728
|
wonAmount: z.ZodOptional<z.ZodNumber>;
|
|
@@ -3305,13 +3307,13 @@ export declare const proposalSentActivitySchema: z.ZodObject<z.objectUtil.extend
|
|
|
3305
3307
|
}, "strip", z.ZodTypeAny, {
|
|
3306
3308
|
contractorName: string | null;
|
|
3307
3309
|
agencyName: string | null;
|
|
3308
|
-
bidderId: string | null;
|
|
3309
3310
|
specialisedProfile: string | null;
|
|
3311
|
+
bidderId: string | null;
|
|
3310
3312
|
}, {
|
|
3311
3313
|
contractorName: string | null;
|
|
3312
3314
|
agencyName: string | null;
|
|
3313
|
-
bidderId: string | null;
|
|
3314
3315
|
specialisedProfile: string | null;
|
|
3316
|
+
bidderId: string | null;
|
|
3315
3317
|
}>>;
|
|
3316
3318
|
coverLetterTemplateId: z.ZodNullable<z.ZodString>;
|
|
3317
3319
|
priority: z.ZodNullable<z.ZodNumber>;
|
|
@@ -3712,7 +3714,8 @@ export declare const proposalSentActivitySchema: z.ZodObject<z.objectUtil.extend
|
|
|
3712
3714
|
biddingAmount: z.ZodNullable<z.ZodNumber>;
|
|
3713
3715
|
boosted: z.ZodNullable<z.ZodBoolean>;
|
|
3714
3716
|
boostingAmount: z.ZodNullable<z.ZodNumber>;
|
|
3715
|
-
|
|
3717
|
+
boostedForPlace: z.ZodNullable<z.ZodNumber>;
|
|
3718
|
+
specialisedProfile: z.ZodNullable<z.ZodString>;
|
|
3716
3719
|
biddingTaskScheduled: z.ZodNullable<z.ZodBoolean>;
|
|
3717
3720
|
scheduledBiddingTime: z.ZodNullable<z.ZodNumber>;
|
|
3718
3721
|
wonAmount: z.ZodOptional<z.ZodNumber>;
|
|
@@ -4295,13 +4298,13 @@ export declare const campaignActivitySchema: z.ZodDiscriminatedUnion<"type", [z.
|
|
|
4295
4298
|
}, "strip", z.ZodTypeAny, {
|
|
4296
4299
|
contractorName: string | null;
|
|
4297
4300
|
agencyName: string | null;
|
|
4298
|
-
bidderId: string | null;
|
|
4299
4301
|
specialisedProfile: string | null;
|
|
4302
|
+
bidderId: string | null;
|
|
4300
4303
|
}, {
|
|
4301
4304
|
contractorName: string | null;
|
|
4302
4305
|
agencyName: string | null;
|
|
4303
|
-
bidderId: string | null;
|
|
4304
4306
|
specialisedProfile: string | null;
|
|
4307
|
+
bidderId: string | null;
|
|
4305
4308
|
}>>;
|
|
4306
4309
|
coverLetterTemplateId: z.ZodNullable<z.ZodString>;
|
|
4307
4310
|
priority: z.ZodNullable<z.ZodNumber>;
|
|
@@ -4934,13 +4937,13 @@ export declare const campaignActivitySchema: z.ZodDiscriminatedUnion<"type", [z.
|
|
|
4934
4937
|
}, "strip", z.ZodTypeAny, {
|
|
4935
4938
|
contractorName: string | null;
|
|
4936
4939
|
agencyName: string | null;
|
|
4937
|
-
bidderId: string | null;
|
|
4938
4940
|
specialisedProfile: string | null;
|
|
4941
|
+
bidderId: string | null;
|
|
4939
4942
|
}, {
|
|
4940
4943
|
contractorName: string | null;
|
|
4941
4944
|
agencyName: string | null;
|
|
4942
|
-
bidderId: string | null;
|
|
4943
4945
|
specialisedProfile: string | null;
|
|
4946
|
+
bidderId: string | null;
|
|
4944
4947
|
}>>;
|
|
4945
4948
|
coverLetterTemplateId: z.ZodNullable<z.ZodString>;
|
|
4946
4949
|
priority: z.ZodNullable<z.ZodNumber>;
|
|
@@ -5341,7 +5344,8 @@ export declare const campaignActivitySchema: z.ZodDiscriminatedUnion<"type", [z.
|
|
|
5341
5344
|
biddingAmount: z.ZodNullable<z.ZodNumber>;
|
|
5342
5345
|
boosted: z.ZodNullable<z.ZodBoolean>;
|
|
5343
5346
|
boostingAmount: z.ZodNullable<z.ZodNumber>;
|
|
5344
|
-
|
|
5347
|
+
boostedForPlace: z.ZodNullable<z.ZodNumber>;
|
|
5348
|
+
specialisedProfile: z.ZodNullable<z.ZodString>;
|
|
5345
5349
|
biddingTaskScheduled: z.ZodNullable<z.ZodBoolean>;
|
|
5346
5350
|
scheduledBiddingTime: z.ZodNullable<z.ZodNumber>;
|
|
5347
5351
|
wonAmount: z.ZodOptional<z.ZodNumber>;
|
|
@@ -5926,13 +5930,13 @@ export declare const campaignActivitySchema: z.ZodDiscriminatedUnion<"type", [z.
|
|
|
5926
5930
|
}, "strip", z.ZodTypeAny, {
|
|
5927
5931
|
contractorName: string | null;
|
|
5928
5932
|
agencyName: string | null;
|
|
5929
|
-
bidderId: string | null;
|
|
5930
5933
|
specialisedProfile: string | null;
|
|
5934
|
+
bidderId: string | null;
|
|
5931
5935
|
}, {
|
|
5932
5936
|
contractorName: string | null;
|
|
5933
5937
|
agencyName: string | null;
|
|
5934
|
-
bidderId: string | null;
|
|
5935
5938
|
specialisedProfile: string | null;
|
|
5939
|
+
bidderId: string | null;
|
|
5936
5940
|
}>>;
|
|
5937
5941
|
coverLetterTemplateId: z.ZodNullable<z.ZodString>;
|
|
5938
5942
|
priority: z.ZodNullable<z.ZodNumber>;
|
|
@@ -6334,7 +6338,8 @@ export declare const campaignActivitySchema: z.ZodDiscriminatedUnion<"type", [z.
|
|
|
6334
6338
|
biddingAmount: z.ZodNullable<z.ZodNumber>;
|
|
6335
6339
|
boosted: z.ZodNullable<z.ZodBoolean>;
|
|
6336
6340
|
boostingAmount: z.ZodNullable<z.ZodNumber>;
|
|
6337
|
-
|
|
6341
|
+
boostedForPlace: z.ZodNullable<z.ZodNumber>;
|
|
6342
|
+
specialisedProfile: z.ZodNullable<z.ZodString>;
|
|
6338
6343
|
biddingTaskScheduled: z.ZodNullable<z.ZodBoolean>;
|
|
6339
6344
|
scheduledBiddingTime: z.ZodNullable<z.ZodNumber>;
|
|
6340
6345
|
wonAmount: z.ZodOptional<z.ZodNumber>;
|
|
@@ -6918,13 +6923,13 @@ export declare const campaignActivitySchema: z.ZodDiscriminatedUnion<"type", [z.
|
|
|
6918
6923
|
}, "strip", z.ZodTypeAny, {
|
|
6919
6924
|
contractorName: string | null;
|
|
6920
6925
|
agencyName: string | null;
|
|
6921
|
-
bidderId: string | null;
|
|
6922
6926
|
specialisedProfile: string | null;
|
|
6927
|
+
bidderId: string | null;
|
|
6923
6928
|
}, {
|
|
6924
6929
|
contractorName: string | null;
|
|
6925
6930
|
agencyName: string | null;
|
|
6926
|
-
bidderId: string | null;
|
|
6927
6931
|
specialisedProfile: string | null;
|
|
6932
|
+
bidderId: string | null;
|
|
6928
6933
|
}>>;
|
|
6929
6934
|
coverLetterTemplateId: z.ZodNullable<z.ZodString>;
|
|
6930
6935
|
priority: z.ZodNullable<z.ZodNumber>;
|
|
@@ -7325,7 +7330,8 @@ export declare const campaignActivitySchema: z.ZodDiscriminatedUnion<"type", [z.
|
|
|
7325
7330
|
biddingAmount: z.ZodNullable<z.ZodNumber>;
|
|
7326
7331
|
boosted: z.ZodNullable<z.ZodBoolean>;
|
|
7327
7332
|
boostingAmount: z.ZodNullable<z.ZodNumber>;
|
|
7328
|
-
|
|
7333
|
+
boostedForPlace: z.ZodNullable<z.ZodNumber>;
|
|
7334
|
+
specialisedProfile: z.ZodNullable<z.ZodString>;
|
|
7329
7335
|
biddingTaskScheduled: z.ZodNullable<z.ZodBoolean>;
|
|
7330
7336
|
scheduledBiddingTime: z.ZodNullable<z.ZodNumber>;
|
|
7331
7337
|
wonAmount: z.ZodOptional<z.ZodNumber>;
|
|
@@ -7718,7 +7724,8 @@ export declare const campaignActivityCreateSchema: z.ZodDiscriminatedUnion<"type
|
|
|
7718
7724
|
biddingAmount: z.ZodNullable<z.ZodNumber>;
|
|
7719
7725
|
boosted: z.ZodNullable<z.ZodBoolean>;
|
|
7720
7726
|
boostingAmount: z.ZodNullable<z.ZodNumber>;
|
|
7721
|
-
|
|
7727
|
+
boostedForPlace: z.ZodNullable<z.ZodNumber>;
|
|
7728
|
+
specialisedProfile: z.ZodNullable<z.ZodString>;
|
|
7722
7729
|
biddingTaskScheduled: z.ZodNullable<z.ZodBoolean>;
|
|
7723
7730
|
scheduledBiddingTime: z.ZodNullable<z.ZodNumber>;
|
|
7724
7731
|
wonAmount: z.ZodOptional<z.ZodNumber>;
|
|
@@ -8084,7 +8091,8 @@ export declare const campaignActivityCreateSchema: z.ZodDiscriminatedUnion<"type
|
|
|
8084
8091
|
biddingAmount: z.ZodNullable<z.ZodNumber>;
|
|
8085
8092
|
boosted: z.ZodNullable<z.ZodBoolean>;
|
|
8086
8093
|
boostingAmount: z.ZodNullable<z.ZodNumber>;
|
|
8087
|
-
|
|
8094
|
+
boostedForPlace: z.ZodNullable<z.ZodNumber>;
|
|
8095
|
+
specialisedProfile: z.ZodNullable<z.ZodString>;
|
|
8088
8096
|
biddingTaskScheduled: z.ZodNullable<z.ZodBoolean>;
|
|
8089
8097
|
scheduledBiddingTime: z.ZodNullable<z.ZodNumber>;
|
|
8090
8098
|
wonAmount: z.ZodOptional<z.ZodNumber>;
|
|
@@ -8448,7 +8456,8 @@ export declare const campaignActivityCreateSchema: z.ZodDiscriminatedUnion<"type
|
|
|
8448
8456
|
biddingAmount: z.ZodNullable<z.ZodNumber>;
|
|
8449
8457
|
boosted: z.ZodNullable<z.ZodBoolean>;
|
|
8450
8458
|
boostingAmount: z.ZodNullable<z.ZodNumber>;
|
|
8451
|
-
|
|
8459
|
+
boostedForPlace: z.ZodNullable<z.ZodNumber>;
|
|
8460
|
+
specialisedProfile: z.ZodNullable<z.ZodString>;
|
|
8452
8461
|
biddingTaskScheduled: z.ZodNullable<z.ZodBoolean>;
|
|
8453
8462
|
scheduledBiddingTime: z.ZodNullable<z.ZodNumber>;
|
|
8454
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,7 +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
|
-
|
|
336
|
+
boostedForPlace: z.ZodNullable<z.ZodNumber>;
|
|
337
|
+
specialisedProfile: z.ZodNullable<z.ZodString>;
|
|
337
338
|
biddingTaskScheduled: z.ZodNullable<z.ZodBoolean>;
|
|
338
339
|
scheduledBiddingTime: z.ZodNullable<z.ZodNumber>;
|
|
339
340
|
wonAmount: z.ZodOptional<z.ZodNumber>;
|
|
@@ -448,7 +449,8 @@ export declare const leadSchema: z.ZodObject<Omit<z.objectUtil.extendShape<{
|
|
|
448
449
|
biddingAmount: number | null;
|
|
449
450
|
boosted: boolean | null;
|
|
450
451
|
boostingAmount: number | null;
|
|
451
|
-
|
|
452
|
+
boostedForPlace: number | null;
|
|
453
|
+
specialisedProfile: string | null;
|
|
452
454
|
biddingTaskScheduled: boolean | null;
|
|
453
455
|
scheduledBiddingTime: number | null;
|
|
454
456
|
feedbackCheckTaskId: string | null;
|
|
@@ -584,7 +586,8 @@ export declare const leadSchema: z.ZodObject<Omit<z.objectUtil.extendShape<{
|
|
|
584
586
|
biddingAmount: number | null;
|
|
585
587
|
boosted: boolean | null;
|
|
586
588
|
boostingAmount: number | null;
|
|
587
|
-
|
|
589
|
+
boostedForPlace: number | null;
|
|
590
|
+
specialisedProfile: string | null;
|
|
588
591
|
biddingTaskScheduled: boolean | null;
|
|
589
592
|
scheduledBiddingTime: number | null;
|
|
590
593
|
feedbackCheckTaskId: string | null;
|
|
@@ -937,7 +940,8 @@ export declare const leadResponseSchema: z.ZodObject<{
|
|
|
937
940
|
biddingAmount: z.ZodNullable<z.ZodNumber>;
|
|
938
941
|
boosted: z.ZodNullable<z.ZodBoolean>;
|
|
939
942
|
boostingAmount: z.ZodNullable<z.ZodNumber>;
|
|
940
|
-
|
|
943
|
+
boostedForPlace: z.ZodNullable<z.ZodNumber>;
|
|
944
|
+
specialisedProfile: z.ZodNullable<z.ZodString>;
|
|
941
945
|
biddingTaskScheduled: z.ZodNullable<z.ZodBoolean>;
|
|
942
946
|
scheduledBiddingTime: z.ZodNullable<z.ZodNumber>;
|
|
943
947
|
wonAmount: z.ZodOptional<z.ZodNumber>;
|
|
@@ -1052,7 +1056,8 @@ export declare const leadResponseSchema: z.ZodObject<{
|
|
|
1052
1056
|
biddingAmount: number | null;
|
|
1053
1057
|
boosted: boolean | null;
|
|
1054
1058
|
boostingAmount: number | null;
|
|
1055
|
-
|
|
1059
|
+
boostedForPlace: number | null;
|
|
1060
|
+
specialisedProfile: string | null;
|
|
1056
1061
|
biddingTaskScheduled: boolean | null;
|
|
1057
1062
|
scheduledBiddingTime: number | null;
|
|
1058
1063
|
feedbackCheckTaskId: string | null;
|
|
@@ -1188,7 +1193,8 @@ export declare const leadResponseSchema: z.ZodObject<{
|
|
|
1188
1193
|
biddingAmount: number | null;
|
|
1189
1194
|
boosted: boolean | null;
|
|
1190
1195
|
boostingAmount: number | null;
|
|
1191
|
-
|
|
1196
|
+
boostedForPlace: number | null;
|
|
1197
|
+
specialisedProfile: string | null;
|
|
1192
1198
|
biddingTaskScheduled: boolean | null;
|
|
1193
1199
|
scheduledBiddingTime: number | null;
|
|
1194
1200
|
feedbackCheckTaskId: string | null;
|
|
@@ -1329,7 +1335,8 @@ export declare const leadResponseSchema: z.ZodObject<{
|
|
|
1329
1335
|
biddingAmount: number | null;
|
|
1330
1336
|
boosted: boolean | null;
|
|
1331
1337
|
boostingAmount: number | null;
|
|
1332
|
-
|
|
1338
|
+
boostedForPlace: number | null;
|
|
1339
|
+
specialisedProfile: string | null;
|
|
1333
1340
|
biddingTaskScheduled: boolean | null;
|
|
1334
1341
|
scheduledBiddingTime: number | null;
|
|
1335
1342
|
feedbackCheckTaskId: string | null;
|
|
@@ -1470,7 +1477,8 @@ export declare const leadResponseSchema: z.ZodObject<{
|
|
|
1470
1477
|
biddingAmount: number | null;
|
|
1471
1478
|
boosted: boolean | null;
|
|
1472
1479
|
boostingAmount: number | null;
|
|
1473
|
-
|
|
1480
|
+
boostedForPlace: number | null;
|
|
1481
|
+
specialisedProfile: string | null;
|
|
1474
1482
|
biddingTaskScheduled: boolean | null;
|
|
1475
1483
|
scheduledBiddingTime: number | null;
|
|
1476
1484
|
feedbackCheckTaskId: string | null;
|
|
@@ -2363,7 +2371,8 @@ export declare const findLeadsResponseSchema: z.ZodObject<{
|
|
|
2363
2371
|
biddingAmount: z.ZodNullable<z.ZodNumber>;
|
|
2364
2372
|
boosted: z.ZodNullable<z.ZodBoolean>;
|
|
2365
2373
|
boostingAmount: z.ZodNullable<z.ZodNumber>;
|
|
2366
|
-
|
|
2374
|
+
boostedForPlace: z.ZodNullable<z.ZodNumber>;
|
|
2375
|
+
specialisedProfile: z.ZodNullable<z.ZodString>;
|
|
2367
2376
|
biddingTaskScheduled: z.ZodNullable<z.ZodBoolean>;
|
|
2368
2377
|
scheduledBiddingTime: z.ZodNullable<z.ZodNumber>;
|
|
2369
2378
|
wonAmount: z.ZodOptional<z.ZodNumber>;
|
|
@@ -2478,7 +2487,8 @@ export declare const findLeadsResponseSchema: z.ZodObject<{
|
|
|
2478
2487
|
biddingAmount: number | null;
|
|
2479
2488
|
boosted: boolean | null;
|
|
2480
2489
|
boostingAmount: number | null;
|
|
2481
|
-
|
|
2490
|
+
boostedForPlace: number | null;
|
|
2491
|
+
specialisedProfile: string | null;
|
|
2482
2492
|
biddingTaskScheduled: boolean | null;
|
|
2483
2493
|
scheduledBiddingTime: number | null;
|
|
2484
2494
|
feedbackCheckTaskId: string | null;
|
|
@@ -2614,7 +2624,8 @@ export declare const findLeadsResponseSchema: z.ZodObject<{
|
|
|
2614
2624
|
biddingAmount: number | null;
|
|
2615
2625
|
boosted: boolean | null;
|
|
2616
2626
|
boostingAmount: number | null;
|
|
2617
|
-
|
|
2627
|
+
boostedForPlace: number | null;
|
|
2628
|
+
specialisedProfile: string | null;
|
|
2618
2629
|
biddingTaskScheduled: boolean | null;
|
|
2619
2630
|
scheduledBiddingTime: number | null;
|
|
2620
2631
|
feedbackCheckTaskId: string | null;
|
|
@@ -2866,7 +2877,8 @@ export declare const findLeadsResponseSchema: z.ZodObject<{
|
|
|
2866
2877
|
biddingAmount: number | null;
|
|
2867
2878
|
boosted: boolean | null;
|
|
2868
2879
|
boostingAmount: number | null;
|
|
2869
|
-
|
|
2880
|
+
boostedForPlace: number | null;
|
|
2881
|
+
specialisedProfile: string | null;
|
|
2870
2882
|
biddingTaskScheduled: boolean | null;
|
|
2871
2883
|
scheduledBiddingTime: number | null;
|
|
2872
2884
|
feedbackCheckTaskId: string | null;
|
|
@@ -3119,7 +3131,8 @@ export declare const findLeadsResponseSchema: z.ZodObject<{
|
|
|
3119
3131
|
biddingAmount: number | null;
|
|
3120
3132
|
boosted: boolean | null;
|
|
3121
3133
|
boostingAmount: number | null;
|
|
3122
|
-
|
|
3134
|
+
boostedForPlace: number | null;
|
|
3135
|
+
specialisedProfile: string | null;
|
|
3123
3136
|
biddingTaskScheduled: boolean | null;
|
|
3124
3137
|
scheduledBiddingTime: number | null;
|
|
3125
3138
|
feedbackCheckTaskId: string | null;
|
|
@@ -3491,7 +3504,8 @@ export declare const getCampaignLeadsResponseSchema: z.ZodObject<{
|
|
|
3491
3504
|
biddingAmount: z.ZodNullable<z.ZodNumber>;
|
|
3492
3505
|
boosted: z.ZodNullable<z.ZodBoolean>;
|
|
3493
3506
|
boostingAmount: z.ZodNullable<z.ZodNumber>;
|
|
3494
|
-
|
|
3507
|
+
boostedForPlace: z.ZodNullable<z.ZodNumber>;
|
|
3508
|
+
specialisedProfile: z.ZodNullable<z.ZodString>;
|
|
3495
3509
|
biddingTaskScheduled: z.ZodNullable<z.ZodBoolean>;
|
|
3496
3510
|
scheduledBiddingTime: z.ZodNullable<z.ZodNumber>;
|
|
3497
3511
|
wonAmount: z.ZodOptional<z.ZodNumber>;
|
|
@@ -3606,7 +3620,8 @@ export declare const getCampaignLeadsResponseSchema: z.ZodObject<{
|
|
|
3606
3620
|
biddingAmount: number | null;
|
|
3607
3621
|
boosted: boolean | null;
|
|
3608
3622
|
boostingAmount: number | null;
|
|
3609
|
-
|
|
3623
|
+
boostedForPlace: number | null;
|
|
3624
|
+
specialisedProfile: string | null;
|
|
3610
3625
|
biddingTaskScheduled: boolean | null;
|
|
3611
3626
|
scheduledBiddingTime: number | null;
|
|
3612
3627
|
feedbackCheckTaskId: string | null;
|
|
@@ -3742,7 +3757,8 @@ export declare const getCampaignLeadsResponseSchema: z.ZodObject<{
|
|
|
3742
3757
|
biddingAmount: number | null;
|
|
3743
3758
|
boosted: boolean | null;
|
|
3744
3759
|
boostingAmount: number | null;
|
|
3745
|
-
|
|
3760
|
+
boostedForPlace: number | null;
|
|
3761
|
+
specialisedProfile: string | null;
|
|
3746
3762
|
biddingTaskScheduled: boolean | null;
|
|
3747
3763
|
scheduledBiddingTime: number | null;
|
|
3748
3764
|
feedbackCheckTaskId: string | null;
|
|
@@ -3893,7 +3909,8 @@ export declare const getCampaignLeadsResponseSchema: z.ZodObject<{
|
|
|
3893
3909
|
biddingAmount: number | null;
|
|
3894
3910
|
boosted: boolean | null;
|
|
3895
3911
|
boostingAmount: number | null;
|
|
3896
|
-
|
|
3912
|
+
boostedForPlace: number | null;
|
|
3913
|
+
specialisedProfile: string | null;
|
|
3897
3914
|
biddingTaskScheduled: boolean | null;
|
|
3898
3915
|
scheduledBiddingTime: number | null;
|
|
3899
3916
|
feedbackCheckTaskId: string | null;
|
|
@@ -4036,7 +4053,8 @@ export declare const getCampaignLeadsResponseSchema: z.ZodObject<{
|
|
|
4036
4053
|
biddingAmount: number | null;
|
|
4037
4054
|
boosted: boolean | null;
|
|
4038
4055
|
boostingAmount: number | null;
|
|
4039
|
-
|
|
4056
|
+
boostedForPlace: number | null;
|
|
4057
|
+
specialisedProfile: string | null;
|
|
4040
4058
|
biddingTaskScheduled: boolean | null;
|
|
4041
4059
|
scheduledBiddingTime: number | null;
|
|
4042
4060
|
feedbackCheckTaskId: string | null;
|
|
@@ -43,18 +43,21 @@ export declare const biddingCompletedEventMetadata: z.ZodObject<{
|
|
|
43
43
|
boostingAmount: z.ZodNumber;
|
|
44
44
|
applicationId: z.ZodString;
|
|
45
45
|
boostedForPlace: z.ZodNullable<z.ZodNumber>;
|
|
46
|
+
specialisedProfile: z.ZodNullable<z.ZodString>;
|
|
46
47
|
}, "strip", z.ZodTypeAny, {
|
|
47
48
|
biddingAmount: number;
|
|
48
49
|
boosted: boolean;
|
|
49
50
|
boostingAmount: number;
|
|
50
|
-
applicationId: string;
|
|
51
51
|
boostedForPlace: number | null;
|
|
52
|
+
specialisedProfile: string | null;
|
|
53
|
+
applicationId: string;
|
|
52
54
|
}, {
|
|
53
55
|
biddingAmount: number;
|
|
54
56
|
boosted: boolean;
|
|
55
57
|
boostingAmount: number;
|
|
56
|
-
applicationId: string;
|
|
57
58
|
boostedForPlace: number | null;
|
|
59
|
+
specialisedProfile: string | null;
|
|
60
|
+
applicationId: string;
|
|
58
61
|
}>;
|
|
59
62
|
export declare const biddingFailedEventMetadata: z.ZodObject<{
|
|
60
63
|
error: z.ZodAny;
|
|
@@ -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,7 +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
|
-
|
|
1688
|
+
boostedForPlace: z.ZodNullable<z.ZodNumber>;
|
|
1689
|
+
specialisedProfile: z.ZodNullable<z.ZodString>;
|
|
1689
1690
|
biddingTaskScheduled: z.ZodNullable<z.ZodBoolean>;
|
|
1690
1691
|
scheduledBiddingTime: z.ZodNullable<z.ZodNumber>;
|
|
1691
1692
|
wonAmount: z.ZodOptional<z.ZodNumber>;
|
|
@@ -1800,7 +1801,8 @@ export declare const checkLeadStatusPayloadSchema: z.ZodObject<{
|
|
|
1800
1801
|
biddingAmount: number | null;
|
|
1801
1802
|
boosted: boolean | null;
|
|
1802
1803
|
boostingAmount: number | null;
|
|
1803
|
-
|
|
1804
|
+
boostedForPlace: number | null;
|
|
1805
|
+
specialisedProfile: string | null;
|
|
1804
1806
|
biddingTaskScheduled: boolean | null;
|
|
1805
1807
|
scheduledBiddingTime: number | null;
|
|
1806
1808
|
feedbackCheckTaskId: string | null;
|
|
@@ -1936,7 +1938,8 @@ export declare const checkLeadStatusPayloadSchema: z.ZodObject<{
|
|
|
1936
1938
|
biddingAmount: number | null;
|
|
1937
1939
|
boosted: boolean | null;
|
|
1938
1940
|
boostingAmount: number | null;
|
|
1939
|
-
|
|
1941
|
+
boostedForPlace: number | null;
|
|
1942
|
+
specialisedProfile: string | null;
|
|
1940
1943
|
biddingTaskScheduled: boolean | null;
|
|
1941
1944
|
scheduledBiddingTime: number | null;
|
|
1942
1945
|
feedbackCheckTaskId: string | null;
|
|
@@ -2242,7 +2245,8 @@ export declare const checkLeadStatusPayloadSchema: z.ZodObject<{
|
|
|
2242
2245
|
biddingAmount: number | null;
|
|
2243
2246
|
boosted: boolean | null;
|
|
2244
2247
|
boostingAmount: number | null;
|
|
2245
|
-
|
|
2248
|
+
boostedForPlace: number | null;
|
|
2249
|
+
specialisedProfile: string | null;
|
|
2246
2250
|
biddingTaskScheduled: boolean | null;
|
|
2247
2251
|
scheduledBiddingTime: number | null;
|
|
2248
2252
|
feedbackCheckTaskId: string | null;
|
|
@@ -2367,8 +2371,8 @@ export declare const checkLeadStatusPayloadSchema: z.ZodObject<{
|
|
|
2367
2371
|
bidConfig: {
|
|
2368
2372
|
contractorName: string | null;
|
|
2369
2373
|
agencyName: string | null;
|
|
2370
|
-
bidderId: string | null;
|
|
2371
2374
|
specialisedProfile: string | null;
|
|
2375
|
+
bidderId: string | null;
|
|
2372
2376
|
} | null;
|
|
2373
2377
|
coverLetterTemplateId: string | null;
|
|
2374
2378
|
coverLetterTemplate: {
|
|
@@ -2589,7 +2593,8 @@ export declare const checkLeadStatusPayloadSchema: z.ZodObject<{
|
|
|
2589
2593
|
biddingAmount: number | null;
|
|
2590
2594
|
boosted: boolean | null;
|
|
2591
2595
|
boostingAmount: number | null;
|
|
2592
|
-
|
|
2596
|
+
boostedForPlace: number | null;
|
|
2597
|
+
specialisedProfile: string | null;
|
|
2593
2598
|
biddingTaskScheduled: boolean | null;
|
|
2594
2599
|
scheduledBiddingTime: number | null;
|
|
2595
2600
|
feedbackCheckTaskId: string | null;
|
|
@@ -2709,8 +2714,8 @@ export declare const checkLeadStatusPayloadSchema: z.ZodObject<{
|
|
|
2709
2714
|
bidConfig: {
|
|
2710
2715
|
contractorName: string | null;
|
|
2711
2716
|
agencyName: string | null;
|
|
2712
|
-
bidderId: string | null;
|
|
2713
2717
|
specialisedProfile: string | null;
|
|
2718
|
+
bidderId: string | null;
|
|
2714
2719
|
} | null;
|
|
2715
2720
|
coverLetterTemplateId: string | null;
|
|
2716
2721
|
coverLetterTemplate: {
|