@enterprisestandard/esv 0.0.5-beta.20260114.2 → 0.0.5-beta.20260115.1
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/iam/index.js +3 -3
- package/dist/iam/index.js.map +4 -4
- package/dist/index.js +7 -7
- package/dist/index.js.map +6 -6
- package/dist/runner.js +118 -74
- package/dist/runner.js.map +7 -7
- package/dist/server/index.js +2 -2
- package/dist/server/index.js.map +3 -3
- package/dist/sso/index.js.map +2 -2
- package/dist/utils.d.ts.map +1 -1
- package/dist/workload/index.js +4 -4
- package/dist/workload/index.js.map +4 -4
- package/package.json +1 -1
package/dist/iam/index.js
CHANGED
|
@@ -4970,7 +4970,7 @@ async function getScimUserValidator() {
|
|
|
4970
4970
|
const { zodValidators: zodValidators2 } = await Promise.resolve().then(() => (init_dist3(), exports_dist3));
|
|
4971
4971
|
cachedScimUserValidator = zodValidators2.scimUser();
|
|
4972
4972
|
return cachedScimUserValidator;
|
|
4973
|
-
} catch (
|
|
4973
|
+
} catch (_error) {
|
|
4974
4974
|
throw new Error("IAM validation requires either @enterprisestandard/react-validators-valibot or @enterprisestandard/react-validators-zod to be installed. Please install one of these packages.");
|
|
4975
4975
|
}
|
|
4976
4976
|
}
|
|
@@ -4983,7 +4983,7 @@ function getScimGroupValidator() {
|
|
|
4983
4983
|
validate: (value) => {
|
|
4984
4984
|
if (typeof value !== "object" || value === null) {
|
|
4985
4985
|
return {
|
|
4986
|
-
issues: [{ message:
|
|
4986
|
+
issues: [{ message: `Expected object, got ${typeof value}` }]
|
|
4987
4987
|
};
|
|
4988
4988
|
}
|
|
4989
4989
|
const group = value;
|
|
@@ -5542,4 +5542,4 @@ export {
|
|
|
5542
5542
|
createIAMTests
|
|
5543
5543
|
};
|
|
5544
5544
|
|
|
5545
|
-
//# debugId=
|
|
5545
|
+
//# debugId=7EACDD75EFF40E3764756E2164756E21
|