lancer-shared 1.2.334 → 1.2.336
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 +8 -0
- package/dist/bundle.cjs.js.map +1 -1
- package/dist/bundle.esm.js +8 -1
- package/dist/bundle.esm.js.map +1 -1
- package/dist/schemas/campaign/campaign-analytics.d.ts +16 -0
- package/dist/schemas/campaign/campaign-insights.d.ts +3 -0
- package/dist/schemas/proxy/proxy-available-replacements.d.ts +1 -1
- package/dist/schemas/proxy/proxy.d.ts +15 -7
- package/package.json +1 -1
package/dist/bundle.cjs.js
CHANGED
|
@@ -6674,8 +6674,10 @@ const proxyProviderSchema = z.enum([
|
|
|
6674
6674
|
'rayobyte',
|
|
6675
6675
|
'brightdata',
|
|
6676
6676
|
'iproyal',
|
|
6677
|
+
'mars',
|
|
6677
6678
|
]);
|
|
6678
6679
|
const proxyTypeSchema = z.enum(['rotating', 'static']);
|
|
6680
|
+
const proxyProtocolSchema = z.enum(['socks5', 'http']);
|
|
6679
6681
|
const proxySchema = z.object({
|
|
6680
6682
|
id: z.string(),
|
|
6681
6683
|
externalId: z.string(),
|
|
@@ -6693,6 +6695,7 @@ const proxySchema = z.object({
|
|
|
6693
6695
|
region: z.string().nullable(),
|
|
6694
6696
|
accountId: z.string().nullable(),
|
|
6695
6697
|
type: proxyTypeSchema,
|
|
6698
|
+
protocol: proxyProtocolSchema.nullable().optional(),
|
|
6696
6699
|
});
|
|
6697
6700
|
const externalProxySchema = proxySchema.omit({
|
|
6698
6701
|
id: true,
|
|
@@ -7545,6 +7548,7 @@ const campaignAnalyticsSchema = z.object({
|
|
|
7545
7548
|
submissionDelayCount: z.number().optional(),
|
|
7546
7549
|
totalBiddingAmount: z.number().optional(),
|
|
7547
7550
|
totalBoostedAmount: z.number().optional(),
|
|
7551
|
+
effectiveBoostedAmount: z.number().optional(),
|
|
7548
7552
|
replyRateByTemplateId: z.record(z.string(), z.number()).optional(),
|
|
7549
7553
|
viewRateByTemplateId: z.record(z.string(), z.number()).optional(),
|
|
7550
7554
|
contactedByTemplateId: z.record(z.string(), z.number()).optional(),
|
|
@@ -7584,6 +7588,7 @@ const campaignAnalyticsStatsSchema = z.object({
|
|
|
7584
7588
|
submissionDelayCount: z.number(),
|
|
7585
7589
|
totalBiddingAmount: z.number(),
|
|
7586
7590
|
totalBoostedAmount: z.number(),
|
|
7591
|
+
effectiveBoostedAmount: z.number(),
|
|
7587
7592
|
replyRateByTemplateId: z.record(z.string(), z.number()),
|
|
7588
7593
|
viewRateByTemplateId: z.record(z.string(), z.number()),
|
|
7589
7594
|
contactedByTemplateId: z.record(z.string(), z.number()),
|
|
@@ -7600,6 +7605,7 @@ const campaignAnalyticsResponseSchema = z.object({
|
|
|
7600
7605
|
submissionDelayCount: z.number(),
|
|
7601
7606
|
totalBiddingAmount: z.number(),
|
|
7602
7607
|
totalBoostedAmount: z.number(),
|
|
7608
|
+
effectiveBoostedAmount: z.number(),
|
|
7603
7609
|
replyRateByTemplateId: z.record(z.string(), z.number()),
|
|
7604
7610
|
viewRateByTemplateId: z.record(z.string(), z.number()),
|
|
7605
7611
|
contactedByTemplateId: z.record(z.string(), z.number()),
|
|
@@ -7819,6 +7825,7 @@ const campaignInsightsSchema = z.object({
|
|
|
7819
7825
|
pipelineHealth: campaignCountByStatusSchema,
|
|
7820
7826
|
biddingAmount: z.number().default(0),
|
|
7821
7827
|
boostingAmount: z.number().default(0),
|
|
7828
|
+
effectiveBoostedAmount: z.number().default(0),
|
|
7822
7829
|
boostedProposalsCount: z.number().default(0),
|
|
7823
7830
|
totalProposalsCount: z.number().default(0),
|
|
7824
7831
|
totalExpenses: z.number().default(0),
|
|
@@ -25014,6 +25021,7 @@ exports.proxyAvailableReplacementsSchema = proxyAvailableReplacementsSchema;
|
|
|
25014
25021
|
exports.proxyCountryCodeToName = proxyCountryCodeToName;
|
|
25015
25022
|
exports.proxyCountryEnum = proxyCountryEnum;
|
|
25016
25023
|
exports.proxyNotReachableException = proxyNotReachableException;
|
|
25024
|
+
exports.proxyProtocolSchema = proxyProtocolSchema;
|
|
25017
25025
|
exports.proxyProviderSchema = proxyProviderSchema;
|
|
25018
25026
|
exports.proxySchema = proxySchema;
|
|
25019
25027
|
exports.proxyStatusSchema = proxyStatusSchema;
|