@stigg/typescript-mcp 0.1.0-beta.1 → 0.1.0-beta.10

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.
Files changed (55) hide show
  1. package/auth.d.mts.map +1 -1
  2. package/auth.d.ts.map +1 -1
  3. package/code-tool-types.d.mts.map +1 -1
  4. package/code-tool-types.d.ts.map +1 -1
  5. package/code-tool-worker.d.mts.map +1 -1
  6. package/code-tool-worker.d.ts.map +1 -1
  7. package/code-tool-worker.js +25 -12
  8. package/code-tool-worker.js.map +1 -1
  9. package/code-tool-worker.mjs +25 -12
  10. package/code-tool-worker.mjs.map +1 -1
  11. package/code-tool.d.mts.map +1 -1
  12. package/code-tool.d.ts.map +1 -1
  13. package/code-tool.mjs.map +1 -1
  14. package/docs-search-tool.d.mts +2 -2
  15. package/docs-search-tool.d.mts.map +1 -1
  16. package/docs-search-tool.d.ts +2 -2
  17. package/docs-search-tool.d.ts.map +1 -1
  18. package/docs-search-tool.mjs.map +1 -1
  19. package/http.d.mts.map +1 -1
  20. package/http.d.ts.map +1 -1
  21. package/http.mjs.map +1 -1
  22. package/index.mjs.map +1 -1
  23. package/instructions.mjs.map +1 -1
  24. package/local-docs-search.d.mts.map +1 -1
  25. package/local-docs-search.d.ts.map +1 -1
  26. package/local-docs-search.js +807 -196
  27. package/local-docs-search.js.map +1 -1
  28. package/local-docs-search.mjs +807 -196
  29. package/local-docs-search.mjs.map +1 -1
  30. package/logger.d.mts.map +1 -1
  31. package/logger.d.ts.map +1 -1
  32. package/logger.mjs.map +1 -1
  33. package/methods.d.mts.map +1 -1
  34. package/methods.d.ts.map +1 -1
  35. package/methods.js +102 -24
  36. package/methods.js.map +1 -1
  37. package/methods.mjs +102 -24
  38. package/methods.mjs.map +1 -1
  39. package/options.mjs.map +1 -1
  40. package/package.json +2 -2
  41. package/server.d.mts.map +1 -1
  42. package/server.d.ts.map +1 -1
  43. package/server.js +1 -1
  44. package/server.js.map +1 -1
  45. package/server.mjs +1 -1
  46. package/server.mjs.map +1 -1
  47. package/src/code-tool-worker.ts +25 -12
  48. package/src/local-docs-search.ts +931 -199
  49. package/src/methods.ts +102 -24
  50. package/src/server.ts +1 -1
  51. package/stdio.d.mts.map +1 -1
  52. package/stdio.d.ts.map +1 -1
  53. package/stdio.mjs.map +1 -1
  54. package/types.d.mts.map +1 -1
  55. package/types.d.ts.map +1 -1
package/src/methods.ts CHANGED
@@ -257,74 +257,74 @@ export const sdkMethods: SdkMethod[] = [
257
257
  httpPath: '/api/v1/events',
258
258
  },
259
259
  {
260
- clientCallName: 'client.v1.events.credits.getAutoRecharge',
261
- fullyQualifiedName: 'v1.events.credits.getAutoRecharge',
260
+ clientCallName: 'client.v1.credits.getAutoRecharge',
261
+ fullyQualifiedName: 'v1.credits.getAutoRecharge',
262
262
  httpMethod: 'get',
263
263
  httpPath: '/api/v1/credits/auto-recharge',
264
264
  },
265
265
  {
266
- clientCallName: 'client.v1.events.credits.getUsage',
267
- fullyQualifiedName: 'v1.events.credits.getUsage',
266
+ clientCallName: 'client.v1.credits.getUsage',
267
+ fullyQualifiedName: 'v1.credits.getUsage',
268
268
  httpMethod: 'get',
269
269
  httpPath: '/api/v1/credits/usage',
270
270
  },
271
271
  {
272
- clientCallName: 'client.v1.events.credits.listLedger',
273
- fullyQualifiedName: 'v1.events.credits.listLedger',
272
+ clientCallName: 'client.v1.credits.listLedger',
273
+ fullyQualifiedName: 'v1.credits.listLedger',
274
274
  httpMethod: 'get',
275
275
  httpPath: '/api/v1/credits/ledger',
276
276
  },
