@forge/lint
5.15.0-next.85.15.0-next.9
out/lint/linters/permission-linter/api-call-interface.d.ts~
out/lint/linters/permission-linter/api-call-interface.d.tsModified+6−2
Index: package/out/lint/linters/permission-linter/api-call-interface.d.ts
===================================================================
--- package/out/lint/linters/permission-linter/api-call-interface.d.ts
+++ package/out/lint/linters/permission-linter/api-call-interface.d.ts
@@ -4,9 +4,10 @@
'HOOK' = 1,
'STORAGE' = 2,
'EXTERNAL' = 3,
'CONTENT_PROPERTY' = 4,
- 'IMAGE' = 5
+ 'IMAGE' = 5,
+ 'NOTIFICATION' = 6
}
export declare type ProductName = 'jira' | 'confluence' | 'bitbucket';
export interface ProductApiCall extends LintCriteriaMatch {
type: ApiCallTypes.PRODUCT;
@@ -34,6 +35,9 @@
type: ApiCallTypes.CONTENT_PROPERTY;
context: string;
method: string;
}
-export declare type ApiCall = ProductApiCall | UIHookApiCall | StorageApiCall | ExternalApiCall | ImageUrl | ContentPropertyApiCall;
+export interface NotificationApiCall extends LintCriteriaMatch {
+ type: ApiCallTypes.NOTIFICATION;
+}
+export declare type ApiCall = ProductApiCall | UIHookApiCall | StorageApiCall | ExternalApiCall | ImageUrl | ContentPropertyApiCall | NotificationApiCall;
//# sourceMappingURL=api-call-interface.d.ts.map
\ No newline at end of file