@evalops/sdk-ts 0.1.123 → 0.1.125
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/agentruntime/v1/runtime_pb.d.ts +12 -0
- package/dist/agentruntime/v1/runtime_pb.js +1 -1
- package/dist/compliance/v1/compliance_pb.d.ts +1 -1
- package/dist/compliance/v1/compliance_pb.js +3 -2
- package/dist/console/v1/console_pb.d.ts +337 -0
- package/dist/console/v1/console_pb.js +287 -44
- package/dist/notifications/v1/notifications_pb.js +2 -1
- package/dist/objectives/v1/objectives_pb.js +2 -1
- package/dist/toolexecution/v1/toolexecution_pb.d.ts +4 -0
- package/dist/toolexecution/v1/toolexecution_pb.js +2 -1
- package/dist/workflows/v1/workflows_pb.d.ts +1 -1
- package/dist/workflows/v1/workflows_pb.js +3 -2
- package/package.json +1 -5
- package/dist/relationships/v1/relationships_pb.d.ts +0 -367
- package/dist/relationships/v1/relationships_pb.js +0 -96
|
@@ -1,367 +0,0 @@
|
|
|
1
|
-
import type { GenFile, GenMessage, GenService } from "@bufbuild/protobuf/codegenv2";
|
|
2
|
-
import type { Timestamp } from "@bufbuild/protobuf/wkt";
|
|
3
|
-
import type { JsonObject, Message } from "@bufbuild/protobuf";
|
|
4
|
-
/**
|
|
5
|
-
* Describes the file relationships/v1/relationships.proto.
|
|
6
|
-
*/
|
|
7
|
-
export declare const file_relationships_v1_relationships: GenFile;
|
|
8
|
-
/**
|
|
9
|
-
* EntityRelationship is a directed edge from one entity to another.
|
|
10
|
-
*
|
|
11
|
-
* @generated from message relationships.v1.EntityRelationship
|
|
12
|
-
*/
|
|
13
|
-
export type EntityRelationship = Message<"relationships.v1.EntityRelationship"> & {
|
|
14
|
-
/**
|
|
15
|
-
* @generated from field: string subject_entity_id = 1;
|
|
16
|
-
*/
|
|
17
|
-
subjectEntityId: string;
|
|
18
|
-
/**
|
|
19
|
-
* @generated from field: string edge_type = 2;
|
|
20
|
-
*/
|
|
21
|
-
edgeType: string;
|
|
22
|
-
/**
|
|
23
|
-
* @generated from field: string object_entity_id = 3;
|
|
24
|
-
*/
|
|
25
|
-
objectEntityId: string;
|
|
26
|
-
/**
|
|
27
|
-
* @generated from field: google.protobuf.Struct properties = 4;
|
|
28
|
-
*/
|
|
29
|
-
properties?: JsonObject | undefined;
|
|
30
|
-
/**
|
|
31
|
-
* @generated from field: string workspace_id = 5;
|
|
32
|
-
*/
|
|
33
|
-
workspaceId: string;
|
|
34
|
-
/**
|
|
35
|
-
* @generated from field: google.protobuf.Timestamp observed_at = 6;
|
|
36
|
-
*/
|
|
37
|
-
observedAt?: Timestamp | undefined;
|
|
38
|
-
/**
|
|
39
|
-
* @generated from field: google.protobuf.Timestamp valid_from = 7;
|
|
40
|
-
*/
|
|
41
|
-
validFrom?: Timestamp | undefined;
|
|
42
|
-
/**
|
|
43
|
-
* @generated from field: google.protobuf.Timestamp valid_to = 8;
|
|
44
|
-
*/
|
|
45
|
-
validTo?: Timestamp | undefined;
|
|
46
|
-
};
|
|
47
|
-
/**
|
|
48
|
-
* Describes the message relationships.v1.EntityRelationship.
|
|
49
|
-
* Use `create(EntityRelationshipSchema)` to create a new message.
|
|
50
|
-
*/
|
|
51
|
-
export declare const EntityRelationshipSchema: GenMessage<EntityRelationship>;
|
|
52
|
-
/**
|
|
53
|
-
* @generated from message relationships.v1.RelationshipKey
|
|
54
|
-
*/
|
|
55
|
-
export type RelationshipKey = Message<"relationships.v1.RelationshipKey"> & {
|
|
56
|
-
/**
|
|
57
|
-
* @generated from field: string workspace_id = 1;
|
|
58
|
-
*/
|
|
59
|
-
workspaceId: string;
|
|
60
|
-
/**
|
|
61
|
-
* @generated from field: string subject_entity_id = 2;
|
|
62
|
-
*/
|
|
63
|
-
subjectEntityId: string;
|
|
64
|
-
/**
|
|
65
|
-
* @generated from field: string edge_type = 3;
|
|
66
|
-
*/
|
|
67
|
-
edgeType: string;
|
|
68
|
-
/**
|
|
69
|
-
* @generated from field: string object_entity_id = 4;
|
|
70
|
-
*/
|
|
71
|
-
objectEntityId: string;
|
|
72
|
-
};
|
|
73
|
-
/**
|
|
74
|
-
* Describes the message relationships.v1.RelationshipKey.
|
|
75
|
-
* Use `create(RelationshipKeySchema)` to create a new message.
|
|
76
|
-
*/
|
|
77
|
-
export declare const RelationshipKeySchema: GenMessage<RelationshipKey>;
|
|
78
|
-
/**
|
|
79
|
-
* @generated from message relationships.v1.EdgeFilter
|
|
80
|
-
*/
|
|
81
|
-
export type EdgeFilter = Message<"relationships.v1.EdgeFilter"> & {
|
|
82
|
-
/**
|
|
83
|
-
* @generated from field: repeated string edge_types = 1;
|
|
84
|
-
*/
|
|
85
|
-
edgeTypes: string[];
|
|
86
|
-
/**
|
|
87
|
-
* @generated from field: google.protobuf.Timestamp as_of = 2;
|
|
88
|
-
*/
|
|
89
|
-
asOf?: Timestamp | undefined;
|
|
90
|
-
};
|
|
91
|
-
/**
|
|
92
|
-
* Describes the message relationships.v1.EdgeFilter.
|
|
93
|
-
* Use `create(EdgeFilterSchema)` to create a new message.
|
|
94
|
-
*/
|
|
95
|
-
export declare const EdgeFilterSchema: GenMessage<EdgeFilter>;
|
|
96
|
-
/**
|
|
97
|
-
* @generated from message relationships.v1.CreateRelationshipRequest
|
|
98
|
-
*/
|
|
99
|
-
export type CreateRelationshipRequest = Message<"relationships.v1.CreateRelationshipRequest"> & {
|
|
100
|
-
/**
|
|
101
|
-
* @generated from field: relationships.v1.EntityRelationship relationship = 1;
|
|
102
|
-
*/
|
|
103
|
-
relationship?: EntityRelationship | undefined;
|
|
104
|
-
};
|
|
105
|
-
/**
|
|
106
|
-
* Describes the message relationships.v1.CreateRelationshipRequest.
|
|
107
|
-
* Use `create(CreateRelationshipRequestSchema)` to create a new message.
|
|
108
|
-
*/
|
|
109
|
-
export declare const CreateRelationshipRequestSchema: GenMessage<CreateRelationshipRequest>;
|
|
110
|
-
/**
|
|
111
|
-
* @generated from message relationships.v1.UpdateRelationshipRequest
|
|
112
|
-
*/
|
|
113
|
-
export type UpdateRelationshipRequest = Message<"relationships.v1.UpdateRelationshipRequest"> & {
|
|
114
|
-
/**
|
|
115
|
-
* @generated from field: relationships.v1.EntityRelationship relationship = 1;
|
|
116
|
-
*/
|
|
117
|
-
relationship?: EntityRelationship | undefined;
|
|
118
|
-
};
|
|
119
|
-
/**
|
|
120
|
-
* Describes the message relationships.v1.UpdateRelationshipRequest.
|
|
121
|
-
* Use `create(UpdateRelationshipRequestSchema)` to create a new message.
|
|
122
|
-
*/
|
|
123
|
-
export declare const UpdateRelationshipRequestSchema: GenMessage<UpdateRelationshipRequest>;
|
|
124
|
-
/**
|
|
125
|
-
* @generated from message relationships.v1.GetRelationshipRequest
|
|
126
|
-
*/
|
|
127
|
-
export type GetRelationshipRequest = Message<"relationships.v1.GetRelationshipRequest"> & {
|
|
128
|
-
/**
|
|
129
|
-
* @generated from field: relationships.v1.RelationshipKey key = 1;
|
|
130
|
-
*/
|
|
131
|
-
key?: RelationshipKey | undefined;
|
|
132
|
-
};
|
|
133
|
-
/**
|
|
134
|
-
* Describes the message relationships.v1.GetRelationshipRequest.
|
|
135
|
-
* Use `create(GetRelationshipRequestSchema)` to create a new message.
|
|
136
|
-
*/
|
|
137
|
-
export declare const GetRelationshipRequestSchema: GenMessage<GetRelationshipRequest>;
|
|
138
|
-
/**
|
|
139
|
-
* @generated from message relationships.v1.DeleteRelationshipRequest
|
|
140
|
-
*/
|
|
141
|
-
export type DeleteRelationshipRequest = Message<"relationships.v1.DeleteRelationshipRequest"> & {
|
|
142
|
-
/**
|
|
143
|
-
* @generated from field: relationships.v1.RelationshipKey key = 1;
|
|
144
|
-
*/
|
|
145
|
-
key?: RelationshipKey | undefined;
|
|
146
|
-
};
|
|
147
|
-
/**
|
|
148
|
-
* Describes the message relationships.v1.DeleteRelationshipRequest.
|
|
149
|
-
* Use `create(DeleteRelationshipRequestSchema)` to create a new message.
|
|
150
|
-
*/
|
|
151
|
-
export declare const DeleteRelationshipRequestSchema: GenMessage<DeleteRelationshipRequest>;
|
|
152
|
-
/**
|
|
153
|
-
* @generated from message relationships.v1.CreateRelationshipResponse
|
|
154
|
-
*/
|
|
155
|
-
export type CreateRelationshipResponse = Message<"relationships.v1.CreateRelationshipResponse"> & {
|
|
156
|
-
/**
|
|
157
|
-
* @generated from field: relationships.v1.EntityRelationship relationship = 1;
|
|
158
|
-
*/
|
|
159
|
-
relationship?: EntityRelationship | undefined;
|
|
160
|
-
};
|
|
161
|
-
/**
|
|
162
|
-
* Describes the message relationships.v1.CreateRelationshipResponse.
|
|
163
|
-
* Use `create(CreateRelationshipResponseSchema)` to create a new message.
|
|
164
|
-
*/
|
|
165
|
-
export declare const CreateRelationshipResponseSchema: GenMessage<CreateRelationshipResponse>;
|
|
166
|
-
/**
|
|
167
|
-
* @generated from message relationships.v1.GetRelationshipResponse
|
|
168
|
-
*/
|
|
169
|
-
export type GetRelationshipResponse = Message<"relationships.v1.GetRelationshipResponse"> & {
|
|
170
|
-
/**
|
|
171
|
-
* @generated from field: relationships.v1.EntityRelationship relationship = 1;
|
|
172
|
-
*/
|
|
173
|
-
relationship?: EntityRelationship | undefined;
|
|
174
|
-
};
|
|
175
|
-
/**
|
|
176
|
-
* Describes the message relationships.v1.GetRelationshipResponse.
|
|
177
|
-
* Use `create(GetRelationshipResponseSchema)` to create a new message.
|
|
178
|
-
*/
|
|
179
|
-
export declare const GetRelationshipResponseSchema: GenMessage<GetRelationshipResponse>;
|
|
180
|
-
/**
|
|
181
|
-
* @generated from message relationships.v1.UpdateRelationshipResponse
|
|
182
|
-
*/
|
|
183
|
-
export type UpdateRelationshipResponse = Message<"relationships.v1.UpdateRelationshipResponse"> & {
|
|
184
|
-
/**
|
|
185
|
-
* @generated from field: relationships.v1.EntityRelationship relationship = 1;
|
|
186
|
-
*/
|
|
187
|
-
relationship?: EntityRelationship | undefined;
|
|
188
|
-
};
|
|
189
|
-
/**
|
|
190
|
-
* Describes the message relationships.v1.UpdateRelationshipResponse.
|
|
191
|
-
* Use `create(UpdateRelationshipResponseSchema)` to create a new message.
|
|
192
|
-
*/
|
|
193
|
-
export declare const UpdateRelationshipResponseSchema: GenMessage<UpdateRelationshipResponse>;
|
|
194
|
-
/**
|
|
195
|
-
* @generated from message relationships.v1.DeleteRelationshipResponse
|
|
196
|
-
*/
|
|
197
|
-
export type DeleteRelationshipResponse = Message<"relationships.v1.DeleteRelationshipResponse"> & {};
|
|
198
|
-
/**
|
|
199
|
-
* Describes the message relationships.v1.DeleteRelationshipResponse.
|
|
200
|
-
* Use `create(DeleteRelationshipResponseSchema)` to create a new message.
|
|
201
|
-
*/
|
|
202
|
-
export declare const DeleteRelationshipResponseSchema: GenMessage<DeleteRelationshipResponse>;
|
|
203
|
-
/**
|
|
204
|
-
* @generated from message relationships.v1.ListRelationshipsRequest
|
|
205
|
-
*/
|
|
206
|
-
export type ListRelationshipsRequest = Message<"relationships.v1.ListRelationshipsRequest"> & {
|
|
207
|
-
/**
|
|
208
|
-
* @generated from field: string workspace_id = 1;
|
|
209
|
-
*/
|
|
210
|
-
workspaceId: string;
|
|
211
|
-
/**
|
|
212
|
-
* @generated from field: string subject_entity_id = 2;
|
|
213
|
-
*/
|
|
214
|
-
subjectEntityId: string;
|
|
215
|
-
/**
|
|
216
|
-
* @generated from field: string object_entity_id = 3;
|
|
217
|
-
*/
|
|
218
|
-
objectEntityId: string;
|
|
219
|
-
/**
|
|
220
|
-
* @generated from field: relationships.v1.EdgeFilter edge_filter = 4;
|
|
221
|
-
*/
|
|
222
|
-
edgeFilter?: EdgeFilter | undefined;
|
|
223
|
-
/**
|
|
224
|
-
* @generated from field: int32 limit = 5;
|
|
225
|
-
*/
|
|
226
|
-
limit: number;
|
|
227
|
-
/**
|
|
228
|
-
* @generated from field: int32 offset = 6;
|
|
229
|
-
*/
|
|
230
|
-
offset: number;
|
|
231
|
-
};
|
|
232
|
-
/**
|
|
233
|
-
* Describes the message relationships.v1.ListRelationshipsRequest.
|
|
234
|
-
* Use `create(ListRelationshipsRequestSchema)` to create a new message.
|
|
235
|
-
*/
|
|
236
|
-
export declare const ListRelationshipsRequestSchema: GenMessage<ListRelationshipsRequest>;
|
|
237
|
-
/**
|
|
238
|
-
* @generated from message relationships.v1.ListRelationshipsResponse
|
|
239
|
-
*/
|
|
240
|
-
export type ListRelationshipsResponse = Message<"relationships.v1.ListRelationshipsResponse"> & {
|
|
241
|
-
/**
|
|
242
|
-
* @generated from field: repeated relationships.v1.EntityRelationship relationships = 1;
|
|
243
|
-
*/
|
|
244
|
-
relationships: EntityRelationship[];
|
|
245
|
-
/**
|
|
246
|
-
* @generated from field: int32 total = 2;
|
|
247
|
-
*/
|
|
248
|
-
total: number;
|
|
249
|
-
};
|
|
250
|
-
/**
|
|
251
|
-
* Describes the message relationships.v1.ListRelationshipsResponse.
|
|
252
|
-
* Use `create(ListRelationshipsResponseSchema)` to create a new message.
|
|
253
|
-
*/
|
|
254
|
-
export declare const ListRelationshipsResponseSchema: GenMessage<ListRelationshipsResponse>;
|
|
255
|
-
/**
|
|
256
|
-
* @generated from message relationships.v1.TraverseRequest
|
|
257
|
-
*/
|
|
258
|
-
export type TraverseRequest = Message<"relationships.v1.TraverseRequest"> & {
|
|
259
|
-
/**
|
|
260
|
-
* @generated from field: string workspace_id = 1;
|
|
261
|
-
*/
|
|
262
|
-
workspaceId: string;
|
|
263
|
-
/**
|
|
264
|
-
* @generated from field: string entity_id = 2;
|
|
265
|
-
*/
|
|
266
|
-
entityId: string;
|
|
267
|
-
/**
|
|
268
|
-
* @generated from field: relationships.v1.EdgeFilter edge_filter = 3;
|
|
269
|
-
*/
|
|
270
|
-
edgeFilter?: EdgeFilter | undefined;
|
|
271
|
-
/**
|
|
272
|
-
* @generated from field: int32 max_depth = 4;
|
|
273
|
-
*/
|
|
274
|
-
maxDepth: number;
|
|
275
|
-
};
|
|
276
|
-
/**
|
|
277
|
-
* Describes the message relationships.v1.TraverseRequest.
|
|
278
|
-
* Use `create(TraverseRequestSchema)` to create a new message.
|
|
279
|
-
*/
|
|
280
|
-
export declare const TraverseRequestSchema: GenMessage<TraverseRequest>;
|
|
281
|
-
/**
|
|
282
|
-
* @generated from message relationships.v1.TraversalStep
|
|
283
|
-
*/
|
|
284
|
-
export type TraversalStep = Message<"relationships.v1.TraversalStep"> & {
|
|
285
|
-
/**
|
|
286
|
-
* @generated from field: relationships.v1.EntityRelationship relationship = 1;
|
|
287
|
-
*/
|
|
288
|
-
relationship?: EntityRelationship | undefined;
|
|
289
|
-
/**
|
|
290
|
-
* @generated from field: int32 depth = 2;
|
|
291
|
-
*/
|
|
292
|
-
depth: number;
|
|
293
|
-
};
|
|
294
|
-
/**
|
|
295
|
-
* Describes the message relationships.v1.TraversalStep.
|
|
296
|
-
* Use `create(TraversalStepSchema)` to create a new message.
|
|
297
|
-
*/
|
|
298
|
-
export declare const TraversalStepSchema: GenMessage<TraversalStep>;
|
|
299
|
-
/**
|
|
300
|
-
* @generated from message relationships.v1.TraverseResponse
|
|
301
|
-
*/
|
|
302
|
-
export type TraverseResponse = Message<"relationships.v1.TraverseResponse"> & {
|
|
303
|
-
/**
|
|
304
|
-
* @generated from field: repeated relationships.v1.TraversalStep steps = 1;
|
|
305
|
-
*/
|
|
306
|
-
steps: TraversalStep[];
|
|
307
|
-
};
|
|
308
|
-
/**
|
|
309
|
-
* Describes the message relationships.v1.TraverseResponse.
|
|
310
|
-
* Use `create(TraverseResponseSchema)` to create a new message.
|
|
311
|
-
*/
|
|
312
|
-
export declare const TraverseResponseSchema: GenMessage<TraverseResponse>;
|
|
313
|
-
/**
|
|
314
|
-
* RelationshipService manages directed relationships between canonical entities.
|
|
315
|
-
*
|
|
316
|
-
* @generated from service relationships.v1.RelationshipService
|
|
317
|
-
*/
|
|
318
|
-
export declare const RelationshipService: GenService<{
|
|
319
|
-
/**
|
|
320
|
-
* @generated from rpc relationships.v1.RelationshipService.CreateRelationship
|
|
321
|
-
*/
|
|
322
|
-
createRelationship: {
|
|
323
|
-
methodKind: "unary";
|
|
324
|
-
input: typeof CreateRelationshipRequestSchema;
|
|
325
|
-
output: typeof CreateRelationshipResponseSchema;
|
|
326
|
-
};
|
|
327
|
-
/**
|
|
328
|
-
* @generated from rpc relationships.v1.RelationshipService.GetRelationship
|
|
329
|
-
*/
|
|
330
|
-
getRelationship: {
|
|
331
|
-
methodKind: "unary";
|
|
332
|
-
input: typeof GetRelationshipRequestSchema;
|
|
333
|
-
output: typeof GetRelationshipResponseSchema;
|
|
334
|
-
};
|
|
335
|
-
/**
|
|
336
|
-
* @generated from rpc relationships.v1.RelationshipService.UpdateRelationship
|
|
337
|
-
*/
|
|
338
|
-
updateRelationship: {
|
|
339
|
-
methodKind: "unary";
|
|
340
|
-
input: typeof UpdateRelationshipRequestSchema;
|
|
341
|
-
output: typeof UpdateRelationshipResponseSchema;
|
|
342
|
-
};
|
|
343
|
-
/**
|
|
344
|
-
* @generated from rpc relationships.v1.RelationshipService.DeleteRelationship
|
|
345
|
-
*/
|
|
346
|
-
deleteRelationship: {
|
|
347
|
-
methodKind: "unary";
|
|
348
|
-
input: typeof DeleteRelationshipRequestSchema;
|
|
349
|
-
output: typeof DeleteRelationshipResponseSchema;
|
|
350
|
-
};
|
|
351
|
-
/**
|
|
352
|
-
* @generated from rpc relationships.v1.RelationshipService.ListRelationships
|
|
353
|
-
*/
|
|
354
|
-
listRelationships: {
|
|
355
|
-
methodKind: "unary";
|
|
356
|
-
input: typeof ListRelationshipsRequestSchema;
|
|
357
|
-
output: typeof ListRelationshipsResponseSchema;
|
|
358
|
-
};
|
|
359
|
-
/**
|
|
360
|
-
* @generated from rpc relationships.v1.RelationshipService.Traverse
|
|
361
|
-
*/
|
|
362
|
-
traverse: {
|
|
363
|
-
methodKind: "unary";
|
|
364
|
-
input: typeof TraverseRequestSchema;
|
|
365
|
-
output: typeof TraverseResponseSchema;
|
|
366
|
-
};
|
|
367
|
-
}>;
|
|
@@ -1,96 +0,0 @@
|
|
|
1
|
-
// @generated by protoc-gen-es v2.12.0 with parameter "target=ts,import_extension=.js"
|
|
2
|
-
// @generated from file relationships/v1/relationships.proto (package relationships.v1, syntax proto3)
|
|
3
|
-
/* eslint-disable */
|
|
4
|
-
import { fileDesc, messageDesc, serviceDesc } from "@bufbuild/protobuf/codegenv2";
|
|
5
|
-
import { file_buf_validate_validate } from "../../buf/validate/validate_pb.js";
|
|
6
|
-
import { file_google_protobuf_struct, file_google_protobuf_timestamp } from "@bufbuild/protobuf/wkt";
|
|
7
|
-
/**
|
|
8
|
-
* Describes the file relationships/v1/relationships.proto.
|
|
9
|
-
*/
|
|
10
|
-
export const file_relationships_v1_relationships = /*@__PURE__*/ fileDesc("CiRyZWxhdGlvbnNoaXBzL3YxL3JlbGF0aW9uc2hpcHMucHJvdG8SEHJlbGF0aW9uc2hpcHMudjEi1QIKEkVudGl0eVJlbGF0aW9uc2hpcBIjChFzdWJqZWN0X2VudGl0eV9pZBgBIAEoCUIIukgFcgOwAQESGgoJZWRnZV90eXBlGAIgASgJQge6SARyAhABEiIKEG9iamVjdF9lbnRpdHlfaWQYAyABKAlCCLpIBXIDsAEBEisKCnByb3BlcnRpZXMYBCABKAsyFy5nb29nbGUucHJvdG9idWYuU3RydWN0Eh4KDHdvcmtzcGFjZV9pZBgFIAEoCUIIukgFcgOwAQESLwoLb2JzZXJ2ZWRfYXQYBiABKAsyGi5nb29nbGUucHJvdG9idWYuVGltZXN0YW1wEi4KCnZhbGlkX2Zyb20YByABKAsyGi5nb29nbGUucHJvdG9idWYuVGltZXN0YW1wEiwKCHZhbGlkX3RvGAggASgLMhouZ29vZ2xlLnByb3RvYnVmLlRpbWVzdGFtcCKWAQoPUmVsYXRpb25zaGlwS2V5Eh4KDHdvcmtzcGFjZV9pZBgBIAEoCUIIukgFcgOwAQESIwoRc3ViamVjdF9lbnRpdHlfaWQYAiABKAlCCLpIBXIDsAEBEhoKCWVkZ2VfdHlwZRgDIAEoCUIHukgEcgIQARIiChBvYmplY3RfZW50aXR5X2lkGAQgASgJQgi6SAVyA7ABASJLCgpFZGdlRmlsdGVyEhIKCmVkZ2VfdHlwZXMYASADKAkSKQoFYXNfb2YYAiABKAsyGi5nb29nbGUucHJvdG9idWYuVGltZXN0YW1wIl8KGUNyZWF0ZVJlbGF0aW9uc2hpcFJlcXVlc3QSQgoMcmVsYXRpb25zaGlwGAEgASgLMiQucmVsYXRpb25zaGlwcy52MS5FbnRpdHlSZWxhdGlvbnNoaXBCBrpIA8gBASJfChlVcGRhdGVSZWxhdGlvbnNoaXBSZXF1ZXN0EkIKDHJlbGF0aW9uc2hpcBgBIAEoCzIkLnJlbGF0aW9uc2hpcHMudjEuRW50aXR5UmVsYXRpb25zaGlwQga6SAPIAQEiUAoWR2V0UmVsYXRpb25zaGlwUmVxdWVzdBI2CgNrZXkYASABKAsyIS5yZWxhdGlvbnNoaXBzLnYxLlJlbGF0aW9uc2hpcEtleUIGukgDyAEBIlMKGURlbGV0ZVJlbGF0aW9uc2hpcFJlcXVlc3QSNgoDa2V5GAEgASgLMiEucmVsYXRpb25zaGlwcy52MS5SZWxhdGlvbnNoaXBLZXlCBrpIA8gBASJYChpDcmVhdGVSZWxhdGlvbnNoaXBSZXNwb25zZRI6CgxyZWxhdGlvbnNoaXAYASABKAsyJC5yZWxhdGlvbnNoaXBzLnYxLkVudGl0eVJlbGF0aW9uc2hpcCJVChdHZXRSZWxhdGlvbnNoaXBSZXNwb25zZRI6CgxyZWxhdGlvbnNoaXAYASABKAsyJC5yZWxhdGlvbnNoaXBzLnYxLkVudGl0eVJlbGF0aW9uc2hpcCJYChpVcGRhdGVSZWxhdGlvbnNoaXBSZXNwb25zZRI6CgxyZWxhdGlvbnNoaXAYASABKAsyJC5yZWxhdGlvbnNoaXBzLnYxLkVudGl0eVJlbGF0aW9uc2hpcCIcChpEZWxldGVSZWxhdGlvbnNoaXBSZXNwb25zZSLWAQoYTGlzdFJlbGF0aW9uc2hpcHNSZXF1ZXN0Eh4KDHdvcmtzcGFjZV9pZBgBIAEoCUIIukgFcgOwAQESGQoRc3ViamVjdF9lbnRpdHlfaWQYAiABKAkSGAoQb2JqZWN0X2VudGl0eV9pZBgDIAEoCRIxCgtlZGdlX2ZpbHRlchgEIAEoCzIcLnJlbGF0aW9uc2hpcHMudjEuRWRnZUZpbHRlchIZCgVsaW1pdBgFIAEoBUIKukgHGgUYyAEoABIXCgZvZmZzZXQYBiABKAVCB7pIBBoCKAAiZwoZTGlzdFJlbGF0aW9uc2hpcHNSZXNwb25zZRI7Cg1yZWxhdGlvbnNoaXBzGAEgAygLMiQucmVsYXRpb25zaGlwcy52MS5FbnRpdHlSZWxhdGlvbnNoaXASDQoFdG90YWwYAiABKAUinwEKD1RyYXZlcnNlUmVxdWVzdBIeCgx3b3Jrc3BhY2VfaWQYASABKAlCCLpIBXIDsAEBEhsKCWVudGl0eV9pZBgCIAEoCUIIukgFcgOwAQESMQoLZWRnZV9maWx0ZXIYAyABKAsyHC5yZWxhdGlvbnNoaXBzLnYxLkVkZ2VGaWx0ZXISHAoJbWF4X2RlcHRoGAQgASgFQgm6SAYaBBggKAAiWgoNVHJhdmVyc2FsU3RlcBI6CgxyZWxhdGlvbnNoaXAYASABKAsyJC5yZWxhdGlvbnNoaXBzLnYxLkVudGl0eVJlbGF0aW9uc2hpcBINCgVkZXB0aBgCIAEoBSJCChBUcmF2ZXJzZVJlc3BvbnNlEi4KBXN0ZXBzGAEgAygLMh8ucmVsYXRpb25zaGlwcy52MS5UcmF2ZXJzYWxTdGVwMpEFChNSZWxhdGlvbnNoaXBTZXJ2aWNlEm8KEkNyZWF0ZVJlbGF0aW9uc2hpcBIrLnJlbGF0aW9uc2hpcHMudjEuQ3JlYXRlUmVsYXRpb25zaGlwUmVxdWVzdBosLnJlbGF0aW9uc2hpcHMudjEuQ3JlYXRlUmVsYXRpb25zaGlwUmVzcG9uc2USZgoPR2V0UmVsYXRpb25zaGlwEigucmVsYXRpb25zaGlwcy52MS5HZXRSZWxhdGlvbnNoaXBSZXF1ZXN0GikucmVsYXRpb25zaGlwcy52MS5HZXRSZWxhdGlvbnNoaXBSZXNwb25zZRJvChJVcGRhdGVSZWxhdGlvbnNoaXASKy5yZWxhdGlvbnNoaXBzLnYxLlVwZGF0ZVJlbGF0aW9uc2hpcFJlcXVlc3QaLC5yZWxhdGlvbnNoaXBzLnYxLlVwZGF0ZVJlbGF0aW9uc2hpcFJlc3BvbnNlEm8KEkRlbGV0ZVJlbGF0aW9uc2hpcBIrLnJlbGF0aW9uc2hpcHMudjEuRGVsZXRlUmVsYXRpb25zaGlwUmVxdWVzdBosLnJlbGF0aW9uc2hpcHMudjEuRGVsZXRlUmVsYXRpb25zaGlwUmVzcG9uc2USbAoRTGlzdFJlbGF0aW9uc2hpcHMSKi5yZWxhdGlvbnNoaXBzLnYxLkxpc3RSZWxhdGlvbnNoaXBzUmVxdWVzdBorLnJlbGF0aW9uc2hpcHMudjEuTGlzdFJlbGF0aW9uc2hpcHNSZXNwb25zZRJRCghUcmF2ZXJzZRIhLnJlbGF0aW9uc2hpcHMudjEuVHJhdmVyc2VSZXF1ZXN0GiIucmVsYXRpb25zaGlwcy52MS5UcmF2ZXJzZVJlc3BvbnNlQkVaQ2dpdGh1Yi5jb20vZXZhbG9wcy9wbGF0Zm9ybS9nZW4vZ28vcmVsYXRpb25zaGlwcy92MTtyZWxhdGlvbnNoaXBzdjFiBnByb3RvMw", [file_buf_validate_validate, file_google_protobuf_struct, file_google_protobuf_timestamp]);
|
|
11
|
-
/**
|
|
12
|
-
* Describes the message relationships.v1.EntityRelationship.
|
|
13
|
-
* Use `create(EntityRelationshipSchema)` to create a new message.
|
|
14
|
-
*/
|
|
15
|
-
export const EntityRelationshipSchema = /*@__PURE__*/ messageDesc(file_relationships_v1_relationships, 0);
|
|
16
|
-
/**
|
|
17
|
-
* Describes the message relationships.v1.RelationshipKey.
|
|
18
|
-
* Use `create(RelationshipKeySchema)` to create a new message.
|
|
19
|
-
*/
|
|
20
|
-
export const RelationshipKeySchema = /*@__PURE__*/ messageDesc(file_relationships_v1_relationships, 1);
|
|
21
|
-
/**
|
|
22
|
-
* Describes the message relationships.v1.EdgeFilter.
|
|
23
|
-
* Use `create(EdgeFilterSchema)` to create a new message.
|
|
24
|
-
*/
|
|
25
|
-
export const EdgeFilterSchema = /*@__PURE__*/ messageDesc(file_relationships_v1_relationships, 2);
|
|
26
|
-
/**
|
|
27
|
-
* Describes the message relationships.v1.CreateRelationshipRequest.
|
|
28
|
-
* Use `create(CreateRelationshipRequestSchema)` to create a new message.
|
|
29
|
-
*/
|
|
30
|
-
export const CreateRelationshipRequestSchema = /*@__PURE__*/ messageDesc(file_relationships_v1_relationships, 3);
|
|
31
|
-
/**
|
|
32
|
-
* Describes the message relationships.v1.UpdateRelationshipRequest.
|
|
33
|
-
* Use `create(UpdateRelationshipRequestSchema)` to create a new message.
|
|
34
|
-
*/
|
|
35
|
-
export const UpdateRelationshipRequestSchema = /*@__PURE__*/ messageDesc(file_relationships_v1_relationships, 4);
|
|
36
|
-
/**
|
|
37
|
-
* Describes the message relationships.v1.GetRelationshipRequest.
|
|
38
|
-
* Use `create(GetRelationshipRequestSchema)` to create a new message.
|
|
39
|
-
*/
|
|
40
|
-
export const GetRelationshipRequestSchema = /*@__PURE__*/ messageDesc(file_relationships_v1_relationships, 5);
|
|
41
|
-
/**
|
|
42
|
-
* Describes the message relationships.v1.DeleteRelationshipRequest.
|
|
43
|
-
* Use `create(DeleteRelationshipRequestSchema)` to create a new message.
|
|
44
|
-
*/
|
|
45
|
-
export const DeleteRelationshipRequestSchema = /*@__PURE__*/ messageDesc(file_relationships_v1_relationships, 6);
|
|
46
|
-
/**
|
|
47
|
-
* Describes the message relationships.v1.CreateRelationshipResponse.
|
|
48
|
-
* Use `create(CreateRelationshipResponseSchema)` to create a new message.
|
|
49
|
-
*/
|
|
50
|
-
export const CreateRelationshipResponseSchema = /*@__PURE__*/ messageDesc(file_relationships_v1_relationships, 7);
|
|
51
|
-
/**
|
|
52
|
-
* Describes the message relationships.v1.GetRelationshipResponse.
|
|
53
|
-
* Use `create(GetRelationshipResponseSchema)` to create a new message.
|
|
54
|
-
*/
|
|
55
|
-
export const GetRelationshipResponseSchema = /*@__PURE__*/ messageDesc(file_relationships_v1_relationships, 8);
|
|
56
|
-
/**
|
|
57
|
-
* Describes the message relationships.v1.UpdateRelationshipResponse.
|
|
58
|
-
* Use `create(UpdateRelationshipResponseSchema)` to create a new message.
|
|
59
|
-
*/
|
|
60
|
-
export const UpdateRelationshipResponseSchema = /*@__PURE__*/ messageDesc(file_relationships_v1_relationships, 9);
|
|
61
|
-
/**
|
|
62
|
-
* Describes the message relationships.v1.DeleteRelationshipResponse.
|
|
63
|
-
* Use `create(DeleteRelationshipResponseSchema)` to create a new message.
|
|
64
|
-
*/
|
|
65
|
-
export const DeleteRelationshipResponseSchema = /*@__PURE__*/ messageDesc(file_relationships_v1_relationships, 10);
|
|
66
|
-
/**
|
|
67
|
-
* Describes the message relationships.v1.ListRelationshipsRequest.
|
|
68
|
-
* Use `create(ListRelationshipsRequestSchema)` to create a new message.
|
|
69
|
-
*/
|
|
70
|
-
export const ListRelationshipsRequestSchema = /*@__PURE__*/ messageDesc(file_relationships_v1_relationships, 11);
|
|
71
|
-
/**
|
|
72
|
-
* Describes the message relationships.v1.ListRelationshipsResponse.
|
|
73
|
-
* Use `create(ListRelationshipsResponseSchema)` to create a new message.
|
|
74
|
-
*/
|
|
75
|
-
export const ListRelationshipsResponseSchema = /*@__PURE__*/ messageDesc(file_relationships_v1_relationships, 12);
|
|
76
|
-
/**
|
|
77
|
-
* Describes the message relationships.v1.TraverseRequest.
|
|
78
|
-
* Use `create(TraverseRequestSchema)` to create a new message.
|
|
79
|
-
*/
|
|
80
|
-
export const TraverseRequestSchema = /*@__PURE__*/ messageDesc(file_relationships_v1_relationships, 13);
|
|
81
|
-
/**
|
|
82
|
-
* Describes the message relationships.v1.TraversalStep.
|
|
83
|
-
* Use `create(TraversalStepSchema)` to create a new message.
|
|
84
|
-
*/
|
|
85
|
-
export const TraversalStepSchema = /*@__PURE__*/ messageDesc(file_relationships_v1_relationships, 14);
|
|
86
|
-
/**
|
|
87
|
-
* Describes the message relationships.v1.TraverseResponse.
|
|
88
|
-
* Use `create(TraverseResponseSchema)` to create a new message.
|
|
89
|
-
*/
|
|
90
|
-
export const TraverseResponseSchema = /*@__PURE__*/ messageDesc(file_relationships_v1_relationships, 15);
|
|
91
|
-
/**
|
|
92
|
-
* RelationshipService manages directed relationships between canonical entities.
|
|
93
|
-
*
|
|
94
|
-
* @generated from service relationships.v1.RelationshipService
|
|
95
|
-
*/
|
|
96
|
-
export const RelationshipService = /*@__PURE__*/ serviceDesc(file_relationships_v1_relationships, 0);
|