npm package diff

Package: @forge/manifest

Versions: 7.9.0-next.3 - 7.9.0-next.4

File: package/out/schema/manifest.d.ts

Index: package/out/schema/manifest.d.ts
===================================================================
--- package/out/schema/manifest.d.ts
+++ package/out/schema/manifest.d.ts
@@ -59559,9 +59559,17 @@
   /**
    * A key for the remote, which other modules can refer to. Must be unique within the manifest and have a maximum of 23 characters.
    */
   key: string;
-  baseUrl: string;
+  baseUrl:
+    | string
+    | {
+        /**
+         * This interface was referenced by `undefined`'s JSON-Schema definition
+         * via the `patternProperty` ".+".
+         */
+        [k: string]: string;
+      };
   /**
    * The type of operations done in the remote
    */
   operations?: ['storage' | 'other' | 'compute' | 'fetch', ...('storage' | 'other' | 'compute' | 'fetch')[]];