@bcrumbs.net/inbox 0.0.50 → 0.0.52

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 (143) hide show
  1. package/{cb9c022b3cf80e0f.svg → 2998ffe42c3436c0.svg} +43 -43
  2. package/{594c01a9720e0657.svg → 396ba1d86a9997b1.svg} +42 -42
  3. package/assets/ar/inbox.json +256 -246
  4. package/assets/en/inbox.json +258 -248
  5. package/index.cjs.d.ts +1 -1
  6. package/index.cjs.js +12108 -1175
  7. package/index.esm.d.ts +1 -1
  8. package/index.esm.js +12110 -1177
  9. package/package.json +6 -6
  10. package/src/app/ai/components/Crumby/index.d.ts +2 -0
  11. package/src/app/ai/components/playground/Thread.d.ts +5 -1
  12. package/src/app/ai/components/playground/ThreadWelcome.d.ts +4 -1
  13. package/src/app/ai/components/playground/TooltipIconButton.d.ts +1 -1
  14. package/src/app/ai/components/sources/TextEditorSkeleton.d.ts +3 -0
  15. package/src/app/ai/components/sources/TextSnippetEditor.d.ts +9 -0
  16. package/src/app/ai/components/sources/TextTable.d.ts +15 -0
  17. package/src/app/ai/components/sources/index.d.ts +2 -0
  18. package/src/app/ai/hooks/useCrumbyRatingAi.d.ts +17 -0
  19. package/src/app/ai/hooks/useTextColumns.d.ts +17 -0
  20. package/src/app/ai/pages/AiPreferencesPrompts.d.ts +2 -0
  21. package/src/app/ai/pages/TextPage.d.ts +3 -0
  22. package/src/app/ai/types/index.d.ts +10 -0
  23. package/src/app/auth/pages/Login.d.ts +2 -12
  24. package/src/app/auth/pages/Register.d.ts +2 -13
  25. package/src/app/auth/redux/actions/registerAction.d.ts +1 -1
  26. package/src/app/auth/redux/auth.types.d.ts +1 -1
  27. package/src/app/billing/components/NotAccessible.d.ts +10 -0
  28. package/src/app/billing/components/Timeline.d.ts +20 -0
  29. package/src/app/billing/components/checkout/AddNewPaymentCard.d.ts +6 -0
  30. package/src/app/billing/components/checkout/CheckoutSummary.d.ts +20 -0
  31. package/src/app/billing/components/checkout/ExceedPaymentUpdateTriesModal.d.ts +8 -0
  32. package/src/app/billing/components/checkout/ExistingCardPayment.d.ts +10 -0
  33. package/src/app/billing/components/checkout/PaymentForm.d.ts +11 -0
  34. package/src/app/billing/components/checkout/PaymentFormExp.d.ts +9 -0
  35. package/src/app/billing/components/checkout/PaymentMethod.d.ts +8 -0
  36. package/src/app/billing/components/checkout/PaymentMethodCard.d.ts +9 -0
  37. package/src/app/billing/components/checkout/PaywithCredits.d.ts +9 -0
  38. package/src/app/billing/components/invoices/BCLogo.d.ts +5 -0
  39. package/src/app/billing/components/invoices/Invoice.d.ts +5 -0
  40. package/src/app/billing/components/planStyles.d.ts +9 -0
  41. package/src/app/billing/components/styles.d.ts +21 -0
  42. package/src/app/billing/components/subscription/PlanDetail.d.ts +11 -0
  43. package/src/app/billing/components/subscription/SubscriptionPausedWarning.d.ts +3 -0
  44. package/src/app/billing/components/transactions/TransactionHistoryTable.d.ts +15 -0
  45. package/src/app/billing/context/SubscriptionContext.d.ts +5 -0
  46. package/src/app/billing/hooks/useGetPaidToday.d.ts +9 -0
  47. package/src/app/billing/hooks/usePendingPayments.d.ts +51 -0
  48. package/src/app/billing/hooks/useSetupPayment.d.ts +15 -0
  49. package/src/app/billing/hooks/useSetupPaymentMethod.d.ts +12 -0
  50. package/src/app/billing/pages/checkout.d.ts +2 -0
  51. package/src/app/billing/pages/done.d.ts +1 -0
  52. package/src/app/billing/pages/invoice.d.ts +1 -0
  53. package/src/app/billing/pages/invoices.d.ts +2 -0
  54. package/src/app/billing/pages/payment.d.ts +1 -0
  55. package/src/app/billing/utils/getStripe.d.ts +3 -0
  56. package/src/app/billing/utils/openArticleModal.d.ts +1 -0
  57. package/src/app/billing/utils/paymentProvider.d.ts +3 -0
  58. package/src/app/billing/utils/stripeUtils.d.ts +2 -0
  59. package/src/app/broadcast/components/BroadcastAnalysisReciepientsHeader.d.ts +6 -1
  60. package/src/app/broadcast/components/BroadcastAnalysisReciepientsTable.d.ts +5 -1
  61. package/src/app/broadcast/components/BroadcastInfoHeader.d.ts +2 -1
  62. package/src/app/broadcast/components/BroadcastTargetingComplianceNotice.d.ts +2 -0
  63. package/src/app/broadcast/components/WorkspaceBroadcastAnalysisRecipients.d.ts +7 -0
  64. package/src/app/broadcast/hooks/useExportWorkspaceBroadcastDelivery.d.ts +6 -0
  65. package/src/app/broadcast/pages/WorkspaceBroadcastDeliveryReportPage.d.ts +2 -0
  66. package/src/app/broadcast/utils/helper.d.ts +4 -0
  67. package/src/app/contact/config/contactForm.d.ts +21 -0
  68. package/src/app/dashboard/components/AgentCard.d.ts +11 -0
  69. package/src/app/dashboard/components/AgentPerformanceCard.d.ts +9 -0
  70. package/src/app/dashboard/components/AgentsCard.d.ts +9 -0
  71. package/src/app/dashboard/components/AgentsCardSkeleton.d.ts +2 -0
  72. package/src/app/dashboard/components/BroadcastAnalyticsCard.d.ts +10 -0
  73. package/src/app/dashboard/components/BroadcastCampaignProgressCard.d.ts +10 -0
  74. package/src/app/dashboard/components/BroadcastDashboard.d.ts +6 -0
  75. package/src/app/dashboard/components/BroadcastDashboardStatsCards.d.ts +14 -0
  76. package/src/app/dashboard/components/BroadcastRecipientsCard.d.ts +8 -0
  77. package/src/app/dashboard/components/BroadcastStatusDistributionCard.d.ts +6 -0
  78. package/src/app/dashboard/components/ConversationAnalyticsCard.d.ts +11 -0
  79. package/src/app/dashboard/components/DashboardSections.d.ts +24 -0
  80. package/src/app/dashboard/components/DashboardStatsCards.d.ts +10 -0
  81. package/src/app/dashboard/components/InboxDashboard.d.ts +10 -0
  82. package/src/app/dashboard/components/OpenedChatsCard.d.ts +8 -0
  83. package/src/app/dashboard/pages/DashboardNewPage.d.ts +2 -0
  84. package/src/app/dashboard/utils/buildBroadcastReportOverviewAnalytics.d.ts +17 -0
  85. package/src/app/dashboard/utils/buildRecipientsAnalytics.d.ts +12 -0
  86. package/src/app/dashboard/utils/dateHelpers.d.ts +7 -0
  87. package/src/app/generic/components/HeaderImageInput.d.ts +8 -0
  88. package/src/app/generic/components/PhoneNumberInput.d.ts +13 -0
  89. package/src/app/generic/components/TemplateParameterInputs.d.ts +2 -1
  90. package/src/app/generic/components/ToggleSetting.d.ts +3 -2
  91. package/src/app/generic/hooks/useGetProviderIcon.d.ts +2 -1
  92. package/src/app/inbox/components/Chat/ChatContent.d.ts +2 -1
  93. package/src/app/inbox/components/NewConvList/FilterDrawer.d.ts +18 -0
  94. package/src/app/inbox/components/NewConvList/HeaderSection.d.ts +4 -1
  95. package/src/app/inbox/components/NewConvList/index.d.ts +6 -2
  96. package/src/app/inbox/hooks/useConversationsPerodicFetch.d.ts +10 -0
  97. package/src/app/inbox/hooks/useNewSortedEvents.d.ts +1 -1
  98. package/src/app/inbox/utils/convs.d.ts +10 -1
  99. package/src/app/layout/components/CommandPalette.d.ts +16 -0
  100. package/src/app/layout/components/Header.d.ts +3 -1
  101. package/src/app/layout/constants/index.d.ts +24 -2
  102. package/src/app/layout/constants/subMenu.d.ts +22 -2
  103. package/src/app/layout/hooks/useImportContactsEnabled.d.ts +1 -0
  104. package/src/app/managemnet/components/CreateApiKey.d.ts +4 -1
  105. package/src/app/managemnet/components/CreateCrmWebhook.d.ts +6 -0
  106. package/src/app/managemnet/components/channels/AddChannelDialog.d.ts +10 -0
  107. package/src/app/managemnet/components/channels/ChannelItem.d.ts +11 -0
  108. package/src/app/managemnet/components/channels/ChannelTypeCard.d.ts +15 -0
  109. package/src/app/managemnet/components/channels/EditChannelDialog.d.ts +11 -0
  110. package/src/app/managemnet/pages/crmIntegrations/index.d.ts +2 -0
  111. package/src/app/onboarding/components/OnboardingChecklistGuideContent.d.ts +8 -0
  112. package/src/app/onboarding/components/OnboardingChecklistWidget.d.ts +2 -0
  113. package/src/app/onboarding/utils/onboardingChecklistStorage.d.ts +39 -0
  114. package/src/app/resources/components/Integrations/ChannelDialogLayout.d.ts +24 -0
  115. package/src/app/resources/components/Integrations/Custom/index.d.ts +7 -0
  116. package/src/app/resources/components/Integrations/Facebook/index.d.ts +4 -1
  117. package/src/app/resources/components/Integrations/Instagram/index.d.ts +4 -1
  118. package/src/app/resources/components/Integrations/RenderCorrectIntegrationFlow.d.ts +11 -2
  119. package/src/app/resources/components/Integrations/Telegram/index.d.ts +4 -1
  120. package/src/app/resources/components/Integrations/WaGupshup/index.d.ts +7 -0
  121. package/src/app/resources/components/Integrations/WhatsApp/index.d.ts +4 -1
  122. package/src/app/resources/components/ListResources/Utils.d.ts +0 -1
  123. package/src/app/subscriptions/components/Plans/PlanCard.d.ts +3 -3
  124. package/src/app/subscriptions/components/Plans/ShowcasePlans.d.ts +5 -2
  125. package/src/app/subscriptions/components/SubscriptionSettings/SubscriptionHeader.d.ts +2 -1
  126. package/src/app/subscriptions/components/SubscriptionSettings/SubscriptionProfile.d.ts +1 -0
  127. package/src/app/subscriptions/components/SubscriptionSettings/SubscriptionUsers.d.ts +0 -1
  128. package/src/app/subscriptions/constants/Plans.d.ts +9 -6
  129. package/src/app/subscriptions/pages/Upgrade.d.ts +6 -9
  130. package/src/assets/locales/translations.d.ts +333 -5
  131. package/src/config/azure.d.ts +6 -0
  132. package/src/config/constants.d.ts +1 -1
  133. package/src/environments/types.d.ts +3 -0
  134. package/src/graphql.autogenerated.d.ts +3074 -2349
  135. package/src/graphql.billing.autogenerated.d.ts +680 -7
  136. package/src/main.d.ts +2 -0
  137. package/src/utils/formatFailureReason.d.ts +5 -0
  138. package/src/utils/globalHelper.d.ts +3 -0
  139. package/src/utils/localStorage.d.ts +2 -0
  140. package/src/utils/textUtils.d.ts +3 -1
  141. package/src/app/resources/components/Integrations/Facebook/LoginPopup.d.ts +0 -4
  142. package/src/app/resources/components/Integrations/Instagram/LoginPopup.d.ts +0 -4
  143. package/src/app/resources/components/Integrations/WhatsApp/LoginPopup.d.ts +0 -4
