Heap Capacitor Bridge
npm install heap-capacitor-bridge
npx cap syncidentify(...)track(...)track(...)addUserProperties(...)addEventProperties(...)removeEventProperty(...)clearEventProperties()resetIdentity()
identify(options: { identity: string; }) => Promise<void>| Param | Type |
|---|---|
options |
{ identity: string; } |
track(options: { event: string; }) => Promise<void>| Param | Type |
|---|---|
options |
{ event: string; } |
track(options: { event: string; properties: object; }) => Promise<void>| Param | Type |
|---|---|
options |
{ event: string; properties: object; } |
addUserProperties(options: { properties: object; }) => Promise<void>| Param | Type |
|---|---|
options |
{ properties: object; } |
addEventProperties(options: { properties: object; }) => Promise<void>| Param | Type |
|---|---|
options |
{ properties: object; } |
removeEventProperty(options: { property: string; }) => Promise<void>| Param | Type |
|---|---|
options |
{ property: string; } |
clearEventProperties() => Promise<void>resetIdentity() => Promise<void>