lancer-shared 1.2.170 → 1.2.172
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.
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
import { Lead } from 'lancer-shared';
|
|
2
1
|
import { z } from 'zod';
|
|
3
2
|
import { proposalSchema } from './proposal';
|
|
4
3
|
export declare const agentGenerateProposalRequestSchema: z.ZodObject<{
|
|
@@ -1027,9 +1026,7 @@ export declare const agentPickSpecialisedProfileResponseSchema: z.ZodObject<{
|
|
|
1027
1026
|
profile: string;
|
|
1028
1027
|
reason: string;
|
|
1029
1028
|
}>;
|
|
1030
|
-
export
|
|
1031
|
-
lead: Lead;
|
|
1032
|
-
}
|
|
1029
|
+
export type AgentCalculateSuitabilityRequest = z.infer<typeof agentCalculateSuitabilityRequestSchema>;
|
|
1033
1030
|
export interface AgentGenerateProposalRequest extends z.infer<typeof agentGenerateProposalRequestSchema> {
|
|
1034
1031
|
}
|
|
1035
1032
|
export interface AgentGenerateProposalResponse extends z.infer<typeof agentGenerateProposalResponseSchema> {
|
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
import { z } from 'zod';
|
|
2
|
-
import { Lead } from '../lead';
|
|
3
2
|
export declare const bidPayloadProposalDataSchema: z.ZodObject<{
|
|
4
3
|
organizationId: z.ZodString;
|
|
5
4
|
campaignId: z.ZodString;
|
|
@@ -321,7 +320,7 @@ export declare const bidPayloadProposalDataSchema: z.ZodObject<{
|
|
|
321
320
|
answer: string;
|
|
322
321
|
}>, "many">>;
|
|
323
322
|
agentStatus: z.ZodNullable<z.ZodEnum<["suitabilityPending", "suitabilityProcessing", "suitabilityComplete", "suitabilityFailed", "proposalProcessing", "proposalComplete", "proposalFailed", "biddingProcessing", "biddingComplete", "biddingFailed", "jobArchived"]>>;
|
|
324
|
-
leadStatus: z.ZodNullable<z.ZodEnum<["leads", "contacted", "insufficientConnects", "viewed", "replied", "won"]>>;
|
|
323
|
+
leadStatus: z.ZodNullable<z.ZodEnum<["leads", "contacted", "insufficientConnects", "doesNotMeetCriteria", "viewed", "replied", "won"]>>;
|
|
325
324
|
biddingAmount: z.ZodNullable<z.ZodNumber>;
|
|
326
325
|
boosted: z.ZodNullable<z.ZodBoolean>;
|
|
327
326
|
boostingAmount: z.ZodNullable<z.ZodNumber>;
|
|
@@ -435,7 +434,7 @@ export declare const bidPayloadProposalDataSchema: z.ZodObject<{
|
|
|
435
434
|
answer: string;
|
|
436
435
|
}[] | null;
|
|
437
436
|
agentStatus: "suitabilityPending" | "suitabilityProcessing" | "suitabilityComplete" | "suitabilityFailed" | "proposalProcessing" | "proposalComplete" | "proposalFailed" | "biddingProcessing" | "biddingComplete" | "biddingFailed" | "jobArchived" | null;
|
|
438
|
-
leadStatus: "leads" | "contacted" | "insufficientConnects" | "viewed" | "replied" | "won" | null;
|
|
437
|
+
leadStatus: "leads" | "contacted" | "insufficientConnects" | "doesNotMeetCriteria" | "viewed" | "replied" | "won" | null;
|
|
439
438
|
biddingAmount: number | null;
|
|
440
439
|
boosted: boolean | null;
|
|
441
440
|
boostingAmount: number | null;
|
|
@@ -570,7 +569,7 @@ export declare const bidPayloadProposalDataSchema: z.ZodObject<{
|
|
|
570
569
|
answer: string;
|
|
571
570
|
}[] | null;
|
|
572
571
|
agentStatus: "suitabilityPending" | "suitabilityProcessing" | "suitabilityComplete" | "suitabilityFailed" | "proposalProcessing" | "proposalComplete" | "proposalFailed" | "biddingProcessing" | "biddingComplete" | "biddingFailed" | "jobArchived" | null;
|
|
573
|
-
leadStatus: "leads" | "contacted" | "insufficientConnects" | "viewed" | "replied" | "won" | null;
|
|
572
|
+
leadStatus: "leads" | "contacted" | "insufficientConnects" | "doesNotMeetCriteria" | "viewed" | "replied" | "won" | null;
|
|
574
573
|
biddingAmount: number | null;
|
|
575
574
|
boosted: boolean | null;
|
|
576
575
|
boostingAmount: number | null;
|
|
@@ -734,7 +733,7 @@ export declare const bidPayloadProposalDataSchema: z.ZodObject<{
|
|
|
734
733
|
answer: string;
|
|
735
734
|
}[] | null;
|
|
736
735
|
agentStatus: "suitabilityPending" | "suitabilityProcessing" | "suitabilityComplete" | "suitabilityFailed" | "proposalProcessing" | "proposalComplete" | "proposalFailed" | "biddingProcessing" | "biddingComplete" | "biddingFailed" | "jobArchived" | null;
|
|
737
|
-
leadStatus: "leads" | "contacted" | "insufficientConnects" | "viewed" | "replied" | "won" | null;
|
|
736
|
+
leadStatus: "leads" | "contacted" | "insufficientConnects" | "doesNotMeetCriteria" | "viewed" | "replied" | "won" | null;
|
|
738
737
|
biddingAmount: number | null;
|
|
739
738
|
boosted: boolean | null;
|
|
740
739
|
boostingAmount: number | null;
|
|
@@ -888,7 +887,7 @@ export declare const bidPayloadProposalDataSchema: z.ZodObject<{
|
|
|
888
887
|
answer: string;
|
|
889
888
|
}[] | null;
|
|
890
889
|
agentStatus: "suitabilityPending" | "suitabilityProcessing" | "suitabilityComplete" | "suitabilityFailed" | "proposalProcessing" | "proposalComplete" | "proposalFailed" | "biddingProcessing" | "biddingComplete" | "biddingFailed" | "jobArchived" | null;
|
|
891
|
-
leadStatus: "leads" | "contacted" | "insufficientConnects" | "viewed" | "replied" | "won" | null;
|
|
890
|
+
leadStatus: "leads" | "contacted" | "insufficientConnects" | "doesNotMeetCriteria" | "viewed" | "replied" | "won" | null;
|
|
892
891
|
biddingAmount: number | null;
|
|
893
892
|
boosted: boolean | null;
|
|
894
893
|
boostingAmount: number | null;
|
|
@@ -1254,7 +1253,7 @@ export declare const freelancerBidProposalDataSchema: z.ZodObject<{
|
|
|
1254
1253
|
answer: string;
|
|
1255
1254
|
}>, "many">>;
|
|
1256
1255
|
agentStatus: z.ZodNullable<z.ZodEnum<["suitabilityPending", "suitabilityProcessing", "suitabilityComplete", "suitabilityFailed", "proposalProcessing", "proposalComplete", "proposalFailed", "biddingProcessing", "biddingComplete", "biddingFailed", "jobArchived"]>>;
|
|
1257
|
-
leadStatus: z.ZodNullable<z.ZodEnum<["leads", "contacted", "insufficientConnects", "viewed", "replied", "won"]>>;
|
|
1256
|
+
leadStatus: z.ZodNullable<z.ZodEnum<["leads", "contacted", "insufficientConnects", "doesNotMeetCriteria", "viewed", "replied", "won"]>>;
|
|
1258
1257
|
biddingAmount: z.ZodNullable<z.ZodNumber>;
|
|
1259
1258
|
boosted: z.ZodNullable<z.ZodBoolean>;
|
|
1260
1259
|
boostingAmount: z.ZodNullable<z.ZodNumber>;
|
|
@@ -1368,7 +1367,7 @@ export declare const freelancerBidProposalDataSchema: z.ZodObject<{
|
|
|
1368
1367
|
answer: string;
|
|
1369
1368
|
}[] | null;
|
|
1370
1369
|
agentStatus: "suitabilityPending" | "suitabilityProcessing" | "suitabilityComplete" | "suitabilityFailed" | "proposalProcessing" | "proposalComplete" | "proposalFailed" | "biddingProcessing" | "biddingComplete" | "biddingFailed" | "jobArchived" | null;
|
|
1371
|
-
leadStatus: "leads" | "contacted" | "insufficientConnects" | "viewed" | "replied" | "won" | null;
|
|
1370
|
+
leadStatus: "leads" | "contacted" | "insufficientConnects" | "doesNotMeetCriteria" | "viewed" | "replied" | "won" | null;
|
|
1372
1371
|
biddingAmount: number | null;
|
|
1373
1372
|
boosted: boolean | null;
|
|
1374
1373
|
boostingAmount: number | null;
|
|
@@ -1503,7 +1502,7 @@ export declare const freelancerBidProposalDataSchema: z.ZodObject<{
|
|
|
1503
1502
|
answer: string;
|
|
1504
1503
|
}[] | null;
|
|
1505
1504
|
agentStatus: "suitabilityPending" | "suitabilityProcessing" | "suitabilityComplete" | "suitabilityFailed" | "proposalProcessing" | "proposalComplete" | "proposalFailed" | "biddingProcessing" | "biddingComplete" | "biddingFailed" | "jobArchived" | null;
|
|
1506
|
-
leadStatus: "leads" | "contacted" | "insufficientConnects" | "viewed" | "replied" | "won" | null;
|
|
1505
|
+
leadStatus: "leads" | "contacted" | "insufficientConnects" | "doesNotMeetCriteria" | "viewed" | "replied" | "won" | null;
|
|
1507
1506
|
biddingAmount: number | null;
|
|
1508
1507
|
boosted: boolean | null;
|
|
1509
1508
|
boostingAmount: number | null;
|
|
@@ -1667,7 +1666,7 @@ export declare const freelancerBidProposalDataSchema: z.ZodObject<{
|
|
|
1667
1666
|
answer: string;
|
|
1668
1667
|
}[] | null;
|
|
1669
1668
|
agentStatus: "suitabilityPending" | "suitabilityProcessing" | "suitabilityComplete" | "suitabilityFailed" | "proposalProcessing" | "proposalComplete" | "proposalFailed" | "biddingProcessing" | "biddingComplete" | "biddingFailed" | "jobArchived" | null;
|
|
1670
|
-
leadStatus: "leads" | "contacted" | "insufficientConnects" | "viewed" | "replied" | "won" | null;
|
|
1669
|
+
leadStatus: "leads" | "contacted" | "insufficientConnects" | "doesNotMeetCriteria" | "viewed" | "replied" | "won" | null;
|
|
1671
1670
|
biddingAmount: number | null;
|
|
1672
1671
|
boosted: boolean | null;
|
|
1673
1672
|
boostingAmount: number | null;
|
|
@@ -1821,7 +1820,7 @@ export declare const freelancerBidProposalDataSchema: z.ZodObject<{
|
|
|
1821
1820
|
answer: string;
|
|
1822
1821
|
}[] | null;
|
|
1823
1822
|
agentStatus: "suitabilityPending" | "suitabilityProcessing" | "suitabilityComplete" | "suitabilityFailed" | "proposalProcessing" | "proposalComplete" | "proposalFailed" | "biddingProcessing" | "biddingComplete" | "biddingFailed" | "jobArchived" | null;
|
|
1824
|
-
leadStatus: "leads" | "contacted" | "insufficientConnects" | "viewed" | "replied" | "won" | null;
|
|
1823
|
+
leadStatus: "leads" | "contacted" | "insufficientConnects" | "doesNotMeetCriteria" | "viewed" | "replied" | "won" | null;
|
|
1825
1824
|
biddingAmount: number | null;
|
|
1826
1825
|
boosted: boolean | null;
|
|
1827
1826
|
boostingAmount: number | null;
|
|
@@ -2187,7 +2186,7 @@ export declare const agencyBidProposalDataSchema: z.ZodObject<z.objectUtil.exten
|
|
|
2187
2186
|
answer: string;
|
|
2188
2187
|
}>, "many">>;
|
|
2189
2188
|
agentStatus: z.ZodNullable<z.ZodEnum<["suitabilityPending", "suitabilityProcessing", "suitabilityComplete", "suitabilityFailed", "proposalProcessing", "proposalComplete", "proposalFailed", "biddingProcessing", "biddingComplete", "biddingFailed", "jobArchived"]>>;
|
|
2190
|
-
leadStatus: z.ZodNullable<z.ZodEnum<["leads", "contacted", "insufficientConnects", "viewed", "replied", "won"]>>;
|
|
2189
|
+
leadStatus: z.ZodNullable<z.ZodEnum<["leads", "contacted", "insufficientConnects", "doesNotMeetCriteria", "viewed", "replied", "won"]>>;
|
|
2191
2190
|
biddingAmount: z.ZodNullable<z.ZodNumber>;
|
|
2192
2191
|
boosted: z.ZodNullable<z.ZodBoolean>;
|
|
2193
2192
|
boostingAmount: z.ZodNullable<z.ZodNumber>;
|
|
@@ -2301,7 +2300,7 @@ export declare const agencyBidProposalDataSchema: z.ZodObject<z.objectUtil.exten
|
|
|
2301
2300
|
answer: string;
|
|
2302
2301
|
}[] | null;
|
|
2303
2302
|
agentStatus: "suitabilityPending" | "suitabilityProcessing" | "suitabilityComplete" | "suitabilityFailed" | "proposalProcessing" | "proposalComplete" | "proposalFailed" | "biddingProcessing" | "biddingComplete" | "biddingFailed" | "jobArchived" | null;
|
|
2304
|
-
leadStatus: "leads" | "contacted" | "insufficientConnects" | "viewed" | "replied" | "won" | null;
|
|
2303
|
+
leadStatus: "leads" | "contacted" | "insufficientConnects" | "doesNotMeetCriteria" | "viewed" | "replied" | "won" | null;
|
|
2305
2304
|
biddingAmount: number | null;
|
|
2306
2305
|
boosted: boolean | null;
|
|
2307
2306
|
boostingAmount: number | null;
|
|
@@ -2436,7 +2435,7 @@ export declare const agencyBidProposalDataSchema: z.ZodObject<z.objectUtil.exten
|
|
|
2436
2435
|
answer: string;
|
|
2437
2436
|
}[] | null;
|
|
2438
2437
|
agentStatus: "suitabilityPending" | "suitabilityProcessing" | "suitabilityComplete" | "suitabilityFailed" | "proposalProcessing" | "proposalComplete" | "proposalFailed" | "biddingProcessing" | "biddingComplete" | "biddingFailed" | "jobArchived" | null;
|
|
2439
|
-
leadStatus: "leads" | "contacted" | "insufficientConnects" | "viewed" | "replied" | "won" | null;
|
|
2438
|
+
leadStatus: "leads" | "contacted" | "insufficientConnects" | "doesNotMeetCriteria" | "viewed" | "replied" | "won" | null;
|
|
2440
2439
|
biddingAmount: number | null;
|
|
2441
2440
|
boosted: boolean | null;
|
|
2442
2441
|
boostingAmount: number | null;
|
|
@@ -2604,7 +2603,7 @@ export declare const agencyBidProposalDataSchema: z.ZodObject<z.objectUtil.exten
|
|
|
2604
2603
|
answer: string;
|
|
2605
2604
|
}[] | null;
|
|
2606
2605
|
agentStatus: "suitabilityPending" | "suitabilityProcessing" | "suitabilityComplete" | "suitabilityFailed" | "proposalProcessing" | "proposalComplete" | "proposalFailed" | "biddingProcessing" | "biddingComplete" | "biddingFailed" | "jobArchived" | null;
|
|
2607
|
-
leadStatus: "leads" | "contacted" | "insufficientConnects" | "viewed" | "replied" | "won" | null;
|
|
2606
|
+
leadStatus: "leads" | "contacted" | "insufficientConnects" | "doesNotMeetCriteria" | "viewed" | "replied" | "won" | null;
|
|
2608
2607
|
biddingAmount: number | null;
|
|
2609
2608
|
boosted: boolean | null;
|
|
2610
2609
|
boostingAmount: number | null;
|
|
@@ -2761,7 +2760,7 @@ export declare const agencyBidProposalDataSchema: z.ZodObject<z.objectUtil.exten
|
|
|
2761
2760
|
answer: string;
|
|
2762
2761
|
}[] | null;
|
|
2763
2762
|
agentStatus: "suitabilityPending" | "suitabilityProcessing" | "suitabilityComplete" | "suitabilityFailed" | "proposalProcessing" | "proposalComplete" | "proposalFailed" | "biddingProcessing" | "biddingComplete" | "biddingFailed" | "jobArchived" | null;
|
|
2764
|
-
leadStatus: "leads" | "contacted" | "insufficientConnects" | "viewed" | "replied" | "won" | null;
|
|
2763
|
+
leadStatus: "leads" | "contacted" | "insufficientConnects" | "doesNotMeetCriteria" | "viewed" | "replied" | "won" | null;
|
|
2765
2764
|
biddingAmount: number | null;
|
|
2766
2765
|
boosted: boolean | null;
|
|
2767
2766
|
boostingAmount: number | null;
|
|
@@ -3130,7 +3129,7 @@ export declare const bidPayloadSchema: z.ZodObject<{
|
|
|
3130
3129
|
answer: string;
|
|
3131
3130
|
}>, "many">>;
|
|
3132
3131
|
agentStatus: z.ZodNullable<z.ZodEnum<["suitabilityPending", "suitabilityProcessing", "suitabilityComplete", "suitabilityFailed", "proposalProcessing", "proposalComplete", "proposalFailed", "biddingProcessing", "biddingComplete", "biddingFailed", "jobArchived"]>>;
|
|
3133
|
-
leadStatus: z.ZodNullable<z.ZodEnum<["leads", "contacted", "insufficientConnects", "viewed", "replied", "won"]>>;
|
|
3132
|
+
leadStatus: z.ZodNullable<z.ZodEnum<["leads", "contacted", "insufficientConnects", "doesNotMeetCriteria", "viewed", "replied", "won"]>>;
|
|
3134
3133
|
biddingAmount: z.ZodNullable<z.ZodNumber>;
|
|
3135
3134
|
boosted: z.ZodNullable<z.ZodBoolean>;
|
|
3136
3135
|
boostingAmount: z.ZodNullable<z.ZodNumber>;
|
|
@@ -3244,7 +3243,7 @@ export declare const bidPayloadSchema: z.ZodObject<{
|
|
|
3244
3243
|
answer: string;
|
|
3245
3244
|
}[] | null;
|
|
3246
3245
|
agentStatus: "suitabilityPending" | "suitabilityProcessing" | "suitabilityComplete" | "suitabilityFailed" | "proposalProcessing" | "proposalComplete" | "proposalFailed" | "biddingProcessing" | "biddingComplete" | "biddingFailed" | "jobArchived" | null;
|
|
3247
|
-
leadStatus: "leads" | "contacted" | "insufficientConnects" | "viewed" | "replied" | "won" | null;
|
|
3246
|
+
leadStatus: "leads" | "contacted" | "insufficientConnects" | "doesNotMeetCriteria" | "viewed" | "replied" | "won" | null;
|
|
3248
3247
|
biddingAmount: number | null;
|
|
3249
3248
|
boosted: boolean | null;
|
|
3250
3249
|
boostingAmount: number | null;
|
|
@@ -3379,7 +3378,7 @@ export declare const bidPayloadSchema: z.ZodObject<{
|
|
|
3379
3378
|
answer: string;
|
|
3380
3379
|
}[] | null;
|
|
3381
3380
|
agentStatus: "suitabilityPending" | "suitabilityProcessing" | "suitabilityComplete" | "suitabilityFailed" | "proposalProcessing" | "proposalComplete" | "proposalFailed" | "biddingProcessing" | "biddingComplete" | "biddingFailed" | "jobArchived" | null;
|
|
3382
|
-
leadStatus: "leads" | "contacted" | "insufficientConnects" | "viewed" | "replied" | "won" | null;
|
|
3381
|
+
leadStatus: "leads" | "contacted" | "insufficientConnects" | "doesNotMeetCriteria" | "viewed" | "replied" | "won" | null;
|
|
3383
3382
|
biddingAmount: number | null;
|
|
3384
3383
|
boosted: boolean | null;
|
|
3385
3384
|
boostingAmount: number | null;
|
|
@@ -3522,7 +3521,7 @@ export declare const bidPayloadSchema: z.ZodObject<{
|
|
|
3522
3521
|
answer: string;
|
|
3523
3522
|
}[] | null;
|
|
3524
3523
|
agentStatus: "suitabilityPending" | "suitabilityProcessing" | "suitabilityComplete" | "suitabilityFailed" | "proposalProcessing" | "proposalComplete" | "proposalFailed" | "biddingProcessing" | "biddingComplete" | "biddingFailed" | "jobArchived" | null;
|
|
3525
|
-
leadStatus: "leads" | "contacted" | "insufficientConnects" | "viewed" | "replied" | "won" | null;
|
|
3524
|
+
leadStatus: "leads" | "contacted" | "insufficientConnects" | "doesNotMeetCriteria" | "viewed" | "replied" | "won" | null;
|
|
3526
3525
|
biddingAmount: number | null;
|
|
3527
3526
|
boosted: boolean | null;
|
|
3528
3527
|
boostingAmount: number | null;
|
|
@@ -3664,7 +3663,7 @@ export declare const bidPayloadSchema: z.ZodObject<{
|
|
|
3664
3663
|
answer: string;
|
|
3665
3664
|
}[] | null;
|
|
3666
3665
|
agentStatus: "suitabilityPending" | "suitabilityProcessing" | "suitabilityComplete" | "suitabilityFailed" | "proposalProcessing" | "proposalComplete" | "proposalFailed" | "biddingProcessing" | "biddingComplete" | "biddingFailed" | "jobArchived" | null;
|
|
3667
|
-
leadStatus: "leads" | "contacted" | "insufficientConnects" | "viewed" | "replied" | "won" | null;
|
|
3666
|
+
leadStatus: "leads" | "contacted" | "insufficientConnects" | "doesNotMeetCriteria" | "viewed" | "replied" | "won" | null;
|
|
3668
3667
|
biddingAmount: number | null;
|
|
3669
3668
|
boosted: boolean | null;
|
|
3670
3669
|
boostingAmount: number | null;
|
|
@@ -4021,7 +4020,7 @@ export declare const agencyBidPayloadSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
4021
4020
|
answer: string;
|
|
4022
4021
|
}>, "many">>;
|
|
4023
4022
|
agentStatus: z.ZodNullable<z.ZodEnum<["suitabilityPending", "suitabilityProcessing", "suitabilityComplete", "suitabilityFailed", "proposalProcessing", "proposalComplete", "proposalFailed", "biddingProcessing", "biddingComplete", "biddingFailed", "jobArchived"]>>;
|
|
4024
|
-
leadStatus: z.ZodNullable<z.ZodEnum<["leads", "contacted", "insufficientConnects", "viewed", "replied", "won"]>>;
|
|
4023
|
+
leadStatus: z.ZodNullable<z.ZodEnum<["leads", "contacted", "insufficientConnects", "doesNotMeetCriteria", "viewed", "replied", "won"]>>;
|
|
4025
4024
|
biddingAmount: z.ZodNullable<z.ZodNumber>;
|
|
4026
4025
|
boosted: z.ZodNullable<z.ZodBoolean>;
|
|
4027
4026
|
boostingAmount: z.ZodNullable<z.ZodNumber>;
|
|
@@ -4135,7 +4134,7 @@ export declare const agencyBidPayloadSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
4135
4134
|
answer: string;
|
|
4136
4135
|
}[] | null;
|
|
4137
4136
|
agentStatus: "suitabilityPending" | "suitabilityProcessing" | "suitabilityComplete" | "suitabilityFailed" | "proposalProcessing" | "proposalComplete" | "proposalFailed" | "biddingProcessing" | "biddingComplete" | "biddingFailed" | "jobArchived" | null;
|
|
4138
|
-
leadStatus: "leads" | "contacted" | "insufficientConnects" | "viewed" | "replied" | "won" | null;
|
|
4137
|
+
leadStatus: "leads" | "contacted" | "insufficientConnects" | "doesNotMeetCriteria" | "viewed" | "replied" | "won" | null;
|
|
4139
4138
|
biddingAmount: number | null;
|
|
4140
4139
|
boosted: boolean | null;
|
|
4141
4140
|
boostingAmount: number | null;
|
|
@@ -4270,7 +4269,7 @@ export declare const agencyBidPayloadSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
4270
4269
|
answer: string;
|
|
4271
4270
|
}[] | null;
|
|
4272
4271
|
agentStatus: "suitabilityPending" | "suitabilityProcessing" | "suitabilityComplete" | "suitabilityFailed" | "proposalProcessing" | "proposalComplete" | "proposalFailed" | "biddingProcessing" | "biddingComplete" | "biddingFailed" | "jobArchived" | null;
|
|
4273
|
-
leadStatus: "leads" | "contacted" | "insufficientConnects" | "viewed" | "replied" | "won" | null;
|
|
4272
|
+
leadStatus: "leads" | "contacted" | "insufficientConnects" | "doesNotMeetCriteria" | "viewed" | "replied" | "won" | null;
|
|
4274
4273
|
biddingAmount: number | null;
|
|
4275
4274
|
boosted: boolean | null;
|
|
4276
4275
|
boostingAmount: number | null;
|
|
@@ -4628,7 +4627,7 @@ export declare const agencyBidPayloadSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
4628
4627
|
answer: string;
|
|
4629
4628
|
}>, "many">>;
|
|
4630
4629
|
agentStatus: z.ZodNullable<z.ZodEnum<["suitabilityPending", "suitabilityProcessing", "suitabilityComplete", "suitabilityFailed", "proposalProcessing", "proposalComplete", "proposalFailed", "biddingProcessing", "biddingComplete", "biddingFailed", "jobArchived"]>>;
|
|
4631
|
-
leadStatus: z.ZodNullable<z.ZodEnum<["leads", "contacted", "insufficientConnects", "viewed", "replied", "won"]>>;
|
|
4630
|
+
leadStatus: z.ZodNullable<z.ZodEnum<["leads", "contacted", "insufficientConnects", "doesNotMeetCriteria", "viewed", "replied", "won"]>>;
|
|
4632
4631
|
biddingAmount: z.ZodNullable<z.ZodNumber>;
|
|
4633
4632
|
boosted: z.ZodNullable<z.ZodBoolean>;
|
|
4634
4633
|
boostingAmount: z.ZodNullable<z.ZodNumber>;
|
|
@@ -4742,7 +4741,7 @@ export declare const agencyBidPayloadSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
4742
4741
|
answer: string;
|
|
4743
4742
|
}[] | null;
|
|
4744
4743
|
agentStatus: "suitabilityPending" | "suitabilityProcessing" | "suitabilityComplete" | "suitabilityFailed" | "proposalProcessing" | "proposalComplete" | "proposalFailed" | "biddingProcessing" | "biddingComplete" | "biddingFailed" | "jobArchived" | null;
|
|
4745
|
-
leadStatus: "leads" | "contacted" | "insufficientConnects" | "viewed" | "replied" | "won" | null;
|
|
4744
|
+
leadStatus: "leads" | "contacted" | "insufficientConnects" | "doesNotMeetCriteria" | "viewed" | "replied" | "won" | null;
|
|
4746
4745
|
biddingAmount: number | null;
|
|
4747
4746
|
boosted: boolean | null;
|
|
4748
4747
|
boostingAmount: number | null;
|
|
@@ -4877,7 +4876,7 @@ export declare const agencyBidPayloadSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
4877
4876
|
answer: string;
|
|
4878
4877
|
}[] | null;
|
|
4879
4878
|
agentStatus: "suitabilityPending" | "suitabilityProcessing" | "suitabilityComplete" | "suitabilityFailed" | "proposalProcessing" | "proposalComplete" | "proposalFailed" | "biddingProcessing" | "biddingComplete" | "biddingFailed" | "jobArchived" | null;
|
|
4880
|
-
leadStatus: "leads" | "contacted" | "insufficientConnects" | "viewed" | "replied" | "won" | null;
|
|
4879
|
+
leadStatus: "leads" | "contacted" | "insufficientConnects" | "doesNotMeetCriteria" | "viewed" | "replied" | "won" | null;
|
|
4881
4880
|
biddingAmount: number | null;
|
|
4882
4881
|
boosted: boolean | null;
|
|
4883
4882
|
boostingAmount: number | null;
|
|
@@ -5045,7 +5044,7 @@ export declare const agencyBidPayloadSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
5045
5044
|
answer: string;
|
|
5046
5045
|
}[] | null;
|
|
5047
5046
|
agentStatus: "suitabilityPending" | "suitabilityProcessing" | "suitabilityComplete" | "suitabilityFailed" | "proposalProcessing" | "proposalComplete" | "proposalFailed" | "biddingProcessing" | "biddingComplete" | "biddingFailed" | "jobArchived" | null;
|
|
5048
|
-
leadStatus: "leads" | "contacted" | "insufficientConnects" | "viewed" | "replied" | "won" | null;
|
|
5047
|
+
leadStatus: "leads" | "contacted" | "insufficientConnects" | "doesNotMeetCriteria" | "viewed" | "replied" | "won" | null;
|
|
5049
5048
|
biddingAmount: number | null;
|
|
5050
5049
|
boosted: boolean | null;
|
|
5051
5050
|
boostingAmount: number | null;
|
|
@@ -5202,7 +5201,7 @@ export declare const agencyBidPayloadSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
5202
5201
|
answer: string;
|
|
5203
5202
|
}[] | null;
|
|
5204
5203
|
agentStatus: "suitabilityPending" | "suitabilityProcessing" | "suitabilityComplete" | "suitabilityFailed" | "proposalProcessing" | "proposalComplete" | "proposalFailed" | "biddingProcessing" | "biddingComplete" | "biddingFailed" | "jobArchived" | null;
|
|
5205
|
-
leadStatus: "leads" | "contacted" | "insufficientConnects" | "viewed" | "replied" | "won" | null;
|
|
5204
|
+
leadStatus: "leads" | "contacted" | "insufficientConnects" | "doesNotMeetCriteria" | "viewed" | "replied" | "won" | null;
|
|
5206
5205
|
biddingAmount: number | null;
|
|
5207
5206
|
boosted: boolean | null;
|
|
5208
5207
|
boostingAmount: number | null;
|
|
@@ -5357,7 +5356,7 @@ export declare const agencyBidPayloadSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
5357
5356
|
answer: string;
|
|
5358
5357
|
}[] | null;
|
|
5359
5358
|
agentStatus: "suitabilityPending" | "suitabilityProcessing" | "suitabilityComplete" | "suitabilityFailed" | "proposalProcessing" | "proposalComplete" | "proposalFailed" | "biddingProcessing" | "biddingComplete" | "biddingFailed" | "jobArchived" | null;
|
|
5360
|
-
leadStatus: "leads" | "contacted" | "insufficientConnects" | "viewed" | "replied" | "won" | null;
|
|
5359
|
+
leadStatus: "leads" | "contacted" | "insufficientConnects" | "doesNotMeetCriteria" | "viewed" | "replied" | "won" | null;
|
|
5361
5360
|
biddingAmount: number | null;
|
|
5362
5361
|
boosted: boolean | null;
|
|
5363
5362
|
boostingAmount: number | null;
|
|
@@ -5502,7 +5501,7 @@ export declare const agencyBidPayloadSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
5502
5501
|
answer: string;
|
|
5503
5502
|
}[] | null;
|
|
5504
5503
|
agentStatus: "suitabilityPending" | "suitabilityProcessing" | "suitabilityComplete" | "suitabilityFailed" | "proposalProcessing" | "proposalComplete" | "proposalFailed" | "biddingProcessing" | "biddingComplete" | "biddingFailed" | "jobArchived" | null;
|
|
5505
|
-
leadStatus: "leads" | "contacted" | "insufficientConnects" | "viewed" | "replied" | "won" | null;
|
|
5504
|
+
leadStatus: "leads" | "contacted" | "insufficientConnects" | "doesNotMeetCriteria" | "viewed" | "replied" | "won" | null;
|
|
5506
5505
|
biddingAmount: number | null;
|
|
5507
5506
|
boosted: boolean | null;
|
|
5508
5507
|
boostingAmount: number | null;
|
|
@@ -5657,7 +5656,7 @@ export declare const agencyBidPayloadSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
5657
5656
|
answer: string;
|
|
5658
5657
|
}[] | null;
|
|
5659
5658
|
agentStatus: "suitabilityPending" | "suitabilityProcessing" | "suitabilityComplete" | "suitabilityFailed" | "proposalProcessing" | "proposalComplete" | "proposalFailed" | "biddingProcessing" | "biddingComplete" | "biddingFailed" | "jobArchived" | null;
|
|
5660
|
-
leadStatus: "leads" | "contacted" | "insufficientConnects" | "viewed" | "replied" | "won" | null;
|
|
5659
|
+
leadStatus: "leads" | "contacted" | "insufficientConnects" | "doesNotMeetCriteria" | "viewed" | "replied" | "won" | null;
|
|
5661
5660
|
biddingAmount: number | null;
|
|
5662
5661
|
boosted: boolean | null;
|
|
5663
5662
|
boostingAmount: number | null;
|
|
@@ -5802,7 +5801,7 @@ export declare const agencyBidPayloadSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
5802
5801
|
answer: string;
|
|
5803
5802
|
}[] | null;
|
|
5804
5803
|
agentStatus: "suitabilityPending" | "suitabilityProcessing" | "suitabilityComplete" | "suitabilityFailed" | "proposalProcessing" | "proposalComplete" | "proposalFailed" | "biddingProcessing" | "biddingComplete" | "biddingFailed" | "jobArchived" | null;
|
|
5805
|
-
leadStatus: "leads" | "contacted" | "insufficientConnects" | "viewed" | "replied" | "won" | null;
|
|
5804
|
+
leadStatus: "leads" | "contacted" | "insufficientConnects" | "doesNotMeetCriteria" | "viewed" | "replied" | "won" | null;
|
|
5806
5805
|
biddingAmount: number | null;
|
|
5807
5806
|
boosted: boolean | null;
|
|
5808
5807
|
boostingAmount: number | null;
|
|
@@ -6172,7 +6171,7 @@ export declare const freelancerBidPayloadSchema: z.ZodObject<z.objectUtil.extend
|
|
|
6172
6171
|
answer: string;
|
|
6173
6172
|
}>, "many">>;
|
|
6174
6173
|
agentStatus: z.ZodNullable<z.ZodEnum<["suitabilityPending", "suitabilityProcessing", "suitabilityComplete", "suitabilityFailed", "proposalProcessing", "proposalComplete", "proposalFailed", "biddingProcessing", "biddingComplete", "biddingFailed", "jobArchived"]>>;
|
|
6175
|
-
leadStatus: z.ZodNullable<z.ZodEnum<["leads", "contacted", "insufficientConnects", "viewed", "replied", "won"]>>;
|
|
6174
|
+
leadStatus: z.ZodNullable<z.ZodEnum<["leads", "contacted", "insufficientConnects", "doesNotMeetCriteria", "viewed", "replied", "won"]>>;
|
|
6176
6175
|
biddingAmount: z.ZodNullable<z.ZodNumber>;
|
|
6177
6176
|
boosted: z.ZodNullable<z.ZodBoolean>;
|
|
6178
6177
|
boostingAmount: z.ZodNullable<z.ZodNumber>;
|
|
@@ -6286,7 +6285,7 @@ export declare const freelancerBidPayloadSchema: z.ZodObject<z.objectUtil.extend
|
|
|
6286
6285
|
answer: string;
|
|
6287
6286
|
}[] | null;
|
|
6288
6287
|
agentStatus: "suitabilityPending" | "suitabilityProcessing" | "suitabilityComplete" | "suitabilityFailed" | "proposalProcessing" | "proposalComplete" | "proposalFailed" | "biddingProcessing" | "biddingComplete" | "biddingFailed" | "jobArchived" | null;
|
|
6289
|
-
leadStatus: "leads" | "contacted" | "insufficientConnects" | "viewed" | "replied" | "won" | null;
|
|
6288
|
+
leadStatus: "leads" | "contacted" | "insufficientConnects" | "doesNotMeetCriteria" | "viewed" | "replied" | "won" | null;
|
|
6290
6289
|
biddingAmount: number | null;
|
|
6291
6290
|
boosted: boolean | null;
|
|
6292
6291
|
boostingAmount: number | null;
|
|
@@ -6421,7 +6420,7 @@ export declare const freelancerBidPayloadSchema: z.ZodObject<z.objectUtil.extend
|
|
|
6421
6420
|
answer: string;
|
|
6422
6421
|
}[] | null;
|
|
6423
6422
|
agentStatus: "suitabilityPending" | "suitabilityProcessing" | "suitabilityComplete" | "suitabilityFailed" | "proposalProcessing" | "proposalComplete" | "proposalFailed" | "biddingProcessing" | "biddingComplete" | "biddingFailed" | "jobArchived" | null;
|
|
6424
|
-
leadStatus: "leads" | "contacted" | "insufficientConnects" | "viewed" | "replied" | "won" | null;
|
|
6423
|
+
leadStatus: "leads" | "contacted" | "insufficientConnects" | "doesNotMeetCriteria" | "viewed" | "replied" | "won" | null;
|
|
6425
6424
|
biddingAmount: number | null;
|
|
6426
6425
|
boosted: boolean | null;
|
|
6427
6426
|
boostingAmount: number | null;
|
|
@@ -6779,7 +6778,7 @@ export declare const freelancerBidPayloadSchema: z.ZodObject<z.objectUtil.extend
|
|
|
6779
6778
|
answer: string;
|
|
6780
6779
|
}>, "many">>;
|
|
6781
6780
|
agentStatus: z.ZodNullable<z.ZodEnum<["suitabilityPending", "suitabilityProcessing", "suitabilityComplete", "suitabilityFailed", "proposalProcessing", "proposalComplete", "proposalFailed", "biddingProcessing", "biddingComplete", "biddingFailed", "jobArchived"]>>;
|
|
6782
|
-
leadStatus: z.ZodNullable<z.ZodEnum<["leads", "contacted", "insufficientConnects", "viewed", "replied", "won"]>>;
|
|
6781
|
+
leadStatus: z.ZodNullable<z.ZodEnum<["leads", "contacted", "insufficientConnects", "doesNotMeetCriteria", "viewed", "replied", "won"]>>;
|
|
6783
6782
|
biddingAmount: z.ZodNullable<z.ZodNumber>;
|
|
6784
6783
|
boosted: z.ZodNullable<z.ZodBoolean>;
|
|
6785
6784
|
boostingAmount: z.ZodNullable<z.ZodNumber>;
|
|
@@ -6893,7 +6892,7 @@ export declare const freelancerBidPayloadSchema: z.ZodObject<z.objectUtil.extend
|
|
|
6893
6892
|
answer: string;
|
|
6894
6893
|
}[] | null;
|
|
6895
6894
|
agentStatus: "suitabilityPending" | "suitabilityProcessing" | "suitabilityComplete" | "suitabilityFailed" | "proposalProcessing" | "proposalComplete" | "proposalFailed" | "biddingProcessing" | "biddingComplete" | "biddingFailed" | "jobArchived" | null;
|
|
6896
|
-
leadStatus: "leads" | "contacted" | "insufficientConnects" | "viewed" | "replied" | "won" | null;
|
|
6895
|
+
leadStatus: "leads" | "contacted" | "insufficientConnects" | "doesNotMeetCriteria" | "viewed" | "replied" | "won" | null;
|
|
6897
6896
|
biddingAmount: number | null;
|
|
6898
6897
|
boosted: boolean | null;
|
|
6899
6898
|
boostingAmount: number | null;
|
|
@@ -7028,7 +7027,7 @@ export declare const freelancerBidPayloadSchema: z.ZodObject<z.objectUtil.extend
|
|
|
7028
7027
|
answer: string;
|
|
7029
7028
|
}[] | null;
|
|
7030
7029
|
agentStatus: "suitabilityPending" | "suitabilityProcessing" | "suitabilityComplete" | "suitabilityFailed" | "proposalProcessing" | "proposalComplete" | "proposalFailed" | "biddingProcessing" | "biddingComplete" | "biddingFailed" | "jobArchived" | null;
|
|
7031
|
-
leadStatus: "leads" | "contacted" | "insufficientConnects" | "viewed" | "replied" | "won" | null;
|
|
7030
|
+
leadStatus: "leads" | "contacted" | "insufficientConnects" | "doesNotMeetCriteria" | "viewed" | "replied" | "won" | null;
|
|
7032
7031
|
biddingAmount: number | null;
|
|
7033
7032
|
boosted: boolean | null;
|
|
7034
7033
|
boostingAmount: number | null;
|
|
@@ -7192,7 +7191,7 @@ export declare const freelancerBidPayloadSchema: z.ZodObject<z.objectUtil.extend
|
|
|
7192
7191
|
answer: string;
|
|
7193
7192
|
}[] | null;
|
|
7194
7193
|
agentStatus: "suitabilityPending" | "suitabilityProcessing" | "suitabilityComplete" | "suitabilityFailed" | "proposalProcessing" | "proposalComplete" | "proposalFailed" | "biddingProcessing" | "biddingComplete" | "biddingFailed" | "jobArchived" | null;
|
|
7195
|
-
leadStatus: "leads" | "contacted" | "insufficientConnects" | "viewed" | "replied" | "won" | null;
|
|
7194
|
+
leadStatus: "leads" | "contacted" | "insufficientConnects" | "doesNotMeetCriteria" | "viewed" | "replied" | "won" | null;
|
|
7196
7195
|
biddingAmount: number | null;
|
|
7197
7196
|
boosted: boolean | null;
|
|
7198
7197
|
boostingAmount: number | null;
|
|
@@ -7346,7 +7345,7 @@ export declare const freelancerBidPayloadSchema: z.ZodObject<z.objectUtil.extend
|
|
|
7346
7345
|
answer: string;
|
|
7347
7346
|
}[] | null;
|
|
7348
7347
|
agentStatus: "suitabilityPending" | "suitabilityProcessing" | "suitabilityComplete" | "suitabilityFailed" | "proposalProcessing" | "proposalComplete" | "proposalFailed" | "biddingProcessing" | "biddingComplete" | "biddingFailed" | "jobArchived" | null;
|
|
7349
|
-
leadStatus: "leads" | "contacted" | "insufficientConnects" | "viewed" | "replied" | "won" | null;
|
|
7348
|
+
leadStatus: "leads" | "contacted" | "insufficientConnects" | "doesNotMeetCriteria" | "viewed" | "replied" | "won" | null;
|
|
7350
7349
|
biddingAmount: number | null;
|
|
7351
7350
|
boosted: boolean | null;
|
|
7352
7351
|
boostingAmount: number | null;
|
|
@@ -7498,7 +7497,7 @@ export declare const freelancerBidPayloadSchema: z.ZodObject<z.objectUtil.extend
|
|
|
7498
7497
|
answer: string;
|
|
7499
7498
|
}[] | null;
|
|
7500
7499
|
agentStatus: "suitabilityPending" | "suitabilityProcessing" | "suitabilityComplete" | "suitabilityFailed" | "proposalProcessing" | "proposalComplete" | "proposalFailed" | "biddingProcessing" | "biddingComplete" | "biddingFailed" | "jobArchived" | null;
|
|
7501
|
-
leadStatus: "leads" | "contacted" | "insufficientConnects" | "viewed" | "replied" | "won" | null;
|
|
7500
|
+
leadStatus: "leads" | "contacted" | "insufficientConnects" | "doesNotMeetCriteria" | "viewed" | "replied" | "won" | null;
|
|
7502
7501
|
biddingAmount: number | null;
|
|
7503
7502
|
boosted: boolean | null;
|
|
7504
7503
|
boostingAmount: number | null;
|
|
@@ -7643,7 +7642,7 @@ export declare const freelancerBidPayloadSchema: z.ZodObject<z.objectUtil.extend
|
|
|
7643
7642
|
answer: string;
|
|
7644
7643
|
}[] | null;
|
|
7645
7644
|
agentStatus: "suitabilityPending" | "suitabilityProcessing" | "suitabilityComplete" | "suitabilityFailed" | "proposalProcessing" | "proposalComplete" | "proposalFailed" | "biddingProcessing" | "biddingComplete" | "biddingFailed" | "jobArchived" | null;
|
|
7646
|
-
leadStatus: "leads" | "contacted" | "insufficientConnects" | "viewed" | "replied" | "won" | null;
|
|
7645
|
+
leadStatus: "leads" | "contacted" | "insufficientConnects" | "doesNotMeetCriteria" | "viewed" | "replied" | "won" | null;
|
|
7647
7646
|
biddingAmount: number | null;
|
|
7648
7647
|
boosted: boolean | null;
|
|
7649
7648
|
boostingAmount: number | null;
|
|
@@ -7795,7 +7794,7 @@ export declare const freelancerBidPayloadSchema: z.ZodObject<z.objectUtil.extend
|
|
|
7795
7794
|
answer: string;
|
|
7796
7795
|
}[] | null;
|
|
7797
7796
|
agentStatus: "suitabilityPending" | "suitabilityProcessing" | "suitabilityComplete" | "suitabilityFailed" | "proposalProcessing" | "proposalComplete" | "proposalFailed" | "biddingProcessing" | "biddingComplete" | "biddingFailed" | "jobArchived" | null;
|
|
7798
|
-
leadStatus: "leads" | "contacted" | "insufficientConnects" | "viewed" | "replied" | "won" | null;
|
|
7797
|
+
leadStatus: "leads" | "contacted" | "insufficientConnects" | "doesNotMeetCriteria" | "viewed" | "replied" | "won" | null;
|
|
7799
7798
|
biddingAmount: number | null;
|
|
7800
7799
|
boosted: boolean | null;
|
|
7801
7800
|
boostingAmount: number | null;
|
|
@@ -7940,7 +7939,7 @@ export declare const freelancerBidPayloadSchema: z.ZodObject<z.objectUtil.extend
|
|
|
7940
7939
|
answer: string;
|
|
7941
7940
|
}[] | null;
|
|
7942
7941
|
agentStatus: "suitabilityPending" | "suitabilityProcessing" | "suitabilityComplete" | "suitabilityFailed" | "proposalProcessing" | "proposalComplete" | "proposalFailed" | "biddingProcessing" | "biddingComplete" | "biddingFailed" | "jobArchived" | null;
|
|
7943
|
-
leadStatus: "leads" | "contacted" | "insufficientConnects" | "viewed" | "replied" | "won" | null;
|
|
7942
|
+
leadStatus: "leads" | "contacted" | "insufficientConnects" | "doesNotMeetCriteria" | "viewed" | "replied" | "won" | null;
|
|
7944
7943
|
biddingAmount: number | null;
|
|
7945
7944
|
boosted: boolean | null;
|
|
7946
7945
|
boostingAmount: number | null;
|
|
@@ -8000,9 +7999,7 @@ export declare const bidDtoSchema: z.ZodObject<{
|
|
|
8000
7999
|
leadId: string;
|
|
8001
8000
|
}>;
|
|
8002
8001
|
export type BidPayload = z.infer<typeof bidPayloadSchema>;
|
|
8003
|
-
export
|
|
8004
|
-
lead: Lead;
|
|
8005
|
-
}
|
|
8002
|
+
export type BidProposalData = z.infer<typeof bidPayloadProposalDataSchema>;
|
|
8006
8003
|
export type AgencyBidPayload = z.infer<typeof agencyBidPayloadSchema>;
|
|
8007
8004
|
export type FreelancerBidPayload = z.infer<typeof freelancerBidPayloadSchema>;
|
|
8008
8005
|
export type AgencyBidProposalData = z.infer<typeof agencyBidProposalDataSchema>;
|