glitch-javascript-sdk 1.0.0 → 1.0.1
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/cjs/index.js +2 -2
- package/dist/cjs/index.js.map +1 -1
- package/dist/esm/api/Campaigns.d.ts +1 -1
- package/dist/esm/index.js +2 -2
- package/dist/esm/index.js.map +1 -1
- package/dist/index.d.ts +1 -1
- package/package.json +1 -1
- package/src/api/Campaigns.ts +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -2461,7 +2461,7 @@ declare class Campaigns {
|
|
|
2461
2461
|
*
|
|
2462
2462
|
* @returns promise
|
|
2463
2463
|
*/
|
|
2464
|
-
static listInfluencerCampaignLinkClicks<T>(campaign_id: string, params?: Record<string, any>): AxiosPromise<Response<T>>;
|
|
2464
|
+
static listInfluencerCampaignLinkClicks<T>(campaign_id: string, user_id: string, params?: Record<string, any>): AxiosPromise<Response<T>>;
|
|
2465
2465
|
/**
|
|
2466
2466
|
* Create a new campaign link.
|
|
2467
2467
|
*
|
package/package.json
CHANGED
package/src/api/Campaigns.ts
CHANGED
|
@@ -102,8 +102,8 @@ class Campaigns {
|
|
|
102
102
|
*
|
|
103
103
|
* @returns promise
|
|
104
104
|
*/
|
|
105
|
-
public static listInfluencerCampaignLinkClicks<T>(campaign_id: string, params?: Record<string, any>): AxiosPromise<Response<T>> {
|
|
106
|
-
return Requests.processRoute(CampaignsRoute.routes.listInfluencerCampaignLinkClicks, undefined, { campaign_id: campaign_id }, params);
|
|
105
|
+
public static listInfluencerCampaignLinkClicks<T>(campaign_id: string, user_id: string, params?: Record<string, any>): AxiosPromise<Response<T>> {
|
|
106
|
+
return Requests.processRoute(CampaignsRoute.routes.listInfluencerCampaignLinkClicks, undefined, { campaign_id: campaign_id, user_id : user_id }, params);
|
|
107
107
|
}
|
|
108
108
|
|
|
109
109
|
|