@fayz-ai/core 0.8.2 → 0.8.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/{chunk-SO3VUKGZ.cjs → chunk-CATASHPK.cjs} +117 -4
- package/dist/chunk-CATASHPK.cjs.map +1 -0
- package/dist/{chunk-JHGXROKV.js → chunk-DZALZ6Q6.js} +117 -4
- package/dist/chunk-DZALZ6Q6.js.map +1 -0
- package/dist/{chunk-CYAWDW44.cjs → chunk-KSI2L3E4.cjs} +6 -4
- package/dist/chunk-KSI2L3E4.cjs.map +1 -0
- package/dist/{chunk-XJKW2JRW.js → chunk-TYPVSWLG.js} +6 -4
- package/dist/chunk-TYPVSWLG.js.map +1 -0
- package/dist/data/archetype.d.ts.map +1 -1
- package/dist/data/index.cjs +12 -12
- package/dist/data/index.js +1 -1
- package/dist/data/refresh.d.ts +36 -0
- package/dist/data/refresh.d.ts.map +1 -0
- package/dist/data/supabase.d.ts.map +1 -1
- package/dist/data/types.d.ts +6 -0
- package/dist/data/types.d.ts.map +1 -1
- package/dist/i18n/index.cjs +10 -10
- package/dist/i18n/index.js +1 -1
- package/dist/i18n/shell-translations.d.ts.map +1 -1
- package/dist/index.cjs +697 -88
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.ts +5 -1
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +652 -59
- package/dist/index.js.map +1 -1
- package/dist/search/engine.d.ts +12 -0
- package/dist/search/engine.d.ts.map +1 -0
- package/dist/search/index.d.ts +5 -0
- package/dist/search/index.d.ts.map +1 -0
- package/dist/search/text.d.ts +37 -0
- package/dist/search/text.d.ts.map +1 -0
- package/dist/search/types.d.ts +72 -0
- package/dist/search/types.d.ts.map +1 -0
- package/dist/types/org.d.ts +28 -0
- package/dist/types/org.d.ts.map +1 -1
- package/dist/types/plugins.d.ts +4 -0
- package/dist/types/plugins.d.ts.map +1 -1
- package/package.json +2 -2
- package/src/data/archetype.ts +4 -2
- package/src/data/refresh.ts +105 -0
- package/src/data/supabase.ts +3 -1
- package/src/data/types.ts +6 -0
- package/src/i18n/shell-translations.ts +115 -2
- package/src/index.ts +19 -1
- package/src/search/engine.ts +551 -0
- package/src/search/index.ts +25 -0
- package/src/search/text.ts +206 -0
- package/src/search/types.ts +75 -0
- package/src/types/org.ts +29 -0
- package/src/types/plugins.ts +4 -0
- package/dist/chunk-CYAWDW44.cjs.map +0 -1
- package/dist/chunk-JHGXROKV.js.map +0 -1
- package/dist/chunk-SO3VUKGZ.cjs.map +0 -1
- package/dist/chunk-XJKW2JRW.js.map +0 -1
|
@@ -331,6 +331,8 @@ var shellTranslations = {
|
|
|
331
331
|
"upgrade.value.marketing": "Campaigns, funnel and content to grow your client base.",
|
|
332
332
|
"upgrade.value.reports": "Advanced reports and insights to make sharper decisions.",
|
|
333
333
|
"upgrade.value.fin_reconciliation": "Reconcile payments and keep your cash flow under control.",
|
|
334
|
+
"upgrade.value.assistant": "Your operations copilot \u2014 ask, analyze and act with AI.",
|
|
335
|
+
"upgrade.feature.assistant": "AI Assistant",
|
|
334
336
|
"billing.unlimited": "Unlimited",
|
|
335
337
|
"billing.upTo": "Up to {count}",
|
|
336
338
|
"limit.label.clients": "clients",
|
|
@@ -349,6 +351,7 @@ var shellTranslations = {
|
|
|
349
351
|
"limit.label.leads": "leads",
|
|
350
352
|
"limit.label.quotes": "quotes",
|
|
351
353
|
"limit.label.conversations_month": "monthly conversations",
|
|
354
|
+
"limit.label.ai_credits_month": "AI credits per month",
|
|
352
355
|
"limit.label.recipes": "recipes",
|
|
353
356
|
"limit.label.form_templates": "form templates",
|
|
354
357
|
"limit.label.documents_month": "monthly documents",
|
|
@@ -438,16 +441,71 @@ var shellTranslations = {
|
|
|
438
441
|
"chat.defaultTitle": "Assistant",
|
|
439
442
|
"chat.tryAsking": "Try asking",
|
|
440
443
|
"chat.fab.tryIt": "Try it",
|
|
441
|
-
"chat.
|
|
444
|
+
"chat.fab.dismiss": "Don't show suggestions here",
|
|
445
|
+
"chat.fab.open": "Open assistant",
|
|
446
|
+
"chat.fab.close": "Close assistant",
|
|
447
|
+
"chat.messagePlaceholder": "How can I help?",
|
|
448
|
+
"chat.send": "Send message",
|
|
442
449
|
"chat.notConfigured": "Assistant not configured \u2014 set chat.apiEndpoint to enable conversations.",
|
|
450
|
+
"chat.unavailable": "Assistant unavailable",
|
|
451
|
+
"chat.greeting": "How can I help?",
|
|
452
|
+
"chat.greetingNamed": "Hi {{name}}, how can I help?",
|
|
453
|
+
"chat.greetingHint": "Ask in plain words, or tap the mic and just say it.",
|
|
454
|
+
"chat.status.ready": "Ready",
|
|
455
|
+
"chat.status.working": "Working on it...",
|
|
456
|
+
"chat.status.offline": "Not connected",
|
|
457
|
+
"chat.jumpToLatest": "Latest",
|
|
443
458
|
"chat.confirmAction.title": "Confirm this action?",
|
|
444
459
|
"chat.confirmAction.confirm": "Confirm",
|
|
445
460
|
"chat.confirmAction.cancel": "Cancel",
|
|
461
|
+
"chat.confirmAction.always": "Always allow",
|
|
462
|
+
"chat.confirmAction.alwaysSession": "Allow this session",
|
|
463
|
+
"chat.confirmAction.alwaysHint": 'Stop asking before "{{label}}"',
|
|
464
|
+
"chat.confirmAction.autoApproved": "auto",
|
|
465
|
+
"chat.confirmAction.autoApprovedHint": "Ran without asking \u2014 you allowed this action",
|
|
446
466
|
"chat.confirmAction.blocked": "Respond to the confirmation above first",
|
|
467
|
+
"chat.confirmAction.showAll": "Add more fields ({{count}})",
|
|
468
|
+
"chat.confirmAction.showLess": "Show fewer fields",
|
|
469
|
+
// What a write ACTUALLY does, in the operator's words. The confirmation card
|
|
470
|
+
// looks up `chat.tool.<toolName>`; a tool with no entry falls back to its
|
|
471
|
+
// humanized name, never to the model-facing description.
|
|
472
|
+
"chat.tool.createAppointment": "Book an appointment",
|
|
473
|
+
"chat.tool.createRecord": "Create record",
|
|
474
|
+
"chat.tool.updateRecord": "Update record",
|
|
475
|
+
"chat.tool.deleteRecord": "Delete record",
|
|
476
|
+
"chat.tool.createOrder": "Create order",
|
|
477
|
+
"chat.tool.createInvoice": "Create invoice",
|
|
478
|
+
"chat.tool.markPaymentReceived": "Mark payment as received",
|
|
479
|
+
"chat.tool.createCampaign": "Create campaign",
|
|
480
|
+
"chat.tool.sendMessage": "Send message",
|
|
481
|
+
"chat.tool.seatGuests": "Seat guests",
|
|
482
|
+
"chat.tool.toggleMenuItemAvailability": "Change item availability",
|
|
483
|
+
"chat.autoApprovals.title": "Auto-approved actions",
|
|
484
|
+
"chat.autoApprovals.revoke": "Ask me again",
|
|
485
|
+
"chat.autoApprovals.revokeAll": "Ask for everything",
|
|
486
|
+
"chat.suggestions.show": "Show suggestions",
|
|
487
|
+
"chat.suggestions.hide": "Hide suggestions",
|
|
488
|
+
"chat.voice.start": "Speak",
|
|
489
|
+
"chat.voice.stop": "Stop recording",
|
|
490
|
+
"chat.voice.listening": "Listening \u2014 speak now",
|
|
491
|
+
"chat.voice.transcribing": "Transcribing...",
|
|
492
|
+
"chat.voice.denied": "Microphone blocked. Allow access in your browser settings.",
|
|
493
|
+
"chat.voice.network": "Could not reach the transcription service.",
|
|
494
|
+
"chat.voice.failed": "Could not hear that \u2014 try again.",
|
|
495
|
+
"chat.voice.speakOn": "Speak replies out loud",
|
|
496
|
+
"chat.voice.speakOff": "Mute spoken replies",
|
|
447
497
|
"chat.signingIn": "One moment \u2014 still confirming your session.",
|
|
448
498
|
"chat.history": "Previous conversations",
|
|
499
|
+
"chat.history.search": "Search conversations",
|
|
500
|
+
"chat.history.empty": "No conversations found.",
|
|
501
|
+
"chat.history.today": "Today",
|
|
502
|
+
"chat.history.yesterday": "Yesterday",
|
|
503
|
+
"chat.history.week": "Last 7 days",
|
|
504
|
+
"chat.history.older": "Earlier",
|
|
449
505
|
"chat.newConversation": "New conversation",
|
|
450
506
|
"chat.untitledConversation": "Untitled conversation",
|
|
507
|
+
"chat.recentConversations": "Recent",
|
|
508
|
+
"chat.backToConversations": "Back to conversations",
|
|
451
509
|
"chat.renameConversation": "Rename",
|
|
452
510
|
"chat.saveTitle": "Save title",
|
|
453
511
|
"chat.toolsAvailable": "{{count}} tools available",
|
|
@@ -1101,6 +1159,8 @@ var shellTranslations = {
|
|
|
1101
1159
|
"upgrade.value.marketing": "Campanhas, funil e conte\xFAdo para crescer sua base de clientes.",
|
|
1102
1160
|
"upgrade.value.reports": "Relat\xF3rios avan\xE7ados e insights para decidir com mais precis\xE3o.",
|
|
1103
1161
|
"upgrade.value.fin_reconciliation": "Concilie pagamentos e mantenha seu fluxo de caixa sob controle.",
|
|
1162
|
+
"upgrade.value.assistant": "Seu copiloto de opera\xE7\xF5es \u2014 pergunte, analise e aja com IA.",
|
|
1163
|
+
"upgrade.feature.assistant": "Assistente de IA",
|
|
1104
1164
|
"billing.unlimited": "Ilimitado",
|
|
1105
1165
|
"billing.upTo": "At\xE9 {count}",
|
|
1106
1166
|
"limit.label.clients": "clientes",
|
|
@@ -1110,6 +1170,7 @@ var shellTranslations = {
|
|
|
1110
1170
|
"limit.label.leads": "leads",
|
|
1111
1171
|
"limit.label.quotes": "or\xE7amentos",
|
|
1112
1172
|
"limit.label.conversations_month": "conversas mensais",
|
|
1173
|
+
"limit.label.ai_credits_month": "cr\xE9ditos de IA por m\xEAs",
|
|
1113
1174
|
"limit.label.recipes": "receitas",
|
|
1114
1175
|
"limit.label.form_templates": "modelos de formul\xE1rio",
|
|
1115
1176
|
"limit.label.documents_month": "documentos mensais",
|
|
@@ -1295,16 +1356,68 @@ var shellTranslations = {
|
|
|
1295
1356
|
"chat.defaultTitle": "Assistente",
|
|
1296
1357
|
"chat.tryAsking": "Experimente perguntar",
|
|
1297
1358
|
"chat.fab.tryIt": "Experimente",
|
|
1298
|
-
"chat.
|
|
1359
|
+
"chat.fab.dismiss": "N\xE3o mostrar sugest\xF5es aqui",
|
|
1360
|
+
"chat.fab.open": "Abrir assistente",
|
|
1361
|
+
"chat.fab.close": "Fechar assistente",
|
|
1362
|
+
"chat.messagePlaceholder": "Como posso ajudar?",
|
|
1363
|
+
"chat.send": "Enviar mensagem",
|
|
1299
1364
|
"chat.notConfigured": "Assistente n\xE3o configurado \u2014 defina chat.apiEndpoint para habilitar conversas.",
|
|
1365
|
+
"chat.unavailable": "Assistente indispon\xEDvel",
|
|
1366
|
+
"chat.greeting": "Como posso ajudar?",
|
|
1367
|
+
"chat.greetingNamed": "Oi {{name}}, como posso ajudar?",
|
|
1368
|
+
"chat.greetingHint": "Pe\xE7a com suas palavras, ou toque no microfone e fale.",
|
|
1369
|
+
"chat.status.ready": "Pronto",
|
|
1370
|
+
"chat.status.working": "Trabalhando nisso...",
|
|
1371
|
+
"chat.status.offline": "Sem conex\xE3o",
|
|
1372
|
+
"chat.jumpToLatest": "Ir para o fim",
|
|
1300
1373
|
"chat.confirmAction.title": "Confirmar esta a\xE7\xE3o?",
|
|
1301
1374
|
"chat.confirmAction.confirm": "Confirmar",
|
|
1302
1375
|
"chat.confirmAction.cancel": "Cancelar",
|
|
1376
|
+
"chat.confirmAction.always": "Sempre permitir",
|
|
1377
|
+
"chat.confirmAction.alwaysSession": "Permitir nesta sess\xE3o",
|
|
1378
|
+
"chat.confirmAction.alwaysHint": 'Parar de perguntar antes de "{{label}}"',
|
|
1379
|
+
"chat.confirmAction.autoApproved": "auto",
|
|
1380
|
+
"chat.confirmAction.autoApprovedHint": "Executado sem perguntar \u2014 voc\xEA liberou esta a\xE7\xE3o",
|
|
1303
1381
|
"chat.confirmAction.blocked": "Responda a confirma\xE7\xE3o acima primeiro",
|
|
1382
|
+
"chat.confirmAction.showAll": "Preencher mais campos ({{count}})",
|
|
1383
|
+
"chat.confirmAction.showLess": "Mostrar menos campos",
|
|
1384
|
+
"chat.tool.createAppointment": "Marcar hor\xE1rio",
|
|
1385
|
+
"chat.tool.createRecord": "Criar registro",
|
|
1386
|
+
"chat.tool.updateRecord": "Atualizar registro",
|
|
1387
|
+
"chat.tool.deleteRecord": "Excluir registro",
|
|
1388
|
+
"chat.tool.createOrder": "Criar pedido",
|
|
1389
|
+
"chat.tool.createInvoice": "Emitir cobran\xE7a",
|
|
1390
|
+
"chat.tool.markPaymentReceived": "Marcar pagamento como recebido",
|
|
1391
|
+
"chat.tool.createCampaign": "Criar campanha",
|
|
1392
|
+
"chat.tool.sendMessage": "Enviar mensagem",
|
|
1393
|
+
"chat.tool.seatGuests": "Acomodar clientes",
|
|
1394
|
+
"chat.tool.toggleMenuItemAvailability": "Alterar disponibilidade do item",
|
|
1395
|
+
"chat.autoApprovals.title": "A\xE7\xF5es liberadas",
|
|
1396
|
+
"chat.autoApprovals.revoke": "Voltar a perguntar",
|
|
1397
|
+
"chat.autoApprovals.revokeAll": "Perguntar sempre",
|
|
1398
|
+
"chat.suggestions.show": "Mostrar sugest\xF5es",
|
|
1399
|
+
"chat.suggestions.hide": "Ocultar sugest\xF5es",
|
|
1400
|
+
"chat.voice.start": "Falar",
|
|
1401
|
+
"chat.voice.stop": "Parar grava\xE7\xE3o",
|
|
1402
|
+
"chat.voice.listening": "Ouvindo \u2014 pode falar",
|
|
1403
|
+
"chat.voice.transcribing": "Transcrevendo...",
|
|
1404
|
+
"chat.voice.denied": "Microfone bloqueado. Libere o acesso nas configura\xE7\xF5es do navegador.",
|
|
1405
|
+
"chat.voice.network": "N\xE3o consegui falar com o servi\xE7o de transcri\xE7\xE3o.",
|
|
1406
|
+
"chat.voice.failed": "N\xE3o consegui entender \u2014 tente de novo.",
|
|
1407
|
+
"chat.voice.speakOn": "Responder em voz alta",
|
|
1408
|
+
"chat.voice.speakOff": "Silenciar respostas faladas",
|
|
1304
1409
|
"chat.signingIn": "Um instante \u2014 ainda estou confirmando sua sess\xE3o.",
|
|
1305
1410
|
"chat.history": "Conversas anteriores",
|
|
1411
|
+
"chat.history.search": "Buscar conversas",
|
|
1412
|
+
"chat.history.empty": "Nenhuma conversa encontrada.",
|
|
1413
|
+
"chat.history.today": "Hoje",
|
|
1414
|
+
"chat.history.yesterday": "Ontem",
|
|
1415
|
+
"chat.history.week": "\xDAltimos 7 dias",
|
|
1416
|
+
"chat.history.older": "Mais antigas",
|
|
1306
1417
|
"chat.newConversation": "Nova conversa",
|
|
1307
1418
|
"chat.untitledConversation": "Conversa sem t\xEDtulo",
|
|
1419
|
+
"chat.recentConversations": "Recentes",
|
|
1420
|
+
"chat.backToConversations": "Voltar para as conversas",
|
|
1308
1421
|
"chat.renameConversation": "Renomear",
|
|
1309
1422
|
"chat.saveTitle": "Salvar t\xEDtulo",
|
|
1310
1423
|
"chat.toolsAvailable": "{{count}} ferramentas dispon\xEDveis",
|
|
@@ -1901,5 +2014,5 @@ exports.setCurrentLocale = setCurrentLocale;
|
|
|
1901
2014
|
exports.setLocaleStore = setLocaleStore;
|
|
1902
2015
|
exports.useI18nConfig = useI18nConfig;
|
|
1903
2016
|
exports.useTranslation = useTranslation;
|
|
1904
|
-
//# sourceMappingURL=chunk-
|
|
1905
|
-
//# sourceMappingURL=chunk-
|
|
2017
|
+
//# sourceMappingURL=chunk-CATASHPK.cjs.map
|
|
2018
|
+
//# sourceMappingURL=chunk-CATASHPK.cjs.map
|