@evalops/sdk-ts 0.1.84 → 0.1.86
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.
|
@@ -0,0 +1,911 @@
|
|
|
1
|
+
import type { GenEnum, GenFile, GenMessage, GenService } from "@bufbuild/protobuf/codegenv2";
|
|
2
|
+
import type { EvidenceRef, TimeRange } from "../../common/v1/analytics_pb.js";
|
|
3
|
+
import type { RiskLevel } from "../../common/v1/risk_pb.js";
|
|
4
|
+
import type { Timestamp } from "@bufbuild/protobuf/wkt";
|
|
5
|
+
import type { RecallResult, Scope } from "../../memory/v1/memory_pb.js";
|
|
6
|
+
import type { JsonObject, Message } from "@bufbuild/protobuf";
|
|
7
|
+
/**
|
|
8
|
+
* Describes the file chronicle/v1/chronicle.proto.
|
|
9
|
+
*/
|
|
10
|
+
export declare const file_chronicle_v1_chronicle: GenFile;
|
|
11
|
+
/**
|
|
12
|
+
* @generated from message chronicle.v1.Device
|
|
13
|
+
*/
|
|
14
|
+
export type Device = Message<"chronicle.v1.Device"> & {
|
|
15
|
+
/**
|
|
16
|
+
* @generated from field: string device_id = 1;
|
|
17
|
+
*/
|
|
18
|
+
deviceId: string;
|
|
19
|
+
/**
|
|
20
|
+
* @generated from field: string organization_id = 2;
|
|
21
|
+
*/
|
|
22
|
+
organizationId: string;
|
|
23
|
+
/**
|
|
24
|
+
* @generated from field: string workspace_id = 3;
|
|
25
|
+
*/
|
|
26
|
+
workspaceId: string;
|
|
27
|
+
/**
|
|
28
|
+
* @generated from field: string user_id = 4;
|
|
29
|
+
*/
|
|
30
|
+
userId: string;
|
|
31
|
+
/**
|
|
32
|
+
* @generated from field: string hostname = 5;
|
|
33
|
+
*/
|
|
34
|
+
hostname: string;
|
|
35
|
+
/**
|
|
36
|
+
* @generated from field: string app_version = 6;
|
|
37
|
+
*/
|
|
38
|
+
appVersion: string;
|
|
39
|
+
/**
|
|
40
|
+
* @generated from field: chronicle.v1.CaptureMode capture_mode = 7;
|
|
41
|
+
*/
|
|
42
|
+
captureMode: CaptureMode;
|
|
43
|
+
/**
|
|
44
|
+
* @generated from field: bool paused = 8;
|
|
45
|
+
*/
|
|
46
|
+
paused: boolean;
|
|
47
|
+
/**
|
|
48
|
+
* @generated from field: string pause_reason = 9;
|
|
49
|
+
*/
|
|
50
|
+
pauseReason: string;
|
|
51
|
+
/**
|
|
52
|
+
* @generated from field: google.protobuf.Timestamp registered_at = 10;
|
|
53
|
+
*/
|
|
54
|
+
registeredAt?: Timestamp | undefined;
|
|
55
|
+
/**
|
|
56
|
+
* @generated from field: google.protobuf.Timestamp last_heartbeat_at = 11;
|
|
57
|
+
*/
|
|
58
|
+
lastHeartbeatAt?: Timestamp | undefined;
|
|
59
|
+
/**
|
|
60
|
+
* @generated from field: map<string, string> metadata = 12;
|
|
61
|
+
*/
|
|
62
|
+
metadata: {
|
|
63
|
+
[key: string]: string;
|
|
64
|
+
};
|
|
65
|
+
};
|
|
66
|
+
/**
|
|
67
|
+
* Describes the message chronicle.v1.Device.
|
|
68
|
+
* Use `create(DeviceSchema)` to create a new message.
|
|
69
|
+
*/
|
|
70
|
+
export declare const DeviceSchema: GenMessage<Device>;
|
|
71
|
+
/**
|
|
72
|
+
* @generated from message chronicle.v1.RegisterDeviceRequest
|
|
73
|
+
*/
|
|
74
|
+
export type RegisterDeviceRequest = Message<"chronicle.v1.RegisterDeviceRequest"> & {
|
|
75
|
+
/**
|
|
76
|
+
* @generated from field: string device_id = 1;
|
|
77
|
+
*/
|
|
78
|
+
deviceId: string;
|
|
79
|
+
/**
|
|
80
|
+
* @generated from field: string organization_id = 2;
|
|
81
|
+
*/
|
|
82
|
+
organizationId: string;
|
|
83
|
+
/**
|
|
84
|
+
* @generated from field: string workspace_id = 3;
|
|
85
|
+
*/
|
|
86
|
+
workspaceId: string;
|
|
87
|
+
/**
|
|
88
|
+
* @generated from field: string user_id = 4;
|
|
89
|
+
*/
|
|
90
|
+
userId: string;
|
|
91
|
+
/**
|
|
92
|
+
* @generated from field: string hostname = 5;
|
|
93
|
+
*/
|
|
94
|
+
hostname: string;
|
|
95
|
+
/**
|
|
96
|
+
* @generated from field: string app_version = 6;
|
|
97
|
+
*/
|
|
98
|
+
appVersion: string;
|
|
99
|
+
/**
|
|
100
|
+
* @generated from field: map<string, string> metadata = 7;
|
|
101
|
+
*/
|
|
102
|
+
metadata: {
|
|
103
|
+
[key: string]: string;
|
|
104
|
+
};
|
|
105
|
+
};
|
|
106
|
+
/**
|
|
107
|
+
* Describes the message chronicle.v1.RegisterDeviceRequest.
|
|
108
|
+
* Use `create(RegisterDeviceRequestSchema)` to create a new message.
|
|
109
|
+
*/
|
|
110
|
+
export declare const RegisterDeviceRequestSchema: GenMessage<RegisterDeviceRequest>;
|
|
111
|
+
/**
|
|
112
|
+
* @generated from message chronicle.v1.RegisterDeviceResponse
|
|
113
|
+
*/
|
|
114
|
+
export type RegisterDeviceResponse = Message<"chronicle.v1.RegisterDeviceResponse"> & {
|
|
115
|
+
/**
|
|
116
|
+
* @generated from field: chronicle.v1.Device device = 1;
|
|
117
|
+
*/
|
|
118
|
+
device?: Device | undefined;
|
|
119
|
+
/**
|
|
120
|
+
* @generated from field: chronicle.v1.CapturePolicy policy = 2;
|
|
121
|
+
*/
|
|
122
|
+
policy?: CapturePolicy | undefined;
|
|
123
|
+
};
|
|
124
|
+
/**
|
|
125
|
+
* Describes the message chronicle.v1.RegisterDeviceResponse.
|
|
126
|
+
* Use `create(RegisterDeviceResponseSchema)` to create a new message.
|
|
127
|
+
*/
|
|
128
|
+
export declare const RegisterDeviceResponseSchema: GenMessage<RegisterDeviceResponse>;
|
|
129
|
+
/**
|
|
130
|
+
* @generated from message chronicle.v1.HeartbeatRequest
|
|
131
|
+
*/
|
|
132
|
+
export type HeartbeatRequest = Message<"chronicle.v1.HeartbeatRequest"> & {
|
|
133
|
+
/**
|
|
134
|
+
* @generated from field: string device_id = 1;
|
|
135
|
+
*/
|
|
136
|
+
deviceId: string;
|
|
137
|
+
/**
|
|
138
|
+
* @generated from field: string organization_id = 2;
|
|
139
|
+
*/
|
|
140
|
+
organizationId: string;
|
|
141
|
+
/**
|
|
142
|
+
* @generated from field: int32 pending_frame_count = 3;
|
|
143
|
+
*/
|
|
144
|
+
pendingFrameCount: number;
|
|
145
|
+
/**
|
|
146
|
+
* @generated from field: int64 pending_bytes = 4;
|
|
147
|
+
*/
|
|
148
|
+
pendingBytes: bigint;
|
|
149
|
+
};
|
|
150
|
+
/**
|
|
151
|
+
* Describes the message chronicle.v1.HeartbeatRequest.
|
|
152
|
+
* Use `create(HeartbeatRequestSchema)` to create a new message.
|
|
153
|
+
*/
|
|
154
|
+
export declare const HeartbeatRequestSchema: GenMessage<HeartbeatRequest>;
|
|
155
|
+
/**
|
|
156
|
+
* @generated from message chronicle.v1.HeartbeatResponse
|
|
157
|
+
*/
|
|
158
|
+
export type HeartbeatResponse = Message<"chronicle.v1.HeartbeatResponse"> & {
|
|
159
|
+
/**
|
|
160
|
+
* @generated from field: chronicle.v1.Device device = 1;
|
|
161
|
+
*/
|
|
162
|
+
device?: Device | undefined;
|
|
163
|
+
/**
|
|
164
|
+
* @generated from field: chronicle.v1.CapturePolicy policy = 2;
|
|
165
|
+
*/
|
|
166
|
+
policy?: CapturePolicy | undefined;
|
|
167
|
+
};
|
|
168
|
+
/**
|
|
169
|
+
* Describes the message chronicle.v1.HeartbeatResponse.
|
|
170
|
+
* Use `create(HeartbeatResponseSchema)` to create a new message.
|
|
171
|
+
*/
|
|
172
|
+
export declare const HeartbeatResponseSchema: GenMessage<HeartbeatResponse>;
|
|
173
|
+
/**
|
|
174
|
+
* @generated from message chronicle.v1.PauseSessionRequest
|
|
175
|
+
*/
|
|
176
|
+
export type PauseSessionRequest = Message<"chronicle.v1.PauseSessionRequest"> & {
|
|
177
|
+
/**
|
|
178
|
+
* @generated from field: string device_id = 1;
|
|
179
|
+
*/
|
|
180
|
+
deviceId: string;
|
|
181
|
+
/**
|
|
182
|
+
* @generated from field: string organization_id = 2;
|
|
183
|
+
*/
|
|
184
|
+
organizationId: string;
|
|
185
|
+
/**
|
|
186
|
+
* @generated from field: string reason = 3;
|
|
187
|
+
*/
|
|
188
|
+
reason: string;
|
|
189
|
+
/**
|
|
190
|
+
* @generated from field: google.protobuf.Timestamp until = 4;
|
|
191
|
+
*/
|
|
192
|
+
until?: Timestamp | undefined;
|
|
193
|
+
};
|
|
194
|
+
/**
|
|
195
|
+
* Describes the message chronicle.v1.PauseSessionRequest.
|
|
196
|
+
* Use `create(PauseSessionRequestSchema)` to create a new message.
|
|
197
|
+
*/
|
|
198
|
+
export declare const PauseSessionRequestSchema: GenMessage<PauseSessionRequest>;
|
|
199
|
+
/**
|
|
200
|
+
* @generated from message chronicle.v1.PauseSessionResponse
|
|
201
|
+
*/
|
|
202
|
+
export type PauseSessionResponse = Message<"chronicle.v1.PauseSessionResponse"> & {
|
|
203
|
+
/**
|
|
204
|
+
* @generated from field: chronicle.v1.Device device = 1;
|
|
205
|
+
*/
|
|
206
|
+
device?: Device | undefined;
|
|
207
|
+
};
|
|
208
|
+
/**
|
|
209
|
+
* Describes the message chronicle.v1.PauseSessionResponse.
|
|
210
|
+
* Use `create(PauseSessionResponseSchema)` to create a new message.
|
|
211
|
+
*/
|
|
212
|
+
export declare const PauseSessionResponseSchema: GenMessage<PauseSessionResponse>;
|
|
213
|
+
/**
|
|
214
|
+
* @generated from message chronicle.v1.ResumeSessionRequest
|
|
215
|
+
*/
|
|
216
|
+
export type ResumeSessionRequest = Message<"chronicle.v1.ResumeSessionRequest"> & {
|
|
217
|
+
/**
|
|
218
|
+
* @generated from field: string device_id = 1;
|
|
219
|
+
*/
|
|
220
|
+
deviceId: string;
|
|
221
|
+
/**
|
|
222
|
+
* @generated from field: string organization_id = 2;
|
|
223
|
+
*/
|
|
224
|
+
organizationId: string;
|
|
225
|
+
/**
|
|
226
|
+
* @generated from field: string reason = 3;
|
|
227
|
+
*/
|
|
228
|
+
reason: string;
|
|
229
|
+
};
|
|
230
|
+
/**
|
|
231
|
+
* Describes the message chronicle.v1.ResumeSessionRequest.
|
|
232
|
+
* Use `create(ResumeSessionRequestSchema)` to create a new message.
|
|
233
|
+
*/
|
|
234
|
+
export declare const ResumeSessionRequestSchema: GenMessage<ResumeSessionRequest>;
|
|
235
|
+
/**
|
|
236
|
+
* @generated from message chronicle.v1.ResumeSessionResponse
|
|
237
|
+
*/
|
|
238
|
+
export type ResumeSessionResponse = Message<"chronicle.v1.ResumeSessionResponse"> & {
|
|
239
|
+
/**
|
|
240
|
+
* @generated from field: chronicle.v1.Device device = 1;
|
|
241
|
+
*/
|
|
242
|
+
device?: Device | undefined;
|
|
243
|
+
};
|
|
244
|
+
/**
|
|
245
|
+
* Describes the message chronicle.v1.ResumeSessionResponse.
|
|
246
|
+
* Use `create(ResumeSessionResponseSchema)` to create a new message.
|
|
247
|
+
*/
|
|
248
|
+
export declare const ResumeSessionResponseSchema: GenMessage<ResumeSessionResponse>;
|
|
249
|
+
/**
|
|
250
|
+
* @generated from message chronicle.v1.SubmitBatchRequest
|
|
251
|
+
*/
|
|
252
|
+
export type SubmitBatchRequest = Message<"chronicle.v1.SubmitBatchRequest"> & {
|
|
253
|
+
/**
|
|
254
|
+
* @generated from field: chronicle.v1.FrameBatch batch = 1;
|
|
255
|
+
*/
|
|
256
|
+
batch?: FrameBatch | undefined;
|
|
257
|
+
/**
|
|
258
|
+
* @generated from field: bool local_only = 2;
|
|
259
|
+
*/
|
|
260
|
+
localOnly: boolean;
|
|
261
|
+
};
|
|
262
|
+
/**
|
|
263
|
+
* Describes the message chronicle.v1.SubmitBatchRequest.
|
|
264
|
+
* Use `create(SubmitBatchRequestSchema)` to create a new message.
|
|
265
|
+
*/
|
|
266
|
+
export declare const SubmitBatchRequestSchema: GenMessage<SubmitBatchRequest>;
|
|
267
|
+
/**
|
|
268
|
+
* @generated from message chronicle.v1.SubmitBatchResponse
|
|
269
|
+
*/
|
|
270
|
+
export type SubmitBatchResponse = Message<"chronicle.v1.SubmitBatchResponse"> & {
|
|
271
|
+
/**
|
|
272
|
+
* @generated from field: string batch_id = 1;
|
|
273
|
+
*/
|
|
274
|
+
batchId: string;
|
|
275
|
+
/**
|
|
276
|
+
* @generated from field: string artifact_id = 2;
|
|
277
|
+
*/
|
|
278
|
+
artifactId: string;
|
|
279
|
+
/**
|
|
280
|
+
* @generated from field: int32 accepted_frame_count = 3;
|
|
281
|
+
*/
|
|
282
|
+
acceptedFrameCount: number;
|
|
283
|
+
/**
|
|
284
|
+
* @generated from field: int32 dropped_frame_count = 4;
|
|
285
|
+
*/
|
|
286
|
+
droppedFrameCount: number;
|
|
287
|
+
/**
|
|
288
|
+
* @generated from field: repeated chronicle.v1.FrameReceipt receipts = 5;
|
|
289
|
+
*/
|
|
290
|
+
receipts: FrameReceipt[];
|
|
291
|
+
/**
|
|
292
|
+
* @generated from field: repeated string memory_ids = 6;
|
|
293
|
+
*/
|
|
294
|
+
memoryIds: string[];
|
|
295
|
+
/**
|
|
296
|
+
* @generated from field: chronicle.v1.CapturePolicy policy = 7;
|
|
297
|
+
*/
|
|
298
|
+
policy?: CapturePolicy | undefined;
|
|
299
|
+
};
|
|
300
|
+
/**
|
|
301
|
+
* Describes the message chronicle.v1.SubmitBatchResponse.
|
|
302
|
+
* Use `create(SubmitBatchResponseSchema)` to create a new message.
|
|
303
|
+
*/
|
|
304
|
+
export declare const SubmitBatchResponseSchema: GenMessage<SubmitBatchResponse>;
|
|
305
|
+
/**
|
|
306
|
+
* @generated from message chronicle.v1.FrameBatch
|
|
307
|
+
*/
|
|
308
|
+
export type FrameBatch = Message<"chronicle.v1.FrameBatch"> & {
|
|
309
|
+
/**
|
|
310
|
+
* @generated from field: string batch_id = 1;
|
|
311
|
+
*/
|
|
312
|
+
batchId: string;
|
|
313
|
+
/**
|
|
314
|
+
* @generated from field: string device_id = 2;
|
|
315
|
+
*/
|
|
316
|
+
deviceId: string;
|
|
317
|
+
/**
|
|
318
|
+
* @generated from field: string organization_id = 3;
|
|
319
|
+
*/
|
|
320
|
+
organizationId: string;
|
|
321
|
+
/**
|
|
322
|
+
* @generated from field: string workspace_id = 4;
|
|
323
|
+
*/
|
|
324
|
+
workspaceId: string;
|
|
325
|
+
/**
|
|
326
|
+
* @generated from field: string user_id = 5;
|
|
327
|
+
*/
|
|
328
|
+
userId: string;
|
|
329
|
+
/**
|
|
330
|
+
* @generated from field: string project_id = 6;
|
|
331
|
+
*/
|
|
332
|
+
projectId: string;
|
|
333
|
+
/**
|
|
334
|
+
* @generated from field: string repository = 7;
|
|
335
|
+
*/
|
|
336
|
+
repository: string;
|
|
337
|
+
/**
|
|
338
|
+
* capture_window is the canonical inclusive/exclusive window for the batch.
|
|
339
|
+
* started_at and ended_at remain for existing desktop clients and should be
|
|
340
|
+
* treated as compatibility mirrors of capture_window.
|
|
341
|
+
*
|
|
342
|
+
* @generated from field: common.v1.TimeRange capture_window = 14;
|
|
343
|
+
*/
|
|
344
|
+
captureWindow?: TimeRange | undefined;
|
|
345
|
+
/**
|
|
346
|
+
* @generated from field: google.protobuf.Timestamp started_at = 8;
|
|
347
|
+
*/
|
|
348
|
+
startedAt?: Timestamp | undefined;
|
|
349
|
+
/**
|
|
350
|
+
* @generated from field: google.protobuf.Timestamp ended_at = 9;
|
|
351
|
+
*/
|
|
352
|
+
endedAt?: Timestamp | undefined;
|
|
353
|
+
/**
|
|
354
|
+
* @generated from field: repeated chronicle.v1.CapturedFrame frames = 10;
|
|
355
|
+
*/
|
|
356
|
+
frames: CapturedFrame[];
|
|
357
|
+
/**
|
|
358
|
+
* @generated from field: chronicle.v1.DropCounts dropped_counts = 11;
|
|
359
|
+
*/
|
|
360
|
+
droppedCounts?: DropCounts | undefined;
|
|
361
|
+
/**
|
|
362
|
+
* @generated from field: common.v1.RiskLevel risk_level = 12;
|
|
363
|
+
*/
|
|
364
|
+
riskLevel: RiskLevel;
|
|
365
|
+
/**
|
|
366
|
+
* @generated from field: google.protobuf.Struct metadata = 13;
|
|
367
|
+
*/
|
|
368
|
+
metadata?: JsonObject | undefined;
|
|
369
|
+
};
|
|
370
|
+
/**
|
|
371
|
+
* Describes the message chronicle.v1.FrameBatch.
|
|
372
|
+
* Use `create(FrameBatchSchema)` to create a new message.
|
|
373
|
+
*/
|
|
374
|
+
export declare const FrameBatchSchema: GenMessage<FrameBatch>;
|
|
375
|
+
/**
|
|
376
|
+
* @generated from message chronicle.v1.CapturedFrame
|
|
377
|
+
*/
|
|
378
|
+
export type CapturedFrame = Message<"chronicle.v1.CapturedFrame"> & {
|
|
379
|
+
/**
|
|
380
|
+
* @generated from field: string frame_hash = 1;
|
|
381
|
+
*/
|
|
382
|
+
frameHash: string;
|
|
383
|
+
/**
|
|
384
|
+
* @generated from field: uint64 perceptual_hash = 2;
|
|
385
|
+
*/
|
|
386
|
+
perceptualHash: bigint;
|
|
387
|
+
/**
|
|
388
|
+
* @generated from field: google.protobuf.Timestamp captured_at = 3;
|
|
389
|
+
*/
|
|
390
|
+
capturedAt?: Timestamp | undefined;
|
|
391
|
+
/**
|
|
392
|
+
* @generated from field: string bundle_id = 4;
|
|
393
|
+
*/
|
|
394
|
+
bundleId: string;
|
|
395
|
+
/**
|
|
396
|
+
* @generated from field: string app_name = 5;
|
|
397
|
+
*/
|
|
398
|
+
appName: string;
|
|
399
|
+
/**
|
|
400
|
+
* @generated from field: string window_title = 6;
|
|
401
|
+
*/
|
|
402
|
+
windowTitle: string;
|
|
403
|
+
/**
|
|
404
|
+
* @generated from field: string document_path = 7;
|
|
405
|
+
*/
|
|
406
|
+
documentPath: string;
|
|
407
|
+
/**
|
|
408
|
+
* @generated from field: string ocr_text = 8;
|
|
409
|
+
*/
|
|
410
|
+
ocrText: string;
|
|
411
|
+
/**
|
|
412
|
+
* @generated from field: float ocr_confidence = 9;
|
|
413
|
+
*/
|
|
414
|
+
ocrConfidence: number;
|
|
415
|
+
/**
|
|
416
|
+
* @generated from field: int32 width_px = 10;
|
|
417
|
+
*/
|
|
418
|
+
widthPx: number;
|
|
419
|
+
/**
|
|
420
|
+
* @generated from field: int32 height_px = 11;
|
|
421
|
+
*/
|
|
422
|
+
heightPx: number;
|
|
423
|
+
/**
|
|
424
|
+
* @generated from field: int64 bytes_png = 12;
|
|
425
|
+
*/
|
|
426
|
+
bytesPng: bigint;
|
|
427
|
+
/**
|
|
428
|
+
* @generated from field: google.protobuf.Struct metadata = 13;
|
|
429
|
+
*/
|
|
430
|
+
metadata?: JsonObject | undefined;
|
|
431
|
+
};
|
|
432
|
+
/**
|
|
433
|
+
* Describes the message chronicle.v1.CapturedFrame.
|
|
434
|
+
* Use `create(CapturedFrameSchema)` to create a new message.
|
|
435
|
+
*/
|
|
436
|
+
export declare const CapturedFrameSchema: GenMessage<CapturedFrame>;
|
|
437
|
+
/**
|
|
438
|
+
* @generated from message chronicle.v1.DropCounts
|
|
439
|
+
*/
|
|
440
|
+
export type DropCounts = Message<"chronicle.v1.DropCounts"> & {
|
|
441
|
+
/**
|
|
442
|
+
* @generated from field: int32 secret = 1;
|
|
443
|
+
*/
|
|
444
|
+
secret: number;
|
|
445
|
+
/**
|
|
446
|
+
* @generated from field: int32 duplicate = 2;
|
|
447
|
+
*/
|
|
448
|
+
duplicate: number;
|
|
449
|
+
/**
|
|
450
|
+
* @generated from field: int32 denied_app = 3;
|
|
451
|
+
*/
|
|
452
|
+
deniedApp: number;
|
|
453
|
+
/**
|
|
454
|
+
* @generated from field: int32 denied_path = 4;
|
|
455
|
+
*/
|
|
456
|
+
deniedPath: number;
|
|
457
|
+
};
|
|
458
|
+
/**
|
|
459
|
+
* Describes the message chronicle.v1.DropCounts.
|
|
460
|
+
* Use `create(DropCountsSchema)` to create a new message.
|
|
461
|
+
*/
|
|
462
|
+
export declare const DropCountsSchema: GenMessage<DropCounts>;
|
|
463
|
+
/**
|
|
464
|
+
* @generated from message chronicle.v1.FrameReceipt
|
|
465
|
+
*/
|
|
466
|
+
export type FrameReceipt = Message<"chronicle.v1.FrameReceipt"> & {
|
|
467
|
+
/**
|
|
468
|
+
* @generated from field: string frame_hash = 1;
|
|
469
|
+
*/
|
|
470
|
+
frameHash: string;
|
|
471
|
+
/**
|
|
472
|
+
* @generated from field: chronicle.v1.CaptureDecision decision = 2;
|
|
473
|
+
*/
|
|
474
|
+
decision: CaptureDecision;
|
|
475
|
+
/**
|
|
476
|
+
* @generated from field: string reason = 3;
|
|
477
|
+
*/
|
|
478
|
+
reason: string;
|
|
479
|
+
/**
|
|
480
|
+
* @generated from field: string memory_id = 4;
|
|
481
|
+
*/
|
|
482
|
+
memoryId: string;
|
|
483
|
+
/**
|
|
484
|
+
* @generated from field: common.v1.EvidenceRef evidence = 5;
|
|
485
|
+
*/
|
|
486
|
+
evidence?: EvidenceRef | undefined;
|
|
487
|
+
};
|
|
488
|
+
/**
|
|
489
|
+
* Describes the message chronicle.v1.FrameReceipt.
|
|
490
|
+
* Use `create(FrameReceiptSchema)` to create a new message.
|
|
491
|
+
*/
|
|
492
|
+
export declare const FrameReceiptSchema: GenMessage<FrameReceipt>;
|
|
493
|
+
/**
|
|
494
|
+
* @generated from message chronicle.v1.AcknowledgeMemoryRequest
|
|
495
|
+
*/
|
|
496
|
+
export type AcknowledgeMemoryRequest = Message<"chronicle.v1.AcknowledgeMemoryRequest"> & {
|
|
497
|
+
/**
|
|
498
|
+
* @generated from field: string memory_id = 1;
|
|
499
|
+
*/
|
|
500
|
+
memoryId: string;
|
|
501
|
+
/**
|
|
502
|
+
* @generated from field: string organization_id = 2;
|
|
503
|
+
*/
|
|
504
|
+
organizationId: string;
|
|
505
|
+
/**
|
|
506
|
+
* @generated from field: string device_id = 3;
|
|
507
|
+
*/
|
|
508
|
+
deviceId: string;
|
|
509
|
+
/**
|
|
510
|
+
* @generated from field: string batch_id = 4;
|
|
511
|
+
*/
|
|
512
|
+
batchId: string;
|
|
513
|
+
/**
|
|
514
|
+
* @generated from field: string frame_hash = 5;
|
|
515
|
+
*/
|
|
516
|
+
frameHash: string;
|
|
517
|
+
/**
|
|
518
|
+
* @generated from field: bool accepted = 6;
|
|
519
|
+
*/
|
|
520
|
+
accepted: boolean;
|
|
521
|
+
/**
|
|
522
|
+
* @generated from field: string reason = 7;
|
|
523
|
+
*/
|
|
524
|
+
reason: string;
|
|
525
|
+
};
|
|
526
|
+
/**
|
|
527
|
+
* Describes the message chronicle.v1.AcknowledgeMemoryRequest.
|
|
528
|
+
* Use `create(AcknowledgeMemoryRequestSchema)` to create a new message.
|
|
529
|
+
*/
|
|
530
|
+
export declare const AcknowledgeMemoryRequestSchema: GenMessage<AcknowledgeMemoryRequest>;
|
|
531
|
+
/**
|
|
532
|
+
* @generated from message chronicle.v1.AcknowledgeMemoryResponse
|
|
533
|
+
*/
|
|
534
|
+
export type AcknowledgeMemoryResponse = Message<"chronicle.v1.AcknowledgeMemoryResponse"> & {
|
|
535
|
+
/**
|
|
536
|
+
* @generated from field: string memory_id = 1;
|
|
537
|
+
*/
|
|
538
|
+
memoryId: string;
|
|
539
|
+
/**
|
|
540
|
+
* @generated from field: bool acknowledged = 2;
|
|
541
|
+
*/
|
|
542
|
+
acknowledged: boolean;
|
|
543
|
+
};
|
|
544
|
+
/**
|
|
545
|
+
* Describes the message chronicle.v1.AcknowledgeMemoryResponse.
|
|
546
|
+
* Use `create(AcknowledgeMemoryResponseSchema)` to create a new message.
|
|
547
|
+
*/
|
|
548
|
+
export declare const AcknowledgeMemoryResponseSchema: GenMessage<AcknowledgeMemoryResponse>;
|
|
549
|
+
/**
|
|
550
|
+
* @generated from message chronicle.v1.ListMemoriesRequest
|
|
551
|
+
*/
|
|
552
|
+
export type ListMemoriesRequest = Message<"chronicle.v1.ListMemoriesRequest"> & {
|
|
553
|
+
/**
|
|
554
|
+
* @generated from field: string organization_id = 1;
|
|
555
|
+
*/
|
|
556
|
+
organizationId: string;
|
|
557
|
+
/**
|
|
558
|
+
* @generated from field: string query = 2;
|
|
559
|
+
*/
|
|
560
|
+
query: string;
|
|
561
|
+
/**
|
|
562
|
+
* @generated from field: memory.v1.Scope scope = 3;
|
|
563
|
+
*/
|
|
564
|
+
scope: Scope;
|
|
565
|
+
/**
|
|
566
|
+
* @generated from field: string project_id = 4;
|
|
567
|
+
*/
|
|
568
|
+
projectId: string;
|
|
569
|
+
/**
|
|
570
|
+
* @generated from field: string repository = 5;
|
|
571
|
+
*/
|
|
572
|
+
repository: string;
|
|
573
|
+
/**
|
|
574
|
+
* @generated from field: string user_id = 6;
|
|
575
|
+
*/
|
|
576
|
+
userId: string;
|
|
577
|
+
/**
|
|
578
|
+
* @generated from field: int32 top_k = 7;
|
|
579
|
+
*/
|
|
580
|
+
topK: number;
|
|
581
|
+
};
|
|
582
|
+
/**
|
|
583
|
+
* Describes the message chronicle.v1.ListMemoriesRequest.
|
|
584
|
+
* Use `create(ListMemoriesRequestSchema)` to create a new message.
|
|
585
|
+
*/
|
|
586
|
+
export declare const ListMemoriesRequestSchema: GenMessage<ListMemoriesRequest>;
|
|
587
|
+
/**
|
|
588
|
+
* @generated from message chronicle.v1.ListMemoriesResponse
|
|
589
|
+
*/
|
|
590
|
+
export type ListMemoriesResponse = Message<"chronicle.v1.ListMemoriesResponse"> & {
|
|
591
|
+
/**
|
|
592
|
+
* @generated from field: repeated memory.v1.RecallResult results = 1;
|
|
593
|
+
*/
|
|
594
|
+
results: RecallResult[];
|
|
595
|
+
};
|
|
596
|
+
/**
|
|
597
|
+
* Describes the message chronicle.v1.ListMemoriesResponse.
|
|
598
|
+
* Use `create(ListMemoriesResponseSchema)` to create a new message.
|
|
599
|
+
*/
|
|
600
|
+
export declare const ListMemoriesResponseSchema: GenMessage<ListMemoriesResponse>;
|
|
601
|
+
/**
|
|
602
|
+
* @generated from message chronicle.v1.RevokeFrameRequest
|
|
603
|
+
*/
|
|
604
|
+
export type RevokeFrameRequest = Message<"chronicle.v1.RevokeFrameRequest"> & {
|
|
605
|
+
/**
|
|
606
|
+
* @generated from field: string organization_id = 1;
|
|
607
|
+
*/
|
|
608
|
+
organizationId: string;
|
|
609
|
+
/**
|
|
610
|
+
* @generated from field: string frame_hash = 2;
|
|
611
|
+
*/
|
|
612
|
+
frameHash: string;
|
|
613
|
+
/**
|
|
614
|
+
* @generated from field: string batch_id = 3;
|
|
615
|
+
*/
|
|
616
|
+
batchId: string;
|
|
617
|
+
/**
|
|
618
|
+
* @generated from field: string artifact_id = 4;
|
|
619
|
+
*/
|
|
620
|
+
artifactId: string;
|
|
621
|
+
/**
|
|
622
|
+
* @generated from field: repeated string memory_ids = 5;
|
|
623
|
+
*/
|
|
624
|
+
memoryIds: string[];
|
|
625
|
+
/**
|
|
626
|
+
* @generated from field: string reason = 6;
|
|
627
|
+
*/
|
|
628
|
+
reason: string;
|
|
629
|
+
};
|
|
630
|
+
/**
|
|
631
|
+
* Describes the message chronicle.v1.RevokeFrameRequest.
|
|
632
|
+
* Use `create(RevokeFrameRequestSchema)` to create a new message.
|
|
633
|
+
*/
|
|
634
|
+
export declare const RevokeFrameRequestSchema: GenMessage<RevokeFrameRequest>;
|
|
635
|
+
/**
|
|
636
|
+
* @generated from message chronicle.v1.RevokeFrameResponse
|
|
637
|
+
*/
|
|
638
|
+
export type RevokeFrameResponse = Message<"chronicle.v1.RevokeFrameResponse"> & {
|
|
639
|
+
/**
|
|
640
|
+
* @generated from field: string frame_hash = 1;
|
|
641
|
+
*/
|
|
642
|
+
frameHash: string;
|
|
643
|
+
/**
|
|
644
|
+
* @generated from field: repeated string revoked_memory_ids = 2;
|
|
645
|
+
*/
|
|
646
|
+
revokedMemoryIds: string[];
|
|
647
|
+
/**
|
|
648
|
+
* @generated from field: string audit_event_id = 3;
|
|
649
|
+
*/
|
|
650
|
+
auditEventId: string;
|
|
651
|
+
};
|
|
652
|
+
/**
|
|
653
|
+
* Describes the message chronicle.v1.RevokeFrameResponse.
|
|
654
|
+
* Use `create(RevokeFrameResponseSchema)` to create a new message.
|
|
655
|
+
*/
|
|
656
|
+
export declare const RevokeFrameResponseSchema: GenMessage<RevokeFrameResponse>;
|
|
657
|
+
/**
|
|
658
|
+
* @generated from message chronicle.v1.GetCapturePolicyRequest
|
|
659
|
+
*/
|
|
660
|
+
export type GetCapturePolicyRequest = Message<"chronicle.v1.GetCapturePolicyRequest"> & {
|
|
661
|
+
/**
|
|
662
|
+
* @generated from field: string device_id = 1;
|
|
663
|
+
*/
|
|
664
|
+
deviceId: string;
|
|
665
|
+
/**
|
|
666
|
+
* @generated from field: string organization_id = 2;
|
|
667
|
+
*/
|
|
668
|
+
organizationId: string;
|
|
669
|
+
/**
|
|
670
|
+
* @generated from field: string workspace_id = 3;
|
|
671
|
+
*/
|
|
672
|
+
workspaceId: string;
|
|
673
|
+
/**
|
|
674
|
+
* @generated from field: string user_id = 4;
|
|
675
|
+
*/
|
|
676
|
+
userId: string;
|
|
677
|
+
/**
|
|
678
|
+
* @generated from field: string project_id = 5;
|
|
679
|
+
*/
|
|
680
|
+
projectId: string;
|
|
681
|
+
};
|
|
682
|
+
/**
|
|
683
|
+
* Describes the message chronicle.v1.GetCapturePolicyRequest.
|
|
684
|
+
* Use `create(GetCapturePolicyRequestSchema)` to create a new message.
|
|
685
|
+
*/
|
|
686
|
+
export declare const GetCapturePolicyRequestSchema: GenMessage<GetCapturePolicyRequest>;
|
|
687
|
+
/**
|
|
688
|
+
* @generated from message chronicle.v1.GetCapturePolicyResponse
|
|
689
|
+
*/
|
|
690
|
+
export type GetCapturePolicyResponse = Message<"chronicle.v1.GetCapturePolicyResponse"> & {
|
|
691
|
+
/**
|
|
692
|
+
* @generated from field: chronicle.v1.CapturePolicy policy = 1;
|
|
693
|
+
*/
|
|
694
|
+
policy?: CapturePolicy | undefined;
|
|
695
|
+
};
|
|
696
|
+
/**
|
|
697
|
+
* Describes the message chronicle.v1.GetCapturePolicyResponse.
|
|
698
|
+
* Use `create(GetCapturePolicyResponseSchema)` to create a new message.
|
|
699
|
+
*/
|
|
700
|
+
export declare const GetCapturePolicyResponseSchema: GenMessage<GetCapturePolicyResponse>;
|
|
701
|
+
/**
|
|
702
|
+
* @generated from message chronicle.v1.CapturePolicy
|
|
703
|
+
*/
|
|
704
|
+
export type CapturePolicy = Message<"chronicle.v1.CapturePolicy"> & {
|
|
705
|
+
/**
|
|
706
|
+
* @generated from field: string policy_version = 1;
|
|
707
|
+
*/
|
|
708
|
+
policyVersion: string;
|
|
709
|
+
/**
|
|
710
|
+
* @generated from field: chronicle.v1.CaptureMode capture_mode = 2;
|
|
711
|
+
*/
|
|
712
|
+
captureMode: CaptureMode;
|
|
713
|
+
/**
|
|
714
|
+
* @generated from field: repeated string allowed_bundle_ids = 3;
|
|
715
|
+
*/
|
|
716
|
+
allowedBundleIds: string[];
|
|
717
|
+
/**
|
|
718
|
+
* @generated from field: repeated string denied_bundle_ids = 4;
|
|
719
|
+
*/
|
|
720
|
+
deniedBundleIds: string[];
|
|
721
|
+
/**
|
|
722
|
+
* @generated from field: repeated string denied_path_prefixes = 5;
|
|
723
|
+
*/
|
|
724
|
+
deniedPathPrefixes: string[];
|
|
725
|
+
/**
|
|
726
|
+
* @generated from field: repeated string pause_window_title_patterns = 6;
|
|
727
|
+
*/
|
|
728
|
+
pauseWindowTitlePatterns: string[];
|
|
729
|
+
/**
|
|
730
|
+
* @generated from field: repeated string secret_patterns = 7;
|
|
731
|
+
*/
|
|
732
|
+
secretPatterns: string[];
|
|
733
|
+
/**
|
|
734
|
+
* @generated from field: string cloud_consolidation_tier = 8;
|
|
735
|
+
*/
|
|
736
|
+
cloudConsolidationTier: string;
|
|
737
|
+
/**
|
|
738
|
+
* @generated from field: int32 min_batch_interval_seconds = 9;
|
|
739
|
+
*/
|
|
740
|
+
minBatchIntervalSeconds: number;
|
|
741
|
+
/**
|
|
742
|
+
* @generated from field: int32 max_frames_per_batch = 10;
|
|
743
|
+
*/
|
|
744
|
+
maxFramesPerBatch: number;
|
|
745
|
+
/**
|
|
746
|
+
* @generated from field: string source_policy_ref = 11;
|
|
747
|
+
*/
|
|
748
|
+
sourcePolicyRef: string;
|
|
749
|
+
};
|
|
750
|
+
/**
|
|
751
|
+
* Describes the message chronicle.v1.CapturePolicy.
|
|
752
|
+
* Use `create(CapturePolicySchema)` to create a new message.
|
|
753
|
+
*/
|
|
754
|
+
export declare const CapturePolicySchema: GenMessage<CapturePolicy>;
|
|
755
|
+
/**
|
|
756
|
+
* @generated from enum chronicle.v1.CaptureMode
|
|
757
|
+
*/
|
|
758
|
+
export declare enum CaptureMode {
|
|
759
|
+
/**
|
|
760
|
+
* @generated from enum value: CAPTURE_MODE_UNSPECIFIED = 0;
|
|
761
|
+
*/
|
|
762
|
+
UNSPECIFIED = 0,
|
|
763
|
+
/**
|
|
764
|
+
* @generated from enum value: CAPTURE_MODE_LOCAL_ONLY = 1;
|
|
765
|
+
*/
|
|
766
|
+
LOCAL_ONLY = 1,
|
|
767
|
+
/**
|
|
768
|
+
* @generated from enum value: CAPTURE_MODE_HYBRID = 2;
|
|
769
|
+
*/
|
|
770
|
+
HYBRID = 2,
|
|
771
|
+
/**
|
|
772
|
+
* @generated from enum value: CAPTURE_MODE_CLOUD = 3;
|
|
773
|
+
*/
|
|
774
|
+
CLOUD = 3,
|
|
775
|
+
/**
|
|
776
|
+
* @generated from enum value: CAPTURE_MODE_PAUSED = 4;
|
|
777
|
+
*/
|
|
778
|
+
PAUSED = 4
|
|
779
|
+
}
|
|
780
|
+
/**
|
|
781
|
+
* Describes the enum chronicle.v1.CaptureMode.
|
|
782
|
+
*/
|
|
783
|
+
export declare const CaptureModeSchema: GenEnum<CaptureMode>;
|
|
784
|
+
/**
|
|
785
|
+
* @generated from enum chronicle.v1.CaptureDecision
|
|
786
|
+
*/
|
|
787
|
+
export declare enum CaptureDecision {
|
|
788
|
+
/**
|
|
789
|
+
* @generated from enum value: CAPTURE_DECISION_UNSPECIFIED = 0;
|
|
790
|
+
*/
|
|
791
|
+
UNSPECIFIED = 0,
|
|
792
|
+
/**
|
|
793
|
+
* @generated from enum value: CAPTURE_DECISION_ACCEPTED = 1;
|
|
794
|
+
*/
|
|
795
|
+
ACCEPTED = 1,
|
|
796
|
+
/**
|
|
797
|
+
* @generated from enum value: CAPTURE_DECISION_DROPPED_DENIED_APP = 2;
|
|
798
|
+
*/
|
|
799
|
+
DROPPED_DENIED_APP = 2,
|
|
800
|
+
/**
|
|
801
|
+
* @generated from enum value: CAPTURE_DECISION_DROPPED_DENIED_PATH = 3;
|
|
802
|
+
*/
|
|
803
|
+
DROPPED_DENIED_PATH = 3,
|
|
804
|
+
/**
|
|
805
|
+
* @generated from enum value: CAPTURE_DECISION_DROPPED_SECRET = 4;
|
|
806
|
+
*/
|
|
807
|
+
DROPPED_SECRET = 4,
|
|
808
|
+
/**
|
|
809
|
+
* @generated from enum value: CAPTURE_DECISION_DROPPED_PAUSED_WINDOW = 5;
|
|
810
|
+
*/
|
|
811
|
+
DROPPED_PAUSED_WINDOW = 5,
|
|
812
|
+
/**
|
|
813
|
+
* @generated from enum value: CAPTURE_DECISION_DROPPED_DUPLICATE = 6;
|
|
814
|
+
*/
|
|
815
|
+
DROPPED_DUPLICATE = 6
|
|
816
|
+
}
|
|
817
|
+
/**
|
|
818
|
+
* Describes the enum chronicle.v1.CaptureDecision.
|
|
819
|
+
*/
|
|
820
|
+
export declare const CaptureDecisionSchema: GenEnum<CaptureDecision>;
|
|
821
|
+
/**
|
|
822
|
+
* ChronicleService coordinates desktop screen-context capture with platform
|
|
823
|
+
* memory, policy, audit, meter, and revocation flows.
|
|
824
|
+
*
|
|
825
|
+
* @generated from service chronicle.v1.ChronicleService
|
|
826
|
+
*/
|
|
827
|
+
export declare const ChronicleService: GenService<{
|
|
828
|
+
/**
|
|
829
|
+
* @generated from rpc chronicle.v1.ChronicleService.RegisterDevice
|
|
830
|
+
*/
|
|
831
|
+
registerDevice: {
|
|
832
|
+
methodKind: "unary";
|
|
833
|
+
input: typeof RegisterDeviceRequestSchema;
|
|
834
|
+
output: typeof RegisterDeviceResponseSchema;
|
|
835
|
+
};
|
|
836
|
+
/**
|
|
837
|
+
* @generated from rpc chronicle.v1.ChronicleService.Heartbeat
|
|
838
|
+
*/
|
|
839
|
+
heartbeat: {
|
|
840
|
+
methodKind: "unary";
|
|
841
|
+
input: typeof HeartbeatRequestSchema;
|
|
842
|
+
output: typeof HeartbeatResponseSchema;
|
|
843
|
+
};
|
|
844
|
+
/**
|
|
845
|
+
* @generated from rpc chronicle.v1.ChronicleService.PauseSession
|
|
846
|
+
*/
|
|
847
|
+
pauseSession: {
|
|
848
|
+
methodKind: "unary";
|
|
849
|
+
input: typeof PauseSessionRequestSchema;
|
|
850
|
+
output: typeof PauseSessionResponseSchema;
|
|
851
|
+
};
|
|
852
|
+
/**
|
|
853
|
+
* @generated from rpc chronicle.v1.ChronicleService.ResumeSession
|
|
854
|
+
*/
|
|
855
|
+
resumeSession: {
|
|
856
|
+
methodKind: "unary";
|
|
857
|
+
input: typeof ResumeSessionRequestSchema;
|
|
858
|
+
output: typeof ResumeSessionResponseSchema;
|
|
859
|
+
};
|
|
860
|
+
/**
|
|
861
|
+
* SubmitBatch accepts one local redaction/policy-filtered screen frame batch
|
|
862
|
+
* from agentd, returns the Chronicle artifact id, and emits frame receipts with
|
|
863
|
+
* audit-backed EvidenceRef provenance for every accepted or dropped frame.
|
|
864
|
+
*
|
|
865
|
+
* @generated from rpc chronicle.v1.ChronicleService.SubmitBatch
|
|
866
|
+
*/
|
|
867
|
+
submitBatch: {
|
|
868
|
+
methodKind: "unary";
|
|
869
|
+
input: typeof SubmitBatchRequestSchema;
|
|
870
|
+
output: typeof SubmitBatchResponseSchema;
|
|
871
|
+
};
|
|
872
|
+
/**
|
|
873
|
+
* @generated from rpc chronicle.v1.ChronicleService.AcknowledgeMemory
|
|
874
|
+
*/
|
|
875
|
+
acknowledgeMemory: {
|
|
876
|
+
methodKind: "unary";
|
|
877
|
+
input: typeof AcknowledgeMemoryRequestSchema;
|
|
878
|
+
output: typeof AcknowledgeMemoryResponseSchema;
|
|
879
|
+
};
|
|
880
|
+
/**
|
|
881
|
+
* ListMemories proxies memory.v1 recall while constraining results to
|
|
882
|
+
* Chronicle sources such as source="chronicle:*".
|
|
883
|
+
*
|
|
884
|
+
* @generated from rpc chronicle.v1.ChronicleService.ListMemories
|
|
885
|
+
*/
|
|
886
|
+
listMemories: {
|
|
887
|
+
methodKind: "unary";
|
|
888
|
+
input: typeof ListMemoriesRequestSchema;
|
|
889
|
+
output: typeof ListMemoriesResponseSchema;
|
|
890
|
+
};
|
|
891
|
+
/**
|
|
892
|
+
* RevokeFrame cascades revocation for one captured frame: revoke the linked
|
|
893
|
+
* grant/artifact when present, delete derived memory.v1 records, and return
|
|
894
|
+
* an audit-chain pointer for the deletion trail.
|
|
895
|
+
*
|
|
896
|
+
* @generated from rpc chronicle.v1.ChronicleService.RevokeFrame
|
|
897
|
+
*/
|
|
898
|
+
revokeFrame: {
|
|
899
|
+
methodKind: "unary";
|
|
900
|
+
input: typeof RevokeFrameRequestSchema;
|
|
901
|
+
output: typeof RevokeFrameResponseSchema;
|
|
902
|
+
};
|
|
903
|
+
/**
|
|
904
|
+
* @generated from rpc chronicle.v1.ChronicleService.GetCapturePolicy
|
|
905
|
+
*/
|
|
906
|
+
getCapturePolicy: {
|
|
907
|
+
methodKind: "unary";
|
|
908
|
+
input: typeof GetCapturePolicyRequestSchema;
|
|
909
|
+
output: typeof GetCapturePolicyResponseSchema;
|
|
910
|
+
};
|
|
911
|
+
}>;
|
|
@@ -0,0 +1,208 @@
|
|
|
1
|
+
// @generated by protoc-gen-es v2.12.0 with parameter "target=ts,import_extension=.js"
|
|
2
|
+
// @generated from file chronicle/v1/chronicle.proto (package chronicle.v1, syntax proto3)
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
import { enumDesc, fileDesc, messageDesc, serviceDesc } from "@bufbuild/protobuf/codegenv2";
|
|
5
|
+
import { file_buf_validate_validate } from "../../buf/validate/validate_pb.js";
|
|
6
|
+
import { file_common_v1_analytics } from "../../common/v1/analytics_pb.js";
|
|
7
|
+
import { file_common_v1_risk } from "../../common/v1/risk_pb.js";
|
|
8
|
+
import { file_google_protobuf_struct, file_google_protobuf_timestamp } from "@bufbuild/protobuf/wkt";
|
|
9
|
+
import { file_memory_v1_memory } from "../../memory/v1/memory_pb.js";
|
|
10
|
+
/**
|
|
11
|
+
* Describes the file chronicle/v1/chronicle.proto.
|
|
12
|
+
*/
|
|
13
|
+
export const file_chronicle_v1_chronicle = /*@__PURE__*/ fileDesc("ChxjaHJvbmljbGUvdjEvY2hyb25pY2xlLnByb3RvEgxjaHJvbmljbGUudjEiqgMKBkRldmljZRIRCglkZXZpY2VfaWQYASABKAkSFwoPb3JnYW5pemF0aW9uX2lkGAIgASgJEhQKDHdvcmtzcGFjZV9pZBgDIAEoCRIPCgd1c2VyX2lkGAQgASgJEhAKCGhvc3RuYW1lGAUgASgJEhMKC2FwcF92ZXJzaW9uGAYgASgJEi8KDGNhcHR1cmVfbW9kZRgHIAEoDjIZLmNocm9uaWNsZS52MS5DYXB0dXJlTW9kZRIOCgZwYXVzZWQYCCABKAgSFAoMcGF1c2VfcmVhc29uGAkgASgJEjEKDXJlZ2lzdGVyZWRfYXQYCiABKAsyGi5nb29nbGUucHJvdG9idWYuVGltZXN0YW1wEjUKEWxhc3RfaGVhcnRiZWF0X2F0GAsgASgLMhouZ29vZ2xlLnByb3RvYnVmLlRpbWVzdGFtcBI0CghtZXRhZGF0YRgMIAMoCzIiLmNocm9uaWNsZS52MS5EZXZpY2UuTWV0YWRhdGFFbnRyeRovCg1NZXRhZGF0YUVudHJ5EgsKA2tleRgBIAEoCRINCgV2YWx1ZRgCIAEoCToCOAEimQIKFVJlZ2lzdGVyRGV2aWNlUmVxdWVzdBIaCglkZXZpY2VfaWQYASABKAlCB7pIBHICEAESIAoPb3JnYW5pemF0aW9uX2lkGAIgASgJQge6SARyAhABEhQKDHdvcmtzcGFjZV9pZBgDIAEoCRIPCgd1c2VyX2lkGAQgASgJEhAKCGhvc3RuYW1lGAUgASgJEhMKC2FwcF92ZXJzaW9uGAYgASgJEkMKCG1ldGFkYXRhGAcgAygLMjEuY2hyb25pY2xlLnYxLlJlZ2lzdGVyRGV2aWNlUmVxdWVzdC5NZXRhZGF0YUVudHJ5Gi8KDU1ldGFkYXRhRW50cnkSCwoDa2V5GAEgASgJEg0KBXZhbHVlGAIgASgJOgI4ASJrChZSZWdpc3RlckRldmljZVJlc3BvbnNlEiQKBmRldmljZRgBIAEoCzIULmNocm9uaWNsZS52MS5EZXZpY2USKwoGcG9saWN5GAIgASgLMhsuY2hyb25pY2xlLnYxLkNhcHR1cmVQb2xpY3kilgEKEEhlYXJ0YmVhdFJlcXVlc3QSGgoJZGV2aWNlX2lkGAEgASgJQge6SARyAhABEiAKD29yZ2FuaXphdGlvbl9pZBgCIAEoCUIHukgEcgIQARIkChNwZW5kaW5nX2ZyYW1lX2NvdW50GAMgASgFQge6SAQaAigAEh4KDXBlbmRpbmdfYnl0ZXMYBCABKANCB7pIBCICKAAiZgoRSGVhcnRiZWF0UmVzcG9uc2USJAoGZGV2aWNlGAEgASgLMhQuY2hyb25pY2xlLnYxLkRldmljZRIrCgZwb2xpY3kYAiABKAsyGy5jaHJvbmljbGUudjEuQ2FwdHVyZVBvbGljeSKOAQoTUGF1c2VTZXNzaW9uUmVxdWVzdBIaCglkZXZpY2VfaWQYASABKAlCB7pIBHICEAESIAoPb3JnYW5pemF0aW9uX2lkGAIgASgJQge6SARyAhABEg4KBnJlYXNvbhgDIAEoCRIpCgV1bnRpbBgEIAEoCzIaLmdvb2dsZS5wcm90b2J1Zi5UaW1lc3RhbXAiPAoUUGF1c2VTZXNzaW9uUmVzcG9uc2USJAoGZGV2aWNlGAEgASgLMhQuY2hyb25pY2xlLnYxLkRldmljZSJkChRSZXN1bWVTZXNzaW9uUmVxdWVzdBIaCglkZXZpY2VfaWQYASABKAlCB7pIBHICEAESIAoPb3JnYW5pemF0aW9uX2lkGAIgASgJQge6SARyAhABEg4KBnJlYXNvbhgDIAEoCSI9ChVSZXN1bWVTZXNzaW9uUmVzcG9uc2USJAoGZGV2aWNlGAEgASgLMhQuY2hyb25pY2xlLnYxLkRldmljZSJZChJTdWJtaXRCYXRjaFJlcXVlc3QSLwoFYmF0Y2gYASABKAsyGC5jaHJvbmljbGUudjEuRnJhbWVCYXRjaEIGukgDyAEBEhIKCmxvY2FsX29ubHkYAiABKAgi5gEKE1N1Ym1pdEJhdGNoUmVzcG9uc2USEAoIYmF0Y2hfaWQYASABKAkSEwoLYXJ0aWZhY3RfaWQYAiABKAkSHAoUYWNjZXB0ZWRfZnJhbWVfY291bnQYAyABKAUSGwoTZHJvcHBlZF9mcmFtZV9jb3VudBgEIAEoBRIsCghyZWNlaXB0cxgFIAMoCzIaLmNocm9uaWNsZS52MS5GcmFtZVJlY2VpcHQSEgoKbWVtb3J5X2lkcxgGIAMoCRIrCgZwb2xpY3kYByABKAsyGy5jaHJvbmljbGUudjEuQ2FwdHVyZVBvbGljeSL+AwoKRnJhbWVCYXRjaBIZCghiYXRjaF9pZBgBIAEoCUIHukgEcgIQARIaCglkZXZpY2VfaWQYAiABKAlCB7pIBHICEAESIAoPb3JnYW5pemF0aW9uX2lkGAMgASgJQge6SARyAhABEhQKDHdvcmtzcGFjZV9pZBgEIAEoCRIPCgd1c2VyX2lkGAUgASgJEhIKCnByb2plY3RfaWQYBiABKAkSEgoKcmVwb3NpdG9yeRgHIAEoCRIsCg5jYXB0dXJlX3dpbmRvdxgOIAEoCzIULmNvbW1vbi52MS5UaW1lUmFuZ2USLgoKc3RhcnRlZF9hdBgIIAEoCzIaLmdvb2dsZS5wcm90b2J1Zi5UaW1lc3RhbXASLAoIZW5kZWRfYXQYCSABKAsyGi5nb29nbGUucHJvdG9idWYuVGltZXN0YW1wEisKBmZyYW1lcxgKIAMoCzIbLmNocm9uaWNsZS52MS5DYXB0dXJlZEZyYW1lEjAKDmRyb3BwZWRfY291bnRzGAsgASgLMhguY2hyb25pY2xlLnYxLkRyb3BDb3VudHMSMgoKcmlza19sZXZlbBgMIAEoDjIULmNvbW1vbi52MS5SaXNrTGV2ZWxCCLpIBYIBAhABEikKCG1ldGFkYXRhGA0gASgLMhcuZ29vZ2xlLnByb3RvYnVmLlN0cnVjdCL5AgoNQ2FwdHVyZWRGcmFtZRIbCgpmcmFtZV9oYXNoGAEgASgJQge6SARyAhABEhcKD3BlcmNlcHR1YWxfaGFzaBgCIAEoBBIvCgtjYXB0dXJlZF9hdBgDIAEoCzIaLmdvb2dsZS5wcm90b2J1Zi5UaW1lc3RhbXASGgoJYnVuZGxlX2lkGAQgASgJQge6SARyAhABEhAKCGFwcF9uYW1lGAUgASgJEhQKDHdpbmRvd190aXRsZRgGIAEoCRIVCg1kb2N1bWVudF9wYXRoGAcgASgJEhAKCG9jcl90ZXh0GAggASgJEhYKDm9jcl9jb25maWRlbmNlGAkgASgCEhkKCHdpZHRoX3B4GAogASgFQge6SAQaAigAEhoKCWhlaWdodF9weBgLIAEoBUIHukgEGgIoABIaCglieXRlc19wbmcYDCABKANCB7pIBCICKAASKQoIbWV0YWRhdGEYDSABKAsyFy5nb29nbGUucHJvdG9idWYuU3RydWN0InwKCkRyb3BDb3VudHMSFwoGc2VjcmV0GAEgASgFQge6SAQaAigAEhoKCWR1cGxpY2F0ZRgCIAEoBUIHukgEGgIoABIbCgpkZW5pZWRfYXBwGAMgASgFQge6SAQaAigAEhwKC2RlbmllZF9wYXRoGAQgASgFQge6SAQaAigAIqABCgxGcmFtZVJlY2VpcHQSEgoKZnJhbWVfaGFzaBgBIAEoCRIvCghkZWNpc2lvbhgCIAEoDjIdLmNocm9uaWNsZS52MS5DYXB0dXJlRGVjaXNpb24SDgoGcmVhc29uGAMgASgJEhEKCW1lbW9yeV9pZBgEIAEoCRIoCghldmlkZW5jZRgFIAEoCzIWLmNvbW1vbi52MS5FdmlkZW5jZVJlZiKzAQoYQWNrbm93bGVkZ2VNZW1vcnlSZXF1ZXN0EhoKCW1lbW9yeV9pZBgBIAEoCUIHukgEcgIQARIgCg9vcmdhbml6YXRpb25faWQYAiABKAlCB7pIBHICEAESEQoJZGV2aWNlX2lkGAMgASgJEhAKCGJhdGNoX2lkGAQgASgJEhIKCmZyYW1lX2hhc2gYBSABKAkSEAoIYWNjZXB0ZWQYBiABKAgSDgoGcmVhc29uGAcgASgJIkQKGUFja25vd2xlZGdlTWVtb3J5UmVzcG9uc2USEQoJbWVtb3J5X2lkGAEgASgJEhQKDGFja25vd2xlZGdlZBgCIAEoCCLCAQoTTGlzdE1lbW9yaWVzUmVxdWVzdBIgCg9vcmdhbml6YXRpb25faWQYASABKAlCB7pIBHICEAESDQoFcXVlcnkYAiABKAkSKQoFc2NvcGUYAyABKA4yEC5tZW1vcnkudjEuU2NvcGVCCLpIBYIBAhABEhIKCnByb2plY3RfaWQYBCABKAkSEgoKcmVwb3NpdG9yeRgFIAEoCRIPCgd1c2VyX2lkGAYgASgJEhYKBXRvcF9rGAcgASgFQge6SAQaAigAIkAKFExpc3RNZW1vcmllc1Jlc3BvbnNlEigKB3Jlc3VsdHMYASADKAsyFy5tZW1vcnkudjEuUmVjYWxsUmVzdWx0Ip4BChJSZXZva2VGcmFtZVJlcXVlc3QSIAoPb3JnYW5pemF0aW9uX2lkGAEgASgJQge6SARyAhABEhsKCmZyYW1lX2hhc2gYAiABKAlCB7pIBHICEAESEAoIYmF0Y2hfaWQYAyABKAkSEwoLYXJ0aWZhY3RfaWQYBCABKAkSEgoKbWVtb3J5X2lkcxgFIAMoCRIOCgZyZWFzb24YBiABKAkiXQoTUmV2b2tlRnJhbWVSZXNwb25zZRISCgpmcmFtZV9oYXNoGAEgASgJEhoKEnJldm9rZWRfbWVtb3J5X2lkcxgCIAMoCRIWCg5hdWRpdF9ldmVudF9pZBgDIAEoCSKJAQoXR2V0Q2FwdHVyZVBvbGljeVJlcXVlc3QSEQoJZGV2aWNlX2lkGAEgASgJEiAKD29yZ2FuaXphdGlvbl9pZBgCIAEoCUIHukgEcgIQARIUCgx3b3Jrc3BhY2VfaWQYAyABKAkSDwoHdXNlcl9pZBgEIAEoCRISCgpwcm9qZWN0X2lkGAUgASgJIkcKGEdldENhcHR1cmVQb2xpY3lSZXNwb25zZRIrCgZwb2xpY3kYASABKAsyGy5jaHJvbmljbGUudjEuQ2FwdHVyZVBvbGljeSKGAwoNQ2FwdHVyZVBvbGljeRIWCg5wb2xpY3lfdmVyc2lvbhgBIAEoCRI5CgxjYXB0dXJlX21vZGUYAiABKA4yGS5jaHJvbmljbGUudjEuQ2FwdHVyZU1vZGVCCLpIBYIBAhABEhoKEmFsbG93ZWRfYnVuZGxlX2lkcxgDIAMoCRIZChFkZW5pZWRfYnVuZGxlX2lkcxgEIAMoCRIcChRkZW5pZWRfcGF0aF9wcmVmaXhlcxgFIAMoCRIjChtwYXVzZV93aW5kb3dfdGl0bGVfcGF0dGVybnMYBiADKAkSFwoPc2VjcmV0X3BhdHRlcm5zGAcgAygJEiAKGGNsb3VkX2NvbnNvbGlkYXRpb25fdGllchgIIAEoCRIrChptaW5fYmF0Y2hfaW50ZXJ2YWxfc2Vjb25kcxgJIAEoBUIHukgEGgIoABIlChRtYXhfZnJhbWVzX3Blcl9iYXRjaBgKIAEoBUIHukgEGgIoABIZChFzb3VyY2VfcG9saWN5X3JlZhgLIAEoCSqSAQoLQ2FwdHVyZU1vZGUSHAoYQ0FQVFVSRV9NT0RFX1VOU1BFQ0lGSUVEEAASGwoXQ0FQVFVSRV9NT0RFX0xPQ0FMX09OTFkQARIXChNDQVBUVVJFX01PREVfSFlCUklEEAISFgoSQ0FQVFVSRV9NT0RFX0NMT1VEEAMSFwoTQ0FQVFVSRV9NT0RFX1BBVVNFRBAEKp4CCg9DYXB0dXJlRGVjaXNpb24SIAocQ0FQVFVSRV9ERUNJU0lPTl9VTlNQRUNJRklFRBAAEh0KGUNBUFRVUkVfREVDSVNJT05fQUNDRVBURUQQARInCiNDQVBUVVJFX0RFQ0lTSU9OX0RST1BQRURfREVOSUVEX0FQUBACEigKJENBUFRVUkVfREVDSVNJT05fRFJPUFBFRF9ERU5JRURfUEFUSBADEiMKH0NBUFRVUkVfREVDSVNJT05fRFJPUFBFRF9TRUNSRVQQBBIqCiZDQVBUVVJFX0RFQ0lTSU9OX0RST1BQRURfUEFVU0VEX1dJTkRPVxAFEiYKIkNBUFRVUkVfREVDSVNJT05fRFJPUFBFRF9EVVBMSUNBVEUQBjK2BgoQQ2hyb25pY2xlU2VydmljZRJbCg5SZWdpc3RlckRldmljZRIjLmNocm9uaWNsZS52MS5SZWdpc3RlckRldmljZVJlcXVlc3QaJC5jaHJvbmljbGUudjEuUmVnaXN0ZXJEZXZpY2VSZXNwb25zZRJMCglIZWFydGJlYXQSHi5jaHJvbmljbGUudjEuSGVhcnRiZWF0UmVxdWVzdBofLmNocm9uaWNsZS52MS5IZWFydGJlYXRSZXNwb25zZRJVCgxQYXVzZVNlc3Npb24SIS5jaHJvbmljbGUudjEuUGF1c2VTZXNzaW9uUmVxdWVzdBoiLmNocm9uaWNsZS52MS5QYXVzZVNlc3Npb25SZXNwb25zZRJYCg1SZXN1bWVTZXNzaW9uEiIuY2hyb25pY2xlLnYxLlJlc3VtZVNlc3Npb25SZXF1ZXN0GiMuY2hyb25pY2xlLnYxLlJlc3VtZVNlc3Npb25SZXNwb25zZRJSCgtTdWJtaXRCYXRjaBIgLmNocm9uaWNsZS52MS5TdWJtaXRCYXRjaFJlcXVlc3QaIS5jaHJvbmljbGUudjEuU3VibWl0QmF0Y2hSZXNwb25zZRJkChFBY2tub3dsZWRnZU1lbW9yeRImLmNocm9uaWNsZS52MS5BY2tub3dsZWRnZU1lbW9yeVJlcXVlc3QaJy5jaHJvbmljbGUudjEuQWNrbm93bGVkZ2VNZW1vcnlSZXNwb25zZRJVCgxMaXN0TWVtb3JpZXMSIS5jaHJvbmljbGUudjEuTGlzdE1lbW9yaWVzUmVxdWVzdBoiLmNocm9uaWNsZS52MS5MaXN0TWVtb3JpZXNSZXNwb25zZRJSCgtSZXZva2VGcmFtZRIgLmNocm9uaWNsZS52MS5SZXZva2VGcmFtZVJlcXVlc3QaIS5jaHJvbmljbGUudjEuUmV2b2tlRnJhbWVSZXNwb25zZRJhChBHZXRDYXB0dXJlUG9saWN5EiUuY2hyb25pY2xlLnYxLkdldENhcHR1cmVQb2xpY3lSZXF1ZXN0GiYuY2hyb25pY2xlLnYxLkdldENhcHR1cmVQb2xpY3lSZXNwb25zZUI9WjtnaXRodWIuY29tL2V2YWxvcHMvcGxhdGZvcm0vZ2VuL2dvL2Nocm9uaWNsZS92MTtjaHJvbmljbGV2MWIGcHJvdG8z", [file_buf_validate_validate, file_common_v1_analytics, file_common_v1_risk, file_google_protobuf_struct, file_google_protobuf_timestamp, file_memory_v1_memory]);
|
|
14
|
+
/**
|
|
15
|
+
* Describes the message chronicle.v1.Device.
|
|
16
|
+
* Use `create(DeviceSchema)` to create a new message.
|
|
17
|
+
*/
|
|
18
|
+
export const DeviceSchema = /*@__PURE__*/ messageDesc(file_chronicle_v1_chronicle, 0);
|
|
19
|
+
/**
|
|
20
|
+
* Describes the message chronicle.v1.RegisterDeviceRequest.
|
|
21
|
+
* Use `create(RegisterDeviceRequestSchema)` to create a new message.
|
|
22
|
+
*/
|
|
23
|
+
export const RegisterDeviceRequestSchema = /*@__PURE__*/ messageDesc(file_chronicle_v1_chronicle, 1);
|
|
24
|
+
/**
|
|
25
|
+
* Describes the message chronicle.v1.RegisterDeviceResponse.
|
|
26
|
+
* Use `create(RegisterDeviceResponseSchema)` to create a new message.
|
|
27
|
+
*/
|
|
28
|
+
export const RegisterDeviceResponseSchema = /*@__PURE__*/ messageDesc(file_chronicle_v1_chronicle, 2);
|
|
29
|
+
/**
|
|
30
|
+
* Describes the message chronicle.v1.HeartbeatRequest.
|
|
31
|
+
* Use `create(HeartbeatRequestSchema)` to create a new message.
|
|
32
|
+
*/
|
|
33
|
+
export const HeartbeatRequestSchema = /*@__PURE__*/ messageDesc(file_chronicle_v1_chronicle, 3);
|
|
34
|
+
/**
|
|
35
|
+
* Describes the message chronicle.v1.HeartbeatResponse.
|
|
36
|
+
* Use `create(HeartbeatResponseSchema)` to create a new message.
|
|
37
|
+
*/
|
|
38
|
+
export const HeartbeatResponseSchema = /*@__PURE__*/ messageDesc(file_chronicle_v1_chronicle, 4);
|
|
39
|
+
/**
|
|
40
|
+
* Describes the message chronicle.v1.PauseSessionRequest.
|
|
41
|
+
* Use `create(PauseSessionRequestSchema)` to create a new message.
|
|
42
|
+
*/
|
|
43
|
+
export const PauseSessionRequestSchema = /*@__PURE__*/ messageDesc(file_chronicle_v1_chronicle, 5);
|
|
44
|
+
/**
|
|
45
|
+
* Describes the message chronicle.v1.PauseSessionResponse.
|
|
46
|
+
* Use `create(PauseSessionResponseSchema)` to create a new message.
|
|
47
|
+
*/
|
|
48
|
+
export const PauseSessionResponseSchema = /*@__PURE__*/ messageDesc(file_chronicle_v1_chronicle, 6);
|
|
49
|
+
/**
|
|
50
|
+
* Describes the message chronicle.v1.ResumeSessionRequest.
|
|
51
|
+
* Use `create(ResumeSessionRequestSchema)` to create a new message.
|
|
52
|
+
*/
|
|
53
|
+
export const ResumeSessionRequestSchema = /*@__PURE__*/ messageDesc(file_chronicle_v1_chronicle, 7);
|
|
54
|
+
/**
|
|
55
|
+
* Describes the message chronicle.v1.ResumeSessionResponse.
|
|
56
|
+
* Use `create(ResumeSessionResponseSchema)` to create a new message.
|
|
57
|
+
*/
|
|
58
|
+
export const ResumeSessionResponseSchema = /*@__PURE__*/ messageDesc(file_chronicle_v1_chronicle, 8);
|
|
59
|
+
/**
|
|
60
|
+
* Describes the message chronicle.v1.SubmitBatchRequest.
|
|
61
|
+
* Use `create(SubmitBatchRequestSchema)` to create a new message.
|
|
62
|
+
*/
|
|
63
|
+
export const SubmitBatchRequestSchema = /*@__PURE__*/ messageDesc(file_chronicle_v1_chronicle, 9);
|
|
64
|
+
/**
|
|
65
|
+
* Describes the message chronicle.v1.SubmitBatchResponse.
|
|
66
|
+
* Use `create(SubmitBatchResponseSchema)` to create a new message.
|
|
67
|
+
*/
|
|
68
|
+
export const SubmitBatchResponseSchema = /*@__PURE__*/ messageDesc(file_chronicle_v1_chronicle, 10);
|
|
69
|
+
/**
|
|
70
|
+
* Describes the message chronicle.v1.FrameBatch.
|
|
71
|
+
* Use `create(FrameBatchSchema)` to create a new message.
|
|
72
|
+
*/
|
|
73
|
+
export const FrameBatchSchema = /*@__PURE__*/ messageDesc(file_chronicle_v1_chronicle, 11);
|
|
74
|
+
/**
|
|
75
|
+
* Describes the message chronicle.v1.CapturedFrame.
|
|
76
|
+
* Use `create(CapturedFrameSchema)` to create a new message.
|
|
77
|
+
*/
|
|
78
|
+
export const CapturedFrameSchema = /*@__PURE__*/ messageDesc(file_chronicle_v1_chronicle, 12);
|
|
79
|
+
/**
|
|
80
|
+
* Describes the message chronicle.v1.DropCounts.
|
|
81
|
+
* Use `create(DropCountsSchema)` to create a new message.
|
|
82
|
+
*/
|
|
83
|
+
export const DropCountsSchema = /*@__PURE__*/ messageDesc(file_chronicle_v1_chronicle, 13);
|
|
84
|
+
/**
|
|
85
|
+
* Describes the message chronicle.v1.FrameReceipt.
|
|
86
|
+
* Use `create(FrameReceiptSchema)` to create a new message.
|
|
87
|
+
*/
|
|
88
|
+
export const FrameReceiptSchema = /*@__PURE__*/ messageDesc(file_chronicle_v1_chronicle, 14);
|
|
89
|
+
/**
|
|
90
|
+
* Describes the message chronicle.v1.AcknowledgeMemoryRequest.
|
|
91
|
+
* Use `create(AcknowledgeMemoryRequestSchema)` to create a new message.
|
|
92
|
+
*/
|
|
93
|
+
export const AcknowledgeMemoryRequestSchema = /*@__PURE__*/ messageDesc(file_chronicle_v1_chronicle, 15);
|
|
94
|
+
/**
|
|
95
|
+
* Describes the message chronicle.v1.AcknowledgeMemoryResponse.
|
|
96
|
+
* Use `create(AcknowledgeMemoryResponseSchema)` to create a new message.
|
|
97
|
+
*/
|
|
98
|
+
export const AcknowledgeMemoryResponseSchema = /*@__PURE__*/ messageDesc(file_chronicle_v1_chronicle, 16);
|
|
99
|
+
/**
|
|
100
|
+
* Describes the message chronicle.v1.ListMemoriesRequest.
|
|
101
|
+
* Use `create(ListMemoriesRequestSchema)` to create a new message.
|
|
102
|
+
*/
|
|
103
|
+
export const ListMemoriesRequestSchema = /*@__PURE__*/ messageDesc(file_chronicle_v1_chronicle, 17);
|
|
104
|
+
/**
|
|
105
|
+
* Describes the message chronicle.v1.ListMemoriesResponse.
|
|
106
|
+
* Use `create(ListMemoriesResponseSchema)` to create a new message.
|
|
107
|
+
*/
|
|
108
|
+
export const ListMemoriesResponseSchema = /*@__PURE__*/ messageDesc(file_chronicle_v1_chronicle, 18);
|
|
109
|
+
/**
|
|
110
|
+
* Describes the message chronicle.v1.RevokeFrameRequest.
|
|
111
|
+
* Use `create(RevokeFrameRequestSchema)` to create a new message.
|
|
112
|
+
*/
|
|
113
|
+
export const RevokeFrameRequestSchema = /*@__PURE__*/ messageDesc(file_chronicle_v1_chronicle, 19);
|
|
114
|
+
/**
|
|
115
|
+
* Describes the message chronicle.v1.RevokeFrameResponse.
|
|
116
|
+
* Use `create(RevokeFrameResponseSchema)` to create a new message.
|
|
117
|
+
*/
|
|
118
|
+
export const RevokeFrameResponseSchema = /*@__PURE__*/ messageDesc(file_chronicle_v1_chronicle, 20);
|
|
119
|
+
/**
|
|
120
|
+
* Describes the message chronicle.v1.GetCapturePolicyRequest.
|
|
121
|
+
* Use `create(GetCapturePolicyRequestSchema)` to create a new message.
|
|
122
|
+
*/
|
|
123
|
+
export const GetCapturePolicyRequestSchema = /*@__PURE__*/ messageDesc(file_chronicle_v1_chronicle, 21);
|
|
124
|
+
/**
|
|
125
|
+
* Describes the message chronicle.v1.GetCapturePolicyResponse.
|
|
126
|
+
* Use `create(GetCapturePolicyResponseSchema)` to create a new message.
|
|
127
|
+
*/
|
|
128
|
+
export const GetCapturePolicyResponseSchema = /*@__PURE__*/ messageDesc(file_chronicle_v1_chronicle, 22);
|
|
129
|
+
/**
|
|
130
|
+
* Describes the message chronicle.v1.CapturePolicy.
|
|
131
|
+
* Use `create(CapturePolicySchema)` to create a new message.
|
|
132
|
+
*/
|
|
133
|
+
export const CapturePolicySchema = /*@__PURE__*/ messageDesc(file_chronicle_v1_chronicle, 23);
|
|
134
|
+
/**
|
|
135
|
+
* @generated from enum chronicle.v1.CaptureMode
|
|
136
|
+
*/
|
|
137
|
+
export var CaptureMode;
|
|
138
|
+
(function (CaptureMode) {
|
|
139
|
+
/**
|
|
140
|
+
* @generated from enum value: CAPTURE_MODE_UNSPECIFIED = 0;
|
|
141
|
+
*/
|
|
142
|
+
CaptureMode[CaptureMode["UNSPECIFIED"] = 0] = "UNSPECIFIED";
|
|
143
|
+
/**
|
|
144
|
+
* @generated from enum value: CAPTURE_MODE_LOCAL_ONLY = 1;
|
|
145
|
+
*/
|
|
146
|
+
CaptureMode[CaptureMode["LOCAL_ONLY"] = 1] = "LOCAL_ONLY";
|
|
147
|
+
/**
|
|
148
|
+
* @generated from enum value: CAPTURE_MODE_HYBRID = 2;
|
|
149
|
+
*/
|
|
150
|
+
CaptureMode[CaptureMode["HYBRID"] = 2] = "HYBRID";
|
|
151
|
+
/**
|
|
152
|
+
* @generated from enum value: CAPTURE_MODE_CLOUD = 3;
|
|
153
|
+
*/
|
|
154
|
+
CaptureMode[CaptureMode["CLOUD"] = 3] = "CLOUD";
|
|
155
|
+
/**
|
|
156
|
+
* @generated from enum value: CAPTURE_MODE_PAUSED = 4;
|
|
157
|
+
*/
|
|
158
|
+
CaptureMode[CaptureMode["PAUSED"] = 4] = "PAUSED";
|
|
159
|
+
})(CaptureMode || (CaptureMode = {}));
|
|
160
|
+
/**
|
|
161
|
+
* Describes the enum chronicle.v1.CaptureMode.
|
|
162
|
+
*/
|
|
163
|
+
export const CaptureModeSchema = /*@__PURE__*/ enumDesc(file_chronicle_v1_chronicle, 0);
|
|
164
|
+
/**
|
|
165
|
+
* @generated from enum chronicle.v1.CaptureDecision
|
|
166
|
+
*/
|
|
167
|
+
export var CaptureDecision;
|
|
168
|
+
(function (CaptureDecision) {
|
|
169
|
+
/**
|
|
170
|
+
* @generated from enum value: CAPTURE_DECISION_UNSPECIFIED = 0;
|
|
171
|
+
*/
|
|
172
|
+
CaptureDecision[CaptureDecision["UNSPECIFIED"] = 0] = "UNSPECIFIED";
|
|
173
|
+
/**
|
|
174
|
+
* @generated from enum value: CAPTURE_DECISION_ACCEPTED = 1;
|
|
175
|
+
*/
|
|
176
|
+
CaptureDecision[CaptureDecision["ACCEPTED"] = 1] = "ACCEPTED";
|
|
177
|
+
/**
|
|
178
|
+
* @generated from enum value: CAPTURE_DECISION_DROPPED_DENIED_APP = 2;
|
|
179
|
+
*/
|
|
180
|
+
CaptureDecision[CaptureDecision["DROPPED_DENIED_APP"] = 2] = "DROPPED_DENIED_APP";
|
|
181
|
+
/**
|
|
182
|
+
* @generated from enum value: CAPTURE_DECISION_DROPPED_DENIED_PATH = 3;
|
|
183
|
+
*/
|
|
184
|
+
CaptureDecision[CaptureDecision["DROPPED_DENIED_PATH"] = 3] = "DROPPED_DENIED_PATH";
|
|
185
|
+
/**
|
|
186
|
+
* @generated from enum value: CAPTURE_DECISION_DROPPED_SECRET = 4;
|
|
187
|
+
*/
|
|
188
|
+
CaptureDecision[CaptureDecision["DROPPED_SECRET"] = 4] = "DROPPED_SECRET";
|
|
189
|
+
/**
|
|
190
|
+
* @generated from enum value: CAPTURE_DECISION_DROPPED_PAUSED_WINDOW = 5;
|
|
191
|
+
*/
|
|
192
|
+
CaptureDecision[CaptureDecision["DROPPED_PAUSED_WINDOW"] = 5] = "DROPPED_PAUSED_WINDOW";
|
|
193
|
+
/**
|
|
194
|
+
* @generated from enum value: CAPTURE_DECISION_DROPPED_DUPLICATE = 6;
|
|
195
|
+
*/
|
|
196
|
+
CaptureDecision[CaptureDecision["DROPPED_DUPLICATE"] = 6] = "DROPPED_DUPLICATE";
|
|
197
|
+
})(CaptureDecision || (CaptureDecision = {}));
|
|
198
|
+
/**
|
|
199
|
+
* Describes the enum chronicle.v1.CaptureDecision.
|
|
200
|
+
*/
|
|
201
|
+
export const CaptureDecisionSchema = /*@__PURE__*/ enumDesc(file_chronicle_v1_chronicle, 1);
|
|
202
|
+
/**
|
|
203
|
+
* ChronicleService coordinates desktop screen-context capture with platform
|
|
204
|
+
* memory, policy, audit, meter, and revocation flows.
|
|
205
|
+
*
|
|
206
|
+
* @generated from service chronicle.v1.ChronicleService
|
|
207
|
+
*/
|
|
208
|
+
export const ChronicleService = /*@__PURE__*/ serviceDesc(file_chronicle_v1_chronicle, 0);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@evalops/sdk-ts",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.86",
|
|
4
4
|
"description": "Generated TypeScript SDK protobuf types for EvalOps public APIs",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"sideEffects": false,
|
|
@@ -86,6 +86,10 @@
|
|
|
86
86
|
"types": "./dist/connectors/v1/connectors_pb.d.ts",
|
|
87
87
|
"import": "./dist/connectors/v1/connectors_pb.js"
|
|
88
88
|
},
|
|
89
|
+
"./chronicle/v1/chronicle_pb": {
|
|
90
|
+
"types": "./dist/chronicle/v1/chronicle_pb.d.ts",
|
|
91
|
+
"import": "./dist/chronicle/v1/chronicle_pb.js"
|
|
92
|
+
},
|
|
89
93
|
"./entities/v1/entities_pb": {
|
|
90
94
|
"types": "./dist/entities/v1/entities_pb.d.ts",
|
|
91
95
|
"import": "./dist/entities/v1/entities_pb.js"
|