@lokalise/tm-sdk 9.0.0 → 10.0.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
CHANGED
|
@@ -19,7 +19,7 @@ import { TranslationMemoryClient } from '@lokalise/tm-sdk'
|
|
|
19
19
|
|
|
20
20
|
const client = new TranslationMemoryClient({
|
|
21
21
|
isEnabled: true,
|
|
22
|
-
baseUrl: 'https://<
|
|
22
|
+
baseUrl: 'https://<translation-memory-server-url>',
|
|
23
23
|
jwtToken: '<JWT auth token provided by the TM service>',
|
|
24
24
|
// Undici retry config (see RetryConfig in https://github.com/kibertoad/undici-retry)
|
|
25
25
|
retryConfig: {},
|
|
@@ -1,8 +1,9 @@
|
|
|
1
1
|
import type { RequestContext } from '@lokalise/fastify-extras';
|
|
2
2
|
import { type ErrorReporter } from '@lokalise/node-core';
|
|
3
|
-
import
|
|
3
|
+
import type { TmOwnerGroupId } from '@lokalise/tm-api-schemas';
|
|
4
|
+
import { type BulkTranslationMemoryMatches, type TranslationMemoryRecord, type TranslationMemoryRecordsResponse, type UpsertTranslationMemoryRecordDto } from '@lokalise/tm-api-schemas';
|
|
4
5
|
import type { RetryConfig } from 'undici-retry';
|
|
5
|
-
import type { BulkFindMatchesRequest, FindMatchesRequest } from './types/requests.ts';
|
|
6
|
+
import type { BulkFindMatchesRequest, FindMatchesRequest, GetRecordsQuery } from './types/requests.ts';
|
|
6
7
|
export type TranslationMemoryClientConfig = {
|
|
7
8
|
baseUrl: string;
|
|
8
9
|
jwtToken: string;
|
|
@@ -11,7 +12,7 @@ export type TranslationMemoryClientConfig = {
|
|
|
11
12
|
isEnabled?: boolean;
|
|
12
13
|
};
|
|
13
14
|
export type TranslationMemoryClientContext = {
|
|
14
|
-
reqContext
|
|
15
|
+
reqContext: RequestContext;
|
|
15
16
|
metadata?: Record<string, unknown>;
|
|
16
17
|
};
|
|
17
18
|
export declare class TranslationMemoryClient {
|
|
@@ -22,12 +23,12 @@ export declare class TranslationMemoryClient {
|
|
|
22
23
|
private readonly retryConfig;
|
|
23
24
|
private readonly errorReporter?;
|
|
24
25
|
constructor(config: TranslationMemoryClientConfig);
|
|
25
|
-
findMatches(
|
|
26
|
-
bulkFindMatches(
|
|
27
|
-
bulkFindMatchesIterative(
|
|
28
|
-
getRecords(
|
|
29
|
-
upsertRecords(
|
|
30
|
-
deleteRecords(
|
|
26
|
+
findMatches(context: TranslationMemoryClientContext, ownerId: string, request: FindMatchesRequest): Promise<TranslationMemoryRecord[]>;
|
|
27
|
+
bulkFindMatches(context: TranslationMemoryClientContext, ownerId: string, { filters, options }: BulkFindMatchesRequest): Promise<BulkTranslationMemoryMatches[]>;
|
|
28
|
+
bulkFindMatchesIterative(context: TranslationMemoryClientContext, ownerId: string, { filters, options }: BulkFindMatchesRequest): AsyncGenerator<BulkTranslationMemoryMatches[]>;
|
|
29
|
+
getRecords(context: TranslationMemoryClientContext, ownerId: string, query?: GetRecordsQuery): Promise<TranslationMemoryRecordsResponse>;
|
|
30
|
+
upsertRecords(context: TranslationMemoryClientContext, ownerGroupId: TmOwnerGroupId, records: UpsertTranslationMemoryRecordDto[]): Promise<void>;
|
|
31
|
+
deleteRecords(context: TranslationMemoryClientContext, ownerId: string, recordIds: string[]): Promise<void>;
|
|
31
32
|
private internalBulkFindMatches;
|
|
32
33
|
private handleError;
|
|
33
34
|
}
|
|
@@ -33,12 +33,12 @@ export class TranslationMemoryClient {
|
|
|
33
33
|
};
|
|
34
34
|
this.errorReporter = config.errorReporter;
|
|
35
35
|
}
|
|
36
|
-
async findMatches(
|
|
36
|
+
async findMatches(context, ownerId, request) {
|
|
37
37
|
if (!this.isEnabled)
|
|
38
38
|
return [];
|
|
39
39
|
try {
|
|
40
40
|
const response = await sendByGetRoute(this.httpClient, getTranslationMemoryMatchesContract, {
|
|
41
|
-
pathParams: {
|
|
41
|
+
pathParams: { ownerId },
|
|
42
42
|
headers: this.headers,
|
|
43
43
|
queryParams: transformToKebabCase(request),
|
|
44
44
|
}, {
|
|
@@ -54,23 +54,23 @@ export class TranslationMemoryClient {
|
|
|
54
54
|
throw this.handleError(e, context);
|
|
55
55
|
}
|
|
56
56
|
}
|
|
57
|
-
async bulkFindMatches(
|
|
57
|
+
async bulkFindMatches(context, ownerId, { filters, options }) {
|
|
58
58
|
const response = [];
|
|
59
59
|
for (const part of chunk(filters, this.maxFindMatchesRequestSize)) {
|
|
60
|
-
const partialResponse = await this.internalBulkFindMatches(
|
|
60
|
+
const partialResponse = await this.internalBulkFindMatches(context, ownerId, {
|
|
61
61
|
filters: part,
|
|
62
62
|
options,
|
|
63
|
-
}
|
|
63
|
+
});
|
|
64
64
|
response.push(...partialResponse);
|
|
65
65
|
}
|
|
66
66
|
return response;
|
|
67
67
|
}
|
|
68
|
-
async *bulkFindMatchesIterative(
|
|
68
|
+
async *bulkFindMatchesIterative(context, ownerId, { filters, options }) {
|
|
69
69
|
for (const part of chunk(filters, this.maxFindMatchesRequestSize)) {
|
|
70
|
-
yield await this.internalBulkFindMatches(
|
|
70
|
+
yield await this.internalBulkFindMatches(context, ownerId, { filters: part, options });
|
|
71
71
|
}
|
|
72
72
|
}
|
|
73
|
-
async getRecords(
|
|
73
|
+
async getRecords(context, ownerId, query) {
|
|
74
74
|
if (!this.isEnabled) {
|
|
75
75
|
return {
|
|
76
76
|
records: [],
|
|
@@ -79,8 +79,8 @@ export class TranslationMemoryClient {
|
|
|
79
79
|
}
|
|
80
80
|
try {
|
|
81
81
|
const response = await sendByGetRoute(this.httpClient, getTranslationMemoryRecordsContract, {
|
|
82
|
-
pathParams: {
|
|
83
|
-
queryParams: query ?? {},
|
|
82
|
+
pathParams: { ownerId },
|
|
83
|
+
queryParams: transformToKebabCase(query) ?? {},
|
|
84
84
|
headers: this.headers,
|
|
85
85
|
}, {
|
|
86
86
|
reqContext: context.reqContext,
|
|
@@ -95,7 +95,7 @@ export class TranslationMemoryClient {
|
|
|
95
95
|
throw this.handleError(e, context);
|
|
96
96
|
}
|
|
97
97
|
}
|
|
98
|
-
async upsertRecords(
|
|
98
|
+
async upsertRecords(context, ownerGroupId, records) {
|
|
99
99
|
if (!this.isEnabled)
|
|
100
100
|
return;
|
|
101
101
|
// Avoiding sending empty records
|
|
@@ -104,7 +104,7 @@ export class TranslationMemoryClient {
|
|
|
104
104
|
return;
|
|
105
105
|
try {
|
|
106
106
|
await sendByPayloadRoute(this.httpClient, putTranslationMemoryRecordsContract, {
|
|
107
|
-
pathParams:
|
|
107
|
+
pathParams: ownerGroupId,
|
|
108
108
|
body: recordsToInsert,
|
|
109
109
|
headers: this.headers,
|
|
110
110
|
}, {
|
|
@@ -119,7 +119,7 @@ export class TranslationMemoryClient {
|
|
|
119
119
|
throw this.handleError(e, context);
|
|
120
120
|
}
|
|
121
121
|
}
|
|
122
|
-
async deleteRecords(
|
|
122
|
+
async deleteRecords(context, ownerId, recordIds) {
|
|
123
123
|
if (!this.isEnabled)
|
|
124
124
|
return;
|
|
125
125
|
// Avoid sending empty requests
|
|
@@ -127,7 +127,7 @@ export class TranslationMemoryClient {
|
|
|
127
127
|
return;
|
|
128
128
|
try {
|
|
129
129
|
await sendByPayloadRoute(this.httpClient, postDeleteTranslationMemoryRecordsContract, {
|
|
130
|
-
pathParams: {
|
|
130
|
+
pathParams: { ownerId },
|
|
131
131
|
body: { recordIds },
|
|
132
132
|
headers: this.headers,
|
|
133
133
|
}, {
|
|
@@ -142,7 +142,7 @@ export class TranslationMemoryClient {
|
|
|
142
142
|
throw this.handleError(e, context);
|
|
143
143
|
}
|
|
144
144
|
}
|
|
145
|
-
async internalBulkFindMatches(
|
|
145
|
+
async internalBulkFindMatches(context, ownerId, request) {
|
|
146
146
|
const result = [];
|
|
147
147
|
if (!this.isEnabled)
|
|
148
148
|
return result;
|
|
@@ -163,7 +163,7 @@ export class TranslationMemoryClient {
|
|
|
163
163
|
}
|
|
164
164
|
try {
|
|
165
165
|
const response = await sendByPayloadRoute(this.httpClient, postBulkFindMatchesContract, {
|
|
166
|
-
pathParams: {
|
|
166
|
+
pathParams: { ownerId },
|
|
167
167
|
body: request,
|
|
168
168
|
headers: this.headers,
|
|
169
169
|
}, {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"TranslationMemoryClient.js","sourceRoot":"","sources":["../../src/sdk/TranslationMemoryClient.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,WAAW,EACX,qBAAqB,EACrB,cAAc,EACd,kBAAkB,GACnB,MAAM,+BAA+B,CAAA;AAEtC,OAAO,EAAsB,aAAa,EAAE,MAAM,qBAAqB,CAAA;
|
|
1
|
+
{"version":3,"file":"TranslationMemoryClient.js","sourceRoot":"","sources":["../../src/sdk/TranslationMemoryClient.ts"],"names":[],"mappings":"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"}
|
|
@@ -1,4 +1,6 @@
|
|
|
1
|
+
import type { GetTranslationMemoryRecordsQueryInput } from '@lokalise/tm-api-schemas';
|
|
1
2
|
export type FindMatchesFilter = {
|
|
3
|
+
groupId?: string;
|
|
2
4
|
sourceText: string;
|
|
3
5
|
sourceLocale: string;
|
|
4
6
|
targetLocale: string;
|
|
@@ -17,3 +19,7 @@ export type BulkFindMatchesRequest = {
|
|
|
17
19
|
filters: BulkFindMatchesFilter[];
|
|
18
20
|
options?: FindMatchesOptions;
|
|
19
21
|
};
|
|
22
|
+
export type GetRecordsQuery = Omit<GetTranslationMemoryRecordsQueryInput, 'group-id' | 'flex-search-query'> & {
|
|
23
|
+
groupId?: GetTranslationMemoryRecordsQueryInput['group-id'];
|
|
24
|
+
flexSearchQuery?: GetTranslationMemoryRecordsQueryInput['flex-search-query'];
|
|
25
|
+
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lokalise/tm-sdk",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "10.0.0",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "Lokalise",
|
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
"license": "Apache-2.0",
|
|
14
14
|
"repository": {
|
|
15
15
|
"type": "git",
|
|
16
|
-
"url": "git://github.com/lokalise/
|
|
16
|
+
"url": "git://github.com/lokalise/translation-memory.git"
|
|
17
17
|
},
|
|
18
18
|
"main": "dist/index.js",
|
|
19
19
|
"exports": {
|
|
@@ -46,7 +46,7 @@
|
|
|
46
46
|
"undici-retry": "^6.1.0"
|
|
47
47
|
},
|
|
48
48
|
"devDependencies": {
|
|
49
|
-
"@biomejs/biome": "^2.
|
|
49
|
+
"@biomejs/biome": "^2.3.1",
|
|
50
50
|
"@lokalise/biome-config": "^3.1.0",
|
|
51
51
|
"@lokalise/fastify-extras": "^30.2.1",
|
|
52
52
|
"@lokalise/tsconfig": "^3.0.0",
|