@forge/events
2.1.72.1.7-experimental-04cc2b9
out/appEvents.d.ts~
out/appEvents.d.tsModified+3−3
Index: package/out/appEvents.d.ts
===================================================================
--- package/out/appEvents.d.ts
+++ package/out/appEvents.d.ts
@@ -1,9 +1,9 @@
export interface AppEvent {
key: string;
}
-export declare type AppEventPublishResult = AppEventPublishSuccess | AppEventPublishError;
-export declare type AppEventPublishSuccess = {
+export type AppEventPublishResult = AppEventPublishSuccess | AppEventPublishError;
+export type AppEventPublishSuccess = {
type: 'success';
failedEvents: AppEventPublishFailure[];
};
export interface AppEventPublishFailure {
@@ -14,9 +14,9 @@
type: 'error';
errorType: AppEventErrorType;
errorMessage: string;
}
-export declare type AppEventErrorType = 'VALIDATION_ERROR' | 'AUTHENTICATION_ERROR' | 'AUTHORIZATION_ERROR' | 'RATE_LIMIT' | 'SERVICE_ERROR' | 'SERVICE_UNAVAILABLE' | `OTHER`;
+export type AppEventErrorType = 'VALIDATION_ERROR' | 'AUTHENTICATION_ERROR' | 'AUTHORIZATION_ERROR' | 'RATE_LIMIT' | 'SERVICE_ERROR' | 'SERVICE_UNAVAILABLE' | `OTHER`;
export declare const appEvents: {
publish(events: AppEvent | AppEvent[]): Promise<AppEventPublishResult>;
};
//# sourceMappingURL=appEvents.d.ts.map
\ No newline at end of file