(
userId: string,
contactUrl: string,
vCard: string,
)
| 102 | } |
| 103 | |
| 104 | static async update( |
| 105 | userId: string, |
| 106 | contactUrl: string, |
| 107 | vCard: string, |
| 108 | ): Promise<void> { |
| 109 | const client = await getClient(userId); |
| 110 | |
| 111 | await client.updateVCard({ |
| 112 | vCard: { |
| 113 | url: contactUrl, |
| 114 | data: vCard, |
| 115 | }, |
| 116 | }); |
| 117 | } |
| 118 | |
| 119 | static async delete( |
| 120 | userId: string, |
nothing calls this directly
no test coverage detected