@lucern/contracts 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/generated/convexSchemas.js +2 -2
- package/dist/generated/convexSchemas.js.map +1 -1
- package/dist/generated/infisicalRuntimeEnv.js +246 -0
- package/dist/generated/infisicalRuntimeEnv.js.map +1 -1
- package/dist/index.d.ts +1 -0
- package/dist/index.js +439 -2
- package/dist/index.js.map +1 -1
- package/dist/infisical-runtime.contract.d.ts +26 -0
- package/dist/infisical-runtime.contract.js +31 -0
- package/dist/infisical-runtime.contract.js.map +1 -1
- package/dist/manifests/infisical-runtime-manifest.d.ts +26 -0
- package/dist/manifests/infisical-runtime-manifest.js +31 -0
- package/dist/manifests/infisical-runtime-manifest.js.map +1 -1
- package/dist/permit-principal-projection.contract.d.ts +74 -0
- package/dist/permit-principal-projection.contract.js +161 -0
- package/dist/permit-principal-projection.contract.js.map +1 -0
- package/dist/proof-attestation.json +1 -1
- package/dist/schemas/index.js +3 -1
- package/dist/schemas/index.js.map +1 -1
- package/dist/schemas/manifest.d.ts +10 -10
- package/dist/schemas/manifest.js +3 -1
- package/dist/schemas/manifest.js.map +1 -1
- package/dist/schemas/tables/controlPlane/accessControl.d.ts +2 -2
- package/dist/schemas/tables/controlPlane/accessControl.js +3 -1
- package/dist/schemas/tables/controlPlane/accessControl.js.map +1 -1
- package/package.json +1 -1
|
@@ -532,6 +532,32 @@ declare const INFISICAL_RUNTIME_MANIFEST: {
|
|
|
532
532
|
readonly environmentPolicy: "environment_specific";
|
|
533
533
|
}];
|
|
534
534
|
readonly description: "Permit.io API key used for MC sync and policy checks. Must fail closed if missing.";
|
|
535
|
+
}, {
|
|
536
|
+
readonly id: "platform.permit.webhook-secret";
|
|
537
|
+
readonly canonicalName: "LUCERN_PERMIT_WEBHOOK_SECRET";
|
|
538
|
+
readonly aliases: readonly ["PERMIT_WEBHOOK_SECRET"];
|
|
539
|
+
readonly owner: "lucern_platform";
|
|
540
|
+
readonly scope: "environment";
|
|
541
|
+
readonly sourcePath: "/platform/permit";
|
|
542
|
+
readonly environmentPolicy: "environment_specific";
|
|
543
|
+
readonly required: true;
|
|
544
|
+
readonly secret: true;
|
|
545
|
+
readonly public: false;
|
|
546
|
+
readonly consumers: readonly ["mc-convex", "lucern-gateway", "mc-operator-tooling"];
|
|
547
|
+
readonly destinations: readonly [{
|
|
548
|
+
readonly kind: "convex";
|
|
549
|
+
readonly target: "master-control";
|
|
550
|
+
readonly environmentPolicy: "environment_specific";
|
|
551
|
+
}, {
|
|
552
|
+
readonly kind: "vercel";
|
|
553
|
+
readonly target: "lucern-gateway";
|
|
554
|
+
readonly environmentPolicy: "environment_specific";
|
|
555
|
+
}, {
|
|
556
|
+
readonly kind: "operator_local";
|
|
557
|
+
readonly target: "mc-credential-maintenance";
|
|
558
|
+
readonly environmentPolicy: "environment_specific";
|
|
559
|
+
}];
|
|
560
|
+
readonly description: "Permit.io webhook secret used by gateway and MC webhook handlers. Must fail closed if missing.";
|
|
535
561
|
}, {
|
|
536
562
|
readonly id: "platform.permit.pdp-url";
|
|
537
563
|
readonly canonicalName: "LUCERN_PERMIT_PDP_URL";
|
|
@@ -891,6 +891,37 @@ var PLATFORM_SECRET_DEFINITIONS = [
|
|
|
891
891
|
],
|
|
892
892
|
description: "Permit.io API key used for MC sync and policy checks. Must fail closed if missing."
|
|
893
893
|
},
|
|
894
|
+
{
|
|
895
|
+
id: "platform.permit.webhook-secret",
|
|
896
|
+
canonicalName: "LUCERN_PERMIT_WEBHOOK_SECRET",
|
|
897
|
+
aliases: ["PERMIT_WEBHOOK_SECRET"],
|
|
898
|
+
owner: "lucern_platform",
|
|
899
|
+
scope: "environment",
|
|
900
|
+
sourcePath: "/platform/permit",
|
|
901
|
+
environmentPolicy: "environment_specific",
|
|
902
|
+
required: true,
|
|
903
|
+
secret: true,
|
|
904
|
+
public: false,
|
|
905
|
+
consumers: ["mc-convex", "lucern-gateway", "mc-operator-tooling"],
|
|
906
|
+
destinations: [
|
|
907
|
+
{
|
|
908
|
+
kind: "convex",
|
|
909
|
+
target: "master-control",
|
|
910
|
+
environmentPolicy: "environment_specific"
|
|
911
|
+
},
|
|
912
|
+
{
|
|
913
|
+
kind: "vercel",
|
|
914
|
+
target: "lucern-gateway",
|
|
915
|
+
environmentPolicy: "environment_specific"
|
|
916
|
+
},
|
|
917
|
+
{
|
|
918
|
+
kind: "operator_local",
|
|
919
|
+
target: "mc-credential-maintenance",
|
|
920
|
+
environmentPolicy: "environment_specific"
|
|
921
|
+
}
|
|
922
|
+
],
|
|
923
|
+
description: "Permit.io webhook secret used by gateway and MC webhook handlers. Must fail closed if missing."
|
|
924
|
+
},
|
|
894
925
|
{
|
|
895
926
|
id: "platform.permit.pdp-url",
|
|
896
927
|
canonicalName: "LUCERN_PERMIT_PDP_URL",
|