@wildix/wim-tools-client 0.0.18 → 0.0.19

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.
@@ -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
@@ -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
@@ -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
@@ -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
@@ -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.19",
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",