(input: EditUserOperationInput)
| 344 | } |
| 345 | |
| 346 | async editUser(input: EditUserOperationInput): Promise<Request> { |
| 347 | const result = await this.actor.create_request({ |
| 348 | execution_plan: [{ Immediate: null }], |
| 349 | expiration_dt: [], |
| 350 | title: [], |
| 351 | summary: [], |
| 352 | operation: { EditUser: input }, |
| 353 | deduplication_key: [], |
| 354 | tags: [], |
| 355 | }); |
| 356 | |
| 357 | if (variantIs(result, 'Err')) { |
| 358 | throw result.Err; |
| 359 | } |
| 360 | |
| 361 | return result.Ok.request; |
| 362 | } |
| 363 | |
| 364 | async listUsers( |
| 365 | { |
nothing calls this directly
no test coverage detected