npm package diff
Package: @forge/manifest
Versions: 9.2.0-next.1 - 9.2.0-next.2
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
@@ -162,8 +162,12 @@
export type ResponseOptions = {
[k: string]: unknown;
};
export type Queue = string;
+/**
+ * Enables consumption of events originating from previous app versions.
+ */
+export type CrossVersion = boolean;
export type Foo = string;
/**
* The key of the function that should be invoked for this scheduledTrigger.
*/
@@ -1034,16 +1038,18 @@
resolver: {
function: string;
method: string;
};
+ crossVersion?: CrossVersion;
key: ModuleKeySchema;
},
...{
queue: Queue;
resolver: {
function: string;
method: string;
};
+ crossVersion?: CrossVersion;
key: ModuleKeySchema;
}[]
];
scheduledTrigger?: [