create-foldkit-app 0.14.0 → 0.15.0
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/dist/examples.js +6 -0
- package/package.json +1 -1
package/dist/examples.js
CHANGED
|
@@ -7,6 +7,7 @@ export const EXAMPLE_VALUES = [
|
|
|
7
7
|
'form',
|
|
8
8
|
'job-application',
|
|
9
9
|
'weather',
|
|
10
|
+
'api-cache',
|
|
10
11
|
'routing',
|
|
11
12
|
'query-sync',
|
|
12
13
|
'snake',
|
|
@@ -62,6 +63,11 @@ export const examples = [
|
|
|
62
63
|
title: 'weather',
|
|
63
64
|
description: 'HTTP requests with async state handling',
|
|
64
65
|
},
|
|
66
|
+
{
|
|
67
|
+
value: 'api-cache',
|
|
68
|
+
title: 'api-cache',
|
|
69
|
+
description: 'Query caching in the Model with stale-while-revalidate, request deduplication, invalidation, and interval refetching',
|
|
70
|
+
},
|
|
65
71
|
{
|
|
66
72
|
value: 'routing',
|
|
67
73
|
title: 'routing',
|