@lokalise/tm-sdk 8.3.0 → 8.4.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 +5 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
# Translation Memory client SDK
|
|
2
2
|
|
|
3
|
-
Translation Memory service provides a REST API to interact with it, but we recommend using this
|
|
3
|
+
Translation Memory service provides a REST API to interact with it, but we recommend using this
|
|
4
|
+
[@lokalise/tm-sdk](https://www.npmjs.com/package/@lokalise/tm-sdk) NPM package to integrate TM capabilities into your
|
|
5
|
+
Node.js application.
|
|
4
6
|
|
|
5
7
|
## Usage
|
|
6
8
|
|
|
@@ -64,4 +66,5 @@ const searchRequest = {
|
|
|
64
66
|
const matches = client.findMatches('my-tm-group', searchRequest)
|
|
65
67
|
```
|
|
66
68
|
|
|
67
|
-
You can also use `bulkFindMatches()` and `bulkFindMatchesIterative()` APIs to perform the same kind of lookup for
|
|
69
|
+
You can also use `bulkFindMatches()` and `bulkFindMatchesIterative()` APIs to perform the same kind of lookup for
|
|
70
|
+
multiple separate search requests.
|