@carrierllc/mcp 0.11.9 → 0.11.11
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/dist/{chunk-BPCTRBF3.js → chunk-GPROVMAP.js} +20 -5
- package/dist/chunk-GPROVMAP.js.map +1 -0
- package/dist/cli.js +26 -14
- package/dist/cli.js.map +1 -1
- package/dist/index.js +1 -1
- package/package.json +1 -1
- package/dist/chunk-BPCTRBF3.js.map +0 -1
|
@@ -1792,7 +1792,7 @@ function storefrontScreen(input) {
|
|
|
1792
1792
|
// package.json
|
|
1793
1793
|
var package_default = {
|
|
1794
1794
|
name: "@carrierllc/mcp",
|
|
1795
|
-
version: "0.11.
|
|
1795
|
+
version: "0.11.11",
|
|
1796
1796
|
description: "Carrier MCP \u2014 natural-language control of MVNO/eSIM fleets via eSIMVault OCS. Stdio mode for direct integration with Claude Desktop, Cursor, Windsurf, and MCP-compatible clients. Ships the `carrier` CLI (plugin install + white-label eSIM storefront scaffold).",
|
|
1797
1797
|
license: "MIT",
|
|
1798
1798
|
author: "Carrier (Lifecycle Innovations Limited)",
|
|
@@ -2219,7 +2219,7 @@ async function runWithBudget(method, attempt, budget = ocsBudgetFor(method)) {
|
|
|
2219
2219
|
throw lastTimeout ?? new OcsTimeoutError(method, budget.attemptMs, budget.totalMs, Math.max(attempts, 1));
|
|
2220
2220
|
}
|
|
2221
2221
|
|
|
2222
|
-
// ../../packages/ocs-client/dist/chunk-
|
|
2222
|
+
// ../../packages/ocs-client/dist/chunk-LNE7YTGH.js
|
|
2223
2223
|
var RATE_LIMIT = 10;
|
|
2224
2224
|
var WINDOW_MS = 1e3;
|
|
2225
2225
|
var windows = /* @__PURE__ */ new Map();
|
|
@@ -2433,9 +2433,24 @@ var OCS_BARE_INT_OTHER_METHODS = {
|
|
|
2433
2433
|
};
|
|
2434
2434
|
var OCS_PARAM_RENAMES = {
|
|
2435
2435
|
getResellerInfo: { resellerId: "id" },
|
|
2436
|
-
modifyPPTCore: {
|
|
2436
|
+
modifyPPTCore: {
|
|
2437
|
+
templateId: "prepaidpackagetemplateid",
|
|
2438
|
+
name: "prepaidpackagetemplatename",
|
|
2439
|
+
volume: "databyte",
|
|
2440
|
+
validityDays: "perioddays"
|
|
2441
|
+
},
|
|
2437
2442
|
modifyPPTRecurring: { templateId: "prepaidpackagetemplateid" },
|
|
2438
|
-
modifyPPTThrottling: { templateId: "prepaidpackagetemplateid" }
|
|
2443
|
+
modifyPPTThrottling: { templateId: "prepaidpackagetemplateid" },
|
|
2444
|
+
// Console NL-create and the MCP tool both advertise `name` / `volume` /
|
|
2445
|
+
// `validityDays`. OCS createPrepaidPackageTemplate rejects unknown keys
|
|
2446
|
+
// (Jackson code 2) — live failure was Unrecognized field "name".
|
|
2447
|
+
createPrepaidPackageTemplate: {
|
|
2448
|
+
name: "prepaidpackagetemplatename",
|
|
2449
|
+
volume: "databyte",
|
|
2450
|
+
validityDays: "perioddays",
|
|
2451
|
+
dataLimit: "databyte"
|
|
2452
|
+
},
|
|
2453
|
+
createLocationZone: { name: "locationZoneName" }
|
|
2439
2454
|
};
|
|
2440
2455
|
function applyParamRenames(method, params) {
|
|
2441
2456
|
const renames = OCS_PARAM_RENAMES[method];
|
|
@@ -4364,4 +4379,4 @@ export {
|
|
|
4364
4379
|
storefrontScreen,
|
|
4365
4380
|
CARRIER_VERSION
|
|
4366
4381
|
};
|
|
4367
|
-
//# sourceMappingURL=chunk-
|
|
4382
|
+
//# sourceMappingURL=chunk-GPROVMAP.js.map
|