weave-typescript 0.46.0 → 0.47.1
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/weaveapi/agent/v1/agent.pb.d.ts +14 -14
- package/dist/weaveapi/agent/v1/agent.pb.js +88 -88
- package/dist/weaveapi/agent/v1/service.pb.d.ts +53 -53
- package/dist/weaveapi/agent/v1/service.pb.js +264 -250
- package/dist/weaveapi/chat/v1/chat.pb.d.ts +3 -3
- package/dist/weaveapi/chat/v1/chat.pb.js +33 -33
- package/dist/weaveapi/workflow/v1/service.pb.d.ts +55 -55
- package/dist/weaveapi/workflow/v1/service.pb.js +282 -268
- package/dist/weaveapi/workflow/v1/workflow.pb.d.ts +18 -18
- package/dist/weaveapi/workflow/v1/workflow.pb.js +111 -111
- package/dist/weavesql/weavedb/agent_sql.d.ts +83 -83
- package/dist/weavesql/weavedb/agent_sql.js +110 -110
- package/dist/weavesql/weavedb/workflow_sql.d.ts +93 -93
- package/dist/weavesql/weavedb/workflow_sql.js +120 -120
- package/package.json +2 -2
|
@@ -5,14 +5,14 @@
|
|
|
5
5
|
// protoc unknown
|
|
6
6
|
// source: weaveapi/agent/v1/service.proto
|
|
7
7
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
8
|
-
exports.AgentServiceDefinition = exports.AgentServiceClientImpl = exports.AgentServiceServiceName = exports.WatchAgentRunEventsResponse = exports.WatchAgentRunEventsRequest = exports.ListAgentRunsResponse = exports.ListAgentRunsRequest = exports.GetAgentRunResponse = exports.GetAgentRunRequest = exports.RunAgentResponse = exports.RunAgentRequest = exports.ListAgentVersionsResponse = exports.ListAgentVersionsRequest = exports.GetAgentVersionResponse = exports.GetAgentVersionRequest = exports.
|
|
8
|
+
exports.AgentServiceDefinition = exports.AgentServiceClientImpl = exports.AgentServiceServiceName = exports.WatchAgentRunEventsResponse = exports.WatchAgentRunEventsRequest = exports.ListAgentRunsResponse = exports.ListAgentRunsRequest = exports.GetAgentRunResponse = exports.GetAgentRunRequest = exports.RunAgentResponse = exports.RunAgentRequest = exports.ListAgentVersionsResponse = exports.ListAgentVersionsRequest = exports.GetAgentVersionResponse = exports.GetAgentVersionRequest = exports.PublishAgentDefinitionResponse = exports.PublishAgentDefinitionRequest = exports.PlanAgentPublishResponse = exports.PlanAgentPublishRequest = exports.UpdateAgentDraftResponse = exports.UpdateAgentDraftRequest = exports.ListAgentDefinitionsResponse = exports.ListAgentDefinitionsRequest = exports.GetAgentDefinitionResponse = exports.GetAgentDefinitionRequest = exports.CreateAgentDefinitionResponse = exports.CreateAgentDefinitionRequest = exports.protobufPackage = void 0;
|
|
9
9
|
/* eslint-disable */
|
|
10
10
|
const wire_1 = require("@bufbuild/protobuf/wire");
|
|
11
11
|
const operators_1 = require("rxjs/operators");
|
|
12
12
|
const struct_pb_1 = require("../../../google/protobuf/struct.pb");
|
|
13
13
|
const agent_pb_1 = require("./agent.pb");
|
|
14
14
|
exports.protobufPackage = "weaveapi.agent.v1";
|
|
15
|
-
function
|
|
15
|
+
function createBaseCreateAgentDefinitionRequest() {
|
|
16
16
|
return {
|
|
17
17
|
organizationId: "",
|
|
18
18
|
slug: "",
|
|
@@ -27,7 +27,7 @@ function createBaseCreateAgentTemplateRequest() {
|
|
|
27
27
|
metadata: undefined,
|
|
28
28
|
};
|
|
29
29
|
}
|
|
30
|
-
exports.
|
|
30
|
+
exports.CreateAgentDefinitionRequest = {
|
|
31
31
|
encode(message, writer = new wire_1.BinaryWriter()) {
|
|
32
32
|
if (message.organizationId !== "") {
|
|
33
33
|
writer.uint32(10).string(message.organizationId);
|
|
@@ -67,7 +67,7 @@ exports.CreateAgentTemplateRequest = {
|
|
|
67
67
|
decode(input, length) {
|
|
68
68
|
const reader = input instanceof wire_1.BinaryReader ? input : new wire_1.BinaryReader(input);
|
|
69
69
|
const end = length === undefined ? reader.len : reader.pos + length;
|
|
70
|
-
const message =
|
|
70
|
+
const message = createBaseCreateAgentDefinitionRequest();
|
|
71
71
|
while (reader.pos < end) {
|
|
72
72
|
const tag = reader.uint32();
|
|
73
73
|
switch (tag >>> 3) {
|
|
@@ -232,12 +232,12 @@ exports.CreateAgentTemplateRequest = {
|
|
|
232
232
|
return obj;
|
|
233
233
|
},
|
|
234
234
|
create(base) {
|
|
235
|
-
return exports.
|
|
235
|
+
return exports.CreateAgentDefinitionRequest.fromPartial(base !== null && base !== void 0 ? base : {});
|
|
236
236
|
},
|
|
237
237
|
fromPartial(object) {
|
|
238
238
|
var _a;
|
|
239
239
|
var _b, _c, _d, _e, _f, _g, _h, _j, _k, _l;
|
|
240
|
-
const message =
|
|
240
|
+
const message = createBaseCreateAgentDefinitionRequest();
|
|
241
241
|
message.organizationId = (_b = object.organizationId) !== null && _b !== void 0 ? _b : "";
|
|
242
242
|
message.slug = (_c = object.slug) !== null && _c !== void 0 ? _c : "";
|
|
243
243
|
message.name = (_d = object.name) !== null && _d !== void 0 ? _d : "";
|
|
@@ -252,13 +252,13 @@ exports.CreateAgentTemplateRequest = {
|
|
|
252
252
|
return message;
|
|
253
253
|
},
|
|
254
254
|
};
|
|
255
|
-
function
|
|
256
|
-
return {
|
|
255
|
+
function createBaseCreateAgentDefinitionResponse() {
|
|
256
|
+
return { definition: undefined, draft: undefined };
|
|
257
257
|
}
|
|
258
|
-
exports.
|
|
258
|
+
exports.CreateAgentDefinitionResponse = {
|
|
259
259
|
encode(message, writer = new wire_1.BinaryWriter()) {
|
|
260
|
-
if (message.
|
|
261
|
-
agent_pb_1.
|
|
260
|
+
if (message.definition !== undefined) {
|
|
261
|
+
agent_pb_1.AgentDefinition.encode(message.definition, writer.uint32(10).fork()).join();
|
|
262
262
|
}
|
|
263
263
|
if (message.draft !== undefined) {
|
|
264
264
|
agent_pb_1.AgentDraft.encode(message.draft, writer.uint32(18).fork()).join();
|
|
@@ -268,7 +268,7 @@ exports.CreateAgentTemplateResponse = {
|
|
|
268
268
|
decode(input, length) {
|
|
269
269
|
const reader = input instanceof wire_1.BinaryReader ? input : new wire_1.BinaryReader(input);
|
|
270
270
|
const end = length === undefined ? reader.len : reader.pos + length;
|
|
271
|
-
const message =
|
|
271
|
+
const message = createBaseCreateAgentDefinitionResponse();
|
|
272
272
|
while (reader.pos < end) {
|
|
273
273
|
const tag = reader.uint32();
|
|
274
274
|
switch (tag >>> 3) {
|
|
@@ -276,7 +276,7 @@ exports.CreateAgentTemplateResponse = {
|
|
|
276
276
|
if (tag !== 10) {
|
|
277
277
|
break;
|
|
278
278
|
}
|
|
279
|
-
message.
|
|
279
|
+
message.definition = agent_pb_1.AgentDefinition.decode(reader, reader.uint32());
|
|
280
280
|
continue;
|
|
281
281
|
}
|
|
282
282
|
case 2: {
|
|
@@ -296,14 +296,14 @@ exports.CreateAgentTemplateResponse = {
|
|
|
296
296
|
},
|
|
297
297
|
fromJSON(object) {
|
|
298
298
|
return {
|
|
299
|
-
|
|
299
|
+
definition: isSet(object.definition) ? agent_pb_1.AgentDefinition.fromJSON(object.definition) : undefined,
|
|
300
300
|
draft: isSet(object.draft) ? agent_pb_1.AgentDraft.fromJSON(object.draft) : undefined,
|
|
301
301
|
};
|
|
302
302
|
},
|
|
303
303
|
toJSON(message) {
|
|
304
304
|
const obj = {};
|
|
305
|
-
if (message.
|
|
306
|
-
obj.
|
|
305
|
+
if (message.definition !== undefined) {
|
|
306
|
+
obj.definition = agent_pb_1.AgentDefinition.toJSON(message.definition);
|
|
307
307
|
}
|
|
308
308
|
if (message.draft !== undefined) {
|
|
309
309
|
obj.draft = agent_pb_1.AgentDraft.toJSON(message.draft);
|
|
@@ -311,12 +311,12 @@ exports.CreateAgentTemplateResponse = {
|
|
|
311
311
|
return obj;
|
|
312
312
|
},
|
|
313
313
|
create(base) {
|
|
314
|
-
return exports.
|
|
314
|
+
return exports.CreateAgentDefinitionResponse.fromPartial(base !== null && base !== void 0 ? base : {});
|
|
315
315
|
},
|
|
316
316
|
fromPartial(object) {
|
|
317
|
-
const message =
|
|
318
|
-
message.
|
|
319
|
-
? agent_pb_1.
|
|
317
|
+
const message = createBaseCreateAgentDefinitionResponse();
|
|
318
|
+
message.definition = (object.definition !== undefined && object.definition !== null)
|
|
319
|
+
? agent_pb_1.AgentDefinition.fromPartial(object.definition)
|
|
320
320
|
: undefined;
|
|
321
321
|
message.draft = (object.draft !== undefined && object.draft !== null)
|
|
322
322
|
? agent_pb_1.AgentDraft.fromPartial(object.draft)
|
|
@@ -324,23 +324,23 @@ exports.CreateAgentTemplateResponse = {
|
|
|
324
324
|
return message;
|
|
325
325
|
},
|
|
326
326
|
};
|
|
327
|
-
function
|
|
328
|
-
return { organizationId: "",
|
|
327
|
+
function createBaseGetAgentDefinitionRequest() {
|
|
328
|
+
return { organizationId: "", agentDefinitionId: "" };
|
|
329
329
|
}
|
|
330
|
-
exports.
|
|
330
|
+
exports.GetAgentDefinitionRequest = {
|
|
331
331
|
encode(message, writer = new wire_1.BinaryWriter()) {
|
|
332
332
|
if (message.organizationId !== "") {
|
|
333
333
|
writer.uint32(10).string(message.organizationId);
|
|
334
334
|
}
|
|
335
|
-
if (message.
|
|
336
|
-
writer.uint32(18).string(message.
|
|
335
|
+
if (message.agentDefinitionId !== "") {
|
|
336
|
+
writer.uint32(18).string(message.agentDefinitionId);
|
|
337
337
|
}
|
|
338
338
|
return writer;
|
|
339
339
|
},
|
|
340
340
|
decode(input, length) {
|
|
341
341
|
const reader = input instanceof wire_1.BinaryReader ? input : new wire_1.BinaryReader(input);
|
|
342
342
|
const end = length === undefined ? reader.len : reader.pos + length;
|
|
343
|
-
const message =
|
|
343
|
+
const message = createBaseGetAgentDefinitionRequest();
|
|
344
344
|
while (reader.pos < end) {
|
|
345
345
|
const tag = reader.uint32();
|
|
346
346
|
switch (tag >>> 3) {
|
|
@@ -355,7 +355,7 @@ exports.GetAgentTemplateRequest = {
|
|
|
355
355
|
if (tag !== 18) {
|
|
356
356
|
break;
|
|
357
357
|
}
|
|
358
|
-
message.
|
|
358
|
+
message.agentDefinitionId = reader.string();
|
|
359
359
|
continue;
|
|
360
360
|
}
|
|
361
361
|
}
|
|
@@ -373,10 +373,10 @@ exports.GetAgentTemplateRequest = {
|
|
|
373
373
|
: isSet(object.organization_id)
|
|
374
374
|
? globalThis.String(object.organization_id)
|
|
375
375
|
: "",
|
|
376
|
-
|
|
377
|
-
? globalThis.String(object.
|
|
378
|
-
: isSet(object.
|
|
379
|
-
? globalThis.String(object.
|
|
376
|
+
agentDefinitionId: isSet(object.agentDefinitionId)
|
|
377
|
+
? globalThis.String(object.agentDefinitionId)
|
|
378
|
+
: isSet(object.agent_definition_id)
|
|
379
|
+
? globalThis.String(object.agent_definition_id)
|
|
380
380
|
: "",
|
|
381
381
|
};
|
|
382
382
|
},
|
|
@@ -385,29 +385,29 @@ exports.GetAgentTemplateRequest = {
|
|
|
385
385
|
if (message.organizationId !== "") {
|
|
386
386
|
obj.organizationId = message.organizationId;
|
|
387
387
|
}
|
|
388
|
-
if (message.
|
|
389
|
-
obj.
|
|
388
|
+
if (message.agentDefinitionId !== "") {
|
|
389
|
+
obj.agentDefinitionId = message.agentDefinitionId;
|
|
390
390
|
}
|
|
391
391
|
return obj;
|
|
392
392
|
},
|
|
393
393
|
create(base) {
|
|
394
|
-
return exports.
|
|
394
|
+
return exports.GetAgentDefinitionRequest.fromPartial(base !== null && base !== void 0 ? base : {});
|
|
395
395
|
},
|
|
396
396
|
fromPartial(object) {
|
|
397
397
|
var _a, _b;
|
|
398
|
-
const message =
|
|
398
|
+
const message = createBaseGetAgentDefinitionRequest();
|
|
399
399
|
message.organizationId = (_a = object.organizationId) !== null && _a !== void 0 ? _a : "";
|
|
400
|
-
message.
|
|
400
|
+
message.agentDefinitionId = (_b = object.agentDefinitionId) !== null && _b !== void 0 ? _b : "";
|
|
401
401
|
return message;
|
|
402
402
|
},
|
|
403
403
|
};
|
|
404
|
-
function
|
|
405
|
-
return {
|
|
404
|
+
function createBaseGetAgentDefinitionResponse() {
|
|
405
|
+
return { definition: undefined, draft: undefined, latestVersion: undefined };
|
|
406
406
|
}
|
|
407
|
-
exports.
|
|
407
|
+
exports.GetAgentDefinitionResponse = {
|
|
408
408
|
encode(message, writer = new wire_1.BinaryWriter()) {
|
|
409
|
-
if (message.
|
|
410
|
-
agent_pb_1.
|
|
409
|
+
if (message.definition !== undefined) {
|
|
410
|
+
agent_pb_1.AgentDefinition.encode(message.definition, writer.uint32(10).fork()).join();
|
|
411
411
|
}
|
|
412
412
|
if (message.draft !== undefined) {
|
|
413
413
|
agent_pb_1.AgentDraft.encode(message.draft, writer.uint32(18).fork()).join();
|
|
@@ -420,7 +420,7 @@ exports.GetAgentTemplateResponse = {
|
|
|
420
420
|
decode(input, length) {
|
|
421
421
|
const reader = input instanceof wire_1.BinaryReader ? input : new wire_1.BinaryReader(input);
|
|
422
422
|
const end = length === undefined ? reader.len : reader.pos + length;
|
|
423
|
-
const message =
|
|
423
|
+
const message = createBaseGetAgentDefinitionResponse();
|
|
424
424
|
while (reader.pos < end) {
|
|
425
425
|
const tag = reader.uint32();
|
|
426
426
|
switch (tag >>> 3) {
|
|
@@ -428,7 +428,7 @@ exports.GetAgentTemplateResponse = {
|
|
|
428
428
|
if (tag !== 10) {
|
|
429
429
|
break;
|
|
430
430
|
}
|
|
431
|
-
message.
|
|
431
|
+
message.definition = agent_pb_1.AgentDefinition.decode(reader, reader.uint32());
|
|
432
432
|
continue;
|
|
433
433
|
}
|
|
434
434
|
case 2: {
|
|
@@ -455,7 +455,7 @@ exports.GetAgentTemplateResponse = {
|
|
|
455
455
|
},
|
|
456
456
|
fromJSON(object) {
|
|
457
457
|
return {
|
|
458
|
-
|
|
458
|
+
definition: isSet(object.definition) ? agent_pb_1.AgentDefinition.fromJSON(object.definition) : undefined,
|
|
459
459
|
draft: isSet(object.draft) ? agent_pb_1.AgentDraft.fromJSON(object.draft) : undefined,
|
|
460
460
|
latestVersion: isSet(object.latestVersion)
|
|
461
461
|
? agent_pb_1.AgentVersion.fromJSON(object.latestVersion)
|
|
@@ -466,8 +466,8 @@ exports.GetAgentTemplateResponse = {
|
|
|
466
466
|
},
|
|
467
467
|
toJSON(message) {
|
|
468
468
|
const obj = {};
|
|
469
|
-
if (message.
|
|
470
|
-
obj.
|
|
469
|
+
if (message.definition !== undefined) {
|
|
470
|
+
obj.definition = agent_pb_1.AgentDefinition.toJSON(message.definition);
|
|
471
471
|
}
|
|
472
472
|
if (message.draft !== undefined) {
|
|
473
473
|
obj.draft = agent_pb_1.AgentDraft.toJSON(message.draft);
|
|
@@ -478,12 +478,12 @@ exports.GetAgentTemplateResponse = {
|
|
|
478
478
|
return obj;
|
|
479
479
|
},
|
|
480
480
|
create(base) {
|
|
481
|
-
return exports.
|
|
481
|
+
return exports.GetAgentDefinitionResponse.fromPartial(base !== null && base !== void 0 ? base : {});
|
|
482
482
|
},
|
|
483
483
|
fromPartial(object) {
|
|
484
|
-
const message =
|
|
485
|
-
message.
|
|
486
|
-
? agent_pb_1.
|
|
484
|
+
const message = createBaseGetAgentDefinitionResponse();
|
|
485
|
+
message.definition = (object.definition !== undefined && object.definition !== null)
|
|
486
|
+
? agent_pb_1.AgentDefinition.fromPartial(object.definition)
|
|
487
487
|
: undefined;
|
|
488
488
|
message.draft = (object.draft !== undefined && object.draft !== null)
|
|
489
489
|
? agent_pb_1.AgentDraft.fromPartial(object.draft)
|
|
@@ -494,10 +494,10 @@ exports.GetAgentTemplateResponse = {
|
|
|
494
494
|
return message;
|
|
495
495
|
},
|
|
496
496
|
};
|
|
497
|
-
function
|
|
497
|
+
function createBaseListAgentDefinitionsRequest() {
|
|
498
498
|
return { organizationId: "", status: 0, pageSize: 0, pageToken: "" };
|
|
499
499
|
}
|
|
500
|
-
exports.
|
|
500
|
+
exports.ListAgentDefinitionsRequest = {
|
|
501
501
|
encode(message, writer = new wire_1.BinaryWriter()) {
|
|
502
502
|
if (message.organizationId !== "") {
|
|
503
503
|
writer.uint32(10).string(message.organizationId);
|
|
@@ -516,7 +516,7 @@ exports.ListAgentTemplatesRequest = {
|
|
|
516
516
|
decode(input, length) {
|
|
517
517
|
const reader = input instanceof wire_1.BinaryReader ? input : new wire_1.BinaryReader(input);
|
|
518
518
|
const end = length === undefined ? reader.len : reader.pos + length;
|
|
519
|
-
const message =
|
|
519
|
+
const message = createBaseListAgentDefinitionsRequest();
|
|
520
520
|
while (reader.pos < end) {
|
|
521
521
|
const tag = reader.uint32();
|
|
522
522
|
switch (tag >>> 3) {
|
|
@@ -563,7 +563,7 @@ exports.ListAgentTemplatesRequest = {
|
|
|
563
563
|
: isSet(object.organization_id)
|
|
564
564
|
? globalThis.String(object.organization_id)
|
|
565
565
|
: "",
|
|
566
|
-
status: isSet(object.status) ? (0, agent_pb_1.
|
|
566
|
+
status: isSet(object.status) ? (0, agent_pb_1.agentDefinitionStatusFromJSON)(object.status) : 0,
|
|
567
567
|
pageSize: isSet(object.pageSize)
|
|
568
568
|
? globalThis.Number(object.pageSize)
|
|
569
569
|
: isSet(object.page_size)
|
|
@@ -582,7 +582,7 @@ exports.ListAgentTemplatesRequest = {
|
|
|
582
582
|
obj.organizationId = message.organizationId;
|
|
583
583
|
}
|
|
584
584
|
if (message.status !== 0) {
|
|
585
|
-
obj.status = (0, agent_pb_1.
|
|
585
|
+
obj.status = (0, agent_pb_1.agentDefinitionStatusToJSON)(message.status);
|
|
586
586
|
}
|
|
587
587
|
if (message.pageSize !== 0) {
|
|
588
588
|
obj.pageSize = Math.round(message.pageSize);
|
|
@@ -593,11 +593,11 @@ exports.ListAgentTemplatesRequest = {
|
|
|
593
593
|
return obj;
|
|
594
594
|
},
|
|
595
595
|
create(base) {
|
|
596
|
-
return exports.
|
|
596
|
+
return exports.ListAgentDefinitionsRequest.fromPartial(base !== null && base !== void 0 ? base : {});
|
|
597
597
|
},
|
|
598
598
|
fromPartial(object) {
|
|
599
599
|
var _a, _b, _c, _d;
|
|
600
|
-
const message =
|
|
600
|
+
const message = createBaseListAgentDefinitionsRequest();
|
|
601
601
|
message.organizationId = (_a = object.organizationId) !== null && _a !== void 0 ? _a : "";
|
|
602
602
|
message.status = (_b = object.status) !== null && _b !== void 0 ? _b : 0;
|
|
603
603
|
message.pageSize = (_c = object.pageSize) !== null && _c !== void 0 ? _c : 0;
|
|
@@ -605,13 +605,13 @@ exports.ListAgentTemplatesRequest = {
|
|
|
605
605
|
return message;
|
|
606
606
|
},
|
|
607
607
|
};
|
|
608
|
-
function
|
|
609
|
-
return {
|
|
608
|
+
function createBaseListAgentDefinitionsResponse() {
|
|
609
|
+
return { definitions: [], nextPageToken: "" };
|
|
610
610
|
}
|
|
611
|
-
exports.
|
|
611
|
+
exports.ListAgentDefinitionsResponse = {
|
|
612
612
|
encode(message, writer = new wire_1.BinaryWriter()) {
|
|
613
|
-
for (const v of message.
|
|
614
|
-
agent_pb_1.
|
|
613
|
+
for (const v of message.definitions) {
|
|
614
|
+
agent_pb_1.AgentDefinition.encode(v, writer.uint32(10).fork()).join();
|
|
615
615
|
}
|
|
616
616
|
if (message.nextPageToken !== "") {
|
|
617
617
|
writer.uint32(18).string(message.nextPageToken);
|
|
@@ -621,7 +621,7 @@ exports.ListAgentTemplatesResponse = {
|
|
|
621
621
|
decode(input, length) {
|
|
622
622
|
const reader = input instanceof wire_1.BinaryReader ? input : new wire_1.BinaryReader(input);
|
|
623
623
|
const end = length === undefined ? reader.len : reader.pos + length;
|
|
624
|
-
const message =
|
|
624
|
+
const message = createBaseListAgentDefinitionsResponse();
|
|
625
625
|
while (reader.pos < end) {
|
|
626
626
|
const tag = reader.uint32();
|
|
627
627
|
switch (tag >>> 3) {
|
|
@@ -629,7 +629,7 @@ exports.ListAgentTemplatesResponse = {
|
|
|
629
629
|
if (tag !== 10) {
|
|
630
630
|
break;
|
|
631
631
|
}
|
|
632
|
-
message.
|
|
632
|
+
message.definitions.push(agent_pb_1.AgentDefinition.decode(reader, reader.uint32()));
|
|
633
633
|
continue;
|
|
634
634
|
}
|
|
635
635
|
case 2: {
|
|
@@ -649,8 +649,8 @@ exports.ListAgentTemplatesResponse = {
|
|
|
649
649
|
},
|
|
650
650
|
fromJSON(object) {
|
|
651
651
|
return {
|
|
652
|
-
|
|
653
|
-
? object.
|
|
652
|
+
definitions: globalThis.Array.isArray(object === null || object === void 0 ? void 0 : object.definitions)
|
|
653
|
+
? object.definitions.map((e) => agent_pb_1.AgentDefinition.fromJSON(e))
|
|
654
654
|
: [],
|
|
655
655
|
nextPageToken: isSet(object.nextPageToken)
|
|
656
656
|
? globalThis.String(object.nextPageToken)
|
|
@@ -662,8 +662,8 @@ exports.ListAgentTemplatesResponse = {
|
|
|
662
662
|
toJSON(message) {
|
|
663
663
|
var _a;
|
|
664
664
|
const obj = {};
|
|
665
|
-
if ((_a = message.
|
|
666
|
-
obj.
|
|
665
|
+
if ((_a = message.definitions) === null || _a === void 0 ? void 0 : _a.length) {
|
|
666
|
+
obj.definitions = message.definitions.map((e) => agent_pb_1.AgentDefinition.toJSON(e));
|
|
667
667
|
}
|
|
668
668
|
if (message.nextPageToken !== "") {
|
|
669
669
|
obj.nextPageToken = message.nextPageToken;
|
|
@@ -671,13 +671,13 @@ exports.ListAgentTemplatesResponse = {
|
|
|
671
671
|
return obj;
|
|
672
672
|
},
|
|
673
673
|
create(base) {
|
|
674
|
-
return exports.
|
|
674
|
+
return exports.ListAgentDefinitionsResponse.fromPartial(base !== null && base !== void 0 ? base : {});
|
|
675
675
|
},
|
|
676
676
|
fromPartial(object) {
|
|
677
677
|
var _a;
|
|
678
678
|
var _b;
|
|
679
|
-
const message =
|
|
680
|
-
message.
|
|
679
|
+
const message = createBaseListAgentDefinitionsResponse();
|
|
680
|
+
message.definitions = ((_a = object.definitions) === null || _a === void 0 ? void 0 : _a.map((e) => agent_pb_1.AgentDefinition.fromPartial(e))) || [];
|
|
681
681
|
message.nextPageToken = (_b = object.nextPageToken) !== null && _b !== void 0 ? _b : "";
|
|
682
682
|
return message;
|
|
683
683
|
},
|
|
@@ -685,7 +685,7 @@ exports.ListAgentTemplatesResponse = {
|
|
|
685
685
|
function createBaseUpdateAgentDraftRequest() {
|
|
686
686
|
return {
|
|
687
687
|
organizationId: "",
|
|
688
|
-
|
|
688
|
+
agentDefinitionId: "",
|
|
689
689
|
expectedRevision: 0,
|
|
690
690
|
name: "",
|
|
691
691
|
description: "",
|
|
@@ -704,8 +704,8 @@ exports.UpdateAgentDraftRequest = {
|
|
|
704
704
|
if (message.organizationId !== "") {
|
|
705
705
|
writer.uint32(10).string(message.organizationId);
|
|
706
706
|
}
|
|
707
|
-
if (message.
|
|
708
|
-
writer.uint32(18).string(message.
|
|
707
|
+
if (message.agentDefinitionId !== "") {
|
|
708
|
+
writer.uint32(18).string(message.agentDefinitionId);
|
|
709
709
|
}
|
|
710
710
|
if (message.expectedRevision !== 0) {
|
|
711
711
|
writer.uint32(24).int32(message.expectedRevision);
|
|
@@ -760,7 +760,7 @@ exports.UpdateAgentDraftRequest = {
|
|
|
760
760
|
if (tag !== 18) {
|
|
761
761
|
break;
|
|
762
762
|
}
|
|
763
|
-
message.
|
|
763
|
+
message.agentDefinitionId = reader.string();
|
|
764
764
|
continue;
|
|
765
765
|
}
|
|
766
766
|
case 3: {
|
|
@@ -855,10 +855,10 @@ exports.UpdateAgentDraftRequest = {
|
|
|
855
855
|
: isSet(object.organization_id)
|
|
856
856
|
? globalThis.String(object.organization_id)
|
|
857
857
|
: "",
|
|
858
|
-
|
|
859
|
-
? globalThis.String(object.
|
|
860
|
-
: isSet(object.
|
|
861
|
-
? globalThis.String(object.
|
|
858
|
+
agentDefinitionId: isSet(object.agentDefinitionId)
|
|
859
|
+
? globalThis.String(object.agentDefinitionId)
|
|
860
|
+
: isSet(object.agent_definition_id)
|
|
861
|
+
? globalThis.String(object.agent_definition_id)
|
|
862
862
|
: "",
|
|
863
863
|
expectedRevision: isSet(object.expectedRevision)
|
|
864
864
|
? globalThis.Number(object.expectedRevision)
|
|
@@ -901,8 +901,8 @@ exports.UpdateAgentDraftRequest = {
|
|
|
901
901
|
if (message.organizationId !== "") {
|
|
902
902
|
obj.organizationId = message.organizationId;
|
|
903
903
|
}
|
|
904
|
-
if (message.
|
|
905
|
-
obj.
|
|
904
|
+
if (message.agentDefinitionId !== "") {
|
|
905
|
+
obj.agentDefinitionId = message.agentDefinitionId;
|
|
906
906
|
}
|
|
907
907
|
if (message.expectedRevision !== 0) {
|
|
908
908
|
obj.expectedRevision = Math.round(message.expectedRevision);
|
|
@@ -947,7 +947,7 @@ exports.UpdateAgentDraftRequest = {
|
|
|
947
947
|
var _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m, _o;
|
|
948
948
|
const message = createBaseUpdateAgentDraftRequest();
|
|
949
949
|
message.organizationId = (_b = object.organizationId) !== null && _b !== void 0 ? _b : "";
|
|
950
|
-
message.
|
|
950
|
+
message.agentDefinitionId = (_c = object.agentDefinitionId) !== null && _c !== void 0 ? _c : "";
|
|
951
951
|
message.expectedRevision = (_d = object.expectedRevision) !== null && _d !== void 0 ? _d : 0;
|
|
952
952
|
message.name = (_e = object.name) !== null && _e !== void 0 ? _e : "";
|
|
953
953
|
message.description = (_f = object.description) !== null && _f !== void 0 ? _f : "";
|
|
@@ -1016,15 +1016,15 @@ exports.UpdateAgentDraftResponse = {
|
|
|
1016
1016
|
},
|
|
1017
1017
|
};
|
|
1018
1018
|
function createBasePlanAgentPublishRequest() {
|
|
1019
|
-
return { organizationId: "",
|
|
1019
|
+
return { organizationId: "", agentDefinitionId: "", draftRevision: 0 };
|
|
1020
1020
|
}
|
|
1021
1021
|
exports.PlanAgentPublishRequest = {
|
|
1022
1022
|
encode(message, writer = new wire_1.BinaryWriter()) {
|
|
1023
1023
|
if (message.organizationId !== "") {
|
|
1024
1024
|
writer.uint32(10).string(message.organizationId);
|
|
1025
1025
|
}
|
|
1026
|
-
if (message.
|
|
1027
|
-
writer.uint32(18).string(message.
|
|
1026
|
+
if (message.agentDefinitionId !== "") {
|
|
1027
|
+
writer.uint32(18).string(message.agentDefinitionId);
|
|
1028
1028
|
}
|
|
1029
1029
|
if (message.draftRevision !== 0) {
|
|
1030
1030
|
writer.uint32(24).int32(message.draftRevision);
|
|
@@ -1049,7 +1049,7 @@ exports.PlanAgentPublishRequest = {
|
|
|
1049
1049
|
if (tag !== 18) {
|
|
1050
1050
|
break;
|
|
1051
1051
|
}
|
|
1052
|
-
message.
|
|
1052
|
+
message.agentDefinitionId = reader.string();
|
|
1053
1053
|
continue;
|
|
1054
1054
|
}
|
|
1055
1055
|
case 3: {
|
|
@@ -1074,10 +1074,10 @@ exports.PlanAgentPublishRequest = {
|
|
|
1074
1074
|
: isSet(object.organization_id)
|
|
1075
1075
|
? globalThis.String(object.organization_id)
|
|
1076
1076
|
: "",
|
|
1077
|
-
|
|
1078
|
-
? globalThis.String(object.
|
|
1079
|
-
: isSet(object.
|
|
1080
|
-
? globalThis.String(object.
|
|
1077
|
+
agentDefinitionId: isSet(object.agentDefinitionId)
|
|
1078
|
+
? globalThis.String(object.agentDefinitionId)
|
|
1079
|
+
: isSet(object.agent_definition_id)
|
|
1080
|
+
? globalThis.String(object.agent_definition_id)
|
|
1081
1081
|
: "",
|
|
1082
1082
|
draftRevision: isSet(object.draftRevision)
|
|
1083
1083
|
? globalThis.Number(object.draftRevision)
|
|
@@ -1091,8 +1091,8 @@ exports.PlanAgentPublishRequest = {
|
|
|
1091
1091
|
if (message.organizationId !== "") {
|
|
1092
1092
|
obj.organizationId = message.organizationId;
|
|
1093
1093
|
}
|
|
1094
|
-
if (message.
|
|
1095
|
-
obj.
|
|
1094
|
+
if (message.agentDefinitionId !== "") {
|
|
1095
|
+
obj.agentDefinitionId = message.agentDefinitionId;
|
|
1096
1096
|
}
|
|
1097
1097
|
if (message.draftRevision !== 0) {
|
|
1098
1098
|
obj.draftRevision = Math.round(message.draftRevision);
|
|
@@ -1106,7 +1106,7 @@ exports.PlanAgentPublishRequest = {
|
|
|
1106
1106
|
var _a, _b, _c;
|
|
1107
1107
|
const message = createBasePlanAgentPublishRequest();
|
|
1108
1108
|
message.organizationId = (_a = object.organizationId) !== null && _a !== void 0 ? _a : "";
|
|
1109
|
-
message.
|
|
1109
|
+
message.agentDefinitionId = (_b = object.agentDefinitionId) !== null && _b !== void 0 ? _b : "";
|
|
1110
1110
|
message.draftRevision = (_c = object.draftRevision) !== null && _c !== void 0 ? _c : 0;
|
|
1111
1111
|
return message;
|
|
1112
1112
|
},
|
|
@@ -1164,16 +1164,16 @@ exports.PlanAgentPublishResponse = {
|
|
|
1164
1164
|
return message;
|
|
1165
1165
|
},
|
|
1166
1166
|
};
|
|
1167
|
-
function
|
|
1168
|
-
return { organizationId: "",
|
|
1167
|
+
function createBasePublishAgentDefinitionRequest() {
|
|
1168
|
+
return { organizationId: "", agentDefinitionId: "", draftRevision: 0 };
|
|
1169
1169
|
}
|
|
1170
|
-
exports.
|
|
1170
|
+
exports.PublishAgentDefinitionRequest = {
|
|
1171
1171
|
encode(message, writer = new wire_1.BinaryWriter()) {
|
|
1172
1172
|
if (message.organizationId !== "") {
|
|
1173
1173
|
writer.uint32(10).string(message.organizationId);
|
|
1174
1174
|
}
|
|
1175
|
-
if (message.
|
|
1176
|
-
writer.uint32(18).string(message.
|
|
1175
|
+
if (message.agentDefinitionId !== "") {
|
|
1176
|
+
writer.uint32(18).string(message.agentDefinitionId);
|
|
1177
1177
|
}
|
|
1178
1178
|
if (message.draftRevision !== 0) {
|
|
1179
1179
|
writer.uint32(24).int32(message.draftRevision);
|
|
@@ -1183,7 +1183,7 @@ exports.PublishAgentTemplateRequest = {
|
|
|
1183
1183
|
decode(input, length) {
|
|
1184
1184
|
const reader = input instanceof wire_1.BinaryReader ? input : new wire_1.BinaryReader(input);
|
|
1185
1185
|
const end = length === undefined ? reader.len : reader.pos + length;
|
|
1186
|
-
const message =
|
|
1186
|
+
const message = createBasePublishAgentDefinitionRequest();
|
|
1187
1187
|
while (reader.pos < end) {
|
|
1188
1188
|
const tag = reader.uint32();
|
|
1189
1189
|
switch (tag >>> 3) {
|
|
@@ -1198,7 +1198,7 @@ exports.PublishAgentTemplateRequest = {
|
|
|
1198
1198
|
if (tag !== 18) {
|
|
1199
1199
|
break;
|
|
1200
1200
|
}
|
|
1201
|
-
message.
|
|
1201
|
+
message.agentDefinitionId = reader.string();
|
|
1202
1202
|
continue;
|
|
1203
1203
|
}
|
|
1204
1204
|
case 3: {
|
|
@@ -1223,10 +1223,10 @@ exports.PublishAgentTemplateRequest = {
|
|
|
1223
1223
|
: isSet(object.organization_id)
|
|
1224
1224
|
? globalThis.String(object.organization_id)
|
|
1225
1225
|
: "",
|
|
1226
|
-
|
|
1227
|
-
? globalThis.String(object.
|
|
1228
|
-
: isSet(object.
|
|
1229
|
-
? globalThis.String(object.
|
|
1226
|
+
agentDefinitionId: isSet(object.agentDefinitionId)
|
|
1227
|
+
? globalThis.String(object.agentDefinitionId)
|
|
1228
|
+
: isSet(object.agent_definition_id)
|
|
1229
|
+
? globalThis.String(object.agent_definition_id)
|
|
1230
1230
|
: "",
|
|
1231
1231
|
draftRevision: isSet(object.draftRevision)
|
|
1232
1232
|
? globalThis.Number(object.draftRevision)
|
|
@@ -1240,8 +1240,8 @@ exports.PublishAgentTemplateRequest = {
|
|
|
1240
1240
|
if (message.organizationId !== "") {
|
|
1241
1241
|
obj.organizationId = message.organizationId;
|
|
1242
1242
|
}
|
|
1243
|
-
if (message.
|
|
1244
|
-
obj.
|
|
1243
|
+
if (message.agentDefinitionId !== "") {
|
|
1244
|
+
obj.agentDefinitionId = message.agentDefinitionId;
|
|
1245
1245
|
}
|
|
1246
1246
|
if (message.draftRevision !== 0) {
|
|
1247
1247
|
obj.draftRevision = Math.round(message.draftRevision);
|
|
@@ -1249,21 +1249,21 @@ exports.PublishAgentTemplateRequest = {
|
|
|
1249
1249
|
return obj;
|
|
1250
1250
|
},
|
|
1251
1251
|
create(base) {
|
|
1252
|
-
return exports.
|
|
1252
|
+
return exports.PublishAgentDefinitionRequest.fromPartial(base !== null && base !== void 0 ? base : {});
|
|
1253
1253
|
},
|
|
1254
1254
|
fromPartial(object) {
|
|
1255
1255
|
var _a, _b, _c;
|
|
1256
|
-
const message =
|
|
1256
|
+
const message = createBasePublishAgentDefinitionRequest();
|
|
1257
1257
|
message.organizationId = (_a = object.organizationId) !== null && _a !== void 0 ? _a : "";
|
|
1258
|
-
message.
|
|
1258
|
+
message.agentDefinitionId = (_b = object.agentDefinitionId) !== null && _b !== void 0 ? _b : "";
|
|
1259
1259
|
message.draftRevision = (_c = object.draftRevision) !== null && _c !== void 0 ? _c : 0;
|
|
1260
1260
|
return message;
|
|
1261
1261
|
},
|
|
1262
1262
|
};
|
|
1263
|
-
function
|
|
1263
|
+
function createBasePublishAgentDefinitionResponse() {
|
|
1264
1264
|
return { version: undefined };
|
|
1265
1265
|
}
|
|
1266
|
-
exports.
|
|
1266
|
+
exports.PublishAgentDefinitionResponse = {
|
|
1267
1267
|
encode(message, writer = new wire_1.BinaryWriter()) {
|
|
1268
1268
|
if (message.version !== undefined) {
|
|
1269
1269
|
agent_pb_1.AgentVersion.encode(message.version, writer.uint32(10).fork()).join();
|
|
@@ -1273,7 +1273,7 @@ exports.PublishAgentTemplateResponse = {
|
|
|
1273
1273
|
decode(input, length) {
|
|
1274
1274
|
const reader = input instanceof wire_1.BinaryReader ? input : new wire_1.BinaryReader(input);
|
|
1275
1275
|
const end = length === undefined ? reader.len : reader.pos + length;
|
|
1276
|
-
const message =
|
|
1276
|
+
const message = createBasePublishAgentDefinitionResponse();
|
|
1277
1277
|
while (reader.pos < end) {
|
|
1278
1278
|
const tag = reader.uint32();
|
|
1279
1279
|
switch (tag >>> 3) {
|
|
@@ -1303,10 +1303,10 @@ exports.PublishAgentTemplateResponse = {
|
|
|
1303
1303
|
return obj;
|
|
1304
1304
|
},
|
|
1305
1305
|
create(base) {
|
|
1306
|
-
return exports.
|
|
1306
|
+
return exports.PublishAgentDefinitionResponse.fromPartial(base !== null && base !== void 0 ? base : {});
|
|
1307
1307
|
},
|
|
1308
1308
|
fromPartial(object) {
|
|
1309
|
-
const message =
|
|
1309
|
+
const message = createBasePublishAgentDefinitionResponse();
|
|
1310
1310
|
message.version = (object.version !== undefined && object.version !== null)
|
|
1311
1311
|
? agent_pb_1.AgentVersion.fromPartial(object.version)
|
|
1312
1312
|
: undefined;
|
|
@@ -1314,15 +1314,15 @@ exports.PublishAgentTemplateResponse = {
|
|
|
1314
1314
|
},
|
|
1315
1315
|
};
|
|
1316
1316
|
function createBaseGetAgentVersionRequest() {
|
|
1317
|
-
return { organizationId: "",
|
|
1317
|
+
return { organizationId: "", agentDefinitionId: "", version: 0 };
|
|
1318
1318
|
}
|
|
1319
1319
|
exports.GetAgentVersionRequest = {
|
|
1320
1320
|
encode(message, writer = new wire_1.BinaryWriter()) {
|
|
1321
1321
|
if (message.organizationId !== "") {
|
|
1322
1322
|
writer.uint32(10).string(message.organizationId);
|
|
1323
1323
|
}
|
|
1324
|
-
if (message.
|
|
1325
|
-
writer.uint32(18).string(message.
|
|
1324
|
+
if (message.agentDefinitionId !== "") {
|
|
1325
|
+
writer.uint32(18).string(message.agentDefinitionId);
|
|
1326
1326
|
}
|
|
1327
1327
|
if (message.version !== 0) {
|
|
1328
1328
|
writer.uint32(24).int32(message.version);
|
|
@@ -1347,7 +1347,7 @@ exports.GetAgentVersionRequest = {
|
|
|
1347
1347
|
if (tag !== 18) {
|
|
1348
1348
|
break;
|
|
1349
1349
|
}
|
|
1350
|
-
message.
|
|
1350
|
+
message.agentDefinitionId = reader.string();
|
|
1351
1351
|
continue;
|
|
1352
1352
|
}
|
|
1353
1353
|
case 3: {
|
|
@@ -1372,10 +1372,10 @@ exports.GetAgentVersionRequest = {
|
|
|
1372
1372
|
: isSet(object.organization_id)
|
|
1373
1373
|
? globalThis.String(object.organization_id)
|
|
1374
1374
|
: "",
|
|
1375
|
-
|
|
1376
|
-
? globalThis.String(object.
|
|
1377
|
-
: isSet(object.
|
|
1378
|
-
? globalThis.String(object.
|
|
1375
|
+
agentDefinitionId: isSet(object.agentDefinitionId)
|
|
1376
|
+
? globalThis.String(object.agentDefinitionId)
|
|
1377
|
+
: isSet(object.agent_definition_id)
|
|
1378
|
+
? globalThis.String(object.agent_definition_id)
|
|
1379
1379
|
: "",
|
|
1380
1380
|
version: isSet(object.version) ? globalThis.Number(object.version) : 0,
|
|
1381
1381
|
};
|
|
@@ -1385,8 +1385,8 @@ exports.GetAgentVersionRequest = {
|
|
|
1385
1385
|
if (message.organizationId !== "") {
|
|
1386
1386
|
obj.organizationId = message.organizationId;
|
|
1387
1387
|
}
|
|
1388
|
-
if (message.
|
|
1389
|
-
obj.
|
|
1388
|
+
if (message.agentDefinitionId !== "") {
|
|
1389
|
+
obj.agentDefinitionId = message.agentDefinitionId;
|
|
1390
1390
|
}
|
|
1391
1391
|
if (message.version !== 0) {
|
|
1392
1392
|
obj.version = Math.round(message.version);
|
|
@@ -1400,7 +1400,7 @@ exports.GetAgentVersionRequest = {
|
|
|
1400
1400
|
var _a, _b, _c;
|
|
1401
1401
|
const message = createBaseGetAgentVersionRequest();
|
|
1402
1402
|
message.organizationId = (_a = object.organizationId) !== null && _a !== void 0 ? _a : "";
|
|
1403
|
-
message.
|
|
1403
|
+
message.agentDefinitionId = (_b = object.agentDefinitionId) !== null && _b !== void 0 ? _b : "";
|
|
1404
1404
|
message.version = (_c = object.version) !== null && _c !== void 0 ? _c : 0;
|
|
1405
1405
|
return message;
|
|
1406
1406
|
},
|
|
@@ -1459,15 +1459,15 @@ exports.GetAgentVersionResponse = {
|
|
|
1459
1459
|
},
|
|
1460
1460
|
};
|
|
1461
1461
|
function createBaseListAgentVersionsRequest() {
|
|
1462
|
-
return { organizationId: "",
|
|
1462
|
+
return { organizationId: "", agentDefinitionId: "", pageSize: 0, pageToken: "" };
|
|
1463
1463
|
}
|
|
1464
1464
|
exports.ListAgentVersionsRequest = {
|
|
1465
1465
|
encode(message, writer = new wire_1.BinaryWriter()) {
|
|
1466
1466
|
if (message.organizationId !== "") {
|
|
1467
1467
|
writer.uint32(10).string(message.organizationId);
|
|
1468
1468
|
}
|
|
1469
|
-
if (message.
|
|
1470
|
-
writer.uint32(18).string(message.
|
|
1469
|
+
if (message.agentDefinitionId !== "") {
|
|
1470
|
+
writer.uint32(18).string(message.agentDefinitionId);
|
|
1471
1471
|
}
|
|
1472
1472
|
if (message.pageSize !== 0) {
|
|
1473
1473
|
writer.uint32(24).int32(message.pageSize);
|
|
@@ -1495,7 +1495,7 @@ exports.ListAgentVersionsRequest = {
|
|
|
1495
1495
|
if (tag !== 18) {
|
|
1496
1496
|
break;
|
|
1497
1497
|
}
|
|
1498
|
-
message.
|
|
1498
|
+
message.agentDefinitionId = reader.string();
|
|
1499
1499
|
continue;
|
|
1500
1500
|
}
|
|
1501
1501
|
case 3: {
|
|
@@ -1527,10 +1527,10 @@ exports.ListAgentVersionsRequest = {
|
|
|
1527
1527
|
: isSet(object.organization_id)
|
|
1528
1528
|
? globalThis.String(object.organization_id)
|
|
1529
1529
|
: "",
|
|
1530
|
-
|
|
1531
|
-
? globalThis.String(object.
|
|
1532
|
-
: isSet(object.
|
|
1533
|
-
? globalThis.String(object.
|
|
1530
|
+
agentDefinitionId: isSet(object.agentDefinitionId)
|
|
1531
|
+
? globalThis.String(object.agentDefinitionId)
|
|
1532
|
+
: isSet(object.agent_definition_id)
|
|
1533
|
+
? globalThis.String(object.agent_definition_id)
|
|
1534
1534
|
: "",
|
|
1535
1535
|
pageSize: isSet(object.pageSize)
|
|
1536
1536
|
? globalThis.Number(object.pageSize)
|
|
@@ -1549,8 +1549,8 @@ exports.ListAgentVersionsRequest = {
|
|
|
1549
1549
|
if (message.organizationId !== "") {
|
|
1550
1550
|
obj.organizationId = message.organizationId;
|
|
1551
1551
|
}
|
|
1552
|
-
if (message.
|
|
1553
|
-
obj.
|
|
1552
|
+
if (message.agentDefinitionId !== "") {
|
|
1553
|
+
obj.agentDefinitionId = message.agentDefinitionId;
|
|
1554
1554
|
}
|
|
1555
1555
|
if (message.pageSize !== 0) {
|
|
1556
1556
|
obj.pageSize = Math.round(message.pageSize);
|
|
@@ -1567,7 +1567,7 @@ exports.ListAgentVersionsRequest = {
|
|
|
1567
1567
|
var _a, _b, _c, _d;
|
|
1568
1568
|
const message = createBaseListAgentVersionsRequest();
|
|
1569
1569
|
message.organizationId = (_a = object.organizationId) !== null && _a !== void 0 ? _a : "";
|
|
1570
|
-
message.
|
|
1570
|
+
message.agentDefinitionId = (_b = object.agentDefinitionId) !== null && _b !== void 0 ? _b : "";
|
|
1571
1571
|
message.pageSize = (_c = object.pageSize) !== null && _c !== void 0 ? _c : 0;
|
|
1572
1572
|
message.pageToken = (_d = object.pageToken) !== null && _d !== void 0 ? _d : "";
|
|
1573
1573
|
return message;
|
|
@@ -1651,15 +1651,15 @@ exports.ListAgentVersionsResponse = {
|
|
|
1651
1651
|
},
|
|
1652
1652
|
};
|
|
1653
1653
|
function createBaseRunAgentRequest() {
|
|
1654
|
-
return { organizationId: "",
|
|
1654
|
+
return { organizationId: "", agentDefinitionId: "", version: 0, chatSessionId: "", input: undefined };
|
|
1655
1655
|
}
|
|
1656
1656
|
exports.RunAgentRequest = {
|
|
1657
1657
|
encode(message, writer = new wire_1.BinaryWriter()) {
|
|
1658
1658
|
if (message.organizationId !== "") {
|
|
1659
1659
|
writer.uint32(10).string(message.organizationId);
|
|
1660
1660
|
}
|
|
1661
|
-
if (message.
|
|
1662
|
-
writer.uint32(18).string(message.
|
|
1661
|
+
if (message.agentDefinitionId !== "") {
|
|
1662
|
+
writer.uint32(18).string(message.agentDefinitionId);
|
|
1663
1663
|
}
|
|
1664
1664
|
if (message.version !== 0) {
|
|
1665
1665
|
writer.uint32(24).int32(message.version);
|
|
@@ -1690,7 +1690,7 @@ exports.RunAgentRequest = {
|
|
|
1690
1690
|
if (tag !== 18) {
|
|
1691
1691
|
break;
|
|
1692
1692
|
}
|
|
1693
|
-
message.
|
|
1693
|
+
message.agentDefinitionId = reader.string();
|
|
1694
1694
|
continue;
|
|
1695
1695
|
}
|
|
1696
1696
|
case 3: {
|
|
@@ -1729,10 +1729,10 @@ exports.RunAgentRequest = {
|
|
|
1729
1729
|
: isSet(object.organization_id)
|
|
1730
1730
|
? globalThis.String(object.organization_id)
|
|
1731
1731
|
: "",
|
|
1732
|
-
|
|
1733
|
-
? globalThis.String(object.
|
|
1734
|
-
: isSet(object.
|
|
1735
|
-
? globalThis.String(object.
|
|
1732
|
+
agentDefinitionId: isSet(object.agentDefinitionId)
|
|
1733
|
+
? globalThis.String(object.agentDefinitionId)
|
|
1734
|
+
: isSet(object.agent_definition_id)
|
|
1735
|
+
? globalThis.String(object.agent_definition_id)
|
|
1736
1736
|
: "",
|
|
1737
1737
|
version: isSet(object.version) ? globalThis.Number(object.version) : 0,
|
|
1738
1738
|
chatSessionId: isSet(object.chatSessionId)
|
|
@@ -1748,8 +1748,8 @@ exports.RunAgentRequest = {
|
|
|
1748
1748
|
if (message.organizationId !== "") {
|
|
1749
1749
|
obj.organizationId = message.organizationId;
|
|
1750
1750
|
}
|
|
1751
|
-
if (message.
|
|
1752
|
-
obj.
|
|
1751
|
+
if (message.agentDefinitionId !== "") {
|
|
1752
|
+
obj.agentDefinitionId = message.agentDefinitionId;
|
|
1753
1753
|
}
|
|
1754
1754
|
if (message.version !== 0) {
|
|
1755
1755
|
obj.version = Math.round(message.version);
|
|
@@ -1769,7 +1769,7 @@ exports.RunAgentRequest = {
|
|
|
1769
1769
|
var _a, _b, _c, _d, _e;
|
|
1770
1770
|
const message = createBaseRunAgentRequest();
|
|
1771
1771
|
message.organizationId = (_a = object.organizationId) !== null && _a !== void 0 ? _a : "";
|
|
1772
|
-
message.
|
|
1772
|
+
message.agentDefinitionId = (_b = object.agentDefinitionId) !== null && _b !== void 0 ? _b : "";
|
|
1773
1773
|
message.version = (_c = object.version) !== null && _c !== void 0 ? _c : 0;
|
|
1774
1774
|
message.chatSessionId = (_d = object.chatSessionId) !== null && _d !== void 0 ? _d : "";
|
|
1775
1775
|
message.input = (_e = object.input) !== null && _e !== void 0 ? _e : undefined;
|
|
@@ -1956,15 +1956,15 @@ exports.GetAgentRunResponse = {
|
|
|
1956
1956
|
},
|
|
1957
1957
|
};
|
|
1958
1958
|
function createBaseListAgentRunsRequest() {
|
|
1959
|
-
return { organizationId: "",
|
|
1959
|
+
return { organizationId: "", agentDefinitionId: "", status: 0, pageSize: 0, pageToken: "" };
|
|
1960
1960
|
}
|
|
1961
1961
|
exports.ListAgentRunsRequest = {
|
|
1962
1962
|
encode(message, writer = new wire_1.BinaryWriter()) {
|
|
1963
1963
|
if (message.organizationId !== "") {
|
|
1964
1964
|
writer.uint32(10).string(message.organizationId);
|
|
1965
1965
|
}
|
|
1966
|
-
if (message.
|
|
1967
|
-
writer.uint32(18).string(message.
|
|
1966
|
+
if (message.agentDefinitionId !== "") {
|
|
1967
|
+
writer.uint32(18).string(message.agentDefinitionId);
|
|
1968
1968
|
}
|
|
1969
1969
|
if (message.status !== 0) {
|
|
1970
1970
|
writer.uint32(24).int32(message.status);
|
|
@@ -1995,7 +1995,7 @@ exports.ListAgentRunsRequest = {
|
|
|
1995
1995
|
if (tag !== 18) {
|
|
1996
1996
|
break;
|
|
1997
1997
|
}
|
|
1998
|
-
message.
|
|
1998
|
+
message.agentDefinitionId = reader.string();
|
|
1999
1999
|
continue;
|
|
2000
2000
|
}
|
|
2001
2001
|
case 3: {
|
|
@@ -2034,10 +2034,10 @@ exports.ListAgentRunsRequest = {
|
|
|
2034
2034
|
: isSet(object.organization_id)
|
|
2035
2035
|
? globalThis.String(object.organization_id)
|
|
2036
2036
|
: "",
|
|
2037
|
-
|
|
2038
|
-
? globalThis.String(object.
|
|
2039
|
-
: isSet(object.
|
|
2040
|
-
? globalThis.String(object.
|
|
2037
|
+
agentDefinitionId: isSet(object.agentDefinitionId)
|
|
2038
|
+
? globalThis.String(object.agentDefinitionId)
|
|
2039
|
+
: isSet(object.agent_definition_id)
|
|
2040
|
+
? globalThis.String(object.agent_definition_id)
|
|
2041
2041
|
: "",
|
|
2042
2042
|
status: isSet(object.status) ? (0, agent_pb_1.agentRunStatusFromJSON)(object.status) : 0,
|
|
2043
2043
|
pageSize: isSet(object.pageSize)
|
|
@@ -2057,8 +2057,8 @@ exports.ListAgentRunsRequest = {
|
|
|
2057
2057
|
if (message.organizationId !== "") {
|
|
2058
2058
|
obj.organizationId = message.organizationId;
|
|
2059
2059
|
}
|
|
2060
|
-
if (message.
|
|
2061
|
-
obj.
|
|
2060
|
+
if (message.agentDefinitionId !== "") {
|
|
2061
|
+
obj.agentDefinitionId = message.agentDefinitionId;
|
|
2062
2062
|
}
|
|
2063
2063
|
if (message.status !== 0) {
|
|
2064
2064
|
obj.status = (0, agent_pb_1.agentRunStatusToJSON)(message.status);
|
|
@@ -2078,7 +2078,7 @@ exports.ListAgentRunsRequest = {
|
|
|
2078
2078
|
var _a, _b, _c, _d, _e;
|
|
2079
2079
|
const message = createBaseListAgentRunsRequest();
|
|
2080
2080
|
message.organizationId = (_a = object.organizationId) !== null && _a !== void 0 ? _a : "";
|
|
2081
|
-
message.
|
|
2081
|
+
message.agentDefinitionId = (_b = object.agentDefinitionId) !== null && _b !== void 0 ? _b : "";
|
|
2082
2082
|
message.status = (_c = object.status) !== null && _c !== void 0 ? _c : 0;
|
|
2083
2083
|
message.pageSize = (_d = object.pageSize) !== null && _d !== void 0 ? _d : 0;
|
|
2084
2084
|
message.pageToken = (_e = object.pageToken) !== null && _e !== void 0 ? _e : "";
|
|
@@ -2314,12 +2314,12 @@ class AgentServiceClientImpl {
|
|
|
2314
2314
|
constructor(rpc, opts) {
|
|
2315
2315
|
this.service = (opts === null || opts === void 0 ? void 0 : opts.service) || exports.AgentServiceServiceName;
|
|
2316
2316
|
this.rpc = rpc;
|
|
2317
|
-
this.
|
|
2318
|
-
this.
|
|
2319
|
-
this.
|
|
2317
|
+
this.CreateAgentDefinition = this.CreateAgentDefinition.bind(this);
|
|
2318
|
+
this.GetAgentDefinition = this.GetAgentDefinition.bind(this);
|
|
2319
|
+
this.ListAgentDefinitions = this.ListAgentDefinitions.bind(this);
|
|
2320
2320
|
this.UpdateAgentDraft = this.UpdateAgentDraft.bind(this);
|
|
2321
2321
|
this.PlanAgentPublish = this.PlanAgentPublish.bind(this);
|
|
2322
|
-
this.
|
|
2322
|
+
this.PublishAgentDefinition = this.PublishAgentDefinition.bind(this);
|
|
2323
2323
|
this.GetAgentVersion = this.GetAgentVersion.bind(this);
|
|
2324
2324
|
this.ListAgentVersions = this.ListAgentVersions.bind(this);
|
|
2325
2325
|
this.RunAgent = this.RunAgent.bind(this);
|
|
@@ -2327,20 +2327,20 @@ class AgentServiceClientImpl {
|
|
|
2327
2327
|
this.ListAgentRuns = this.ListAgentRuns.bind(this);
|
|
2328
2328
|
this.WatchAgentRunEvents = this.WatchAgentRunEvents.bind(this);
|
|
2329
2329
|
}
|
|
2330
|
-
|
|
2331
|
-
const data = exports.
|
|
2332
|
-
const promise = this.rpc.request(this.service, "
|
|
2333
|
-
return promise.then((data) => exports.
|
|
2330
|
+
CreateAgentDefinition(request) {
|
|
2331
|
+
const data = exports.CreateAgentDefinitionRequest.encode(request).finish();
|
|
2332
|
+
const promise = this.rpc.request(this.service, "CreateAgentDefinition", data);
|
|
2333
|
+
return promise.then((data) => exports.CreateAgentDefinitionResponse.decode(new wire_1.BinaryReader(data)));
|
|
2334
2334
|
}
|
|
2335
|
-
|
|
2336
|
-
const data = exports.
|
|
2337
|
-
const promise = this.rpc.request(this.service, "
|
|
2338
|
-
return promise.then((data) => exports.
|
|
2335
|
+
GetAgentDefinition(request) {
|
|
2336
|
+
const data = exports.GetAgentDefinitionRequest.encode(request).finish();
|
|
2337
|
+
const promise = this.rpc.request(this.service, "GetAgentDefinition", data);
|
|
2338
|
+
return promise.then((data) => exports.GetAgentDefinitionResponse.decode(new wire_1.BinaryReader(data)));
|
|
2339
2339
|
}
|
|
2340
|
-
|
|
2341
|
-
const data = exports.
|
|
2342
|
-
const promise = this.rpc.request(this.service, "
|
|
2343
|
-
return promise.then((data) => exports.
|
|
2340
|
+
ListAgentDefinitions(request) {
|
|
2341
|
+
const data = exports.ListAgentDefinitionsRequest.encode(request).finish();
|
|
2342
|
+
const promise = this.rpc.request(this.service, "ListAgentDefinitions", data);
|
|
2343
|
+
return promise.then((data) => exports.ListAgentDefinitionsResponse.decode(new wire_1.BinaryReader(data)));
|
|
2344
2344
|
}
|
|
2345
2345
|
UpdateAgentDraft(request) {
|
|
2346
2346
|
const data = exports.UpdateAgentDraftRequest.encode(request).finish();
|
|
@@ -2352,10 +2352,10 @@ class AgentServiceClientImpl {
|
|
|
2352
2352
|
const promise = this.rpc.request(this.service, "PlanAgentPublish", data);
|
|
2353
2353
|
return promise.then((data) => exports.PlanAgentPublishResponse.decode(new wire_1.BinaryReader(data)));
|
|
2354
2354
|
}
|
|
2355
|
-
|
|
2356
|
-
const data = exports.
|
|
2357
|
-
const promise = this.rpc.request(this.service, "
|
|
2358
|
-
return promise.then((data) => exports.
|
|
2355
|
+
PublishAgentDefinition(request) {
|
|
2356
|
+
const data = exports.PublishAgentDefinitionRequest.encode(request).finish();
|
|
2357
|
+
const promise = this.rpc.request(this.service, "PublishAgentDefinition", data);
|
|
2358
|
+
return promise.then((data) => exports.PublishAgentDefinitionResponse.decode(new wire_1.BinaryReader(data)));
|
|
2359
2359
|
}
|
|
2360
2360
|
GetAgentVersion(request) {
|
|
2361
2361
|
const data = exports.GetAgentVersionRequest.encode(request).finish();
|
|
@@ -2393,11 +2393,11 @@ exports.AgentServiceDefinition = {
|
|
|
2393
2393
|
name: "AgentService",
|
|
2394
2394
|
fullName: "weaveapi.agent.v1.AgentService",
|
|
2395
2395
|
methods: {
|
|
2396
|
-
|
|
2397
|
-
name: "
|
|
2398
|
-
requestType: exports.
|
|
2396
|
+
createAgentDefinition: {
|
|
2397
|
+
name: "CreateAgentDefinition",
|
|
2398
|
+
requestType: exports.CreateAgentDefinitionRequest,
|
|
2399
2399
|
requestStream: false,
|
|
2400
|
-
responseType: exports.
|
|
2400
|
+
responseType: exports.CreateAgentDefinitionResponse,
|
|
2401
2401
|
responseStream: false,
|
|
2402
2402
|
options: {
|
|
2403
2403
|
_unknownFields: {
|
|
@@ -2407,19 +2407,19 @@ exports.AgentServiceDefinition = {
|
|
|
2407
2407
|
},
|
|
2408
2408
|
},
|
|
2409
2409
|
},
|
|
2410
|
-
|
|
2411
|
-
name: "
|
|
2412
|
-
requestType: exports.
|
|
2410
|
+
getAgentDefinition: {
|
|
2411
|
+
name: "GetAgentDefinition",
|
|
2412
|
+
requestType: exports.GetAgentDefinitionRequest,
|
|
2413
2413
|
requestStream: false,
|
|
2414
|
-
responseType: exports.
|
|
2414
|
+
responseType: exports.GetAgentDefinitionResponse,
|
|
2415
2415
|
responseStream: false,
|
|
2416
2416
|
options: {
|
|
2417
2417
|
_unknownFields: {
|
|
2418
2418
|
578365826: [
|
|
2419
2419
|
new Uint8Array([
|
|
2420
|
-
|
|
2420
|
+
34,
|
|
2421
2421
|
18,
|
|
2422
|
-
|
|
2422
|
+
32,
|
|
2423
2423
|
47,
|
|
2424
2424
|
118,
|
|
2425
2425
|
49,
|
|
@@ -2438,14 +2438,16 @@ exports.AgentServiceDefinition = {
|
|
|
2438
2438
|
110,
|
|
2439
2439
|
116,
|
|
2440
2440
|
95,
|
|
2441
|
-
|
|
2441
|
+
100,
|
|
2442
2442
|
101,
|
|
2443
|
-
|
|
2444
|
-
|
|
2445
|
-
|
|
2446
|
-
|
|
2443
|
+
102,
|
|
2444
|
+
105,
|
|
2445
|
+
110,
|
|
2446
|
+
105,
|
|
2447
2447
|
116,
|
|
2448
|
-
|
|
2448
|
+
105,
|
|
2449
|
+
111,
|
|
2450
|
+
110,
|
|
2449
2451
|
95,
|
|
2450
2452
|
105,
|
|
2451
2453
|
100,
|
|
@@ -2455,11 +2457,11 @@ exports.AgentServiceDefinition = {
|
|
|
2455
2457
|
},
|
|
2456
2458
|
},
|
|
2457
2459
|
},
|
|
2458
|
-
|
|
2459
|
-
name: "
|
|
2460
|
-
requestType: exports.
|
|
2460
|
+
listAgentDefinitions: {
|
|
2461
|
+
name: "ListAgentDefinitions",
|
|
2462
|
+
requestType: exports.ListAgentDefinitionsRequest,
|
|
2461
2463
|
requestStream: false,
|
|
2462
|
-
responseType: exports.
|
|
2464
|
+
responseType: exports.ListAgentDefinitionsResponse,
|
|
2463
2465
|
responseStream: false,
|
|
2464
2466
|
options: {
|
|
2465
2467
|
_unknownFields: {
|
|
@@ -2477,12 +2479,12 @@ exports.AgentServiceDefinition = {
|
|
|
2477
2479
|
_unknownFields: {
|
|
2478
2480
|
578365826: [
|
|
2479
2481
|
new Uint8Array([
|
|
2480
|
-
|
|
2482
|
+
43,
|
|
2481
2483
|
58,
|
|
2482
2484
|
1,
|
|
2483
2485
|
42,
|
|
2484
2486
|
50,
|
|
2485
|
-
|
|
2487
|
+
38,
|
|
2486
2488
|
47,
|
|
2487
2489
|
118,
|
|
2488
2490
|
49,
|
|
@@ -2501,14 +2503,16 @@ exports.AgentServiceDefinition = {
|
|
|
2501
2503
|
110,
|
|
2502
2504
|
116,
|
|
2503
2505
|
95,
|
|
2504
|
-
|
|
2506
|
+
100,
|
|
2505
2507
|
101,
|
|
2506
|
-
|
|
2507
|
-
|
|
2508
|
-
|
|
2509
|
-
|
|
2508
|
+
102,
|
|
2509
|
+
105,
|
|
2510
|
+
110,
|
|
2511
|
+
105,
|
|
2510
2512
|
116,
|
|
2511
|
-
|
|
2513
|
+
105,
|
|
2514
|
+
111,
|
|
2515
|
+
110,
|
|
2512
2516
|
95,
|
|
2513
2517
|
105,
|
|
2514
2518
|
100,
|
|
@@ -2534,12 +2538,12 @@ exports.AgentServiceDefinition = {
|
|
|
2534
2538
|
_unknownFields: {
|
|
2535
2539
|
578365826: [
|
|
2536
2540
|
new Uint8Array([
|
|
2537
|
-
|
|
2541
|
+
55,
|
|
2538
2542
|
58,
|
|
2539
2543
|
1,
|
|
2540
2544
|
42,
|
|
2541
2545
|
34,
|
|
2542
|
-
|
|
2546
|
+
50,
|
|
2543
2547
|
47,
|
|
2544
2548
|
118,
|
|
2545
2549
|
49,
|
|
@@ -2558,14 +2562,16 @@ exports.AgentServiceDefinition = {
|
|
|
2558
2562
|
110,
|
|
2559
2563
|
116,
|
|
2560
2564
|
95,
|
|
2561
|
-
|
|
2565
|
+
100,
|
|
2562
2566
|
101,
|
|
2563
|
-
|
|
2564
|
-
|
|
2565
|
-
|
|
2566
|
-
|
|
2567
|
+
102,
|
|
2568
|
+
105,
|
|
2569
|
+
110,
|
|
2570
|
+
105,
|
|
2567
2571
|
116,
|
|
2568
|
-
|
|
2572
|
+
105,
|
|
2573
|
+
111,
|
|
2574
|
+
110,
|
|
2569
2575
|
95,
|
|
2570
2576
|
105,
|
|
2571
2577
|
100,
|
|
@@ -2593,22 +2599,22 @@ exports.AgentServiceDefinition = {
|
|
|
2593
2599
|
},
|
|
2594
2600
|
},
|
|
2595
2601
|
},
|
|
2596
|
-
|
|
2597
|
-
name: "
|
|
2598
|
-
requestType: exports.
|
|
2602
|
+
publishAgentDefinition: {
|
|
2603
|
+
name: "PublishAgentDefinition",
|
|
2604
|
+
requestType: exports.PublishAgentDefinitionRequest,
|
|
2599
2605
|
requestStream: false,
|
|
2600
|
-
responseType: exports.
|
|
2606
|
+
responseType: exports.PublishAgentDefinitionResponse,
|
|
2601
2607
|
responseStream: false,
|
|
2602
2608
|
options: {
|
|
2603
2609
|
_unknownFields: {
|
|
2604
2610
|
578365826: [
|
|
2605
2611
|
new Uint8Array([
|
|
2606
|
-
|
|
2612
|
+
45,
|
|
2607
2613
|
58,
|
|
2608
2614
|
1,
|
|
2609
2615
|
42,
|
|
2610
2616
|
34,
|
|
2611
|
-
|
|
2617
|
+
40,
|
|
2612
2618
|
47,
|
|
2613
2619
|
118,
|
|
2614
2620
|
49,
|
|
@@ -2627,14 +2633,16 @@ exports.AgentServiceDefinition = {
|
|
|
2627
2633
|
110,
|
|
2628
2634
|
116,
|
|
2629
2635
|
95,
|
|
2630
|
-
|
|
2636
|
+
100,
|
|
2631
2637
|
101,
|
|
2632
|
-
|
|
2633
|
-
|
|
2634
|
-
|
|
2635
|
-
|
|
2638
|
+
102,
|
|
2639
|
+
105,
|
|
2640
|
+
110,
|
|
2641
|
+
105,
|
|
2636
2642
|
116,
|
|
2637
|
-
|
|
2643
|
+
105,
|
|
2644
|
+
111,
|
|
2645
|
+
110,
|
|
2638
2646
|
95,
|
|
2639
2647
|
105,
|
|
2640
2648
|
100,
|
|
@@ -2662,9 +2670,9 @@ exports.AgentServiceDefinition = {
|
|
|
2662
2670
|
_unknownFields: {
|
|
2663
2671
|
578365826: [
|
|
2664
2672
|
new Uint8Array([
|
|
2665
|
-
|
|
2673
|
+
53,
|
|
2666
2674
|
18,
|
|
2667
|
-
|
|
2675
|
+
51,
|
|
2668
2676
|
47,
|
|
2669
2677
|
118,
|
|
2670
2678
|
49,
|
|
@@ -2683,14 +2691,16 @@ exports.AgentServiceDefinition = {
|
|
|
2683
2691
|
110,
|
|
2684
2692
|
116,
|
|
2685
2693
|
95,
|
|
2686
|
-
|
|
2694
|
+
100,
|
|
2687
2695
|
101,
|
|
2688
|
-
|
|
2689
|
-
|
|
2690
|
-
|
|
2691
|
-
|
|
2696
|
+
102,
|
|
2697
|
+
105,
|
|
2698
|
+
110,
|
|
2699
|
+
105,
|
|
2692
2700
|
116,
|
|
2693
|
-
|
|
2701
|
+
105,
|
|
2702
|
+
111,
|
|
2703
|
+
110,
|
|
2694
2704
|
95,
|
|
2695
2705
|
105,
|
|
2696
2706
|
100,
|
|
@@ -2729,9 +2739,9 @@ exports.AgentServiceDefinition = {
|
|
|
2729
2739
|
_unknownFields: {
|
|
2730
2740
|
578365826: [
|
|
2731
2741
|
new Uint8Array([
|
|
2732
|
-
|
|
2742
|
+
43,
|
|
2733
2743
|
18,
|
|
2734
|
-
|
|
2744
|
+
41,
|
|
2735
2745
|
47,
|
|
2736
2746
|
118,
|
|
2737
2747
|
49,
|
|
@@ -2750,14 +2760,16 @@ exports.AgentServiceDefinition = {
|
|
|
2750
2760
|
110,
|
|
2751
2761
|
116,
|
|
2752
2762
|
95,
|
|
2753
|
-
|
|
2763
|
+
100,
|
|
2754
2764
|
101,
|
|
2755
|
-
|
|
2756
|
-
|
|
2757
|
-
|
|
2758
|
-
|
|
2765
|
+
102,
|
|
2766
|
+
105,
|
|
2767
|
+
110,
|
|
2768
|
+
105,
|
|
2759
2769
|
116,
|
|
2760
|
-
|
|
2770
|
+
105,
|
|
2771
|
+
111,
|
|
2772
|
+
110,
|
|
2761
2773
|
95,
|
|
2762
2774
|
105,
|
|
2763
2775
|
100,
|
|
@@ -2786,12 +2798,12 @@ exports.AgentServiceDefinition = {
|
|
|
2786
2798
|
_unknownFields: {
|
|
2787
2799
|
578365826: [
|
|
2788
2800
|
new Uint8Array([
|
|
2789
|
-
|
|
2801
|
+
60,
|
|
2790
2802
|
58,
|
|
2791
2803
|
1,
|
|
2792
2804
|
42,
|
|
2793
2805
|
34,
|
|
2794
|
-
|
|
2806
|
+
55,
|
|
2795
2807
|
47,
|
|
2796
2808
|
118,
|
|
2797
2809
|
49,
|
|
@@ -2810,14 +2822,16 @@ exports.AgentServiceDefinition = {
|
|
|
2810
2822
|
110,
|
|
2811
2823
|
116,
|
|
2812
2824
|
95,
|
|
2813
|
-
|
|
2825
|
+
100,
|
|
2814
2826
|
101,
|
|
2815
|
-
|
|
2816
|
-
|
|
2817
|
-
|
|
2818
|
-
|
|
2827
|
+
102,
|
|
2828
|
+
105,
|
|
2829
|
+
110,
|
|
2830
|
+
105,
|
|
2819
2831
|
116,
|
|
2820
|
-
|
|
2832
|
+
105,
|
|
2833
|
+
111,
|
|
2834
|
+
110,
|
|
2821
2835
|
95,
|
|
2822
2836
|
105,
|
|
2823
2837
|
100,
|