npm package diff
Package: @forge/manifest
Versions: 11.0.0-next.0 - 11.0.0-next.1
File: package/out/types/validation-types.d.ts
Index: package/out/types/validation-types.d.ts
===================================================================
--- package/out/types/validation-types.d.ts
+++ package/out/types/validation-types.d.ts
@@ -1,9 +1,16 @@
+import { RequiredScopes } from '../scopes';
 export declare enum ValidationTypes {
     BASIC = "basic",
     FULL = "full",
     PRODUCT_TRIGGER = "product-trigger",
     DEPRECATED_CSP_METHOD = "deprecated-csp-method",
     FORGE_REMOTE_COMPUTE = "forge-remote-compute",
     DEPRECATED_EGRESS_PERMISSIONS = "deprecated-egress-permissions"
 }
+export interface TriggerScopeValidationResult {
+    valid: boolean;
+    event: string;
+    missingScopes: string[];
+    requiredScopes: RequiredScopes | null;
+}
 //# sourceMappingURL=validation-types.d.ts.map
\ No newline at end of file