@humandialog/forms.svelte 1.6.4 → 1.6.6
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/kicks.js +2 -5
- package/package.json +2 -2
package/kicks.js
CHANGED
|
@@ -104,15 +104,12 @@ function checkKicks(informObservers=true)
|
|
|
104
104
|
console.log(s.isActive, appId, tid)
|
|
105
105
|
if(s.isActive && appId && tid)
|
|
106
106
|
{
|
|
107
|
-
reef.
|
|
107
|
+
const cloudAddr = reef.get_general_cloud_address()
|
|
108
|
+
reef.fetch(`${cloudAddr}/dev/kicks?app_id=${appId}&tenant_id=${encodeURIComponent(tid)}&last_check=${lastCheckAt}`).then(res => {
|
|
108
109
|
if(res.ok)
|
|
109
110
|
{
|
|
110
111
|
res.json().then( result =>
|
|
111
112
|
{
|
|
112
|
-
// todo
|
|
113
|
-
//console.log('kicks:', result)
|
|
114
|
-
|
|
115
|
-
|
|
116
113
|
let changedLabels = []
|
|
117
114
|
result.allKicks.forEach(current => {
|
|
118
115
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@humandialog/forms.svelte",
|
|
3
|
-
"version": "1.6.
|
|
3
|
+
"version": "1.6.6",
|
|
4
4
|
"description": "Basic Svelte UI components for Object Reef applications",
|
|
5
5
|
"devDependencies": {
|
|
6
6
|
"@playwright/test": "^1.28.1",
|
|
@@ -27,7 +27,7 @@
|
|
|
27
27
|
},
|
|
28
28
|
"type": "module",
|
|
29
29
|
"dependencies": {
|
|
30
|
-
"@humandialog/auth.svelte": "^1.8.
|
|
30
|
+
"@humandialog/auth.svelte": "^1.8.16",
|
|
31
31
|
"@tiptap/core": "^2.11.0",
|
|
32
32
|
"@tiptap/extension-bullet-list": "^2.11.5",
|
|
33
33
|
"@tiptap/extension-code-block": "^2.11.5",
|