277
277
  {
278
- clientCallName: 'client.v1.events.credits.grants.create',
279
- fullyQualifiedName: 'v1.events.credits.grants.create',
278
+ clientCallName: 'client.v1.credits.grants.create',
279
+ fullyQualifiedName: 'v1.credits.grants.create',
280
280
  httpMethod: 'post',
281
281
  httpPath: '/api/v1/credits/grants',
282
282
  },
283
283
  {
284
- clientCallName: 'client.v1.events.credits.grants.list',
285
- fullyQualifiedName: 'v1.events.credits.grants.list',
284
+ clientCallName: 'client.v1.credits.grants.list',
285
+ fullyQualifiedName: 'v1.credits.grants.list',
286
286
  httpMethod: 'get',
287
287
  httpPath: '/api/v1/credits/grants',
288
288
  },
289
289
  {
290
- clientCallName: 'client.v1.events.credits.grants.void',
291
- fullyQualifiedName: 'v1.events.credits.grants.void',
290
+ clientCallName: 'client.v1.credits.grants.void',
291
+ fullyQualifiedName: 'v1.credits.grants.void',
292
292
  httpMethod: 'post',
293
293
  httpPath: '/api/v1/credits/grants/{id}/void',
294
294
  },
295
295
  {
296
- clientCallName: 'client.v1.events.credits.customCurrencies.create',
297
- fullyQualifiedName: 'v1.events.credits.customCurrencies.create',
296
+ clientCallName: 'client.v1.credits.customCurrencies.create',
297
+ fullyQualifiedName: 'v1.credits.customCurrencies.create',
298
298
  httpMethod: 'post',
299
299
  httpPath: '/api/v1/credits/custom-currencies',
300
300
  },
301
301
  {
302
- clientCallName: 'client.v1.events.credits.customCurrencies.update',
303
- fullyQualifiedName: 'v1.events.credits.customCurrencies.update',
302
+ clientCallName: 'client.v1.credits.customCurrencies.update',
303
+ fullyQualifiedName: 'v1.credits.customCurrencies.update',
304
304
  httpMethod: 'patch',
305
305
  httpPath: '/api/v1/credits/custom-currencies/{currencyId}',
306
306
  },
307
307
  {
308
- clientCallName: 'client.v1.events.credits.customCurrencies.list',
309
- fullyQualifiedName: 'v1.events.credits.customCurrencies.list',
308
+ clientCallName: 'client.v1.credits.customCurrencies.list',
309
+ fullyQualifiedName: 'v1.credits.customCurrencies.list',
310
310
  httpMethod: 'get',
311
311
  httpPath: '/api/v1/credits/custom-currencies',
312
312
  },
313
313
  {
314
- clientCallName: 'client.v1.events.credits.customCurrencies.archive',
315
- fullyQualifiedName: 'v1.events.credits.customCurrencies.archive',
314
+ clientCallName: 'client.v1.credits.customCurrencies.archive',
315
+ fullyQualifiedName: 'v1.credits.customCurrencies.archive',
316
316
  httpMethod: 'post',
317
317
  httpPath: '/api/v1/credits/custom-currencies/{currencyId}/archive',
318
318
  },
319
319
  {
320
- clientCallName: 'client.v1.events.credits.customCurrencies.listAssociatedEntities',
321
- fullyQualifiedName: 'v1.events.credits.customCurrencies.listAssociatedEntities',
320
+ clientCallName: 'client.v1.credits.customCurrencies.listAssociatedEntities',
321
+ fullyQualifiedName: 'v1.credits.customCurrencies.listAssociatedEntities',
322
322
  httpMethod: 'get',
323
323
  httpPath: '/api/v1/credits/custom-currencies/{currencyId}/associated-entities',
324
324
  },
325
325
  {
326
- clientCallName: 'client.v1.events.credits.customCurrencies.unarchive',
327
- fullyQualifiedName: 'v1.events.credits.customCurrencies.unarchive',
326
+ clientCallName: 'client.v1.credits.customCurrencies.unarchive',
327
+ fullyQualifiedName: 'v1.credits.customCurrencies.unarchive',
328
328
  httpMethod: 'post',
329
329
  httpPath: '/api/v1/credits/custom-currencies/{currencyId}/unarchive',
330
330
  },
@@ -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',
@@ -556,6 +574,66 @@ export const sdkMethods: SdkMethod[] = [
556
574
  httpMethod: 'patch',
557
575
  httpPath: '/api/v1/products/{id}',
558
576
  },
