skapi-js 1.0.222 → 1.0.223

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/Types.d.ts CHANGED
@@ -215,6 +215,7 @@ export type PublicUser = {
215
215
  user_id: string;
216
216
  locale: string;
217
217
  subscribers?: number;
218
+ subscribed?: number;
218
219
  records?: number;
219
220
  timestamp: number;
220
221
  } & UserAttributes;
package/js/main/skapi.js CHANGED
@@ -45,7 +45,7 @@ export default class Skapi {
45
45
  }
46
46
  }
47
47
  constructor(service, owner, options, __etc) {
48
- this.__version = '1.0.222';
48
+ this.__version = '1.0.223';
49
49
  this.session = null;
50
50
  this.connection = null;
51
51
  this.__iPosted = {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "skapi-js",
3
- "version": "1.0.222",
3
+ "version": "1.0.223",
4
4
  "description": "Serverless Backend API for HTML frontend.",
5
5
  "main": "js/Main.js",
6
6
  "browser": "dist/skapi.js",