@sudobility/whisperly_types 1.0.12 → 1.0.14
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/dist/index.d.ts +31 -58
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js.map +1 -1
- package/package.json +3 -3
package/dist/index.d.ts
CHANGED
|
@@ -4,7 +4,6 @@
|
|
|
4
4
|
*/
|
|
5
5
|
export type { ApiResponse, BaseResponse, NetworkClient, Optional, PaginatedResponse, PaginationInfo, PaginationOptions, } from '@sudobility/types';
|
|
6
6
|
import type { Optional, BaseResponse } from '@sudobility/types';
|
|
7
|
-
export type HttpMethod = 'GET' | 'POST';
|
|
8
7
|
export interface User {
|
|
9
8
|
firebase_uid: string;
|
|
10
9
|
email: string | null;
|
|
@@ -28,38 +27,34 @@ export interface Project {
|
|
|
28
27
|
display_name: string;
|
|
29
28
|
description: string | null;
|
|
30
29
|
instructions: string | null;
|
|
30
|
+
default_source_language: string | null;
|
|
31
|
+
default_target_languages: string[] | null;
|
|
32
|
+
ip_allowlist: string[] | null;
|
|
31
33
|
is_active: boolean | null;
|
|
32
34
|
created_at: Date | null;
|
|
33
35
|
updated_at: Date | null;
|
|
34
36
|
}
|
|
35
|
-
export interface
|
|
37
|
+
export interface Dictionary {
|
|
36
38
|
id: string;
|
|
39
|
+
entity_id: string;
|
|
37
40
|
project_id: string;
|
|
38
|
-
endpoint_name: string;
|
|
39
|
-
display_name: string;
|
|
40
|
-
http_method: HttpMethod;
|
|
41
|
-
instructions: string | null;
|
|
42
|
-
default_source_language: string | null;
|
|
43
|
-
default_target_languages: string[] | null;
|
|
44
|
-
is_active: boolean | null;
|
|
45
|
-
ip_allowlist: string[] | null;
|
|
46
41
|
created_at: Date | null;
|
|
47
42
|
updated_at: Date | null;
|
|
48
43
|
}
|
|
49
|
-
export interface
|
|
44
|
+
export interface DictionaryEntry {
|
|
50
45
|
id: string;
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
context: string | null;
|
|
46
|
+
dictionary_id: string;
|
|
47
|
+
language_code: string;
|
|
48
|
+
text: string;
|
|
55
49
|
created_at: Date | null;
|
|
56
50
|
updated_at: Date | null;
|
|
57
51
|
}
|
|
52
|
+
/** Flattened dictionary translations: { language_code: text } */
|
|
53
|
+
export type DictionaryTranslations = Record<string, string>;
|
|
58
54
|
export interface UsageRecord {
|
|
59
55
|
uuid: string;
|
|
60
56
|
entity_id: string;
|
|
61
57
|
project_id: string;
|
|
62
|
-
endpoint_id: string | null;
|
|
63
58
|
timestamp: Date;
|
|
64
59
|
request_count: number;
|
|
65
60
|
string_count: number;
|
|
@@ -85,49 +80,25 @@ export interface ProjectCreateRequest {
|
|
|
85
80
|
display_name: string;
|
|
86
81
|
description: Optional<string>;
|
|
87
82
|
instructions: Optional<string>;
|
|
88
|
-
}
|
|
89
|
-
export interface ProjectUpdateRequest {
|
|
90
|
-
project_name: Optional<string>;
|
|
91
|
-
display_name: Optional<string>;
|
|
92
|
-
description: Optional<string>;
|
|
93
|
-
instructions: Optional<string>;
|
|
94
|
-
is_active: Optional<boolean>;
|
|
95
|
-
}
|
|
96
|
-
export interface EndpointCreateRequest {
|
|
97
|
-
endpoint_name: string;
|
|
98
|
-
display_name: string;
|
|
99
|
-
http_method: Optional<HttpMethod>;
|
|
100
|
-
instructions: Optional<string>;
|
|
101
83
|
default_source_language: Optional<string>;
|
|
102
84
|
default_target_languages: Optional<string[]>;
|
|
103
85
|
ip_allowlist: Optional<string[]>;
|
|
104
86
|
}
|
|
105
|
-
export interface
|
|
106
|
-
|
|
87
|
+
export interface ProjectUpdateRequest {
|
|
88
|
+
project_name: Optional<string>;
|
|
107
89
|
display_name: Optional<string>;
|
|
108
|
-
|
|
90
|
+
description: Optional<string>;
|
|
109
91
|
instructions: Optional<string>;
|
|
110
92
|
default_source_language: Optional<string | null>;
|
|
111
93
|
default_target_languages: Optional<string[] | null>;
|
|
112
|
-
is_active: Optional<boolean>;
|
|
113
94
|
ip_allowlist: Optional<string[] | null>;
|
|
95
|
+
is_active: Optional<boolean>;
|
|
114
96
|
}
|
|
115
|
-
export
|
|
116
|
-
|
|
117
|
-
translations: Record<string, string>;
|
|
118
|
-
context: Optional<string>;
|
|
119
|
-
}
|
|
120
|
-
export interface GlossaryUpdateRequest {
|
|
121
|
-
term: Optional<string>;
|
|
122
|
-
translations: Optional<Record<string, string>>;
|
|
123
|
-
context: Optional<string>;
|
|
124
|
-
}
|
|
97
|
+
export type DictionaryCreateRequest = DictionaryTranslations;
|
|
98
|
+
export type DictionaryUpdateRequest = DictionaryTranslations;
|
|
125
99
|
export interface ProjectQueryParams {
|
|
126
100
|
is_active: Optional<string>;
|
|
127
101
|
}
|
|
128
|
-
export interface GlossaryQueryParams {
|
|
129
|
-
search: Optional<string>;
|
|
130
|
-
}
|
|
131
102
|
export interface UsageAnalyticsQueryParams {
|
|
132
103
|
project_id: Optional<string>;
|
|
133
104
|
start_date: Optional<string>;
|
|
@@ -141,17 +112,21 @@ export interface TranslationRequest {
|
|
|
141
112
|
}
|
|
142
113
|
export interface TranslationResponse {
|
|
143
114
|
translations: Record<string, string[]>;
|
|
144
|
-
|
|
115
|
+
dictionary_terms_used: string[];
|
|
145
116
|
request_id: string;
|
|
146
117
|
}
|
|
147
|
-
export interface
|
|
148
|
-
|
|
118
|
+
export interface DictionaryLookupRequest {
|
|
119
|
+
term: string;
|
|
149
120
|
languages: string;
|
|
150
121
|
}
|
|
151
|
-
export interface
|
|
152
|
-
|
|
122
|
+
export interface DictionaryLookupResponse {
|
|
123
|
+
term: string;
|
|
153
124
|
translations: Record<string, string | null>;
|
|
154
125
|
}
|
|
126
|
+
export interface DictionarySearchResponse {
|
|
127
|
+
dictionary_id: string;
|
|
128
|
+
translations: DictionaryTranslations;
|
|
129
|
+
}
|
|
155
130
|
export interface UsageAggregate {
|
|
156
131
|
total_requests: number;
|
|
157
132
|
total_strings: number;
|
|
@@ -197,8 +172,8 @@ export interface RateLimitStatus {
|
|
|
197
172
|
export interface TranslationServicePayload {
|
|
198
173
|
target_languages: string[];
|
|
199
174
|
strings: string[];
|
|
200
|
-
|
|
201
|
-
|
|
175
|
+
dictionary_terms: string[];
|
|
176
|
+
dictionary_callback_url: string;
|
|
202
177
|
}
|
|
203
178
|
export interface TranslationServiceResponse {
|
|
204
179
|
translations: Record<string, string[]>;
|
|
@@ -208,16 +183,14 @@ export declare function successResponse<T>(data: T): BaseResponse<T>;
|
|
|
208
183
|
/** Create an error response */
|
|
209
184
|
export declare function errorResponse(error: string): BaseResponse<never>;
|
|
210
185
|
export type ProjectListResponse = BaseResponse<Project[]>;
|
|
211
|
-
export type EndpointListResponse = BaseResponse<Endpoint[]>;
|
|
212
|
-
export type GlossaryListResponse = BaseResponse<Glossary[]>;
|
|
213
186
|
export type ProjectResponse = BaseResponse<Project>;
|
|
214
|
-
export type EndpointResponse = BaseResponse<Endpoint>;
|
|
215
|
-
export type GlossaryResponse = BaseResponse<Glossary>;
|
|
216
187
|
export type UserSettingsResponse = BaseResponse<UserSettings>;
|
|
217
188
|
export type RateLimitResponse = BaseResponse<RateLimitStatus>;
|
|
189
|
+
export type DictionaryResponse = BaseResponse<DictionaryTranslations>;
|
|
190
|
+
export type DictionarySearchApiResponse = BaseResponse<DictionarySearchResponse>;
|
|
191
|
+
export type DictionaryLookupApiResponse = BaseResponse<DictionaryLookupResponse>;
|
|
218
192
|
export type AnalyticsApiResponse = BaseResponse<AnalyticsResponse>;
|
|
219
193
|
export type TranslationApiResponse = BaseResponse<TranslationResponse>;
|
|
220
|
-
export type GlossaryLookupApiResponse = BaseResponse<GlossaryLookupResponse>;
|
|
221
194
|
export type HealthCheckResponse = BaseResponse<HealthCheckData>;
|
|
222
195
|
export interface HealthCheckData {
|
|
223
196
|
name: string;
|
package/dist/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAGH,YAAY,EACV,WAAW,EACX,YAAY,EACZ,aAAa,EACb,QAAQ,EACR,iBAAiB,EACjB,cAAc,EACd,iBAAiB,GAClB,MAAM,mBAAmB,CAAC;AAE3B,OAAO,KAAK,EAAE,QAAQ,EAAE,YAAY,EAAE,MAAM,mBAAmB,CAAC;AAMhE,MAAM,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"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"}
|
package/dist/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";AAAA;;;GAGG;;
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";AAAA;;;GAGG;;AAsQH,0CAMC;AAGD,sCAMC;AApBD,gFAAgF;AAChF,4BAA4B;AAC5B,gFAAgF;AAEhF,gCAAgC;AAChC,SAAgB,eAAe,CAAI,IAAO;IACxC,OAAO;QACL,OAAO,EAAE,IAAI;QACb,IAAI;QACJ,SAAS,EAAE,IAAI,IAAI,EAAE,CAAC,WAAW,EAAE;KACpC,CAAC;AACJ,CAAC;AAED,+BAA+B;AAC/B,SAAgB,aAAa,CAAC,KAAa;IACzC,OAAO;QACL,OAAO,EAAE,KAAK;QACd,KAAK;QACL,SAAS,EAAE,IAAI,IAAI,EAAE,CAAC,WAAW,EAAE;KACpC,CAAC;AACJ,CAAC"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sudobility/whisperly_types",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.14",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "TypeScript types for Whisperly API - Localization SaaS platform",
|
|
6
6
|
"main": "./dist/index.cjs",
|
|
@@ -45,11 +45,11 @@
|
|
|
45
45
|
"author": "Sudobility",
|
|
46
46
|
"license": "MIT",
|
|
47
47
|
"peerDependencies": {
|
|
48
|
-
"@sudobility/types": "^1.9.
|
|
48
|
+
"@sudobility/types": "^1.9.48"
|
|
49
49
|
},
|
|
50
50
|
"devDependencies": {
|
|
51
51
|
"@eslint/js": "^9.39.2",
|
|
52
|
-
"@sudobility/types": "^1.9.
|
|
52
|
+
"@sudobility/types": "^1.9.48",
|
|
53
53
|
"@typescript-eslint/eslint-plugin": "^8.50.0",
|
|
54
54
|
"@typescript-eslint/parser": "^8.50.0",
|
|
55
55
|
"eslint": "^9.39.2",
|