@@ -73,20 +73,44 @@ export declare const convertLanguageJsonToObject: (json: any, objToConvertTo?: C
73
73
  freePkgTitle: string;
74
74
  basicPkgTitle: string;
75
75
  premiumPkgTitle: string;
76
- enterprisePkgTitle: string;
76
+ businessPkgTitle: string;
77
+ automatePkgTitle: string;
78
+ automatePlusPkgTitle: string;
79
+ automateMaxPkgTitle: string;
77
80
  freePkgSubtitle: string;
78
81
  basicPkgSubtitle: string;
79
82
  premiumPkgSubtitle: string;
80
- enterprisePkgSubtitle: string;
83
+ businessPkgSubtitle: string;
84
+ automatePkgSubtitle: string;
85
+ automatePlusPkgSubtitle: string;
86
+ automateMaxPkgSubtitle: string;
81
87
  freePkgActionLabel: string;
82
88
  basicPkgActionLabel: string;
83
89
  premiumPkgActionLabel: string;
84
- enterprisePkgActionLabel: string;
85
- visits: string;
90
+ businessPkgActionLabel: string;
91
+ automatePkgActionLabel: string;
92
+ automatePlusPkgActionLabel: string;
93
+ automateMaxPkgActionLabel: string;
94
+ campaigns: string;
95
+ users: string;
86
96
  conversations: string;
97
+ aiIncluded: string;
87
98
  subscribeSucceeded: string;
88
99
  manageBilling: string;
89
- nextYearPlans: string;
100
+ betaVersion: string;
101
+ customPkgTitle: string;
102
+ };
103
+ billingDone: {
104
+ title: string;
105
+ missingSessionId: string;
106
+ missingWorkspaceContext: string;
107
+ sessionNotFound: string;
108
+ subscriptionUpdated: string;
109
+ subscriptionVerified: string;
110
+ subscriptionCancelled: string;
111
+ subscriptionCancelledDescription: string;
112
+ backToInbox: string;
113
+ backToBilling: string;
90
114
  };
