# vendor-add

#### Title

**jentis.consent.engine.vendor-add**

#### Description

Triggered when **one or more vendors gain positive consent** for the first time.

#### Usage

```javascript
jentis.consent.engine.addEventListener('jentis.consent.engine.vendor-add', function (e) {
    console.log("Vendors with new consent:", e.detail.moreInfo);
});
```

#### Event Data (`e.detail.moreInfo`)

An **array** containing vendor names that have positive consent:

```json
["googleanalytics", "fb"]
```
