@wildix/wim-tools-client 0.0.18 → 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>",
@@ -99,7 +99,7 @@ declare const CreateToolCommand_base: {
99
99
  * // { // CreateToolOutput
100
100
  * // tool: { // Tool
101
101
  * // id: "STRING_VALUE", // required
102
- * // company: "STRING_VALUE", // required
102
+ * // companyId: "STRING_VALUE", // required
103
103
  * // name: "STRING_VALUE", // required
104
104
  * // category: "STRING_VALUE", // required
105
105
  * // description: "STRING_VALUE", // required
@@ -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>",
@@ -43,7 +43,7 @@ declare const GetToolCommand_base: {
43
43
  * // { // GetToolOutput
44
44
  * // tool: { // Tool
45
45
  * // id: "STRING_VALUE", // required
46
- * // company: "STRING_VALUE", // required
46
+ * // companyId: "STRING_VALUE", // required
47
47
  * // name: "STRING_VALUE", // required
48
48
  * // category: "STRING_VALUE", // required
49
49
  * // description: "STRING_VALUE", // required
@@ -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>",
@@ -43,7 +43,7 @@ declare const ListToolsCommand_base: {
43
43
  * // tools: [ // ToolsList // required
44
44
  * // { // Tool
45
45
  * // id: "STRING_VALUE", // required
46
- * // company: "STRING_VALUE", // required
46
+ * // companyId: "STRING_VALUE", // required
47
47
  * // name: "STRING_VALUE", // required
48
48
  * // category: "STRING_VALUE", // required
49
49
  * // description: "STRING_VALUE", // required
@@ -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>",
@@ -100,7 +100,7 @@ declare const UpdateToolCommand_base: {
100
100
  * // { // UpdateToolOutput
101
101
  * // tool: { // Tool
102
102
  * // id: "STRING_VALUE", // required
103
- * // company: "STRING_VALUE", // required
103
+ * // companyId: "STRING_VALUE", // required
104
104
  * // name: "STRING_VALUE", // required
105
105
  * // category: "STRING_VALUE", // required
106
106
  * // description: "STRING_VALUE", // required
@@ -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
@@ -347,7 +347,7 @@ export interface Tool {
347
347
  * Company ID that owns this tool
348
348
  * @public
349
349
  */
350
- company: string;
350
+ companyId: string;
351
351
  /**
352
352
  * Name of the tool, e.g.: 'send_email'
353
353
  * @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.18",
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",