Socket
Socket
Sign inDemoInstall

@adobe/adobe-privacy

Package Overview
Dependencies
12
Maintainers
30
Versions
3
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    @adobe/adobe-privacy

This is 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.


Version published
Weekly downloads
6
increased by50%
Maintainers
30
Install size
230 kB
Created
Weekly downloads
 

Readme

Source

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

  • Developer Docs
  • Public 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
}

FAQs

Last updated on 23 Jan 2019

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc