npm package diff

Package: @forge/manifest

Versions: 7.10.0-next.2 - 7.10.0-next.3

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
@@ -25131,8 +25131,32 @@
                                                 "avatarUrl": {
                                                     "type": "string"
                                                 }
                                             }
+                                        },
+                                        "queryParameters": {
+                                            "type": "object",
+                                            "description": "Additional GET query parameters sent to the API",
+                                            "additionalProperties": false,
+                                            "patternProperties": {
+                                                "^[a-zA-Z0-9_-]+$": {
+                                                    "type": "string"
+                                                }
+                                            }
+                                        },
+                                        "oidc": {
+                                            "type": "object",
+                                            "description": "Configuration for the use of OpenID Connect ID tokens by the profile retriever",
+                                            "additionalProperties": false,
+                                            "properties": {
+                                                "mode": {
+                                                    "type": "string",
+                                                    "description": "When using the 'fallback' value, the ID token will be used to populate profile information only if the profile data cannot be fetched from the profile API",
+                                                    "enum": [
+                                                        "fallback"
+                                                    ]
+                                                }
+                                            }
                                         }
                                     }
                                 }
                             ]
@@ -25140,8 +25164,34 @@
                     }
                 }
             }
         },
+        "ActionOverridesDefinition": {
+            "type": "object",
+            "additionalProperties": false,
+            "properties": {
+                "headers": {
+                    "type": "object",
+                    "description": "The exact headers to be sent in the request",
+                    "additionalProperties": false,
+                    "patternProperties": {
+                        "^[a-zA-Z0-9_-]+$": {
+                            "type": "string"
+                        }
+                    }
+                },
+                "body": {
+                    "type": "object",
+                    "description": "The exact body to be sent in the request",
+                    "additionalProperties": false,
+                    "patternProperties": {
+                        "^[a-zA-Z0-9_-]+$": {
+                            "type": "string"
+                        }
+                    }
+                }
+            }
+        },
         "AuthorizeActionDefinition": {
             "type": "object",
             "required": [
                 "remote",
@@ -25205,8 +25255,16 @@
                             "default": "refresh_token",
                             "maxlength": 1000
                         }
                     }
+                },
+                "useBasicAuth": {
+                    "type": "boolean",
+                    "description": "An optional flag that indicates HTTP basic authentication should be used for the exchange request"
+                },
+                "overrides": {
+                    "$ref": "#/definitions/ActionOverridesDefinition",
+                    "description": "Custom overrides for the request"
                 }
             }
         },
         "ActionDefinition": {
@@ -25232,8 +25290,12 @@
                         "^[a-zA-Z0-9_-]+$": {
                             "type": "string"
                         }
                     }
+                },
+                "overrides": {
+                    "$ref": "#/definitions/ActionOverridesDefinition",
+                    "description": "Custom overrides for the request"
                 }
             }
         },
         "Array": {