@stigg/typescript-mcp 0.1.0-beta.32 → 0.1.0-beta.34

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/src/methods.ts CHANGED
@@ -280,6 +280,12 @@ export const sdkMethods: SdkMethod[] = [
280
280
  httpMethod: 'post',
281
281
  httpPath: '/api/v1/data-export/destinations',
282
282
  },
283
+ {
284
+ clientCallName: 'client.v1.events.dataExport.destinations.update',
285
+ fullyQualifiedName: 'v1.events.dataExport.destinations.update',
286
+ httpMethod: 'patch',
287
+ httpPath: '/api/v1/data-export/destinations/{destinationId}',
288
+ },
283
289
  {
284
290
  clientCallName: 'client.v1.events.dataExport.destinations.delete',
285
291
  fullyQualifiedName: 'v1.events.dataExport.destinations.delete',
package/src/server.ts CHANGED
@@ -28,7 +28,7 @@ export const newMcpServer = async ({
28
28
  new McpServer(
29
29
  {
30
30
  name: 'stigg_typescript_api',
31
- version: '0.1.0-beta.32',
31
+ version: '0.1.0-beta.34',
32
32
  },
33
33
  {
34
34
  instructions: await getInstructions({ stainlessApiKey, customInstructionsPath }),