@enterprisestandard/esp 0.0.13 → 0.0.14-beta.20260331.2

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.
Files changed (2) hide show
  1. package/dist/index.d.ts +3 -1
  2. package/package.json +2 -2
package/dist/index.d.ts CHANGED
@@ -72,8 +72,10 @@ type RegisterSSOAppPayload = {
72
72
  displayName?: string;
73
73
  /** Optional default scope (e.g. openid profile email). */
74
74
  defaultScope?: string;
75
- /** Optional tenant/app identifier for correlation with ESA. */
75
+ /** Optional customer tenant identifier for the tenant-scoped issuer. */
76
76
  tenantId?: string;
77
+ /** Optional application identifier so one tenant can register multiple clients. */
78
+ applicationId?: string;
77
79
  };
78
80
  type RegisterSSOAppResult = {
79
81
  registered: true;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@enterprisestandard/esp",
3
- "version": "0.0.13",
3
+ "version": "0.0.14-beta.20260331.2",
4
4
  "description": "Enterprise Standard ESP helpers",
5
5
  "private": false,
6
6
  "author": "enterprisestandard",
@@ -21,7 +21,7 @@
21
21
  "./package.json": "./package.json"
22
22
  },
23
23
  "dependencies": {
24
- "@enterprisestandard/core": "^0.0.13",
24
+ "@enterprisestandard/core": "0.0.14-beta.20260331.2",
25
25
  "@standard-schema/spec": "^1.1.0"
26
26
  }
27
27
  }