pingram 1.0.4-alpha.946 → 1.0.4-alpha.948

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.
@@ -225,6 +225,12 @@ export interface LogsGetResponseLogsInner {
225
225
  * @memberof LogsGetResponseLogsInner
226
226
  */
227
227
  email_delivered_after?: number;
228
+ /**
229
+ *
230
+ * @type {string}
231
+ * @memberof LogsGetResponseLogsInner
232
+ */
233
+ email_delivered_webhook_res?: string;
228
234
  /**
229
235
  *
230
236
  * @type {string}
@@ -255,6 +261,12 @@ export interface LogsGetResponseLogsInner {
255
261
  * @memberof LogsGetResponseLogsInner
256
262
  */
257
263
  email_failed_internal?: string;
264
+ /**
265
+ *
266
+ * @type {string}
267
+ * @memberof LogsGetResponseLogsInner
268
+ */
269
+ email_failed_webhook_res?: string;
258
270
  /**
259
271
  *
260
272
  * @type {string}
@@ -273,6 +285,12 @@ export interface LogsGetResponseLogsInner {
273
285
  * @memberof LogsGetResponseLogsInner
274
286
  */
275
287
  email_opened_ip?: string;
288
+ /**
289
+ *
290
+ * @type {string}
291
+ * @memberof LogsGetResponseLogsInner
292
+ */
293
+ email_opened_webhook_res?: string;
276
294
  /**
277
295
  *
278
296
  * @type {string}
@@ -303,6 +321,12 @@ export interface LogsGetResponseLogsInner {
303
321
  * @memberof LogsGetResponseLogsInner
304
322
  */
305
323
  email_clicked_link_tags?: string;
324
+ /**
325
+ *
326
+ * @type {string}
327
+ * @memberof LogsGetResponseLogsInner
328
+ */
329
+ email_clicked_webhook_res?: string;
306
330
  /**
307
331
  *
308
332
  * @type {string}
@@ -462,6 +462,9 @@ function LogsGetResponseLogsInnerFromJSONTyped(json, ignoreDiscriminator) {
462
462
  email_delivered_after: json['email_delivered_after'] == null
463
463
  ? undefined
464
464
  : json['email_delivered_after'],
465
+ email_delivered_webhook_res: json['email_delivered_webhook_res'] == null
466
+ ? undefined
467
+ : json['email_delivered_webhook_res'],
465
468
  email_failed_at: json['email_failed_at'] == null ? undefined : json['email_failed_at'],
466
469
  email_failed_code: json['email_failed_code'] == null ? undefined : json['email_failed_code'],
467
470
  email_failed_recipient: json['email_failed_recipient'] == null
@@ -473,11 +476,17 @@ function LogsGetResponseLogsInnerFromJSONTyped(json, ignoreDiscriminator) {
473
476
  email_failed_internal: json['email_failed_internal'] == null
474
477
  ? undefined
475
478
  : json['email_failed_internal'],
479
+ email_failed_webhook_res: json['email_failed_webhook_res'] == null
480
+ ? undefined
481
+ : json['email_failed_webhook_res'],
476
482
  email_opened_at: json['email_opened_at'] == null ? undefined : json['email_opened_at'],
477
483
  email_opened_user_agent: json['email_opened_user_agent'] == null
478
484
  ? undefined
479
485
  : json['email_opened_user_agent'],
480
486
  email_opened_ip: json['email_opened_ip'] == null ? undefined : json['email_opened_ip'],
487
+ email_opened_webhook_res: json['email_opened_webhook_res'] == null
488
+ ? undefined
489
+ : json['email_opened_webhook_res'],
481
490
  email_clicked_at: json['email_clicked_at'] == null ? undefined : json['email_clicked_at'],
482
491
  email_clicked_user_agent: json['email_clicked_user_agent'] == null
483
492
  ? undefined
@@ -489,6 +498,9 @@ function LogsGetResponseLogsInnerFromJSONTyped(json, ignoreDiscriminator) {
489
498
  email_clicked_link_tags: json['email_clicked_link_tags'] == null
490
499
  ? undefined
491
500
  : json['email_clicked_link_tags'],
501
+ email_clicked_webhook_res: json['email_clicked_webhook_res'] == null
502
+ ? undefined
503
+ : json['email_clicked_webhook_res'],
492
504
  email_inbound_at: json['email_inbound_at'] == null ? undefined : json['email_inbound_at'],
493
505
  email_inbound_from: json['email_inbound_from'] == null
494
506
  ? undefined
@@ -748,19 +760,23 @@ function LogsGetResponseLogsInnerToJSONTyped(value, ignoreDiscriminator = false)
748
760
  email_delivered_at: value['email_delivered_at'],
749
761
  email_delivered_recipients: value['email_delivered_recipients'],
750
762
  email_delivered_after: value['email_delivered_after'],
763
+ email_delivered_webhook_res: value['email_delivered_webhook_res'],
751
764
  email_failed_at: value['email_failed_at'],
752
765
  email_failed_code: value['email_failed_code'],
753
766
  email_failed_recipient: value['email_failed_recipient'],
754
767
  email_failed_diagnostic_code: value['email_failed_diagnostic_code'],
755
768
  email_failed_internal: value['email_failed_internal'],
769
+ email_failed_webhook_res: value['email_failed_webhook_res'],
756
770
  email_opened_at: value['email_opened_at'],
757
771
  email_opened_user_agent: value['email_opened_user_agent'],
758
772
  email_opened_ip: value['email_opened_ip'],
773
+ email_opened_webhook_res: value['email_opened_webhook_res'],
759
774
  email_clicked_at: value['email_clicked_at'],
760
775
  email_clicked_user_agent: value['email_clicked_user_agent'],
761
776
  email_clicked_ip: value['email_clicked_ip'],
762
777
  email_clicked_link: value['email_clicked_link'],
763
778
  email_clicked_link_tags: value['email_clicked_link_tags'],
779
+ email_clicked_webhook_res: value['email_clicked_webhook_res'],
764
780
  email_inbound_at: value['email_inbound_at'],
765
781
  email_inbound_from: value['email_inbound_from'],
766
782
  email_inbound_from_name: value['email_inbound_from_name'],
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pingram",
3
- "version": "1.0.4-alpha.946",
3
+ "version": "1.0.4-alpha.948",
4
4
  "description": "Official Node.js SDK for Pingram - Send notifications via Email, SMS, Push, In-App, and more",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.js",