(organizationId: string, projectId: string, userId?: string)
| 22 | } |
| 23 | |
| 24 | identify(organizationId: string, projectId: string, userId?: string) { |
| 25 | if (userId) { |
| 26 | this.#client.alias({ |
| 27 | distinctId: userId, |
| 28 | alias: this.#sessionId, |
| 29 | }); |
| 30 | } |
| 31 | |
| 32 | this.#client.groupIdentify({ |
| 33 | groupType: "organization", |
| 34 | groupKey: organizationId, |
| 35 | }); |
| 36 | |
| 37 | this.#client.groupIdentify({ |
| 38 | groupType: "project", |
| 39 | groupKey: projectId, |
| 40 | }); |
| 41 | } |
| 42 | |
| 43 | init = { |
| 44 | started: (options: InitCommandOptions) => { |
no outgoing calls
no test coverage detected