@trycourier/courier 3.14.1 → 3.15.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -5,6 +5,10 @@ This project adheres to [Semantic Versioning](http://semver.org/).
5
5
 
6
6
  ## [Unreleased][unreleased]
7
7
 
8
+ ## [3.15.0]
9
+
10
+ - adds support for audit events
11
+
8
12
  ## [3.14.0]
9
13
 
10
14
  - adds support for token management
@@ -0,0 +1,6 @@
1
+ import { ICourierClientConfiguration } from "../types";
2
+ import { IAuditEvent, ICourierGetAuditEventParams, ICourierListAuditEventsParams, ICourierListAuditEventsResponse } from "./types";
3
+ export declare const auditEvents: (options: ICourierClientConfiguration) => {
4
+ get: (params: ICourierGetAuditEventParams) => Promise<IAuditEvent>;
5
+ list: (params: ICourierListAuditEventsParams) => Promise<ICourierListAuditEventsResponse>;
6
+ };
@@ -0,0 +1,75 @@
1
+ "use strict";
2
+ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
3
+ function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
4
+ return new (P || (P = Promise))(function (resolve, reject) {
5
+ function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
6
+ function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
7
+ function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
8
+ step((generator = generator.apply(thisArg, _arguments || [])).next());
9
+ });
10
+ };
11
+ var __generator = (this && this.__generator) || function (thisArg, body) {
12
+ var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;
13
+ return g = { next: verb(0), "throw": verb(1), "return": verb(2) }, typeof Symbol === "function" && (g[Symbol.iterator] = function() { return this; }), g;
14
+ function verb(n) { return function (v) { return step([n, v]); }; }
15
+ function step(op) {
16
+ if (f) throw new TypeError("Generator is already executing.");
17
+ while (_) try {
18
+ if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;
19
+ if (y = 0, t) op = [op[0] & 2, t.value];
20
+ switch (op[0]) {
21
+ case 0: case 1: t = op; break;
22
+ case 4: _.label++; return { value: op[1], done: false };
23
+ case 5: _.label++; y = op[1]; op = [0]; continue;
24
+ case 7: op = _.ops.pop(); _.trys.pop(); continue;
25
+ default:
26
+ if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }
27
+ if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }
28
+ if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }
29
+ if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }
30
+ if (t[2]) _.ops.pop();
31
+ _.trys.pop(); continue;
32
+ }
33
+ op = body.call(thisArg, _);
34
+ } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }
35
+ if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };
36
+ }
37
+ };
38
+ Object.defineProperty(exports, "__esModule", { value: true });
39
+ exports.auditEvents = void 0;
40
+ var list = function (options) {
41
+ return function (params) { return __awaiter(void 0, void 0, void 0, function () {
42
+ var res;
43
+ return __generator(this, function (_a) {
44
+ switch (_a.label) {
45
+ case 0: return [4 /*yield*/, options.httpClient.get("/audit-events", {
46
+ params: {
47
+ cursor: params.cursor
48
+ }
49
+ })];
50
+ case 1:
51
+ res = _a.sent();
52
+ return [2 /*return*/, res.data];
53
+ }
54
+ });
55
+ }); };
56
+ };
57
+ var get = function (options) {
58
+ return function (params) { return __awaiter(void 0, void 0, void 0, function () {
59
+ var res;
60
+ return __generator(this, function (_a) {
61
+ switch (_a.label) {
62
+ case 0: return [4 /*yield*/, options.httpClient.get("/audit-events/" + params.auditEventId)];
63
+ case 1:
64
+ res = _a.sent();
65
+ return [2 /*return*/, res.data];
66
+ }
67
+ });
68
+ }); };
69
+ };
70
+ exports.auditEvents = function (options) {
71
+ return {
72
+ get: get(options),
73
+ list: list(options)
74
+ };
75
+ };
@@ -0,0 +1,27 @@
1
+ export interface ICourierListAuditEventsParams {
2
+ cursor?: string;
3
+ }
4
+ export interface ICourierGetAuditEventParams {
5
+ auditEventId: string;
6
+ }
7
+ export interface ICourierListAuditEventsResponse {
8
+ paging: {
9
+ cursor?: string;
10
+ more: boolean;
11
+ };
12
+ results: IAuditEvent[];
13
+ }
14
+ export interface IAuditEvent {
15
+ actor?: {
16
+ id?: string;
17
+ email?: string;
18
+ };
19
+ target?: {
20
+ id?: string;
21
+ email?: string;
22
+ };
23
+ auditEventId: string;
24
+ source: string;
25
+ timestamp: string;
26
+ type: string;
27
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
package/lib/client.js CHANGED
@@ -38,6 +38,7 @@ var __generator = (this && this.__generator) || function (thisArg, body) {
38
38
  Object.defineProperty(exports, "__esModule", { value: true });
39
39
  exports.client = void 0;
40
40
  var audiences_1 = require("./audiences");
41
+ var audit_events_1 = require("./audit-events");
41
42
  var automations_1 = require("./automations");
42
43
  var brands_1 = require("./brands");
43
44
  var bulk_1 = require("./bulk");
@@ -114,6 +115,7 @@ exports.client = function (options) {
114
115
  return {
115
116
  addRecipientToLists: profile_1.addRecipientToLists(options),
116
117
  audiences: audiences_1.audiences(options),
118
+ auditEvents: audit_events_1.auditEvents(options),
117
119
  automations: automations_1.automations(options),
118
120
  bulk: bulk_1.bulk(options),
119
121
  createBrand: brands_1.createBrand(options),
package/lib/types.d.ts CHANGED
@@ -1,5 +1,6 @@
1
1
  import { AxiosRequestConfig } from "axios";
2
2
  import { ICourierClientAudiences } from "./audiences/types";
3
+ import { auditEvents } from "./audit-events";
3
4
  import { ICourierClientAutomations } from "./automations/types";
4
5
  import { ICourierClientBulk } from "./bulk/types";
5
6
  import { ICourierClientLists, ICourierList, ICourierRecipientSubscriptionsResponse } from "./lists/types";
@@ -289,6 +290,7 @@ export declare type SendResponse<T extends ICourierSendParameters | ICourierSend
289
290
  export interface ICourierClient {
290
291
  addRecipientToLists: (params: ICourierProfileListsPostParameters) => Promise<ICourierProfilePostResponse>;
291
292
  audiences: ICourierClientAudiences;
293
+ auditEvents: ReturnType<typeof auditEvents>;
292
294
  automations: ICourierClientAutomations;
293
295
  bulk: ICourierClientBulk;
294
296
  createBrand: (params: ICourierBrandParameters, config?: ICourierBrandPostConfig) => Promise<ICourierBrand>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@trycourier/courier",
3
- "version": "3.14.1",
3
+ "version": "3.15.0",
4
4
  "description": "A node.js module for communicating with the Courier REST API.",
5
5
  "main": "lib/index.js",
6
6
  "types": "lib/index.d.ts",