lancer-shared 1.2.186 → 1.2.188

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.
@@ -6557,6 +6557,7 @@ const ROUTES = {
6557
6557
  TRACK_USAGE: (id) => `organizations/${id}/track-usage`,
6558
6558
  SUBSCRIBE: (id) => `organizations/${id}/subscribe`,
6559
6559
  BUY_US_BIDDER_ACCOUNT: (id) => `organizations/${id}/buy-us-bidder-account`,
6560
+ PAUSE_CAMPAIGNS: (id) => `organizations/${id}/pause-campaigns`,
6560
6561
  BIDDER_ACCOUNTS: {
6561
6562
  BASE: (id) => `organizations/${id}/bidder-accounts`,
6562
6563
  BY_ID: (id, bidderId) => `organizations/${id}/bidder-accounts/${bidderId}`,
@@ -134,6 +134,7 @@ export declare const ROUTES: {
134
134
  readonly TRACK_USAGE: (id: string) => string;
135
135
  readonly SUBSCRIBE: (id: string) => string;
136
136
  readonly BUY_US_BIDDER_ACCOUNT: (id: string) => string;
137
+ readonly PAUSE_CAMPAIGNS: (id: string) => string;
137
138
  readonly BIDDER_ACCOUNTS: {
138
139
  readonly BASE: (id: string) => string;
139
140
  readonly BY_ID: (id: string, bidderId: string) => string;
@@ -1509,7 +1509,7 @@ export declare const updateCampaignSchema: z.ZodObject<{
1509
1509
  export type BiddingHourlyRateStrategy = z.infer<typeof biddingHourlyRateStrategyEnum>;
1510
1510
  export interface Campaign extends z.infer<typeof campaignSchema> {
1511
1511
  biddingHourlyRateStrategy: BiddingHourlyRateStrategy;
1512
- jobFilters: JobFilters;
1512
+ filters: JobFilters;
1513
1513
  }
1514
1514
  export type CampaignStatus = z.infer<typeof campaignStatusSchema>;
1515
1515
  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.186",
3
+ "version": "1.2.188",
4
4
  "description": "This package contains shared stuff.",
5
5
  "types": "./dist/index.d.ts",
6
6
  "main": "dist/bundle.cjs.js",