glitch-javascript-sdk 1.7.4 → 1.7.5
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 +15 -0
- package/dist/cjs/index.js.map +1 -1
- package/dist/esm/api/Communities.d.ts +11 -0
- package/dist/esm/index.js +15 -0
- package/dist/esm/index.js.map +1 -1
- package/dist/index.d.ts +11 -0
- package/package.json +1 -1
- package/src/api/Communities.ts +35 -13
- package/src/routes/CommunitiesRoute.ts +4 -0
package/dist/index.d.ts
CHANGED
|
@@ -1236,6 +1236,17 @@ declare class Communities {
|
|
|
1236
1236
|
static exportNewsletterSubscribers<T>(community_id: string, newsletter_id: string, data: {
|
|
1237
1237
|
format: 'csv' | 'xlsx';
|
|
1238
1238
|
}, params?: Record<string, any>): AxiosPromise<Response<T>>;
|
|
1239
|
+
/**
|
|
1240
|
+
* Import game installs from a game title installations to a newsletter
|
|
1241
|
+
*
|
|
1242
|
+
* @param community_id The ID of the community.
|
|
1243
|
+
* @param newsletter_id The ID of the newsletter.
|
|
1244
|
+
* @param data Export options (format: 'csv' or 'xlsx').
|
|
1245
|
+
* @returns Promise
|
|
1246
|
+
*/
|
|
1247
|
+
static importGameInstalls<T>(community_id: string, newsletter_id: string, data: {
|
|
1248
|
+
format: 'csv' | 'xlsx';
|
|
1249
|
+
}, params?: Record<string, any>): AxiosPromise<Response<T>>;
|
|
1239
1250
|
}
|
|
1240
1251
|
|
|
1241
1252
|
declare class Users {
|
package/package.json
CHANGED
package/src/api/Communities.ts
CHANGED
|
@@ -860,19 +860,41 @@ class Communities {
|
|
|
860
860
|
* @param data Export options (format: 'csv' or 'xlsx').
|
|
861
861
|
* @returns Promise
|
|
862
862
|
*/
|
|
863
|
-
|
|
864
|
-
|
|
865
|
-
|
|
866
|
-
|
|
867
|
-
|
|
868
|
-
|
|
869
|
-
|
|
870
|
-
|
|
871
|
-
|
|
872
|
-
|
|
873
|
-
|
|
874
|
-
|
|
875
|
-
|
|
863
|
+
public static exportNewsletterSubscribers<T>(
|
|
864
|
+
community_id: string,
|
|
865
|
+
newsletter_id: string,
|
|
866
|
+
data: { format: 'csv' | 'xlsx' },
|
|
867
|
+
params?: Record<string, any>
|
|
868
|
+
): AxiosPromise<Response<T>> {
|
|
869
|
+
return Requests.processRoute(
|
|
870
|
+
CommunitiesRoute.routes.exportNewsletterSubscribers,
|
|
871
|
+
data,
|
|
872
|
+
{ community_id, newsletter_id },
|
|
873
|
+
params
|
|
874
|
+
);
|
|
875
|
+
}
|
|
876
|
+
|
|
877
|
+
/**
|
|
878
|
+
* Import game installs from a game title installations to a newsletter
|
|
879
|
+
*
|
|
880
|
+
* @param community_id The ID of the community.
|
|
881
|
+
* @param newsletter_id The ID of the newsletter.
|
|
882
|
+
* @param data Export options (format: 'csv' or 'xlsx').
|
|
883
|
+
* @returns Promise
|
|
884
|
+
*/
|
|
885
|
+
public static importGameInstalls<T>(
|
|
886
|
+
community_id: string,
|
|
887
|
+
newsletter_id: string,
|
|
888
|
+
data: { format: 'csv' | 'xlsx' },
|
|
889
|
+
params?: Record<string, any>
|
|
890
|
+
): AxiosPromise<Response<T>> {
|
|
891
|
+
return Requests.processRoute(
|
|
892
|
+
CommunitiesRoute.routes.importGameInstalls,
|
|
893
|
+
data,
|
|
894
|
+
{ community_id, newsletter_id },
|
|
895
|
+
params
|
|
896
|
+
);
|
|
897
|
+
}
|
|
876
898
|
|
|
877
899
|
|
|
878
900
|
}
|
|
@@ -63,6 +63,10 @@ class CommunitiesRoute {
|
|
|
63
63
|
url: '/communities/{community_id}/newsletters/{newsletter_id}/subscribers/export',
|
|
64
64
|
method: HTTP_METHODS.POST
|
|
65
65
|
},
|
|
66
|
+
importGameInstalls: {
|
|
67
|
+
url: '/communities/{community_id}/newsletters/{newsletter_id}/import_game_installs',
|
|
68
|
+
method: HTTP_METHODS.POST
|
|
69
|
+
},
|
|
66
70
|
|
|
67
71
|
// Campaigns
|
|
68
72
|
listCampaigns: { url: '/communities/{community_id}/newsletters/{newsletter_id}/campaigns', method: HTTP_METHODS.GET },
|