@adobe/adobe-privacy

1.3.0 • Public • Published

Adobe Privacy unified library

This is the home of the GDPR ID retrieval tag that will be used to retrieve all the IDs generated by the Adobe Experience Cloud libraries for a specific domain.

DOCS

Architecture / Concept

In a nutshell AdobePrivacy follows a Plugin architecture where we expose one core object to the customer, and that object's API delegates the actual work to plugins. Those plugins will be implemented by the individual teams involved in the Privacy effort. e.g. AA, AAM, Visitor..

AdobePrivacy Provided Interface (All APIs support Promises as well)

  • retrieveIdentities (function: callback(Object<array: validIDs, array: failedIDs>))
  • removeIdentities (function: callback(Object<array: validIDs, array: failedIDs>))
  • retrieveThenRemoveIdentities (function: callback(Object<array: validIDs, array: failedIDs>))

Schema of the IDs - failedIDs will contain a message instead of value

{
    "companyContexts": [{
            "namespace": "imsOrgID",
            "value": "123456789@AdobeOrg"
        }
    ],
    "users": [{
        "key": "David Smith",
        "action": ["access"], // Other options: ["delete"] - ["access", "delete"]
        "userIDs": [{
                "namespace": "email",
                "value": "dsmith@acme.com",
                "type": "standard"
            },
            {
                "namespace":"myCustomField",
                "value":"myCustomId_1234",
                "type":"unregistered"
            }
        ]
    }]
}

// `removeIdentities` returns an identical schema with the addition of `isDeletedClientSide` property for the deleted IDs.
{
    "namespace": "email",
    "value": "dsmith@acme.com",
    "type": "standard",
    "isDeletedClientSide": true
}

Readme

Keywords

none

Package Sidebar

Install

npm i @adobe/adobe-privacy

Weekly Downloads

3

Version

1.3.0

License

ISC

Unpacked Size

45.4 kB

Total Files

5

Last publish

Collaborators

  • dylandepass
  • djaeggi
  • adobehalls
  • fullcolorcoder
  • marbec
  • tripod
  • garthdb
  • lazd
  • adobe-admin
  • patrickfulton
  • trieloff
  • shazron
  • krisnye
  • dcpfsdk
  • natebaldwin
  • devongovett
  • aspro83
  • symanovi
  • dpfister
  • stefan-guggisberg
  • korra
  • rofe
  • kptdobe