@trycourier/courier 5.6.0 → 5.7.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/lib/client.js CHANGED
@@ -117,7 +117,8 @@ var getMessages = function (options) {
117
117
  notification: params === null || params === void 0 ? void 0 : params.notificationId,
118
118
  recipient: params === null || params === void 0 ? void 0 : params.recipientId,
119
119
  status: params === null || params === void 0 ? void 0 : params.status,
120
- tags: params === null || params === void 0 ? void 0 : params.tags
120
+ tags: params === null || params === void 0 ? void 0 : params.tags,
121
+ traceId: params === null || params === void 0 ? void 0 : params.traceId
121
122
  }
122
123
  })];
123
124
  case 1:
package/lib/types.d.ts CHANGED
@@ -112,6 +112,7 @@ export interface ICourierMessagesGetParameters {
112
112
  recipientId?: string;
113
113
  status?: string | string[];
114
114
  tags?: string | string[];
115
+ traceId?: string;
115
116
  }
116
117
  export interface ICourierMessagesGetResponse {
117
118
  paging: ICourierPaging;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@trycourier/courier",
3
- "version": "5.6.0",
3
+ "version": "5.7.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",