@stigg/typescript-mcp 0.1.0-beta.3 → 0.1.0-beta.31
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 +19 -0
- package/code-tool-worker.js.map +1 -1
- package/code-tool-worker.mjs +19 -0
- 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 +1356 -244
- package/local-docs-search.js.map +1 -1
- package/local-docs-search.mjs +1356 -244
- 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 +114 -0
- package/methods.js.map +1 -1
- package/methods.mjs +114 -0
- 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 +19 -0
- package/src/local-docs-search.ts +1515 -220
- package/src/methods.ts +114 -0
- 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,42 @@ export const sdkMethods: SdkMethod[] = [
|
|
|
256
256
|
httpMethod: 'post',
|
|
257
257
|
httpPath: '/api/v1/events',
|
|
258
258
|
},
|
|
259
|
+
{
|
|
260
|
+
clientCallName: 'client.v1.events.dataExport.listModels',
|
|
261
|
+
fullyQualifiedName: 'v1.events.dataExport.listModels',
|
|
262
|
+
httpMethod: 'get',
|
|
263
|
+
httpPath: '/api/v1/data-export/models',
|
|
264
|
+
},
|
|
265
|
+
{
|
|
266
|
+
clientCallName: 'client.v1.events.dataExport.mintScopedToken',
|
|
267
|
+
fullyQualifiedName: 'v1.events.dataExport.mintScopedToken',
|
|
268
|
+
httpMethod: 'post',
|
|
269
|
+
httpPath: '/api/v1/data-export/scoped-token',
|
|
270
|
+
},
|
|
271
|
+
{
|
|
272
|
+
clientCallName: 'client.v1.events.dataExport.triggerSync',
|
|
273
|
+
fullyQualifiedName: 'v1.events.dataExport.triggerSync',
|
|
274
|
+
httpMethod: 'post',
|
|
275
|
+
httpPath: '/api/v1/data-export/sync',
|
|
276
|
+
},
|
|
277
|
+
{
|
|
278
|
+
clientCallName: 'client.v1.events.dataExport.destinations.create',
|
|
279
|
+
fullyQualifiedName: 'v1.events.dataExport.destinations.create',
|
|
280
|
+
httpMethod: 'post',
|
|
281
|
+
httpPath: '/api/v1/data-export/destinations',
|
|
282
|
+
},
|
|
283
|
+
{
|
|
284
|
+
clientCallName: 'client.v1.events.dataExport.destinations.delete',
|
|
285
|
+
fullyQualifiedName: 'v1.events.dataExport.destinations.delete',
|
|
286
|
+
httpMethod: 'delete',
|
|
287
|
+
httpPath: '/api/v1/data-export/destinations/{destinationId}',
|
|
288
|
+
},
|
|
289
|
+
{
|
|
290
|
+
clientCallName: 'client.v1.events.beta.customers.retrieveGovernance',
|
|
291
|
+
fullyQualifiedName: 'v1.events.beta.customers.retrieveGovernance',
|
|
292
|
+
httpMethod: 'get',
|
|
293
|
+
httpPath: '/api/v1-beta/customers/{id}/governance',
|
|
294
|
+
},
|
|
259
295
|
{
|
|
260
296
|
clientCallName: 'client.v1.credits.getAutoRecharge',
|
|
261
297
|
fullyQualifiedName: 'v1.credits.getAutoRecharge',
|
|
@@ -400,6 +436,12 @@ export const sdkMethods: SdkMethod[] = [
|
|
|
400
436
|
httpMethod: 'post',
|
|
401
437
|
httpPath: '/api/v1/addons/{id}/draft',
|
|
402
438
|
},
|
|
439
|
+
{
|
|
440
|
+
clientCallName: 'client.v1.addons.listCharges',
|
|
441
|
+
fullyQualifiedName: 'v1.addons.listCharges',
|
|
442
|
+
httpMethod: 'get',
|
|
443
|
+
httpPath: '/api/v1/addons/{id}/charges',
|
|
444
|
+
},
|
|
403
445
|
{
|
|
404
446
|
clientCallName: 'client.v1.addons.publish',
|
|
405
447
|
fullyQualifiedName: 'v1.addons.publish',
|
|
@@ -472,6 +514,18 @@ export const sdkMethods: SdkMethod[] = [
|
|
|
472
514
|
httpMethod: 'post',
|
|
473
515
|
httpPath: '/api/v1/plans/{id}/draft',
|
|
474
516
|
},
|
|
517
|
+
{
|
|
518
|
+
clientCallName: 'client.v1.plans.listCharges',
|
|
519
|
+
fullyQualifiedName: 'v1.plans.listCharges',
|
|
520
|
+
httpMethod: 'get',
|
|
521
|
+
httpPath: '/api/v1/plans/{id}/charges',
|
|
522
|
+
},
|
|
523
|
+
{
|
|
524
|
+
clientCallName: 'client.v1.plans.listOverageCharges',
|
|
525
|
+
fullyQualifiedName: 'v1.plans.listOverageCharges',
|
|
526
|
+
httpMethod: 'get',
|
|
527
|
+
httpPath: '/api/v1/plans/{id}/overage-charges',
|
|
528
|
+
},
|
|
475
529
|
{
|
|
476
530
|
clientCallName: 'client.v1.plans.publish',
|
|
477
531
|
fullyQualifiedName: 'v1.plans.publish',
|
|
@@ -556,6 +610,66 @@ export const sdkMethods: SdkMethod[] = [
|
|
|
556
610
|
httpMethod: 'patch',
|
|
557
611
|
httpPath: '/api/v1/products/{id}',
|
|
558
612
|
},
|
|
613
|
+
{
|
|
614
|
+
clientCallName: 'client.v1Beta.customers.entitlements.check',
|
|
615
|
+
fullyQualifiedName: 'v1Beta.customers.entitlements.check',
|
|
616
|
+
httpMethod: 'get',
|
|
617
|
+
httpPath: '/api/v1-beta/customers/{id}/entitlements/check',
|
|
618
|
+
},
|
|
619
|
+
{
|
|
620
|
+
clientCallName: 'client.v1Beta.customers.entities.retrieve',
|
|
621
|
+
fullyQualifiedName: 'v1Beta.customers.entities.retrieve',
|
|
622
|
+
httpMethod: 'get',
|
|
623
|
+
httpPath: '/api/v1-beta/customers/{id}/entities/{entityId}',
|
|
624
|
+
},
|
|
625
|
+
{
|
|
626
|
+
clientCallName: 'client.v1Beta.customers.entities.list',
|
|
627
|
+
fullyQualifiedName: 'v1Beta.customers.entities.list',
|
|
628
|
+
httpMethod: 'get',
|
|
629
|
+
httpPath: '/api/v1-beta/customers/{id}/entities',
|
|
630
|
+
},
|
|
631
|
+
{
|
|
632
|
+
clientCallName: 'client.v1Beta.customers.entities.archive',
|
|
633
|
+
fullyQualifiedName: 'v1Beta.customers.entities.archive',
|
|
634
|
+
httpMethod: 'post',
|
|
635
|
+
httpPath: '/api/v1-beta/customers/{id}/entities/archive',
|
|
636
|
+
},
|
|
637
|
+
{
|
|
638
|
+
clientCallName: 'client.v1Beta.customers.entities.unarchive',
|
|
639
|
+
fullyQualifiedName: 'v1Beta.customers.entities.unarchive',
|
|
640
|
+
httpMethod: 'post',
|
|
641
|
+
httpPath: '/api/v1-beta/customers/{id}/entities/unarchive',
|
|
642
|
+
},
|
|
643
|
+
{
|
|
644
|
+
clientCallName: 'client.v1Beta.customers.entities.upsert',
|
|
645
|
+
fullyQualifiedName: 'v1Beta.customers.entities.upsert',
|
|
646
|
+
httpMethod: 'put',
|
|
647
|
+
httpPath: '/api/v1-beta/customers/{id}/entities',
|
|
648
|
+
},
|
|
649
|
+
{
|
|
650
|
+
clientCallName: 'client.v1Beta.customers.assignments.list',
|
|
651
|
+
fullyQualifiedName: 'v1Beta.customers.assignments.list',
|
|
652
|
+
httpMethod: 'get',
|
|
653
|
+
httpPath: '/api/v1-beta/customers/{id}/assignments',
|
|
654
|
+
},
|
|
655
|
+
{
|
|
656
|
+
clientCallName: 'client.v1Beta.customers.assignments.upsert',
|
|
657
|
+
fullyQualifiedName: 'v1Beta.customers.assignments.upsert',
|
|
658
|
+
httpMethod: 'put',
|
|
659
|
+
httpPath: '/api/v1-beta/customers/{id}/assignments',
|
|
660
|
+
},
|
|
661
|
+
{
|
|
662
|
+
clientCallName: 'client.v1Beta.entityTypes.list',
|
|
663
|
+
fullyQualifiedName: 'v1Beta.entityTypes.list',
|
|
664
|
+
httpMethod: 'get',
|
|
665
|
+
httpPath: '/api/v1-beta/entity-types',
|
|
666
|
+
},
|
|
667
|
+
{
|
|
668
|
+
clientCallName: 'client.v1Beta.entityTypes.upsert',
|
|
669
|
+
fullyQualifiedName: 'v1Beta.entityTypes.upsert',
|
|
670
|
+
httpMethod: 'put',
|
|
671
|
+
httpPath: '/api/v1-beta/entity-types',
|
|
672
|
+
},
|
|
559
673
|
];
|
|
560
674
|
|
|
561
675
|
function allowedMethodsForCodeTool(options: McpOptions | undefined): SdkMethod[] | undefined {
|
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"}
|