@uniformdev/next-app-router 20.7.1-alpha.123 → 20.7.1-alpha.136

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.
@@ -1593,6 +1593,9 @@ var CANVAS_PUBLISHED_STATE = 64;
1593
1593
  var CANVAS_EDITOR_STATE = 63;
1594
1594
  var CANVAS_PERSONALIZATION_PARAM = "$pzCrit";
1595
1595
  var CANVAS_TEST_VARIANT_PARAM = "$tstVrnt";
1596
+ var CANVAS_INTERNAL_PARAM_PREFIX = "$internal_";
1597
+ var CANVAS_COMPONENT_DISPLAY_NAME_PARAM = `${CANVAS_INTERNAL_PARAM_PREFIX}displayName`;
1598
+ var CANVAS_HYPOTHESIS_PARAM = `${CANVAS_INTERNAL_PARAM_PREFIX}hypothesis`;
1596
1599
  var IN_CONTEXT_EDITOR_QUERY_STRING_PARAM = "is_incontext_editing_mode";
1597
1600
  var IN_CONTEXT_EDITOR_FORCED_SETTINGS_QUERY_STRING_PARAM = "is_incontext_editing_forced_settings";
1598
1601
  var EDGE_MAX_CACHE_TTL = 24 * 60 * 60;
@@ -2275,19 +2278,19 @@ var buildCompositionTag = (compositionId) => {
2275
2278
  return `composition:${compositionId}`.toLowerCase();
2276
2279
  };
2277
2280
 
2278
- // src/config/helpers.ts
2279
- import serverConfig from "uniform.server.config";
2280
- var getServerConfig = () => {
2281
- return serverConfig;
2282
- };
2283
-
2284
2281
  // src/utils/draft.ts
2285
2282
  var isDraftModeEnabled = ({
2286
2283
  draftModeEnabled
2287
2284
  }) => {
2288
2285
  return draftModeEnabled;
2289
2286
  };
