npm package diff

Package: @forge/manifest

Versions: 8.7.0-next.3 - 8.7.0-next.4

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
@@ -21,8 +21,12 @@
  * Name of the runtime to use for app execution.
  */
 export type Name = 'sandbox' | 'nodejs18.x' | 'nodejs20.x' | 'nodejs22.x';
 /**
+ * Lambda architecture, its value can be either 'x86_64' or 'arm64'. Default value is 'x86_64'.
+ */
+export type Architecture = 'x86_64' | 'arm64';
+/**
  * The required product for cross-product functionality. If not set, app is not a cross-product app.
  */
 export type RequiredProduct = 'confluence' | 'jira' | 'compass';
 /**
@@ -167,8 +171,9 @@
  */
 export interface Runtime {
   snapshots?: Snapshots;
   name: Name;
+  architecture?: Architecture;
 }
 /**
  * Options related to paid app licensing
  */