@bcrumbs.net/inbox 0.0.28 → 0.0.32

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 (103) hide show
  1. package/assets/ar/inbox.json +225 -162
  2. package/assets/en/inbox.json +227 -163
  3. package/index.cjs.d.ts +1 -1
  4. package/index.cjs.js +26100 -5615
  5. package/index.esm.d.ts +1 -1
  6. package/index.esm.js +26107 -5622
  7. package/package.json +5 -4
  8. package/src/app/ai/components/TestNumbers/AddTestNumber.d.ts +8 -0
  9. package/src/app/ai/components/TestNumbers/TestNumberCard.d.ts +19 -0
  10. package/src/app/ai/components/TestNumbers/TestNumbersLoader.d.ts +2 -0
  11. package/src/app/ai/components/TestNumbers/TestNumbersNoResultPage.d.ts +11 -0
  12. package/src/app/ai/components/playground/AssistantActionBar.d.ts +2 -0
  13. package/src/app/ai/components/playground/AssistantMessage.d.ts +2 -0
  14. package/src/app/ai/components/playground/BranchPicker.d.ts +4 -0
  15. package/src/app/ai/components/playground/Button.d.ts +10 -0
  16. package/src/app/ai/components/playground/Composer.d.ts +2 -0
  17. package/src/app/ai/components/playground/ComposerAction.d.ts +4 -0
  18. package/src/app/ai/components/playground/EditComposer.d.ts +2 -0
  19. package/src/app/ai/components/playground/MarkdownText.d.ts +3 -0
  20. package/src/app/ai/components/playground/PlaygroundChat.d.ts +5 -0
  21. package/src/app/ai/components/playground/PlaygroundLoader.d.ts +2 -0
  22. package/src/app/ai/components/playground/Thread.d.ts +2 -0
  23. package/src/app/ai/components/playground/ThreadList.d.ts +2 -0
  24. package/src/app/ai/components/playground/ThreadMessages.d.ts +2 -0
  25. package/src/app/ai/components/playground/ThreadWelcome.d.ts +2 -0
  26. package/src/app/ai/components/playground/Tooltip.d.ts +7 -0
  27. package/src/app/ai/components/playground/TooltipIconButton.d.ts +15 -0
  28. package/src/app/ai/components/playground/UserActionBar.d.ts +2 -0
  29. package/src/app/ai/components/playground/UserMessage.d.ts +2 -0
  30. package/src/app/ai/components/playground/index.d.ts +5 -0
  31. package/src/app/ai/components/playground/shared.d.ts +6 -0
  32. package/src/app/ai/components/sources/FileTable.d.ts +14 -0
  33. package/src/app/ai/components/sources/FileUpload.d.ts +14 -0
  34. package/src/app/ai/components/sources/FileUploadsContainer.d.ts +12 -0
  35. package/src/app/ai/components/sources/StorageQuota.d.ts +9 -0
  36. package/src/app/ai/components/sources/UploadProgress.d.ts +9 -0
  37. package/src/app/ai/components/sources/index.d.ts +5 -0
  38. package/src/app/ai/config/index.d.ts +3 -0
  39. package/src/app/ai/config/source.d.ts +4 -0
  40. package/src/app/ai/config/types.d.ts +61 -0
  41. package/src/app/ai/hooks/useCrumbyAi.d.ts +17 -0
  42. package/src/app/ai/hooks/useFileColumns.d.ts +17 -0
  43. package/src/app/ai/pages/FilesPage.d.ts +3 -0
  44. package/src/app/ai/pages/Playground.d.ts +2 -0
  45. package/src/app/ai/pages/TestNumbers.d.ts +2 -0
  46. package/src/app/ai/types/index.d.ts +64 -0
  47. package/src/app/ai/utils/index.d.ts +2 -0
  48. package/src/app/contact/components/AddContactLifeCycle.d.ts +6 -0
  49. package/src/app/contact/components/ContactFormFields.d.ts +6 -0
  50. package/src/app/contact/components/ContactInfo.d.ts +9 -0
  51. package/src/app/contact/config/contactForm.d.ts +40 -0
  52. package/src/app/dashboard/components/ConvsAnalytics/LiveConvsAnalytics.d.ts +2 -2
  53. package/src/app/generic/components/ComingSoon.d.ts +5 -0
  54. package/src/app/generic/components/Containers.d.ts +3 -0
  55. package/src/app/inbox/components/Chat/ChatHeader.d.ts +5 -0
  56. package/src/app/inbox/components/Chat/NoConvSelected.d.ts +6 -1
  57. package/src/app/inbox/components/Chat/index.d.ts +4 -1
  58. package/src/app/inbox/components/ClientDetails/ClientProfile.d.ts +0 -2
  59. package/src/app/inbox/components/NewConvList/BottomSection.d.ts +8 -0
  60. package/src/app/inbox/components/NewConvList/ConvList.d.ts +8 -11
  61. package/src/app/inbox/components/NewConvList/ConversationItem.d.ts +7 -11
  62. package/src/app/inbox/components/NewConvList/HeaderSection.d.ts +9 -3
  63. package/src/app/inbox/components/NewConvList/index.d.ts +10 -5
  64. package/src/app/inbox/components/NewDetails/ChatDetails.d.ts +15 -0
  65. package/src/app/inbox/components/NewDetails/ChatDetailsAndTimeline.d.ts +13 -0
  66. package/src/app/inbox/components/NewDetails/ChatTimeline.d.ts +7 -0
  67. package/src/app/inbox/components/NewDetails/ClientInfo.d.ts +14 -0
  68. package/src/app/inbox/components/NewDetails/ComponentLoaders/ClientInfoLoader.d.ts +2 -0
  69. package/src/app/inbox/components/NewDetails/ConversationOverview.d.ts +10 -0
  70. package/src/app/inbox/components/NewDetails/EditClientInfo.d.ts +8 -0
  71. package/src/app/inbox/components/NewDetails/TabSwitcher.d.ts +5 -0
  72. package/src/app/inbox/components/NewDetails/TagsSelector.d.ts +15 -0
  73. package/src/app/inbox/components/NewDetails/UserHeader.d.ts +7 -0
  74. package/src/app/inbox/components/NewDetails/ViewInfo.d.ts +6 -0
  75. package/src/app/inbox/components/NewDetails/index.d.ts +13 -0
  76. package/src/app/inbox/components/Popups/NewStartConv.d.ts +6 -0
  77. package/src/app/inbox/components/Shared/Inbox.d.ts +2 -1
  78. package/src/app/inbox/components/Shared/SharedStyle.d.ts +30 -0
  79. package/src/app/inbox/hooks/useConvActions.d.ts +16 -0
  80. package/src/app/inbox/hooks/useConvFilters.d.ts +14 -0
  81. package/src/app/inbox/hooks/useConversationsPerodicFetch.d.ts +2 -0
  82. package/src/app/inbox/hooks/useNewSortedEvents.d.ts +24 -0
  83. package/src/app/inbox/utils/convs.d.ts +27 -3
  84. package/src/app/inbox/utils/getFlagByCountry.d.ts +1 -0
  85. package/src/app/layout/components/Header.d.ts +3 -1
  86. package/src/app/layout/constants/index.d.ts +16 -0
  87. package/src/app/layout/constants/subMenu.d.ts +26 -0
  88. package/src/app/layout/hooks/useCrumbyEnabled.d.ts +1 -0
  89. package/src/app/managemnet/config/agentDefinition.d.ts +4 -0
  90. package/src/app/managemnet/types.d.ts +61 -0
  91. package/src/app/resources/components/Broadcasts/BroadcastClients.d.ts +2 -1
  92. package/src/app/resources/components/Broadcasts/CreateBroadcast.d.ts +2 -1
  93. package/src/app/subscriptions/components/SubscriptionSettings/SubscriptionUsers.d.ts +1 -1
  94. package/src/app/subscriptions/components/SubscriptionsList.d.ts +6 -5
  95. package/src/assets/locales/translations.d.ts +108 -0
  96. package/src/graphql.autogenerated.d.ts +661 -1
  97. package/src/lib/inbox.d.ts +1 -0
  98. package/src/routes/PrivateRoutes.d.ts +6 -1
  99. package/src/utils/sessionStorage.d.ts +10 -0
  100. package/src/utils/textUtils.d.ts +1 -0
  101. package/src/utils/uploadFileToAzureBlob.d.ts +2 -0
  102. package/src/app/contact/components/AddContact.d.ts +0 -7
  103. package/src/app/inbox/hooks/useConvFilter.d.ts +0 -15
