@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
|
@@ -309,6 +309,8 @@ var shellTranslations = {
|
|
|
309
309
|
"upgrade.value.marketing": "Campaigns, funnel and content to grow your client base.",
|
|
310
310
|
"upgrade.value.reports": "Advanced reports and insights to make sharper decisions.",
|
|
311
311
|
"upgrade.value.fin_reconciliation": "Reconcile payments and keep your cash flow under control.",
|
|
312
|
+
"upgrade.value.assistant": "Your operations copilot \u2014 ask, analyze and act with AI.",
|
|
313
|
+
"upgrade.feature.assistant": "AI Assistant",
|
|
312
314
|
"billing.unlimited": "Unlimited",
|
|
313
315
|
"billing.upTo": "Up to {count}",
|
|
314
316
|
"limit.label.clients": "clients",
|
|
@@ -327,6 +329,7 @@ var shellTranslations = {
|
|
|
327
329
|
"limit.label.leads": "leads",
|
|
328
330
|
"limit.label.quotes": "quotes",
|
|
329
331
|
"limit.label.conversations_month": "monthly conversations",
|
|
332
|
+
"limit.label.ai_credits_month": "AI credits per month",
|
|
330
333
|
"limit.label.recipes": "recipes",
|
|
331
334
|
"limit.label.form_templates": "form templates",
|
|
332
335
|
"limit.label.documents_month": "monthly documents",
|
|
@@ -416,16 +419,71 @@ var shellTranslations = {
|
|
|
416
419
|
"chat.defaultTitle": "Assistant",
|
|
417
420
|
"chat.tryAsking": "Try asking",
|
|
418
421
|
"chat.fab.tryIt": "Try it",
|
|
419
|
-
"chat.
|
|
422
|
+
"chat.fab.dismiss": "Don't show suggestions here",
|
|
423
|
+
"chat.fab.open": "Open assistant",
|
|
424
|
+
"chat.fab.close": "Close assistant",
|
|
425
|
+
"chat.messagePlaceholder": "How can I help?",
|
|
426
|
+
"chat.send": "Send message",
|
|
420
427
|
"chat.notConfigured": "Assistant not configured \u2014 set chat.apiEndpoint to enable conversations.",
|
|
428
|
+
"chat.unavailable": "Assistant unavailable",
|
|
429
|
+
"chat.greeting": "How can I help?",
|
|
430
|
+
"chat.greetingNamed": "Hi {{name}}, how can I help?",
|
|
431
|
+
"chat.greetingHint": "Ask in plain words, or tap the mic and just say it.",
|
|
432
|
+
"chat.status.ready": "Ready",
|
|
433
|
+
"chat.status.working": "Working on it...",
|
|
434
|
+
"chat.status.offline": "Not connected",
|
|
435
|
+
"chat.jumpToLatest": "Latest",
|
|
421
436
|
"chat.confirmAction.title": "Confirm this action?",
|
|
422
437
|
"chat.confirmAction.confirm": "Confirm",
|
|
423
438
|
"chat.confirmAction.cancel": "Cancel",
|
|
439
|
+
"chat.confirmAction.always": "Always allow",
|
|
440
|
+
"chat.confirmAction.alwaysSession": "Allow this session",
|
|
441
|
+
"chat.confirmAction.alwaysHint": 'Stop asking before "{{label}}"',
|
|
442
|
+
"chat.confirmAction.autoApproved": "auto",
|
|
443
|
+
"chat.confirmAction.autoApprovedHint": "Ran without asking \u2014 you allowed this action",
|
|
424
444
|
"chat.confirmAction.blocked": "Respond to the confirmation above first",
|
|
445
|
+
"chat.confirmAction.showAll": "Add more fields ({{count}})",
|
|
446
|
+
"chat.confirmAction.showLess": "Show fewer fields",
|
|
447
|
+
// What a write ACTUALLY does, in the operator's words. The confirmation card
|
|
448
|
+
// looks up `chat.tool.<toolName>`; a tool with no entry falls back to its
|
|
449
|
+
// humanized name, never to the model-facing description.
|
|
450
|
+
"chat.tool.createAppointment": "Book an appointment",
|
|
451
|
+
"chat.tool.createRecord": "Create record",
|
|
452
|
+
"chat.tool.updateRecord": "Update record",
|
|
453
|
+
"chat.tool.deleteRecord": "Delete record",
|
|
454
|
+
"chat.tool.createOrder": "Create order",
|
|
455
|
+
"chat.tool.createInvoice": "Create invoice",
|
|
456
|
+
"chat.tool.markPaymentReceived": "Mark payment as received",
|
|
457
|
+
"chat.tool.createCampaign": "Create campaign",
|
|
458
|
+
"chat.tool.sendMessage": "Send message",
|
|
459
|
+
"chat.tool.seatGuests": "Seat guests",
|
|
460
|
+
"chat.tool.toggleMenuItemAvailability": "Change item availability",
|
|
461
|
+
"chat.autoApprovals.title": "Auto-approved actions",
|
|
462
|
+
"chat.autoApprovals.revoke": "Ask me again",
|
|
463
|
+
"chat.autoApprovals.revokeAll": "Ask for everything",
|
|
464
|
+
"chat.suggestions.show": "Show suggestions",
|
|
465
|
+
"chat.suggestions.hide": "Hide suggestions",
|
|
466
|
+
"chat.voice.start": "Speak",
|
|
467
|
+
"chat.voice.stop": "Stop recording",
|
|
468
|
+
"chat.voice.listening": "Listening \u2014 speak now",
|
|
469
|
+
"chat.voice.transcribing": "Transcribing...",
|
|
470
|
+
"chat.voice.denied": "Microphone blocked. Allow access in your browser settings.",
|
|
471
|
+
"chat.voice.network": "Could not reach the transcription service.",
|
|
472
|
+
"chat.voice.failed": "Could not hear that \u2014 try again.",
|
|
473
|
+
"chat.voice.speakOn": "Speak replies out loud",
|
|
474
|
+
"chat.voice.speakOff": "Mute spoken replies",
|
|
425
475
|
"chat.signingIn": "One moment \u2014 still confirming your session.",
|
|
426
476
|
"chat.history": "Previous conversations",
|
|
477
|
+
"chat.history.search": "Search conversations",
|
|
478
|
+
"chat.history.empty": "No conversations found.",
|
|
479
|
+
"chat.history.today": "Today",
|
|
480
|
+
"chat.history.yesterday": "Yesterday",
|
|
481
|
+
"chat.history.week": "Last 7 days",
|
|
482
|
+
"chat.history.older": "Earlier",
|
|
427
483
|
"chat.newConversation": "New conversation",
|
|
428
484
|
"chat.untitledConversation": "Untitled conversation",
|
|
485
|
+
"chat.recentConversations": "Recent",
|
|
486
|
+
"chat.backToConversations": "Back to conversations",
|
|
429
487
|
"chat.renameConversation": "Rename",
|
|
430
488
|
"chat.saveTitle": "Save title",
|
|
431
489
|
"chat.toolsAvailable": "{{count}} tools available",
|
|
@@ -1079,6 +1137,8 @@ var shellTranslations = {
|
|
|
1079
1137
|
"upgrade.value.marketing": "Campanhas, funil e conte\xFAdo para crescer sua base de clientes.",
|
|
1080
1138
|
"upgrade.value.reports": "Relat\xF3rios avan\xE7ados e insights para decidir com mais precis\xE3o.",
|
|
1081
1139
|
"upgrade.value.fin_reconciliation": "Concilie pagamentos e mantenha seu fluxo de caixa sob controle.",
|
|
1140
|
+
"upgrade.value.assistant": "Seu copiloto de opera\xE7\xF5es \u2014 pergunte, analise e aja com IA.",
|
|
1141
|
+
"upgrade.feature.assistant": "Assistente de IA",
|
|
1082
1142
|
"billing.unlimited": "Ilimitado",
|
|
1083
1143
|
"billing.upTo": "At\xE9 {count}",
|
|
1084
1144
|
"limit.label.clients": "clientes",
|
|
@@ -1088,6 +1148,7 @@ var shellTranslations = {
|
|
|
1088
1148
|
"limit.label.leads": "leads",
|
|
1089
1149
|
"limit.label.quotes": "or\xE7amentos",
|
|
1090
1150
|
"limit.label.conversations_month": "conversas mensais",
|
|
1151
|
+
"limit.label.ai_credits_month": "cr\xE9ditos de IA por m\xEAs",
|
|
1091
1152
|
"limit.label.recipes": "receitas",
|
|
1092
1153
|
"limit.label.form_templates": "modelos de formul\xE1rio",
|
|
1093
1154
|
"limit.label.documents_month": "documentos mensais",
|
|
@@ -1273,16 +1334,68 @@ var shellTranslations = {
|
|
|
1273
1334
|
"chat.defaultTitle": "Assistente",
|
|
1274
1335
|
"chat.tryAsking": "Experimente perguntar",
|
|
1275
1336
|
"chat.fab.tryIt": "Experimente",
|
|
1276
|
-
"chat.
|
|
1337
|
+
"chat.fab.dismiss": "N\xE3o mostrar sugest\xF5es aqui",
|
|
1338
|
+
"chat.fab.open": "Abrir assistente",
|
|
1339
|
+
"chat.fab.close": "Fechar assistente",
|
|
1340
|
+
"chat.messagePlaceholder": "Como posso ajudar?",
|
|
1341
|
+
"chat.send": "Enviar mensagem",
|
|
1277
1342
|
"chat.notConfigured": "Assistente n\xE3o configurado \u2014 defina chat.apiEndpoint para habilitar conversas.",
|
|
1343
|
+
"chat.unavailable": "Assistente indispon\xEDvel",
|
|
1344
|
+
"chat.greeting": "Como posso ajudar?",
|
|
1345
|
+
"chat.greetingNamed": "Oi {{name}}, como posso ajudar?",
|
|
1346
|
+
"chat.greetingHint": "Pe\xE7a com suas palavras, ou toque no microfone e fale.",
|
|
1347
|
+
"chat.status.ready": "Pronto",
|
|
1348
|
+
"chat.status.working": "Trabalhando nisso...",
|
|
1349
|
+
"chat.status.offline": "Sem conex\xE3o",
|
|
1350
|
+
"chat.jumpToLatest": "Ir para o fim",
|
|
1278
1351
|
"chat.confirmAction.title": "Confirmar esta a\xE7\xE3o?",
|
|
1279
1352
|
"chat.confirmAction.confirm": "Confirmar",
|
|
1280
1353
|
"chat.confirmAction.cancel": "Cancelar",
|
|
1354
|
+
"chat.confirmAction.always": "Sempre permitir",
|
|
1355
|
+
"chat.confirmAction.alwaysSession": "Permitir nesta sess\xE3o",
|
|
1356
|
+
"chat.confirmAction.alwaysHint": 'Parar de perguntar antes de "{{label}}"',
|
|
1357
|
+
"chat.confirmAction.autoApproved": "auto",
|
|
1358
|
+
"chat.confirmAction.autoApprovedHint": "Executado sem perguntar \u2014 voc\xEA liberou esta a\xE7\xE3o",
|
|
1281
1359
|
"chat.confirmAction.blocked": "Responda a confirma\xE7\xE3o acima primeiro",
|
|
1360
|
+
"chat.confirmAction.showAll": "Preencher mais campos ({{count}})",
|
|
1361
|
+
"chat.confirmAction.showLess": "Mostrar menos campos",
|
|
1362
|
+
"chat.tool.createAppointment": "Marcar hor\xE1rio",
|
|
1363
|
+
"chat.tool.createRecord": "Criar registro",
|
|
1364
|
+
"chat.tool.updateRecord": "Atualizar registro",
|
|
1365
|
+
"chat.tool.deleteRecord": "Excluir registro",
|
|
1366
|
+
"chat.tool.createOrder": "Criar pedido",
|
|
1367
|
+
"chat.tool.createInvoice": "Emitir cobran\xE7a",
|
|
1368
|
+
"chat.tool.markPaymentReceived": "Marcar pagamento como recebido",
|
|
1369
|
+
"chat.tool.createCampaign": "Criar campanha",
|
|
1370
|
+
"chat.tool.sendMessage": "Enviar mensagem",
|
|
1371
|
+
"chat.tool.seatGuests": "Acomodar clientes",
|
|
1372
|
+
"chat.tool.toggleMenuItemAvailability": "Alterar disponibilidade do item",
|
|
1373
|
+
"chat.autoApprovals.title": "A\xE7\xF5es liberadas",
|
|
1374
|
+
"chat.autoApprovals.revoke": "Voltar a perguntar",
|
|
1375
|
+
"chat.autoApprovals.revokeAll": "Perguntar sempre",
|
|
1376
|
+
"chat.suggestions.show": "Mostrar sugest\xF5es",
|
|
1377
|
+
"chat.suggestions.hide": "Ocultar sugest\xF5es",
|
|
1378
|
+
"chat.voice.start": "Falar",
|
|
1379
|
+
"chat.voice.stop": "Parar grava\xE7\xE3o",
|
|
1380
|
+
"chat.voice.listening": "Ouvindo \u2014 pode falar",
|
|
1381
|
+
"chat.voice.transcribing": "Transcrevendo...",
|
|
1382
|
+
"chat.voice.denied": "Microfone bloqueado. Libere o acesso nas configura\xE7\xF5es do navegador.",
|
|
1383
|
+
"chat.voice.network": "N\xE3o consegui falar com o servi\xE7o de transcri\xE7\xE3o.",
|
|
1384
|
+
"chat.voice.failed": "N\xE3o consegui entender \u2014 tente de novo.",
|
|
1385
|
+
"chat.voice.speakOn": "Responder em voz alta",
|
|
1386
|
+
"chat.voice.speakOff": "Silenciar respostas faladas",
|
|
1282
1387
|
"chat.signingIn": "Um instante \u2014 ainda estou confirmando sua sess\xE3o.",
|
|
1283
1388
|
"chat.history": "Conversas anteriores",
|
|
1389
|
+
"chat.history.search": "Buscar conversas",
|
|
1390
|
+
"chat.history.empty": "Nenhuma conversa encontrada.",
|
|
1391
|
+
"chat.history.today": "Hoje",
|
|
1392
|
+
"chat.history.yesterday": "Ontem",
|
|
1393
|
+
"chat.history.week": "\xDAltimos 7 dias",
|
|
1394
|
+
"chat.history.older": "Mais antigas",
|
|
1284
1395
|
"chat.newConversation": "Nova conversa",
|
|
1285
1396
|
"chat.untitledConversation": "Conversa sem t\xEDtulo",
|
|
1397
|
+
"chat.recentConversations": "Recentes",
|
|
1398
|
+
"chat.backToConversations": "Voltar para as conversas",
|
|
1286
1399
|
"chat.renameConversation": "Renomear",
|
|
1287
1400
|
"chat.saveTitle": "Salvar t\xEDtulo",
|
|
1288
1401
|
"chat.toolsAvailable": "{{count}} ferramentas dispon\xEDveis",
|
|
@@ -1871,5 +1984,5 @@ registerTranslations(coreTranslations);
|
|
|
1871
1984
|
registerTranslations(shellTranslations);
|
|
1872
1985
|
|
|
1873
1986
|
export { I18nProvider, coreTranslations, getCurrentLocale, mergeTranslations, registerTranslations, setCurrentLocale, setLocaleStore, useI18nConfig, useTranslation };
|
|
1874
|
-
//# sourceMappingURL=chunk-
|
|
1875
|
-
//# sourceMappingURL=chunk-
|
|
1987
|
+
//# sourceMappingURL=chunk-DZALZ6Q6.js.map
|
|
1988
|
+
//# sourceMappingURL=chunk-DZALZ6Q6.js.map
|