@live-change/vue-api 0.9.85 → 0.9.87

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.
Files changed (2) hide show
  1. package/lib/Api.js +1 -1
  2. package/package.json +4 -4
package/lib/Api.js CHANGED
@@ -81,7 +81,7 @@ class Api extends DaoProxy {
81
81
  const software = this.softwareVersion
82
82
  const api = this.apiVersion
83
83
  if(!api) return
84
- if(!software) return
84
+ if(!software || software === 'unknown') return false
85
85
  return api != software
86
86
  },
87
87
  client() {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@live-change/vue-api",
3
- "version": "0.9.85",
3
+ "version": "0.9.87",
4
4
  "description": "Live Change Framework - vue api base",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -21,9 +21,9 @@
21
21
  },
22
22
  "homepage": "https://github.com/live-change/live-change-stack",
23
23
  "dependencies": {
24
- "@live-change/dao": "^0.9.85",
25
- "@live-change/uid": "^0.9.85",
24
+ "@live-change/dao": "^0.9.87",
25
+ "@live-change/uid": "^0.9.87",
26
26
  "debug": "^4.3.4"
27
27
  },
28
- "gitHead": "126afb0aad3ab6e03aa5742726f429c95c46783a"
28
+ "gitHead": "7a7694ad2801b7ffa16f347aed441ca5f81ab5fd"
29
29
  }