@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
|
@@ -738,6 +738,32 @@ declare const INFISICAL_SECRET_DEFINITIONS: readonly [{
|
|
|
738
738
|
readonly environmentPolicy: "environment_specific";
|
|
739
739
|
}];
|
|
740
740
|
readonly description: "Permit.io API key used for MC sync and policy checks. Must fail closed if missing.";
|
|
741
|
+
}, {
|
|
742
|
+
readonly id: "platform.permit.webhook-secret";
|
|
743
|
+
readonly canonicalName: "LUCERN_PERMIT_WEBHOOK_SECRET";
|
|
744
|
+
readonly aliases: readonly ["PERMIT_WEBHOOK_SECRET"];
|
|
745
|
+
readonly owner: "lucern_platform";
|
|
746
|
+
readonly scope: "environment";
|
|
747
|
+
readonly sourcePath: "/platform/permit";
|
|
748
|
+
readonly environmentPolicy: "environment_specific";
|
|
749
|
+
readonly required: true;
|
|
750
|
+
readonly secret: true;
|
|
751
|
+
readonly public: false;
|
|
752
|
+
readonly consumers: readonly ["mc-convex", "lucern-gateway", "mc-operator-tooling"];
|
|
753
|
+
readonly destinations: readonly [{
|
|
754
|
+
readonly kind: "convex";
|
|
755
|
+
readonly target: "master-control";
|
|
756
|
+
readonly environmentPolicy: "environment_specific";
|
|
757
|
+
}, {
|
|
758
|
+
readonly kind: "vercel";
|
|
759
|
+
readonly target: "lucern-gateway";
|
|
760
|
+
readonly environmentPolicy: "environment_specific";
|
|
761
|
+
}, {
|
|
762
|
+
readonly kind: "operator_local";
|
|
763
|
+
readonly target: "mc-credential-maintenance";
|
|
764
|
+
readonly environmentPolicy: "environment_specific";
|
|
765
|
+
}];
|
|
766
|
+
readonly description: "Permit.io webhook secret used by gateway and MC webhook handlers. Must fail closed if missing.";
|
|
741
767
|
}, {
|
|
742
768
|
readonly id: "platform.permit.pdp-url";
|
|
743
769
|
readonly canonicalName: "LUCERN_PERMIT_PDP_URL";
|
|
@@ -997,6 +997,37 @@ var PLATFORM_SECRET_DEFINITIONS = [
|
|
|
997
997
|
],
|
|
998
998
|
description: "Permit.io API key used for MC sync and policy checks. Must fail closed if missing."
|
|
999
999
|
},
|
|
1000
|
+
{
|
|
1001
|
+
id: "platform.permit.webhook-secret",
|
|
1002
|
+
canonicalName: "LUCERN_PERMIT_WEBHOOK_SECRET",
|
|
1003
|
+
aliases: ["PERMIT_WEBHOOK_SECRET"],
|
|
1004
|
+
owner: "lucern_platform",
|
|
1005
|
+
scope: "environment",
|
|
1006
|
+
sourcePath: "/platform/permit",
|
|
1007
|
+
environmentPolicy: "environment_specific",
|
|
1008
|
+
required: true,
|
|
1009
|
+
secret: true,
|
|
1010
|
+
public: false,
|
|
1011
|
+
consumers: ["mc-convex", "lucern-gateway", "mc-operator-tooling"],
|
|
1012
|
+
destinations: [
|
|
1013
|
+
{
|
|
1014
|
+
kind: "convex",
|
|
1015
|
+
target: "master-control",
|
|
1016
|
+
environmentPolicy: "environment_specific"
|
|
1017
|
+
},
|
|
1018
|
+
{
|
|
1019
|
+
kind: "vercel",
|
|
1020
|
+
target: "lucern-gateway",
|
|
1021
|
+
environmentPolicy: "environment_specific"
|
|
1022
|
+
},
|
|
1023
|
+
{
|
|
1024
|
+
kind: "operator_local",
|
|
1025
|
+
target: "mc-credential-maintenance",
|
|
1026
|
+
environmentPolicy: "environment_specific"
|
|
1027
|
+
}
|
|
1028
|
+
],
|
|
1029
|
+
description: "Permit.io webhook secret used by gateway and MC webhook handlers. Must fail closed if missing."
|
|
1030
|
+
},
|
|
1000
1031
|
{
|
|
1001
1032
|
id: "platform.permit.pdp-url",
|
|
1002
1033
|
canonicalName: "LUCERN_PERMIT_PDP_URL",
|