@live-change/vue3-ssr 0.2.4 → 0.2.5
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/Api.js +4 -3
- package/package.json +3 -2
package/Api.js
CHANGED
|
@@ -102,8 +102,8 @@ class Api extends DaoProxy {
|
|
|
102
102
|
apiInfo = this.prerenderCache.cache.get(cachePath)
|
|
103
103
|
}
|
|
104
104
|
}
|
|
105
|
-
console.trace("GENERATE API SERVICES!")
|
|
106
|
-
console.log("GENERATE SERVICES API", apiInfo)
|
|
105
|
+
//console.trace("GENERATE API SERVICES!")
|
|
106
|
+
//console.log("GENERATE SERVICES API", apiInfo)
|
|
107
107
|
const definitions = apiInfo?.services
|
|
108
108
|
if(JSON.stringify(definitions) == JSON.stringify(api.servicesApiDefinitions)) return
|
|
109
109
|
if(!definitions) throw new Error("API DEFINITIONS NOT FOUND! UNABLE TO GENERATE API!")
|
|
@@ -220,7 +220,8 @@ class Api extends DaoProxy {
|
|
|
220
220
|
|
|
221
221
|
command(method, args = {}) {
|
|
222
222
|
const _commandId = args._commandId || this.uidGenerator()
|
|
223
|
-
console.trace("COMMAND "+_commandId+":"+JSON.stringify(method))
|
|
223
|
+
//console.trace("COMMAND "+_commandId+":"+JSON.stringify(method))
|
|
224
|
+
console.log("COMMAND "+_commandId+":"+JSON.stringify(method)+"("+JSON.stringify(args)+")")
|
|
224
225
|
return this.request(method, { ...args, _commandId })
|
|
225
226
|
}
|
|
226
227
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@live-change/vue3-ssr",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.5",
|
|
4
4
|
"description": "Live Change Framework - vue components",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"scripts": {
|
|
@@ -22,8 +22,9 @@
|
|
|
22
22
|
"homepage": "https://github.com/live-change/live-change-framework-vue3",
|
|
23
23
|
"dependencies": {
|
|
24
24
|
"@live-change/uid": "0.5.20",
|
|
25
|
+
"@vueuse/core": "^8.1.2",
|
|
25
26
|
"debug": "^4.3.2",
|
|
26
27
|
"vue": "^3.2.31"
|
|
27
28
|
},
|
|
28
|
-
"gitHead": "
|
|
29
|
+
"gitHead": "923504c224dd1e3cc5b6bb8296f0963965cd4d10"
|
|
29
30
|
}
|