backendless 7.2.2 → 7.2.4

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/src/urls.js CHANGED
@@ -219,6 +219,14 @@ export default class Urls {
219
219
  return `${this.messaging()}/${channel}`
220
220
  }
221
221
 
222
+ messagingChannels() {
223
+ return `${this.messaging()}/channels`
224
+ }
225
+
226
+ messagingChannelName(channelName) {
227
+ return `${this.messagingChannels()}/${channelName}`
228
+ }
229
+
222
230
  messagingMessage(messageId) {
223
231
  return `${this.messaging()}/${messageId}`
224
232
  }