mirror of
https://github.com/trezor/trezor-suite.git
synced 2026-03-06 23:39:38 +01:00
chore(protobuf): update ThpPairingRequest message
This commit is contained in:
committed by
Szymon Lesisz
parent
2d420fffc4
commit
0c16c5f1fc
@@ -26,7 +26,9 @@ export const getProtobufDefinitions = () => ({
|
||||
derive_cardano: { type: 'bool', id: 3, options: { default: false } },
|
||||
},
|
||||
},
|
||||
ThpPairingRequest: { fields: { host_name: { type: 'string', id: 1 } } },
|
||||
ThpPairingRequest: {
|
||||
fields: { host_name: { type: 'string', id: 1 }, app_name: { type: 'string', id: 2 } },
|
||||
},
|
||||
ThpPairingRequestApproved: { fields: {} },
|
||||
ThpSelectMethod: {
|
||||
fields: { selected_pairing_method: { rule: 'required', type: 'ThpPairingMethod', id: 1 } },
|
||||
|
||||
@@ -28,6 +28,7 @@ export type ThpCreateNewSession = { derive_cardano?: boolean } & (
|
||||
|
||||
export type ThpPairingRequest = {
|
||||
host_name: string;
|
||||
app_name: string;
|
||||
};
|
||||
|
||||
export type ThpPairingRequestApproved = {};
|
||||
|
||||
Reference in New Issue
Block a user