lancer-shared 1.2.187 → 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.
- package/dist/bundle.cjs.js +1 -0
- package/dist/constants/routes.d.ts +1 -0
- package/package.json +1 -1
package/dist/bundle.cjs.js
CHANGED
|
@@ -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;
|