@enterprisestandard/esv 0.0.5-beta.20260115.2 → 0.0.5-beta.20260115.3

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 CHANGED
@@ -9,7 +9,7 @@
9
9
  * - `ext.createGroupsOutboundTests()` - Tests app calling external IAM provider
10
10
  * - `ext.createGroupsInboundTests()` - Tests external IAM provider calling app
11
11
  */
12
- import { assert, assertValid, createFetcher, runTest, skipTest } from '../utils';
12
+ import { assert, assertValid, createFetcher, runTest, skipTest } from '../utils.js';
13
13
  /**
14
14
  * Gets a SCIM user validator
15
15
  * Requires either @enterprisestandard/react-validators-valibot or @enterprisestandard/react-validators-zod to be installed
package/dist/index.js CHANGED
@@ -46,15 +46,15 @@
46
46
  * ```
47
47
  */
48
48
  // IAM Validation
49
- export { createIAMTests, validateIAM } from './iam';
49
+ export { createIAMTests, validateIAM } from './iam/index.js';
50
50
  // SSO Validation
51
- export { createSSOTests, validateSSO } from './sso';
51
+ export { createSSOTests, validateSSO } from './sso/index.js';
52
52
  // Tenant Validation
53
- export { createTenantTests, validateTenant } from './tenant';
53
+ export { createTenantTests, validateTenant } from './tenant/index.js';
54
54
  // Utilities
55
- export { assert, assertEqual, assertValid, runTest, skipTest } from './utils';
55
+ export { assert, assertEqual, assertValid, runTest, skipTest } from './utils.js';
56
56
  // Workload Validation
57
- export { createWorkloadTests, validateWorkload } from './workload';
57
+ export { createWorkloadTests, validateWorkload } from './workload/index.js';
58
58
  /**
59
59
  * Helper to create a complete Vitest test suite
60
60
  *
package/dist/sso/index.js CHANGED
@@ -4,7 +4,7 @@
4
4
  * These tests validate that an application correctly implements
5
5
  * Enterprise Standard SSO (Single Sign-On) functionality.
6
6
  */
7
- import { assert, buildCookieHeader, createFetcher, parseCookies, runTest, skipTest } from '../utils';
7
+ import { assert, buildCookieHeader, createFetcher, parseCookies, runTest, skipTest } from '../utils.js';
8
8
  /**
9
9
  * Default configuration for SSO validation
10
10
  */
@@ -4,7 +4,7 @@
4
4
  * These tests validate that an application correctly implements
5
5
  * Enterprise Standard Tenant Management functionality.
6
6
  */
7
- import { assert, assertValid, createFetcher, runTest } from '../utils';
7
+ import { assert, assertValid, createFetcher, runTest } from '../utils.js';
8
8
  /**
9
9
  * Gets a tenant response validator
10
10
  * Requires either @enterprisestandard/react-validators-valibot or @enterprisestandard/react-validators-zod to be installed
@@ -4,7 +4,7 @@
4
4
  * These tests validate that an application correctly implements
5
5
  * Enterprise Standard Workload Identity authentication.
6
6
  */
7
- import { assert, assertValid, createFetcher, runTest, skipTest } from '../utils';
7
+ import { assert, assertValid, createFetcher, runTest, skipTest } from '../utils.js';
8
8
  /**
9
9
  * Gets a workload token response validator (workload tokens don't have id_token, only access_token)
10
10
  * This is different from OIDC tokenResponse which includes id_token
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@enterprisestandard/esv",
3
- "version": "0.0.5-beta.20260115.2",
3
+ "version": "0.0.5-beta.20260115.3",
4
4
  "description": "Enterprise Standard Validator - Validation tests for Enterprise Standard implementations",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",