@wildix/wim-tools-client 0.0.19 → 0.0.20

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.
@@ -86,7 +86,7 @@ declare const CreateToolCommand_base: {
86
86
  * },
87
87
  * subject: "<ToolStringValue>", // required
88
88
  * text: "<ToolStringValue>", // required
89
- * html: "<ToolStringValue>", // required
89
+ * html: "<ToolStringValue>",
90
90
  * cc: "<ToolStringValue>",
91
91
  * bcc: "<ToolStringValue>",
92
92
  * replyTo: "<ToolStringValue>",
@@ -150,7 +150,7 @@ declare const CreateToolCommand_base: {
150
150
  * // },
151
151
  * // subject: "<ToolStringValue>", // required
152
152
  * // text: "<ToolStringValue>", // required
153
- * // html: "<ToolStringValue>", // required
153
+ * // html: "<ToolStringValue>",
154
154
  * // cc: "<ToolStringValue>",
155
155
  * // bcc: "<ToolStringValue>",
156
156
  * // replyTo: "<ToolStringValue>",
@@ -94,7 +94,7 @@ declare const GetToolCommand_base: {
94
94
  * // },
95
95
  * // subject: "<ToolStringValue>", // required
96
96
  * // text: "<ToolStringValue>", // required
97
- * // html: "<ToolStringValue>", // required
97
+ * // html: "<ToolStringValue>",
98
98
  * // cc: "<ToolStringValue>",
99
99
  * // bcc: "<ToolStringValue>",
100
100
  * // replyTo: "<ToolStringValue>",
@@ -94,7 +94,7 @@ declare const ListToolsCommand_base: {
94
94
  * // },
95
95
  * // subject: "<ToolStringValue>", // required
96
96
  * // text: "<ToolStringValue>", // required
97
- * // html: "<ToolStringValue>", // required
97
+ * // html: "<ToolStringValue>",
98
98
  * // cc: "<ToolStringValue>",
99
99
  * // bcc: "<ToolStringValue>",
100
100
  * // replyTo: "<ToolStringValue>",
@@ -87,7 +87,7 @@ declare const UpdateToolCommand_base: {
87
87
  * },
88
88
  * subject: "<ToolStringValue>", // required
89
89
  * text: "<ToolStringValue>", // required
90
- * html: "<ToolStringValue>", // required
90
+ * html: "<ToolStringValue>",
91
91
  * cc: "<ToolStringValue>",
92
92
  * bcc: "<ToolStringValue>",
93
93
  * replyTo: "<ToolStringValue>",
@@ -151,7 +151,7 @@ declare const UpdateToolCommand_base: {
151
151
  * // },
152
152
  * // subject: "<ToolStringValue>", // required
153
153
  * // text: "<ToolStringValue>", // required
154
- * // html: "<ToolStringValue>", // required
154
+ * // html: "<ToolStringValue>",
155
155
  * // cc: "<ToolStringValue>",
156
156
  * // bcc: "<ToolStringValue>",
157
157
  * // replyTo: "<ToolStringValue>",
@@ -99,7 +99,7 @@ export interface ToolSmtpConfig {
99
99
  */
100
100
  host: string;
101
101
  /**
102
- * SMTP server port, e.g.: '587'
102
+ * SMTP server port, e.g.: 587
103
103
  * @public
104
104
  */
105
105
  port: number;
@@ -152,7 +152,7 @@ export interface ToolCustomEmailConfig {
152
152
  * HTML content of the email
153
153
  * @public
154
154
  */
155
- html: ToolStringValue;
155
+ html?: ToolStringValue | undefined;
156
156
  /**
157
157
  * CC email addresses
158
158
  * @public
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@wildix/wim-tools-client",
3
3
  "description": "@wildix/wim-tools-client client",
4
- "version": "0.0.19",
4
+ "version": "0.0.20",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "tsc -p tsconfig.cjs.json",