mirror of
https://github.com/standardnotes/server
synced 2026-07-14 00:01:54 -04:00
* feat(grpc): add syncing protocol buffers * wip * feat: syncing implementation * fix: sendign metadata * fix: grpc sync request mapping * fix grpc response mapper
9 lines
182 B
TypeScript
9 lines
182 B
TypeScript
export interface NotificationHttpRepresentation {
|
|
uuid: string
|
|
user_uuid: string
|
|
type: string
|
|
payload: string
|
|
created_at_timestamp: number
|
|
updated_at_timestamp: number
|
|
}
|