mcp-prqx-pricer 1.0.14 → 1.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.
@@ -123,7 +123,7 @@ class UpdatePricingGroupTool {
|
|
123
123
|
floorPrice: request?.params?.arguments?.floorPrice ??
|
124
124
|
originalData.floorPrice,
|
125
125
|
pricingGroupRequestType: (request?.params?.arguments
|
126
|
-
?.
|
126
|
+
?.pricingGroupMode ??
|
127
127
|
originalData.isAutoPricingEnabled)
|
128
128
|
? pricingGroup_1.PricingGroupRequestType.AutoPrice
|
129
129
|
: pricingGroup_1.PricingGroupRequestType.SimulationOnly,
|
package/package.json
CHANGED
@@ -161,7 +161,7 @@ export class UpdatePricingGroupTool implements McpTool {
|
|
161
161
|
originalData.floorPrice,
|
162
162
|
pricingGroupRequestType:
|
163
163
|
(request?.params?.arguments
|
164
|
-
?.
|
164
|
+
?.pricingGroupMode as PricingGroupRequestType) ??
|
165
165
|
originalData.isAutoPricingEnabled
|
166
166
|
? PricingGroupRequestType.AutoPrice
|
167
167
|
: PricingGroupRequestType.SimulationOnly,
|