eddev 2.0.0-beta.232 → 2.0.0-beta.233

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.
@@ -74,7 +74,7 @@ export function createVinxiApp(args) {
74
74
  varies: ["Authorization", "woocommerce-session"],
75
75
  },
76
76
  },
77
- "/_data/query2/**": {
77
+ "/_data/2query/**": {
78
78
  isr: {
79
79
  expiration: cacheConfig.queryHooksTTL ?? 0,
80
80
  allowQuery: ["params"],
@@ -85,7 +85,7 @@ export function createVinxiApp(args) {
85
85
  varies: ["Authorization", "woocommerce-session"],
86
86
  },
87
87
  },
88
- "/_data/query3/**": {
88
+ "/_data/3query/**": {
89
89
  isr: {
90
90
  expiration: cacheConfig.queryHooksTTL ?? 0,
91
91
  allowQuery: ["params"],
@@ -290,7 +290,7 @@ export function createVinxiCodegen(opts) {
290
290
  }),
291
291
  )
292
292
  .get(
293
- "/_data/query2/**:name",
293
+ "/_data/2query/**:name",
294
294
  eventHandler(async (event) => {
295
295
  const id = "/" + getRouterParam(event, "name")
296
296
  const url = getRequestURL(event)
@@ -311,7 +311,7 @@ export function createVinxiCodegen(opts) {
311
311
  }),
312
312
  )
313
313
  .get(
314
- "/_data/query3/**:name",
314
+ "/_data/3query/**:name",
315
315
  eventHandler(async (event) => {
316
316
  const id = "/" + getRouterParam(event, "name")
317
317
  const url = getRequestURL(event)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eddev",
3
- "version": "2.0.0-beta.232",
3
+ "version": "2.0.0-beta.233",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "type": "module",