lancer-shared 1.2.166 → 1.2.168
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
CHANGED
|
@@ -13239,6 +13239,8 @@ const updateCampaignAnalyticsSchema = z.object({
|
|
|
13239
13239
|
'contacted',
|
|
13240
13240
|
'viewed',
|
|
13241
13241
|
'replied',
|
|
13242
|
+
'doesNotMeetCriteria',
|
|
13243
|
+
'insufficientConnects',
|
|
13242
13244
|
'won',
|
|
13243
13245
|
'leadsAnalyzed',
|
|
13244
13246
|
'leadsFailed',
|
|
@@ -620,7 +620,7 @@ export declare const campaignStatusActivitySchema: z.ZodObject<z.objectUtil.exte
|
|
|
620
620
|
sleepStartAtHour: z.ZodDefault<z.ZodNullable<z.ZodNumber>>;
|
|
621
621
|
sleepEndAtHour: z.ZodDefault<z.ZodNullable<z.ZodNumber>>;
|
|
622
622
|
sleepTimezone: z.ZodNullable<z.ZodString>;
|
|
623
|
-
leadCounts: z.ZodNullable<z.ZodRecord<z.ZodEnum<["leads", "contacted", "insufficientConnects", "viewed", "replied", "won"]>, z.ZodNumber>>;
|
|
623
|
+
leadCounts: z.ZodNullable<z.ZodRecord<z.ZodEnum<["leads", "contacted", "insufficientConnects", "doesNotMeetCriteria", "viewed", "replied", "won"]>, z.ZodNumber>>;
|
|
624
624
|
expenses: z.ZodObject<{
|
|
625
625
|
biddingAmount: z.ZodDefault<z.ZodNumber>;
|
|
626
626
|
boostingAmount: z.ZodDefault<z.ZodNumber>;
|
|
@@ -1179,7 +1179,7 @@ export declare const leadAnalysisActivitySchema: z.ZodObject<z.objectUtil.extend
|
|
|
1179
1179
|
sleepStartAtHour: z.ZodDefault<z.ZodNullable<z.ZodNumber>>;
|
|
1180
1180
|
sleepEndAtHour: z.ZodDefault<z.ZodNullable<z.ZodNumber>>;
|
|
1181
1181
|
sleepTimezone: z.ZodNullable<z.ZodString>;
|
|
1182
|
-
leadCounts: z.ZodNullable<z.ZodRecord<z.ZodEnum<["leads", "contacted", "insufficientConnects", "viewed", "replied", "won"]>, z.ZodNumber>>;
|
|
1182
|
+
leadCounts: z.ZodNullable<z.ZodRecord<z.ZodEnum<["leads", "contacted", "insufficientConnects", "doesNotMeetCriteria", "viewed", "replied", "won"]>, z.ZodNumber>>;
|
|
1183
1183
|
expenses: z.ZodObject<{
|
|
1184
1184
|
biddingAmount: z.ZodDefault<z.ZodNumber>;
|
|
1185
1185
|
boostingAmount: z.ZodDefault<z.ZodNumber>;
|
|
@@ -1560,7 +1560,7 @@ export declare const leadAnalysisActivitySchema: z.ZodObject<z.objectUtil.extend
|
|
|
1560
1560
|
answer: string;
|
|
1561
1561
|
}>, "many">>;
|
|
1562
1562
|
agentStatus: z.ZodNullable<z.ZodEnum<["suitabilityPending", "suitabilityProcessing", "suitabilityComplete", "suitabilityFailed", "proposalProcessing", "proposalComplete", "proposalFailed", "biddingProcessing", "biddingComplete", "biddingFailed", "jobArchived"]>>;
|
|
1563
|
-
leadStatus: z.ZodNullable<z.ZodEnum<["leads", "contacted", "insufficientConnects", "viewed", "replied", "won"]>>;
|
|
1563
|
+
leadStatus: z.ZodNullable<z.ZodEnum<["leads", "contacted", "insufficientConnects", "doesNotMeetCriteria", "viewed", "replied", "won"]>>;
|
|
1564
1564
|
biddingAmount: z.ZodNullable<z.ZodNumber>;
|
|
1565
1565
|
boosted: z.ZodNullable<z.ZodBoolean>;
|
|
1566
1566
|
boostingAmount: z.ZodNullable<z.ZodNumber>;
|
|
@@ -2090,7 +2090,7 @@ export declare const leadStatusActivitySchema: z.ZodObject<z.objectUtil.extendSh
|
|
|
2090
2090
|
sleepStartAtHour: z.ZodDefault<z.ZodNullable<z.ZodNumber>>;
|
|
2091
2091
|
sleepEndAtHour: z.ZodDefault<z.ZodNullable<z.ZodNumber>>;
|
|
2092
2092
|
sleepTimezone: z.ZodNullable<z.ZodString>;
|
|
2093
|
-
leadCounts: z.ZodNullable<z.ZodRecord<z.ZodEnum<["leads", "contacted", "insufficientConnects", "viewed", "replied", "won"]>, z.ZodNumber>>;
|
|
2093
|
+
leadCounts: z.ZodNullable<z.ZodRecord<z.ZodEnum<["leads", "contacted", "insufficientConnects", "doesNotMeetCriteria", "viewed", "replied", "won"]>, z.ZodNumber>>;
|
|
2094
2094
|
expenses: z.ZodObject<{
|
|
2095
2095
|
biddingAmount: z.ZodDefault<z.ZodNumber>;
|
|
2096
2096
|
boostingAmount: z.ZodDefault<z.ZodNumber>;
|
|
@@ -2153,7 +2153,7 @@ export declare const leadStatusActivitySchema: z.ZodObject<z.objectUtil.extendSh
|
|
|
2153
2153
|
creditBalance: z.ZodNumber;
|
|
2154
2154
|
}, {
|
|
2155
2155
|
type: z.ZodLiteral<"lead_status">;
|
|
2156
|
-
status: z.ZodEnum<["leads", "contacted", "insufficientConnects", "viewed", "replied", "won"]>;
|
|
2156
|
+
status: z.ZodEnum<["leads", "contacted", "insufficientConnects", "doesNotMeetCriteria", "viewed", "replied", "won"]>;
|
|
2157
2157
|
lead: z.ZodObject<Pick<Omit<z.objectUtil.extendShape<{
|
|
2158
2158
|
id: z.ZodNullable<z.ZodString>;
|
|
2159
2159
|
uid: z.ZodNullable<z.ZodString>;
|
|
@@ -2472,7 +2472,7 @@ export declare const leadStatusActivitySchema: z.ZodObject<z.objectUtil.extendSh
|
|
|
2472
2472
|
answer: string;
|
|
2473
2473
|
}>, "many">>;
|
|
2474
2474
|
agentStatus: z.ZodNullable<z.ZodEnum<["suitabilityPending", "suitabilityProcessing", "suitabilityComplete", "suitabilityFailed", "proposalProcessing", "proposalComplete", "proposalFailed", "biddingProcessing", "biddingComplete", "biddingFailed", "jobArchived"]>>;
|
|
2475
|
-
leadStatus: z.ZodNullable<z.ZodEnum<["leads", "contacted", "insufficientConnects", "viewed", "replied", "won"]>>;
|
|
2475
|
+
leadStatus: z.ZodNullable<z.ZodEnum<["leads", "contacted", "insufficientConnects", "doesNotMeetCriteria", "viewed", "replied", "won"]>>;
|
|
2476
2476
|
biddingAmount: z.ZodNullable<z.ZodNumber>;
|
|
2477
2477
|
boosted: z.ZodNullable<z.ZodBoolean>;
|
|
2478
2478
|
boostingAmount: z.ZodNullable<z.ZodNumber>;
|
|
@@ -2497,7 +2497,7 @@ export declare const leadStatusActivitySchema: z.ZodObject<z.objectUtil.extendSh
|
|
|
2497
2497
|
creditBalance: z.ZodNumber;
|
|
2498
2498
|
}>, "strip", z.ZodTypeAny, {
|
|
2499
2499
|
type: "lead_status";
|
|
2500
|
-
status: "contacted" | "viewed" | "replied" | "won" | "leads" | "insufficientConnects";
|
|
2500
|
+
status: "contacted" | "viewed" | "replied" | "won" | "leads" | "insufficientConnects" | "doesNotMeetCriteria";
|
|
2501
2501
|
createdAt: number;
|
|
2502
2502
|
organization: {
|
|
2503
2503
|
id: string;
|
|
@@ -2516,7 +2516,7 @@ export declare const leadStatusActivitySchema: z.ZodObject<z.objectUtil.extendSh
|
|
|
2516
2516
|
};
|
|
2517
2517
|
}, {
|
|
2518
2518
|
type: "lead_status";
|
|
2519
|
-
status: "contacted" | "viewed" | "replied" | "won" | "leads" | "insufficientConnects";
|
|
2519
|
+
status: "contacted" | "viewed" | "replied" | "won" | "leads" | "insufficientConnects" | "doesNotMeetCriteria";
|
|
2520
2520
|
createdAt: number;
|
|
2521
2521
|
organization: {
|
|
2522
2522
|
id: string;
|
|
@@ -3001,7 +3001,7 @@ export declare const proposalSentActivitySchema: z.ZodObject<z.objectUtil.extend
|
|
|
3001
3001
|
sleepStartAtHour: z.ZodDefault<z.ZodNullable<z.ZodNumber>>;
|
|
3002
3002
|
sleepEndAtHour: z.ZodDefault<z.ZodNullable<z.ZodNumber>>;
|
|
3003
3003
|
sleepTimezone: z.ZodNullable<z.ZodString>;
|
|
3004
|
-
leadCounts: z.ZodNullable<z.ZodRecord<z.ZodEnum<["leads", "contacted", "insufficientConnects", "viewed", "replied", "won"]>, z.ZodNumber>>;
|
|
3004
|
+
leadCounts: z.ZodNullable<z.ZodRecord<z.ZodEnum<["leads", "contacted", "insufficientConnects", "doesNotMeetCriteria", "viewed", "replied", "won"]>, z.ZodNumber>>;
|
|
3005
3005
|
expenses: z.ZodObject<{
|
|
3006
3006
|
biddingAmount: z.ZodDefault<z.ZodNumber>;
|
|
3007
3007
|
boostingAmount: z.ZodDefault<z.ZodNumber>;
|
|
@@ -3382,7 +3382,7 @@ export declare const proposalSentActivitySchema: z.ZodObject<z.objectUtil.extend
|
|
|
3382
3382
|
answer: string;
|
|
3383
3383
|
}>, "many">>;
|
|
3384
3384
|
agentStatus: z.ZodNullable<z.ZodEnum<["suitabilityPending", "suitabilityProcessing", "suitabilityComplete", "suitabilityFailed", "proposalProcessing", "proposalComplete", "proposalFailed", "biddingProcessing", "biddingComplete", "biddingFailed", "jobArchived"]>>;
|
|
3385
|
-
leadStatus: z.ZodNullable<z.ZodEnum<["leads", "contacted", "insufficientConnects", "viewed", "replied", "won"]>>;
|
|
3385
|
+
leadStatus: z.ZodNullable<z.ZodEnum<["leads", "contacted", "insufficientConnects", "doesNotMeetCriteria", "viewed", "replied", "won"]>>;
|
|
3386
3386
|
biddingAmount: z.ZodNullable<z.ZodNumber>;
|
|
3387
3387
|
boosted: z.ZodNullable<z.ZodBoolean>;
|
|
3388
3388
|
boostingAmount: z.ZodNullable<z.ZodNumber>;
|
|
@@ -3909,7 +3909,7 @@ export declare const campaignActivitySchema: z.ZodDiscriminatedUnion<"type", [z.
|
|
|
3909
3909
|
sleepStartAtHour: z.ZodDefault<z.ZodNullable<z.ZodNumber>>;
|
|
3910
3910
|
sleepEndAtHour: z.ZodDefault<z.ZodNullable<z.ZodNumber>>;
|
|
3911
3911
|
sleepTimezone: z.ZodNullable<z.ZodString>;
|
|
3912
|
-
leadCounts: z.ZodNullable<z.ZodRecord<z.ZodEnum<["leads", "contacted", "insufficientConnects", "viewed", "replied", "won"]>, z.ZodNumber>>;
|
|
3912
|
+
leadCounts: z.ZodNullable<z.ZodRecord<z.ZodEnum<["leads", "contacted", "insufficientConnects", "doesNotMeetCriteria", "viewed", "replied", "won"]>, z.ZodNumber>>;
|
|
3913
3913
|
expenses: z.ZodObject<{
|
|
3914
3914
|
biddingAmount: z.ZodDefault<z.ZodNumber>;
|
|
3915
3915
|
boostingAmount: z.ZodDefault<z.ZodNumber>;
|
|
@@ -4467,7 +4467,7 @@ export declare const campaignActivitySchema: z.ZodDiscriminatedUnion<"type", [z.
|
|
|
4467
4467
|
sleepStartAtHour: z.ZodDefault<z.ZodNullable<z.ZodNumber>>;
|
|
4468
4468
|
sleepEndAtHour: z.ZodDefault<z.ZodNullable<z.ZodNumber>>;
|
|
4469
4469
|
sleepTimezone: z.ZodNullable<z.ZodString>;
|
|
4470
|
-
leadCounts: z.ZodNullable<z.ZodRecord<z.ZodEnum<["leads", "contacted", "insufficientConnects", "viewed", "replied", "won"]>, z.ZodNumber>>;
|
|
4470
|
+
leadCounts: z.ZodNullable<z.ZodRecord<z.ZodEnum<["leads", "contacted", "insufficientConnects", "doesNotMeetCriteria", "viewed", "replied", "won"]>, z.ZodNumber>>;
|
|
4471
4471
|
expenses: z.ZodObject<{
|
|
4472
4472
|
biddingAmount: z.ZodDefault<z.ZodNumber>;
|
|
4473
4473
|
boostingAmount: z.ZodDefault<z.ZodNumber>;
|
|
@@ -4848,7 +4848,7 @@ export declare const campaignActivitySchema: z.ZodDiscriminatedUnion<"type", [z.
|
|
|
4848
4848
|
answer: string;
|
|
4849
4849
|
}>, "many">>;
|
|
4850
4850
|
agentStatus: z.ZodNullable<z.ZodEnum<["suitabilityPending", "suitabilityProcessing", "suitabilityComplete", "suitabilityFailed", "proposalProcessing", "proposalComplete", "proposalFailed", "biddingProcessing", "biddingComplete", "biddingFailed", "jobArchived"]>>;
|
|
4851
|
-
leadStatus: z.ZodNullable<z.ZodEnum<["leads", "contacted", "insufficientConnects", "viewed", "replied", "won"]>>;
|
|
4851
|
+
leadStatus: z.ZodNullable<z.ZodEnum<["leads", "contacted", "insufficientConnects", "doesNotMeetCriteria", "viewed", "replied", "won"]>>;
|
|
4852
4852
|
biddingAmount: z.ZodNullable<z.ZodNumber>;
|
|
4853
4853
|
boosted: z.ZodNullable<z.ZodBoolean>;
|
|
4854
4854
|
boostingAmount: z.ZodNullable<z.ZodNumber>;
|
|
@@ -5377,7 +5377,7 @@ export declare const campaignActivitySchema: z.ZodDiscriminatedUnion<"type", [z.
|
|
|
5377
5377
|
sleepStartAtHour: z.ZodDefault<z.ZodNullable<z.ZodNumber>>;
|
|
5378
5378
|
sleepEndAtHour: z.ZodDefault<z.ZodNullable<z.ZodNumber>>;
|
|
5379
5379
|
sleepTimezone: z.ZodNullable<z.ZodString>;
|
|
5380
|
-
leadCounts: z.ZodNullable<z.ZodRecord<z.ZodEnum<["leads", "contacted", "insufficientConnects", "viewed", "replied", "won"]>, z.ZodNumber>>;
|
|
5380
|
+
leadCounts: z.ZodNullable<z.ZodRecord<z.ZodEnum<["leads", "contacted", "insufficientConnects", "doesNotMeetCriteria", "viewed", "replied", "won"]>, z.ZodNumber>>;
|
|
5381
5381
|
expenses: z.ZodObject<{
|
|
5382
5382
|
biddingAmount: z.ZodDefault<z.ZodNumber>;
|
|
5383
5383
|
boostingAmount: z.ZodDefault<z.ZodNumber>;
|
|
@@ -5440,7 +5440,7 @@ export declare const campaignActivitySchema: z.ZodDiscriminatedUnion<"type", [z.
|
|
|
5440
5440
|
creditBalance: z.ZodNumber;
|
|
5441
5441
|
}, {
|
|
5442
5442
|
type: z.ZodLiteral<"lead_status">;
|
|
5443
|
-
status: z.ZodEnum<["leads", "contacted", "insufficientConnects", "viewed", "replied", "won"]>;
|
|
5443
|
+
status: z.ZodEnum<["leads", "contacted", "insufficientConnects", "doesNotMeetCriteria", "viewed", "replied", "won"]>;
|
|
5444
5444
|
lead: z.ZodObject<Pick<Omit<z.objectUtil.extendShape<{
|
|
5445
5445
|
id: z.ZodNullable<z.ZodString>;
|
|
5446
5446
|
uid: z.ZodNullable<z.ZodString>;
|
|
@@ -5759,7 +5759,7 @@ export declare const campaignActivitySchema: z.ZodDiscriminatedUnion<"type", [z.
|
|
|
5759
5759
|
answer: string;
|
|
5760
5760
|
}>, "many">>;
|
|
5761
5761
|
agentStatus: z.ZodNullable<z.ZodEnum<["suitabilityPending", "suitabilityProcessing", "suitabilityComplete", "suitabilityFailed", "proposalProcessing", "proposalComplete", "proposalFailed", "biddingProcessing", "biddingComplete", "biddingFailed", "jobArchived"]>>;
|
|
5762
|
-
leadStatus: z.ZodNullable<z.ZodEnum<["leads", "contacted", "insufficientConnects", "viewed", "replied", "won"]>>;
|
|
5762
|
+
leadStatus: z.ZodNullable<z.ZodEnum<["leads", "contacted", "insufficientConnects", "doesNotMeetCriteria", "viewed", "replied", "won"]>>;
|
|
5763
5763
|
biddingAmount: z.ZodNullable<z.ZodNumber>;
|
|
5764
5764
|
boosted: z.ZodNullable<z.ZodBoolean>;
|
|
5765
5765
|
boostingAmount: z.ZodNullable<z.ZodNumber>;
|
|
@@ -5784,7 +5784,7 @@ export declare const campaignActivitySchema: z.ZodDiscriminatedUnion<"type", [z.
|
|
|
5784
5784
|
creditBalance: z.ZodNumber;
|
|
5785
5785
|
}>, "strip", z.ZodTypeAny, {
|
|
5786
5786
|
type: "lead_status";
|
|
5787
|
-
status: "contacted" | "viewed" | "replied" | "won" | "leads" | "insufficientConnects";
|
|
5787
|
+
status: "contacted" | "viewed" | "replied" | "won" | "leads" | "insufficientConnects" | "doesNotMeetCriteria";
|
|
5788
5788
|
createdAt: number;
|
|
5789
5789
|
organization: {
|
|
5790
5790
|
id: string;
|
|
@@ -5803,7 +5803,7 @@ export declare const campaignActivitySchema: z.ZodDiscriminatedUnion<"type", [z.
|
|
|
5803
5803
|
};
|
|
5804
5804
|
}, {
|
|
5805
5805
|
type: "lead_status";
|
|
5806
|
-
status: "contacted" | "viewed" | "replied" | "won" | "leads" | "insufficientConnects";
|
|
5806
|
+
status: "contacted" | "viewed" | "replied" | "won" | "leads" | "insufficientConnects" | "doesNotMeetCriteria";
|
|
5807
5807
|
createdAt: number;
|
|
5808
5808
|
organization: {
|
|
5809
5809
|
id: string;
|
|
@@ -6287,7 +6287,7 @@ export declare const campaignActivitySchema: z.ZodDiscriminatedUnion<"type", [z.
|
|
|
6287
6287
|
sleepStartAtHour: z.ZodDefault<z.ZodNullable<z.ZodNumber>>;
|
|
6288
6288
|
sleepEndAtHour: z.ZodDefault<z.ZodNullable<z.ZodNumber>>;
|
|
6289
6289
|
sleepTimezone: z.ZodNullable<z.ZodString>;
|
|
6290
|
-
leadCounts: z.ZodNullable<z.ZodRecord<z.ZodEnum<["leads", "contacted", "insufficientConnects", "viewed", "replied", "won"]>, z.ZodNumber>>;
|
|
6290
|
+
leadCounts: z.ZodNullable<z.ZodRecord<z.ZodEnum<["leads", "contacted", "insufficientConnects", "doesNotMeetCriteria", "viewed", "replied", "won"]>, z.ZodNumber>>;
|
|
6291
6291
|
expenses: z.ZodObject<{
|
|
6292
6292
|
biddingAmount: z.ZodDefault<z.ZodNumber>;
|
|
6293
6293
|
boostingAmount: z.ZodDefault<z.ZodNumber>;
|
|
@@ -6668,7 +6668,7 @@ export declare const campaignActivitySchema: z.ZodDiscriminatedUnion<"type", [z.
|
|
|
6668
6668
|
answer: string;
|
|
6669
6669
|
}>, "many">>;
|
|
6670
6670
|
agentStatus: z.ZodNullable<z.ZodEnum<["suitabilityPending", "suitabilityProcessing", "suitabilityComplete", "suitabilityFailed", "proposalProcessing", "proposalComplete", "proposalFailed", "biddingProcessing", "biddingComplete", "biddingFailed", "jobArchived"]>>;
|
|
6671
|
-
leadStatus: z.ZodNullable<z.ZodEnum<["leads", "contacted", "insufficientConnects", "viewed", "replied", "won"]>>;
|
|
6671
|
+
leadStatus: z.ZodNullable<z.ZodEnum<["leads", "contacted", "insufficientConnects", "doesNotMeetCriteria", "viewed", "replied", "won"]>>;
|
|
6672
6672
|
biddingAmount: z.ZodNullable<z.ZodNumber>;
|
|
6673
6673
|
boosted: z.ZodNullable<z.ZodBoolean>;
|
|
6674
6674
|
boostingAmount: z.ZodNullable<z.ZodNumber>;
|
|
@@ -7060,7 +7060,7 @@ export declare const campaignActivityCreateSchema: z.ZodDiscriminatedUnion<"type
|
|
|
7060
7060
|
answer: string;
|
|
7061
7061
|
}>, "many">>;
|
|
7062
7062
|
agentStatus: z.ZodNullable<z.ZodEnum<["suitabilityPending", "suitabilityProcessing", "suitabilityComplete", "suitabilityFailed", "proposalProcessing", "proposalComplete", "proposalFailed", "biddingProcessing", "biddingComplete", "biddingFailed", "jobArchived"]>>;
|
|
7063
|
-
leadStatus: z.ZodNullable<z.ZodEnum<["leads", "contacted", "insufficientConnects", "viewed", "replied", "won"]>>;
|
|
7063
|
+
leadStatus: z.ZodNullable<z.ZodEnum<["leads", "contacted", "insufficientConnects", "doesNotMeetCriteria", "viewed", "replied", "won"]>>;
|
|
7064
7064
|
biddingAmount: z.ZodNullable<z.ZodNumber>;
|
|
7065
7065
|
boosted: z.ZodNullable<z.ZodBoolean>;
|
|
7066
7066
|
boostingAmount: z.ZodNullable<z.ZodNumber>;
|
|
@@ -7106,7 +7106,7 @@ export declare const campaignActivityCreateSchema: z.ZodDiscriminatedUnion<"type
|
|
|
7106
7106
|
};
|
|
7107
7107
|
}>, z.ZodObject<{
|
|
7108
7108
|
type: z.ZodLiteral<"lead_status">;
|
|
7109
|
-
status: z.ZodEnum<["leads", "contacted", "insufficientConnects", "viewed", "replied", "won"]>;
|
|
7109
|
+
status: z.ZodEnum<["leads", "contacted", "insufficientConnects", "doesNotMeetCriteria", "viewed", "replied", "won"]>;
|
|
7110
7110
|
lead: z.ZodObject<Pick<Omit<z.objectUtil.extendShape<{
|
|
7111
7111
|
id: z.ZodNullable<z.ZodString>;
|
|
7112
7112
|
uid: z.ZodNullable<z.ZodString>;
|
|
@@ -7425,7 +7425,7 @@ export declare const campaignActivityCreateSchema: z.ZodDiscriminatedUnion<"type
|
|
|
7425
7425
|
answer: string;
|
|
7426
7426
|
}>, "many">>;
|
|
7427
7427
|
agentStatus: z.ZodNullable<z.ZodEnum<["suitabilityPending", "suitabilityProcessing", "suitabilityComplete", "suitabilityFailed", "proposalProcessing", "proposalComplete", "proposalFailed", "biddingProcessing", "biddingComplete", "biddingFailed", "jobArchived"]>>;
|
|
7428
|
-
leadStatus: z.ZodNullable<z.ZodEnum<["leads", "contacted", "insufficientConnects", "viewed", "replied", "won"]>>;
|
|
7428
|
+
leadStatus: z.ZodNullable<z.ZodEnum<["leads", "contacted", "insufficientConnects", "doesNotMeetCriteria", "viewed", "replied", "won"]>>;
|
|
7429
7429
|
biddingAmount: z.ZodNullable<z.ZodNumber>;
|
|
7430
7430
|
boosted: z.ZodNullable<z.ZodBoolean>;
|
|
7431
7431
|
boostingAmount: z.ZodNullable<z.ZodNumber>;
|
|
@@ -7450,7 +7450,7 @@ export declare const campaignActivityCreateSchema: z.ZodDiscriminatedUnion<"type
|
|
|
7450
7450
|
creditBalance: z.ZodNumber;
|
|
7451
7451
|
}, "strip", z.ZodTypeAny, {
|
|
7452
7452
|
type: "lead_status";
|
|
7453
|
-
status: "contacted" | "viewed" | "replied" | "won" | "leads" | "insufficientConnects";
|
|
7453
|
+
status: "contacted" | "viewed" | "replied" | "won" | "leads" | "insufficientConnects" | "doesNotMeetCriteria";
|
|
7454
7454
|
creditBalance: number;
|
|
7455
7455
|
lead: {
|
|
7456
7456
|
id: string | null;
|
|
@@ -7460,7 +7460,7 @@ export declare const campaignActivityCreateSchema: z.ZodDiscriminatedUnion<"type
|
|
|
7460
7460
|
};
|
|
7461
7461
|
}, {
|
|
7462
7462
|
type: "lead_status";
|
|
7463
|
-
status: "contacted" | "viewed" | "replied" | "won" | "leads" | "insufficientConnects";
|
|
7463
|
+
status: "contacted" | "viewed" | "replied" | "won" | "leads" | "insufficientConnects" | "doesNotMeetCriteria";
|
|
7464
7464
|
creditBalance: number;
|
|
7465
7465
|
lead: {
|
|
7466
7466
|
id: string | null;
|
|
@@ -7788,7 +7788,7 @@ export declare const campaignActivityCreateSchema: z.ZodDiscriminatedUnion<"type
|
|
|
7788
7788
|
answer: string;
|
|
7789
7789
|
}>, "many">>;
|
|
7790
7790
|
agentStatus: z.ZodNullable<z.ZodEnum<["suitabilityPending", "suitabilityProcessing", "suitabilityComplete", "suitabilityFailed", "proposalProcessing", "proposalComplete", "proposalFailed", "biddingProcessing", "biddingComplete", "biddingFailed", "jobArchived"]>>;
|
|
7791
|
-
leadStatus: z.ZodNullable<z.ZodEnum<["leads", "contacted", "insufficientConnects", "viewed", "replied", "won"]>>;
|
|
7791
|
+
leadStatus: z.ZodNullable<z.ZodEnum<["leads", "contacted", "insufficientConnects", "doesNotMeetCriteria", "viewed", "replied", "won"]>>;
|
|
7792
7792
|
biddingAmount: z.ZodNullable<z.ZodNumber>;
|
|
7793
7793
|
boosted: z.ZodNullable<z.ZodBoolean>;
|
|
7794
7794
|
boostingAmount: z.ZodNullable<z.ZodNumber>;
|
|
@@ -7833,15 +7833,15 @@ export declare const campaignActivityCreateSchema: z.ZodDiscriminatedUnion<"type
|
|
|
7833
7833
|
export declare const updateCampaignAnalyticsSchema: z.ZodObject<{
|
|
7834
7834
|
organizationId: z.ZodString;
|
|
7835
7835
|
campaignId: z.ZodString;
|
|
7836
|
-
fields: z.ZodArray<z.ZodEnum<["contacted", "viewed", "replied", "won", "leadsAnalyzed", "leadsFailed", "proposalsFailed", "suitableJobs", "unsuitableJobs", "wonAmount"]>, "many">;
|
|
7836
|
+
fields: z.ZodArray<z.ZodEnum<["contacted", "viewed", "replied", "doesNotMeetCriteria", "insufficientConnects", "won", "leadsAnalyzed", "leadsFailed", "proposalsFailed", "suitableJobs", "unsuitableJobs", "wonAmount"]>, "many">;
|
|
7837
7837
|
}, "strip", z.ZodTypeAny, {
|
|
7838
7838
|
campaignId: string;
|
|
7839
7839
|
organizationId: string;
|
|
7840
|
-
fields: ("contacted" | "viewed" | "replied" | "won" | "leadsAnalyzed" | "leadsFailed" | "suitableJobs" | "unsuitableJobs" | "wonAmount" | "proposalsFailed")[];
|
|
7840
|
+
fields: ("contacted" | "viewed" | "replied" | "won" | "leadsAnalyzed" | "leadsFailed" | "suitableJobs" | "unsuitableJobs" | "wonAmount" | "insufficientConnects" | "doesNotMeetCriteria" | "proposalsFailed")[];
|
|
7841
7841
|
}, {
|
|
7842
7842
|
campaignId: string;
|
|
7843
7843
|
organizationId: string;
|
|
7844
|
-
fields: ("contacted" | "viewed" | "replied" | "won" | "leadsAnalyzed" | "leadsFailed" | "suitableJobs" | "unsuitableJobs" | "wonAmount" | "proposalsFailed")[];
|
|
7844
|
+
fields: ("contacted" | "viewed" | "replied" | "won" | "leadsAnalyzed" | "leadsFailed" | "suitableJobs" | "unsuitableJobs" | "wonAmount" | "insufficientConnects" | "doesNotMeetCriteria" | "proposalsFailed")[];
|
|
7845
7845
|
}>;
|
|
7846
7846
|
export type CampaignAnalytics = z.infer<typeof campaignAnalyticsSchema>;
|
|
7847
7847
|
export type CampaignAnalyticsStats = z.infer<typeof campaignAnalyticsStatsSchema>;
|