impaktapps-ui-builder 0.0.412-h → 0.0.412-hi
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/package.json
CHANGED
|
@@ -103,6 +103,8 @@ export default (funcParams: funcParamsProps) => {
|
|
|
103
103
|
store: funcParams.store, dynamicData: funcParams.dynamicData, userValue: funcParams.userValue, service: funcParams.service,
|
|
104
104
|
serviceHolder: this, eventGroups
|
|
105
105
|
})
|
|
106
|
+
const jsonres = await fetch('https://jsonplaceholder.typicode.com/todos/1');
|
|
107
|
+
const result = await jsonres.json()
|
|
106
108
|
funcParams.store.setSchema(
|
|
107
109
|
(pre: any) => {
|
|
108
110
|
return {
|