Security News
RubyGems.org Adds New Maintainer Role
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
@mparticle/data-planning-node
Advanced tools
Hello! This is the public repo of the mParticle Web Data Planning SDK. We've built the mParticle platform to take a new approach to web and mobile app data and the platform has grown to support 200+ services and SDKs, including developer tools, analytics, attribution, messaging, and advertising services. mParticle is designed to serve as the connector between all of these services - check out our site, or hit us at developers@mparticle.com to learn more.
Fully detailed documentation and other information about mParticle web SDK can be found at our doc site
The main purpose of this project is to validate your customer data before it arrives at mParticle's systems. In simplest terms, a Data Plan represents the contract between your data and mParticle.
This project allows the fetching of Data Plans or Data Plan Versions and the ability to validate your events and batches against said Data Plan Versions.
$ npm install @mparticle/data-planning-node
To use this within your project:
import { DataPlanService } from '@mparticle/data-planning-node';
To fetch a Data Plan or Data Plan Version, you will first need the following credentials:
import { DataPlanService } from '@mparticle/data-planning-node';
const dataPlanService = new DataPlanService();
// Fetch full data plan
dataPlanService
.getPlan(<organizationId>,<accountId>, <dataPlanId>, <workspaceId>, <token>)
.then(dataPlan => {
// Save or render your data plan
});
// Fetch Data Plan Version
dataPlanService
.getVersionDocument(<organizationId>, <accountId>, <dataPlanId>, <workspaceId>, <versionNumber>, <token>)
.then(dataPlanVersion => {
// Save or render your data plan version
});
To validate your event or batch, you should use the validateEvent
, validateEvents
, or validateBatch
methods, respectively.
import { DataPlanService } from '@mparticle/data-planning-node';
const dataPlanService = new DataPlanService();
// Fetch Data Plan Version asynchronously
const dataPlanVersion = await dataPlanService
.getVersionDocument(<organizationId>, <accountId>, 'my_custom_data_plan, <workspaceId>, 3, <token>);
const batchValidationResults = dataPlanService.validateBatch(batch, dataPlanVersion.version_document);
const eventValidationResults = dataPlanService.validateEvent(event, dataPlanVersion.version_document);
results: [
{
data: {
match: {
type: 'screen_view',
criteria: {
screen_name: 'Test Screen View',
},
},
validation_errors: [
{
error_pointer: '#/data',
key: 'data',
expected: 'custom_flags',
schema_keyword: 'required',
validation_error_type: 'missing_required',
},
],
},
event_type: 'validation_result',
},
],
At mParticle, we are proud of our code and like to keep things open source. If you'd like to contribute, simply fork this repo, push any code changes to your fork, and submit a Pull Request against the master
branch of mParticle-web-media-sdk.
Prior to running the tests please install all dev dependencies via an npm install
, and build the mParticle.js file as well as the test file by running npm run build
:
$ npm install
$ npm run build
$ npm test
The test script will run all tests using Mocha as unit tests.
This package comes with the NPM package pre-commit, which will run GTS when you try to commit.
The mParticle Web Media SDK is available under the Apache License, Version 2.0. See the LICENSE file for more info.
FAQs
A Node Interface for Data Planning
The npm package @mparticle/data-planning-node receives a total of 143 weekly downloads. As such, @mparticle/data-planning-node popularity was classified as not popular.
We found that @mparticle/data-planning-node demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 10 open source maintainers collaborating on the project.
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.
Security News
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
Security News
Node.js will be enforcing stricter semver-major PR policies a month before major releases to enhance stability and ensure reliable release candidates.
Security News
Research
Socket's threat research team has detected five malicious npm packages targeting Roblox developers, deploying malware to steal credentials and personal data.