captchasonic 2.0.0 → 2.1.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 +16 -10
- package/dist/client.d.ts +21 -4
- package/dist/client.d.ts.map +1 -1
- package/dist/client.js +26 -12
- package/dist/client.js.map +1 -1
- package/dist/gen/{captchasonicai → captchasonic}/v1/sonic_pb.d.ts +218 -113
- package/dist/gen/captchasonic/v1/sonic_pb.d.ts.map +1 -0
- package/dist/gen/captchasonic/v1/sonic_pb.js +103 -0
- package/dist/gen/captchasonic/v1/sonic_pb.js.map +1 -0
- package/package.json +2 -1
- package/src/gen/captchasonic/v1/sonic_pb.ts +731 -0
- package/dist/gen/captchasonicai/v1/sonic_connect.d.ts +0 -46
- package/dist/gen/captchasonicai/v1/sonic_connect.d.ts.map +0 -1
- package/dist/gen/captchasonicai/v1/sonic_connect.js +0 -51
- package/dist/gen/captchasonicai/v1/sonic_connect.js.map +0 -1
- package/dist/gen/captchasonicai/v1/sonic_pb.d.ts.map +0 -1
- package/dist/gen/captchasonicai/v1/sonic_pb.js +0 -98
- package/dist/gen/captchasonicai/v1/sonic_pb.js.map +0 -1
- package/src/gen/captchasonicai/v1/sonic_connect.ts +0 -54
- package/src/gen/captchasonicai/v1/sonic_pb.ts +0 -603
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
import type { GenFile, GenMessage, GenService } from "@bufbuild/protobuf/codegenv2";
|
|
2
2
|
import type { Message } from "@bufbuild/protobuf";
|
|
3
3
|
/**
|
|
4
|
-
* Describes the file
|
|
4
|
+
* Describes the file captchasonic/v1/sonic.proto.
|
|
5
5
|
*/
|
|
6
|
-
export declare const
|
|
6
|
+
export declare const file_captchasonic_v1_sonic: GenFile;
|
|
7
7
|
/**
|
|
8
|
-
* @generated from message
|
|
8
|
+
* @generated from message captchasonic.v1.Task
|
|
9
9
|
*/
|
|
10
|
-
export type Task = Message<"
|
|
10
|
+
export type Task = Message<"captchasonic.v1.Task"> & {
|
|
11
11
|
/**
|
|
12
12
|
* @generated from field: string type = 1;
|
|
13
13
|
*/
|
|
@@ -31,14 +31,10 @@ export type Task = Message<"captchasonicai.v1.Task"> & {
|
|
|
31
31
|
*/
|
|
32
32
|
screenshot: boolean;
|
|
33
33
|
/**
|
|
34
|
-
* single raw binary image
|
|
35
|
-
*
|
|
36
34
|
* @generated from field: bytes image = 6;
|
|
37
35
|
*/
|
|
38
36
|
image: Uint8Array;
|
|
39
37
|
/**
|
|
40
|
-
* raw binary example images
|
|
41
|
-
*
|
|
42
38
|
* @generated from field: repeated bytes examples = 7;
|
|
43
39
|
*/
|
|
44
40
|
examples: Uint8Array[];
|
|
@@ -51,7 +47,7 @@ export type Task = Message<"captchasonicai.v1.Task"> & {
|
|
|
51
47
|
*/
|
|
52
48
|
websiteKey: string;
|
|
53
49
|
/**
|
|
54
|
-
* OCR
|
|
50
|
+
* OCR
|
|
55
51
|
*
|
|
56
52
|
* @generated from field: string module = 10;
|
|
57
53
|
*/
|
|
@@ -73,7 +69,7 @@ export type Task = Message<"captchasonicai.v1.Task"> & {
|
|
|
73
69
|
*/
|
|
74
70
|
maxLength: number;
|
|
75
71
|
/**
|
|
76
|
-
* Geetest
|
|
72
|
+
* Geetest
|
|
77
73
|
*
|
|
78
74
|
* @generated from field: int32 gtv = 15;
|
|
79
75
|
*/
|
|
@@ -96,34 +92,72 @@ export type Task = Message<"captchasonicai.v1.Task"> & {
|
|
|
96
92
|
* @generated from field: string proxy = 19;
|
|
97
93
|
*/
|
|
98
94
|
proxy: string;
|
|
95
|
+
/**
|
|
96
|
+
* Video captcha (PopularCaptcha canvasVideo negotiation)
|
|
97
|
+
*
|
|
98
|
+
* true when sending video payload
|
|
99
|
+
*
|
|
100
|
+
* @generated from field: bool canvasVideo = 20;
|
|
101
|
+
*/
|
|
102
|
+
canvasVideo: boolean;
|
|
103
|
+
/**
|
|
104
|
+
* "framecount", "frameMerge", "frame", "video"
|
|
105
|
+
*
|
|
106
|
+
* @generated from field: string format = 21;
|
|
107
|
+
*/
|
|
108
|
+
format: string;
|
|
109
|
+
/**
|
|
110
|
+
* raw video/frame blobs (binary, no base64)
|
|
111
|
+
*
|
|
112
|
+
* @generated from field: repeated bytes video = 22;
|
|
113
|
+
*/
|
|
114
|
+
video: Uint8Array[];
|
|
115
|
+
/**
|
|
116
|
+
* frame indices from previous response
|
|
117
|
+
*
|
|
118
|
+
* @generated from field: repeated int32 frames = 23;
|
|
119
|
+
*/
|
|
120
|
+
frames: number[];
|
|
121
|
+
/**
|
|
122
|
+
* total frame count
|
|
123
|
+
*
|
|
124
|
+
* @generated from field: optional int32 framecount = 24;
|
|
125
|
+
*/
|
|
126
|
+
framecount?: number | undefined;
|
|
127
|
+
/**
|
|
128
|
+
* multi-choice answers (if any)
|
|
129
|
+
*
|
|
130
|
+
* @generated from field: repeated string choices = 25;
|
|
131
|
+
*/
|
|
132
|
+
choices: string[];
|
|
99
133
|
};
|
|
100
134
|
/**
|
|
101
|
-
* Describes the message
|
|
135
|
+
* Describes the message captchasonic.v1.Task.
|
|
102
136
|
* Use `create(TaskSchema)` to create a new message.
|
|
103
137
|
*/
|
|
104
138
|
export declare const TaskSchema: GenMessage<Task>;
|
|
105
139
|
/**
|
|
106
|
-
* @generated from message
|
|
140
|
+
* @generated from message captchasonic.v1.CreateTaskRequest
|
|
107
141
|
*/
|
|
108
|
-
export type CreateTaskRequest = Message<"
|
|
142
|
+
export type CreateTaskRequest = Message<"captchasonic.v1.CreateTaskRequest"> & {
|
|
109
143
|
/**
|
|
110
144
|
* @generated from field: string apiKey = 1;
|
|
111
145
|
*/
|
|
112
146
|
apiKey: string;
|
|
113
147
|
/**
|
|
114
|
-
* @generated from field:
|
|
148
|
+
* @generated from field: captchasonic.v1.Task task = 2;
|
|
115
149
|
*/
|
|
116
150
|
task?: Task | undefined;
|
|
117
151
|
};
|
|
118
152
|
/**
|
|
119
|
-
* Describes the message
|
|
153
|
+
* Describes the message captchasonic.v1.CreateTaskRequest.
|
|
120
154
|
* Use `create(CreateTaskRequestSchema)` to create a new message.
|
|
121
155
|
*/
|
|
122
156
|
export declare const CreateTaskRequestSchema: GenMessage<CreateTaskRequest>;
|
|
123
157
|
/**
|
|
124
|
-
* @generated from message
|
|
158
|
+
* @generated from message captchasonic.v1.CreateTaskResponse
|
|
125
159
|
*/
|
|
126
|
-
export type CreateTaskResponse = Message<"
|
|
160
|
+
export type CreateTaskResponse = Message<"captchasonic.v1.CreateTaskResponse"> & {
|
|
127
161
|
/**
|
|
128
162
|
* @generated from field: int32 errorId = 1;
|
|
129
163
|
*/
|
|
@@ -137,8 +171,6 @@ export type CreateTaskResponse = Message<"captchasonicai.v1.CreateTaskResponse">
|
|
|
137
171
|
*/
|
|
138
172
|
taskId: string;
|
|
139
173
|
/**
|
|
140
|
-
* legacy string map (backward compat)
|
|
141
|
-
*
|
|
142
174
|
* @generated from field: map<string, string> solution = 4;
|
|
143
175
|
*/
|
|
144
176
|
solution: {
|
|
@@ -149,61 +181,158 @@ export type CreateTaskResponse = Message<"captchasonicai.v1.CreateTaskResponse">
|
|
|
149
181
|
*/
|
|
150
182
|
status: string;
|
|
151
183
|
/**
|
|
152
|
-
*
|
|
153
|
-
*
|
|
154
|
-
* @generated from field: captchasonicai.v1.SolutionPayload typed_solution = 6;
|
|
184
|
+
* @generated from field: captchasonic.v1.SolutionPayload typed_solution = 6;
|
|
155
185
|
*/
|
|
156
186
|
typedSolution?: SolutionPayload | undefined;
|
|
187
|
+
/**
|
|
188
|
+
* ── REST parity fields ──────────────────────────────────────────────
|
|
189
|
+
* Extension expects same response shape as HTTP endpoint.
|
|
190
|
+
*
|
|
191
|
+
* 200 on success, error code on failure
|
|
192
|
+
*
|
|
193
|
+
* @generated from field: int32 code = 7;
|
|
194
|
+
*/
|
|
195
|
+
code: number;
|
|
196
|
+
/**
|
|
197
|
+
* empty on success, error message on failure
|
|
198
|
+
*
|
|
199
|
+
* @generated from field: string msg = 8;
|
|
200
|
+
*/
|
|
201
|
+
msg: string;
|
|
202
|
+
/**
|
|
203
|
+
* parsed target (only for internal users)
|
|
204
|
+
*
|
|
205
|
+
* @generated from field: string question = 9;
|
|
206
|
+
*/
|
|
207
|
+
question: string;
|
|
208
|
+
/**
|
|
209
|
+
* solver sub-type (objectClick, 33, etc.)
|
|
210
|
+
*
|
|
211
|
+
* @generated from field: string questionType = 10;
|
|
212
|
+
*/
|
|
213
|
+
questionType: string;
|
|
214
|
+
/**
|
|
215
|
+
* ── Video negotiation (ERROR_VIDEO_PAYLOAD_REQUIRED) ────────────────
|
|
216
|
+
* Returned when a video captcha target is detected but the client has
|
|
217
|
+
* not yet sent video frame data. Must match REST JSON shape exactly.
|
|
218
|
+
*
|
|
219
|
+
* "canvasvideo"
|
|
220
|
+
*
|
|
221
|
+
* @generated from field: string questionVariant = 11;
|
|
222
|
+
*/
|
|
223
|
+
questionVariant: string;
|
|
224
|
+
/**
|
|
225
|
+
* 0
|
|
226
|
+
*
|
|
227
|
+
* @generated from field: int32 retryAfterSec = 12;
|
|
228
|
+
*/
|
|
229
|
+
retryAfterSec: number;
|
|
230
|
+
/**
|
|
231
|
+
* true when video data needed
|
|
232
|
+
*
|
|
233
|
+
* @generated from field: bool video = 13;
|
|
234
|
+
*/
|
|
235
|
+
video: boolean;
|
|
236
|
+
/**
|
|
237
|
+
* format/duration/frames spec
|
|
238
|
+
*
|
|
239
|
+
* @generated from field: captchasonic.v1.VideoCanvasParams canvasParams = 14;
|
|
240
|
+
*/
|
|
241
|
+
canvasParams?: VideoCanvasParams | undefined;
|
|
242
|
+
/**
|
|
243
|
+
* echoed frame indices (top-level)
|
|
244
|
+
*
|
|
245
|
+
* @generated from field: repeated int32 frames = 15;
|
|
246
|
+
*/
|
|
247
|
+
frames: number[];
|
|
248
|
+
/**
|
|
249
|
+
* total frame count (top-level)
|
|
250
|
+
*
|
|
251
|
+
* @generated from field: optional int32 framecount = 16;
|
|
252
|
+
*/
|
|
253
|
+
framecount?: number | undefined;
|
|
157
254
|
};
|
|
158
255
|
/**
|
|
159
|
-
* Describes the message
|
|
256
|
+
* Describes the message captchasonic.v1.CreateTaskResponse.
|
|
160
257
|
* Use `create(CreateTaskResponseSchema)` to create a new message.
|
|
161
258
|
*/
|
|
162
259
|
export declare const CreateTaskResponseSchema: GenMessage<CreateTaskResponse>;
|
|
163
260
|
/**
|
|
164
|
-
*
|
|
261
|
+
* VideoCanvasParams tells the client what video format to send back.
|
|
262
|
+
*
|
|
263
|
+
* @generated from message captchasonic.v1.VideoCanvasParams
|
|
264
|
+
*/
|
|
265
|
+
export type VideoCanvasParams = Message<"captchasonic.v1.VideoCanvasParams"> & {
|
|
266
|
+
/**
|
|
267
|
+
* seconds (2 or 4)
|
|
268
|
+
*
|
|
269
|
+
* @generated from field: int32 duration = 1;
|
|
270
|
+
*/
|
|
271
|
+
duration: number;
|
|
272
|
+
/**
|
|
273
|
+
* ["avif","png","webm","gif"]
|
|
274
|
+
*
|
|
275
|
+
* @generated from field: repeated string format = 2;
|
|
276
|
+
*/
|
|
277
|
+
format: string[];
|
|
278
|
+
/**
|
|
279
|
+
* frame indices to extract (may be empty)
|
|
280
|
+
*
|
|
281
|
+
* @generated from field: repeated int32 frames = 3;
|
|
282
|
+
*/
|
|
283
|
+
frames: number[];
|
|
284
|
+
/**
|
|
285
|
+
* total frame count (null when not applicable)
|
|
286
|
+
*
|
|
287
|
+
* @generated from field: optional int32 framecount = 4;
|
|
288
|
+
*/
|
|
289
|
+
framecount?: number | undefined;
|
|
290
|
+
/**
|
|
291
|
+
* true when full video blob needed
|
|
292
|
+
*
|
|
293
|
+
* @generated from field: bool video = 5;
|
|
294
|
+
*/
|
|
295
|
+
video: boolean;
|
|
296
|
+
};
|
|
297
|
+
/**
|
|
298
|
+
* Describes the message captchasonic.v1.VideoCanvasParams.
|
|
299
|
+
* Use `create(VideoCanvasParamsSchema)` to create a new message.
|
|
165
300
|
*/
|
|
166
|
-
export
|
|
301
|
+
export declare const VideoCanvasParamsSchema: GenMessage<VideoCanvasParams>;
|
|
302
|
+
/**
|
|
303
|
+
* @generated from message captchasonic.v1.SolutionPayload
|
|
304
|
+
*/
|
|
305
|
+
export type SolutionPayload = Message<"captchasonic.v1.SolutionPayload"> & {
|
|
167
306
|
/**
|
|
168
|
-
* @generated from oneof
|
|
307
|
+
* @generated from oneof captchasonic.v1.SolutionPayload.kind
|
|
169
308
|
*/
|
|
170
309
|
kind: {
|
|
171
310
|
/**
|
|
172
|
-
*
|
|
173
|
-
*
|
|
174
|
-
* @generated from field: captchasonicai.v1.GridSolution grid = 1;
|
|
311
|
+
* @generated from field: captchasonic.v1.GridSolution grid = 1;
|
|
175
312
|
*/
|
|
176
313
|
value: GridSolution;
|
|
177
314
|
case: "grid";
|
|
178
315
|
} | {
|
|
179
316
|
/**
|
|
180
|
-
*
|
|
181
|
-
*
|
|
182
|
-
* @generated from field: captchasonicai.v1.SingleSolution single = 2;
|
|
317
|
+
* @generated from field: captchasonic.v1.SingleSolution single = 2;
|
|
183
318
|
*/
|
|
184
319
|
value: SingleSolution;
|
|
185
320
|
case: "single";
|
|
186
321
|
} | {
|
|
187
322
|
/**
|
|
188
|
-
*
|
|
189
|
-
*
|
|
190
|
-
* @generated from field: captchasonicai.v1.ClickSolution click = 3;
|
|
323
|
+
* @generated from field: captchasonic.v1.ClickSolution click = 3;
|
|
191
324
|
*/
|
|
192
325
|
value: ClickSolution;
|
|
193
326
|
case: "click";
|
|
194
327
|
} | {
|
|
195
328
|
/**
|
|
196
|
-
*
|
|
197
|
-
*
|
|
198
|
-
* @generated from field: captchasonicai.v1.SlideSolution slide = 4;
|
|
329
|
+
* @generated from field: captchasonic.v1.SlideSolution slide = 4;
|
|
199
330
|
*/
|
|
200
331
|
value: SlideSolution;
|
|
201
332
|
case: "slide";
|
|
202
333
|
} | {
|
|
203
334
|
/**
|
|
204
|
-
*
|
|
205
|
-
*
|
|
206
|
-
* @generated from field: captchasonicai.v1.TextSolution text = 5;
|
|
335
|
+
* @generated from field: captchasonic.v1.TextSolution text = 5;
|
|
207
336
|
*/
|
|
208
337
|
value: TextSolution;
|
|
209
338
|
case: "text";
|
|
@@ -213,45 +342,37 @@ export type SolutionPayload = Message<"captchasonicai.v1.SolutionPayload"> & {
|
|
|
213
342
|
};
|
|
214
343
|
};
|
|
215
344
|
/**
|
|
216
|
-
* Describes the message
|
|
345
|
+
* Describes the message captchasonic.v1.SolutionPayload.
|
|
217
346
|
* Use `create(SolutionPayloadSchema)` to create a new message.
|
|
218
347
|
*/
|
|
219
348
|
export declare const SolutionPayloadSchema: GenMessage<SolutionPayload>;
|
|
220
349
|
/**
|
|
221
|
-
* @generated from message
|
|
350
|
+
* @generated from message captchasonic.v1.GridSolution
|
|
222
351
|
*/
|
|
223
|
-
export type GridSolution = Message<"
|
|
352
|
+
export type GridSolution = Message<"captchasonic.v1.GridSolution"> & {
|
|
224
353
|
/**
|
|
225
|
-
* 0-indexed tile positions
|
|
226
|
-
*
|
|
227
354
|
* @generated from field: repeated int32 objects = 1;
|
|
228
355
|
*/
|
|
229
356
|
objects: number[];
|
|
230
357
|
/**
|
|
231
|
-
* grid dimension (3 or 4)
|
|
232
|
-
*
|
|
233
358
|
* @generated from field: int32 size = 2;
|
|
234
359
|
*/
|
|
235
360
|
size: number;
|
|
236
361
|
/**
|
|
237
|
-
* "multi"
|
|
238
|
-
*
|
|
239
362
|
* @generated from field: string type = 3;
|
|
240
363
|
*/
|
|
241
364
|
type: string;
|
|
242
365
|
};
|
|
243
366
|
/**
|
|
244
|
-
* Describes the message
|
|
367
|
+
* Describes the message captchasonic.v1.GridSolution.
|
|
245
368
|
* Use `create(GridSolutionSchema)` to create a new message.
|
|
246
369
|
*/
|
|
247
370
|
export declare const GridSolutionSchema: GenMessage<GridSolution>;
|
|
248
371
|
/**
|
|
249
|
-
* @generated from message
|
|
372
|
+
* @generated from message captchasonic.v1.SingleSolution
|
|
250
373
|
*/
|
|
251
|
-
export type SingleSolution = Message<"
|
|
374
|
+
export type SingleSolution = Message<"captchasonic.v1.SingleSolution"> & {
|
|
252
375
|
/**
|
|
253
|
-
* per-tile true/false
|
|
254
|
-
*
|
|
255
376
|
* @generated from field: repeated bool has_object = 1;
|
|
256
377
|
*/
|
|
257
378
|
hasObject: boolean[];
|
|
@@ -260,21 +381,19 @@ export type SingleSolution = Message<"captchasonicai.v1.SingleSolution"> & {
|
|
|
260
381
|
*/
|
|
261
382
|
size: number;
|
|
262
383
|
/**
|
|
263
|
-
* "single" or "multi"
|
|
264
|
-
*
|
|
265
384
|
* @generated from field: string type = 3;
|
|
266
385
|
*/
|
|
267
386
|
type: string;
|
|
268
387
|
};
|
|
269
388
|
/**
|
|
270
|
-
* Describes the message
|
|
389
|
+
* Describes the message captchasonic.v1.SingleSolution.
|
|
271
390
|
* Use `create(SingleSolutionSchema)` to create a new message.
|
|
272
391
|
*/
|
|
273
392
|
export declare const SingleSolutionSchema: GenMessage<SingleSolution>;
|
|
274
393
|
/**
|
|
275
|
-
* @generated from message
|
|
394
|
+
* @generated from message captchasonic.v1.ClickCoord
|
|
276
395
|
*/
|
|
277
|
-
export type ClickCoord = Message<"
|
|
396
|
+
export type ClickCoord = Message<"captchasonic.v1.ClickCoord"> & {
|
|
278
397
|
/**
|
|
279
398
|
* @generated from field: int32 x = 1;
|
|
280
399
|
*/
|
|
@@ -285,84 +404,74 @@ export type ClickCoord = Message<"captchasonicai.v1.ClickCoord"> & {
|
|
|
285
404
|
y: number;
|
|
286
405
|
};
|
|
287
406
|
/**
|
|
288
|
-
* Describes the message
|
|
407
|
+
* Describes the message captchasonic.v1.ClickCoord.
|
|
289
408
|
* Use `create(ClickCoordSchema)` to create a new message.
|
|
290
409
|
*/
|
|
291
410
|
export declare const ClickCoordSchema: GenMessage<ClickCoord>;
|
|
292
411
|
/**
|
|
293
|
-
* @generated from message
|
|
412
|
+
* @generated from message captchasonic.v1.ClickGroup
|
|
294
413
|
*/
|
|
295
|
-
export type ClickGroup = Message<"
|
|
414
|
+
export type ClickGroup = Message<"captchasonic.v1.ClickGroup"> & {
|
|
296
415
|
/**
|
|
297
|
-
*
|
|
298
|
-
*
|
|
299
|
-
* @generated from field: repeated captchasonicai.v1.ClickCoord coords = 1;
|
|
416
|
+
* @generated from field: repeated captchasonic.v1.ClickCoord coords = 1;
|
|
300
417
|
*/
|
|
301
418
|
coords: ClickCoord[];
|
|
302
419
|
};
|
|
303
420
|
/**
|
|
304
|
-
* Describes the message
|
|
421
|
+
* Describes the message captchasonic.v1.ClickGroup.
|
|
305
422
|
* Use `create(ClickGroupSchema)` to create a new message.
|
|
306
423
|
*/
|
|
307
424
|
export declare const ClickGroupSchema: GenMessage<ClickGroup>;
|
|
308
425
|
/**
|
|
309
|
-
* @generated from message
|
|
426
|
+
* @generated from message captchasonic.v1.ClickSolution
|
|
310
427
|
*/
|
|
311
|
-
export type ClickSolution = Message<"
|
|
428
|
+
export type ClickSolution = Message<"captchasonic.v1.ClickSolution"> & {
|
|
312
429
|
/**
|
|
313
|
-
*
|
|
314
|
-
*
|
|
315
|
-
* @generated from field: repeated captchasonicai.v1.ClickGroup groups = 1;
|
|
430
|
+
* @generated from field: repeated captchasonic.v1.ClickGroup groups = 1;
|
|
316
431
|
*/
|
|
317
432
|
groups: ClickGroup[];
|
|
318
433
|
};
|
|
319
434
|
/**
|
|
320
|
-
* Describes the message
|
|
435
|
+
* Describes the message captchasonic.v1.ClickSolution.
|
|
321
436
|
* Use `create(ClickSolutionSchema)` to create a new message.
|
|
322
437
|
*/
|
|
323
438
|
export declare const ClickSolutionSchema: GenMessage<ClickSolution>;
|
|
324
439
|
/**
|
|
325
|
-
* @generated from message
|
|
440
|
+
* @generated from message captchasonic.v1.SlideSolution
|
|
326
441
|
*/
|
|
327
|
-
export type SlideSolution = Message<"
|
|
442
|
+
export type SlideSolution = Message<"captchasonic.v1.SlideSolution"> & {
|
|
328
443
|
/**
|
|
329
|
-
* slide offset in pixels
|
|
330
|
-
*
|
|
331
444
|
* @generated from field: int32 x = 1;
|
|
332
445
|
*/
|
|
333
446
|
x: number;
|
|
334
447
|
/**
|
|
335
|
-
* full slide data JSON if needed
|
|
336
|
-
*
|
|
337
448
|
* @generated from field: string raw_json = 2;
|
|
338
449
|
*/
|
|
339
450
|
rawJson: string;
|
|
340
451
|
};
|
|
341
452
|
/**
|
|
342
|
-
* Describes the message
|
|
453
|
+
* Describes the message captchasonic.v1.SlideSolution.
|
|
343
454
|
* Use `create(SlideSolutionSchema)` to create a new message.
|
|
344
455
|
*/
|
|
345
456
|
export declare const SlideSolutionSchema: GenMessage<SlideSolution>;
|
|
346
457
|
/**
|
|
347
|
-
* @generated from message
|
|
458
|
+
* @generated from message captchasonic.v1.TextSolution
|
|
348
459
|
*/
|
|
349
|
-
export type TextSolution = Message<"
|
|
460
|
+
export type TextSolution = Message<"captchasonic.v1.TextSolution"> & {
|
|
350
461
|
/**
|
|
351
|
-
* one per image (OCR) or single element (audio)
|
|
352
|
-
*
|
|
353
462
|
* @generated from field: repeated string texts = 1;
|
|
354
463
|
*/
|
|
355
464
|
texts: string[];
|
|
356
465
|
};
|
|
357
466
|
/**
|
|
358
|
-
* Describes the message
|
|
467
|
+
* Describes the message captchasonic.v1.TextSolution.
|
|
359
468
|
* Use `create(TextSolutionSchema)` to create a new message.
|
|
360
469
|
*/
|
|
361
470
|
export declare const TextSolutionSchema: GenMessage<TextSolution>;
|
|
362
471
|
/**
|
|
363
|
-
* @generated from message
|
|
472
|
+
* @generated from message captchasonic.v1.GetTaskResultRequest
|
|
364
473
|
*/
|
|
365
|
-
export type GetTaskResultRequest = Message<"
|
|
474
|
+
export type GetTaskResultRequest = Message<"captchasonic.v1.GetTaskResultRequest"> & {
|
|
366
475
|
/**
|
|
367
476
|
* @generated from field: string apiKey = 1;
|
|
368
477
|
*/
|
|
@@ -373,14 +482,14 @@ export type GetTaskResultRequest = Message<"captchasonicai.v1.GetTaskResultReque
|
|
|
373
482
|
taskId: string;
|
|
374
483
|
};
|
|
375
484
|
/**
|
|
376
|
-
* Describes the message
|
|
485
|
+
* Describes the message captchasonic.v1.GetTaskResultRequest.
|
|
377
486
|
* Use `create(GetTaskResultRequestSchema)` to create a new message.
|
|
378
487
|
*/
|
|
379
488
|
export declare const GetTaskResultRequestSchema: GenMessage<GetTaskResultRequest>;
|
|
380
489
|
/**
|
|
381
|
-
* @generated from message
|
|
490
|
+
* @generated from message captchasonic.v1.GetTaskResultResponse
|
|
382
491
|
*/
|
|
383
|
-
export type GetTaskResultResponse = Message<"
|
|
492
|
+
export type GetTaskResultResponse = Message<"captchasonic.v1.GetTaskResultResponse"> & {
|
|
384
493
|
/**
|
|
385
494
|
* @generated from field: int32 errorId = 1;
|
|
386
495
|
*/
|
|
@@ -390,43 +499,39 @@ export type GetTaskResultResponse = Message<"captchasonicai.v1.GetTaskResultResp
|
|
|
390
499
|
*/
|
|
391
500
|
status: string;
|
|
392
501
|
/**
|
|
393
|
-
* legacy string map
|
|
394
|
-
*
|
|
395
502
|
* @generated from field: map<string, string> solution = 3;
|
|
396
503
|
*/
|
|
397
504
|
solution: {
|
|
398
505
|
[key: string]: string;
|
|
399
506
|
};
|
|
400
507
|
/**
|
|
401
|
-
*
|
|
402
|
-
*
|
|
403
|
-
* @generated from field: captchasonicai.v1.SolutionPayload typed_solution = 4;
|
|
508
|
+
* @generated from field: captchasonic.v1.SolutionPayload typed_solution = 4;
|
|
404
509
|
*/
|
|
405
510
|
typedSolution?: SolutionPayload | undefined;
|
|
406
511
|
};
|
|
407
512
|
/**
|
|
408
|
-
* Describes the message
|
|
513
|
+
* Describes the message captchasonic.v1.GetTaskResultResponse.
|
|
409
514
|
* Use `create(GetTaskResultResponseSchema)` to create a new message.
|
|
410
515
|
*/
|
|
411
516
|
export declare const GetTaskResultResponseSchema: GenMessage<GetTaskResultResponse>;
|
|
412
517
|
/**
|
|
413
|
-
* @generated from message
|
|
518
|
+
* @generated from message captchasonic.v1.GetBalanceRequest
|
|
414
519
|
*/
|
|
415
|
-
export type GetBalanceRequest = Message<"
|
|
520
|
+
export type GetBalanceRequest = Message<"captchasonic.v1.GetBalanceRequest"> & {
|
|
416
521
|
/**
|
|
417
522
|
* @generated from field: string apiKey = 1;
|
|
418
523
|
*/
|
|
419
524
|
apiKey: string;
|
|
420
525
|
};
|
|
421
526
|
/**
|
|
422
|
-
* Describes the message
|
|
527
|
+
* Describes the message captchasonic.v1.GetBalanceRequest.
|
|
423
528
|
* Use `create(GetBalanceRequestSchema)` to create a new message.
|
|
424
529
|
*/
|
|
425
530
|
export declare const GetBalanceRequestSchema: GenMessage<GetBalanceRequest>;
|
|
426
531
|
/**
|
|
427
|
-
* @generated from message
|
|
532
|
+
* @generated from message captchasonic.v1.GetBalanceResponse
|
|
428
533
|
*/
|
|
429
|
-
export type GetBalanceResponse = Message<"
|
|
534
|
+
export type GetBalanceResponse = Message<"captchasonic.v1.GetBalanceResponse"> & {
|
|
430
535
|
/**
|
|
431
536
|
* @generated from field: double balance = 1;
|
|
432
537
|
*/
|
|
@@ -441,23 +546,23 @@ export type GetBalanceResponse = Message<"captchasonicai.v1.GetBalanceResponse">
|
|
|
441
546
|
status: string;
|
|
442
547
|
};
|
|
443
548
|
/**
|
|
444
|
-
* Describes the message
|
|
549
|
+
* Describes the message captchasonic.v1.GetBalanceResponse.
|
|
445
550
|
* Use `create(GetBalanceResponseSchema)` to create a new message.
|
|
446
551
|
*/
|
|
447
552
|
export declare const GetBalanceResponseSchema: GenMessage<GetBalanceResponse>;
|
|
448
553
|
/**
|
|
449
|
-
* @generated from message
|
|
554
|
+
* @generated from message captchasonic.v1.HealthCheckRequest
|
|
450
555
|
*/
|
|
451
|
-
export type HealthCheckRequest = Message<"
|
|
556
|
+
export type HealthCheckRequest = Message<"captchasonic.v1.HealthCheckRequest"> & {};
|
|
452
557
|
/**
|
|
453
|
-
* Describes the message
|
|
558
|
+
* Describes the message captchasonic.v1.HealthCheckRequest.
|
|
454
559
|
* Use `create(HealthCheckRequestSchema)` to create a new message.
|
|
455
560
|
*/
|
|
456
561
|
export declare const HealthCheckRequestSchema: GenMessage<HealthCheckRequest>;
|
|
457
562
|
/**
|
|
458
|
-
* @generated from message
|
|
563
|
+
* @generated from message captchasonic.v1.HealthCheckResponse
|
|
459
564
|
*/
|
|
460
|
-
export type HealthCheckResponse = Message<"
|
|
565
|
+
export type HealthCheckResponse = Message<"captchasonic.v1.HealthCheckResponse"> & {
|
|
461
566
|
/**
|
|
462
567
|
* @generated from field: bool healthy = 1;
|
|
463
568
|
*/
|
|
@@ -468,16 +573,16 @@ export type HealthCheckResponse = Message<"captchasonicai.v1.HealthCheckResponse
|
|
|
468
573
|
version: string;
|
|
469
574
|
};
|
|
470
575
|
/**
|
|
471
|
-
* Describes the message
|
|
576
|
+
* Describes the message captchasonic.v1.HealthCheckResponse.
|
|
472
577
|
* Use `create(HealthCheckResponseSchema)` to create a new message.
|
|
473
578
|
*/
|
|
474
579
|
export declare const HealthCheckResponseSchema: GenMessage<HealthCheckResponse>;
|
|
475
580
|
/**
|
|
476
|
-
* @generated from service
|
|
581
|
+
* @generated from service captchasonic.v1.SonicService
|
|
477
582
|
*/
|
|
478
583
|
export declare const SonicService: GenService<{
|
|
479
584
|
/**
|
|
480
|
-
* @generated from rpc
|
|
585
|
+
* @generated from rpc captchasonic.v1.SonicService.CreateTask
|
|
481
586
|
*/
|
|
482
587
|
createTask: {
|
|
483
588
|
methodKind: "unary";
|
|
@@ -485,7 +590,7 @@ export declare const SonicService: GenService<{
|
|
|
485
590
|
output: typeof CreateTaskResponseSchema;
|
|
486
591
|
};
|
|
487
592
|
/**
|
|
488
|
-
* @generated from rpc
|
|
593
|
+
* @generated from rpc captchasonic.v1.SonicService.GetTaskResult
|
|
489
594
|
*/
|
|
490
595
|
getTaskResult: {
|
|
491
596
|
methodKind: "unary";
|
|
@@ -493,7 +598,7 @@ export declare const SonicService: GenService<{
|
|
|
493
598
|
output: typeof GetTaskResultResponseSchema;
|
|
494
599
|
};
|
|
495
600
|
/**
|
|
496
|
-
* @generated from rpc
|
|
601
|
+
* @generated from rpc captchasonic.v1.SonicService.GetBalance
|
|
497
602
|
*/
|
|
498
603
|
getBalance: {
|
|
499
604
|
methodKind: "unary";
|
|
@@ -501,7 +606,7 @@ export declare const SonicService: GenService<{
|
|
|
501
606
|
output: typeof GetBalanceResponseSchema;
|
|
502
607
|
};
|
|
503
608
|
/**
|
|
504
|
-
* @generated from rpc
|
|
609
|
+
* @generated from rpc captchasonic.v1.SonicService.HealthCheck
|
|
505
610
|
*/
|
|
506
611
|
healthCheck: {
|
|
507
612
|
methodKind: "unary";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"sonic_pb.d.ts","sourceRoot":"","sources":["../../../../src/gen/captchasonic/v1/sonic_pb.ts"],"names":[],"mappings":"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"}
|