@larksuiteoapi/node-sdk 1.17.1 → 1.19.0
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/README.md +4 -2
- package/README.zh.md +4 -2
- package/es/index.js +3751 -279
- package/lib/index.js +3751 -279
- package/package.json +1 -1
- package/types/index.d.ts +9671 -722
package/README.md
CHANGED
|
@@ -74,8 +74,10 @@ const res = await client.im.message.create({
|
|
|
74
74
|
},
|
|
75
75
|
});
|
|
76
76
|
````
|
|
77
|
-
> tips:
|
|
78
|
-
|
|
77
|
+
> tips:
|
|
78
|
+
> * If you want to debug an API, you can click the link in the comment to enter the API debugging platform for debugging:
|
|
79
|
+
> 
|
|
80
|
+
> * How to obtain the semantic call interface:[Click here](https://github.com/larksuite/node-sdk/issues/42)
|
|
79
81
|
|
|
80
82
|
#### Create Client
|
|
81
83
|
For self-built applications, you can use the following code to create a client:
|
package/README.zh.md
CHANGED
|
@@ -73,8 +73,10 @@ const res = await client.im.message.create({
|
|
|
73
73
|
},
|
|
74
74
|
});
|
|
75
75
|
```
|
|
76
|
-
> tips:
|
|
77
|
-
|
|
76
|
+
> tips:
|
|
77
|
+
> * 如果想调试某个api,可以点击注释中的链接进入api调试台进行调试:
|
|
78
|
+
> 
|
|
79
|
+
> * 如何获取语义化调用接口:[点击这里](https://github.com/larksuite/node-sdk/issues/42)
|
|
78
80
|
|
|
79
81
|
#### 创建client
|
|
80
82
|
对于自建应用,可以使用下面的代码创建一个client:
|