@metorial-services/shuttle-client 1.0.9 → 1.0.11

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 (2) hide show
  1. package/dist/index.d.ts +149 -0
  2. package/package.json +1 -1
package/dist/index.d.ts CHANGED
@@ -2058,6 +2058,155 @@ declare let rootController: {
2058
2058
  serverConfigId: string;
2059
2059
  serverVersionId: string;
2060
2060
  serverAuthConfigId: string | undefined;
2061
+ waitForCompletion: boolean | undefined;
2062
+ }>, {
2063
+ object: string;
2064
+ id: string;
2065
+ status: ServerDiscoveryStatus;
2066
+ error: PrismaJson.ServerDiscoveryError;
2067
+ warnings: PrismaJson.ServerDiscoveryWarning[];
2068
+ authConfigSchema: Record<string, any> | null;
2069
+ configSchema: Record<string, any> | null;
2070
+ capabilities: {
2071
+ experimental?: {
2072
+ [x: string]: object;
2073
+ } | undefined;
2074
+ logging?: object | undefined;
2075
+ completions?: object | undefined;
2076
+ prompts?: {
2077
+ listChanged?: boolean | undefined;
2078
+ } | undefined;
2079
+ resources?: {
2080
+ subscribe?: boolean | undefined;
2081
+ listChanged?: boolean | undefined;
2082
+ } | undefined;
2083
+ tools?: {
2084
+ listChanged?: boolean | undefined;
2085
+ } | undefined;
2086
+ tasks?: {
2087
+ [x: string]: unknown;
2088
+ list?: object | undefined;
2089
+ cancel?: object | undefined;
2090
+ requests?: {
2091
+ [x: string]: unknown;
2092
+ tools?: {
2093
+ [x: string]: unknown;
2094
+ call?: object | undefined;
2095
+ } | undefined;
2096
+ } | undefined;
2097
+ } | undefined;
2098
+ };
2099
+ instructions: string | null;
2100
+ prompts: {
2101
+ name: string;
2102
+ description?: string | undefined;
2103
+ arguments?: {
2104
+ name: string;
2105
+ description?: string | undefined;
2106
+ required?: boolean | undefined;
2107
+ }[] | undefined;
2108
+ _meta?: {
2109
+ [x: string]: unknown;
2110
+ } | undefined;
2111
+ icons?: {
2112
+ src: string;
2113
+ mimeType?: string | undefined;
2114
+ sizes?: string[] | undefined;
2115
+ theme?: "light" | "dark" | undefined;
2116
+ }[] | undefined;
2117
+ title?: string | undefined;
2118
+ }[];
2119
+ resourceTemplates: {
2120
+ uriTemplate: string;
2121
+ name: string;
2122
+ description?: string | undefined;
2123
+ mimeType?: string | undefined;
2124
+ annotations?: {
2125
+ audience?: ("user" | "assistant")[] | undefined;
2126
+ priority?: number | undefined;
2127
+ lastModified?: string | undefined;
2128
+ } | undefined;
2129
+ _meta?: {
2130
+ [x: string]: unknown;
2131
+ } | undefined;
2132
+ icons?: {
2133
+ src: string;
2134
+ mimeType?: string | undefined;
2135
+ sizes?: string[] | undefined;
2136
+ theme?: "light" | "dark" | undefined;
2137
+ }[] | undefined;
2138
+ title?: string | undefined;
2139
+ }[];
2140
+ tools: {
2141
+ inputSchema: {
2142
+ [x: string]: unknown;
2143
+ type: "object";
2144
+ properties?: {
2145
+ [x: string]: object;
2146
+ } | undefined;
2147
+ required?: string[] | undefined;
2148
+ };
2149
+ name: string;
2150
+ description?: string | undefined;
2151
+ outputSchema?: {
2152
+ [x: string]: unknown;
2153
+ type: "object";
2154
+ properties?: {
2155
+ [x: string]: object;
2156
+ } | undefined;
2157
+ required?: string[] | undefined;
2158
+ } | undefined;
2159
+ annotations?: {
2160
+ title?: string | undefined;
2161
+ readOnlyHint?: boolean | undefined;
2162
+ destructiveHint?: boolean | undefined;
2163
+ idempotentHint?: boolean | undefined;
2164
+ openWorldHint?: boolean | undefined;
2165
+ } | undefined;
2166
+ execution?: {
2167
+ taskSupport?: "optional" | "required" | "forbidden" | undefined;
2168
+ } | undefined;
2169
+ _meta?: {
2170
+ [x: string]: unknown;
2171
+ } | undefined;
2172
+ icons?: {
2173
+ src: string;
2174
+ mimeType?: string | undefined;
2175
+ sizes?: string[] | undefined;
2176
+ theme?: "light" | "dark" | undefined;
2177
+ }[] | undefined;
2178
+ title?: string | undefined;
2179
+ }[];
2180
+ info: {
2181
+ version: string;
2182
+ name: string;
2183
+ websiteUrl?: string | undefined;
2184
+ description?: string | undefined;
2185
+ icons?: {
2186
+ src: string;
2187
+ mimeType?: string | undefined;
2188
+ sizes?: string[] | undefined;
2189
+ theme?: "light" | "dark" | undefined;
2190
+ }[] | undefined;
2191
+ title?: string | undefined;
2192
+ };
2193
+ serverConfigId: string;
2194
+ serverVersionId: string;
2195
+ serverAuthConfigId: string | undefined;
2196
+ createdAt: Date;
2197
+ }, {
2198
+ tenant: {
2199
+ name: string;
2200
+ oid: bigint;
2201
+ id: string;
2202
+ createdAt: Date;
2203
+ identifier: string;
2204
+ functionBayTenantId: string | null;
2205
+ };
2206
+ }>;
2207
+ get: Handler<UndefinedIsOptional<{
2208
+ tenantId: string;
2209
+ serverDiscoveryId: string;
2061
2210
  }>, {
2062
2211
  object: string;
2063
2212
  id: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@metorial-services/shuttle-client",
3
- "version": "1.0.9",
3
+ "version": "1.0.11",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },