npm package diff

Package: @forge/manifest

Versions: 9.0.0-next.13-experimental-1aaebb0 - 9.0.0-next.14

File: package/out/schema/basic-manifest.d.ts

Index: package/out/schema/basic-manifest.d.ts
===================================================================
--- package/out/schema/basic-manifest.d.ts
+++ package/out/schema/basic-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;
 /**
@@ -100,8 +104,9 @@
   id: Id;
   runtime: Runtime;
   requiredProduct?: RequiredProduct;
   contexts?: Contexts;
+  access?: Access;
   licensing?: Licensing;
   features?: Features;
   connect?: Connect;
   /**
@@ -217,8 +222,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;