MCPcopy Create free account
hub / github.com/experdot/pointer / updateAccount

Function updateAccount

src/renderer/src/services/accountService.ts:92–97  ·  view source on GitHub ↗
(
  id: string,
  updates: Partial<Omit<Account, 'id' | 'createdAt'>>
)

Source from the content-addressed store, hash-verified

90
91// 更新账户信息
92export async function updateAccount(
93 id: string,
94 updates: Partial<Omit<Account, 'id' | 'createdAt'>>
95): Promise<void> {
96 await stores.account.update(id, updates)
97}
98
99// 删除账户
100export async function removeAccount(accountId: string): Promise<void> {

Callers 1

handleSaveEditFunction · 0.90

Calls 1

updateMethod · 0.65

Tested by

no test coverage detected