(sessionId: string)
| 97 | } |
| 98 | |
| 99 | tryApplyOwnerProfile(sessionId: string): Promise<ApplyOwnerProfileResult> { |
| 100 | return post(`/sessions/${sessionId}/owner/apply-profile`, {}) |
| 101 | } |
| 102 | |
| 103 | setOwnerAndApplyProfile(sessionId: string, ownerPlatformId: string): Promise<SetOwnerAndApplyProfileResult> { |
| 104 | return post(`/sessions/${sessionId}/owner/select`, { ownerPlatformId }) |