@flexprice/mcp-server 2.0.14 → 2.0.15
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 +8 -5
- package/bin/mcp-server.js.map +6 -6
- package/esm/lib/config.d.ts +2 -2
- package/esm/lib/config.js +2 -2
- package/esm/mcp-server/mcp-server.js +1 -1
- package/esm/mcp-server/server.js +1 -1
- package/esm/models/subscriptionfilter.d.ts +1 -0
- package/esm/models/subscriptionfilter.d.ts.map +1 -1
- package/esm/models/subscriptionfilter.js +1 -0
- package/esm/models/subscriptionfilter.js.map +1 -1
- package/esm/tsconfig.tsbuildinfo +1 -1
- package/manifest.json +1 -1
- package/package.json +1 -1
- package/src/lib/config.ts +2 -2
- package/src/mcp-server/mcp-server.ts +1 -1
- package/src/mcp-server/server.ts +1 -1
- package/src/models/subscriptionfilter.ts +4 -0
package/bin/mcp-server.js
CHANGED
|
@@ -50501,9 +50501,9 @@ var init_config = __esm(() => {
|
|
|
50501
50501
|
SDK_METADATA = {
|
|
50502
50502
|
language: "typescript",
|
|
50503
50503
|
openapiDocVersion: "1.0",
|
|
50504
|
-
sdkVersion: "2.0.
|
|
50504
|
+
sdkVersion: "2.0.15",
|
|
50505
50505
|
genVersion: "2.879.1",
|
|
50506
|
-
userAgent: "speakeasy-sdk/mcp-typescript 2.0.
|
|
50506
|
+
userAgent: "speakeasy-sdk/mcp-typescript 2.0.15 2.879.1 1.0 @flexprice/mcp-server"
|
|
50507
50507
|
};
|
|
50508
50508
|
});
|
|
50509
50509
|
|
|
@@ -63619,6 +63619,9 @@ var init_subscriptionfilter = __esm(() => {
|
|
|
63619
63619
|
billing_cadence: array(BillingCadence$zodSchema).optional().describe("BillingCadence filters by billing cadence"),
|
|
63620
63620
|
billing_period: array(BillingPeriod$zodSchema).optional().describe("BillingPeriod filters by billing period"),
|
|
63621
63621
|
customer_id: string2().optional().describe("CustomerID filters by customer ID"),
|
|
63622
|
+
effective_date_for_update: string2().optional().describe(`EffectiveDateForUpdate selects subscriptions that need a billing-period pass on or before this time:
|
|
63623
|
+
current_period_end <= date OR (cancel_at IS NOT NULL AND cancel_at <= date).
|
|
63624
|
+
When nil, period/cancel cutoff logic is not applied by this field (see TimeRangeFilter for legacy period-end filtering).`),
|
|
63622
63625
|
end_time: string2().optional(),
|
|
63623
63626
|
expand: string2().optional(),
|
|
63624
63627
|
external_customer_id: string2().optional().describe("ExternalCustomerID filters by external customer ID"),
|
|
@@ -64323,7 +64326,7 @@ Use when changing a subscription line item (e.g. quantity or price). Implemented
|
|
|
64323
64326
|
function createMCPServer(deps) {
|
|
64324
64327
|
const server = new McpServer({
|
|
64325
64328
|
name: "Flexprice",
|
|
64326
|
-
version: "2.0.
|
|
64329
|
+
version: "2.0.15"
|
|
64327
64330
|
});
|
|
64328
64331
|
const getClient = deps.getSDK || (() => new FlexpriceCore({
|
|
64329
64332
|
security: deps.security,
|
|
@@ -68462,7 +68465,7 @@ var routes = buildRouteMap({
|
|
|
68462
68465
|
var app = buildApplication(routes, {
|
|
68463
68466
|
name: "mcp",
|
|
68464
68467
|
versionInfo: {
|
|
68465
|
-
currentVersion: "2.0.
|
|
68468
|
+
currentVersion: "2.0.15"
|
|
68466
68469
|
}
|
|
68467
68470
|
});
|
|
68468
68471
|
run(app, process4.argv.slice(2), buildContext(process4));
|
|
@@ -68470,5 +68473,5 @@ export {
|
|
|
68470
68473
|
app
|
|
68471
68474
|
};
|
|
68472
68475
|
|
|
68473
|
-
//# debugId=
|
|
68476
|
+
//# debugId=E35051007953EDCF64756E2164756E21
|
|
68474
68477
|
//# sourceMappingURL=mcp-server.js.map
|