@ibm-cloud/event-notifications-node-admin-sdk
Advanced tools
Comparing version 0.0.3 to 0.0.4
@@ -0,1 +1,8 @@ | ||
## [0.0.4](https://github.com/IBM/event-notifications-node-admin-sdk/compare/v0.0.3...v0.0.4) (2021-11-23) | ||
### Bug Fixes | ||
* add sms and email(from_name, to_mail, to_name) ([#10](https://github.com/IBM/event-notifications-node-admin-sdk/issues/10)) ([6803776](https://github.com/IBM/event-notifications-node-admin-sdk/commit/6803776f0eea57ffded44eebab6bfc26e5575e01)) | ||
## [0.0.3](https://github.com/IBM/event-notifications-node-admin-sdk/compare/v0.0.2...v0.0.3) (2021-10-28) | ||
@@ -2,0 +9,0 @@ |
@@ -524,3 +524,3 @@ /** | ||
description: string; | ||
/** Destination type Email/Webhook. */ | ||
/** Destination type Email/SMS/Webhook. */ | ||
type: string; | ||
@@ -551,3 +551,3 @@ /** Payload describing a destination configuration. */ | ||
description: string; | ||
/** Destination type Email/Webhook. */ | ||
/** Destination type Email/SMS/Webhook. */ | ||
type: string; | ||
@@ -580,3 +580,3 @@ /** Subscription count. */ | ||
description: string; | ||
/** Destination type Email/Webhook. */ | ||
/** Destination type Email/SMS/Webhook. */ | ||
type: string; | ||
@@ -814,6 +814,17 @@ /** Payload describing a destination configuration. */ | ||
/** The email address to reply to. */ | ||
reply_to: string; | ||
reply_to_mail: string; | ||
/** The email name to reply to. */ | ||
reply_to_name?: string; | ||
/** The email name of From. */ | ||
from_name?: string; | ||
/** The recipient selection method. */ | ||
recipient_selection: string; | ||
} | ||
/** SMS attributes object. */ | ||
interface SubscriptionAttributesSMSAttributesResponse extends SubscriptionAttributes { | ||
/** The phone number to send the SMS to. */ | ||
to: string[]; | ||
/** The recipient selection method. */ | ||
recipient_selection: string; | ||
} | ||
/** The attributes for a webhook notification. */ | ||
@@ -833,4 +844,13 @@ interface SubscriptionAttributesWebhookAttributesResponse extends SubscriptionAttributes { | ||
/** The email address to reply to. */ | ||
reply_to?: string; | ||
reply_to_mail?: string; | ||
/** The email name to reply to. */ | ||
reply_to_name?: string; | ||
/** The email name of From. */ | ||
from_name?: string; | ||
} | ||
/** SMS attributes object. */ | ||
interface SubscriptionCreateAttributesSMSAttributes extends SubscriptionCreateAttributes { | ||
/** The phone number to send the SMS to. */ | ||
to: string[]; | ||
} | ||
/** The attributes for a webhook notification. */ | ||
@@ -848,4 +868,13 @@ interface SubscriptionCreateAttributesWebhookAttributes extends SubscriptionCreateAttributes { | ||
/** The email address to reply to. */ | ||
reply_to?: string; | ||
reply_to_mail?: string; | ||
/** The email name to reply to. */ | ||
reply_to_name?: string; | ||
/** The email name of From. */ | ||
from_name?: string; | ||
} | ||
/** SMS attributes object. */ | ||
interface SubscriptionUpdateAttributesSMSAttributes extends SubscriptionUpdateAttributes { | ||
/** The phone number to send the SMS to. */ | ||
to: string[]; | ||
} | ||
/** The attributes for a webhook notification. */ | ||
@@ -852,0 +881,0 @@ interface SubscriptionUpdateAttributesWebhookAttributes extends SubscriptionUpdateAttributes { |
@@ -42,3 +42,3 @@ "use strict"; | ||
/** | ||
* IBM OpenAPI SDK Code Generator Version: 3.41.0-f1ef0102-20211018-193503 | ||
* IBM OpenAPI SDK Code Generator Version: 3.42.0-8746aaa4-20211102-213344 | ||
*/ | ||
@@ -45,0 +45,0 @@ var extend = require("extend"); |
{ | ||
"name": "@ibm-cloud/event-notifications-node-admin-sdk", | ||
"version": "0.0.3", | ||
"version": "0.0.4", | ||
"description": "IBM Cloud Event Notifications Node.js SDK", | ||
@@ -5,0 +5,0 @@ "repository": { |
# IBM Cloud Event Notifications Node.js SDK 0.0.2 | ||
# IBM Cloud Event Notifications Node.js SDK | ||
Node.js client library to interact with various [Event Notifications APIs](https://cloud.ibm.com/apidocs?category=event-notifications). | ||
@@ -4,0 +4,0 @@ |
Sorry, the diff of this file is not supported yet
152917
2423