pingram 1.0.4-alpha.982 → 1.0.4-alpha.983

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.
@@ -429,6 +429,12 @@ export interface LogsGetResponseLogsInner {
429
429
  * @memberof LogsGetResponseLogsInner
430
430
  */
431
431
  email_inbound_webhook_delivered?: boolean;
432
+ /**
433
+ *
434
+ * @type {string}
435
+ * @memberof LogsGetResponseLogsInner
436
+ */
437
+ email_inbound_webhook_res?: string;
432
438
  /**
433
439
  *
434
440
  * @type {string}
@@ -459,6 +465,12 @@ export interface LogsGetResponseLogsInner {
459
465
  * @memberof LogsGetResponseLogsInner
460
466
  */
461
467
  sms_inbound_webhook_delivered?: boolean;
468
+ /**
469
+ *
470
+ * @type {string}
471
+ * @memberof LogsGetResponseLogsInner
472
+ */
473
+ sms_inbound_webhook_res?: string;
462
474
  /**
463
475
  *
464
476
  * @type {string}
@@ -544,6 +544,9 @@ function LogsGetResponseLogsInnerFromJSONTyped(json, ignoreDiscriminator) {
544
544
  email_inbound_webhook_delivered: json['email_inbound_webhook_delivered'] == null
545
545
  ? undefined
546
546
  : json['email_inbound_webhook_delivered'],
547
+ email_inbound_webhook_res: json['email_inbound_webhook_res'] == null
548
+ ? undefined
549
+ : json['email_inbound_webhook_res'],
547
550
  email_inbound_resolution_type: json['email_inbound_resolution_type'] == null
548
551
  ? undefined
549
552
  : json['email_inbound_resolution_type'],
@@ -553,6 +556,9 @@ function LogsGetResponseLogsInnerFromJSONTyped(json, ignoreDiscriminator) {
553
556
  sms_inbound_webhook_delivered: json['sms_inbound_webhook_delivered'] == null
554
557
  ? undefined
555
558
  : json['sms_inbound_webhook_delivered'],
559
+ sms_inbound_webhook_res: json['sms_inbound_webhook_res'] == null
560
+ ? undefined
561
+ : json['sms_inbound_webhook_res'],
556
562
  sms_replied_at: json['sms_replied_at'] == null ? undefined : json['sms_replied_at'],
557
563
  sms_replied_to: json['sms_replied_to'] == null ? undefined : json['sms_replied_to'],
558
564
  sms_replied_text: json['sms_replied_text'] == null ? undefined : json['sms_replied_text'],
@@ -797,11 +803,13 @@ function LogsGetResponseLogsInnerToJSONTyped(value, ignoreDiscriminator = false)
797
803
  email_inbound_in_reply_to: value['email_inbound_in_reply_to'],
798
804
  email_inbound_references: value['email_inbound_references'],
799
805
  email_inbound_webhook_delivered: value['email_inbound_webhook_delivered'],
806
+ email_inbound_webhook_res: value['email_inbound_webhook_res'],
800
807
  email_inbound_resolution_type: value['email_inbound_resolution_type'],
801
808
  sms_inbound_at: value['sms_inbound_at'],
802
809
  sms_inbound_from: value['sms_inbound_from'],
803
810
  sms_inbound_text: value['sms_inbound_text'],
804
811
  sms_inbound_webhook_delivered: value['sms_inbound_webhook_delivered'],
812
+ sms_inbound_webhook_res: value['sms_inbound_webhook_res'],
805
813
  sms_replied_at: value['sms_replied_at'],
806
814
  sms_replied_to: value['sms_replied_to'],
807
815
  sms_replied_text: value['sms_replied_text'],
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pingram",
3
- "version": "1.0.4-alpha.982",
3
+ "version": "1.0.4-alpha.983",
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",