577
+ {
578
+ clientCallName: 'client.v1Beta.customers.entitlements.check',
579
+ fullyQualifiedName: 'v1Beta.customers.entitlements.check',
580
+ httpMethod: 'get',
581
+ httpPath: '/api/v1-beta/customers/{id}/entitlements/check',
582
+ },
583
+ {
584
+ clientCallName: 'client.v1Beta.customers.entities.retrieve',
585
+ fullyQualifiedName: 'v1Beta.customers.entities.retrieve',
586
+ httpMethod: 'get',
587
+ httpPath: '/api/v1-beta/customers/{id}/entities/{entityId}',
588
+ },
589
+ {
590
+ clientCallName: 'client.v1Beta.customers.entities.list',
591
+ fullyQualifiedName: 'v1Beta.customers.entities.list',
592
+ httpMethod: 'get',
593
+ httpPath: '/api/v1-beta/customers/{id}/entities',
594
+ },
595
+ {
596
+ clientCallName: 'client.v1Beta.customers.entities.archive',
597
+ fullyQualifiedName: 'v1Beta.customers.entities.archive',
598
+ httpMethod: 'post',
599
+ httpPath: '/api/v1-beta/customers/{id}/entities/archive',
600
+ },
601
+ {
602
+ clientCallName: 'client.v1Beta.customers.entities.unarchive',
603
+ fullyQualifiedName: 'v1Beta.customers.entities.unarchive',
604
+ httpMethod: 'post',
605
+ httpPath: '/api/v1-beta/customers/{id}/entities/unarchive',
606
+ },
607
+ {
608
+ clientCallName: 'client.v1Beta.customers.entities.upsert',
609
+ fullyQualifiedName: 'v1Beta.customers.entities.upsert',
610
+ httpMethod: 'put',
611
+ httpPath: '/api/v1-beta/customers/{id}/entities',
612
+ },
613
+ {
614
+ clientCallName: 'client.v1Beta.customers.assignments.list',
615
+ fullyQualifiedName: 'v1Beta.customers.assignments.list',
616
+ httpMethod: 'get',
617
+ httpPath: '/api/v1-beta/customers/{id}/assignments',
618
+ },
619
+ {
620
+ clientCallName: 'client.v1Beta.customers.assignments.upsert',
621
+ fullyQualifiedName: 'v1Beta.customers.assignments.upsert',
622
+ httpMethod: 'put',
623
+ httpPath: '/api/v1-beta/customers/{id}/assignments',
624
+ },
625
+ {
626
+ clientCallName: 'client.v1Beta.entityTypes.list',
627
+ fullyQualifiedName: 'v1Beta.entityTypes.list',
628
+ httpMethod: 'get',
629
+ httpPath: '/api/v1-beta/entity-types',
630
+ },
631
+ {
632
+ clientCallName: 'client.v1Beta.entityTypes.upsert',
633
+ fullyQualifiedName: 'v1Beta.entityTypes.upsert',
634
+ httpMethod: 'put',
635
+ httpPath: '/api/v1-beta/entity-types',
636
+ },
559
637
  ];
560
638
 
561
639
  function allowedMethodsForCodeTool(options: McpOptions | undefined): SdkMethod[] | undefined {
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.1',
31
+ version: '0.1.0-beta.10',
32
32
  },
33
33
  {
34
34
  instructions: await getInstructions({ stainlessApiKey, customInstructionsPath }),
package/stdio.d.mts.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"stdio.d.mts","sourceRoot":"","sources":["src/stdio.ts"],"names":[],"mappings":"OACO,EAAE,UAAU,EAAE;AAIrB,eAAO,MAAM,iBAAiB,GAAU,YAAY,UAAU,kBAW7D,CAAC"}
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":"OACO,EAAE,UAAU,EAAE;AAIrB,eAAO,MAAM,iBAAiB,GAAU,YAAY,UAAU,kBAW7D,CAAC"}
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;OAEzE,EAAE,aAAa,EAAE,YAAY,EAAE;OAC/B,EAAE,SAAS,EAAE;AAEpB,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"}
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":"OAEO,KAAK,MAAM,mBAAmB;OAC9B,EAAE,IAAI,EAAE,MAAM,oCAAoC;AAEzD,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"}
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":"OAEO,KAAK,MAAM,mBAAmB;OAC9B,EAAE,IAAI,EAAE,MAAM,oCAAoC;AAEzD,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"}
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"}