tencentcloud-sdk-nodejs-intl-en 3.0.706 → 3.0.708
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/package.json
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
const sdkVersion = "3.0.
|
|
1
|
+
const sdkVersion = "3.0.708";
|
|
2
2
|
module.exports = sdkVersion
|
|
@@ -87,7 +87,7 @@ Tencent Cloud team <noreply@mail.qcloud.com>
|
|
|
87
87
|
this.TimedParam = null;
|
|
88
88
|
|
|
89
89
|
/**
|
|
90
|
-
* Unsubscribe link option. `0`: Do not add unsubscribe link; `1`: English `2`: Simplified Chinese; `3`: Traditional Chinese; `4`: Spanish; `5`: French; `6`: German; `7`: Japanese; `8`: Korean; `9`: Arabic
|
|
90
|
+
* Unsubscribe link option. `0`: Do not add unsubscribe link; `1`: English `2`: Simplified Chinese; `3`: Traditional Chinese; `4`: Spanish; `5`: French; `6`: German; `7`: Japanese; `8`: Korean; `9`: Arabic; `10`: Thai
|
|
91
91
|
* @type {string || null}
|
|
92
92
|
*/
|
|
93
93
|
this.Unsubscribe = null;
|
|
@@ -771,6 +771,18 @@ Sender <email address>
|
|
|
771
771
|
*/
|
|
772
772
|
this.ReplyToAddresses = null;
|
|
773
773
|
|
|
774
|
+
/**
|
|
775
|
+
*
|
|
776
|
+
* @type {Array.<string> || null}
|
|
777
|
+
*/
|
|
778
|
+
this.Cc = null;
|
|
779
|
+
|
|
780
|
+
/**
|
|
781
|
+
*
|
|
782
|
+
* @type {Array.<string> || null}
|
|
783
|
+
*/
|
|
784
|
+
this.Bcc = null;
|
|
785
|
+
|
|
774
786
|
/**
|
|
775
787
|
* Template parameters for template-based sending. As `Simple` has been disused, `Template` is required.
|
|
776
788
|
* @type {Template || null}
|
|
@@ -790,7 +802,7 @@ Sender <email address>
|
|
|
790
802
|
this.Attachments = null;
|
|
791
803
|
|
|
792
804
|
/**
|
|
793
|
-
* Unsubscribe link option. `0`: Do not add unsubscribe link; `1`: English `2`: Simplified Chinese; `3`: Traditional Chinese; `4`: Spanish; `5`: French; `6`: German; `7`: Japanese; `8`: Korean; `9`: Arabic
|
|
805
|
+
* Unsubscribe link option. `0`: Do not add unsubscribe link; `1`: English `2`: Simplified Chinese; `3`: Traditional Chinese; `4`: Spanish; `5`: French; `6`: German; `7`: Japanese; `8`: Korean; `9`: Arabic; `10`: Thai
|
|
794
806
|
* @type {string || null}
|
|
795
807
|
*/
|
|
796
808
|
this.Unsubscribe = null;
|
|
@@ -814,6 +826,8 @@ Sender <email address>
|
|
|
814
826
|
this.Destination = 'Destination' in params ? params.Destination : null;
|
|
815
827
|
this.Subject = 'Subject' in params ? params.Subject : null;
|
|
816
828
|
this.ReplyToAddresses = 'ReplyToAddresses' in params ? params.ReplyToAddresses : null;
|
|
829
|
+
this.Cc = 'Cc' in params ? params.Cc : null;
|
|
830
|
+
this.Bcc = 'Bcc' in params ? params.Bcc : null;
|
|
817
831
|
|
|
818
832
|
if (params.Template) {
|
|
819
833
|
let obj = new Template();
|