npm package diff

Package: @forge/manifest

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

File: package/out/schema/manifest-schema.json

Index: package/out/schema/manifest-schema.json
===================================================================
--- package/out/schema/manifest-schema.json
+++ package/out/schema/manifest-schema.json
@@ -23822,9 +23822,41 @@
                         "pattern": "^[a-zA-Z0-9_-]+$",
                         "maxLength": 23
                     },
                     "baseUrl": {
-                        "type": "string"
+                        "oneOf": [
+                            {
+                                "type": "string"
+                            },
+                            {
+                                "type": "object",
+                                "propertyNames": {
+                                    "enum": [
+                                        "EU",
+                                        "US",
+                                        "AU",
+                                        "DE",
+                                        "SG",
+                                        "CA",
+                                        "IN",
+                                        "KR",
+                                        "JP",
+                                        "GB",
+                                        "CH",
+                                        "default"
+                                    ]
+                                },
+                                "patternProperties": {
+                                    ".+": {
+                                        "type": "string",
+                                        "minLength": 1
+                                    }
+                                },
+                                "required": [
+                                    "default"
+                                ]
+                            }
+                        ]
                     },
                     "operations": {
                         "description": "The type of operations done in the remote",
                         "type": "array",