npm package diff
Package: @forge/manifest
Versions: 9.0.0-next.13-experimental-1aaebb0 - 9.0.0-next.14
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
@@ -70,8 +70,12 @@
required: true;
};
};
/**
+ * Whether to enable user access control for this app. Default value of false.
+ */
+export type UserAccess = boolean;
+/**
* Whether to enable paid app licensing for production installations of this app. Default value of false.
*/
export type Enabled = boolean;
/**
@@ -754,8 +758,9 @@
id: Id;
runtime: Runtime;
requiredProduct?: RequiredProduct;
contexts?: Contexts;
+ access?: Access;
licensing?: Licensing;
features?: Features;
connect?: Connect;
/**
@@ -871,8 +876,14 @@
architecture?: Architecture;
memoryMB?: MemoryMB;
}
/**
+ * Options related to app access control
+ */
+export interface Access {
+ userAccess: UserAccess;
+}
+/**
* Options related to paid app licensing
*/
export interface Licensing {
enabled: Enabled;