@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/code-tool-worker.d.mts.map +1 -1
- package/code-tool-worker.d.ts.map +1 -1
- package/code-tool-worker.js +4 -1
- package/code-tool-worker.js.map +1 -1
- package/code-tool-worker.mjs +4 -1
- package/code-tool-worker.mjs.map +1 -1
- package/local-docs-search.d.mts.map +1 -1
- package/local-docs-search.d.ts.map +1 -1
- package/local-docs-search.js +211 -76
- package/local-docs-search.js.map +1 -1
- package/local-docs-search.mjs +211 -76
- package/local-docs-search.mjs.map +1 -1
- package/methods.d.mts.map +1 -1
- package/methods.d.ts.map +1 -1
- package/methods.js +24 -6
- package/methods.js.map +1 -1
- package/methods.mjs +24 -6
- package/methods.mjs.map +1 -1
- package/package.json +2 -2
- package/server.js +1 -1
- package/server.mjs +1 -1
- package/src/code-tool-worker.ts +4 -1
- package/src/local-docs-search.ts +247 -87
- package/src/methods.ts +24 -6
- package/src/server.ts +1 -1
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