mcp-prqx-pricer 1.0.8 → 1.0.10
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/package.json
CHANGED
@@ -119,7 +119,7 @@ export class CreatePricingGroupTool implements McpTool {
|
|
119
119
|
const offsetIncrementMethod = request.params.arguments.offsetIncrementMethod as string | undefined;
|
120
120
|
const enableShareOptions = request.params.arguments.enableShareOptions as boolean | undefined;
|
121
121
|
const shareOptionsType = request.params.arguments.shareOptionsType as ShareOptionsType | undefined;
|
122
|
-
const shareAnchor = request.params.arguments.shareAnchor as
|
122
|
+
const shareAnchor = request.params.arguments.shareAnchor as boolean | undefined;
|
123
123
|
const customSharingAmount = request.params.arguments.customSharingAmount as number | undefined;
|
124
124
|
const customSharingMethod = request.params.arguments.customSharingMethod as CustomSharingMethod | undefined;
|
125
125
|
const applyCeilingOnlyToAnchor = request.params.arguments.applyCeilingOnlyToAnchor as boolean | undefined;
|
@@ -82,7 +82,7 @@ export interface RuleDto{
|
|
82
82
|
offsetAmount?: number;
|
83
83
|
enableShareOptions?: boolean;
|
84
84
|
shareOptionsType?: ShareOptionsType;
|
85
|
-
shareAnchor?:
|
85
|
+
shareAnchor?: boolean;
|
86
86
|
floorPricingMethod?: FloorPricingMethod;
|
87
87
|
ceilingPricingMethod?: CeilingPricingMethod;
|
88
88
|
noCompPricingMethod?: NoCompPricingMethod;
|