@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.
Files changed (28) hide show
  1. package/ai/stigmer/agentic/mcpserver/v1/command_connect.d.ts +71 -11
  2. package/ai/stigmer/agentic/mcpserver/v1/command_connect.js +73 -13
  3. package/ai/stigmer/agentic/mcpserver/v1/command_connect.js.map +1 -1
  4. package/ai/stigmer/agentic/mcpserver/v1/command_pb.d.ts +71 -13
  5. package/ai/stigmer/agentic/mcpserver/v1/command_pb.js +1 -1
  6. package/ai/stigmer/agentic/mcpserver/v1/command_pb.js.map +1 -1
  7. package/ai/stigmer/agentic/mcpserver/v1/io_pb.d.ts +328 -1
  8. package/ai/stigmer/agentic/mcpserver/v1/io_pb.js +97 -2
  9. package/ai/stigmer/agentic/mcpserver/v1/io_pb.js.map +1 -1
  10. package/ai/stigmer/agentic/mcpserver/v1/oauth_pb.d.ts +68 -0
  11. package/ai/stigmer/agentic/mcpserver/v1/oauth_pb.js +6 -1
  12. package/ai/stigmer/agentic/mcpserver/v1/oauth_pb.js.map +1 -1
  13. package/ai/stigmer/agentic/mcpserver/v1/query_connect.d.ts +41 -0
  14. package/ai/stigmer/agentic/mcpserver/v1/query_connect.js +41 -0
  15. package/ai/stigmer/agentic/mcpserver/v1/query_connect.js.map +1 -1
  16. package/ai/stigmer/agentic/mcpserver/v1/query_pb.d.ts +40 -0
  17. package/ai/stigmer/agentic/mcpserver/v1/query_pb.js +2 -1
  18. package/ai/stigmer/agentic/mcpserver/v1/query_pb.js.map +1 -1
  19. package/ai/stigmer/agentic/mcpserver/v1/spec_pb.d.ts +0 -19
  20. package/ai/stigmer/agentic/mcpserver/v1/spec_pb.js +1 -2
  21. package/ai/stigmer/agentic/mcpserver/v1/spec_pb.js.map +1 -1
  22. package/ai/stigmer/agentic/mcpserver/v1/status_pb.d.ts +113 -1
  23. package/ai/stigmer/agentic/mcpserver/v1/status_pb.js +48 -1
  24. package/ai/stigmer/agentic/mcpserver/v1/status_pb.js.map +1 -1
  25. package/ai/stigmer/search/v1/io_pb.d.ts +12 -1
  26. package/ai/stigmer/search/v1/io_pb.js +1 -1
  27. package/ai/stigmer/search/v1/io_pb.js.map +1 -1
  28. package/package.json +1 -1
@@ -206,22 +206,82 @@ export declare const McpServerCommandController: {
206
206
  readonly kind: any;
207
207
  };
208
208
  /**
209
- * Check whether the authenticated user has an active OAuth grant for
210
- * an MCP server in the specified org.
209
+ * Disconnect the authenticated user's OAuth connection for a resource.
211
210
  *
212
- * Returns grant metadata (connected status, token expiry, auth method)
213
- * without exposing any secret token values. The frontend uses this to
214
- * render the correct OAuth state in the MCP server detail page and
215
- * session composer.
211
+ * Tears down the user's personal OAuth connection by deleting the
212
+ * OAuthGrant and its associated managed environment (which holds the
213
+ * access and refresh tokens). The MCP server definition is unchanged —
214
+ * only the caller's credentials are removed.
215
+ *
216
+ * Other users' connections to the same resource are unaffected.
217
+ *
218
+ * Idempotent: returns disconnected=true when a grant was deleted,
219
+ * disconnected=false when no grant existed. Never returns an error
220
+ * for a missing grant.
216
221
  *
217
222
  * @internal
218
- * Authorization: Requires can_view permission on the mcp_server resource.
219
- * The resource_id field contains the MCP server's system-generated ID.
223
+ * Authorization: Requires can_connect permission on the mcp_server resource.
224
+ * Uses the same permission as connect/initiateOAuthConnect if you can
225
+ * establish a connection, you can tear it down.
226
+ *
227
+ * @generated from rpc ai.stigmer.agentic.mcpserver.v1.McpServerCommandController.disconnectOAuth
228
+ */
229
+ readonly disconnectOAuth: {
230
+ readonly name: "disconnectOAuth";
231
+ readonly I: any;
232
+ readonly O: any;
233
+ readonly kind: any;
234
+ };
235
+ /**
236
+ * Create or update an org-level BYOA OAuth app override for a resource.
237
+ *
238
+ * Allows an organization to use its own OAuth app credentials instead of
239
+ * the platform default. The handler clones the platform OAuthApp template
240
+ * (endpoint URLs, scopes) and applies the org-provided client credentials.
241
+ *
242
+ * Idempotent: if an override already exists for this resource + org, the
243
+ * existing OAuthApp is updated with the new credentials.
244
+ *
245
+ * @internal
246
+ * Authorization: Requires can_create_oauth_app permission on the organization.
247
+ * This is an org-admin operation — setting credentials that affect all users
248
+ * in the org who connect to this resource.
249
+ *
250
+ * Errors:
251
+ * - FAILED_PRECONDITION: Resource has no auth block or no oauth_app_ref
252
+ * (BYOA requires a platform template to clone from)
253
+ * - NOT_FOUND: Resource does not exist
254
+ *
255
+ * @generated from rpc ai.stigmer.agentic.mcpserver.v1.McpServerCommandController.setOrgOAuthApp
256
+ */
257
+ readonly setOrgOAuthApp: {
258
+ readonly name: "setOrgOAuthApp";
259
+ readonly I: any;
260
+ readonly O: any;
261
+ readonly kind: any;
262
+ };
263
+ /**
264
+ * Remove an org-level BYOA override for a resource.
265
+ *
266
+ * Deletes the OAuthAppOverride binding and the OAuthApp resource that
267
+ * was created for it. After this, the resolution chain falls back to
268
+ * the platform default.
269
+ *
270
+ * Existing user OAuthGrants that were issued using the org's OAuthApp
271
+ * will fail on next token refresh — those users will need to
272
+ * re-authenticate using the platform default or a new org override.
273
+ *
274
+ * @internal
275
+ * Authorization: Requires can_create_oauth_app permission on the organization.
276
+ * Same gate as setOrgOAuthApp — org-admin authority for credential management.
277
+ *
278
+ * Errors:
279
+ * - NOT_FOUND: No override exists for this resource + org
220
280
  *
221
- * @generated from rpc ai.stigmer.agentic.mcpserver.v1.McpServerCommandController.getOAuthGrantStatus
281
+ * @generated from rpc ai.stigmer.agentic.mcpserver.v1.McpServerCommandController.deleteOrgOAuthApp
222
282
  */