@@ -296,6 +296,7 @@ export declare const convertLanguageJsonToObject: (json: any, objToConvertTo?: C
296
296
  startWith_AI_BY_COUNTRY_CODE: string;
297
297
  startWith_AGENT_BY_COUNTRY_CODE: string;
298
298
  startWith_AUTO: string;
299
+ startWith_CRUMBY: string;
299
300
  countryCode: string;
300
301
  defaultAI: string;
301
302
  defaultAgent: string;
@@ -404,12 +405,14 @@ export declare const convertLanguageJsonToObject: (json: any, objToConvertTo?: C
404
405
  };
405
406
  id: string;
406
407
  save: string;
408
+ confirm: string;
407
409
  genericError: string;
408
410
  errorPageHeader: string;
409
411
  noPermissionsPageHeader: string;
410
412
  requestFailed: string;
411
413
  requestSuccess: string;
412
414
  notFound: string;
415
+ notFoundSubTitle: string;
413
416
  logoutConfirmation: string;
414
417
  logoutTitle: string;
415
418
  logout: string;
@@ -434,11 +437,17 @@ export declare const convertLanguageJsonToObject: (json: any, objToConvertTo?: C
434
437
  menu_inbox: string;
435
438
  menu_search: string;
436
439
  menu_broadcasts: string;
440
+ menu_settings: string;
441
+ menu_contact: string;
437
442
  menu_list: string;
438
443
  menu_create: string;
444
+ menu_management: string;
445
+ menu_crumby: string;
439
446
  customerSupport: string;
440
447
  searchPattern: string;
441
448
  home: string;
449
+ backToHome: string;
450
+ infoUnavailable: string;
442
451
  pwa: {
443
452
  installApp: string;
444
453
  addAppToHomeScreen: string;
@@ -451,6 +460,7 @@ export declare const convertLanguageJsonToObject: (json: any, objToConvertTo?: C
451
460
  };
452
461
  contact: {
453
462
  addNewContact: string;
463
+ editContact: string;
454
464
  searchPlaceholder: string;
455
465
  export: string;
456
466
  name: string;
@@ -481,6 +491,24 @@ export declare const convertLanguageJsonToObject: (json: any, objToConvertTo?: C
481
491
  noStagesAvailable: string;
482
492
  title: string;
483
493
  noContacts: string;
494
+ addressPlaceholder: string;
495
+ };
496
+ management: {
497
+ title: string;
498
+ addNewAgent: string;
499
+ noAgent: string;
500
+ team_management: string;
501
+ "ai&automation": string;
502
+ conversation_management: string;
503
+ ai: string;
504
+ ai_assistant: string;
505
+ api_key: string;
506
+ webhooks: string;
507
+ conversation_lifecycle: string;
508
+ channels: string;
509
+ rating_settings: string;
510
+ general_settings: string;
511
+ agents_management: string;
484
512
  };
485
513
  contactLifeCycle: {
486
514
  searchPlaceholder: string;
@@ -491,5 +519,85 @@ export declare const convertLanguageJsonToObject: (json: any, objToConvertTo?: C
491
519
  apply: string;
492
520
  title: string;
493
521
  noContactLifecycle: string;
522
+ addNewContactLifeCycle: string;
523
+ name: string;
524
+ namePlaceholder: string;
525
+ };
526
+ crumby: {
527
+ title: string;
528
+ chat: string;
529
+ sources: string;
530
+ files: string;
531
+ text: string;
532
+ websites: string;
533
+ integrations: string;
534
+ preferences: string;
535
+ ai_models: string;
536
+ fine_tuning: string;
537
+ prompts: string;
538
+ test_numbers: string;
539
+ suggested_qs: string;
540
+ playground: {
541
+ welcomeMessage: string;
542
+ askTheAIToAnalyzeYourData: string;
543
+ askAnotherQuestion: string;
544
+ files: string;
545
+ text: string;
546
+ cancel: string;
547
+ send: string;
548
+ pleaseAddTestNumberFirst: string;
549
+ goToTestNumbers: string;
550
+ };
551
+ file: {
552
+ filesSubTitle: string;
553
+ addFiles: string;
554
+ informationFilesLabel: string;
555
+ selectFiles: string;
556
+ uploatText: string;
557
+ uploadSubText: string;
558
+ fileSources: string;
559
+ fileName: string;
560
+ size: string;
561
+ fileType: string;
562
+ createdAt: string;
563
+ completed: string;
564
+ failed: string;
565
+ uploading: string;
566
+ totalSize: string;
567
+ sources: string;
568
+ };
569
+ testNumbers: {
570
+ title: string;
571
+ subtitle: string;
572
+ addTestNumber: string;
573
+ name: string;
574
+ phone: string;
575
+ email: string;
576
+ active: string;
577
+ namePlaceholder: string;
578
+ phonePlaceholder: string;
579
+ emailPlaceholder: string;
580
+ save: string;
581
+ cancel: string;
582
+ noTestNumbersFoundTitle: string;
583
+ noTestNumbersFoundSubtitle: string;
584
+ clientTestNumber: string;
585
+ newTestNumber: string;
586
+ pickClientPlaceholder: string;
587
+ noPhoneNumberTitle: string;
588
+ noPhoneNumberDescription: string;
589
+ address: string;
590
+ deleteConfirmTitle: string;
591
+ deleteConfirmMessage: string;
592
+ };
593
+ };
594
+ setting: {
595
+ title: string;
596
+ workspace: string;
597
+ active: string;
598
+ };
599
+ comingSoon: {
600
+ title: string;
601
+ description: string;
494
602
  };
495
603
  }>, current?: string) => void;