npm package diff
Package: @forge/manifest
Versions: 9.3.0-next.3 - 9.3.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
@@ -674,9 +674,18 @@
/**
* The key of the function that should be invoked on each schedule.
*/
export type Function7 = string;
-export type Scopes = string[];
+export type Scopes =
+ | string[]
+ | {
+ [k: string]: {
+ /**
+ * This scope property is not yet supported
+ */
+ allowImpersonation?: boolean;
+ };
+ };
export type Scripts = string[];
export type Styles = 'unsafe-inline'[];
export type Backend = (string | EgressPermission | Remote)[];
export type Client = (string | EgressPermission | Remote1)[];