@larksuiteoapi/node-sdk 1.0.2 → 1.0.3
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 +0 -2
- package/README.zh.md +0 -2
- package/es/index.js +521 -363
- package/lib/index.js +521 -363
- package/package.json +1 -1
- package/types/index.d.ts +1555 -1223
package/README.md
CHANGED
|
@@ -66,8 +66,6 @@ const res = await client.im.message.create({
|
|
|
66
66
|
},
|
|
67
67
|
});
|
|
68
68
|
````
|
|
69
|
-
> Note: The SDK has made a complete type declaration for the call result of the API. In development, most of our focus is on the call result itself, but there are still a few scenarios where we need to pay attention to the details of the API call. The SDK puts this part of the content in the result’s prototype of the call, and if you need to get this part of the information, you can use `res.request` to get it.
|
|
70
|
-
|
|
71
69
|
> tips: If you want to debug an API, you can click the link in the comment to enter the API debugging platform for debugging:
|
|
72
70
|

|
|
73
71
|
|
package/README.zh.md
CHANGED
|
@@ -65,8 +65,6 @@ const res = await client.im.message.create({
|
|
|
65
65
|
},
|
|
66
66
|
});
|
|
67
67
|
```
|
|
68
|
-
> 注:SDK对API的调用结果做了完备的类型声明,在开发中我们绝大部分关注点在于调用结果本身,但仍有少数场景需要关注API的调用细节,SDK将这部分内容放在了调用结果的原型对象上,如果需要得到这部分信息,可以使用`res.request`来获取。
|
|
69
|
-
|
|
70
68
|
> tips: 如果想调试某个api,可以点击注释中的链接进入api调试台进行调试:
|
|
71
69
|

|
|
72
70
|
|