@enterprisestandard/esv 0.0.5-beta.20260114.3 → 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 +11 -11
- 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/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;
|
|
@@ -5854,7 +5854,7 @@ function getWorkloadTokenResponseValidator() {
|
|
|
5854
5854
|
validate: (value) => {
|
|
5855
5855
|
if (typeof value !== "object" || value === null) {
|
|
5856
5856
|
return {
|
|
5857
|
-
issues: [{ message:
|
|
5857
|
+
issues: [{ message: `Expected object, got ${typeof value}` }]
|
|
5858
5858
|
};
|
|
5859
5859
|
}
|
|
5860
5860
|
const token = value;
|
|
@@ -5885,7 +5885,7 @@ function getJwksKeyValidator() {
|
|
|
5885
5885
|
validate: (value) => {
|
|
5886
5886
|
if (typeof value !== "object" || value === null) {
|
|
5887
5887
|
return {
|
|
5888
|
-
issues: [{ message:
|
|
5888
|
+
issues: [{ message: `Expected object, got ${typeof value}` }]
|
|
5889
5889
|
};
|
|
5890
5890
|
}
|
|
5891
5891
|
const key = value;
|
|
@@ -5910,7 +5910,7 @@ function getTokenValidationResultValidator() {
|
|
|
5910
5910
|
validate: (value) => {
|
|
5911
5911
|
if (typeof value !== "object" || value === null) {
|
|
5912
5912
|
return {
|
|
5913
|
-
issues: [{ message:
|
|
5913
|
+
issues: [{ message: `Expected object, got ${typeof value}` }]
|
|
5914
5914
|
};
|
|
5915
5915
|
}
|
|
5916
5916
|
const result = value;
|
|
@@ -6225,7 +6225,7 @@ async function getTenantResponseValidator() {
|
|
|
6225
6225
|
const { zodValidators: zodValidators2 } = await Promise.resolve().then(() => (init_dist3(), exports_dist3));
|
|
6226
6226
|
cachedValidator = zodValidators2.createTenantResponse();
|
|
6227
6227
|
return cachedValidator;
|
|
6228
|
-
} catch (
|
|
6228
|
+
} catch (_error) {
|
|
6229
6229
|
throw new Error("Tenant validation requires either @enterprisestandard/react-validators-valibot or @enterprisestandard/react-validators-zod to be installed. Please install one of these packages.");
|
|
6230
6230
|
}
|
|
6231
6231
|
}
|
|
@@ -6555,4 +6555,4 @@ export {
|
|
|
6555
6555
|
assert
|
|
6556
6556
|
};
|
|
6557
6557
|
|
|
6558
|
-
//# debugId=
|
|
6558
|
+
//# debugId=A942E1F0800AAF6464756E2164756E21
|