blob: f8681507c6f76ae37b9d8949efb7f8d276c23d77 [file] [log] [blame]
Misha Krieger-Raynauldaddd6fe2022-10-22 12:46:04 -04001/*
2 * Copyright (C) 2022 Savoir-faire Linux Inc.
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU Affero General Public License as
6 * published by the Free Software Foundation; either version 3 of the
7 * License, or (at your option) any later version.
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU Affero General Public License for more details.
13 *
14 * You should have received a copy of the GNU Affero General Public
15 * License along with this program. If not, see
16 * <https://www.gnu.org/licenses/>.
17 */
18export interface VolatileDetailsChanged {
19 accountId: string;
20 details: Map<string, string>;
21}
22
23export interface RegistrationStateChanged {
24 accountId: string;
25 state: string;
26 code: number;
27 details: string;
28}
29
30export interface NameRegistrationEnded {
31 accountId: string;
32 state: number;
33 username: string;
34}
35
36export interface RegisteredNameFound {
37 accountId: string;
38 state: number;
39 address: string;
40 username: string;
41}
Charlieb62c6782022-10-30 15:14:56 -040042
43export interface IncomingAccountMessage {
44 accountId: string;
45 from: string;
46 message: Record<string, string>;
47}