lancer-shared 1.2.54 → 1.2.55
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
|
@@ -6533,6 +6533,7 @@ const ROUTES = {
|
|
|
6533
6533
|
CONNECTS_SAVED: (organizationId, campaignId) => `organizations/${organizationId}/campaigns/${campaignId}/connects-saved`,
|
|
6534
6534
|
BIDDER_ACCOUNTS: {
|
|
6535
6535
|
BASE: (organizationId, campaignId) => `organizations/${organizationId}/campaigns/${campaignId}/bidder-account`,
|
|
6536
|
+
CONNECT: (organizationId, campaignId) => `organizations/${organizationId}/campaigns/${campaignId}/bidder-account/connect`,
|
|
6536
6537
|
},
|
|
6537
6538
|
LEADS: {
|
|
6538
6539
|
BASE: (organizationId, campaignId) => `organizations/${organizationId}/campaigns/${campaignId}/leads`,
|
|
@@ -120,6 +120,7 @@ export declare const ROUTES: {
|
|
|
120
120
|
readonly CONNECTS_SAVED: (organizationId: string, campaignId: string) => string;
|
|
121
121
|
readonly BIDDER_ACCOUNTS: {
|
|
122
122
|
readonly BASE: (organizationId: string, campaignId: string) => string;
|
|
123
|
+
readonly CONNECT: (organizationId: string, campaignId: string) => string;
|
|
123
124
|
};
|
|
124
125
|
readonly LEADS: {
|
|
125
126
|
readonly BASE: (organizationId: string, campaignId: string) => string;
|