/** * #triggers.ts * * Code generated by ts-proto. DO NOT EDIT. * @packageDocumentation */ import type { TriggerEvent } from "../../triggers/v1alpha/triggers.js"; export declare enum Source { SNOORON_WORKER_DEVVIT = 0, EVALUATOR = 1, UNRECOGNIZED = -1 } export type TriggerResponse = { /** total number of apps invoked */ total: number; /** successful installation ids */ success: string[]; /** map of installation ids to error message */ errors: { [key: string]: string; }; }; export type TriggerResponse_ErrorsEntry = { key: string; value: string; }; export type TriggerFanOutResponse = { /** installation id of apps to invoke */ installationIds: string[]; }; export type TriggerInvocation = { installationId: string; evt?: TriggerEvent | undefined; source: Source; }; //# sourceMappingURL=triggers.d.ts.map