lancer-shared 1.2.197 → 1.2.199

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.
@@ -6582,6 +6582,7 @@ const ROUTES = {
6582
6582
  BY_ID: (organizationId, campaignId) => `organizations/${organizationId}/campaigns/${campaignId}`,
6583
6583
  DUPLICATE: (organizationId, campaignId) => `organizations/${organizationId}/campaigns/${campaignId}/duplicate`,
6584
6584
  CONNECTS_SAVED: (organizationId, campaignId) => `organizations/${organizationId}/campaigns/${campaignId}/connects-saved`,
6585
+ LAST_MONTH_LEAD_COUNTS: (organizationId) => `organizations/${organizationId}/campaigns/last-month-leads-count`,
6585
6586
  BIDDER_ACCOUNTS: {
6586
6587
  BASE: (organizationId, campaignId) => `organizations/${organizationId}/campaigns/${campaignId}/bidder-account`,
6587
6588
  CONNECT: (organizationId, campaignId) => `organizations/${organizationId}/campaigns/${campaignId}/bidder-account/connect`,
@@ -151,6 +151,7 @@ export declare const ROUTES: {
151
151
  readonly BY_ID: (organizationId: string, campaignId: string) => string;
152
152
  readonly DUPLICATE: (organizationId: string, campaignId: string) => string;
153
153
  readonly CONNECTS_SAVED: (organizationId: string, campaignId: string) => string;
154
+ readonly LAST_MONTH_LEAD_COUNTS: (organizationId: string) => string;
154
155
  readonly BIDDER_ACCOUNTS: {
155
156
  readonly BASE: (organizationId: string, campaignId: string) => string;
156
157
  readonly CONNECT: (organizationId: string, campaignId: string) => string;
@@ -1868,6 +1868,7 @@ export type BiddingHourlyRateStrategy = z.infer<typeof biddingHourlyRateStrategy
1868
1868
  export interface Campaign extends z.infer<typeof campaignSchema> {
1869
1869
  biddingHourlyRateStrategy: BiddingHourlyRateStrategy;
1870
1870
  filters: JobFilters;
1871
+ count?: number;
1871
1872
  }
1872
1873
  export type CampaignStatus = z.infer<typeof campaignStatusSchema>;
1873
1874
  export interface CreateCampaign extends z.infer<typeof createCampaignSchema> {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "lancer-shared",
3
- "version": "1.2.197",
3
+ "version": "1.2.199",
4
4
  "description": "This package contains shared stuff.",
5
5
  "types": "./dist/index.d.ts",
6
6
  "main": "dist/bundle.cjs.js",