mongodb-stitch
Advanced tools
Comparing version 3.2.1 to 3.2.2
@@ -503,4 +503,4 @@ 'use strict'; | ||
}, | ||
resume: function resume() { | ||
return api._put(appUrl + '/event_subscriptions/' + eventSubscriptionId + '/resume'); | ||
resume: function resume(data) { | ||
return api._put(appUrl + '/event_subscriptions/' + eventSubscriptionId + '/resume', data); | ||
} | ||
@@ -507,0 +507,0 @@ }; |
@@ -17,4 +17,4 @@ 'use strict'; | ||
var version = 'unknown'; | ||
if (typeof "3.2.1" !== 'undefined') { | ||
version = "3.2.1"; | ||
if (typeof "3.2.2" !== 'undefined') { | ||
version = "3.2.2"; | ||
} | ||
@@ -21,0 +21,0 @@ var SDK_VERSION = exports.SDK_VERSION = version; |
{ | ||
"name": "mongodb-stitch", | ||
"version": "3.2.1", | ||
"version": "3.2.2", | ||
"description": "", | ||
@@ -5,0 +5,0 @@ "author": "", |
@@ -288,3 +288,3 @@ /* global window, fetch */ | ||
remove: () => api._delete(`${appUrl}/event_subscriptions/${eventSubscriptionId}`), | ||
resume: () => api._put(`${appUrl}/event_subscriptions/${eventSubscriptionId}/resume`) | ||
resume: (data) => api._put(`${appUrl}/event_subscriptions/${eventSubscriptionId}/resume`, data) | ||
}) | ||
@@ -291,0 +291,0 @@ }) |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
6218024