MCPcopy Create free account
hub / github.com/bytebase/dbhub / paths

Interface paths

src/api/openapi.d.ts:6–47  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

4 */
5
6export interface paths {
7 "/api/sources": {
8 parameters: {
9 query?: never;
10 header?: never;
11 path?: never;
12 cookie?: never;
13 };
14 /**
15 * List all data sources
16 * @description Returns an array of all configured database data sources
17 */
18 get: operations["listSources"];
19 put?: never;
20 post?: never;
21 delete?: never;
22 options?: never;
23 head?: never;
24 patch?: never;
25 trace?: never;
26 };
27 "/api/sources/{sourceId}": {
28 parameters: {
29 query?: never;
30 header?: never;
31 path?: never;
32 cookie?: never;
33 };
34 /**
35 * Get a specific data source
36 * @description Returns details of a single data source by ID
37 */
38 get: operations["getSource"];
39 put?: never;
40 post?: never;
41 delete?: never;
42 options?: never;
43 head?: never;
44 patch?: never;
45 trace?: never;
46 };
47}
48export type webhooks = Record<string, never>;
49export interface components {
50 schemas: {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected