@snokam/mcp-api 2.33.1 → 2.35.0
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/specs/production/sales.json +60 -0
- package/specs/test/sales.json +60 -0
package/package.json
CHANGED
|
@@ -2449,6 +2449,53 @@
|
|
|
2449
2449
|
]
|
|
2450
2450
|
}
|
|
2451
2451
|
},
|
|
2452
|
+
"/v1.0/tenders/{id}/slack-messages": {
|
|
2453
|
+
"post": {
|
|
2454
|
+
"tags": [
|
|
2455
|
+
"Tenders"
|
|
2456
|
+
],
|
|
2457
|
+
"summary": "Queue a Slack message for a tender (Service Bus → notifications-function).",
|
|
2458
|
+
"operationId": "SendTenderSlackMessage",
|
|
2459
|
+
"parameters": [
|
|
2460
|
+
{
|
|
2461
|
+
"name": "id",
|
|
2462
|
+
"in": "path",
|
|
2463
|
+
"required": true,
|
|
2464
|
+
"schema": {
|
|
2465
|
+
"type": "string"
|
|
2466
|
+
}
|
|
2467
|
+
}
|
|
2468
|
+
],
|
|
2469
|
+
"requestBody": {
|
|
2470
|
+
"content": {
|
|
2471
|
+
"application/json": {
|
|
2472
|
+
"schema": {
|
|
2473
|
+
"$ref": "#/components/schemas/sendTenderSlackMessageRequest"
|
|
2474
|
+
}
|
|
2475
|
+
}
|
|
2476
|
+
},
|
|
2477
|
+
"required": true
|
|
2478
|
+
},
|
|
2479
|
+
"responses": {
|
|
2480
|
+
"204": {
|
|
2481
|
+
"description": "No description"
|
|
2482
|
+
},
|
|
2483
|
+
"400": {
|
|
2484
|
+
"description": "No description"
|
|
2485
|
+
},
|
|
2486
|
+
"404": {
|
|
2487
|
+
"description": "No description"
|
|
2488
|
+
}
|
|
2489
|
+
},
|
|
2490
|
+
"security": [
|
|
2491
|
+
{
|
|
2492
|
+
"Implicit": [
|
|
2493
|
+
"api://7e877854-e62d-4637-a655-1da7141f7ac9/.default"
|
|
2494
|
+
]
|
|
2495
|
+
}
|
|
2496
|
+
]
|
|
2497
|
+
}
|
|
2498
|
+
},
|
|
2452
2499
|
"/v1.0/tenders/{id}/consultants/{email}": {
|
|
2453
2500
|
"delete": {
|
|
2454
2501
|
"tags": [
|
|
@@ -3779,6 +3826,19 @@
|
|
|
3779
3826
|
}
|
|
3780
3827
|
}
|
|
3781
3828
|
},
|
|
3829
|
+
"sendTenderSlackMessageRequest": {
|
|
3830
|
+
"type": "object",
|
|
3831
|
+
"properties": {
|
|
3832
|
+
"channelId": {
|
|
3833
|
+
"type": "string",
|
|
3834
|
+
"nullable": true
|
|
3835
|
+
},
|
|
3836
|
+
"message": {
|
|
3837
|
+
"type": "string",
|
|
3838
|
+
"nullable": true
|
|
3839
|
+
}
|
|
3840
|
+
}
|
|
3841
|
+
},
|
|
3782
3842
|
"sourceFile": {
|
|
3783
3843
|
"type": "object",
|
|
3784
3844
|
"properties": {
|
package/specs/test/sales.json
CHANGED
|
@@ -2449,6 +2449,53 @@
|
|
|
2449
2449
|
]
|
|
2450
2450
|
}
|
|
2451
2451
|
},
|
|
2452
|
+
"/v1.0/tenders/{id}/slack-messages": {
|
|
2453
|
+
"post": {
|
|
2454
|
+
"tags": [
|
|
2455
|
+
"Tenders"
|
|
2456
|
+
],
|
|
2457
|
+
"summary": "Queue a Slack message for a tender (Service Bus → notifications-function).",
|
|
2458
|
+
"operationId": "SendTenderSlackMessage",
|
|
2459
|
+
"parameters": [
|
|
2460
|
+
{
|
|
2461
|
+
"name": "id",
|
|
2462
|
+
"in": "path",
|
|
2463
|
+
"required": true,
|
|
2464
|
+
"schema": {
|
|
2465
|
+
"type": "string"
|
|
2466
|
+
}
|
|
2467
|
+
}
|
|
2468
|
+
],
|
|
2469
|
+
"requestBody": {
|
|
2470
|
+
"content": {
|
|
2471
|
+
"application/json": {
|
|
2472
|
+
"schema": {
|
|
2473
|
+
"$ref": "#/components/schemas/sendTenderSlackMessageRequest"
|
|
2474
|
+
}
|
|
2475
|
+
}
|
|
2476
|
+
},
|
|
2477
|
+
"required": true
|
|
2478
|
+
},
|
|
2479
|
+
"responses": {
|
|
2480
|
+
"204": {
|
|
2481
|
+
"description": "No description"
|
|
2482
|
+
},
|
|
2483
|
+
"400": {
|
|
2484
|
+
"description": "No description"
|
|
2485
|
+
},
|
|
2486
|
+
"404": {
|
|
2487
|
+
"description": "No description"
|
|
2488
|
+
}
|
|
2489
|
+
},
|
|
2490
|
+
"security": [
|
|
2491
|
+
{
|
|
2492
|
+
"Implicit": [
|
|
2493
|
+
"api://d7f15838-af74-4048-88b3-503089de0064/.default"
|
|
2494
|
+
]
|
|
2495
|
+
}
|
|
2496
|
+
]
|
|
2497
|
+
}
|
|
2498
|
+
},
|
|
2452
2499
|
"/v1.0/tenders/{id}/consultants/{email}": {
|
|
2453
2500
|
"delete": {
|
|
2454
2501
|
"tags": [
|
|
@@ -3779,6 +3826,19 @@
|
|
|
3779
3826
|
}
|
|
3780
3827
|
}
|
|
3781
3828
|
},
|
|
3829
|
+
"sendTenderSlackMessageRequest": {
|
|
3830
|
+
"type": "object",
|
|
3831
|
+
"properties": {
|
|
3832
|
+
"channelId": {
|
|
3833
|
+
"type": "string",
|
|
3834
|
+
"nullable": true
|
|
3835
|
+
},
|
|
3836
|
+
"message": {
|
|
3837
|
+
"type": "string",
|
|
3838
|
+
"nullable": true
|
|
3839
|
+
}
|
|
3840
|
+
}
|
|
3841
|
+
},
|
|
3782
3842
|
"sourceFile": {
|
|
3783
3843
|
"type": "object",
|
|
3784
3844
|
"properties": {
|