@versini/auth-common 1.0.1 → 2.0.0

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/index.d.ts CHANGED
@@ -2,7 +2,7 @@ declare const AUTH_TYPES: {
2
2
  ID_TOKEN: string;
3
3
  };
4
4
  declare const HEADERS: {
5
- tenantId: string;
5
+ CLIENT_ID: string;
6
6
  };
7
7
 
8
8
  export { AUTH_TYPES, HEADERS };
package/dist/index.js CHANGED
@@ -1,22 +1,22 @@
1
1
  /*!
2
- @versini/auth-common v1.0.1
2
+ @versini/auth-common v2.0.0
3
3
  © 2024 gizmette.com
4
4
  */
5
5
  try {
6
6
  window.__VERSINI_AUTH_COMMON__ || (window.__VERSINI_AUTH_COMMON__ = {
7
- version: "1.0.1",
8
- buildTime: "06/17/2024 03:05 PM EDT",
7
+ version: "2.0.0",
8
+ buildTime: "06/17/2024 04:39 PM EDT",
9
9
  homepage: "https://github.com/aversini/auth-client",
10
10
  license: "MIT"
11
11
  });
12
12
  } catch {
13
13
  }
14
- const _ = {
14
+ const i = {
15
15
  ID_TOKEN: "id_token"
16
- }, e = {
17
- tenantId: "X-Auth-TenantId"
16
+ }, t = {
17
+ CLIENT_ID: "X-Auth-ClientId"
18
18
  };
19
19
  export {
20
- _ as AUTH_TYPES,
21
- e as HEADERS
20
+ i as AUTH_TYPES,
21
+ t as HEADERS
22
22
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@versini/auth-common",
3
- "version": "1.0.1",
3
+ "version": "2.0.0",
4
4
  "license": "MIT",
5
5
  "author": "Arno Versini",
6
6
  "publishConfig": {
@@ -29,5 +29,5 @@
29
29
  "lint": "biome lint src",
30
30
  "start": "static-server dist --port 5173"
31
31
  },
32
- "gitHead": "ec250274e7b1c3b9c74a9cd7b24052a5e7e8a8c8"
32
+ "gitHead": "3dbd373d2db89d99a1ca36e0bbe1bc987d8eaaae"
33
33
  }