Comparing version 1.9.0 to 1.10.0
@@ -84,2 +84,7 @@ import * as campaigns from './campaigns'; | ||
external_ids: { | ||
remove: (body: users.external_ids.UsersExternalIdsRemoveObject) => Promise<{ | ||
message: string; | ||
removed_ids: string[]; | ||
removal_errors: string[]; | ||
}>; | ||
rename: (body: users.external_ids.UsersExternalIdsRenameObject) => Promise<{ | ||
@@ -86,0 +91,0 @@ message: string; |
@@ -47,2 +47,3 @@ "use strict"; | ||
external_ids: { | ||
remove: (body) => users.external_ids.remove(this.apiUrl, this.apiKey, body), | ||
rename: (body) => users.external_ids.rename(this.apiUrl, this.apiKey, body), | ||
@@ -49,0 +50,0 @@ }, |
@@ -0,3 +1,4 @@ | ||
export * from './remove'; | ||
export * from './rename'; | ||
export * from './types'; | ||
//# sourceMappingURL=index.d.ts.map |
@@ -17,4 +17,5 @@ "use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
__exportStar(require("./remove"), exports); | ||
__exportStar(require("./rename"), exports); | ||
__exportStar(require("./types"), exports); | ||
//# sourceMappingURL=index.js.map |
/** | ||
* Request body for external ID remove. | ||
* | ||
* {@link https://www.braze.com/docs/api/endpoints/user_data/external_id_migration/post_external_ids_remove/#request-body} | ||
*/ | ||
export interface UsersExternalIdsRemoveObject { | ||
external_ids: string[]; | ||
} | ||
/** | ||
* Request body for external ID rename. | ||
@@ -3,0 +11,0 @@ * |
{ | ||
"name": "braze-api", | ||
"version": "1.9.0", | ||
"version": "1.10.0", | ||
"description": "Track users, send messages, export data, and more with Braze API.", | ||
@@ -5,0 +5,0 @@ "author": "Mark <mark@remarkablemark.org>", |
@@ -103,3 +103,3 @@ # braze-api | ||
- [x] /users/external_ids/rename | ||
- [ ] /users/external_ids/remove | ||
- [x] /users/external_ids/remove | ||
- [x] /users/identify | ||
@@ -106,0 +106,0 @@ - [x] /users/track |
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
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
85668
155
1342