lancer-shared 1.2.173 → 1.2.174
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
|
@@ -6571,6 +6571,7 @@ const ROUTES = {
|
|
|
6571
6571
|
CAMPAIGNS: {
|
|
6572
6572
|
BASE: (organizationId) => `organizations/${organizationId}/campaigns`,
|
|
6573
6573
|
BY_ID: (organizationId, campaignId) => `organizations/${organizationId}/campaigns/${campaignId}`,
|
|
6574
|
+
DUPLICATE: (organizationId, campaignId) => `organizations/${organizationId}/campaigns/${campaignId}/duplicate`,
|
|
6574
6575
|
CONNECTS_SAVED: (organizationId, campaignId) => `organizations/${organizationId}/campaigns/${campaignId}/connects-saved`,
|
|
6575
6576
|
BIDDER_ACCOUNTS: {
|
|
6576
6577
|
BASE: (organizationId, campaignId) => `organizations/${organizationId}/campaigns/${campaignId}/bidder-account`,
|
|
@@ -148,6 +148,7 @@ export declare const ROUTES: {
|
|
|
148
148
|
readonly CAMPAIGNS: {
|
|
149
149
|
readonly BASE: (organizationId: string) => string;
|
|
150
150
|
readonly BY_ID: (organizationId: string, campaignId: string) => string;
|
|
151
|
+
readonly DUPLICATE: (organizationId: string, campaignId: string) => string;
|
|
151
152
|
readonly CONNECTS_SAVED: (organizationId: string, campaignId: string) => string;
|
|
152
153
|
readonly BIDDER_ACCOUNTS: {
|
|
153
154
|
readonly BASE: (organizationId: string, campaignId: string) => string;
|