@stigmer/protos 0.0.82 → 0.0.84
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/ai/stigmer/agentic/mcpserver/v1/command_connect.d.ts +71 -11
- package/ai/stigmer/agentic/mcpserver/v1/command_connect.js +73 -13
- package/ai/stigmer/agentic/mcpserver/v1/command_connect.js.map +1 -1
- package/ai/stigmer/agentic/mcpserver/v1/command_pb.d.ts +71 -13
- package/ai/stigmer/agentic/mcpserver/v1/command_pb.js +1 -1
- package/ai/stigmer/agentic/mcpserver/v1/command_pb.js.map +1 -1
- package/ai/stigmer/agentic/mcpserver/v1/io_pb.d.ts +328 -1
- package/ai/stigmer/agentic/mcpserver/v1/io_pb.js +97 -2
- package/ai/stigmer/agentic/mcpserver/v1/io_pb.js.map +1 -1
- package/ai/stigmer/agentic/mcpserver/v1/oauth_pb.d.ts +68 -0
- package/ai/stigmer/agentic/mcpserver/v1/oauth_pb.js +6 -1
- package/ai/stigmer/agentic/mcpserver/v1/oauth_pb.js.map +1 -1
- package/ai/stigmer/agentic/mcpserver/v1/query_connect.d.ts +41 -0
- package/ai/stigmer/agentic/mcpserver/v1/query_connect.js +41 -0
- package/ai/stigmer/agentic/mcpserver/v1/query_connect.js.map +1 -1
- package/ai/stigmer/agentic/mcpserver/v1/query_pb.d.ts +40 -0
- package/ai/stigmer/agentic/mcpserver/v1/query_pb.js +2 -1
- package/ai/stigmer/agentic/mcpserver/v1/query_pb.js.map +1 -1
- package/ai/stigmer/agentic/mcpserver/v1/spec_pb.d.ts +0 -19
- package/ai/stigmer/agentic/mcpserver/v1/spec_pb.js +1 -2
- package/ai/stigmer/agentic/mcpserver/v1/spec_pb.js.map +1 -1
- package/ai/stigmer/agentic/mcpserver/v1/status_pb.d.ts +113 -1
- package/ai/stigmer/agentic/mcpserver/v1/status_pb.js +48 -1
- package/ai/stigmer/agentic/mcpserver/v1/status_pb.js.map +1 -1
- package/ai/stigmer/search/v1/io_pb.d.ts +12 -1
- package/ai/stigmer/search/v1/io_pb.js +1 -1
- package/ai/stigmer/search/v1/io_pb.js.map +1 -1
- package/package.json +1 -1
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"query_connect.js","sourceRoot":"","sources":["../../../../../../ai/stigmer/agentic/mcpserver/v1/query_connect.ts"],"names":[],"mappings":"AAAA,wEAAwE;AACxE,4HAA4H;AAC5H,oBAAoB;AACpB,cAAc;AAId,OAAO,EAAE,UAAU,EAAE,MAAM,oBAAoB,CAAC;
|
|
1
|
+
{"version":3,"file":"query_connect.js","sourceRoot":"","sources":["../../../../../../ai/stigmer/agentic/mcpserver/v1/query_connect.ts"],"names":[],"mappings":"AAAA,wEAAwE;AACxE,4HAA4H;AAC5H,oBAAoB;AACpB,cAAc;AAId,OAAO,EAAE,UAAU,EAAE,MAAM,oBAAoB,CAAC;AAGhD;;;;;;;;;;GAUG;AACH,MAAM,CAAC,MAAM,wBAAwB,GAAG;IACtC,QAAQ,EAAE,0DAA0D;IACpE,OAAO,EAAE;QACP;;;;;;;;;;;WAWG;QACH,GAAG,EAAE;YACH,IAAI,EAAE,KAAK;YACX,CAAC,EAAE,aAAa;YAChB,CAAC,EAAE,SAAS;YACZ,IAAI,EAAE,UAAU,CAAC,KAAK;SACvB;QACD;;;;;;;;;;;WAWG;QACH,cAAc,EAAE;YACd,IAAI,EAAE,gBAAgB;YACtB,CAAC,EAAE,oBAAoB;YACvB,CAAC,EAAE,SAAS;YACZ,IAAI,EAAE,UAAU,CAAC,KAAK;SACvB;QACD;;;;;;;;;;;;;;WAcG;QACH,mBAAmB,EAAE;YACnB,IAAI,EAAE,qBAAqB;YAC3B,CAAC,EAAE,wBAAwB;YAC3B,CAAC,EAAE,yBAAyB;YAC5B,IAAI,EAAE,UAAU,CAAC,KAAK;SACvB;QACD;;;;;;;;;;;;;WAaG;QACH,cAAc,EAAE;YACd,IAAI,EAAE,gBAAgB;YACtB,CAAC,EAAE,mBAAmB;YACtB,CAAC,EAAE,oBAAoB;YACvB,IAAI,EAAE,UAAU,CAAC,KAAK;SACvB;KACF;CACO,CAAC"}
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import type { GenFile, GenService } from "@bufbuild/protobuf/codegenv1";
|
|
2
2
|
import type { McpServerSchema } from "./api_pb";
|
|
3
|
+
import type { GetOAuthGrantStatusInputSchema, GetOAuthGrantStatusOutputSchema, GetOrgOAuthAppInputSchema, GetOrgOAuthAppOutputSchema } from "./io_pb";
|
|
3
4
|
import type { ApiResourceIdSchema, ApiResourceReferenceSchema } from "../../../commons/apiresource/io_pb";
|
|
4
5
|
/**
|
|
5
6
|
* Describes the file ai/stigmer/agentic/mcpserver/v1/query.proto.
|
|
@@ -51,4 +52,43 @@ export declare const McpServerQueryController: GenService<{
|
|
|
51
52
|
input: typeof ApiResourceReferenceSchema;
|
|
52
53
|
output: typeof McpServerSchema;
|
|
53
54
|
};
|
|
55
|
+
/**
|
|
56
|
+
* Check whether the authenticated user has an active OAuth grant for
|
|
57
|
+
* an MCP server in the specified org.
|
|
58
|
+
*
|
|
59
|
+
* Returns grant metadata (connected status, token expiry, auth method)
|
|
60
|
+
* without exposing any secret token values. The frontend uses this to
|
|
61
|
+
* render the correct OAuth state in the MCP server detail page and
|
|
62
|
+
* session composer.
|
|
63
|
+
*
|
|
64
|
+
* @internal
|
|
65
|
+
* Authorization: Requires can_view permission on the mcp_server resource.
|
|
66
|
+
* The resource_id field contains the MCP server's system-generated ID.
|
|
67
|
+
*
|
|
68
|
+
* @generated from rpc ai.stigmer.agentic.mcpserver.v1.McpServerQueryController.getOAuthGrantStatus
|
|
69
|
+
*/
|
|
70
|
+
getOAuthGrantStatus: {
|
|
71
|
+
methodKind: "unary";
|
|
72
|
+
input: typeof GetOAuthGrantStatusInputSchema;
|
|
73
|
+
output: typeof GetOAuthGrantStatusOutputSchema;
|
|
74
|
+
};
|
|
75
|
+
/**
|
|
76
|
+
* Query whether an org has a BYOA override for a resource.
|
|
77
|
+
*
|
|
78
|
+
* Returns override metadata (existence, OAuthApp ID, client_id) without
|
|
79
|
+
* exposing secrets. The frontend uses this to show which credential
|
|
80
|
+
* source is active and to offer override management options to org admins.
|
|
81
|
+
*
|
|
82
|
+
* @internal
|
|
83
|
+
* Authorization: Requires can_view permission on the mcp_server resource.
|
|
84
|
+
* Any user who can view the MCP server can check whether their org has
|
|
85
|
+
* an override — no secrets are exposed.
|
|
86
|
+
*
|
|
87
|
+
* @generated from rpc ai.stigmer.agentic.mcpserver.v1.McpServerQueryController.getOrgOAuthApp
|
|
88
|
+
*/
|
|
89
|
+
getOrgOAuthApp: {
|
|
90
|
+
methodKind: "unary";
|
|
91
|
+
input: typeof GetOrgOAuthAppInputSchema;
|
|
92
|
+
output: typeof GetOrgOAuthAppOutputSchema;
|
|
93
|
+
};
|
|
54
94
|
}>;
|
|
@@ -3,13 +3,14 @@
|
|
|
3
3
|
/* eslint-disable */
|
|
4
4
|
import { fileDesc, serviceDesc } from "@bufbuild/protobuf/codegenv1";
|
|
5
5
|
import { file_ai_stigmer_agentic_mcpserver_v1_api } from "./api_pb";
|
|
6
|
+
import { file_ai_stigmer_agentic_mcpserver_v1_io } from "./io_pb";
|
|
6
7
|
import { file_ai_stigmer_commons_apiresource_io } from "../../../commons/apiresource/io_pb";
|
|
7
8
|
import { file_ai_stigmer_commons_apiresource_rpc_service_options } from "../../../commons/apiresource/rpc_service_options_pb";
|
|
8
9
|
import { file_ai_stigmer_commons_rpc_method_options } from "../../../commons/rpc/method_options_pb";
|
|
9
10
|
/**
|
|
10
11
|
* Describes the file ai/stigmer/agentic/mcpserver/v1/query.proto.
|
|
11
12
|
*/
|
|
12
|
-
export const file_ai_stigmer_agentic_mcpserver_v1_query = /*@__PURE__*/ fileDesc("
|
|
13
|
+
export const file_ai_stigmer_agentic_mcpserver_v1_query = /*@__PURE__*/ fileDesc("CithaS9zdGlnbWVyL2FnZW50aWMvbWNwc2VydmVyL3YxL3F1ZXJ5LnByb3RvEh9haS5zdGlnbWVyLmFnZW50aWMubWNwc2VydmVyLnYxMssFChhNY3BTZXJ2ZXJRdWVyeUNvbnRyb2xsZXISkgEKA2dldBItLmFpLnN0aWdtZXIuY29tbW9ucy5hcGlyZXNvdXJjZS5BcGlSZXNvdXJjZUlkGiouYWkuc3RpZ21lci5hZ2VudGljLm1jcHNlcnZlci52MS5NY3BTZXJ2ZXIiMMK4GCwIARAsIgV2YWx1ZSofdW5hdXRob3JpemVkIHRvIHZpZXcgbWNwIHNlcnZlchJ4Cg5nZXRCeVJlZmVyZW5jZRI0LmFpLnN0aWdtZXIuY29tbW9ucy5hcGlyZXNvdXJjZS5BcGlSZXNvdXJjZVJlZmVyZW5jZRoqLmFpLnN0aWdtZXIuYWdlbnRpYy5tY3BzZXJ2ZXIudjEuTWNwU2VydmVyIgTQuBgBEtUBChNnZXRPQXV0aEdyYW50U3RhdHVzEjkuYWkuc3RpZ21lci5hZ2VudGljLm1jcHNlcnZlci52MS5HZXRPQXV0aEdyYW50U3RhdHVzSW5wdXQaOi5haS5zdGlnbWVyLmFnZW50aWMubWNwc2VydmVyLnYxLkdldE9BdXRoR3JhbnRTdGF0dXNPdXRwdXQiR8K4GEMIARAsIgtyZXNvdXJjZV9pZCowdW5hdXRob3JpemVkIHRvIHZpZXcgb2F1dGggc3RhdHVzIGZvciBtY3Agc2VydmVyEsEBCg5nZXRPcmdPQXV0aEFwcBI0LmFpLnN0aWdtZXIuYWdlbnRpYy5tY3BzZXJ2ZXIudjEuR2V0T3JnT0F1dGhBcHBJbnB1dBo1LmFpLnN0aWdtZXIuYWdlbnRpYy5tY3BzZXJ2ZXIudjEuR2V0T3JnT0F1dGhBcHBPdXRwdXQiQsK4GD4IARAsIgtyZXNvdXJjZV9pZCordW5hdXRob3JpemVkIHRvIHZpZXcgb3JnIG9hdXRoIGFwcCBvdmVycmlkZRoEoP8rLGIGcHJvdG8z", [file_ai_stigmer_agentic_mcpserver_v1_api, file_ai_stigmer_agentic_mcpserver_v1_io, file_ai_stigmer_commons_apiresource_io, file_ai_stigmer_commons_apiresource_rpc_service_options, file_ai_stigmer_commons_rpc_method_options]);
|
|
13
14
|
/**
|
|
14
15
|
* McpServerQueryController provides read operations for MCP server resources.
|
|
15
16
|
*
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"query_pb.js","sourceRoot":"","sources":["../../../../../../ai/stigmer/agentic/mcpserver/v1/query_pb.ts"],"names":[],"mappings":"AAAA,gEAAgE;AAChE,4HAA4H;AAC5H,oBAAoB;AAGpB,OAAO,EAAE,QAAQ,EAAE,WAAW,EAAE,MAAM,8BAA8B,CAAC;AAErE,OAAO,EAAE,wCAAwC,EAAE,MAAM,UAAU,CAAC;AAEpE,OAAO,EAAE,sCAAsC,EAAE,MAAM,oCAAoC,CAAC;AAC5F,OAAO,EAAE,uDAAuD,EAAE,MAAM,qDAAqD,CAAC;AAC9H,OAAO,EAAE,0CAA0C,EAAE,MAAM,wCAAwC,CAAC;AAEpG;;GAEG;AACH,MAAM,CAAC,MAAM,0CAA0C,GAAY,aAAa,CAC9E,QAAQ,CAAC,
|
|
1
|
+
{"version":3,"file":"query_pb.js","sourceRoot":"","sources":["../../../../../../ai/stigmer/agentic/mcpserver/v1/query_pb.ts"],"names":[],"mappings":"AAAA,gEAAgE;AAChE,4HAA4H;AAC5H,oBAAoB;AAGpB,OAAO,EAAE,QAAQ,EAAE,WAAW,EAAE,MAAM,8BAA8B,CAAC;AAErE,OAAO,EAAE,wCAAwC,EAAE,MAAM,UAAU,CAAC;AAEpE,OAAO,EAAE,uCAAuC,EAAE,MAAM,SAAS,CAAC;AAElE,OAAO,EAAE,sCAAsC,EAAE,MAAM,oCAAoC,CAAC;AAC5F,OAAO,EAAE,uDAAuD,EAAE,MAAM,qDAAqD,CAAC;AAC9H,OAAO,EAAE,0CAA0C,EAAE,MAAM,wCAAwC,CAAC;AAEpG;;GAEG;AACH,MAAM,CAAC,MAAM,0CAA0C,GAAY,aAAa,CAC9E,QAAQ,CAAC,kjCAAkjC,EAAE,CAAC,wCAAwC,EAAE,uCAAuC,EAAE,sCAAsC,EAAE,uDAAuD,EAAE,0CAA0C,CAAC,CAAC,CAAC;AAEjyC;;;;;;;;;;GAUG;AACH,MAAM,CAAC,MAAM,wBAAwB,GA0EhC,aAAa,CAChB,WAAW,CAAC,0CAA0C,EAAE,CAAC,CAAC,CAAC"}
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import type { GenFile, GenMessage } from "@bufbuild/protobuf/codegenv1";
|
|
2
2
|
import type { EnvVarDeclaration } from "../../environment/v1/spec_pb";
|
|
3
3
|
import type { ApiResourceReference } from "../../../commons/apiresource/io_pb";
|
|
4
|
-
import type { VendorApprovalStatus } from "../../../iam/oauthapp/v1/spec_pb";
|
|
5
4
|
import type { Message } from "@bufbuild/protobuf";
|
|
6
5
|
/**
|
|
7
6
|
* Describes the file ai/stigmer/agentic/mcpserver/v1/spec.proto.
|
|
@@ -411,24 +410,6 @@ export type McpServerAuth = Message<"ai.stigmer.agentic.mcpserver.v1.McpServerAu
|
|
|
411
410
|
* @generated from field: repeated string scope_hints = 4;
|
|
412
411
|
*/
|
|
413
412
|
scopeHints: string[];
|
|
414
|
-
/**
|
|
415
|
-
* Read-only. Resolved from the referenced OAuthApp at query time.
|
|
416
|
-
* Indicates whether the vendor has approved this OAuth app for public use.
|
|
417
|
-
* Not persisted on the McpServer — populated by the backend when serving
|
|
418
|
-
* MCP server data so the frontend can gate the sign-in button without
|
|
419
|
-
* a separate OAuthApp fetch.
|
|
420
|
-
*
|
|
421
|
-
* @generated from field: ai.stigmer.iam.oauthapp.v1.VendorApprovalStatus vendor_approval_status = 5;
|
|
422
|
-
*/
|
|
423
|
-
vendorApprovalStatus: VendorApprovalStatus;
|
|
424
|
-
/**
|
|
425
|
-
* Read-only. Resolved from the referenced OAuthApp at query time.
|
|
426
|
-
* Documentation URL for users who want to bring their own OAuth
|
|
427
|
-
* credentials while the platform's OAuth app is pending vendor approval.
|
|
428
|
-
*
|
|
429
|
-
* @generated from field: string vendor_approval_docs_url = 6;
|
|
430
|
-
*/
|
|
431
|
-
vendorApprovalDocsUrl: string;
|
|
432
413
|
/**
|
|
433
414
|
* Optional URL for OAuth authorization server discovery on stdio servers.
|
|
434
415
|
*
|
|
@@ -5,12 +5,11 @@ import { fileDesc, messageDesc } from "@bufbuild/protobuf/codegenv1";
|
|
|
5
5
|
import { file_ai_stigmer_agentic_environment_v1_spec } from "../../environment/v1/spec_pb";
|
|
6
6
|
import { file_ai_stigmer_commons_apiresource_field_options } from "../../../commons/apiresource/field_options_pb";
|
|
7
7
|
import { file_ai_stigmer_commons_apiresource_io } from "../../../commons/apiresource/io_pb";
|
|
8
|
-
import { file_ai_stigmer_iam_oauthapp_v1_spec } from "../../../iam/oauthapp/v1/spec_pb";
|
|
9
8
|
import { file_buf_validate_validate } from "../../../../../buf/validate/validate_pb";
|
|
10
9
|
/**
|
|
11
10
|
* Describes the file ai/stigmer/agentic/mcpserver/v1/spec.proto.
|
|
12
11
|
*/
|
|
13
|
-
export const file_ai_stigmer_agentic_mcpserver_v1_spec = /*@__PURE__*/ fileDesc("
|
|
12
|
+
export const file_ai_stigmer_agentic_mcpserver_v1_spec = /*@__PURE__*/ fileDesc("CiphaS9zdGlnbWVyL2FnZW50aWMvbWNwc2VydmVyL3YxL3NwZWMucHJvdG8SH2FpLnN0aWdtZXIuYWdlbnRpYy5tY3BzZXJ2ZXIudjEi6QQKDU1jcFNlcnZlclNwZWMSEwoLZGVzY3JpcHRpb24YASABKAkSEAoIaWNvbl91cmwYAiABKAkSDAoEdGFncxgDIAMoCRJDCgVzdGRpbxgEIAEoCzIyLmFpLnN0aWdtZXIuYWdlbnRpYy5tY3BzZXJ2ZXIudjEuU3RkaW9TZXJ2ZXJDb25maWdIABJBCgRodHRwGAUgASgLMjEuYWkuc3RpZ21lci5hZ2VudGljLm1jcHNlcnZlci52MS5IdHRwU2VydmVyQ29uZmlnSAASHQoVZGVmYXVsdF9lbmFibGVkX3Rvb2xzGAcgAygJEkQKA2VudhgIIAMoCzI3LmFpLnN0aWdtZXIuYWdlbnRpYy5tY3BzZXJ2ZXIudjEuTWNwU2VydmVyU3BlYy5FbnZFbnRyeRJSChVwaW5uZWRfdG9vbF9hcHByb3ZhbHMYCyADKAsyMy5haS5zdGlnbWVyLmFnZW50aWMubWNwc2VydmVyLnYxLlRvb2xBcHByb3ZhbFBvbGljeRIWCg5yZXBvc2l0b3J5X3VybBgMIAEoCRIUCgxnaXRodWJfc3RhcnMYDSABKAUSPAoEYXV0aBgOIAEoCzIuLmFpLnN0aWdtZXIuYWdlbnRpYy5tY3BzZXJ2ZXIudjEuTWNwU2VydmVyQXV0aBpgCghFbnZFbnRyeRILCgNrZXkYASABKAkSQwoFdmFsdWUYAiABKAsyNC5haS5zdGlnbWVyLmFnZW50aWMuZW52aXJvbm1lbnQudjEuRW52VmFyRGVjbGFyYXRpb246AjgBQhQKC3NlcnZlcl90eXBlEgW6SAIIASJPChFTdGRpb1NlcnZlckNvbmZpZxIXCgdjb21tYW5kGAEgASgJQga6SAPIAQESDAoEYXJncxgCIAMoCRITCgt3b3JraW5nX2RpchgDIAEoCSLgAgoQSHR0cFNlcnZlckNvbmZpZxIYCgN1cmwYASABKAlCC7pICMgBAXIDiAEBEk8KB2hlYWRlcnMYAiADKAsyPi5haS5zdGlnbWVyLmFnZW50aWMubWNwc2VydmVyLnYxLkh0dHBTZXJ2ZXJDb25maWcuSGVhZGVyc0VudHJ5ElgKDHF1ZXJ5X3BhcmFtcxgDIAMoCzJCLmFpLnN0aWdtZXIuYWdlbnRpYy5tY3BzZXJ2ZXIudjEuSHR0cFNlcnZlckNvbmZpZy5RdWVyeVBhcmFtc0VudHJ5EiMKD3RpbWVvdXRfc2Vjb25kcxgEIAEoBUIKukgHGgUYrAIoABouCgxIZWFkZXJzRW50cnkSCwoDa2V5GAEgASgJEg0KBXZhbHVlGAIgASgJOgI4ARoyChBRdWVyeVBhcmFtc0VudHJ5EgsKA2tleRgBIAEoCRINCgV2YWx1ZRgCIAEoCToCOAEiQQoSVG9vbEFwcHJvdmFsUG9saWN5EhoKCXRvb2xfbmFtZRgBIAEoCUIHukgEcgIQARIPCgdtZXNzYWdlGAIgASgJIuACCg1NY3BTZXJ2ZXJBdXRoEswBCg1vYXV0aF9hcHBfcmVmGAEgASgLMjQuYWkuc3RpZ21lci5jb21tb25zLmFwaXJlc291cmNlLkFwaVJlc291cmNlUmVmZXJlbmNlQn+6SHi6AXUKEm9hdXRoX2FwcF9yZWYua2luZBI7b2F1dGhfYXBwX3JlZiBtdXN0IHJlZmVyZW5jZSBhIHJlc291cmNlIHdpdGgga2luZD1vYXV0aF9hcHAaInRoaXMuc2x1ZyA9PSAnJyB8fCB0aGlzLmtpbmQgPT0gMjLghSwWEh8KDnRhcmdldF9lbnZfdmFyGAIgASgJQge6SARyAhABEhsKE3Rva2VuX2xpZmV0aW1lX2hpbnQYAyABKAkSEwoLc2NvcGVfaGludHMYBCADKAkSFQoNZGlzY292ZXJ5X3VybBgHIAEoCUoECAUQBkoECAYQB0oECAgQCUoECAkQCmIGcHJvdG8z", [file_ai_stigmer_agentic_environment_v1_spec, file_ai_stigmer_commons_apiresource_field_options, file_ai_stigmer_commons_apiresource_io, file_buf_validate_validate]);
|
|
14
13
|
/**
|
|
15
14
|
* Describes the message ai.stigmer.agentic.mcpserver.v1.McpServerSpec.
|
|
16
15
|
* Use `create(McpServerSpecSchema)` to create a new message.
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"spec_pb.js","sourceRoot":"","sources":["../../../../../../ai/stigmer/agentic/mcpserver/v1/spec_pb.ts"],"names":[],"mappings":"AAAA,gEAAgE;AAChE,2HAA2H;AAC3H,oBAAoB;AAGpB,OAAO,EAAE,QAAQ,EAAE,WAAW,EAAE,MAAM,8BAA8B,CAAC;AAErE,OAAO,EAAE,2CAA2C,EAAE,MAAM,8BAA8B,CAAC;AAC3F,OAAO,EAAE,iDAAiD,EAAE,MAAM,+CAA+C,CAAC;AAElH,OAAO,EAAE,sCAAsC,EAAE,MAAM,oCAAoC,CAAC;
|
|
1
|
+
{"version":3,"file":"spec_pb.js","sourceRoot":"","sources":["../../../../../../ai/stigmer/agentic/mcpserver/v1/spec_pb.ts"],"names":[],"mappings":"AAAA,gEAAgE;AAChE,2HAA2H;AAC3H,oBAAoB;AAGpB,OAAO,EAAE,QAAQ,EAAE,WAAW,EAAE,MAAM,8BAA8B,CAAC;AAErE,OAAO,EAAE,2CAA2C,EAAE,MAAM,8BAA8B,CAAC;AAC3F,OAAO,EAAE,iDAAiD,EAAE,MAAM,+CAA+C,CAAC;AAElH,OAAO,EAAE,sCAAsC,EAAE,MAAM,oCAAoC,CAAC;AAC5F,OAAO,EAAE,0BAA0B,EAAE,MAAM,yCAAyC,CAAC;AAGrF;;GAEG;AACH,MAAM,CAAC,MAAM,yCAAyC,GAAY,aAAa,CAC7E,QAAQ,CAAC,siEAAsiE,EAAE,CAAC,2CAA2C,EAAE,iDAAiD,EAAE,sCAAsC,EAAE,0BAA0B,CAAC,CAAC,CAAC;AAgJztE;;;GAGG;AACH,MAAM,CAAC,MAAM,mBAAmB,GAA8B,aAAa,CACzE,WAAW,CAAC,yCAAyC,EAAE,CAAC,CAAC,CAAC;AA+D5D;;;GAGG;AACH,MAAM,CAAC,MAAM,uBAAuB,GAAkC,aAAa,CACjF,WAAW,CAAC,yCAAyC,EAAE,CAAC,CAAC,CAAC;AAqE5D;;;GAGG;AACH,MAAM,CAAC,MAAM,sBAAsB,GAAiC,aAAa,CAC/E,WAAW,CAAC,yCAAyC,EAAE,CAAC,CAAC,CAAC;AAmD5D;;;GAGG;AACH,MAAM,CAAC,MAAM,wBAAwB,GAAmC,aAAa,CACnF,WAAW,CAAC,yCAAyC,EAAE,CAAC,CAAC,CAAC;AAwG5D;;;GAGG;AACH,MAAM,CAAC,MAAM,mBAAmB,GAA8B,aAAa,CACzE,WAAW,CAAC,yCAAyC,EAAE,CAAC,CAAC,CAAC"}
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import type { GenEnum, GenFile, GenMessage } from "@bufbuild/protobuf/codegenv1";
|
|
2
2
|
import type { ToolApprovalPolicy } from "./spec_pb";
|
|
3
3
|
import type { ApiResourceAudit } from "../../../commons/apiresource/status_pb";
|
|
4
|
+
import type { VendorApprovalStatus } from "../../../iam/oauthapp/v1/spec_pb";
|
|
4
5
|
import type { Timestamp } from "@bufbuild/protobuf/wkt";
|
|
5
6
|
import type { JsonObject, Message } from "@bufbuild/protobuf";
|
|
6
7
|
/**
|
|
@@ -11,7 +12,7 @@ export declare const file_ai_stigmer_agentic_mcpserver_v1_status: GenFile;
|
|
|
11
12
|
* McpServerStatus represents the system-managed state of an MCP server definition.
|
|
12
13
|
*
|
|
13
14
|
* @internal
|
|
14
|
-
* Tracks
|
|
15
|
+
* Tracks four concerns:
|
|
15
16
|
* 1. Structural validation — whether the definition is valid and can be used by agents.
|
|
16
17
|
* 2. Discovered capabilities — the tools and resource templates the MCP server
|
|
17
18
|
* actually provides. Populated by:
|
|
@@ -20,6 +21,8 @@ export declare const file_ai_stigmer_agentic_mcpserver_v1_status: GenFile;
|
|
|
20
21
|
* workflow, which connects to the MCP server and enumerates tools/resources.
|
|
21
22
|
* 3. Tool approval policies — system-generated by a lightweight LLM classifier during
|
|
22
23
|
* the connect flow. Manual overrides live in McpServerSpec.pinned_tool_approvals.
|
|
24
|
+
* 4. OAuth enrichment — vendor approval status and BYOA resolution chain results,
|
|
25
|
+
* populated by the backend enricher at query time. Never persisted.
|
|
23
26
|
*
|
|
24
27
|
* @generated from message ai.stigmer.agentic.mcpserver.v1.McpServerStatus
|
|
25
28
|
*/
|
|
@@ -67,6 +70,15 @@ export type McpServerStatus = Message<"ai.stigmer.agentic.mcpserver.v1.McpServer
|
|
|
67
70
|
* @generated from field: repeated ai.stigmer.agentic.mcpserver.v1.ToolApprovalPolicy tool_approvals = 4;
|
|
68
71
|
*/
|
|
69
72
|
toolApprovals: ToolApprovalPolicy[];
|
|
73
|
+
/**
|
|
74
|
+
* OAuth-related enrichment state, populated at query time by the backend.
|
|
75
|
+
* Contains vendor approval status (resolved from the referenced OAuthApp)
|
|
76
|
+
* and BYOA resolution chain results (which OAuthApp is effective for the
|
|
77
|
+
* caller's org context). None of these fields are persisted.
|
|
78
|
+
*
|
|
79
|
+
* @generated from field: ai.stigmer.agentic.mcpserver.v1.OAuthStatus oauth_status = 5;
|
|
80
|
+
*/
|
|
81
|
+
oauthStatus?: OAuthStatus;
|
|
70
82
|
/**
|
|
71
83
|
* Standard audit information (created_at, updated_at, created_by, etc.)
|
|
72
84
|
*
|
|
@@ -200,6 +212,66 @@ export type DiscoveredResourceTemplate = Message<"ai.stigmer.agentic.mcpserver.v
|
|
|
200
212
|
* Use `create(DiscoveredResourceTemplateSchema)` to create a new message.
|
|
201
213
|
*/
|
|
202
214
|
export declare const DiscoveredResourceTemplateSchema: GenMessage<DiscoveredResourceTemplate>;
|
|
215
|
+
/**
|
|
216
|
+
* OAuthStatus holds system-derived OAuth enrichment state for an MCP server.
|
|
217
|
+
*
|
|
218
|
+
* @internal
|
|
219
|
+
* All fields are read-only, populated by the backend enricher at query time.
|
|
220
|
+
* None are persisted on the McpServer document — they are computed fresh on
|
|
221
|
+
* every get/getByReference response.
|
|
222
|
+
*
|
|
223
|
+
* Two categories of enrichment:
|
|
224
|
+
* 1. Vendor approval (fields 1-2): Resolved from the referenced OAuthApp
|
|
225
|
+
* resource. Tells the frontend whether the sign-in button should be
|
|
226
|
+
* enabled and provides a BYOA documentation link when approval is pending.
|
|
227
|
+
* 2. BYOA resolution (fields 3-4): Computed from the OAuth app resolution
|
|
228
|
+
* chain. Tells the frontend which credential source is active for the
|
|
229
|
+
* caller's org context and its OAuthApp ID.
|
|
230
|
+
*
|
|
231
|
+
* @generated from message ai.stigmer.agentic.mcpserver.v1.OAuthStatus
|
|
232
|
+
*/
|
|
233
|
+
export type OAuthStatus = Message<"ai.stigmer.agentic.mcpserver.v1.OAuthStatus"> & {
|
|
234
|
+
/**
|
|
235
|
+
* Vendor marketplace/app-review approval status for this MCP server's
|
|
236
|
+
* OAuth app. Resolved from the referenced OAuthApp at query time.
|
|
237
|
+
* When the platform OAuthApp is pending vendor approval, the frontend
|
|
238
|
+
* gates the sign-in button and shows a BYOA alternative.
|
|
239
|
+
*
|
|
240
|
+
* @generated from field: ai.stigmer.iam.oauthapp.v1.VendorApprovalStatus vendor_approval_status = 1;
|
|
241
|
+
*/
|
|
242
|
+
vendorApprovalStatus: VendorApprovalStatus;
|
|
243
|
+
/**
|
|
244
|
+
* Documentation URL for users who want to bring their own OAuth app
|
|
245
|
+
* credentials while the platform's OAuth app is pending vendor approval.
|
|
246
|
+
* Resolved from the referenced OAuthApp at query time.
|
|
247
|
+
* Empty when the OAuthApp has no documentation link or is already approved.
|
|
248
|
+
*
|
|
249
|
+
* @generated from field: string vendor_approval_docs_url = 2;
|
|
250
|
+
*/
|
|
251
|
+
vendorApprovalDocsUrl: string;
|
|
252
|
+
/**
|
|
253
|
+
* Where the effective OAuth app was resolved from for the caller's org.
|
|
254
|
+
* Computed from the resolution chain:
|
|
255
|
+
* 1. OAuthAppOverride for (resource_id, resource_kind, org_id) → ORG_OVERRIDE
|
|
256
|
+
* 2. McpServerAuth.oauth_app_ref → PLATFORM
|
|
257
|
+
* 3. Neither exists → NONE
|
|
258
|
+
*
|
|
259
|
+
* @generated from field: ai.stigmer.agentic.mcpserver.v1.OAuthAppSource effective_oauth_source = 3;
|
|
260
|
+
*/
|
|
261
|
+
effectiveOauthSource: OAuthAppSource;
|
|
262
|
+
/**
|
|
263
|
+
* System-generated ID (metadata.id) of the OAuthApp that the resolution
|
|
264
|
+
* chain selected. Empty when effective_oauth_source is NONE.
|
|
265
|
+
*
|
|
266
|
+
* @generated from field: string effective_oauth_app_id = 4;
|
|
267
|
+
*/
|
|
268
|
+
effectiveOauthAppId: string;
|
|
269
|
+
};
|
|
270
|
+
/**
|
|
271
|
+
* Describes the message ai.stigmer.agentic.mcpserver.v1.OAuthStatus.
|
|
272
|
+
* Use `create(OAuthStatusSchema)` to create a new message.
|
|
273
|
+
*/
|
|
274
|
+
export declare const OAuthStatusSchema: GenMessage<OAuthStatus>;
|
|
203
275
|
/**
|
|
204
276
|
* ValidationState represents the structural validity of an MCP server definition.
|
|
205
277
|
* This is NOT runtime health — it only indicates whether the definition is valid.
|
|
@@ -235,3 +307,43 @@ export declare enum ValidationState {
|
|
|
235
307
|
* Describes the enum ai.stigmer.agentic.mcpserver.v1.ValidationState.
|
|
236
308
|
*/
|
|
237
309
|
export declare const ValidationStateSchema: GenEnum<ValidationState>;
|
|
310
|
+
/**
|
|
311
|
+
* OAuthAppSource identifies where the effective OAuth app for an MCP server
|
|
312
|
+
* was resolved from. Populated at query time by the backend enricher to tell
|
|
313
|
+
* the frontend which credential source is active for the current org context.
|
|
314
|
+
*
|
|
315
|
+
* Used in OAuthStatus.effective_oauth_source (read-only, not persisted).
|
|
316
|
+
*
|
|
317
|
+
* @generated from enum ai.stigmer.agentic.mcpserver.v1.OAuthAppSource
|
|
318
|
+
*/
|
|
319
|
+
export declare enum OAuthAppSource {
|
|
320
|
+
/**
|
|
321
|
+
* Default / unset. The resolution chain has not been evaluated yet.
|
|
322
|
+
*
|
|
323
|
+
* @generated from enum value: OAUTH_APP_SOURCE_UNSPECIFIED = 0;
|
|
324
|
+
*/
|
|
325
|
+
OAUTH_APP_SOURCE_UNSPECIFIED = 0,
|
|
326
|
+
/**
|
|
327
|
+
* The platform-default OAuthApp is in use (McpServerAuth.oauth_app_ref).
|
|
328
|
+
*
|
|
329
|
+
* @generated from enum value: OAUTH_APP_SOURCE_PLATFORM = 1;
|
|
330
|
+
*/
|
|
331
|
+
OAUTH_APP_SOURCE_PLATFORM = 1,
|
|
332
|
+
/**
|
|
333
|
+
* An org-level BYOA override is in use (OAuthAppOverride binding).
|
|
334
|
+
*
|
|
335
|
+
* @generated from enum value: OAUTH_APP_SOURCE_ORG_OVERRIDE = 2;
|
|
336
|
+
*/
|
|
337
|
+
OAUTH_APP_SOURCE_ORG_OVERRIDE = 2,
|
|
338
|
+
/**
|
|
339
|
+
* No OAuthApp is available. The MCP server either uses DCR (mcp_oauth)
|
|
340
|
+
* or has no auth block at all.
|
|
341
|
+
*
|
|
342
|
+
* @generated from enum value: OAUTH_APP_SOURCE_NONE = 3;
|
|
343
|
+
*/
|
|
344
|
+
OAUTH_APP_SOURCE_NONE = 3
|
|
345
|
+
}
|
|
346
|
+
/**
|
|
347
|
+
* Describes the enum ai.stigmer.agentic.mcpserver.v1.OAuthAppSource.
|
|
348
|
+
*/
|
|
349
|
+
export declare const OAuthAppSourceSchema: GenEnum<OAuthAppSource>;
|
|
@@ -4,11 +4,12 @@
|
|
|
4
4
|
import { enumDesc, fileDesc, messageDesc } from "@bufbuild/protobuf/codegenv1";
|
|
5
5
|
import { file_ai_stigmer_agentic_mcpserver_v1_spec } from "./spec_pb";
|
|
6
6
|
import { file_ai_stigmer_commons_apiresource_status } from "../../../commons/apiresource/status_pb";
|
|
7
|
+
import { file_ai_stigmer_iam_oauthapp_v1_spec } from "../../../iam/oauthapp/v1/spec_pb";
|
|
7
8
|
import { file_google_protobuf_struct, file_google_protobuf_timestamp } from "@bufbuild/protobuf/wkt";
|
|
8
9
|
/**
|
|
9
10
|
* Describes the file ai/stigmer/agentic/mcpserver/v1/status.proto.
|
|
10
11
|
*/
|
|
11
|
-
export const file_ai_stigmer_agentic_mcpserver_v1_status = /*@__PURE__*/ fileDesc("
|
|
12
|
+
export const file_ai_stigmer_agentic_mcpserver_v1_status = /*@__PURE__*/ fileDesc("CixhaS9zdGlnbWVyL2FnZW50aWMvbWNwc2VydmVyL3YxL3N0YXR1cy5wcm90bxIfYWkuc3RpZ21lci5hZ2VudGljLm1jcHNlcnZlci52MSKlAwoPTWNwU2VydmVyU3RhdHVzEkoKEHZhbGlkYXRpb25fc3RhdGUYASABKA4yMC5haS5zdGlnbWVyLmFnZW50aWMubWNwc2VydmVyLnYxLlZhbGlkYXRpb25TdGF0ZRIaChJ2YWxpZGF0aW9uX21lc3NhZ2UYAiABKAkSWAoXZGlzY292ZXJlZF9jYXBhYmlsaXRpZXMYAyABKAsyNy5haS5zdGlnbWVyLmFnZW50aWMubWNwc2VydmVyLnYxLkRpc2NvdmVyZWRDYXBhYmlsaXRpZXMSSwoOdG9vbF9hcHByb3ZhbHMYBCADKAsyMy5haS5zdGlnbWVyLmFnZW50aWMubWNwc2VydmVyLnYxLlRvb2xBcHByb3ZhbFBvbGljeRJCCgxvYXV0aF9zdGF0dXMYBSABKAsyLC5haS5zdGlnbWVyLmFnZW50aWMubWNwc2VydmVyLnYxLk9BdXRoU3RhdHVzEj8KBWF1ZGl0GGMgASgLMjAuYWkuc3RpZ21lci5jb21tb25zLmFwaXJlc291cmNlLkFwaVJlc291cmNlQXVkaXQi6QEKFkRpc2NvdmVyZWRDYXBhYmlsaXRpZXMSPgoFdG9vbHMYASADKAsyLy5haS5zdGlnbWVyLmFnZW50aWMubWNwc2VydmVyLnYxLkRpc2NvdmVyZWRUb29sElcKEnJlc291cmNlX3RlbXBsYXRlcxgCIAMoCzI7LmFpLnN0aWdtZXIuYWdlbnRpYy5tY3BzZXJ2ZXIudjEuRGlzY292ZXJlZFJlc291cmNlVGVtcGxhdGUSNgoSbGFzdF9kaXNjb3ZlcmVkX2F0GAMgASgLMhouZ29vZ2xlLnByb3RvYnVmLlRpbWVzdGFtcCJiCg5EaXNjb3ZlcmVkVG9vbBIMCgRuYW1lGAEgASgJEhMKC2Rlc2NyaXB0aW9uGAIgASgJEi0KDGlucHV0X3NjaGVtYRgDIAEoCzIXLmdvb2dsZS5wcm90b2J1Zi5TdHJ1Y3QiaAoaRGlzY292ZXJlZFJlc291cmNlVGVtcGxhdGUSFAoMdXJpX3RlbXBsYXRlGAEgASgJEgwKBG5hbWUYAiABKAkSEwoLZGVzY3JpcHRpb24YAyABKAkSEQoJbWltZV90eXBlGAQgASgJIvIBCgtPQXV0aFN0YXR1cxJQChZ2ZW5kb3JfYXBwcm92YWxfc3RhdHVzGAEgASgOMjAuYWkuc3RpZ21lci5pYW0ub2F1dGhhcHAudjEuVmVuZG9yQXBwcm92YWxTdGF0dXMSIAoYdmVuZG9yX2FwcHJvdmFsX2RvY3NfdXJsGAIgASgJEk8KFmVmZmVjdGl2ZV9vYXV0aF9zb3VyY2UYAyABKA4yLy5haS5zdGlnbWVyLmFnZW50aWMubWNwc2VydmVyLnYxLk9BdXRoQXBwU291cmNlEh4KFmVmZmVjdGl2ZV9vYXV0aF9hcHBfaWQYBCABKAkqSwoPVmFsaWRhdGlvblN0YXRlEiAKHHZhbGlkYXRpb25fc3RhdGVfdW5zcGVjaWZpZWQQABIJCgV2YWxpZBABEgsKB2ludmFsaWQQAiqPAQoOT0F1dGhBcHBTb3VyY2USIAocT0FVVEhfQVBQX1NPVVJDRV9VTlNQRUNJRklFRBAAEh0KGU9BVVRIX0FQUF9TT1VSQ0VfUExBVEZPUk0QARIhCh1PQVVUSF9BUFBfU09VUkNFX09SR19PVkVSUklERRACEhkKFU9BVVRIX0FQUF9TT1VSQ0VfTk9ORRADYgZwcm90bzM", [file_ai_stigmer_agentic_mcpserver_v1_spec, file_ai_stigmer_commons_apiresource_status, file_ai_stigmer_iam_oauthapp_v1_spec, file_google_protobuf_struct, file_google_protobuf_timestamp]);
|
|
12
13
|
/**
|
|
13
14
|
* Describes the message ai.stigmer.agentic.mcpserver.v1.McpServerStatus.
|
|
14
15
|
* Use `create(McpServerStatusSchema)` to create a new message.
|
|
@@ -29,6 +30,11 @@ export const DiscoveredToolSchema = /*@__PURE__*/ messageDesc(file_ai_stigmer_ag
|
|
|
29
30
|
* Use `create(DiscoveredResourceTemplateSchema)` to create a new message.
|
|
30
31
|
*/
|
|
31
32
|
export const DiscoveredResourceTemplateSchema = /*@__PURE__*/ messageDesc(file_ai_stigmer_agentic_mcpserver_v1_status, 3);
|
|
33
|
+
/**
|
|
34
|
+
* Describes the message ai.stigmer.agentic.mcpserver.v1.OAuthStatus.
|
|
35
|
+
* Use `create(OAuthStatusSchema)` to create a new message.
|
|
36
|
+
*/
|
|
37
|
+
export const OAuthStatusSchema = /*@__PURE__*/ messageDesc(file_ai_stigmer_agentic_mcpserver_v1_status, 4);
|
|
32
38
|
/**
|
|
33
39
|
* ValidationState represents the structural validity of an MCP server definition.
|
|
34
40
|
* This is NOT runtime health — it only indicates whether the definition is valid.
|
|
@@ -65,4 +71,45 @@ export var ValidationState;
|
|
|
65
71
|
* Describes the enum ai.stigmer.agentic.mcpserver.v1.ValidationState.
|
|
66
72
|
*/
|
|
67
73
|
export const ValidationStateSchema = /*@__PURE__*/ enumDesc(file_ai_stigmer_agentic_mcpserver_v1_status, 0);
|
|
74
|
+
/**
|
|
75
|
+
* OAuthAppSource identifies where the effective OAuth app for an MCP server
|
|
76
|
+
* was resolved from. Populated at query time by the backend enricher to tell
|
|
77
|
+
* the frontend which credential source is active for the current org context.
|
|
78
|
+
*
|
|
79
|
+
* Used in OAuthStatus.effective_oauth_source (read-only, not persisted).
|
|
80
|
+
*
|
|
81
|
+
* @generated from enum ai.stigmer.agentic.mcpserver.v1.OAuthAppSource
|
|
82
|
+
*/
|
|
83
|
+
export var OAuthAppSource;
|
|
84
|
+
(function (OAuthAppSource) {
|
|
85
|
+
/**
|
|
86
|
+
* Default / unset. The resolution chain has not been evaluated yet.
|
|
87
|
+
*
|
|
88
|
+
* @generated from enum value: OAUTH_APP_SOURCE_UNSPECIFIED = 0;
|
|
89
|
+
*/
|
|
90
|
+
OAuthAppSource[OAuthAppSource["OAUTH_APP_SOURCE_UNSPECIFIED"] = 0] = "OAUTH_APP_SOURCE_UNSPECIFIED";
|
|
91
|
+
/**
|
|
92
|
+
* The platform-default OAuthApp is in use (McpServerAuth.oauth_app_ref).
|
|
93
|
+
*
|
|
94
|
+
* @generated from enum value: OAUTH_APP_SOURCE_PLATFORM = 1;
|
|
95
|
+
*/
|
|
96
|
+
OAuthAppSource[OAuthAppSource["OAUTH_APP_SOURCE_PLATFORM"] = 1] = "OAUTH_APP_SOURCE_PLATFORM";
|
|
97
|
+
/**
|
|
98
|
+
* An org-level BYOA override is in use (OAuthAppOverride binding).
|
|
99
|
+
*
|
|
100
|
+
* @generated from enum value: OAUTH_APP_SOURCE_ORG_OVERRIDE = 2;
|
|
101
|
+
*/
|
|
102
|
+
OAuthAppSource[OAuthAppSource["OAUTH_APP_SOURCE_ORG_OVERRIDE"] = 2] = "OAUTH_APP_SOURCE_ORG_OVERRIDE";
|
|
103
|
+
/**
|
|
104
|
+
* No OAuthApp is available. The MCP server either uses DCR (mcp_oauth)
|
|
105
|
+
* or has no auth block at all.
|
|
106
|
+
*
|
|
107
|
+
* @generated from enum value: OAUTH_APP_SOURCE_NONE = 3;
|
|
108
|
+
*/
|
|
109
|
+
OAuthAppSource[OAuthAppSource["OAUTH_APP_SOURCE_NONE"] = 3] = "OAUTH_APP_SOURCE_NONE";
|
|
110
|
+
})(OAuthAppSource || (OAuthAppSource = {}));
|
|
111
|
+
/**
|
|
112
|
+
* Describes the enum ai.stigmer.agentic.mcpserver.v1.OAuthAppSource.
|
|
113
|
+
*/
|
|
114
|
+
export const OAuthAppSourceSchema = /*@__PURE__*/ enumDesc(file_ai_stigmer_agentic_mcpserver_v1_status, 1);
|
|
68
115
|
//# sourceMappingURL=status_pb.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"status_pb.js","sourceRoot":"","sources":["../../../../../../ai/stigmer/agentic/mcpserver/v1/status_pb.ts"],"names":[],"mappings":"AAAA,gEAAgE;AAChE,6HAA6H;AAC7H,oBAAoB;AAGpB,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,WAAW,EAAE,MAAM,8BAA8B,CAAC;AAE/E,OAAO,EAAE,yCAAyC,EAAE,MAAM,WAAW,CAAC;AAEtE,OAAO,EAAE,0CAA0C,EAAE,MAAM,wCAAwC,CAAC;AAEpG,OAAO,EAAE,2BAA2B,EAAE,8BAA8B,EAAE,MAAM,wBAAwB,CAAC;AAGrG;;GAEG;AACH,MAAM,CAAC,MAAM,2CAA2C,GAAY,aAAa,CAC/E,QAAQ,CAAC,
|
|
1
|
+
{"version":3,"file":"status_pb.js","sourceRoot":"","sources":["../../../../../../ai/stigmer/agentic/mcpserver/v1/status_pb.ts"],"names":[],"mappings":"AAAA,gEAAgE;AAChE,6HAA6H;AAC7H,oBAAoB;AAGpB,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,WAAW,EAAE,MAAM,8BAA8B,CAAC;AAE/E,OAAO,EAAE,yCAAyC,EAAE,MAAM,WAAW,CAAC;AAEtE,OAAO,EAAE,0CAA0C,EAAE,MAAM,wCAAwC,CAAC;AAEpG,OAAO,EAAE,oCAAoC,EAAE,MAAM,kCAAkC,CAAC;AAExF,OAAO,EAAE,2BAA2B,EAAE,8BAA8B,EAAE,MAAM,wBAAwB,CAAC;AAGrG;;GAEG;AACH,MAAM,CAAC,MAAM,2CAA2C,GAAY,aAAa,CAC/E,QAAQ,CAAC,y2DAAy2D,EAAE,CAAC,yCAAyC,EAAE,0CAA0C,EAAE,oCAAoC,EAAE,2BAA2B,EAAE,8BAA8B,CAAC,CAAC,CAAC;AAsFljE;;;GAGG;AACH,MAAM,CAAC,MAAM,qBAAqB,GAAgC,aAAa,CAC7E,WAAW,CAAC,2CAA2C,EAAE,CAAC,CAAC,CAAC;AA6C9D;;;GAGG;AACH,MAAM,CAAC,MAAM,4BAA4B,GAAuC,aAAa,CAC3F,WAAW,CAAC,2CAA2C,EAAE,CAAC,CAAC,CAAC;AAkC9D;;;GAGG;AACH,MAAM,CAAC,MAAM,oBAAoB,GAA+B,aAAa,CAC3E,WAAW,CAAC,2CAA2C,EAAE,CAAC,CAAC,CAAC;AA2C9D;;;GAGG;AACH,MAAM,CAAC,MAAM,gCAAgC,GAA2C,aAAa,CACnG,WAAW,CAAC,2CAA2C,EAAE,CAAC,CAAC,CAAC;AA6D9D;;;GAGG;AACH,MAAM,CAAC,MAAM,iBAAiB,GAA4B,aAAa,CACrE,WAAW,CAAC,2CAA2C,EAAE,CAAC,CAAC,CAAC;AAE9D;;;;;GAKG;AACH,MAAM,CAAN,IAAY,eA0BX;AA1BD,WAAY,eAAe;IACzB;;;;;OAKG;IACH,qGAAgC,CAAA;IAEhC;;;;;;OAMG;IACH,uDAAS,CAAA;IAET;;;;;;OAMG;IACH,2DAAW,CAAA;AACb,CAAC,EA1BW,eAAe,KAAf,eAAe,QA0B1B;AAED;;GAEG;AACH,MAAM,CAAC,MAAM,qBAAqB,GAA6B,aAAa,CAC1E,QAAQ,CAAC,2CAA2C,EAAE,CAAC,CAAC,CAAC;AAE3D;;;;;;;;GAQG;AACH,MAAM,CAAN,IAAY,cA6BX;AA7BD,WAAY,cAAc;IACxB;;;;OAIG;IACH,mGAAgC,CAAA;IAEhC;;;;OAIG;IACH,6FAA6B,CAAA;IAE7B;;;;OAIG;IACH,qGAAiC,CAAA;IAEjC;;;;;OAKG;IACH,qFAAyB,CAAA;AAC3B,CAAC,EA7BW,cAAc,KAAd,cAAc,QA6BzB;AAED;;GAEG;AACH,MAAM,CAAC,MAAM,oBAAoB,GAA4B,aAAa,CACxE,QAAQ,CAAC,2CAA2C,EAAE,CAAC,CAAC,CAAC"}
|
|
@@ -187,7 +187,7 @@ export declare const SearchResponseSchema: GenMessage<SearchResponse>;
|
|
|
187
187
|
*
|
|
188
188
|
* Contains only the fields needed for search result display:
|
|
189
189
|
* - Identity: kind, id, slug, org
|
|
190
|
-
* - Display: name, description, tags
|
|
190
|
+
* - Display: name, description, icon_url, tags
|
|
191
191
|
* - Metadata: visibility, timestamps, relevance score
|
|
192
192
|
*
|
|
193
193
|
* This is not the full resource. To get the complete resource, call the
|
|
@@ -327,6 +327,17 @@ export type SearchResult = Message<"ai.stigmer.search.v1.SearchResult"> & {
|
|
|
327
327
|
* @generated from field: float score = 12;
|
|
328
328
|
*/
|
|
329
329
|
score: number;
|
|
330
|
+
/**
|
|
331
|
+
* Icon URL for display in search result cards and listings.
|
|
332
|
+
*
|
|
333
|
+
* Populated from the resource's spec.icon_url when available.
|
|
334
|
+
* Empty for resource types that don't support icons (e.g., skills).
|
|
335
|
+
*
|
|
336
|
+
* Must be a publicly accessible URL (SVG, PNG, or JPEG).
|
|
337
|
+
*
|
|
338
|
+
* @generated from field: string icon_url = 13;
|
|
339
|
+
*/
|
|
340
|
+
iconUrl: string;
|
|
330
341
|
};
|
|
331
342
|
/**
|
|
332
343
|
* Describes the message ai.stigmer.search.v1.SearchResult.
|
|
@@ -10,7 +10,7 @@ import { file_google_protobuf_timestamp } from "@bufbuild/protobuf/wkt";
|
|
|
10
10
|
/**
|
|
11
11
|
* Describes the file ai/stigmer/search/v1/io.proto.
|
|
12
12
|
*/
|
|
13
|
-
export const file_ai_stigmer_search_v1_io = /*@__PURE__*/ fileDesc("Ch1haS9zdGlnbWVyL3NlYXJjaC92MS9pby5wcm90bxIUYWkuc3RpZ21lci5zZWFyY2gudjEilQIKDVNlYXJjaFJlcXVlc3QSXQoFa2luZHMYASADKA4yPy5haS5zdGlnbWVyLmNvbW1vbnMuYXBpcmVzb3VyY2UuYXBpcmVzb3VyY2VraW5kLkFwaVJlc291cmNlS2luZEINukgKkgEHIgWCAQIQARIXCgVxdWVyeRgCIAEoCUIIukgFcgMY9AMSKgoDb3JnGAMgASgJQh26SBpyGBg/
|
|
13
|
+
export const file_ai_stigmer_search_v1_io = /*@__PURE__*/ fileDesc("Ch1haS9zdGlnbWVyL3NlYXJjaC92MS9pby5wcm90bxIUYWkuc3RpZ21lci5zZWFyY2gudjEilQIKDVNlYXJjaFJlcXVlc3QSXQoFa2luZHMYASADKA4yPy5haS5zdGlnbWVyLmNvbW1vbnMuYXBpcmVzb3VyY2UuYXBpcmVzb3VyY2VraW5kLkFwaVJlc291cmNlS2luZEINukgKkgEHIgWCAQIQARIXCgVxdWVyeRgCIAEoCUIIukgFcgMY9AMSKgoDb3JnGAMgASgJQh26SBpyGBg/MhReJHxeW2Etel1bYS16MC05LV0qJBIWCg5leGNsdWRlX3B1YmxpYxgEIAEoCBIuCgRwYWdlGAUgASgLMiAuYWkuc3RpZ21lci5jb21tb25zLnJwYy5QYWdlSW5mbxIYChBjcm9zc19vcmdfcHVibGljGAYgASgIIvQBCg5TZWFyY2hSZXNwb25zZRIzCgdlbnRyaWVzGAEgAygLMiIuYWkuc3RpZ21lci5zZWFyY2gudjEuU2VhcmNoUmVzdWx0Ek4KDmNvdW50c19ieV9raW5kGAIgAygLMjYuYWkuc3RpZ21lci5zZWFyY2gudjEuU2VhcmNoUmVzcG9uc2UuQ291bnRzQnlLaW5kRW50cnkSEwoLdG90YWxfY291bnQYAyABKAUSEwoLdG90YWxfcGFnZXMYBCABKAUaMwoRQ291bnRzQnlLaW5kRW50cnkSCwoDa2V5GAEgASgJEg0KBXZhbHVlGAIgASgFOgI4ASKZAwoMU2VhcmNoUmVzdWx0Ek0KBGtpbmQYASABKA4yPy5haS5zdGlnbWVyLmNvbW1vbnMuYXBpcmVzb3VyY2UuYXBpcmVzb3VyY2VraW5kLkFwaVJlc291cmNlS2luZBIKCgJpZBgCIAEoCRIMCgRuYW1lGAMgASgJEgwKBHNsdWcYBCABKAkSFgoOcXVhbGlmaWVkX3NsdWcYBSABKAkSCwoDb3JnGAYgASgJEhMKC2Rlc2NyaXB0aW9uGAcgASgJEkkKCnZpc2liaWxpdHkYCCABKA4yNS5haS5zdGlnbWVyLmNvbW1vbnMuYXBpcmVzb3VyY2UuQXBpUmVzb3VyY2VWaXNpYmlsaXR5EgwKBHRhZ3MYCSADKAkSLgoKY3JlYXRlZF9hdBgKIAEoCzIaLmdvb2dsZS5wcm90b2J1Zi5UaW1lc3RhbXASLgoKdXBkYXRlZF9hdBgLIAEoCzIaLmdvb2dsZS5wcm90b2J1Zi5UaW1lc3RhbXASDQoFc2NvcmUYDCABKAISEAoIaWNvbl91cmwYDSABKAliBnByb3RvMw", [file_ai_stigmer_commons_apiresource_apiresourcekind_api_resource_kind, file_ai_stigmer_commons_apiresource_enum, file_ai_stigmer_commons_rpc_pagination, file_buf_validate_validate, file_google_protobuf_timestamp]);
|
|
14
14
|
/**
|
|
15
15
|
* Describes the message ai.stigmer.search.v1.SearchRequest.
|
|
16
16
|
* Use `create(SearchRequestSchema)` to create a new message.
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"io_pb.js","sourceRoot":"","sources":["../../../../../ai/stigmer/search/v1/io_pb.ts"],"names":[],"mappings":"AAAA,gEAAgE;AAChE,mGAAmG;AACnG,oBAAoB;AAGpB,OAAO,EAAE,QAAQ,EAAE,WAAW,EAAE,MAAM,8BAA8B,CAAC;AAErE,OAAO,EAAE,qEAAqE,EAAE,MAAM,gEAAgE,CAAC;AAEvJ,OAAO,EAAE,wCAAwC,EAAE,MAAM,mCAAmC,CAAC;AAE7F,OAAO,EAAE,sCAAsC,EAAE,MAAM,iCAAiC,CAAC;AACzF,OAAO,EAAE,0BAA0B,EAAE,MAAM,sCAAsC,CAAC;AAElF,OAAO,EAAE,8BAA8B,EAAE,MAAM,wBAAwB,CAAC;AAGxE;;GAEG;AACH,MAAM,CAAC,MAAM,4BAA4B,GAAY,aAAa,CAChE,QAAQ,CAAC,
|
|
1
|
+
{"version":3,"file":"io_pb.js","sourceRoot":"","sources":["../../../../../ai/stigmer/search/v1/io_pb.ts"],"names":[],"mappings":"AAAA,gEAAgE;AAChE,mGAAmG;AACnG,oBAAoB;AAGpB,OAAO,EAAE,QAAQ,EAAE,WAAW,EAAE,MAAM,8BAA8B,CAAC;AAErE,OAAO,EAAE,qEAAqE,EAAE,MAAM,gEAAgE,CAAC;AAEvJ,OAAO,EAAE,wCAAwC,EAAE,MAAM,mCAAmC,CAAC;AAE7F,OAAO,EAAE,sCAAsC,EAAE,MAAM,iCAAiC,CAAC;AACzF,OAAO,EAAE,0BAA0B,EAAE,MAAM,sCAAsC,CAAC;AAElF,OAAO,EAAE,8BAA8B,EAAE,MAAM,wBAAwB,CAAC;AAGxE;;GAEG;AACH,MAAM,CAAC,MAAM,4BAA4B,GAAY,aAAa,CAChE,QAAQ,CAAC,wzCAAwzC,EAAE,CAAC,qEAAqE,EAAE,wCAAwC,EAAE,sCAAsC,EAAE,0BAA0B,EAAE,8BAA8B,CAAC,CAAC,CAAC;AAkH5hD;;;GAGG;AACH,MAAM,CAAC,MAAM,mBAAmB,GAA8B,aAAa,CACzE,WAAW,CAAC,4BAA4B,EAAE,CAAC,CAAC,CAAC;AA8D/C;;;GAGG;AACH,MAAM,CAAC,MAAM,oBAAoB,GAA+B,aAAa,CAC3E,WAAW,CAAC,4BAA4B,EAAE,CAAC,CAAC,CAAC;AA4K/C;;;GAGG;AACH,MAAM,CAAC,MAAM,kBAAkB,GAA6B,aAAa,CACvE,WAAW,CAAC,4BAA4B,EAAE,CAAC,CAAC,CAAC"}
|