mirror of
https://github.com/colanode/colanode.git
synced 2025-12-16 19:57:46 +01:00
21 lines
410 B
TypeScript
21 lines
410 B
TypeScript
export type ViewNameUpdateMutationInput = {
|
|
type: 'view.name.update';
|
|
userId: string;
|
|
databaseId: string;
|
|
viewId: string;
|
|
name: string;
|
|
};
|
|
|
|
export type ViewNameUpdateMutationOutput = {
|
|
id: string;
|
|
};
|
|
|
|
declare module '@colanode/client/mutations' {
|
|
interface MutationMap {
|
|
'view.name.update': {
|
|
input: ViewNameUpdateMutationInput;
|
|
output: ViewNameUpdateMutationOutput;
|
|
};
|
|
}
|
|
}
|