chore(protobuf): update ThpPairingRequest message

This commit is contained in:
Szymon Lesisz
2025-08-13 19:23:05 +02:00
committed by Szymon Lesisz
parent 2d420fffc4
commit 0c16c5f1fc
2 changed files with 4 additions and 1 deletions

View File

@@ -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 } },

View File

@@ -28,6 +28,7 @@ export type ThpCreateNewSession = { derive_cardano?: boolean } & (
export type ThpPairingRequest = {
host_name: string;
app_name: string;
};
export type ThpPairingRequestApproved = {};