@lucern/mcp 0.3.0-alpha.11 → 0.3.0-alpha.12
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/dist/cli.js +53 -3
- package/dist/cli.js.map +1 -1
- package/dist/gateway.d.ts +17 -1
- package/dist/gateway.js +385 -214
- package/dist/gateway.js.map +1 -1
- package/dist/hosted-route.js +53 -3
- package/dist/hosted-route.js.map +1 -1
- package/dist/index.js +53 -3
- package/dist/index.js.map +1 -1
- package/dist/runtime.js +3 -1
- package/dist/runtime.js.map +1 -1
- package/package.json +6 -6
package/dist/cli.js
CHANGED
|
@@ -4719,7 +4719,9 @@ var permitObjectType = z.enum([
|
|
|
4719
4719
|
"group",
|
|
4720
4720
|
"resource_instance",
|
|
4721
4721
|
"relationship_tuple",
|
|
4722
|
-
"role_assignment"
|
|
4722
|
+
"role_assignment",
|
|
4723
|
+
"attribute_binding",
|
|
4724
|
+
"policy_bundle"
|
|
4723
4725
|
]);
|
|
4724
4726
|
var permitOutboxOperation = z.enum([
|
|
4725
4727
|
"upsert",
|
|
@@ -8516,6 +8518,54 @@ var GENERATED_INFISICAL_RUNTIME_ENV = {
|
|
|
8516
8518
|
],
|
|
8517
8519
|
"description": "Optional Permit PDP URL override."
|
|
8518
8520
|
},
|
|
8521
|
+
{
|
|
8522
|
+
"secretId": "platform.permit.webhook-secret",
|
|
8523
|
+
"canonicalName": "LUCERN_PERMIT_WEBHOOK_SECRET",
|
|
8524
|
+
"envNames": [
|
|
8525
|
+
"LUCERN_PERMIT_WEBHOOK_SECRET",
|
|
8526
|
+
"PERMIT_WEBHOOK_SECRET"
|
|
8527
|
+
],
|
|
8528
|
+
"aliases": [
|
|
8529
|
+
"PERMIT_WEBHOOK_SECRET"
|
|
8530
|
+
],
|
|
8531
|
+
"writeNames": [
|
|
8532
|
+
"LUCERN_PERMIT_WEBHOOK_SECRET"
|
|
8533
|
+
],
|
|
8534
|
+
"required": true,
|
|
8535
|
+
"secret": true,
|
|
8536
|
+
"public": false,
|
|
8537
|
+
"sourcePath": "/platform/permit",
|
|
8538
|
+
"environmentPolicy": "environment_specific",
|
|
8539
|
+
"consumers": [
|
|
8540
|
+
"mc-convex",
|
|
8541
|
+
"lucern-gateway",
|
|
8542
|
+
"mc-operator-tooling"
|
|
8543
|
+
],
|
|
8544
|
+
"destinations": [
|
|
8545
|
+
{
|
|
8546
|
+
"kind": "convex",
|
|
8547
|
+
"target": "master-control",
|
|
8548
|
+
"writeNames": [
|
|
8549
|
+
"LUCERN_PERMIT_WEBHOOK_SECRET"
|
|
8550
|
+
]
|
|
8551
|
+
},
|
|
8552
|
+
{
|
|
8553
|
+
"kind": "vercel",
|
|
8554
|
+
"target": "lucern-gateway",
|
|
8555
|
+
"writeNames": [
|
|
8556
|
+
"LUCERN_PERMIT_WEBHOOK_SECRET"
|
|
8557
|
+
]
|
|
8558
|
+
},
|
|
8559
|
+
{
|
|
8560
|
+
"kind": "operator_local",
|
|
8561
|
+
"target": "mc-credential-maintenance",
|
|
8562
|
+
"writeNames": [
|
|
8563
|
+
"LUCERN_PERMIT_WEBHOOK_SECRET"
|
|
8564
|
+
]
|
|
8565
|
+
}
|
|
8566
|
+
],
|
|
8567
|
+
"description": "Permit.io webhook secret used by gateway and MC webhook handlers. Must fail closed if missing."
|
|
8568
|
+
},
|
|
8519
8569
|
{
|
|
8520
8570
|
"secretId": "platform.runtime.require-deployment-host-registry",
|
|
8521
8571
|
"canonicalName": "LUCERN_REQUIRE_DEPLOYMENT_HOST_REGISTRY",
|
|
@@ -27664,7 +27714,7 @@ function createToolRegistryClient(config = {}) {
|
|
|
27664
27714
|
}
|
|
27665
27715
|
|
|
27666
27716
|
// ../sdk/src/version.ts
|
|
27667
|
-
var LUCERN_SDK_VERSION = "0.3.0-alpha.
|
|
27717
|
+
var LUCERN_SDK_VERSION = "0.3.0-alpha.12";
|
|
27668
27718
|
|
|
27669
27719
|
// ../sdk/src/workflowClient.ts
|
|
27670
27720
|
function normalizeLensQuery(value) {
|
|
@@ -34570,7 +34620,7 @@ function createLucernStandaloneMcpServer(options) {
|
|
|
34570
34620
|
});
|
|
34571
34621
|
const server = new McpServer({
|
|
34572
34622
|
name: "lucern-mcp",
|
|
34573
|
-
version: "0.3.0-alpha.
|
|
34623
|
+
version: "0.3.0-alpha.12"
|
|
34574
34624
|
});
|
|
34575
34625
|
registerTools(server, runtime);
|
|
34576
34626
|
const resources = registerResources(server, runtime, observationStore);
|