npm package diff
Package: @forge/manifest
Versions: 7.10.0-next.2 - 7.10.0-next.3
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
@@ -60027,8 +60027,37 @@
* Path to the 'refresh token' parameter within the JSON response from the auhuorization API (full stop separated for nested parameters)
*/
refreshToken?: string;
};
+ /**
+ * An optional flag that indicates HTTP basic authentication should be used for the exchange request
+ */
+ useBasicAuth?: boolean;
+ /**
+ * Custom overrides for the request
+ */
+ overrides?: {
+ /**
+ * The exact headers to be sent in the request
+ */
+ headers?: {
+ /**
+ * This interface was referenced by `undefined`'s JSON-Schema definition
+ * via the `patternProperty` "^[a-zA-Z0-9_-]+$".
+ */
+ [k: string]: string;
+ };
+ /**
+ * The exact body to be sent in the request
+ */
+ body?: {
+ /**
+ * This interface was referenced by `undefined`'s JSON-Schema definition
+ * via the `patternProperty` "^[a-zA-Z0-9_-]+$".
+ */
+ [k: string]: string;
+ };
+ };
}
export interface ActionDefinition {
remote: ModuleKeySchema;
path: string;
@@ -60041,8 +60070,33 @@
* via the `patternProperty` "^[a-zA-Z0-9_-]+$".
*/
[k: string]: string;
};
+ /**
+ * Custom overrides for the request
+ */
+ overrides?: {
+ /**
+ * The exact headers to be sent in the request
+ */
+ headers?: {
+ /**
+ * This interface was referenced by `undefined`'s JSON-Schema definition
+ * via the `patternProperty` "^[a-zA-Z0-9_-]+$".
+ */
+ [k: string]: string;
+ };
+ /**
+ * The exact body to be sent in the request
+ */
+ body?: {
+ /**
+ * This interface was referenced by `undefined`'s JSON-Schema definition
+ * via the `patternProperty` "^[a-zA-Z0-9_-]+$".
+ */
+ [k: string]: string;
+ };
+ };
}
/**
* Use a Forge function to map the fields to profile information
*/
@@ -60061,8 +60115,27 @@
id: string;
displayName: string;
avatarUrl?: string;
};
+ /**
+ * Additional GET query parameters sent to the API
+ */
+ queryParameters?: {
+ /**
+ * This interface was referenced by `undefined`'s JSON-Schema definition
+ * via the `patternProperty` "^[a-zA-Z0-9_-]+$".
+ */
+ [k: string]: string;
+ };
+ /**
+ * Configuration for the use of OpenID Connect ID tokens by the profile retriever
+ */
+ oidc?: {
+ /**
+ * 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
+ */
+ mode?: 'fallback';
+ };
}
export interface AuthProviderPredefined {
key: ModuleKeySchema;
/**