Client code to send notif - only updating types to allow this.
Added a more general TunnelbrokerNotif union type to avoid extending unions in the callsites.
Depends on D12896
Paths
| Differential D12897 Authored by bartek on Jul 26 2024, 6:30 AM.
Tags None Referenced Files
Details Summary Client code to send notif - only updating types to allow this. Depends on D12896 Test Plan Tested together with @kamil, using the following code: const notif: PlainTextWebNotification = { id: uuid.v4(), body: 'body hello', title: 'notif from TB', threadID: '123', }; const tbNotif: TunnelbrokerWebPushNotif = { type: 'WebPushNotif', clientMessageID: uuid.v4(), deviceID: '*******************************************', payload: JSON.stringify(notif), }; try { console.log('starting'); await sendNotif(tbNotif); console.log('done'); } catch (e) { console.log(e); } Successfully received notif on Firefox, Chrome and Safari
Diff Detail
Event Timelinebartek held this revision as a draft. Herald added subscribers: tomek, ashoat. · View Herald TranscriptJul 26 2024, 6:30 AM2024-07-26 06:30:52 (UTC-7) Harbormaster failed remote builds in B30712: Diff 42835!Jul 26 2024, 6:51 AM2024-07-26 06:51:16 (UTC-7) Harbormaster completed remote builds in B30727: Diff 42853.Jul 28 2024, 8:12 AM2024-07-28 08:12:47 (UTC-7) This revision is now accepted and ready to land.Jul 29 2024, 2:15 AM2024-07-29 02:15:12 (UTC-7) Closed by commit rCOMM9d2b6b4ad0aa: [lib] Implement sending WebPush notifs using Tunnelbroker (authored by bartek). · Explain WhyJul 29 2024, 5:56 AM2024-07-29 05:56:26 (UTC-7) This revision was automatically updated to reflect the committed changes.
Revision Contents
Diff 42892 lib/tunnelbroker/tunnelbroker-context.js
lib/types/tunnelbroker/messages.js
|