skapi-js 1.0.23 → 1.0.24

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/js/main/skapi.js CHANGED
@@ -23,7 +23,7 @@ export default class Skapi {
23
23
  set user(value) {
24
24
  }
25
25
  constructor(service, owner, options, __etc) {
26
- this.version = '1.0.23';
26
+ this.version = '1.0.24';
27
27
  this.session = null;
28
28
  this.connection = null;
29
29
  this.host = 'skapi';
@@ -319,6 +319,15 @@ export default class Skapi {
319
319
  return subscribeNewsletter.bind(this)(form);
320
320
  }
321
321
  }
322
+ __decorate([
323
+ formHandler()
324
+ ], Skapi.prototype, "consumeTicket", null);
325
+ __decorate([
326
+ formHandler()
327
+ ], Skapi.prototype, "releaseTicket", null);
328
+ __decorate([
329
+ formHandler()
330
+ ], Skapi.prototype, "getTicketKey", null);
322
331
  __decorate([
323
332
  formHandler()
324
333
  ], Skapi.prototype, "getRealtimeUsers", null);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "skapi-js",
3
- "version": "1.0.23",
3
+ "version": "1.0.24",
4
4
  "description": "Skapi: JS Backend API with no deployment required.",
5
5
  "main": "./dist/skapi.module.js",
6
6
  "types": "./js/Main.d.ts",