@compass-labs/api-sdk 1.0.18 → 1.0.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.
Files changed (39) hide show
  1. package/bin/mcp-server.js +31 -31
  2. package/bin/mcp-server.js.map +9 -9
  3. package/dist/commonjs/lib/config.d.ts +2 -2
  4. package/dist/commonjs/lib/config.js +2 -2
  5. package/dist/commonjs/mcp-server/mcp-server.js +1 -1
  6. package/dist/commonjs/mcp-server/server.js +1 -1
  7. package/dist/commonjs/models/components/unsignedmulticalltransaction.d.ts +12 -12
  8. package/dist/commonjs/models/components/unsignedmulticalltransaction.js +12 -12
  9. package/dist/commonjs/models/components/unsignedmulticalltransaction.js.map +1 -1
  10. package/dist/commonjs/models/components/unsignedtransaction.d.ts +12 -12
  11. package/dist/commonjs/models/components/unsignedtransaction.js +12 -12
  12. package/dist/commonjs/models/components/unsignedtransaction.js.map +1 -1
  13. package/dist/commonjs/models/components/useroperationresponse.d.ts +2 -2
  14. package/dist/commonjs/models/components/useroperationresponse.js +2 -2
  15. package/dist/commonjs/models/components/useroperationresponse.js.map +1 -1
  16. package/dist/commonjs/models/operations/v1skyposition.d.ts +1 -1
  17. package/dist/esm/lib/config.d.ts +2 -2
  18. package/dist/esm/lib/config.js +2 -2
  19. package/dist/esm/mcp-server/mcp-server.js +1 -1
  20. package/dist/esm/mcp-server/server.js +1 -1
  21. package/dist/esm/models/components/unsignedmulticalltransaction.d.ts +12 -12
  22. package/dist/esm/models/components/unsignedmulticalltransaction.js +12 -12
  23. package/dist/esm/models/components/unsignedmulticalltransaction.js.map +1 -1
  24. package/dist/esm/models/components/unsignedtransaction.d.ts +12 -12
  25. package/dist/esm/models/components/unsignedtransaction.js +12 -12
  26. package/dist/esm/models/components/unsignedtransaction.js.map +1 -1
  27. package/dist/esm/models/components/useroperationresponse.d.ts +2 -2
  28. package/dist/esm/models/components/useroperationresponse.js +2 -2
  29. package/dist/esm/models/components/useroperationresponse.js.map +1 -1
  30. package/dist/esm/models/operations/v1skyposition.d.ts +1 -1
  31. package/jsr.json +1 -1
  32. package/package.json +1 -1
  33. package/src/lib/config.ts +2 -2
  34. package/src/mcp-server/mcp-server.ts +1 -1
  35. package/src/mcp-server/server.ts +1 -1
  36. package/src/models/components/unsignedmulticalltransaction.ts +24 -24
  37. package/src/models/components/unsignedtransaction.ts +24 -24
  38. package/src/models/components/useroperationresponse.ts +4 -4
  39. package/src/models/operations/v1skyposition.ts +1 -1
package/bin/mcp-server.js CHANGED
@@ -34264,9 +34264,9 @@ var init_config = __esm(() => {
34264
34264
  SDK_METADATA = {
34265
34265
  language: "typescript",
34266
34266
  openapiDocVersion: "0.0.1",
34267
- sdkVersion: "1.0.18",
34267
+ sdkVersion: "1.0.20",
34268
34268
  genVersion: "2.684.0",
34269
- userAgent: "speakeasy-sdk/typescript 1.0.18 2.684.0 0.0.1 @compass-labs/api-sdk"
34269
+ userAgent: "speakeasy-sdk/typescript 1.0.20 2.684.0 0.0.1 @compass-labs/api-sdk"
34270
34270
  };
34271
34271
  });
34272
34272
 
