@stigg/typescript-mcp 0.1.0-beta.2 → 0.1.0-beta.4

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
@@ -256,6 +256,12 @@ export const sdkMethods: SdkMethod[] = [
256
256
  httpMethod: 'post',
257
257
  httpPath: '/api/v1/events',
258
258
  },
259
+ {
260
+ clientCallName: 'client.v1.credits.getAutoRecharge',
261
+ fullyQualifiedName: 'v1.credits.getAutoRecharge',
262
+ httpMethod: 'get',
263
+ httpPath: '/api/v1/credits/auto-recharge',
264
+ },
259
265
  {
260
266
  clientCallName: 'client.v1.credits.getUsage',
261
267
  fullyQualifiedName: 'v1.credits.getUsage',
@@ -322,12 +328,6 @@ export const sdkMethods: SdkMethod[] = [
322
328
  httpMethod: 'post',
323
329
  httpPath: '/api/v1/credits/custom-currencies/{currencyId}/unarchive',
324
330
  },
325
- {
326
- clientCallName: 'client.v1.credits.autoRecharge.getAutoRecharge',
327
- fullyQualifiedName: 'v1.credits.autoRecharge.getAutoRecharge',
328
- httpMethod: 'get',
329
- httpPath: '/api/v1/credits/auto-recharge',
330
- },
331
331
  {
332
332
  clientCallName: 'client.v1.features.archiveFeature',
333
333
  fullyQualifiedName: 'v1.features.archiveFeature',
@@ -400,6 +400,12 @@ export const sdkMethods: SdkMethod[] = [
400
400
  httpMethod: 'post',
401
401
  httpPath: '/api/v1/addons/{id}/draft',
402
402
  },
403
+ {
404
+ clientCallName: 'client.v1.addons.listCharges',
405
+ fullyQualifiedName: 'v1.addons.listCharges',
406
+ httpMethod: 'get',
407
+ httpPath: '/api/v1/addons/{id}/charges',
408
+ },
403
409
  {
404
410
  clientCallName: 'client.v1.addons.publish',
405
411
  fullyQualifiedName: 'v1.addons.publish',
@@ -472,6 +478,18 @@ export const sdkMethods: SdkMethod[] = [
472
478
  httpMethod: 'post',
473
479
  httpPath: '/api/v1/plans/{id}/draft',
474
480
  },
481
+ {
482
+ clientCallName: 'client.v1.plans.listCharges',
483
+ fullyQualifiedName: 'v1.plans.listCharges',
484
+ httpMethod: 'get',
485
+ httpPath: '/api/v1/plans/{id}/charges',
486
+ },
487
+ {
488
+ clientCallName: 'client.v1.plans.listOverageCharges',
489
+ fullyQualifiedName: 'v1.plans.listOverageCharges',
490
+ httpMethod: 'get',
491
+ httpPath: '/api/v1/plans/{id}/overage-charges',
492
+ },
475
493
  {
476
494
  clientCallName: 'client.v1.plans.publish',
477
495
  fullyQualifiedName: 'v1.plans.publish',
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.2',
31
+ version: '0.1.0-beta.4',
32
32
  },
33
33
  {
34
34
  instructions: await getInstructions({ stainlessApiKey, customInstructionsPath }),