2290
- var isIncontextEditingEnabled = ({ searchParams }) => {
2287
+ var isIncontextEditingEnabled = ({
2288
+ isDraftModeEnabled: isDraftModeEnabled2,
2289
+ searchParams
2290
+ }) => {
2291
+ if (!isDraftModeEnabled2) {
2292
+ return false;
2293
+ }
2291
2294
  const containsKey = searchParams.has(IN_CONTEXT_EDITOR_QUERY_STRING_PARAM);
2292
2295
  return containsKey;
2293
2296
  };
@@ -2296,9 +2299,6 @@ var isDevelopmentEnvironment = () => {
2296
2299
  };
2297
2300
 
2298
2301
  // src/clients/cache.ts
2299
- var isSpecificCacheMode = (options) => {
2300
- return "cache" in options;
2301
- };
2302
2302
  var isStateCacheMode = (options) => {
2303
2303
  return "state" in options;
2304
2304
  };
@@ -2307,25 +2307,20 @@ var isDetectCacheMode = (options) => {
2307
2307
  };
2308
2308
  var resolveManifestCache = (options) => {
2309
2309
  return resolveCache({
2310
- options,
2311
- defaultCache: getServerConfig().manifestCache
2310
+ options
2312
2311
  });
2313
2312
  };
2314
2313
  var resolveCanvasCache = (options) => {
2315
2314
  return resolveCache({
2316
- options,
2317
- defaultCache: getServerConfig().canvasCache
2315
+ options
2318
2316
  });
2319
2317
  };
2320
2318
  var resolveCache = ({
2321
- options,
2322
- defaultCache
2319
+ options
2323
2320
  }) => {
2324
- let cache = defaultCache;
2321
+ let cache = void 0;
2325
2322
  if (options) {
2326
- if (isSpecificCacheMode(options)) {
2327
- cache = options.cache;
2328
- } else if (isStateCacheMode(options)) {
2323
+ if (isStateCacheMode(options)) {
2329
2324
  if (options.state === CANVAS_DRAFT_STATE || options.state === CANVAS_EDITOR_STATE) {
2330
2325
  cache = {
2331
2326
  type: "no-cache",
@@ -2350,7 +2345,10 @@ var shouldCacheBeDisabled = (options) => {
2350
2345
  if (isDraftModeEnabled(options)) {
2351
2346
  return { disabled: true, reason: "DRAFT" };
2352
2347
  }
2353
- if (isIncontextEditingEnabled(options)) {
2348
+ if (isIncontextEditingEnabled({
2349
+ isDraftModeEnabled: options.draftModeEnabled,
2350
+ searchParams: options.searchParams
2351
+ })) {
2354
2352
  return { disabled: true, reason: "INCONTEXT" };
2355
2353
  }
2356
2354
  if (isDevelopmentEnvironment()) {
@@ -2551,10 +2549,47 @@ var getCanvasClient = (options) => {
2551
2549
  });
2552
2550
  };
2553
2551
 
2552
+ // src/config/helpers.ts
2553
+ import config from "@uniformdev/next-app-router/config/resolved";
2554
+ var getServerConfig = () => {
2555
+ return config;
2556
+ };
2557
+ var getDefaultConsent = () => {
2558
+ if (typeof config.defaultConsent === "boolean") {
2559
+ return config.defaultConsent;
2560
+ }
2561
+ return false;
2562
+ };
2563
+ var getQuirkSerialization = () => {
2564
+ if (typeof config.quirkSerialization === "boolean") {
2565
+ return config.quirkSerialization;
2566
+ }
2567
+ return true;
2568
+ };
2569
+ var getMiddlewareRuntimeCache = () => {
2570
+ if (typeof config.middlewareRuntimeCache === "boolean") {
2571
+ return config.middlewareRuntimeCache;
2572
+ }
2573
+ return true;
2574
+ };
2575
+ var getPlaygroundPath = () => {
2576
+ if (typeof config.playgroundPath === "string") {
2577
+ return config.playgroundPath;
2578
+ }
2579
+ return "/uniform/playground";
2580
+ };
2581
+ var getDisableSwrMiddlewareCache = () => {
2582
+ var _a;
2583
+ if (typeof ((_a = config.experimental) == null ? void 0 : _a.disableSwrMiddlewareCache) === "boolean") {
2584
+ return config.experimental.disableSwrMiddlewareCache;
2585
+ }
2586
+ return false;
2587
+ };
2588
+
2554
2589
  // src/data/client.ts
2555
2590
  import { getCache, waitUntil } from "@vercel/functions";
2556
2591
 
2557
- // src/clients/route.ts
2592
+ // src/clients/manifest.ts
2558
2593
  import "server-only";
2559
2594
 
2560
2595
  // src/clients/tags.ts
@@ -2575,7 +2610,47 @@ var generateManifestCacheTags = () => {
2575
2610
  return ["manifest"];
2576
2611
  };
2577
2612
 
2613
+ // src/clients/manifest.ts
2614
+ var getManifestClient = (options) => {
2615
+ const cache = resolveManifestCache(options);
2616
+ const manifestClient = new ManifestClient({
2617
+ apiHost: env.getApiHost(),
2618
+ apiKey: env.getApiKey(),
2619
+ projectId: env.getProjectId(),
2620
+ limitPolicy: createLimitPolicy2({
2621
+ limit: 6
2622
+ }),
2623
+ fetch: (req, init2) => {
2624
+ const { cache: fetchCache, revalidate } = determineFetchCacheOptions(cache);
2625
+ return fetch(req, {
2626
+ ...init2,
2627
+ headers: {
2628
+ ...init2 == null ? void 0 : init2.headers,
2629
+ "x-bypass-cache": typeof cache.bypassCache !== "undefined" ? cache.bypassCache.toString() : "false"
2630
+ },
2631
+ cache: fetchCache,
2632
+ next: {
2633
+ revalidate,
2634
+ tags: generateManifestCacheTags()
2635
+ }
2636
+ });
2637
+ }
2638
+ });
2639
+ return manifestClient;
2640
+ };
2641
+ var getManifest = async (options) => {
2642
+ let preview = false;
2643
+ if (options && isStateCacheMode(options)) {
2644
+ preview = options.state === CANVAS_DRAFT_STATE || options.state === CANVAS_EDITOR_STATE;
2645
+ }
2646
+ const manifestClient = getManifestClient(options);
2647
+ return manifestClient.get({
2648
+ preview
2649
+ });
2650
+ };
2651
+
2578
2652
  // src/clients/route.ts
2653
+ import "server-only";
2579
2654
  var getRouteCacheTags = (requestedUrl) => {
2580
2655
  const tags = ["route"];
2581
2656
  if (requestedUrl) {
@@ -2625,52 +2700,11 @@ var getRouteClient = (options) => {
2625
2700
  return client;
2626
2701
  };
2627
2702
 
2628
- // src/clients/manifest.ts
2629
- import "server-only";
2630
- var getManifestClient = (options) => {
2631
- const cache = resolveManifestCache(options);
2632
- const manifestClient = new ManifestClient({
2633
- apiHost: env.getApiHost(),
2634
- apiKey: env.getApiKey(),
2635
- projectId: env.getProjectId(),
2636
- limitPolicy: createLimitPolicy2({
2637
- limit: 6
2638
- }),
2639
- fetch: (req, init2) => {
2640
- const { cache: fetchCache, revalidate } = determineFetchCacheOptions(cache);
2641
- return fetch(req, {
2642
- ...init2,
2643
- headers: {
2644
- ...init2 == null ? void 0 : init2.headers,
2645
- "x-bypass-cache": typeof cache.bypassCache !== "undefined" ? cache.bypassCache.toString() : "false"
2646
- },
2647
- cache: fetchCache,
2648
- next: {
2649
- revalidate,
2650
- tags: generateManifestCacheTags()
2651
- }
2652
- });
2653
- }
2654
- });
2655
- return manifestClient;
2656
- };
2657
- var getManifest = async (options) => {
2658
- let preview = false;
2659
- if (options && isStateCacheMode(options)) {
2660
- preview = options.state === CANVAS_DRAFT_STATE || options.state === CANVAS_EDITOR_STATE;
2661
- }
2662
- const manifestClient = getManifestClient(options);
2663
- return manifestClient.get({
2664
- preview
2665
- });
2666
- };
2667
-
2668
2703
  // src/data/client.ts
2669
2704
  var MANIFEST_CACHE_KEY = "uniform-manifest";
2670
2705
  var DefaultDataClient = class {
2671
2706
  async getManifest(options) {
2672
- var _a, _b;
2673
- const cache = options.source === "middleware" && ((_b = (_a = getServerConfig().experimental) == null ? void 0 : _a.middlewareRuntimeCache) != null ? _b : false) ? getCache() : null;
2707
+ const cache = options.source === "middleware" && getMiddlewareRuntimeCache() ? getCache() : null;
2674
2708
  if (cache) {
2675
2709
  const cachedManifest = await cache.get(MANIFEST_CACHE_KEY);
2676
2710
  if (cachedManifest) {
@@ -2756,18 +2790,16 @@ var DefaultDataClient = class {
2756
2790
  async enhanceRoute(_options3) {
2757
2791
  }
2758
2792
  async getRouteMiddleware(options) {
2759
- var _a, _b, _c, _d;
2760
2793
  const routeClient = getRouteClient({
2761
2794
  searchParams: options.searchParams,
2762
2795
  draftModeEnabled: options.draftModeEnabled
2763
2796
  });
2764
- const config = getServerConfig();
2765
2797
  const resolvedRoute = await this.getRouteFromApi({
2766
2798
  source: "middleware",
2767
2799
  route: options.route,
2768
2800
  routeClient,
2769
- enableRuntimeCache: options.route.state === CANVAS_PUBLISHED_STATE && ((_b = (_a = config.experimental) == null ? void 0 : _a.middlewareRuntimeCache) != null ? _b : false),
2770
- disableSwrCache: (_d = (_c = config.experimental) == null ? void 0 : _c.disableSwrMiddlewareCache) != null ? _d : false
2801
+ enableRuntimeCache: options.route.state === CANVAS_PUBLISHED_STATE && getMiddlewareRuntimeCache(),
2802
+ disableSwrCache: getDisableSwrMiddlewareCache()
2771
2803
  });
2772
2804
  if (resolvedRoute.type === "composition") {
2773
2805
  await this.enhanceRoute({
@@ -2783,12 +2815,12 @@ var DefaultDataClient = class {
2783
2815
  };
2784
2816
  }
2785
2817
  async getRoutePageState(options) {
2786
- var _a;
2787
2818
  const routeClient = getRouteClient({
2788
- cache: options.pageState.compositionState === CANVAS_PUBLISHED_STATE ? (_a = getServerConfig().canvasCache) != null ? _a : {
2819
+ cache: options.pageState.compositionState === CANVAS_PUBLISHED_STATE ? {
2789
2820
  type: "force-cache"
2790
2821
  } : {
2791
- type: "no-cache"
2822
+ type: "no-cache",
2823
+ bypassCache: true
2792
2824
  }
2793
2825
  });
2794
2826
  const originalRoute = {
@@ -5257,18 +5289,17 @@ var OnDemandContext = class {
5257
5289
  __privateSet(this, _options2, options);
5258
5290
  }
5259
5291
  async getContext() {
5260
- var _a, _b, _c, _d, _e;
5292
+ var _a, _b, _c;
5261
5293
  if (!this._context) {
5262
5294
  const uniformCookie = __privateGet(this, _options2).cookies.get(UNIFORM_DEFAULT_COOKIE_NAME);
5263
5295
  const quirkCookie = __privateGet(this, _options2).cookies.get(UNIFORM_DEFAULT_QUIRK_COOKIE_NAME);
5264
- const serverConfig2 = getServerConfig();
5265
5296
  this._context = new Context({
5266
5297
  manifest: __privateGet(this, _options2).manifest,
5267
- defaultConsent: (_b = (_a = __privateGet(this, _options2).defaultConsent) != null ? _a : serverConfig2.defaultConsent) != null ? _b : false,
5298
+ defaultConsent: (_a = __privateGet(this, _options2).defaultConsent) != null ? _a : getDefaultConsent(),
5268
5299
  transitionStore: new CookieTransitionDataStore({
5269
- serverCookieValue: (_c = uniformCookie == null ? void 0 : uniformCookie.value) != null ? _c : "",
5270
- experimental_quirksEnabled: (_d = serverConfig2.experimental) == null ? void 0 : _d.quirkSerialization,
5271
- quirkCookieValue: (_e = quirkCookie == null ? void 0 : quirkCookie.value) != null ? _e : ""
5300
+ serverCookieValue: (_b = uniformCookie == null ? void 0 : uniformCookie.value) != null ? _b : "",
5301
+ experimental_quirksEnabled: getQuirkSerialization(),
5302
+ quirkCookieValue: (_c = quirkCookie == null ? void 0 : quirkCookie.value) != null ? _c : ""
5272
5303
  })
5273
5304
  });
5274
5305
  }
@@ -5360,6 +5391,7 @@ var determineState = async ({
5360
5391
  draftModeEnabled
5361
5392
  });
5362
5393
  const isCanvasEditing = isIncontextEditingEnabled({
5394
+ isDraftModeEnabled: draftModeEnabled,
5363
5395
  searchParams
5364
5396
  });
5365
5397
  return isDraftMode ? (isCanvasEditing ? [CANVAS_EDITOR_STATE] : []).concat([CANVAS_DRAFT_STATE]) : [CANVAS_PUBLISHED_STATE];
@@ -5422,7 +5454,7 @@ var handlePlaygroundRequest = async ({
5422
5454
  options,
5423
5455
  dataClient
5424
5456
  }) => {
5425
- var _a, _b, _c;
5457
+ var _a, _b;
5426
5458
  const id = request.nextUrl.searchParams.get("id");
5427
5459
  if (!id) {
5428
5460
  return NextResponse.json(
@@ -5462,12 +5494,13 @@ var handlePlaygroundRequest = async ({
5462
5494
  { status: 404 }
5463
5495
  );
5464
5496
  }
5465
- const serverConfig2 = getServerConfig();
5497
+ const serverConfig = getServerConfig();
5498
+ const playgroundPath = getPlaygroundPath();
5466
5499
  const onDemandContext = await createOnDemandContext({
5467
5500
  cookies: request.cookies,
5468
5501
  dataClient,
5469
5502
  defaultConsent: determineDefaultConsent({
5470
- serverConfig: serverConfig2,
5503
+ serverConfig,
5471
5504
  defaultConsent: options.defaultConsent
5472
5505
  })
5473
5506
  });
@@ -5481,7 +5514,7 @@ var handlePlaygroundRequest = async ({
5481
5514
  dynamicInputs: {},
5482
5515
  releaseId: (_a = options.release) == null ? void 0 : _a.id,
5483
5516
  defaultConsent: determineDefaultConsent({
5484
- serverConfig: serverConfig2,
5517
+ serverConfig,
5485
5518
  defaultConsent: options.defaultConsent
5486
5519
  }),
5487
5520
  keys: void 0,
@@ -5498,7 +5531,7 @@ var handlePlaygroundRequest = async ({
5498
5531
  keys: void 0,
5499
5532
  releaseId: (_b = options.release) == null ? void 0 : _b.id,
5500
5533
  defaultConsent: determineDefaultConsent({
5501
- serverConfig: serverConfig2,
5534
+ serverConfig,
5502
5535
  defaultConsent: options.defaultConsent
5503
5536
  }),
5504
5537
  previewMode: determinePreviewMode({
@@ -5514,7 +5547,7 @@ var handlePlaygroundRequest = async ({
5514
5547
  });
5515
5548
  let pathToRewriteTo = await (options.rewriteDestinationPath ? options.rewriteDestinationPath({ code, pageState, source: "playground" }) : void 0);
5516
5549
  if (!pathToRewriteTo) {
5517
- pathToRewriteTo = `${serverConfig2.playgroundPath}${((_c = serverConfig2.playgroundPath) == null ? void 0 : _c.endsWith("/")) ? "" : "/"}${code}`;
5550
+ pathToRewriteTo = `${playgroundPath}${(playgroundPath == null ? void 0 : playgroundPath.endsWith("/")) ? "" : "/"}${code}`;
5518
5551
  }
5519
5552
  return NextResponse.rewrite(new URL(pathToRewriteTo, request.nextUrl.origin));
5520
5553
  };
@@ -5535,7 +5568,7 @@ var handleRouteRequest = async ({
5535
5568
  }))) != null ? _b : {
5536
5569
  path: `${request.nextUrl.pathname}${request.nextUrl.search}`
5537
5570
  };
5538
- const serverConfig2 = getServerConfig();
5571
+ const serverConfig = getServerConfig();
5539
5572
  const [routeResult, onDemandContext] = await Promise.all([
5540
5573
  resolveRoute({
5541
5574
  path: requestPath.path,
@@ -5550,7 +5583,7 @@ var handleRouteRequest = async ({
5550
5583
  cookies: request.cookies,
5551
5584
  dataClient,
5552
5585
  defaultConsent: determineDefaultConsent({
5553
- serverConfig: serverConfig2,
5586
+ serverConfig,
5554
5587
  defaultConsent: options.defaultConsent
5555
5588
  })
5556
5589
  })
@@ -5600,7 +5633,7 @@ var handleRouteRequest = async ({
5600
5633
  dynamicInputs: (_f = route.dynamicInputs) != null ? _f : {},
5601
5634
  releaseId: (_g = options.release) == null ? void 0 : _g.id,
5602
5635
  defaultConsent: determineDefaultConsent({
5603
- serverConfig: serverConfig2,
5636
+ serverConfig,
5604
5637
  defaultConsent: options.defaultConsent
5605
5638
  }),
5606
5639
  keys: requestPath.keys,
@@ -5617,7 +5650,7 @@ var handleRouteRequest = async ({
5617
5650
  keys: requestPath.keys,
5618
5651
  releaseId: (_h = options.release) == null ? void 0 : _h.id,
5619
5652
  defaultConsent: determineDefaultConsent({
5620
- serverConfig: serverConfig2,
5653
+ serverConfig,
5621
5654
  defaultConsent: options.defaultConsent
5622
5655
  }),
5623
5656
  previewMode,
@@ -5716,8 +5749,8 @@ var buildRoutePath = ({
5716
5749
  }
5717
5750
  return ((_b2 = (_a2 = node.locales) == null ? void 0 : _a2[locale]) == null ? void 0 : _b2.path) === route.matchedRoute;
5718
5751
  });
5752
+ const searchParams = new URLSearchParams();
5719
5753
  if ((_c = projectMapNode == null ? void 0 : projectMapNode.data) == null ? void 0 : _c.queryStrings) {
5720
- const searchParams = new URLSearchParams();
5721
5754
  if (search) {
5722
5755
  const existingSearchParams = new URLSearchParams(search);
5723
5756
  for (const [key, value] of existingSearchParams.entries()) {
@@ -5730,17 +5763,20 @@ var buildRoutePath = ({
5730
5763
  searchParams.set(qs.name, qsValue != null ? qsValue : "");
5731
5764
  }
5732
5765
  }
5733
- if (searchParams.size) {
5734
- return `${routePath}?${searchParams.toString()}`;
5735
- }
5766
+ }
5767
+ if (process.env.NODE_ENV === "development") {
5768
+ searchParams.set("cache", (/* @__PURE__ */ new Date()).valueOf().toString());
5769
+ }
5770
+ if (searchParams.size) {
5771
+ return `${routePath}?${searchParams.toString()}`;
5736
5772
  }
5737
5773
  return routePath;
5738
5774
  };
5739
5775
  var determineDefaultConsent = ({
5740
- serverConfig: serverConfig2,
5776
+ serverConfig,
5741
5777
  defaultConsent
5742
5778
  }) => {
5743
- return defaultConsent !== serverConfig2.defaultConsent ? defaultConsent : void 0;
5779
+ return defaultConsent !== serverConfig.defaultConsent ? defaultConsent : void 0;
5744
5780
  };
5745
5781
  var determinePreviewMode = ({
5746
5782
  searchParams,
@@ -5760,7 +5796,7 @@ var determinePreviewMode = ({
5760
5796
  if (previewSettings == null ? void 0 : previewSettings.isVisualEditingDisabled) {
5761
5797
  return "preview";
5762
5798
  }
5763
- const isInContextEditingEnabled = isIncontextEditingEnabled({ searchParams });
5799
+ const isInContextEditingEnabled = isIncontextEditingEnabled({ isDraftModeEnabled: isDraftModeEnabled2, searchParams });
5764
5800
  if (isInContextEditingEnabled) {
5765
5801
  return "editor";
5766
5802
  }
package/package.json CHANGED
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "@uniformdev/next-app-router",
3
- "version": "20.7.1-alpha.123+2f94c7c7d8",
3
+ "version": "20.7.1-alpha.136+b24fc21071",
4
4
  "license": "SEE LICENSE IN LICENSE.txt",
5
5
  "scripts": {
6
6
  "build": "tsup",
7
7
  "dev": "tsup --watch",
8
8
  "lint": "eslint \"src/**/*.{ts,tsx}\" --fix",
9
- "test": "jest --maxWorkers=1 --passWithNoTests"
9
+ "test": "vitest"
10
10
  },
11
11
  "sideEffects": false,
12
12
  "main": "dist/index.js",
@@ -46,6 +46,11 @@
46
46
  "types": "./dist/cache.d.ts",
47
47
  "require": "./dist/cache.js",
48
48
  "import": "./dist/cache.mjs"
49
+ },
50
+ "./config/resolved": {
51
+ "types": "./dist/config/default.d.ts",
52
+ "require": "./dist/config/default.js",
53
+ "import": "./dist/config/default.mjs"
49
54
  }
50
55
  },
51
56
  "typesVersions": {
@@ -70,6 +75,12 @@
70
75
  ],
71
76
  "cache": [
72
77
  "./dist/cache.d.ts"
78
+ ],
79
+ "config/default": [
80
+ "./dist/config/default.d.ts"
81
+ ],
82
+ "config/resolved": [
83
+ "./dist/config/default.d.ts"
73
84
  ]
74
85
  }
75
86
  },
@@ -83,15 +94,17 @@
83
94
  "next": "16.0.7",
84
95
  "react": "19.2.0",
85
96
  "react-dom": "19.2.0",
86
- "typescript": "5.9.2"
97
+ "typescript": "5.9.2",
98
+ "vite-tsconfig-paths": "^5.1.4",
99
+ "vitest": "3.2.4"
87
100
  },
88
101
  "dependencies": {
89
- "@uniformdev/canvas-react": "20.7.1-alpha.123+2f94c7c7d8",
90
- "@uniformdev/next-app-router-client": "20.7.1-alpha.123+2f94c7c7d8",
91
- "@uniformdev/next-app-router-shared": "20.7.1-alpha.123+2f94c7c7d8",
92
- "@uniformdev/redirect": "20.7.1-alpha.123+2f94c7c7d8",
93
- "@uniformdev/richtext": "20.7.1-alpha.123+2f94c7c7d8",
94
- "@uniformdev/webhooks": "20.7.1-alpha.123+2f94c7c7d8",
102
+ "@uniformdev/canvas-react": "20.7.1-alpha.136+b24fc21071",
103
+ "@uniformdev/next-app-router-client": "20.7.1-alpha.136+b24fc21071",
104
+ "@uniformdev/next-app-router-shared": "20.7.1-alpha.136+b24fc21071",
105
+ "@uniformdev/redirect": "20.7.1-alpha.136+b24fc21071",
106
+ "@uniformdev/richtext": "20.7.1-alpha.136+b24fc21071",
107
+ "@uniformdev/webhooks": "20.7.1-alpha.136+b24fc21071",
95
108
  "@vercel/functions": "^2.2.2",
96
109
  "encoding": "^0.1.13",
97
110
  "server-only": "^0.0.1",
@@ -108,5 +121,5 @@
108
121
  "publishConfig": {
109
122
  "access": "public"
110
123
  },
111
- "gitHead": "2f94c7c7d825e4d5fb92122c706fb4efa4922993"
124
+ "gitHead": "b24fc21071984f3e41cf7d2e46345c122182a185"
112
125
  }