ce-storefront 0.10.8 → 0.10.9
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 +7 -7
- 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/components/cartitem.d.ts +2 -2
- package/esm/models/components/cartitem.d.ts.map +1 -1
- package/esm/models/components/cartitem.js +2 -2
- package/esm/models/components/cartitem.js.map +1 -1
- package/jsr.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/components/cartitem.ts +4 -4
package/bin/mcp-server.js
CHANGED
|
@@ -4026,9 +4026,9 @@ var init_config = __esm(() => {
|
|
|
4026
4026
|
SDK_METADATA = {
|
|
4027
4027
|
language: "typescript",
|
|
4028
4028
|
openapiDocVersion: "1.0",
|
|
4029
|
-
sdkVersion: "0.10.
|
|
4029
|
+
sdkVersion: "0.10.9",
|
|
4030
4030
|
genVersion: "2.598.22",
|
|
4031
|
-
userAgent: "speakeasy-sdk/typescript 0.10.
|
|
4031
|
+
userAgent: "speakeasy-sdk/typescript 0.10.9 2.598.22 1.0 ce-storefront"
|
|
4032
4032
|
};
|
|
4033
4033
|
});
|
|
4034
4034
|
|
|
@@ -36001,7 +36001,7 @@ var init_cartitem = __esm(() => {
|
|
|
36001
36001
|
tax_rate: numberType(),
|
|
36002
36002
|
tax_amount: numberType(),
|
|
36003
36003
|
associated_options: nullableType(recordType(AssociatedOption$inboundSchema)),
|
|
36004
|
-
subscriptions: arrayType(ProductSubscription$inboundSchema)
|
|
36004
|
+
subscriptions: nullableType(arrayType(ProductSubscription$inboundSchema))
|
|
36005
36005
|
}).transform((v2) => {
|
|
36006
36006
|
return remap(v2, {
|
|
36007
36007
|
product_id: "productId",
|
|
@@ -36062,7 +36062,7 @@ var init_cartitem = __esm(() => {
|
|
|
36062
36062
|
taxRate: numberType(),
|
|
36063
36063
|
taxAmount: numberType(),
|
|
36064
36064
|
associatedOptions: nullableType(recordType(AssociatedOption$outboundSchema)),
|
|
36065
|
-
subscriptions: arrayType(ProductSubscription$outboundSchema)
|
|
36065
|
+
subscriptions: nullableType(arrayType(ProductSubscription$outboundSchema))
|
|
36066
36066
|
}).transform((v2) => {
|
|
36067
36067
|
return remap(v2, {
|
|
36068
36068
|
productId: "product_id",
|
|
@@ -48588,7 +48588,7 @@ Checking serviceability for a given pincode based provided cart_id.`,
|
|
|
48588
48588
|
function createMCPServer(deps) {
|
|
48589
48589
|
const server = new McpServer({
|
|
48590
48590
|
name: "CeStorefront",
|
|
48591
|
-
version: "0.10.
|
|
48591
|
+
version: "0.10.9"
|
|
48592
48592
|
});
|
|
48593
48593
|
const client = new CeStorefrontCore({
|
|
48594
48594
|
authorization: deps.authorization,
|
|
@@ -49908,7 +49908,7 @@ var routes = rn({
|
|
|
49908
49908
|
var app = Ve(routes, {
|
|
49909
49909
|
name: "mcp",
|
|
49910
49910
|
versionInfo: {
|
|
49911
|
-
currentVersion: "0.10.
|
|
49911
|
+
currentVersion: "0.10.9"
|
|
49912
49912
|
}
|
|
49913
49913
|
});
|
|
49914
49914
|
_t(app, process3.argv.slice(2), buildContext(process3));
|
|
@@ -49916,5 +49916,5 @@ export {
|
|
|
49916
49916
|
app
|
|
49917
49917
|
};
|
|
49918
49918
|
|
|
49919
|
-
//# debugId=
|
|
49919
|
+
//# debugId=DAE2A0DFA3E6435364756E2164756E21
|
|
49920
49920
|
//# sourceMappingURL=mcp-server.js.map
|