pingram 1.0.4-alpha.973 → 1.0.4-alpha.975

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.
@@ -909,6 +909,12 @@ export interface LogsGetResponseLogsInner {
909
909
  * @memberof LogsGetResponseLogsInner
910
910
  */
911
911
  sms_sent_country?: string;
912
+ /**
913
+ * Unique message ID from provider (Twilio SID or Telnyx ID)
914
+ * @type {string}
915
+ * @memberof LogsGetResponseLogsInner
916
+ */
917
+ sms_sent_messageId?: string;
912
918
  /**
913
919
  * Actual cost from Telnyx/Twilio (internal)
914
920
  * @type {number}
@@ -692,6 +692,9 @@ function LogsGetResponseLogsInnerFromJSONTyped(json, ignoreDiscriminator) {
692
692
  sms_sent_parts: json['sms_sent_parts'] == null ? undefined : json['sms_sent_parts'],
693
693
  sms_sent_cost: json['sms_sent_cost'] == null ? undefined : json['sms_sent_cost'],
694
694
  sms_sent_country: json['sms_sent_country'] == null ? undefined : json['sms_sent_country'],
695
+ sms_sent_messageId: json['sms_sent_messageId'] == null
696
+ ? undefined
697
+ : json['sms_sent_messageId'],
695
698
  sms_carrier_cost_internal: json['sms_carrier_cost_internal'] == null
696
699
  ? undefined
697
700
  : json['sms_carrier_cost_internal'],
@@ -874,6 +877,7 @@ function LogsGetResponseLogsInnerToJSONTyped(value, ignoreDiscriminator = false)
874
877
  sms_sent_parts: value['sms_sent_parts'],
875
878
  sms_sent_cost: value['sms_sent_cost'],
876
879
  sms_sent_country: value['sms_sent_country'],
880
+ sms_sent_messageId: value['sms_sent_messageId'],
877
881
  sms_carrier_cost_internal: value['sms_carrier_cost_internal'],
878
882
  sms_carrier_fee_internal: value['sms_carrier_fee_internal'],
879
883
  sms_rate_internal: value['sms_rate_internal'],
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pingram",
3
- "version": "1.0.4-alpha.973",
3
+ "version": "1.0.4-alpha.975",
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",