@owlmeans/client-auth 0.1.18-rc.39 → 0.1.18-rc.40
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/README.md +2 -2
- package/agent-meta/manifest.json +2 -2
- package/agent-meta/skills/client-auth/SKILL.md +1 -1
- package/build/entrypoints.d.ts +4 -2
- package/build/entrypoints.d.ts.map +1 -1
- package/build/login/i18n/fr.json +37 -0
- package/build/login/i18n.js +2 -0
- package/build/login/i18n.js.map +1 -1
- package/build/manager/entrypoints.d.ts +9 -1
- package/build/manager/entrypoints.d.ts.map +1 -1
- package/package.json +22 -22
- package/src/login/i18n/fr.json +37 -0
- package/src/login/i18n.ts +2 -0
- package/src/manager/README.md +1 -1
package/README.md
CHANGED
|
@@ -12,7 +12,7 @@ legacy). The server-side counterpart is `@owlmeans/server-auth`.
|
|
|
12
12
|
## Installation
|
|
13
13
|
|
|
14
14
|
```bash
|
|
15
|
-
bun add @owlmeans/client-auth@^0.1.18-rc.
|
|
15
|
+
bun add @owlmeans/client-auth@^0.1.18-rc.40
|
|
16
16
|
```
|
|
17
17
|
|
|
18
18
|
## Concepts
|
|
@@ -319,7 +319,7 @@ This package ships embedded agent skills under `agent-meta/`. After installing y
|
|
|
319
319
|
your project's skill store (`.agents/skills/`):
|
|
320
320
|
|
|
321
321
|
```sh
|
|
322
|
-
npx @owlmeans/agent-skills@^0.1.18-rc.
|
|
322
|
+
npx @owlmeans/agent-skills@^0.1.18-rc.31
|
|
323
323
|
```
|
|
324
324
|
|
|
325
325
|
The embedded files are version-matched to this package release. Do not edit them
|
package/agent-meta/manifest.json
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"schemaVersion": 2,
|
|
3
3
|
"package": "@owlmeans/client-auth",
|
|
4
|
-
"version": "0.1.18-rc.
|
|
5
|
-
"generatedAt": "2026-09-
|
|
4
|
+
"version": "0.1.18-rc.40",
|
|
5
|
+
"generatedAt": "2026-09-21T21:54:22.941Z",
|
|
6
6
|
"canonicalRepo": "https://github.com/owlmeans/common",
|
|
7
7
|
"entries": [
|
|
8
8
|
{
|
package/build/entrypoints.d.ts
CHANGED
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
/** Browser entrypoints for the authentication protocols every client may call. */
|
|
2
|
-
export declare const entrypoints: import("@owlmeans/client-entrypoint").ClientProtocolEntrypoint<
|
|
2
|
+
export declare const entrypoints: import("@owlmeans/client-entrypoint").ClientProtocolEntrypoint<import("@owlmeans/entrypoint").EntrypointProtocol<{
|
|
3
|
+
body: import("@owlmeans/auth").AuthToken;
|
|
4
|
+
}, import("@owlmeans/auth").AuthToken>>[];
|
|
3
5
|
/** Bind the external-authentication screen to one explicitly selected service. */
|
|
4
|
-
export declare const bindExternalAuthentication: (service: string) => import("@owlmeans/client-entrypoint").ClientProtocolEntrypoint<
|
|
6
|
+
export declare const bindExternalAuthentication: (service: string) => import("@owlmeans/client-entrypoint").ClientProtocolEntrypoint<import("@owlmeans/entrypoint").EntrypointProtocol<import("@owlmeans/entrypoint").OpenRequest, import("@owlmeans/entrypoint").OpenValue>>;
|
|
5
7
|
//# sourceMappingURL=entrypoints.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"entrypoints.d.ts","sourceRoot":"","sources":["../src/entrypoints.ts"],"names":[],"mappings":"AAIA,kFAAkF;AAClF,eAAO,MAAM,WAAW
|
|
1
|
+
{"version":3,"file":"entrypoints.d.ts","sourceRoot":"","sources":["../src/entrypoints.ts"],"names":[],"mappings":"AAIA,kFAAkF;AAClF,eAAO,MAAM,WAAW;;yCAA+C,CAAA;AAEvE,kFAAkF;AAClF,eAAO,MAAM,0BAA0B,YAAa,MAAM,4MAC+B,CAAA"}
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
{
|
|
2
|
+
"login": {
|
|
3
|
+
"title": "Connexion",
|
|
4
|
+
"subtitle": "Choisissez comment continuer.",
|
|
5
|
+
"busy": "Ouverture de la connexion…",
|
|
6
|
+
"empty": "Aucune méthode de connexion n’est configurée pour cette application.",
|
|
7
|
+
"method": {
|
|
8
|
+
"google": "Continuer avec Google",
|
|
9
|
+
"oidc": "Continuer avec {{provider}}",
|
|
10
|
+
"oidc-default": "Connexion / Inscription",
|
|
11
|
+
"oidc-client": "Continuer avec {{provider}}",
|
|
12
|
+
"basic-ed25519": "Se connecter avec une clé",
|
|
13
|
+
"pk-supervisor": "Clé secrète (opérateur)",
|
|
14
|
+
"wallet-consumer": "Portefeuille d’identité OwlMeans",
|
|
15
|
+
"one-time-token": "Se connecter avec un code e-mail",
|
|
16
|
+
"fallback": "Continuer avec {{method}}"
|
|
17
|
+
},
|
|
18
|
+
"terms": {
|
|
19
|
+
"agreement": "J’ai lu et j’accepte les {{terms}} et la {{privacy}}.",
|
|
20
|
+
"terms": "conditions générales",
|
|
21
|
+
"privacy": "politique de confidentialité",
|
|
22
|
+
"cookies": "Politique relative aux cookies",
|
|
23
|
+
"required": "Confirmez les conditions générales et la politique de confidentialité pour continuer."
|
|
24
|
+
},
|
|
25
|
+
"consent": {
|
|
26
|
+
"required": "La connexion enregistre un cookie de session. Acceptez les cookies essentiels pour continuer."
|
|
27
|
+
},
|
|
28
|
+
"credit": {
|
|
29
|
+
"powered": "Propulsé par OwlMeans"
|
|
30
|
+
},
|
|
31
|
+
"error": {
|
|
32
|
+
"failed": "La connexion n’a pas abouti. Réessayez.",
|
|
33
|
+
"blocked": "La fenêtre de connexion a été bloquée. Cliquez sur l’icône de fenêtre contextuelle bloquée dans la barre d’adresse pour l’ouvrir."
|
|
34
|
+
},
|
|
35
|
+
"orphaned": "Vous êtes connecté. Vous pouvez fermer cette fenêtre et continuer dans l’application."
|
|
36
|
+
}
|
|
37
|
+
}
|
package/build/login/i18n.js
CHANGED
|
@@ -6,6 +6,7 @@ import be from './i18n/be.json' with { type: 'json' };
|
|
|
6
6
|
import uk from './i18n/uk.json' with { type: 'json' };
|
|
7
7
|
import es from './i18n/es.json' with { type: 'json' };
|
|
8
8
|
import de from './i18n/de.json' with { type: 'json' };
|
|
9
|
+
import fr from './i18n/fr.json' with { type: 'json' };
|
|
9
10
|
/**
|
|
10
11
|
* The sign-in screen's copy, registered into the `auth` library resource.
|
|
11
12
|
*
|
|
@@ -22,4 +23,5 @@ addI18nLib('be', 'auth', be);
|
|
|
22
23
|
addI18nLib('uk', 'auth', uk);
|
|
23
24
|
addI18nLib('es', 'auth', es);
|
|
24
25
|
addI18nLib('de', 'auth', de);
|
|
26
|
+
addI18nLib('fr', 'auth', fr);
|
|
25
27
|
//# sourceMappingURL=i18n.js.map
|
package/build/login/i18n.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"i18n.js","sourceRoot":"","sources":["../../src/login/i18n.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,UAAU,EAAE,MAAM,gBAAgB,CAAA;AAE3C,OAAO,EAAE,MAAM,gBAAgB,CAAC,OAAO,IAAI,EAAE,MAAM,EAAE,CAAA;AACrD,OAAO,EAAE,MAAM,gBAAgB,CAAC,OAAO,IAAI,EAAE,MAAM,EAAE,CAAA;AACrD,OAAO,EAAE,MAAM,gBAAgB,CAAC,OAAO,IAAI,EAAE,MAAM,EAAE,CAAA;AACrD,OAAO,EAAE,MAAM,gBAAgB,CAAC,OAAO,IAAI,EAAE,MAAM,EAAE,CAAA;AACrD,OAAO,EAAE,MAAM,gBAAgB,CAAC,OAAO,IAAI,EAAE,MAAM,EAAE,CAAA;AACrD,OAAO,EAAE,MAAM,gBAAgB,CAAC,OAAO,IAAI,EAAE,MAAM,EAAE,CAAA;AACrD,OAAO,EAAE,MAAM,gBAAgB,CAAC,OAAO,IAAI,EAAE,MAAM,EAAE,CAAA;AAErD;;;;;;;;GAQG;AACH,UAAU,CAAC,IAAI,EAAE,MAAM,EAAE,EAAE,CAAC,CAAA;AAC5B,UAAU,CAAC,IAAI,EAAE,MAAM,EAAE,EAAE,CAAC,CAAA;AAC5B,UAAU,CAAC,IAAI,EAAE,MAAM,EAAE,EAAE,CAAC,CAAA;AAC5B,UAAU,CAAC,IAAI,EAAE,MAAM,EAAE,EAAE,CAAC,CAAA;AAC5B,UAAU,CAAC,IAAI,EAAE,MAAM,EAAE,EAAE,CAAC,CAAA;AAC5B,UAAU,CAAC,IAAI,EAAE,MAAM,EAAE,EAAE,CAAC,CAAA;AAC5B,UAAU,CAAC,IAAI,EAAE,MAAM,EAAE,EAAE,CAAC,CAAA"}
|
|
1
|
+
{"version":3,"file":"i18n.js","sourceRoot":"","sources":["../../src/login/i18n.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,UAAU,EAAE,MAAM,gBAAgB,CAAA;AAE3C,OAAO,EAAE,MAAM,gBAAgB,CAAC,OAAO,IAAI,EAAE,MAAM,EAAE,CAAA;AACrD,OAAO,EAAE,MAAM,gBAAgB,CAAC,OAAO,IAAI,EAAE,MAAM,EAAE,CAAA;AACrD,OAAO,EAAE,MAAM,gBAAgB,CAAC,OAAO,IAAI,EAAE,MAAM,EAAE,CAAA;AACrD,OAAO,EAAE,MAAM,gBAAgB,CAAC,OAAO,IAAI,EAAE,MAAM,EAAE,CAAA;AACrD,OAAO,EAAE,MAAM,gBAAgB,CAAC,OAAO,IAAI,EAAE,MAAM,EAAE,CAAA;AACrD,OAAO,EAAE,MAAM,gBAAgB,CAAC,OAAO,IAAI,EAAE,MAAM,EAAE,CAAA;AACrD,OAAO,EAAE,MAAM,gBAAgB,CAAC,OAAO,IAAI,EAAE,MAAM,EAAE,CAAA;AACrD,OAAO,EAAE,MAAM,gBAAgB,CAAC,OAAO,IAAI,EAAE,MAAM,EAAE,CAAA;AAErD;;;;;;;;GAQG;AACH,UAAU,CAAC,IAAI,EAAE,MAAM,EAAE,EAAE,CAAC,CAAA;AAC5B,UAAU,CAAC,IAAI,EAAE,MAAM,EAAE,EAAE,CAAC,CAAA;AAC5B,UAAU,CAAC,IAAI,EAAE,MAAM,EAAE,EAAE,CAAC,CAAA;AAC5B,UAAU,CAAC,IAAI,EAAE,MAAM,EAAE,EAAE,CAAC,CAAA;AAC5B,UAAU,CAAC,IAAI,EAAE,MAAM,EAAE,EAAE,CAAC,CAAA;AAC5B,UAAU,CAAC,IAAI,EAAE,MAAM,EAAE,EAAE,CAAC,CAAA;AAC5B,UAAU,CAAC,IAAI,EAAE,MAAM,EAAE,EAAE,CAAC,CAAA;AAC5B,UAAU,CAAC,IAAI,EAAE,MAAM,EAAE,EAAE,CAAC,CAAA"}
|
|
@@ -1,3 +1,11 @@
|
|
|
1
1
|
/** Browser entrypoints for the manager's authentication flows. */
|
|
2
|
-
export declare const entrypoints: import("@owlmeans/client-entrypoint").ClientProtocolEntrypoint<
|
|
2
|
+
export declare const entrypoints: (import("@owlmeans/client-entrypoint").ClientProtocolEntrypoint<import("@owlmeans/entrypoint").EntrypointProtocol<import("@owlmeans/entrypoint").OpenRequest, import("@owlmeans/entrypoint").OpenValue>> | import("@owlmeans/client-entrypoint").ClientProtocolEntrypoint<import("@owlmeans/entrypoint").EntrypointProtocol<{
|
|
3
|
+
body: import("@owlmeans/auth").AllowanceRequest;
|
|
4
|
+
}, import("@owlmeans/auth").AllowanceResponse>> | import("@owlmeans/client-entrypoint").ClientProtocolEntrypoint<import("@owlmeans/entrypoint").EntrypointProtocol<{
|
|
5
|
+
body: import("@owlmeans/auth").AuthCredentials;
|
|
6
|
+
}, import("@owlmeans/auth").AuthToken>> | import("@owlmeans/client-entrypoint").ClientProtocolEntrypoint<import("@owlmeans/entrypoint").EntrypointProtocol<{
|
|
7
|
+
query: Partial<import("@owlmeans/auth").AuthToken>;
|
|
8
|
+
}, undefined>> | import("@owlmeans/client-entrypoint").ClientProtocolEntrypoint<import("@owlmeans/entrypoint").EntrypointProtocol<{
|
|
9
|
+
query: import("@owlmeans/auth").AuthToken;
|
|
10
|
+
}, undefined>>)[];
|
|
3
11
|
//# sourceMappingURL=entrypoints.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"entrypoints.d.ts","sourceRoot":"","sources":["../../src/manager/entrypoints.ts"],"names":[],"mappings":"AAMA,kEAAkE;AAClE,eAAO,MAAM,WAAW,
|
|
1
|
+
{"version":3,"file":"entrypoints.d.ts","sourceRoot":"","sources":["../../src/manager/entrypoints.ts"],"names":[],"mappings":"AAMA,kEAAkE;AAClE,eAAO,MAAM,WAAW;;;;;;;;iBAUvB,CAAA"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@owlmeans/client-auth",
|
|
3
|
-
"version": "0.1.18-rc.
|
|
3
|
+
"version": "0.1.18-rc.40",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"scripts": {
|
|
@@ -50,26 +50,26 @@
|
|
|
50
50
|
}
|
|
51
51
|
},
|
|
52
52
|
"dependencies": {
|
|
53
|
-
"@owlmeans/auth": "^0.1.18-rc.
|
|
54
|
-
"@owlmeans/auth-common": "^0.1.18-rc.
|
|
55
|
-
"@owlmeans/basic-envelope": "^0.1.18-rc.
|
|
56
|
-
"@owlmeans/basic-keys": "^0.1.18-rc.
|
|
57
|
-
"@owlmeans/client": "^0.1.18-rc.
|
|
58
|
-
"@owlmeans/client-context": "^0.1.18-rc.
|
|
59
|
-
"@owlmeans/client-entrypoint": "^0.1.18-rc.
|
|
60
|
-
"@owlmeans/client-flow": "^0.1.18-rc.
|
|
61
|
-
"@owlmeans/client-resource": "^0.1.18-rc.
|
|
62
|
-
"@owlmeans/client-socket": "^0.1.18-rc.
|
|
63
|
-
"@owlmeans/config": "^0.1.18-rc.
|
|
64
|
-
"@owlmeans/context": "^0.1.18-rc.
|
|
65
|
-
"@owlmeans/did": "^0.1.18-rc.
|
|
66
|
-
"@owlmeans/entrypoint": "^0.1.18-rc.
|
|
67
|
-
"@owlmeans/error": "^0.1.18-rc.
|
|
68
|
-
"@owlmeans/flow": "^0.1.18-rc.
|
|
69
|
-
"@owlmeans/i18n": "^0.1.18-rc.
|
|
70
|
-
"@owlmeans/resource": "^0.1.18-rc.
|
|
71
|
-
"@owlmeans/socket": "^0.1.18-rc.
|
|
72
|
-
"@owlmeans/web-flow": "^0.1.18-rc.
|
|
53
|
+
"@owlmeans/auth": "^0.1.18-rc.29",
|
|
54
|
+
"@owlmeans/auth-common": "^0.1.18-rc.31",
|
|
55
|
+
"@owlmeans/basic-envelope": "^0.1.18-rc.30",
|
|
56
|
+
"@owlmeans/basic-keys": "^0.1.18-rc.32",
|
|
57
|
+
"@owlmeans/client": "^0.1.18-rc.34",
|
|
58
|
+
"@owlmeans/client-context": "^0.1.18-rc.32",
|
|
59
|
+
"@owlmeans/client-entrypoint": "^0.1.18-rc.31",
|
|
60
|
+
"@owlmeans/client-flow": "^0.1.18-rc.36",
|
|
61
|
+
"@owlmeans/client-resource": "^0.1.18-rc.31",
|
|
62
|
+
"@owlmeans/client-socket": "^0.1.18-rc.32",
|
|
63
|
+
"@owlmeans/config": "^0.1.18-rc.31",
|
|
64
|
+
"@owlmeans/context": "^0.1.18-rc.27",
|
|
65
|
+
"@owlmeans/did": "^0.1.18-rc.30",
|
|
66
|
+
"@owlmeans/entrypoint": "^0.1.18-rc.30",
|
|
67
|
+
"@owlmeans/error": "^0.1.18-rc.29",
|
|
68
|
+
"@owlmeans/flow": "^0.1.18-rc.32",
|
|
69
|
+
"@owlmeans/i18n": "^0.1.18-rc.30",
|
|
70
|
+
"@owlmeans/resource": "^0.1.18-rc.29",
|
|
71
|
+
"@owlmeans/socket": "^0.1.18-rc.27",
|
|
72
|
+
"@owlmeans/web-flow": "^0.1.18-rc.35",
|
|
73
73
|
"@scure/base": "^2.3.0"
|
|
74
74
|
},
|
|
75
75
|
"peerDependencies": {
|
|
@@ -78,7 +78,7 @@
|
|
|
78
78
|
},
|
|
79
79
|
"devDependencies": {
|
|
80
80
|
"@owlmeans/dep-config": "workspace:*",
|
|
81
|
-
"@owlmeans/test-auth": "^0.1.18-rc.
|
|
81
|
+
"@owlmeans/test-auth": "^0.1.18-rc.30",
|
|
82
82
|
"@types/bun": "^1.4.0",
|
|
83
83
|
"@types/react": "^19.2.17",
|
|
84
84
|
"nodemon": "^3.1.14",
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
{
|
|
2
|
+
"login": {
|
|
3
|
+
"title": "Connexion",
|
|
4
|
+
"subtitle": "Choisissez comment continuer.",
|
|
5
|
+
"busy": "Ouverture de la connexion…",
|
|
6
|
+
"empty": "Aucune méthode de connexion n’est configurée pour cette application.",
|
|
7
|
+
"method": {
|
|
8
|
+
"google": "Continuer avec Google",
|
|
9
|
+
"oidc": "Continuer avec {{provider}}",
|
|
10
|
+
"oidc-default": "Connexion / Inscription",
|
|
11
|
+
"oidc-client": "Continuer avec {{provider}}",
|
|
12
|
+
"basic-ed25519": "Se connecter avec une clé",
|
|
13
|
+
"pk-supervisor": "Clé secrète (opérateur)",
|
|
14
|
+
"wallet-consumer": "Portefeuille d’identité OwlMeans",
|
|
15
|
+
"one-time-token": "Se connecter avec un code e-mail",
|
|
16
|
+
"fallback": "Continuer avec {{method}}"
|
|
17
|
+
},
|
|
18
|
+
"terms": {
|
|
19
|
+
"agreement": "J’ai lu et j’accepte les {{terms}} et la {{privacy}}.",
|
|
20
|
+
"terms": "conditions générales",
|
|
21
|
+
"privacy": "politique de confidentialité",
|
|
22
|
+
"cookies": "Politique relative aux cookies",
|
|
23
|
+
"required": "Confirmez les conditions générales et la politique de confidentialité pour continuer."
|
|
24
|
+
},
|
|
25
|
+
"consent": {
|
|
26
|
+
"required": "La connexion enregistre un cookie de session. Acceptez les cookies essentiels pour continuer."
|
|
27
|
+
},
|
|
28
|
+
"credit": {
|
|
29
|
+
"powered": "Propulsé par OwlMeans"
|
|
30
|
+
},
|
|
31
|
+
"error": {
|
|
32
|
+
"failed": "La connexion n’a pas abouti. Réessayez.",
|
|
33
|
+
"blocked": "La fenêtre de connexion a été bloquée. Cliquez sur l’icône de fenêtre contextuelle bloquée dans la barre d’adresse pour l’ouvrir."
|
|
34
|
+
},
|
|
35
|
+
"orphaned": "Vous êtes connecté. Vous pouvez fermer cette fenêtre et continuer dans l’application."
|
|
36
|
+
}
|
|
37
|
+
}
|
package/src/login/i18n.ts
CHANGED
|
@@ -7,6 +7,7 @@ import be from './i18n/be.json' with { type: 'json' }
|
|
|
7
7
|
import uk from './i18n/uk.json' with { type: 'json' }
|
|
8
8
|
import es from './i18n/es.json' with { type: 'json' }
|
|
9
9
|
import de from './i18n/de.json' with { type: 'json' }
|
|
10
|
+
import fr from './i18n/fr.json' with { type: 'json' }
|
|
10
11
|
|
|
11
12
|
/**
|
|
12
13
|
* The sign-in screen's copy, registered into the `auth` library resource.
|
|
@@ -24,3 +25,4 @@ addI18nLib('be', 'auth', be)
|
|
|
24
25
|
addI18nLib('uk', 'auth', uk)
|
|
25
26
|
addI18nLib('es', 'auth', es)
|
|
26
27
|
addI18nLib('de', 'auth', de)
|
|
28
|
+
addI18nLib('fr', 'auth', fr)
|
package/src/manager/README.md
CHANGED
|
@@ -37,7 +37,7 @@ Comprehensive error handling for authentication scenarios:
|
|
|
37
37
|
This manager is part of the `@owlmeans/client-auth` package:
|
|
38
38
|
|
|
39
39
|
```bash
|
|
40
|
-
npm install @owlmeans/client-auth@^0.1.18-rc.
|
|
40
|
+
npm install @owlmeans/client-auth@^0.1.18-rc.40
|
|
41
41
|
```
|
|
42
42
|
|
|
43
43
|
## API Reference
|