223
- readonly getOAuthGrantStatus: {
224
- readonly name: "getOAuthGrantStatus";
283
+ readonly deleteOrgOAuthApp: {
284
+ readonly name: "deleteOrgOAuthApp";
225
285
  readonly I: any;
226
286
  readonly O: any;
227
287
  readonly kind: any;
@@ -211,24 +211,84 @@ export const McpServerCommandController = {
211
211
  kind: MethodKind.Unary,
212
212
  },
213
213
  /**
214
- * Check whether the authenticated user has an active OAuth grant for
215
- * an MCP server in the specified org.
214
+ * Disconnect the authenticated user's OAuth connection for a resource.
216
215
  *
217
- * Returns grant metadata (connected status, token expiry, auth method)
218
- * without exposing any secret token values. The frontend uses this to
219
- * render the correct OAuth state in the MCP server detail page and
220
- * session composer.
216
+ * Tears down the user's personal OAuth connection by deleting the
217
+ * OAuthGrant and its associated managed environment (which holds the
218
+ * access and refresh tokens). The MCP server definition is unchanged —
219
+ * only the caller's credentials are removed.
220
+ *
221
+ * Other users' connections to the same resource are unaffected.
222
+ *
223
+ * Idempotent: returns disconnected=true when a grant was deleted,
224
+ * disconnected=false when no grant existed. Never returns an error
225
+ * for a missing grant.
221
226
  *
222
227
  * @internal
223
- * Authorization: Requires can_view permission on the mcp_server resource.
224
- * The resource_id field contains the MCP server's system-generated ID.
228
+ * Authorization: Requires can_connect permission on the mcp_server resource.
229
+ * Uses the same permission as connect/initiateOAuthConnect if you can
230
+ * establish a connection, you can tear it down.
231
+ *
232
+ * @generated from rpc ai.stigmer.agentic.mcpserver.v1.McpServerCommandController.disconnectOAuth
233
+ */
234
+ disconnectOAuth: {
235
+ name: "disconnectOAuth",
236
+ I: DisconnectOAuthInput,
237
+ O: DisconnectOAuthOutput,
238
+ kind: MethodKind.Unary,
239
+ },
240
+ /**
241
+ * Create or update an org-level BYOA OAuth app override for a resource.
242
+ *
243
+ * Allows an organization to use its own OAuth app credentials instead of
244
+ * the platform default. The handler clones the platform OAuthApp template
245
+ * (endpoint URLs, scopes) and applies the org-provided client credentials.
246
+ *
247
+ * Idempotent: if an override already exists for this resource + org, the
248
+ * existing OAuthApp is updated with the new credentials.
249
+ *
250
+ * @internal
251
+ * Authorization: Requires can_create_oauth_app permission on the organization.
252
+ * This is an org-admin operation — setting credentials that affect all users
253
+ * in the org who connect to this resource.
254
+ *
255
+ * Errors:
256
+ * - FAILED_PRECONDITION: Resource has no auth block or no oauth_app_ref
257
+ * (BYOA requires a platform template to clone from)
258
+ * - NOT_FOUND: Resource does not exist
259
+ *
260
+ * @generated from rpc ai.stigmer.agentic.mcpserver.v1.McpServerCommandController.setOrgOAuthApp
261
+ */
262
+ setOrgOAuthApp: {
263
+ name: "setOrgOAuthApp",
264
+ I: SetOrgOAuthAppInput,
265
+ O: SetOrgOAuthAppOutput,
266
+ kind: MethodKind.Unary,
267
+ },
268
+ /**
269
+ * Remove an org-level BYOA override for a resource.
270
+ *
271
+ * Deletes the OAuthAppOverride binding and the OAuthApp resource that
272
+ * was created for it. After this, the resolution chain falls back to
273
+ * the platform default.
274
+ *
275
+ * Existing user OAuthGrants that were issued using the org's OAuthApp
276
+ * will fail on next token refresh — those users will need to
277
+ * re-authenticate using the platform default or a new org override.
278
+ *
279
+ * @internal
280
+ * Authorization: Requires can_create_oauth_app permission on the organization.
281
+ * Same gate as setOrgOAuthApp — org-admin authority for credential management.
282
+ *
283
+ * Errors:
284
+ * - NOT_FOUND: No override exists for this resource + org
225
285
  *
226
- * @generated from rpc ai.stigmer.agentic.mcpserver.v1.McpServerCommandController.getOAuthGrantStatus
286
+ * @generated from rpc ai.stigmer.agentic.mcpserver.v1.McpServerCommandController.deleteOrgOAuthApp
227
287
  */
228
- getOAuthGrantStatus: {
229
- name: "getOAuthGrantStatus",
230
- I: GetOAuthGrantStatusInput,
231
- O: GetOAuthGrantStatusOutput,
288
+ deleteOrgOAuthApp: {
289
+ name: "deleteOrgOAuthApp",
290
+ I: DeleteOrgOAuthAppInput,
291
+ O: DeleteOrgOAuthAppOutput,
232
292
  kind: MethodKind.Unary,
233
293
  },
234
294
  }
@@ -1 +1 @@
1
- {"version":3,"file":"command_connect.js","sourceRoot":"","sources":["../../../../../../ai/stigmer/agentic/mcpserver/v1/command_connect.ts"],"names":[],"mappings":"AAAA,wEAAwE;AACxE,8HAA8H;AAC9H,oBAAoB;AACpB,cAAc;AAGd,OAAO,EAAE,UAAU,EAAE,MAAM,oBAAoB,CAAC;AAIhD;;;;;;;;;;;;;GAaG;AACH,MAAM,CAAC,MAAM,0BAA0B,GAAG;IACxC,QAAQ,EAAE,4DAA4D;IACtE,OAAO,EAAE;QACP;;;;;;;;;;;;;WAaG;QACH,KAAK,EAAE;YACL,IAAI,EAAE,OAAO;YACb,CAAC,EAAE,SAAS;YACZ,CAAC,EAAE,SAAS;YACZ,IAAI,EAAE,UAAU,CAAC,KAAK;SACvB;QACD;;;;;;;;;;;;;;WAcG;QACH,MAAM,EAAE;YACN,IAAI,EAAE,QAAQ;YACd,CAAC,EAAE,SAAS;YACZ,CAAC,EAAE,SAAS;YACZ,IAAI,EAAE,UAAU,CAAC,KAAK;SACvB;QACD;;;;;;;;;;;WAWG;QACH,MAAM,EAAE;YACN,IAAI,EAAE,QAAQ;YACd,CAAC,EAAE,SAAS;YACZ,CAAC,EAAE,SAAS;YACZ,IAAI,EAAE,UAAU,CAAC,KAAK;SACvB;QACD;;;;;;;;;;;;;;WAcG;QACH,MAAM,EAAE;YACN,IAAI,EAAE,QAAQ;YACd,CAAC,EAAE,sBAAsB;YACzB,CAAC,EAAE,SAAS;YACZ,IAAI,EAAE,UAAU,CAAC,KAAK;SACvB;QACD;;;;;;;;;;WAUG;QACH,gBAAgB,EAAE;YAChB,IAAI,EAAE,kBAAkB;YACxB,CAAC,EAAE,qBAAqB;YACxB,CAAC,EAAE,SAAS;YACZ,IAAI,EAAE,UAAU,CAAC,KAAK;SACvB;QACD;;;;;;;;;;;;;;;;;;;;;;;;;;WA0BG;QACH,OAAO,EAAE;YACP,IAAI,EAAE,SAAS;YACf,CAAC,EAAE,YAAY;YACf,CAAC,EAAE,SAAS;YACZ,IAAI,EAAE,UAAU,CAAC,KAAK;SACvB;QACD;;;;;;;;;;;;;;;;;;;;;;;;WAwBG;QACH,oBAAoB,EAAE;YACpB,IAAI,EAAE,sBAAsB;YAC5B,CAAC,EAAE,yBAAyB;YAC5B,CAAC,EAAE,0BAA0B;YAC7B,IAAI,EAAE,UAAU,CAAC,KAAK;SACvB;QACD;;;;;;;;;;;;;;;;;;;;;;WAsBG;QACH,oBAAoB,EAAE;YACpB,IAAI,EAAE,sBAAsB;YAC5B,CAAC,EAAE,yBAAyB;YAC5B,CAAC,EAAE,0BAA0B;YAC7B,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;KACF;CACO,CAAC"}
1
+ {"version":3,"file":"command_connect.js","sourceRoot":"","sources":["../../../../../../ai/stigmer/agentic/mcpserver/v1/command_connect.ts"],"names":[],"mappings":"AAAA,wEAAwE;AACxE,8HAA8H;AAC9H,oBAAoB;AACpB,cAAc;AAGd,OAAO,EAAE,UAAU,EAAE,MAAM,oBAAoB,CAAC;AAIhD;;;;;;;;;;;;;GAaG;AACH,MAAM,CAAC,MAAM,0BAA0B,GAAG;IACxC,QAAQ,EAAE,4DAA4D;IACtE,OAAO,EAAE;QACP;;;;;;;;;;;;;WAaG;QACH,KAAK,EAAE;YACL,IAAI,EAAE,OAAO;YACb,CAAC,EAAE,SAAS;YACZ,CAAC,EAAE,SAAS;YACZ,IAAI,EAAE,UAAU,CAAC,KAAK;SACvB;QACD;;;;;;;;;;;;;;WAcG;QACH,MAAM,EAAE;YACN,IAAI,EAAE,QAAQ;YACd,CAAC,EAAE,SAAS;YACZ,CAAC,EAAE,SAAS;YACZ,IAAI,EAAE,UAAU,CAAC,KAAK;SACvB;QACD;;;;;;;;;;;WAWG;QACH,MAAM,EAAE;YACN,IAAI,EAAE,QAAQ;YACd,CAAC,EAAE,SAAS;YACZ,CAAC,EAAE,SAAS;YACZ,IAAI,EAAE,UAAU,CAAC,KAAK;SACvB;QACD;;;;;;;;;;;;;;WAcG;QACH,MAAM,EAAE;YACN,IAAI,EAAE,QAAQ;YACd,CAAC,EAAE,sBAAsB;YACzB,CAAC,EAAE,SAAS;YACZ,IAAI,EAAE,UAAU,CAAC,KAAK;SACvB;QACD;;;;;;;;;;WAUG;QACH,gBAAgB,EAAE;YAChB,IAAI,EAAE,kBAAkB;YACxB,CAAC,EAAE,qBAAqB;YACxB,CAAC,EAAE,SAAS;YACZ,IAAI,EAAE,UAAU,CAAC,KAAK;SACvB;QACD;;;;;;;;;;;;;;;;;;;;;;;;;;WA0BG;QACH,OAAO,EAAE;YACP,IAAI,EAAE,SAAS;YACf,CAAC,EAAE,YAAY;YACf,CAAC,EAAE,SAAS;YACZ,IAAI,EAAE,UAAU,CAAC,KAAK;SACvB;QACD;;;;;;;;;;;;;;;;;;;;;;;;WAwBG;QACH,oBAAoB,EAAE;YACpB,IAAI,EAAE,sBAAsB;YAC5B,CAAC,EAAE,yBAAyB;YAC5B,CAAC,EAAE,0BAA0B;YAC7B,IAAI,EAAE,UAAU,CAAC,KAAK;SACvB;QACD;;;;;;;;;;;;;;;;;;;;;;WAsBG;QACH,oBAAoB,EAAE;YACpB,IAAI,EAAE,sBAAsB;YAC5B,CAAC,EAAE,yBAAyB;YAC5B,CAAC,EAAE,0BAA0B;YAC7B,IAAI,EAAE,UAAU,CAAC,KAAK;SACvB;QACD;;;;;;;;;;;;;;;;;;;;WAoBG;QACH,eAAe,EAAE;YACf,IAAI,EAAE,iBAAiB;YACvB,CAAC,EAAE,oBAAoB;YACvB,CAAC,EAAE,qBAAqB;YACxB,IAAI,EAAE,UAAU,CAAC,KAAK;SACvB;QACD;;;;;;;;;;;;;;;;;;;;;WAqBG;QACH,cAAc,EAAE;YACd,IAAI,EAAE,gBAAgB;YACtB,CAAC,EAAE,mBAAmB;YACtB,CAAC,EAAE,oBAAoB;YACvB,IAAI,EAAE,UAAU,CAAC,KAAK;SACvB;QACD;;;;;;;;;;;;;;;;;;;WAmBG;QACH,iBAAiB,EAAE;YACjB,IAAI,EAAE,mBAAmB;YACzB,CAAC,EAAE,sBAAsB;YACzB,CAAC,EAAE,uBAAuB;YAC1B,IAAI,EAAE,UAAU,CAAC,KAAK;SACvB;KACF;CACO,CAAC"}
@@ -1,6 +1,6 @@
1
1
  import type { GenFile, GenService } from "@bufbuild/protobuf/codegenv1";
2
2
  import type { McpServerSchema } from "./api_pb";
3
- import type { CompleteOAuthConnectInputSchema, CompleteOAuthConnectOutputSchema, ConnectInputSchema, GetOAuthGrantStatusInputSchema, GetOAuthGrantStatusOutputSchema, InitiateOAuthConnectInputSchema, InitiateOAuthConnectOutputSchema } from "./io_pb";
3
+ import type { CompleteOAuthConnectInputSchema, CompleteOAuthConnectOutputSchema, ConnectInputSchema, DeleteOrgOAuthAppInputSchema, DeleteOrgOAuthAppOutputSchema, DisconnectOAuthInputSchema, DisconnectOAuthOutputSchema, InitiateOAuthConnectInputSchema, InitiateOAuthConnectOutputSchema, SetOrgOAuthAppInputSchema, SetOrgOAuthAppOutputSchema } from "./io_pb";
4
4
  import type { ApiResourceDeleteInputSchema, UpdateVisibilityInputSchema } from "../../../commons/apiresource/io_pb";
5
5
  /**
6
6
  * Describes the file ai/stigmer/agentic/mcpserver/v1/command.proto.
@@ -204,23 +204,81 @@ export declare const McpServerCommandController: GenService<{
204
204
  output: typeof CompleteOAuthConnectOutputSchema;
205
205
  };
206
206
  /**
207
- * Check whether the authenticated user has an active OAuth grant for
208
- * an MCP server in the specified org.
207
+ * Disconnect the authenticated user's OAuth connection for a resource.
209
208
  *
210
- * Returns grant metadata (connected status, token expiry, auth method)
211
- * without exposing any secret token values. The frontend uses this to
212
- * render the correct OAuth state in the MCP server detail page and
213
- * session composer.
209
+ * Tears down the user's personal OAuth connection by deleting the
210
+ * OAuthGrant and its associated managed environment (which holds the
211
+ * access and refresh tokens). The MCP server definition is unchanged —
212
+ * only the caller's credentials are removed.
213
+ *
214
+ * Other users' connections to the same resource are unaffected.
215
+ *
216
+ * Idempotent: returns disconnected=true when a grant was deleted,
217
+ * disconnected=false when no grant existed. Never returns an error
218
+ * for a missing grant.
214
219
  *
215
220
  * @internal
216
- * Authorization: Requires can_view permission on the mcp_server resource.
217
- * The resource_id field contains the MCP server's system-generated ID.
221
+ * Authorization: Requires can_connect permission on the mcp_server resource.
222
+ * Uses the same permission as connect/initiateOAuthConnect if you can
223
+ * establish a connection, you can tear it down.
224
+ *
225
+ * @generated from rpc ai.stigmer.agentic.mcpserver.v1.McpServerCommandController.disconnectOAuth
226
+ */
227
+ disconnectOAuth: {
228
+ methodKind: "unary";
229
+ input: typeof DisconnectOAuthInputSchema;
230
+ output: typeof DisconnectOAuthOutputSchema;
231
+ };
232
+ /**
233
+ * Create or update an org-level BYOA OAuth app override for a resource.
234
+ *
235
+ * Allows an organization to use its own OAuth app credentials instead of
236
+ * the platform default. The handler clones the platform OAuthApp template
237
+ * (endpoint URLs, scopes) and applies the org-provided client credentials.
238
+ *
239
+ * Idempotent: if an override already exists for this resource + org, the
240
+ * existing OAuthApp is updated with the new credentials.
241
+ *
242
+ * @internal
243
+ * Authorization: Requires can_create_oauth_app permission on the organization.
244
+ * This is an org-admin operation — setting credentials that affect all users
245
+ * in the org who connect to this resource.
246
+ *
247
+ * Errors:
248
+ * - FAILED_PRECONDITION: Resource has no auth block or no oauth_app_ref
249
+ * (BYOA requires a platform template to clone from)
250
+ * - NOT_FOUND: Resource does not exist
251
+ *
252
+ * @generated from rpc ai.stigmer.agentic.mcpserver.v1.McpServerCommandController.setOrgOAuthApp
253
+ */
254
+ setOrgOAuthApp: {
255
+ methodKind: "unary";
256
+ input: typeof SetOrgOAuthAppInputSchema;
257
+ output: typeof SetOrgOAuthAppOutputSchema;
258
+ };
259
+ /**
260
+ * Remove an org-level BYOA override for a resource.
261
+ *
262
+ * Deletes the OAuthAppOverride binding and the OAuthApp resource that
263
+ * was created for it. After this, the resolution chain falls back to
264
+ * the platform default.
265
+ *
266
+ * Existing user OAuthGrants that were issued using the org's OAuthApp
267
+ * will fail on next token refresh — those users will need to
268
+ * re-authenticate using the platform default or a new org override.
269
+ *
270
+ * @internal
271
+ * Authorization: Requires can_create_oauth_app permission on the organization.
272
+ * Same gate as setOrgOAuthApp — org-admin authority for credential management.
273
+ *
274
+ * Errors:
275
+ * - NOT_FOUND: No override exists for this resource + org
218
276
  *
219
- * @generated from rpc ai.stigmer.agentic.mcpserver.v1.McpServerCommandController.getOAuthGrantStatus
277
+ * @generated from rpc ai.stigmer.agentic.mcpserver.v1.McpServerCommandController.deleteOrgOAuthApp
220
278
  */
221
- getOAuthGrantStatus: {
279
+ deleteOrgOAuthApp: {
222
280
  methodKind: "unary";
223
- input: typeof GetOAuthGrantStatusInputSchema;
224
- output: typeof GetOAuthGrantStatusOutputSchema;
281
+ input: typeof DeleteOrgOAuthAppInputSchema;
282
+ output: typeof DeleteOrgOAuthAppOutputSchema;
225
283
  };
226
284
  }>;
@@ -10,7 +10,7 @@ import { file_ai_stigmer_commons_rpc_method_options } from "../../../commons/rpc
10
10
  /**
11
11
  * Describes the file ai/stigmer/agentic/mcpserver/v1/command.proto.
12
12
  */
13
- export const file_ai_stigmer_agentic_mcpserver_v1_command = /*@__PURE__*/ fileDesc("Ci1haS9zdGlnbWVyL2FnZW50aWMvbWNwc2VydmVyL3YxL2NvbW1hbmQucHJvdG8SH2FpLnN0aWdtZXIuYWdlbnRpYy5tY3BzZXJ2ZXIudjEysQwKGk1jcFNlcnZlckNvbW1hbmRDb250cm9sbGVyEl8KBWFwcGx5EiouYWkuc3RpZ21lci5hZ2VudGljLm1jcHNlcnZlci52MS5NY3BTZXJ2ZXIaKi5haS5zdGlnbWVyLmFnZW50aWMubWNwc2VydmVyLnYxLk1jcFNlcnZlchJmCgZjcmVhdGUSKi5haS5zdGlnbWVyLmFnZW50aWMubWNwc2VydmVyLnYxLk1jcFNlcnZlchoqLmFpLnN0aWdtZXIuYWdlbnRpYy5tY3BzZXJ2ZXIudjEuTWNwU2VydmVyIgTQuBgBEpoBCgZ1cGRhdGUSKi5haS5zdGlnbWVyLmFnZW50aWMubWNwc2VydmVyLnYxLk1jcFNlcnZlchoqLmFpLnN0aWdtZXIuYWdlbnRpYy5tY3BzZXJ2ZXIudjEuTWNwU2VydmVyIjjCuBg0CAIQLCILbWV0YWRhdGEuaWQqIXVuYXV0aG9yaXplZCB0byB1cGRhdGUgbWNwIHNlcnZlchKmAQoGZGVsZXRlEjYuYWkuc3RpZ21lci5jb21tb25zLmFwaXJlc291cmNlLkFwaVJlc291cmNlRGVsZXRlSW5wdXQaKi5haS5zdGlnbWVyLmFnZW50aWMubWNwc2VydmVyLnYxLk1jcFNlcnZlciI4wrgYNAgDECwiC3Jlc291cmNlX2lkKiF1bmF1dGhvcml6ZWQgdG8gZGVsZXRlIG1jcCBzZXJ2ZXISugEKEHVwZGF0ZVZpc2liaWxpdHkSNS5haS5zdGlnbWVyLmNvbW1vbnMuYXBpcmVzb3VyY2UuVXBkYXRlVmlzaWJpbGl0eUlucHV0GiouYWkuc3RpZ21lci5hZ2VudGljLm1jcHNlcnZlci52MS5NY3BTZXJ2ZXIiQ8K4GD8IAhAsIgtyZXNvdXJjZV9pZCosdW5hdXRob3JpemVkIHRvIHVwZGF0ZSBtY3Agc2VydmVyIHZpc2liaWxpdHkSpAEKB2Nvbm5lY3QSLS5haS5zdGlnbWVyLmFnZW50aWMubWNwc2VydmVyLnYxLkNvbm5lY3RJbnB1dBoqLmFpLnN0aWdtZXIuYWdlbnRpYy5tY3BzZXJ2ZXIudjEuTWNwU2VydmVyIj7CuBg6CBYQLCINbWNwX3NlcnZlcl9pZColdW5hdXRob3JpemVkIHRvIGNvbm5lY3QgdG8gbWNwIHNlcnZlchLfAQoUaW5pdGlhdGVPQXV0aENvbm5lY3QSOi5haS5zdGlnbWVyLmFnZW50aWMubWNwc2VydmVyLnYxLkluaXRpYXRlT0F1dGhDb25uZWN0SW5wdXQaOy5haS5zdGlnbWVyLmFnZW50aWMubWNwc2VydmVyLnYxLkluaXRpYXRlT0F1dGhDb25uZWN0T3V0cHV0Ik7CuBhKCBYQLCINbWNwX3NlcnZlcl9pZCo1dW5hdXRob3JpemVkIHRvIGluaXRpYXRlIG9hdXRoIGNvbm5lY3QgZm9yIG1jcCBzZXJ2ZXIS3wEKFGNvbXBsZXRlT0F1dGhDb25uZWN0EjouYWkuc3RpZ21lci5hZ2VudGljLm1jcHNlcnZlci52MS5Db21wbGV0ZU9BdXRoQ29ubmVjdElucHV0GjsuYWkuc3RpZ21lci5hZ2VudGljLm1jcHNlcnZlci52MS5Db21wbGV0ZU9BdXRoQ29ubmVjdE91dHB1dCJOwrgYSggWECwiDW1jcF9zZXJ2ZXJfaWQqNXVuYXV0aG9yaXplZCB0byBjb21wbGV0ZSBvYXV0aCBjb25uZWN0IGZvciBtY3Agc2VydmVyEtUBChNnZXRPQXV0aEdyYW50U3RhdHVzEjkuYWkuc3RpZ21lci5hZ2VudGljLm1jcHNlcnZlci52MS5HZXRPQXV0aEdyYW50U3RhdHVzSW5wdXQaOi5haS5zdGlnbWVyLmFnZW50aWMubWNwc2VydmVyLnYxLkdldE9BdXRoR3JhbnRTdGF0dXNPdXRwdXQiR8K4GEMIARAsIgtyZXNvdXJjZV9pZCowdW5hdXRob3JpemVkIHRvIHZpZXcgb2F1dGggc3RhdHVzIGZvciBtY3Agc2VydmVyGgSg/yssYgZwcm90bzM", [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
+ export const file_ai_stigmer_agentic_mcpserver_v1_command = /*@__PURE__*/ fileDesc("Ci1haS9zdGlnbWVyL2FnZW50aWMvbWNwc2VydmVyL3YxL2NvbW1hbmQucHJvdG8SH2FpLnN0aWdtZXIuYWdlbnRpYy5tY3BzZXJ2ZXIudjEypg8KGk1jcFNlcnZlckNvbW1hbmRDb250cm9sbGVyEl8KBWFwcGx5EiouYWkuc3RpZ21lci5hZ2VudGljLm1jcHNlcnZlci52MS5NY3BTZXJ2ZXIaKi5haS5zdGlnbWVyLmFnZW50aWMubWNwc2VydmVyLnYxLk1jcFNlcnZlchJmCgZjcmVhdGUSKi5haS5zdGlnbWVyLmFnZW50aWMubWNwc2VydmVyLnYxLk1jcFNlcnZlchoqLmFpLnN0aWdtZXIuYWdlbnRpYy5tY3BzZXJ2ZXIudjEuTWNwU2VydmVyIgTQuBgBEpoBCgZ1cGRhdGUSKi5haS5zdGlnbWVyLmFnZW50aWMubWNwc2VydmVyLnYxLk1jcFNlcnZlchoqLmFpLnN0aWdtZXIuYWdlbnRpYy5tY3BzZXJ2ZXIudjEuTWNwU2VydmVyIjjCuBg0CAIQLCILbWV0YWRhdGEuaWQqIXVuYXV0aG9yaXplZCB0byB1cGRhdGUgbWNwIHNlcnZlchKmAQoGZGVsZXRlEjYuYWkuc3RpZ21lci5jb21tb25zLmFwaXJlc291cmNlLkFwaVJlc291cmNlRGVsZXRlSW5wdXQaKi5haS5zdGlnbWVyLmFnZW50aWMubWNwc2VydmVyLnYxLk1jcFNlcnZlciI4wrgYNAgDECwiC3Jlc291cmNlX2lkKiF1bmF1dGhvcml6ZWQgdG8gZGVsZXRlIG1jcCBzZXJ2ZXISugEKEHVwZGF0ZVZpc2liaWxpdHkSNS5haS5zdGlnbWVyLmNvbW1vbnMuYXBpcmVzb3VyY2UuVXBkYXRlVmlzaWJpbGl0eUlucHV0GiouYWkuc3RpZ21lci5hZ2VudGljLm1jcHNlcnZlci52MS5NY3BTZXJ2ZXIiQ8K4GD8IAhAsIgtyZXNvdXJjZV9pZCosdW5hdXRob3JpemVkIHRvIHVwZGF0ZSBtY3Agc2VydmVyIHZpc2liaWxpdHkSpAEKB2Nvbm5lY3QSLS5haS5zdGlnbWVyLmFnZW50aWMubWNwc2VydmVyLnYxLkNvbm5lY3RJbnB1dBoqLmFpLnN0aWdtZXIuYWdlbnRpYy5tY3BzZXJ2ZXIudjEuTWNwU2VydmVyIj7CuBg6CBYQLCINbWNwX3NlcnZlcl9pZColdW5hdXRob3JpemVkIHRvIGNvbm5lY3QgdG8gbWNwIHNlcnZlchLfAQoUaW5pdGlhdGVPQXV0aENvbm5lY3QSOi5haS5zdGlnbWVyLmFnZW50aWMubWNwc2VydmVyLnYxLkluaXRpYXRlT0F1dGhDb25uZWN0SW5wdXQaOy5haS5zdGlnbWVyLmFnZW50aWMubWNwc2VydmVyLnYxLkluaXRpYXRlT0F1dGhDb25uZWN0T3V0cHV0Ik7CuBhKCBYQLCINbWNwX3NlcnZlcl9pZCo1dW5hdXRob3JpemVkIHRvIGluaXRpYXRlIG9hdXRoIGNvbm5lY3QgZm9yIG1jcCBzZXJ2ZXIS3wEKFGNvbXBsZXRlT0F1dGhDb25uZWN0EjouYWkuc3RpZ21lci5hZ2VudGljLm1jcHNlcnZlci52MS5Db21wbGV0ZU9BdXRoQ29ubmVjdElucHV0GjsuYWkuc3RpZ21lci5hZ2VudGljLm1jcHNlcnZlci52MS5Db21wbGV0ZU9BdXRoQ29ubmVjdE91dHB1dCJOwrgYSggWECwiDW1jcF9zZXJ2ZXJfaWQqNXVuYXV0aG9yaXplZCB0byBjb21wbGV0ZSBvYXV0aCBjb25uZWN0IGZvciBtY3Agc2VydmVyEsgBCg9kaXNjb25uZWN0T0F1dGgSNS5haS5zdGlnbWVyLmFnZW50aWMubWNwc2VydmVyLnYxLkRpc2Nvbm5lY3RPQXV0aElucHV0GjYuYWkuc3RpZ21lci5hZ2VudGljLm1jcHNlcnZlci52MS5EaXNjb25uZWN0T0F1dGhPdXRwdXQiRsK4GEIIFhAsIgtyZXNvdXJjZV9pZCovdW5hdXRob3JpemVkIHRvIGRpc2Nvbm5lY3Qgb2F1dGggZm9yIG1jcCBzZXJ2ZXISuAEKDnNldE9yZ09BdXRoQXBwEjQuYWkuc3RpZ21lci5hZ2VudGljLm1jcHNlcnZlci52MS5TZXRPcmdPQXV0aEFwcElucHV0GjUuYWkuc3RpZ21lci5hZ2VudGljLm1jcHNlcnZlci52MS5TZXRPcmdPQXV0aEFwcE91dHB1dCI5wrgYNQgXEB4iA29yZyoqdW5hdXRob3JpemVkIHRvIHNldCBvcmcgb2F1dGggYXBwIG92ZXJyaWRlEsQBChFkZWxldGVPcmdPQXV0aEFwcBI3LmFpLnN0aWdtZXIuYWdlbnRpYy5tY3BzZXJ2ZXIudjEuRGVsZXRlT3JnT0F1dGhBcHBJbnB1dBo4LmFpLnN0aWdtZXIuYWdlbnRpYy5tY3BzZXJ2ZXIudjEuRGVsZXRlT3JnT0F1dGhBcHBPdXRwdXQiPMK4GDgIFxAeIgNvcmcqLXVuYXV0aG9yaXplZCB0byBkZWxldGUgb3JnIG9hdXRoIGFwcCBvdmVycmlkZRoEoP8rLGIGcHJvdG8z", [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]);
14
14
  /**
15
15
  * McpServerCommandController provides write operations for MCP server resources.
16
16
  *
@@ -1 +1 @@
1
- {"version":3,"file":"command_pb.js","sourceRoot":"","sources":["../../../../../../ai/stigmer/agentic/mcpserver/v1/command_pb.ts"],"names":[],"mappings":"AAAA,gEAAgE;AAChE,8HAA8H;AAC9H,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,4CAA4C,GAAY,aAAa,CAChF,QAAQ,CAAC,6rEAA6rE,EAAE,CAAC,wCAAwC,EAAE,uCAAuC,EAAE,sCAAsC,EAAE,uDAAuD,EAAE,0CAA0C,CAAC,CAAC,CAAC;AAE56E;;;;;;;;;;;;;GAaG;AACH,MAAM,CAAC,MAAM,0BAA0B,GA2MlC,aAAa,CAChB,WAAW,CAAC,4CAA4C,EAAE,CAAC,CAAC,CAAC"}
1
+ {"version":3,"file":"command_pb.js","sourceRoot":"","sources":["../../../../../../ai/stigmer/agentic/mcpserver/v1/command_pb.ts"],"names":[],"mappings":"AAAA,gEAAgE;AAChE,8HAA8H;AAC9H,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,4CAA4C,GAAY,aAAa,CAChF,QAAQ,CAAC,8qFAA8qF,EAAE,CAAC,wCAAwC,EAAE,uCAAuC,EAAE,sCAAsC,EAAE,uDAAuD,EAAE,0CAA0C,CAAC,CAAC,CAAC;AAE75F;;;;;;;;;;;;;GAaG;AACH,MAAM,CAAC,MAAM,0BAA0B,GAqQlC,aAAa,CAChB,WAAW,CAAC,4CAA4C,EAAE,CAAC,CAAC,CAAC"}