@fiodos/web-core 0.1.10 → 0.1.11

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 (37) hide show
  1. package/dist/cjs/api/backendClient.js +20 -0
  2. package/dist/cjs/config/types.d.ts +18 -0
  3. package/dist/cjs/config/types.js +6 -1
  4. package/dist/cjs/controller/AgentController.d.ts +84 -1
  5. package/dist/cjs/controller/AgentController.js +515 -75
  6. package/dist/cjs/index.d.ts +3 -3
  7. package/dist/cjs/index.js +2 -1
  8. package/dist/cjs/orb/mountOrb.d.ts +6 -0
  9. package/dist/cjs/orb/mountOrb.js +229 -33
  10. package/dist/cjs/orb/orbView.d.ts +2 -0
  11. package/dist/cjs/orb/publishedConfig.d.ts +18 -0
  12. package/dist/cjs/orb/publishedConfig.js +6 -0
  13. package/dist/cjs/speech/bubbleDictation.d.ts +11 -0
  14. package/dist/cjs/speech/bubbleDictation.js +88 -0
  15. package/dist/cjs/ui/messages.d.ts +15 -0
  16. package/dist/cjs/ui/messages.js +12 -0
  17. package/dist/cjs/version.d.ts +1 -1
  18. package/dist/cjs/version.js +1 -1
  19. package/dist/esm/api/backendClient.js +20 -0
  20. package/dist/esm/config/types.d.ts +18 -0
  21. package/dist/esm/config/types.js +5 -0
  22. package/dist/esm/controller/AgentController.d.ts +84 -1
  23. package/dist/esm/controller/AgentController.js +517 -77
  24. package/dist/esm/index.d.ts +3 -3
  25. package/dist/esm/index.js +1 -1
  26. package/dist/esm/orb/mountOrb.d.ts +6 -0
  27. package/dist/esm/orb/mountOrb.js +230 -34
  28. package/dist/esm/orb/orbView.d.ts +2 -0
  29. package/dist/esm/orb/publishedConfig.d.ts +18 -0
  30. package/dist/esm/orb/publishedConfig.js +6 -0
  31. package/dist/esm/speech/bubbleDictation.d.ts +11 -0
  32. package/dist/esm/speech/bubbleDictation.js +84 -0
  33. package/dist/esm/ui/messages.d.ts +15 -0
  34. package/dist/esm/ui/messages.js +12 -0
  35. package/dist/esm/version.d.ts +1 -1
  36. package/dist/esm/version.js +1 -1
  37. package/package.json +1 -1
@@ -10,7 +10,13 @@ const en = {
10
10
  textPlaceholder: 'Type a message…',
11
11
  keyboardChipLabel: 'Type instead of talking',
12
12
  sendLabel: 'Send',
13
+ micLabel: 'Dictate message',
14
+ micStopLabel: 'Stop dictating',
13
15
  voiceUnavailable: 'Voice input is not available in this browser. You can type instead.',
16
+ activityThinking: 'Thinking…',
17
+ activityNavigating: 'Navigating to {label}…',
18
+ activityExecuting: 'Running {label}…',
19
+ activityWaitingConfirmation: 'Waiting for your confirmation…',
14
20
  };
15
21
  const es = {
16
22
  orbLabel: 'Asistente de voz',
@@ -24,7 +30,13 @@ const es = {
24
30
  textPlaceholder: 'Escribe un mensaje…',
25
31
  keyboardChipLabel: 'Escribir en lugar de hablar',
26
32
  sendLabel: 'Enviar',
33
+ micLabel: 'Dictar mensaje',
34
+ micStopLabel: 'Detener dictado',
27
35
  voiceUnavailable: 'La entrada por voz no está disponible en este navegador. Puedes escribir.',
36
+ activityThinking: 'Pensando…',
37
+ activityNavigating: 'Navegando a {label}…',
38
+ activityExecuting: 'Ejecutando {label}…',
39
+ activityWaitingConfirmation: 'Esperando tu confirmación…',
28
40
  };
29
41
  const CATALOGS = { en, es };
30
42
  function baseLanguage(locale) {
@@ -5,5 +5,5 @@
5
5
  * Auto-generated by scripts/sync-sdk-version.mjs from package.json. Do not edit
6
6
  * by hand — change package.json `version` and re-run the sync/release script.
7
7
  */
8
- export declare const SDK_VERSION = "0.1.10";
8
+ export declare const SDK_VERSION = "0.1.11";
9
9
  export declare const SDK_PACKAGE = "@fiodos/web-core";
@@ -5,5 +5,5 @@
5
5
  * Auto-generated by scripts/sync-sdk-version.mjs from package.json. Do not edit
6
6
  * by hand — change package.json `version` and re-run the sync/release script.
7
7
  */
8
- export const SDK_VERSION = '0.1.10';
8
+ export const SDK_VERSION = '0.1.11';
9
9
  export const SDK_PACKAGE = '@fiodos/web-core';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fiodos/web-core",
3
- "version": "0.1.10",
3
+ "version": "0.1.11",
4
4
  "description": "Framework-agnostic browser layer for the Fiodos agent: a vanilla AgentController (orchestrator), DOM adapters (navigation/voice/storage), HTTP client and decision engine over @fiodos/core. Shared base for @fiodos/vue, @fiodos/svelte and @fiodos/angular (no framework imports).",
5
5
  "license": "SEE LICENSE IN LICENSE",
6
6
  "publishConfig": {