91
115
  profile: {
92
116
  passwordUpdated: string;
@@ -150,9 +174,22 @@ export declare const convertLanguageJsonToObject: (json: any, objToConvertTo?: C
150
174
  Workspace: string;
151
175
  WorkspaceDescription: string;
152
176
  upgradePlan: string;
177
+ cancelSubscription: string;
153
178
  activePlan: string;
179
+ currentCycleEnd: string;
154
180
  usage2: string;
181
+ conversations: string;
182
+ broadcastUsage: string;
155
183
  userSearchPlaceholder: string;
184
+ usageScopeConversations: string;
185
+ usageScopeBroadcasts: string;
186
+ usageScopeBoth: string;
187
+ usageLimit80: string;
188
+ usageLimit100: string;
189
+ usageLimit120: string;
190
+ usageLimit100Prefix: string;
191
+ upgradePlanCta: string;
192
+ inviteUserDisabledAtLimit: string;
156
193
  };
157
194
  pages: {
158
195
  yourPages: string;
@@ -278,7 +315,9 @@ export declare const convertLanguageJsonToObject: (json: any, objToConvertTo?: C
278
315
  scheduled: string;
279
316
  };
280
317
  messageState: {
318
+ empty: string;
281
319
  read: string;
320
+ played: string;
282
321
  delivered: string;
283
322
  pending: string;
284
323
  failed: string;
@@ -291,6 +330,7 @@ export declare const convertLanguageJsonToObject: (json: any, objToConvertTo?: C
291
330
  filterByState: string;
292
331
  broadcastOverview: string;
293
332
  broadcastList: string;
333
+ openRecipientsReport: string;
294
334
  newBroadcast: string;
295
335
  searchPlaceholder: string;
296
336
  broadcastName: string;
@@ -308,8 +348,11 @@ export declare const convertLanguageJsonToObject: (json: any, objToConvertTo?: C
308
348
  cancel: string;
309
349
  loadingMore: string;
310
350
  broadcastInfoDescription: string;
351
+ broadcastComplianceGuide: string;
352
+ targetingComplianceNotice: string;
311
353
  editBroadcast: string;
312
354
  save: string;
355
+ createDisabledAtUsageLimit: string;
313
356
  selectClientStage: string;
314
357
  clientStage: string;
315
358
  sampleContacts: string;
@@ -349,6 +392,17 @@ export declare const convertLanguageJsonToObject: (json: any, objToConvertTo?: C
349
392
  lifecycleFilter: string;
350
393
  stateFilter: string;
351
394
  loadingMore: string;
395
+ broadcastColumn: string;
396
+ openBroadcastReport: string;
397
+ messageSentAt: string;
398
+ template: string;
399
+ };
400
+ recipientsReport: {
401
+ pageTitle: string;
402
+ pageSubtitle: string;
403
+ exportCsv: string;
404
+ templateNameFilter: string;
405
+ noRowsToExport: string;
352
406
  };
353
407
  };
354
408
  resources: {
@@ -381,7 +435,11 @@ export declare const convertLanguageJsonToObject: (json: any, objToConvertTo?: C
381
435
  countryCode: string;
382
436
  defaultAI: string;
383
437
  defaultAgent: string;
438
+ handoverStartWith: string;
439
+ handoverAssignee: string;
384
440
  startWith_countrySettings: string;
441
+ enableRating: string;
442
+ enableRating_description: string;
385
443
  integrationType: string;
386
444
  whatsAppChannel: string;
387
445
  broadcastName: string;
@@ -452,6 +510,7 @@ export declare const convertLanguageJsonToObject: (json: any, objToConvertTo?: C
452
510
  anyEvent: string;
453
511
  incomingMessage: string;
454
512
  outgoingMessage: string;
513
+ messageUpdated: string;
455
514
  endingConv: string;
456
515
  newConv: string;
457
516
  newClient: string;
@@ -466,6 +525,7 @@ export declare const convertLanguageJsonToObject: (json: any, objToConvertTo?: C
466
525
  defaultAgentId: string;
467
526
  };
468
527
  dashboard: {
528
+ title: string;
469
529
  dashboardOverview: string;
470
530
  refresh: string;
471
531
  opened: string;
@@ -493,6 +553,123 @@ export declare const convertLanguageJsonToObject: (json: any, objToConvertTo?: C
493
553
  lastResponse: string;
494
554
  liveAssigneeConversations: string;
495
555
  noAgentsFound: string;
556
+ last7Days: string;
557
+ allTime: string;
558
+ allAgents: string;
559
+ allChannels: string;
560
+ totalConversationsCard: string;
561
+ currentlyOngoing: string;
562
+ todaysAverage: string;
563
+ deliverySuccess: string;
564
+ successfullySent: string;
565
+ avgChatTime: string;
566
+ newConversations: string;
567
+ newClientsInPeriod: string;
568
+ closed: string;
569
+ uniqueClosed: string;
570
+ agentPerformance: string;
571
+ agents: string;
572
+ openedChats: string;
573
+ agent: string;
574
+ messagesSent: string;
575
+ messagesReceived: string;
576
+ avgResponseShort: string;
577
+ handleTime: string;
578
+ total: string;
579
+ conversations: string;
580
+ chats: string;
581
+ day: string;
582
+ week: string;
583
+ month: string;
584
+ totalMessages_one: string;
585
+ totalMessages_other: string;
586
+ totalAgents_one: string;
587
+ totalAgents_other: string;
588
+ agentChats_one: string;
589
+ agentChats_other: string;
590
+ yesterday: string;
591
+ last14Days: string;
592
+ last30Days: string;
593
+ agentPerformanceTooltip: string;
594
+ selectAll: string;
595
+ clearAll: string;
596
+ reports: string;
597
+ broadcast: {
598
+ title: string;
599
+ period: {
600
+ today: string;
601
+ yesterday: string;
602
+ last7Days: string;
603
+ last30Days: string;
604
+ currentMonth: string;
605
+ lastMonth: string;
606
+ clearAll: string;
607
+ };
608
+ overviewTitle: string;
609
+ stats: {
610
+ deliveryRate: string;
611
+ successfullyDelivered: string;
612
+ readRate: string;
613
+ messageOpenedByUsers: string;
614
+ sentMessages: string;
615
+ sentMessagesValue: string;
616
+ totalMessages: string;
617
+ messagesSentInBroadcast: string;
618
+ percentFormatted: string;
619
+ };
620
+ recipients: {
621
+ title: string;
622
+ reachEngagementOverview: string;
623
+ successfulRecipients: string;
624
+ failed: string;
625
+ successRate: string;
626
+ deliveredAndReadRecipients: string;
627
+ };
628
+ campaignProgress: {
629
+ title: string;
630
+ completedCampaigns: string;
631
+ failedAttempts: string;
632
+ messages: string;
633
+ };
634
+ chartLegend: {
635
+ successful: string;
636
+ failed: string;
637
+ };
638
+ statusDistribution: {
639
+ title: string;
640
+ total: string;
641
+ broadcastsLowercase: string;
642
+ };
643
+ status: {
644
+ completed: string;
645
+ failed: string;
646
+ draft: string;
647
+ inProgress: string;
648
+ scheduled: string;
649
+ };
650
+ };
651
+ };
652
+ onboardingChecklist: {
653
+ title: string;
654
+ getStarted: string;
655
+ steps: {
656
+ workspace: string;
657
+ invite: string;
658
+ channel: string;
659
+ firstMessage: string;
660
+ uploadFile: string;
661
+ testAi: string;
662
+ };
663
+ guide: {
664
+ steps: {
665
+ workspace: string;
666
+ invite: string;
667
+ channel: string;
668
+ firstMessage: string;
669
+ uploadFile: string;
670
+ testAi: string;
671
+ };
672
+ };
496
673
  };
497
674
  id: string;
498
675
  save: string;
@@ -535,6 +712,10 @@ export declare const convertLanguageJsonToObject: (json: any, objToConvertTo?: C
535
712
  menu_management: string;
536
713
  menu_crumby: string;
537
714
  customerSupport: string;
715
+ commandPalette: {
716
+ placeholder: string;
717
+ noResults: string;
718
+ };
538
719
  searchPattern: string;
539
720
  home: string;
540
721
  backToHome: string;
@@ -567,6 +748,15 @@ export declare const convertLanguageJsonToObject: (json: any, objToConvertTo?: C
567
748
  messageParameterPlaceholder: string;
568
749
  unarchive: string;
569
750
  headerImageURL: string;
751
+ or: string;
752
+ uploadImage: string;
753
+ uploadImageHint: string;
754
+ uploadImageHintInbox: string;
755
+ pastImageLink: string;
756
+ uploadingImage: string;
757
+ invalidImageURL: string;
758
+ imageUploadFailed: string;
759
+ orUploadImage: string;
570
760
  pwa: {
571
761
  installApp: string;
572
762
  addAppToHomeScreen: string;
@@ -658,6 +848,7 @@ export declare const convertLanguageJsonToObject: (json: any, objToConvertTo?: C
658
848
  ai_assistant: string;
659
849
  api_key: string;
660
850
  webhooks: string;
851
+ crm_integrations: string;
661
852
  conversation_lifecycle: string;
662
853
  channels: string;
663
854
  rating_settings: string;
@@ -716,9 +907,17 @@ export declare const convertLanguageJsonToObject: (json: any, objToConvertTo?: C
716
907
  addNewApiKey: string;
717
908
  label: string;
718
909
  labelPlaceholder: string;
910
+ linkedAgent: string;
911
+ noLinkedAgent: string;
912
+ agentLinkNote: string;
719
913
  searchPlaceholder: string;
720
914
  noApiKeys: string;
721
915
  loadingMoreText: string;
916
+ generatedTokenTitle: string;
917
+ generatedTokenWarning: string;
918
+ workspaceIdLabel: string;
919
+ copyToken: string;
920
+ copyDetails: string;
722
921
  };
723
922
  webhook: {
724
923
  title: string;
@@ -731,6 +930,23 @@ export declare const convertLanguageJsonToObject: (json: any, objToConvertTo?: C
731
930
  searchPlaceholder: string;
732
931
  noWebhooks: string;
733
932
  loadingMoreText: string;
933
+ crm: {
934
+ title: string;
935
+ addIntegration: string;
936
+ searchPlaceholder: string;
937
+ noIntegrations: string;
938
+ crmName: string;
939
+ integrationName: string;
940
+ integrationNamePlaceholder: string;
941
+ token: string;
942
+ tokenPlaceholder: string;
943
+ urlHeader: string;
944
+ urlHeaderPlaceholder: string;
945
+ clientId: string;
946
+ clientIdPlaceholder: string;
947
+ clientSecret: string;
948
+ clientSecretPlaceholder: string;
949
+ };
734
950
  };
735
951
  conversationLifeCycle: {
736
952
  title: string;
@@ -743,10 +959,65 @@ export declare const convertLanguageJsonToObject: (json: any, objToConvertTo?: C
743
959
  };
744
960
  channel: {
745
961
  title: string;
962
+ subTitle: string;
746
963
  addNewChannel: string;
747
964
  searchPlaceholder: string;
748
965
  noChannels: string;
749
966
  loadingMoreText: string;
967
+ newChannelOn: string;
968
+ nameOfChannel: string;
969
+ channelCreatedTitle: string;
970
+ channelCreatedDescription: string;
971
+ startConversation: string;
972
+ channelCreateError: string;
973
+ editChannelTitle: string;
974
+ editing: string;
975
+ connectedPhoneNumber: string;
976
+ wabaId: string;
977
+ countrySettings: string;
978
+ startConversationWith: string;
979
+ agentName: string;
980
+ aiAgentName: string;
981
+ channelUpdateError: string;
982
+ selectStartWith: string;
983
+ selectAiAgent: string;
984
+ selectAgent: string;
985
+ deleteConfirmTitle: string;
986
+ deleteConfirmMessage: string;
987
+ botToken: string;
988
+ watchHowToCreate: string;
989
+ stuck: string;
990
+ ourTeam: string;
991
+ isHereForYou: string;
992
+ customChannelSetup: string;
993
+ customChannelDescription: string;
994
+ customEndpoint: string;
995
+ customEndpointPlaceholder: string;
996
+ customValidateToken: string;
997
+ customValidateTokenPlaceholder: string;
998
+ customAccessToken: string;
999
+ customAccessTokenPlaceholder: string;
1000
+ customExternalId: string;
1001
+ customExternalIdPlaceholder: string;
1002
+ gupshupChannelDescription: string;
1003
+ gupshupDisplayPhoneNumber: string;
1004
+ gupshupDisplayPhoneNumberPlaceholder: string;
1005
+ gupshupAccessToken: string;
1006
+ gupshupAccessTokenPlaceholder: string;
1007
+ gupshupAppId: string;
1008
+ gupshupAppIdPlaceholder: string;
1009
+ gupshupWabaId: string;
1010
+ gupshupWabaIdPlaceholder: string;
1011
+ gupshupPhoneId: string;
1012
+ gupshupPhoneIdPlaceholder: string;
1013
+ gupshupChannelSuccessIncomingHint: string;
1014
+ customChannelSuccessIncomingHint: string;
1015
+ customChannelDocsLinkText: string;
1016
+ customChannelCopyIncomingUrl: string;
1017
+ customChannelIncomingUrlCopied: string;
1018
+ customChannelIncomingUrlCopyFailed: string;
1019
+ rating: string;
1020
+ ratingDescription: string;
750
1021
  };
751
1022
  crumby: {
752
1023
  title: string;
@@ -774,6 +1045,9 @@ export declare const convertLanguageJsonToObject: (json: any, objToConvertTo?: C
774
1045
  pleaseAddTestNumberFirst: string;
775
1046
  goToTestNumbers: string;
776
1047
  };
1048
+ assistant: {
1049
+ welcomeMessage: string;
1050
+ };
777
1051
  file: {
778
1052
  filesSubTitle: string;
779
1053
  addFiles: string;
@@ -792,6 +1066,35 @@ export declare const convertLanguageJsonToObject: (json: any, objToConvertTo?: C
792
1066
  totalSize: string;
793
1067
  sources: string;
794
1068
  };
1069
+ snippets: {
1070
+ pageTitle: string;
1071
+ pageSubtitle: string;
1072
+ addTextSnippet: string;
1073
+ editingMode: string;
1074
+ titleLabel: string;
1075
+ titlePlaceholder: string;
1076
+ bodyLabel: string;
1077
+ loadingContent: string;
1078
+ characters: string;
1079
+ addSnippetButton: string;
1080
+ updateSnippet: string;
1081
+ textSources: string;
1082
+ noSnippets: string;
1083
+ snippetTitle: string;
1084
+ size: string;
1085
+ deleteSnippet: string;
1086
+ deleteSnippetConfirm: string;
1087
+ snippetCreated: string;
1088
+ snippetAddedSuccess: string;
1089
+ snippetUpdated: string;
1090
+ snippetUpdatedSuccess: string;
1091
+ titleRequired: string;
1092
+ bodyRequired: string;
1093
+ signatureError: string;
1094
+ fetchError: string;
1095
+ bulkDeleteTitle: string;
1096
+ bulkDeleteDescription: string;
1097
+ };
795
1098
  testNumbers: {
796
1099
  title: string;
797
1100
  subtitle: string;
@@ -833,7 +1136,32 @@ export declare const convertLanguageJsonToObject: (json: any, objToConvertTo?: C
833
1136
  askForCityDescription: string;
834
1137
  handoverEnabled: string;
835
1138
  handoverEnabledDescription: string;
1139
+ endEnabled: string;
1140
+ endEnabledDescription: string;
1141
+ saved: string;
1142
+ };
1143
+ promptSettings: {
1144
+ title: string;
1145
+ description: string;
1146
+ cardTitle: string;
836
1147
  saved: string;
1148
+ maxCharacters: string;
1149
+ contextPrompt: {
1150
+ label: string;
1151
+ description: string;
1152
+ };
1153
+ rolePrompt: {
1154
+ label: string;
1155
+ description: string;
1156
+ };
1157
+ personaPrompt: {
1158
+ label: string;
1159
+ description: string;
1160
+ };
1161
+ constraints: {
1162
+ label: string;
1163
+ description: string;
1164
+ };
837
1165
  };
838
1166
  };
839
1167
  files: {
@@ -0,0 +1,6 @@
1
+ export declare const AZURE_STORAGE_ACCOUNT = "bcuserres";
2
+ export declare const AZURE_RAG_CONTAINER = "rag";
3
+ export declare const AZURE_RAG_BASE_URL = "https://bcuserres.blob.core.windows.net/rag";
4
+ export declare const AZURE_CONTACTS_CONTAINER = "contacts";
5
+ export declare const AZURE_GENERAL_CONTAINER = "general";
6
+ export declare const AZURE_GENERAL_BASE_URL = "https://bcuserres.blob.core.windows.net/general";
@@ -8,4 +8,4 @@ export declare const HELPDESK_URL = "https://docs.bcrumbs.net/";
8
8
  export declare const CHANGELOG_URL = "https://bcrumbs.featurebase.app/changelog";
9
9
  export declare const FEEDBACK_URL = "https://bcrumbs.featurebase.app/";
10
10
  export declare const ROADMAP_URL = "https://bcrumbs.featurebase.app/roadmap";
11
- export declare const SUPPORT_PHONE = "19179638971";
11
+ export declare const SUPPORT_PHONE = "905301749170";
@@ -1,6 +1,8 @@
1
+ export type PaymentProvider = 'stripe' | 'polar' | 'none';
1
2
  export type Environment = {
2
3
  production: boolean;
3
4
  enablePaidPlans: boolean;
5
+ paymentProvider: PaymentProvider;
4
6
  enableRegister: boolean;
5
7
  enableForgotPassword: boolean;
6
8
  enableProfile: boolean;
@@ -14,4 +16,5 @@ export type Environment = {
14
16
  externalAuth?: 'wakeed';
15
17
  partner?: string;
16
18
  turnstileSiteKey?: string;
19
+ stripeKey?: string;
17
20
  };