skapi-js 1.0.141 → 1.0.142

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
@@ -25,7 +25,7 @@ export default class Skapi {
25
25
  set user(value) {
26
26
  }
27
27
  constructor(service, owner, options, __etc) {
28
- this.version = '1.0.141';
28
+ this.version = '1.0.142';
29
29
  this.session = null;
30
30
  this.connection = null;
31
31
  this.host = 'skapi';
@@ -79,7 +79,7 @@ export async function sendInquiry(data) {
79
79
  'subject',
80
80
  'message'
81
81
  ]);
82
- await request.bind(this)('send-inquery', data);
82
+ await request.bind(this)('send-inquiry', data);
83
83
  return 'SUCCESS: Inquiry has been sent.';
84
84
  }
85
85
  export async function secureRequest(params) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "skapi-js",
3
- "version": "1.0.141",
3
+ "version": "1.0.142",
4
4
  "description": "Skapi: Backend API for HTML frontend.",
5
5
  "main": "dist/skapi.module.js",
6
6
  "types": "js/Main.d.ts",