Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

braze-api

Package Overview
Dependencies
Maintainers
1
Versions
61
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

braze-api - npm Package Compare versions

Comparing version 1.5.0 to 1.6.0

lib/users/delete.d.ts

3

lib/Braze.d.ts

@@ -62,2 +62,5 @@ import * as campaigns from './campaigns';

};
delete: (body: users.UsersDeleteObject) => Promise<{
deleted: number;
}>;
identify: (body: users.UsersIdentifyObject) => Promise<{

@@ -64,0 +67,0 @@ [x: string]: any;

@@ -33,2 +33,3 @@ "use strict";

},
delete: (body) => users._delete(this.apiUrl, this.apiKey, body),
identify: (body) => users.identify(this.apiUrl, this.apiKey, body),

@@ -35,0 +36,0 @@ track: (body, bulk) => users.track(this.apiUrl, this.apiKey, body, bulk),

export * as alias from './alias';
export * from './delete';
export * from './identify';

@@ -3,0 +4,0 @@ export * from './track';

@@ -19,2 +19,3 @@ "use strict";

exports.alias = require("./alias");
__exportStar(require("./delete"), exports);
__exportStar(require("./identify"), exports);

@@ -21,0 +22,0 @@ __exportStar(require("./track"), exports);

@@ -13,3 +13,3 @@ import type { Properties, UserAlias } from '../common/types';

/**
* Request body for user track.
* Request body for user identify.
*

@@ -25,2 +25,12 @@ * {@link https://www.braze.com/docs/api/endpoints/user_data/post_user_identify/#request-body}

/**
* Request body for user delete.
*
* {@link https://www.braze.com/docs/api/endpoints/user_data/post_user_delete/#request-body}
*/
export interface UsersDeleteObject {
external_ids?: string[];
user_aliases?: UserAlias[];
braze_ids?: string[];
}
/**
* User attributes object specification.

@@ -27,0 +37,0 @@ *

2

package.json
{
"name": "braze-api",
"version": "1.5.0",
"version": "1.6.0",
"description": "Track users, send messages, export data, and more with Braze API.",

@@ -5,0 +5,0 @@ "author": "Mark <mark@remarkablemark.org>",

@@ -98,3 +98,3 @@ # braze-api

- [x] /users/alias/new
- [ ] /users/delete
- [x] /users/delete
- [ ] /users/export/global_control_group

@@ -101,0 +101,0 @@ - [ ] /users/export/ids

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

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

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc