@flexprice/mcp-server 2.1.18 → 2.1.19
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 +6 -7
- package/bin/mcp-server.js.map +6 -6
- package/bun.lock +11 -11
- 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/submodifycouponparams.d.ts +0 -1
- package/esm/models/submodifycouponparams.d.ts.map +1 -1
- package/esm/models/submodifycouponparams.js +1 -2
- package/esm/models/submodifycouponparams.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/submodifycouponparams.ts +1 -5
package/bin/mcp-server.js
CHANGED
|
@@ -51270,9 +51270,9 @@ var init_config = __esm(() => {
|
|
|
51270
51270
|
SDK_METADATA = {
|
|
51271
51271
|
language: "typescript",
|
|
51272
51272
|
openapiDocVersion: "1.0",
|
|
51273
|
-
sdkVersion: "2.1.
|
|
51273
|
+
sdkVersion: "2.1.19",
|
|
51274
51274
|
genVersion: "2.904.2",
|
|
51275
|
-
userAgent: "speakeasy-sdk/mcp-typescript 2.1.
|
|
51275
|
+
userAgent: "speakeasy-sdk/mcp-typescript 2.1.19 2.904.2 1.0 @flexprice/mcp-server"
|
|
51276
51276
|
};
|
|
51277
51277
|
});
|
|
51278
51278
|
|
|
@@ -62751,9 +62751,8 @@ var init_submodifycouponparams = __esm(() => {
|
|
|
62751
62751
|
action: SubModifyCouponAction$zodSchema,
|
|
62752
62752
|
association_id: string2().optional().describe('Required when action="remove". ID of the CouponAssociation to soft-delete.'),
|
|
62753
62753
|
coupon_code: string2().optional().describe('Required for action="add". Coupon code of the coupon to attach.'),
|
|
62754
|
-
effective_date: exports_iso.datetime({ offset: true }).optional().describe("Optional. When to apply the change; defaults to now if omitted."),
|
|
62755
62754
|
end_date: exports_iso.datetime({ offset: true }).optional().describe("Optional. When the coupon association ends."),
|
|
62756
|
-
start_date: exports_iso.datetime({ offset: true }).optional().describe("Optional. When the coupon association starts; defaults to
|
|
62755
|
+
start_date: exports_iso.datetime({ offset: true }).optional().describe("Optional. When the coupon association starts; defaults to now."),
|
|
62757
62756
|
subscription_id: string2().optional().describe("Optional. Apply at subscription level. Mutually exclusive with SubscriptionLineItemID."),
|
|
62758
62757
|
subscription_line_item_id: string2().optional().describe("Optional. Apply at a specific line item. Mutually exclusive with SubscriptionID.")
|
|
62759
62758
|
});
|
|
@@ -65830,7 +65829,7 @@ Use when changing a subscription line item (e.g. quantity or price). Implemented
|
|
|
65830
65829
|
function createMCPServer(deps) {
|
|
65831
65830
|
const server = new McpServer({
|
|
65832
65831
|
name: "Flexprice",
|
|
65833
|
-
version: "2.1.
|
|
65832
|
+
version: "2.1.19"
|
|
65834
65833
|
});
|
|
65835
65834
|
const getClient = deps.getSDK || (() => new FlexpriceCore({
|
|
65836
65835
|
security: deps.security,
|
|
@@ -69980,7 +69979,7 @@ var routes = buildRouteMap({
|
|
|
69980
69979
|
var app = buildApplication(routes, {
|
|
69981
69980
|
name: "mcp",
|
|
69982
69981
|
versionInfo: {
|
|
69983
|
-
currentVersion: "2.1.
|
|
69982
|
+
currentVersion: "2.1.19"
|
|
69984
69983
|
}
|
|
69985
69984
|
});
|
|
69986
69985
|
run(app, process4.argv.slice(2), buildContext(process4));
|
|
@@ -69988,5 +69987,5 @@ export {
|
|
|
69988
69987
|
app
|
|
69989
69988
|
};
|
|
69990
69989
|
|
|
69991
|
-
//# debugId=
|
|
69990
|
+
//# debugId=9238BBBC4F8F163B64756E2164756E21
|
|
69992
69991
|
//# sourceMappingURL=mcp-server.js.map
|