@@ -39734,12 +39734,12 @@ var init_useroperationresponse = __esm(() => {
39734
39734
  UserOperationResponse$inboundSchema = objectType({
39735
39735
  to: stringType(),
39736
39736
  data: stringType(),
39737
- value: numberType().int()
39737
+ value: stringType()
39738
39738
  });
39739
39739
  UserOperationResponse$outboundSchema = objectType({
39740
39740
  to: stringType(),
39741
39741
  data: stringType(),
39742
- value: numberType().int()
39742
+ value: stringType()
39743
39743
  });
39744
39744
  ((UserOperationResponse$) => {
39745
39745
  UserOperationResponse$.inboundSchema = UserOperationResponse$inboundSchema;
@@ -39770,27 +39770,27 @@ var init_unsignedmulticalltransaction = __esm(() => {
39770
39770
  init_zod();
39771
39771
  init_signedauthorization();
39772
39772
  UnsignedMulticallTransaction$inboundSchema = objectType({
39773
- chainId: numberType().int(),
39773
+ chainId: stringType(),
39774
39774
  data: stringType(),
39775
39775
  from: stringType(),
39776
- gas: numberType().int(),
39776
+ gas: stringType(),
39777
39777
  to: stringType(),
39778
- value: numberType().int(),
39779
- nonce: numberType().int(),
39780
- maxFeePerGas: numberType().int(),
39781
- maxPriorityFeePerGas: numberType().int(),
39778
+ value: stringType(),
39779
+ nonce: stringType(),
39780
+ maxFeePerGas: stringType(),
39781
+ maxPriorityFeePerGas: stringType(),
39782
39782
  authorizationList: arrayType(SignedAuthorization$inboundSchema).optional()
39783
39783
  });
39784
39784
  UnsignedMulticallTransaction$outboundSchema = objectType({
39785
- chainId: numberType().int(),
39785
+ chainId: stringType(),
39786
39786
  data: stringType(),
39787
39787
  from: stringType(),
39788
- gas: numberType().int(),
39788
+ gas: stringType(),
39789
39789
  to: stringType(),
39790
- value: numberType().int(),
39791
- nonce: numberType().int(),
39792
- maxFeePerGas: numberType().int(),
39793
- maxPriorityFeePerGas: numberType().int(),
39790
+ value: stringType(),
39791
+ nonce: stringType(),
39792
+ maxFeePerGas: stringType(),
39793
+ maxPriorityFeePerGas: stringType(),
39794
39794
  authorizationList: arrayType(SignedAuthorization$outboundSchema).optional()
39795
39795
  });
39796
39796
  ((UnsignedMulticallTransaction$) => {
@@ -40610,26 +40610,26 @@ var UnsignedTransaction$inboundSchema, UnsignedTransaction$outboundSchema, Unsig
40610
40610
  var init_unsignedtransaction = __esm(() => {
40611
40611
  init_zod();
40612
40612
  UnsignedTransaction$inboundSchema = objectType({
40613
- chainId: numberType().int(),
40613
+ chainId: stringType(),
40614
40614
  data: stringType(),
40615
40615
  from: stringType(),
40616
- gas: numberType().int(),
40616
+ gas: stringType(),
40617
40617
  to: stringType(),
40618
- value: numberType().int(),
40619
- nonce: numberType().int(),
40620
- maxFeePerGas: numberType().int(),
40621
- maxPriorityFeePerGas: numberType().int()
40618
+ value: stringType(),
40619
+ nonce: stringType(),
40620
+ maxFeePerGas: stringType(),
40621
+ maxPriorityFeePerGas: stringType()
40622
40622
  });
40623
40623
  UnsignedTransaction$outboundSchema = objectType({
40624
- chainId: numberType().int(),
40624
+ chainId: stringType(),
40625
40625
  data: stringType(),
40626
40626
  from: stringType(),
40627
- gas: numberType().int(),
40627
+ gas: stringType(),
40628
40628
  to: stringType(),
40629
- value: numberType().int(),
40630
- nonce: numberType().int(),
40631
- maxFeePerGas: numberType().int(),
40632
- maxPriorityFeePerGas: numberType().int()
40629
+ value: stringType(),
40630
+ nonce: stringType(),
40631
+ maxFeePerGas: stringType(),
40632
+ maxPriorityFeePerGas: stringType()
40633
40633
  });
40634
40634
  ((UnsignedTransaction$) => {
40635
40635
  UnsignedTransaction$.inboundSchema = UnsignedTransaction$inboundSchema;
@@ -55734,7 +55734,7 @@ it to be traded on DeFi protocols.`,
55734
55734
  function createMCPServer(deps) {
55735
55735
  const server = new McpServer({
55736
55736
  name: "CompassApiSDK",
55737
- version: "1.0.18"
55737
+ version: "1.0.20"
55738
55738
  });
55739
55739
  const client = new CompassApiSDKCore({
55740
55740
  apiKeyAuth: deps.apiKeyAuth,
@@ -57108,7 +57108,7 @@ var routes = ln({
57108
57108
  var app = _e(routes, {
57109
57109
  name: "mcp",
57110
57110
  versionInfo: {
57111
- currentVersion: "1.0.18"
57111
+ currentVersion: "1.0.20"
57112
57112
  }
57113
57113
  });
57114
57114
  Yt(app, process3.argv.slice(2), buildContext(process3));
@@ -57116,5 +57116,5 @@ export {
57116
57116
  app
57117
57117
  };
57118
57118
 
57119
- //# debugId=F2B0C2D80C69213864756E2164756E21
57119
+ //# debugId=EEF885058809342464756E2164756E21
57120
57120
  //# sourceMappingURL=mcp-server.js.map