mcp-zenskar 1.1.2 → 1.1.3
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 +1 -1
- package/src/mcp-config.json +9 -9
package/package.json
CHANGED
package/src/mcp-config.json
CHANGED
|
@@ -2568,7 +2568,7 @@
|
|
|
2568
2568
|
},
|
|
2569
2569
|
{
|
|
2570
2570
|
"name": "updateContract",
|
|
2571
|
-
"description": "Update an existing contract.
|
|
2571
|
+
"description": "Update an existing contract. The API requires name, status, currency, start_date, and customer_id even for partial changes — fetch the contract first with getContractById to get current values, then send all required fields plus any changes. Status: draft, active, paused, expired, disputed. Renewal: renew_with_default_contract, renew_with_existing, do_not_renew.",
|
|
2572
2572
|
"args": [
|
|
2573
2573
|
{
|
|
2574
2574
|
"name": "contractId",
|
|
@@ -4210,7 +4210,7 @@
|
|
|
4210
4210
|
},
|
|
4211
4211
|
{
|
|
4212
4212
|
"name": "pricing_data",
|
|
4213
|
-
"description": "Pricing data object
|
|
4213
|
+
"description": "Pricing data object. Must include 'pricing_type' discriminator matching pricing_model. For flat_fee: {pricing_type:'flat_fee', unit_amount:10000} (amount in cents). For per_unit: {pricing_type:'per_unit', unit_amount:500}.",
|
|
4214
4214
|
"type": "object",
|
|
4215
4215
|
"required": false,
|
|
4216
4216
|
"position": "body"
|
|
@@ -4397,14 +4397,14 @@
|
|
|
4397
4397
|
"name": "start_date",
|
|
4398
4398
|
"description": "Start date for the estimate (YYYY-MM-DD).",
|
|
4399
4399
|
"type": "string",
|
|
4400
|
-
"required":
|
|
4400
|
+
"required": true,
|
|
4401
4401
|
"position": "body"
|
|
4402
4402
|
},
|
|
4403
4403
|
{
|
|
4404
4404
|
"name": "end_date",
|
|
4405
4405
|
"description": "End date for the estimate (YYYY-MM-DD).",
|
|
4406
4406
|
"type": "string",
|
|
4407
|
-
"required":
|
|
4407
|
+
"required": true,
|
|
4408
4408
|
"position": "body"
|
|
4409
4409
|
}
|
|
4410
4410
|
],
|
|
@@ -4462,7 +4462,7 @@
|
|
|
4462
4462
|
},
|
|
4463
4463
|
{
|
|
4464
4464
|
"name": "module",
|
|
4465
|
-
"description": "Module/entity type this attribute applies to
|
|
4465
|
+
"description": "Module/entity type this attribute applies to. Allowed values: 'customers', 'contracts', 'invoices', 'payments', 'products', 'plans'.",
|
|
4466
4466
|
"type": "string",
|
|
4467
4467
|
"required": true,
|
|
4468
4468
|
"position": "body"
|
|
@@ -4600,9 +4600,9 @@
|
|
|
4600
4600
|
},
|
|
4601
4601
|
{
|
|
4602
4602
|
"name": "customer_id",
|
|
4603
|
-
"description": "The customer ID this quote is for.",
|
|
4603
|
+
"description": "The customer ID this quote is for (required for non-amendment quotes).",
|
|
4604
4604
|
"type": "string",
|
|
4605
|
-
"required":
|
|
4605
|
+
"required": true,
|
|
4606
4606
|
"position": "body"
|
|
4607
4607
|
},
|
|
4608
4608
|
{
|
|
@@ -4616,14 +4616,14 @@
|
|
|
4616
4616
|
"name": "start_date",
|
|
4617
4617
|
"description": "Start date for the quote (YYYY-MM-DD).",
|
|
4618
4618
|
"type": "string",
|
|
4619
|
-
"required":
|
|
4619
|
+
"required": true,
|
|
4620
4620
|
"position": "body"
|
|
4621
4621
|
},
|
|
4622
4622
|
{
|
|
4623
4623
|
"name": "end_date",
|
|
4624
4624
|
"description": "End date for the quote (YYYY-MM-DD).",
|
|
4625
4625
|
"type": "string",
|
|
4626
|
-
"required":
|
|
4626
|
+
"required": true,
|
|
4627
4627
|
"position": "body"
|
|
4628
4628
|
},
|
|
4629
4629
|
{
|