> For the complete documentation index, see [llms.txt](https://docs.facephi.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.facephi.com/docs.facephi-en/sdks/sdk-web/componentes/sdk-provider/propiedades/type.md).

# type

## Details

**Attribute:** `type`

**Type:** `TypeFamily`

**Default value:** `TypeFamily.onboarding`

### TypeFamily

| Member           | Value            | Description                         |
| ---------------- | ---------------- | ----------------------------------- |
| `Onboarding`     | `ONBOARDING`     | Onboarding or registration process. |
| `authentication` | `AUTHENTICATION` | Authentication process.             |

## Morphology

```typescript
import { TypeFamily } from '@facephi/sdk-web-wc';

provider.type = TypeFamily.onboarding;
```

## Description

Type of operation registered in the platform (`Onboarding` or `authentication`) for the tracking initiated by `facephi-sdk-provider`.

***

## Example

```jsx
import { TypeFamily } from '@facephi/sdk-web-wc';

<facephi-sdk-provider
    apikey={process.env.FACEPHI_SDK_APIKEY}
    type={TypeFamily.onboarding}
/>
```
