2024-07-13 11:05:20 +00:00
|
|
|
import type { Collections } from "./constants";
|
2024-07-13 08:55:10 +00:00
|
|
|
|
|
|
|
export type AfterOperationWebHookMessage = {
|
2024-07-14 07:07:12 +00:00
|
|
|
collection: Collections;
|
|
|
|
id?: string;
|
|
|
|
addedDependantIds: string[];
|
|
|
|
urls: string[];
|
|
|
|
};
|