@stigg/typescript-mcp 0.1.0-beta.2 → 0.1.0-beta.20
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/auth.d.mts.map +1 -1
- package/auth.d.ts.map +1 -1
- package/code-tool-types.d.mts.map +1 -1
- package/code-tool-types.d.ts.map +1 -1
- package/code-tool-worker.d.mts.map +1 -1
- package/code-tool-worker.d.ts.map +1 -1
- package/code-tool-worker.js +18 -1
- package/code-tool-worker.js.map +1 -1
- package/code-tool-worker.mjs +18 -1
- package/code-tool-worker.mjs.map +1 -1
- package/code-tool.d.mts.map +1 -1
- package/code-tool.d.ts.map +1 -1
- package/code-tool.mjs.map +1 -1
- package/docs-search-tool.d.mts +2 -2
- package/docs-search-tool.d.mts.map +1 -1
- package/docs-search-tool.d.ts +2 -2
- package/docs-search-tool.d.ts.map +1 -1
- package/docs-search-tool.mjs.map +1 -1
- package/http.d.mts.map +1 -1
- package/http.d.ts.map +1 -1
- package/http.mjs.map +1 -1
- package/index.mjs.map +1 -1
- package/instructions.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 +875 -79
- package/local-docs-search.js.map +1 -1
- package/local-docs-search.mjs +875 -79
- package/local-docs-search.mjs.map +1 -1
- package/logger.d.mts.map +1 -1
- package/logger.d.ts.map +1 -1
- package/logger.mjs.map +1 -1
- package/methods.d.mts.map +1 -1
- package/methods.d.ts.map +1 -1
- package/methods.js +108 -6
- package/methods.js.map +1 -1
- package/methods.mjs +108 -6
- package/methods.mjs.map +1 -1
- package/options.mjs.map +1 -1
- package/package.json +2 -2
- package/server.d.mts.map +1 -1
- package/server.d.ts.map +1 -1
- package/server.js +1 -1
- package/server.js.map +1 -1
- package/server.mjs +1 -1
- package/server.mjs.map +1 -1
- package/src/code-tool-worker.ts +18 -1
- package/src/local-docs-search.ts +1051 -90
- package/src/methods.ts +108 -6
- package/src/server.ts +1 -1
- package/stdio.d.mts.map +1 -1
- package/stdio.d.ts.map +1 -1
- package/stdio.mjs.map +1 -1
- package/types.d.mts.map +1 -1
- package/types.d.ts.map +1 -1
package/src/methods.ts
CHANGED
|
@@ -256,6 +256,96 @@ export const sdkMethods: SdkMethod[] = [
|
|
|
256
256
|
httpMethod: 'post',
|
|
257
257
|
httpPath: '/api/v1/events',
|
|
258
258
|
},
|
|
259
|
+
{
|
|
260
|
+
clientCallName: 'client.v1.events.beta.customers.entitlements.check',
|
|
261
|
+
fullyQualifiedName: 'v1.events.beta.customers.entitlements.check',
|
|
262
|
+
httpMethod: 'get',
|
|
263
|
+
httpPath: '/api/v1-beta/customers/{id}/entitlements/check',
|
|
264
|
+
},
|
|
265
|
+
{
|
|
266
|
+
clientCallName: 'client.v1.events.beta.customers.entities.retrieve',
|
|
267
|
+
fullyQualifiedName: 'v1.events.beta.customers.entities.retrieve',
|
|
268
|
+
httpMethod: 'get',
|
|
269
|
+
httpPath: '/api/v1-beta/customers/{id}/entities/{entityId}',
|
|
270
|
+
},
|
|
271
|
+
{
|
|
272
|
+
clientCallName: 'client.v1.events.beta.customers.entities.list',
|
|
273
|
+
fullyQualifiedName: 'v1.events.beta.customers.entities.list',
|
|
274
|
+
httpMethod: 'get',
|
|
275
|
+
httpPath: '/api/v1-beta/customers/{id}/entities',
|
|
276
|
+
},
|
|
277
|
+
{
|
|
278
|
+
clientCallName: 'client.v1.events.beta.customers.entities.archive',
|
|
279
|
+
fullyQualifiedName: 'v1.events.beta.customers.entities.archive',
|
|
280
|
+
httpMethod: 'post',
|
|
281
|
+
httpPath: '/api/v1-beta/customers/{id}/entities/archive',
|
|
282
|
+
},
|
|
283
|
+
{
|
|
284
|
+
clientCallName: 'client.v1.events.beta.customers.entities.unarchive',
|
|
285
|
+
fullyQualifiedName: 'v1.events.beta.customers.entities.unarchive',
|
|
286
|
+
httpMethod: 'post',
|
|
287
|
+
httpPath: '/api/v1-beta/customers/{id}/entities/unarchive',
|
|
288
|
+
},
|
|
289
|
+
{
|
|
290
|
+
clientCallName: 'client.v1.events.beta.customers.entities.upsert',
|
|
291
|
+
fullyQualifiedName: 'v1.events.beta.customers.entities.upsert',
|
|
292
|
+
httpMethod: 'put',
|
|
293
|
+
httpPath: '/api/v1-beta/customers/{id}/entities',
|
|
294
|
+
},
|
|
295
|
+
{
|
|
296
|
+
clientCallName: 'client.v1.events.beta.customers.assignments.list',
|
|
297
|
+
fullyQualifiedName: 'v1.events.beta.customers.assignments.list',
|
|
298
|
+
httpMethod: 'get',
|
|
299
|
+
httpPath: '/api/v1-beta/customers/{id}/assignments',
|
|
300
|
+
},
|
|
301
|
+
{
|
|
302
|
+
clientCallName: 'client.v1.events.beta.customers.assignments.upsert',
|
|
303
|
+
fullyQualifiedName: 'v1.events.beta.customers.assignments.upsert',
|
|
304
|
+
httpMethod: 'put',
|
|
305
|
+
httpPath: '/api/v1-beta/customers/{id}/assignments',
|
|
306
|
+
},
|
|
307
|
+
{
|
|
308
|
+
clientCallName: 'client.v1.events.beta.entityTypes.list',
|
|
309
|
+
fullyQualifiedName: 'v1.events.beta.entityTypes.list',
|
|
310
|
+
httpMethod: 'get',
|
|
311
|
+
httpPath: '/api/v1-beta/entity-types',
|
|
312
|
+
},
|
|
313
|
+
{
|
|
314
|
+
clientCallName: 'client.v1.events.beta.entityTypes.upsert',
|
|
315
|
+
fullyQualifiedName: 'v1.events.beta.entityTypes.upsert',
|
|
316
|
+
httpMethod: 'put',
|
|
317
|
+
httpPath: '/api/v1-beta/entity-types',
|
|
318
|
+
},
|
|
319
|
+
{
|
|
320
|
+
clientCallName: 'client.v1.events.dataExport.mintScopedToken',
|
|
321
|
+
fullyQualifiedName: 'v1.events.dataExport.mintScopedToken',
|
|
322
|
+
httpMethod: 'post',
|
|
323
|
+
httpPath: '/api/v1/data-export/scoped-token',
|
|
324
|
+
},
|
|
325
|
+
{
|
|
326
|
+
clientCallName: 'client.v1.events.dataExport.triggerSync',
|
|
327
|
+
fullyQualifiedName: 'v1.events.dataExport.triggerSync',
|
|
328
|
+
httpMethod: 'post',
|
|
329
|
+
httpPath: '/api/v1/data-export/sync',
|
|
330
|
+
},
|
|
331
|
+
{
|
|
332
|
+
clientCallName: 'client.v1.events.dataExport.destinations.create',
|
|
333
|
+
fullyQualifiedName: 'v1.events.dataExport.destinations.create',
|
|
334
|
+
httpMethod: 'post',
|
|
335
|
+
httpPath: '/api/v1/data-export/destinations',
|
|
336
|
+
},
|
|
337
|
+
{
|
|
338
|
+
clientCallName: 'client.v1.events.dataExport.destinations.delete',
|
|
339
|
+
fullyQualifiedName: 'v1.events.dataExport.destinations.delete',
|
|
340
|
+
httpMethod: 'delete',
|
|
341
|
+
httpPath: '/api/v1/data-export/destinations/{destinationId}',
|
|
342
|
+
},
|
|
343
|
+
{
|
|
344
|
+
clientCallName: 'client.v1.credits.getAutoRecharge',
|
|
345
|
+
fullyQualifiedName: 'v1.credits.getAutoRecharge',
|
|
346
|
+
httpMethod: 'get',
|
|
347
|
+
httpPath: '/api/v1/credits/auto-recharge',
|
|
348
|
+
},
|
|
259
349
|
{
|
|
260
350
|
clientCallName: 'client.v1.credits.getUsage',
|
|
261
351
|
fullyQualifiedName: 'v1.credits.getUsage',
|
|
@@ -322,12 +412,6 @@ export const sdkMethods: SdkMethod[] = [
|
|
|
322
412
|
httpMethod: 'post',
|
|
323
413
|
httpPath: '/api/v1/credits/custom-currencies/{currencyId}/unarchive',
|
|
324
414
|
},
|
|
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
415
|
{
|
|
332
416
|
clientCallName: 'client.v1.features.archiveFeature',
|
|
333
417
|
fullyQualifiedName: 'v1.features.archiveFeature',
|
|
@@ -400,6 +484,12 @@ export const sdkMethods: SdkMethod[] = [
|
|
|
400
484
|
httpMethod: 'post',
|
|
401
485
|
httpPath: '/api/v1/addons/{id}/draft',
|
|
402
486
|
},
|
|
487
|
+
{
|
|
488
|
+
clientCallName: 'client.v1.addons.listCharges',
|
|
489
|
+
fullyQualifiedName: 'v1.addons.listCharges',
|
|
490
|
+
httpMethod: 'get',
|
|
491
|
+
httpPath: '/api/v1/addons/{id}/charges',
|
|
492
|
+
},
|
|
403
493
|
{
|
|
404
494
|
clientCallName: 'client.v1.addons.publish',
|
|
405
495
|
fullyQualifiedName: 'v1.addons.publish',
|
|
@@ -472,6 +562,18 @@ export const sdkMethods: SdkMethod[] = [
|
|
|
472
562
|
httpMethod: 'post',
|
|
473
563
|
httpPath: '/api/v1/plans/{id}/draft',
|
|
474
564
|
},
|
|
565
|
+
{
|
|
566
|
+
clientCallName: 'client.v1.plans.listCharges',
|
|
567
|
+
fullyQualifiedName: 'v1.plans.listCharges',
|
|
568
|
+
httpMethod: 'get',
|
|
569
|
+
httpPath: '/api/v1/plans/{id}/charges',
|
|
570
|
+
},
|
|
571
|
+
{
|
|
572
|
+
clientCallName: 'client.v1.plans.listOverageCharges',
|
|
573
|
+
fullyQualifiedName: 'v1.plans.listOverageCharges',
|
|
574
|
+
httpMethod: 'get',
|
|
575
|
+
httpPath: '/api/v1/plans/{id}/overage-charges',
|
|
576
|
+
},
|
|
475
577
|
{
|
|
476
578
|
clientCallName: 'client.v1.plans.publish',
|
|
477
579
|
fullyQualifiedName: 'v1.plans.publish',
|
package/src/server.ts
CHANGED
package/stdio.d.mts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"stdio.d.mts","sourceRoot":"","sources":["src/stdio.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"stdio.d.mts","sourceRoot":"","sources":["src/stdio.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,UAAU,EAAE,sBAAkB;AAIvC,eAAO,MAAM,iBAAiB,GAAU,YAAY,UAAU,kBAW7D,CAAC"}
|
package/stdio.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"stdio.d.ts","sourceRoot":"","sources":["src/stdio.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"stdio.d.ts","sourceRoot":"","sources":["src/stdio.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,UAAU,EAAE,qBAAkB;AAIvC,eAAO,MAAM,iBAAiB,GAAU,YAAY,UAAU,kBAW7D,CAAC"}
|
package/stdio.mjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"stdio.mjs","sourceRoot":"","sources":["src/stdio.ts"],"names":[],"mappings":"OAAO,EAAE,oBAAoB,EAAE,MAAM,2CAA2C;
|
|
1
|
+
{"version":3,"file":"stdio.mjs","sourceRoot":"","sources":["src/stdio.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,oBAAoB,EAAE,MAAM,2CAA2C,CAAC;AAEjF,OAAO,EAAE,aAAa,EAAE,YAAY,EAAE,qBAAiB;AACvD,OAAO,EAAE,SAAS,EAAE,qBAAiB;AAErC,MAAM,CAAC,MAAM,iBAAiB,GAAG,KAAK,EAAE,UAAsB,EAAE,EAAE;IAChE,MAAM,MAAM,GAAG,MAAM,YAAY,CAAC;QAChC,eAAe,EAAE,UAAU,CAAC,eAAe;QAC3C,sBAAsB,EAAE,UAAU,CAAC,sBAAsB;KAC1D,CAAC,CAAC;IAEH,MAAM,aAAa,CAAC,EAAE,MAAM,EAAE,UAAU,EAAE,eAAe,EAAE,UAAU,CAAC,eAAe,EAAE,CAAC,CAAC;IAEzF,MAAM,SAAS,GAAG,IAAI,oBAAoB,EAAE,CAAC;IAC7C,MAAM,MAAM,CAAC,OAAO,CAAC,SAAS,CAAC,CAAC;IAChC,SAAS,EAAE,CAAC,IAAI,CAAC,6BAA6B,CAAC,CAAC;AAClD,CAAC,CAAC"}
|
package/types.d.mts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"types.d.mts","sourceRoot":"","sources":["src/types.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"types.d.mts","sourceRoot":"","sources":["src/types.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,MAAM,mBAAmB,CAAC;AACtC,OAAO,EAAE,IAAI,EAAE,MAAM,oCAAoC,CAAC;AAE1D,KAAK,gBAAgB,GAAG;IACtB,IAAI,EAAE,MAAM,CAAC;IACb,IAAI,EAAE,MAAM,CAAC;CACd,CAAC;AAEF,KAAK,iBAAiB,GAAG;IACvB,IAAI,EAAE,OAAO,CAAC;IACd,IAAI,EAAE,MAAM,CAAC;IACb,QAAQ,EAAE,MAAM,CAAC;CAClB,CAAC;AAEF,KAAK,iBAAiB,GAAG;IACvB,IAAI,EAAE,OAAO,CAAC;IACd,IAAI,EAAE,MAAM,CAAC;IACb,QAAQ,EAAE,MAAM,CAAC;CAClB,CAAC;AAEF,KAAK,oBAAoB,GAAG;IAC1B,IAAI,EAAE,UAAU,CAAC;IACjB,QAAQ,EACJ;QACE,GAAG,EAAE,MAAM,CAAC;QACZ,QAAQ,EAAE,MAAM,CAAC;QACjB,IAAI,EAAE,MAAM,CAAC;KACd,GACD;QACE,GAAG,EAAE,MAAM,CAAC;QACZ,QAAQ,EAAE,MAAM,CAAC;QACjB,IAAI,EAAE,MAAM,CAAC;KACd,CAAC;CACP,CAAC;AAEF,MAAM,MAAM,YAAY,GAAG,gBAAgB,GAAG,iBAAiB,GAAG,iBAAiB,GAAG,oBAAoB,CAAC;AAE3G,MAAM,MAAM,cAAc,GAAG;IAC3B,OAAO,EAAE,YAAY,EAAE,CAAC;IACxB,OAAO,CAAC,EAAE,OAAO,CAAC;CACnB,CAAC;AAEF,MAAM,MAAM,iBAAiB,GAAG;IAC9B,MAAM,EAAE,KAAK,CAAC;IACd,eAAe,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;IACrC,kBAAkB,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,GAAG,SAAS,CAAC;IACxD,YAAY,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;IAClC,aAAa,CAAC,EAAE;QAAE,IAAI,EAAE,MAAM,CAAC;QAAC,OAAO,EAAE,MAAM,CAAA;KAAE,GAAG,SAAS,CAAC;CAC/D,CAAC;AAEF,MAAM,MAAM,eAAe,GAAG,CAAC,EAC7B,UAAU,EACV,IAAI,GACL,EAAE;IACD,UAAU,EAAE,iBAAiB,CAAC;IAC9B,IAAI,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,GAAG,SAAS,CAAC;CAC3C,KAAK,OAAO,CAAC,cAAc,CAAC,CAAC;AAE9B,wBAAgB,mBAAmB,CAAC,MAAM,EAAE,OAAO,GAAG,cAAc,CASnE;AAED,wBAAsB,qBAAqB,CAAC,QAAQ,EAAE,QAAQ,GAAG,OAAO,CAAC,cAAc,CAAC,CA2BvF;AAED,wBAAgB,aAAa,CAAC,OAAO,EAAE,MAAM,GAAG,cAAc,CAU7D;AAED,MAAM,MAAM,QAAQ,GAAG;IACrB,QAAQ,EAAE,MAAM,CAAC;IACjB,SAAS,EAAE,MAAM,GAAG,OAAO,CAAC;IAC5B,IAAI,EAAE,MAAM,EAAE,CAAC;IACf,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,WAAW,CAAC,EAAE,MAAM,CAAC;CACtB,CAAC;AAEF,MAAM,MAAM,OAAO,GAAG;IACpB,QAAQ,EAAE,QAAQ,CAAC;IACnB,IAAI,EAAE,IAAI,CAAC;IACX,OAAO,EAAE,eAAe,CAAC;CAC1B,CAAC"}
|
package/types.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["src/types.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["src/types.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,MAAM,mBAAmB,CAAC;AACtC,OAAO,EAAE,IAAI,EAAE,MAAM,oCAAoC,CAAC;AAE1D,KAAK,gBAAgB,GAAG;IACtB,IAAI,EAAE,MAAM,CAAC;IACb,IAAI,EAAE,MAAM,CAAC;CACd,CAAC;AAEF,KAAK,iBAAiB,GAAG;IACvB,IAAI,EAAE,OAAO,CAAC;IACd,IAAI,EAAE,MAAM,CAAC;IACb,QAAQ,EAAE,MAAM,CAAC;CAClB,CAAC;AAEF,KAAK,iBAAiB,GAAG;IACvB,IAAI,EAAE,OAAO,CAAC;IACd,IAAI,EAAE,MAAM,CAAC;IACb,QAAQ,EAAE,MAAM,CAAC;CAClB,CAAC;AAEF,KAAK,oBAAoB,GAAG;IAC1B,IAAI,EAAE,UAAU,CAAC;IACjB,QAAQ,EACJ;QACE,GAAG,EAAE,MAAM,CAAC;QACZ,QAAQ,EAAE,MAAM,CAAC;QACjB,IAAI,EAAE,MAAM,CAAC;KACd,GACD;QACE,GAAG,EAAE,MAAM,CAAC;QACZ,QAAQ,EAAE,MAAM,CAAC;QACjB,IAAI,EAAE,MAAM,CAAC;KACd,CAAC;CACP,CAAC;AAEF,MAAM,MAAM,YAAY,GAAG,gBAAgB,GAAG,iBAAiB,GAAG,iBAAiB,GAAG,oBAAoB,CAAC;AAE3G,MAAM,MAAM,cAAc,GAAG;IAC3B,OAAO,EAAE,YAAY,EAAE,CAAC;IACxB,OAAO,CAAC,EAAE,OAAO,CAAC;CACnB,CAAC;AAEF,MAAM,MAAM,iBAAiB,GAAG;IAC9B,MAAM,EAAE,KAAK,CAAC;IACd,eAAe,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;IACrC,kBAAkB,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,GAAG,SAAS,CAAC;IACxD,YAAY,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;IAClC,aAAa,CAAC,EAAE;QAAE,IAAI,EAAE,MAAM,CAAC;QAAC,OAAO,EAAE,MAAM,CAAA;KAAE,GAAG,SAAS,CAAC;CAC/D,CAAC;AAEF,MAAM,MAAM,eAAe,GAAG,CAAC,EAC7B,UAAU,EACV,IAAI,GACL,EAAE;IACD,UAAU,EAAE,iBAAiB,CAAC;IAC9B,IAAI,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,GAAG,SAAS,CAAC;CAC3C,KAAK,OAAO,CAAC,cAAc,CAAC,CAAC;AAE9B,wBAAgB,mBAAmB,CAAC,MAAM,EAAE,OAAO,GAAG,cAAc,CASnE;AAED,wBAAsB,qBAAqB,CAAC,QAAQ,EAAE,QAAQ,GAAG,OAAO,CAAC,cAAc,CAAC,CA2BvF;AAED,wBAAgB,aAAa,CAAC,OAAO,EAAE,MAAM,GAAG,cAAc,CAU7D;AAED,MAAM,MAAM,QAAQ,GAAG;IACrB,QAAQ,EAAE,MAAM,CAAC;IACjB,SAAS,EAAE,MAAM,GAAG,OAAO,CAAC;IAC5B,IAAI,EAAE,MAAM,EAAE,CAAC;IACf,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,WAAW,CAAC,EAAE,MAAM,CAAC;CACtB,CAAC;AAEF,MAAM,MAAM,OAAO,GAAG;IACpB,QAAQ,EAAE,QAAQ,CAAC;IACnB,IAAI,EAAE,IAAI,CAAC;IACX,OAAO,EAAE,eAAe,CAAC;CAC1B,CAAC"}
|