@moovio/sdk 25.9.2 → 25.9.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/bin/mcp-server.js CHANGED
@@ -52974,9 +52974,9 @@ var init_config = __esm(() => {
52974
52974
  SDK_METADATA = {
52975
52975
  language: "typescript",
52976
52976
  openapiDocVersion: "v2025.07.00",
52977
- sdkVersion: "25.9.2",
52978
- genVersion: "2.916.2",
52979
- userAgent: "speakeasy-sdk/typescript 25.9.2 2.916.2 v2025.07.00 @moovio/sdk"
52977
+ sdkVersion: "25.9.4",
52978
+ genVersion: "2.917.0",
52979
+ userAgent: "speakeasy-sdk/typescript 25.9.4 2.917.0 v2025.07.00 @moovio/sdk"
52980
52980
  };
52981
52981
  });
52982
52982
 
@@ -53398,11 +53398,11 @@ var init_encodings = __esm(() => {
53398
53398
 
53399
53399
  // src/lib/http.ts
53400
53400
  class HTTPClient {
53401
- options;
53402
53401
  fetcher;
53403
53402
  requestHooks = [];
53404
53403
  requestErrorHooks = [];
53405
53404
  responseHooks = [];
53405
+ options;
53406
53406
  constructor(options = {}) {
53407
53407
  this.options = options;
53408
53408
  this.fetcher = options.fetcher || DEFAULT_FETCHER;
@@ -54608,8 +54608,12 @@ async function extractSecurity(sec) {
54608
54608
  }
54609
54609
  return typeof sec === "function" ? sec() : sec;
54610
54610
  }
54611
- var SecurityError;
54611
+ var SecurityErrorCode, SecurityError;
54612
54612
  var init_security = __esm(() => {
54613
+ SecurityErrorCode = {
54614
+ Incomplete: "incomplete",
54615
+ UnrecognisedSecurityType: "unrecognized_security_type"
54616
+ };
54613
54617
  SecurityError = class SecurityError extends Error {
54614
54618
  code;
54615
54619
  constructor(code, message) {
@@ -54618,10 +54622,10 @@ var init_security = __esm(() => {
54618
54622
  this.name = "SecurityError";
54619
54623
  }
54620
54624
  static incomplete() {
54621
- return new SecurityError("incomplete" /* Incomplete */, "Security requirements not met in order to perform the operation");
54625
+ return new SecurityError(SecurityErrorCode.Incomplete, "Security requirements not met in order to perform the operation");
54622
54626
  }
54623
54627
  static unrecognizedType(type) {
54624
- return new SecurityError("unrecognized_security_type" /* UnrecognisedSecurityType */, `Unrecognised security type: ${type}`);
54628
+ return new SecurityError(SecurityErrorCode.UnrecognisedSecurityType, `Unrecognised security type: ${type}`);
54625
54629
  }
54626
54630
  };
54627
54631
  });
@@ -60045,6 +60049,7 @@ var init_cardbrandfees = __esm(() => {
60045
60049
  completedInternationalInPerson: BillingCountAndAmount$inboundSchema.optional(),
60046
60050
  declines: BillingCountAndAmount$inboundSchema.optional(),
60047
60051
  refunds: BillingCountAndAmount$inboundSchema.optional(),
60052
+ cardCancellations: BillingCountAndAmount$inboundSchema.optional(),
60048
60053
  total: BillingCountAndAmount$inboundSchema
60049
60054
  });
60050
60055
  CardBrandFees$outboundSchema = objectType({
@@ -60057,6 +60062,7 @@ var init_cardbrandfees = __esm(() => {
60057
60062
  completedInternationalInPerson: BillingCountAndAmount$outboundSchema.optional(),
60058
60063
  declines: BillingCountAndAmount$outboundSchema.optional(),
60059
60064
  refunds: BillingCountAndAmount$outboundSchema.optional(),
60065
+ cardCancellations: BillingCountAndAmount$outboundSchema.optional(),
60060
60066
  total: BillingCountAndAmount$outboundSchema
60061
60067
  });
60062
60068
  });
@@ -98576,7 +98582,7 @@ var init_webhooksUpdate2 = __esm(() => {
98576
98582
  function createMCPServer(deps) {
98577
98583
  const server = new McpServer({
98578
98584
  name: "Moov",
98579
- version: "25.9.2"
98585
+ version: "25.9.4"
98580
98586
  });
98581
98587
  const client = new MoovCore({
98582
98588
  security: deps.security,
@@ -100146,7 +100152,7 @@ var routes = rn({
100146
100152
  var app = Ve(routes, {
100147
100153
  name: "mcp",
100148
100154
  versionInfo: {
100149
- currentVersion: "25.9.2"
100155
+ currentVersion: "25.9.4"
100150
100156
  }
100151
100157
  });
100152
100158
  _t(app, process3.argv.slice(2), buildContext(process3));
@@ -100154,5 +100160,5 @@ export {
100154
100160
  app
100155
100161
  };
100156
100162
 
100157
- //# debugId=B89EF011148E6F7E64756E2164756E21
100163
+ //# debugId=63294DBB80AFDBEE64756E2164756E21
100158
100164
  //# sourceMappingURL=mcp-server.js.map