@bcrumbs.net/inbox 0.0.51 → 0.0.55
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/assets/ar/inbox.json +20 -3
- package/assets/en/inbox.json +22 -5
- package/index.cjs.js +3955 -1472
- package/index.esm.js +3958 -1477
- package/package.json +4 -4
- package/src/app/ai/components/Crumby/index.d.ts +2 -0
- package/src/app/ai/components/CrumbySettings/AutoTagRulesSection.d.ts +14 -0
- package/src/app/ai/components/CrumbySettings/tagRuleUtils.d.ts +28 -0
- package/src/app/ai/components/playground/Thread.d.ts +5 -1
- package/src/app/ai/components/playground/ThreadWelcome.d.ts +4 -1
- package/src/app/ai/components/playground/TooltipIconButton.d.ts +1 -1
- package/src/app/ai/pages/AiPreferencesPrompts.d.ts +2 -0
- package/src/app/auth/components/UserAvatar/AccountSettingsDropdown.d.ts +2 -1
- package/src/app/auth/components/UserAvatar/index.d.ts +2 -1
- package/src/app/auth/pages/CheckAuth.d.ts +10 -0
- package/src/app/auth/pages/Forget.d.ts +1 -3
- package/src/app/auth/pages/Login.d.ts +2 -12
- package/src/app/auth/pages/Password.d.ts +0 -1
- package/src/app/auth/pages/Profile.d.ts +0 -1
- package/src/app/auth/pages/Register.d.ts +2 -13
- package/src/app/auth/redux/actions/forgetPasswordAction.d.ts +1 -1
- package/src/app/auth/redux/actions/logoutAction.d.ts +2 -2
- package/src/app/auth/redux/actions/registerAction.d.ts +1 -1
- package/src/app/auth/redux/actions/resetPasswordAction.d.ts +2 -2
- package/src/app/auth/redux/auth.types.d.ts +6 -2
- package/src/app/billing/components/NotAccessible.d.ts +10 -0
- package/src/app/billing/components/Timeline.d.ts +20 -0
- package/src/app/billing/components/checkout/AddNewPaymentCard.d.ts +6 -0
- package/src/app/billing/components/checkout/CheckoutSummary.d.ts +20 -0
- package/src/app/billing/components/checkout/ExceedPaymentUpdateTriesModal.d.ts +8 -0
- package/src/app/billing/components/checkout/ExistingCardPayment.d.ts +10 -0
- package/src/app/billing/components/checkout/PaymentForm.d.ts +11 -0
- package/src/app/billing/components/checkout/PaymentFormExp.d.ts +9 -0
- package/src/app/billing/components/checkout/PaymentMethod.d.ts +8 -0
- package/src/app/billing/components/checkout/PaymentMethodCard.d.ts +9 -0
- package/src/app/billing/components/checkout/PaywithCredits.d.ts +9 -0
- package/src/app/billing/components/invoices/BCLogo.d.ts +5 -0
- package/src/app/billing/components/invoices/Invoice.d.ts +5 -0
- package/src/app/billing/components/planStyles.d.ts +9 -0
- package/src/app/billing/components/styles.d.ts +21 -0
- package/src/app/billing/components/subscription/PlanDetail.d.ts +11 -0
- package/src/app/billing/components/subscription/SubscriptionPausedWarning.d.ts +3 -0
- package/src/app/billing/components/transactions/TransactionHistoryTable.d.ts +15 -0
- package/src/app/billing/context/SubscriptionContext.d.ts +8 -1
- package/src/app/billing/hooks/useGetPaidToday.d.ts +9 -0
- package/src/app/billing/hooks/usePendingPayments.d.ts +51 -0
- package/src/app/billing/hooks/useSetupPayment.d.ts +15 -0
- package/src/app/billing/hooks/useSetupPaymentMethod.d.ts +12 -0
- package/src/app/billing/pages/checkout.d.ts +2 -0
- package/src/app/billing/pages/done.d.ts +1 -0
- package/src/app/billing/pages/invoice.d.ts +1 -0
- package/src/app/billing/pages/invoices.d.ts +2 -0
- package/src/app/billing/pages/payment.d.ts +1 -0
- package/src/app/billing/utils/getStripe.d.ts +3 -0
- package/src/app/billing/utils/openArticleModal.d.ts +1 -0
- package/src/app/billing/utils/paymentProvider.d.ts +3 -0
- package/src/app/billing/utils/pendingPlanPurchaseStorage.d.ts +10 -0
- package/src/app/billing/utils/stripeUtils.d.ts +2 -0
- package/src/app/broadcast/components/BroadcastAnalysisReciepientsHeader.d.ts +6 -1
- package/src/app/broadcast/components/BroadcastAnalysisReciepientsTable.d.ts +5 -1
- package/src/app/broadcast/components/BroadcastInfoHeader.d.ts +2 -1
- package/src/app/broadcast/components/BroadcastTargetingComplianceNotice.d.ts +2 -0
- package/src/app/broadcast/components/WorkspaceBroadcastAnalysisRecipients.d.ts +7 -0
- package/src/app/broadcast/hooks/useExportWorkspaceBroadcastDelivery.d.ts +6 -0
- package/src/app/broadcast/pages/WorkspaceBroadcastDeliveryReportPage.d.ts +2 -0
- package/src/app/broadcast/utils/helper.d.ts +4 -0
- package/src/app/contact/components/ContactFormFields.d.ts +2 -1
- package/src/app/contact/config/contactForm.d.ts +4 -0
- package/src/app/dashboard/components/AgentCard.d.ts +11 -0
- package/src/app/dashboard/components/AgentPerformanceCard.d.ts +9 -0
- package/src/app/dashboard/components/AgentsCard.d.ts +9 -0
- package/src/app/dashboard/components/AgentsCardSkeleton.d.ts +2 -0
- package/src/app/dashboard/components/BroadcastAnalyticsCard.d.ts +11 -0
- package/src/app/dashboard/components/BroadcastCampaignProgressCard.d.ts +10 -0
- package/src/app/dashboard/components/BroadcastDashboard.d.ts +6 -0
- package/src/app/dashboard/components/BroadcastDashboardStatsCards.d.ts +14 -0
- package/src/app/dashboard/components/BroadcastRecipientsCard.d.ts +8 -0
- package/src/app/dashboard/components/BroadcastStatusDistributionCard.d.ts +6 -0
- package/src/app/dashboard/components/ConversationAnalyticsCard.d.ts +11 -0
- package/src/app/dashboard/components/DashboardSections.d.ts +24 -0
- package/src/app/dashboard/components/DashboardStatsCards.d.ts +10 -0
- package/src/app/dashboard/components/InboxDashboard.d.ts +10 -0
- package/src/app/dashboard/components/OpenedChatsCard.d.ts +8 -0
- package/src/app/dashboard/pages/DashboardNewPage.d.ts +2 -0
- package/src/app/dashboard/utils/buildBroadcastReportOverviewAnalytics.d.ts +19 -0
- package/src/app/dashboard/utils/buildRecipientsAnalytics.d.ts +12 -0
- package/src/app/dashboard/utils/dateHelpers.d.ts +24 -0
- package/src/app/generic/components/HeaderImageInput.d.ts +9 -0
- package/src/app/generic/components/MessagePreview.d.ts +3 -1
- package/src/app/generic/components/PhoneNumberInput.d.ts +13 -0
- package/src/app/generic/components/PreviewHeaderImage.d.ts +2 -1
- package/src/app/generic/components/TemplateParameterInputs.d.ts +2 -1
- package/src/app/generic/components/ToggleSetting.d.ts +3 -2
- package/src/app/generic/hooks/useGetProviderIcon.d.ts +2 -1
- package/src/app/generic/utils/logout.d.ts +1 -1
- package/src/app/inbox/components/Chat/ChatContent.d.ts +2 -3
- package/src/app/inbox/components/Chat/ChatHeader.d.ts +5 -1
- package/src/app/inbox/components/Chat/NoResultsFound.d.ts +3 -0
- package/src/app/inbox/components/Chat/index.d.ts +4 -1
- package/src/app/inbox/components/NewConvList/FilterDrawer.d.ts +17 -0
- package/src/app/inbox/components/NewConvList/HeaderSection.d.ts +6 -2
- package/src/app/inbox/components/NewConvList/index.d.ts +6 -2
- package/src/app/inbox/components/NewDetails/ChatDetails.d.ts +3 -2
- package/src/app/inbox/components/NewDetails/ChatDetailsAndTimeline.d.ts +3 -2
- package/src/app/inbox/components/NewDetails/ClientInfo.d.ts +3 -2
- package/src/app/inbox/components/NewDetails/ConversationOverview.d.ts +3 -2
- package/src/app/inbox/components/NewDetails/EditClientInfo.d.ts +3 -2
- package/src/app/inbox/components/NewDetails/index.d.ts +3 -2
- package/src/app/inbox/components/Shared/Inbox.d.ts +9 -7
- package/src/app/inbox/components/Shared/MobileActionSheet.d.ts +9 -0
- package/src/app/inbox/components/Shared/MobileMenu.d.ts +8 -0
- package/src/app/inbox/components/Shared/SharedStyle.d.ts +7 -0
- package/src/app/inbox/components/Shared/mobileMenuStyles.d.ts +20 -0
- package/src/app/inbox/constants/index.d.ts +1 -1
- package/src/app/inbox/hooks/useConversationById.d.ts +8 -0
- package/src/app/inbox/hooks/useConversationsPerodicFetch.d.ts +10 -0
- package/src/app/inbox/hooks/useInboxAssignableAis.d.ts +3 -0
- package/src/app/inbox/hooks/useMyAgent.d.ts +8 -0
- package/src/app/inbox/hooks/useNewSortedEvents.d.ts +1 -1
- package/src/app/inbox/utils/convs.d.ts +14 -5
- package/src/app/inbox/utils/inboxAssignableAis.d.ts +10 -0
- package/src/app/inbox/utils/mobileInboxStyles.d.ts +6 -0
- package/src/app/layout/components/CommandPalette.d.ts +16 -0
- package/src/app/layout/components/Header.d.ts +3 -5
- package/src/app/layout/constants/index.d.ts +24 -2
- package/src/app/layout/constants/subMenu.d.ts +34 -4
- package/src/app/layout/context/EmbeddedInboxContext.d.ts +3 -0
- package/src/app/layout/context/MobileInboxNavContext.d.ts +9 -0
- package/src/app/layout/hooks/useImportContactsEnabled.d.ts +1 -0
- package/src/app/layout/hooks/useMobileInboxVersion.d.ts +1 -3
- package/src/app/managemnet/components/CreateCrmWebhook.d.ts +6 -0
- package/src/app/managemnet/components/CreateQuickReply.d.ts +8 -0
- package/src/app/managemnet/components/channels/AddChannelDialog.d.ts +10 -0
- package/src/app/managemnet/components/channels/ChannelItem.d.ts +11 -0
- package/src/app/managemnet/components/channels/ChannelTypeCard.d.ts +15 -0
- package/src/app/managemnet/components/channels/EditChannelDialog.d.ts +11 -0
- package/src/app/managemnet/config/quickReplyDefinition.d.ts +4 -0
- package/src/app/managemnet/pages/crmIntegrations/index.d.ts +2 -0
- package/src/app/managemnet/pages/quickReplies/index.d.ts +2 -0
- package/src/app/onboarding/components/OnboardingChecklistGuideContent.d.ts +8 -0
- package/src/app/onboarding/components/OnboardingChecklistWidget.d.ts +2 -0
- package/src/app/onboarding/utils/onboardingChecklistStorage.d.ts +43 -0
- package/src/app/resources/components/Integrations/ChannelDialogLayout.d.ts +24 -0
- package/src/app/resources/components/Integrations/Custom/index.d.ts +7 -0
- package/src/app/resources/components/Integrations/Facebook/NoPagesFoundPopup.d.ts +2 -1
- package/src/app/resources/components/Integrations/Facebook/PagePickerPopup.d.ts +2 -1
- package/src/app/resources/components/Integrations/Facebook/index.d.ts +4 -1
- package/src/app/resources/components/Integrations/Instagram/index.d.ts +4 -1
- package/src/app/resources/components/Integrations/RenderCorrectIntegrationFlow.d.ts +11 -2
- package/src/app/resources/components/Integrations/Telegram/index.d.ts +4 -1
- package/src/app/resources/components/Integrations/WaGupshup/index.d.ts +7 -0
- package/src/app/resources/components/Integrations/WhatsApp/index.d.ts +4 -1
- package/src/app/subscriptions/components/Plans/PlanCard.d.ts +10 -23
- package/src/app/subscriptions/components/Plans/ShowcasePlans.d.ts +8 -4
- package/src/app/subscriptions/components/SubscriptionSettings/SubscriptionHeader.d.ts +1 -9
- package/src/app/subscriptions/components/SubscriptionSettings/SubscriptionPlanLabel.d.ts +8 -0
- package/src/app/subscriptions/components/SubscriptionSettings/SubscriptionProfile.d.ts +1 -0
- package/src/app/subscriptions/components/SubscriptionSettings/SubscriptionProfileCard.d.ts +14 -0
- package/src/app/subscriptions/components/SubscriptionSettings/SubscriptionUsageCard.d.ts +7 -0
- package/src/app/subscriptions/components/SubscriptionSettings/SubscriptionUsers.d.ts +3 -3
- package/src/app/subscriptions/components/SubscriptionSwitcher/Switcher.d.ts +4 -1
- package/src/app/subscriptions/components/SubscriptionSwitcher/index.d.ts +3 -1
- package/src/app/subscriptions/components/SubscriptionsList.d.ts +1 -0
- package/src/app/subscriptions/constants/Plans.d.ts +9 -6
- package/src/app/subscriptions/pages/Upgrade.d.ts +6 -9
- package/src/assets/locales/translations.d.ts +354 -5
- package/src/config/azure.d.ts +2 -0
- package/src/environments/types.d.ts +3 -0
- package/src/graphql.autogenerated.d.ts +2179 -1225
- package/src/graphql.billing.autogenerated.d.ts +683 -7
- package/src/lib/EmbeddedMobileMenu.d.ts +9 -0
- package/src/lib/conversation-chat.d.ts +11 -0
- package/src/lib/index.d.ts +4 -0
- package/src/main.d.ts +2 -0
- package/src/utils/formatFailureReason.d.ts +5 -0
- package/src/utils/globalHelper.d.ts +3 -0
- package/src/utils/integration.d.ts +6 -0
- package/src/utils/localStorage.d.ts +2 -0
- package/src/utils/textUtils.d.ts +3 -1
- package/src/app/resources/components/Integrations/Facebook/LoginPopup.d.ts +0 -4
- package/src/app/resources/components/Integrations/Instagram/LoginPopup.d.ts +0 -4
- package/src/app/resources/components/Integrations/WhatsApp/LoginPopup.d.ts +0 -4
|
@@ -73,20 +73,57 @@ export declare const convertLanguageJsonToObject: (json: any, objToConvertTo?: C
|
|
|
73
73
|
freePkgTitle: string;
|
|
74
74
|
basicPkgTitle: string;
|
|
75
75
|
premiumPkgTitle: string;
|
|
76
|
-
|
|
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
|
-
|
|
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
|
-
|
|
85
|
-
|
|
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
|
-
|
|
100
|
+
betaVersion: string;
|
|
101
|
+
customPkgTitle: string;
|
|
102
|
+
pricing: string;
|
|
103
|
+
pricingSubtitle: string;
|
|
104
|
+
monthly: string;
|
|
105
|
+
yearly: string;
|
|
106
|
+
yearlyDiscount: string;
|
|
107
|
+
crumbyAi: string;
|
|
108
|
+
mostPopular: string;
|
|
109
|
+
choosePlan: string;
|
|
110
|
+
currentPlan: string;
|
|
111
|
+
betaAlert: string;
|
|
112
|
+
conversationFeature: string;
|
|
113
|
+
campaignFeature: string;
|
|
114
|
+
userFeature: string;
|
|
115
|
+
};
|
|
116
|
+
billingDone: {
|
|
117
|
+
title: string;
|
|
118
|
+
missingSessionId: string;
|
|
119
|
+
missingWorkspaceContext: string;
|
|
120
|
+
sessionNotFound: string;
|
|
121
|
+
subscriptionUpdated: string;
|
|
122
|
+
subscriptionVerified: string;
|
|
123
|
+
subscriptionCancelled: string;
|
|
124
|
+
subscriptionCancelledDescription: string;
|
|
125
|
+
backToInbox: string;
|
|
126
|
+
backToBilling: string;
|
|
90
127
|
};
|
|
91
128
|
profile: {
|
|
92
129
|
passwordUpdated: string;
|
|
@@ -149,10 +186,31 @@ export declare const convertLanguageJsonToObject: (json: any, objToConvertTo?: C
|
|
|
149
186
|
agentPlusRole: string;
|
|
150
187
|
Workspace: string;
|
|
151
188
|
WorkspaceDescription: string;
|
|
189
|
+
editProfile: string;
|
|
190
|
+
usageAndSubscription: string;
|
|
191
|
+
nameOfWorkspace: string;
|
|
192
|
+
workspaceIdCopied: string;
|
|
193
|
+
workspaceIdCopyFailed: string;
|
|
194
|
+
copyWorkspaceId: string;
|
|
152
195
|
upgradePlan: string;
|
|
196
|
+
cancelSubscription: string;
|
|
153
197
|
activePlan: string;
|
|
198
|
+
cancelledBadge: string;
|
|
199
|
+
currentCycleEnd: string;
|
|
154
200
|
usage2: string;
|
|
201
|
+
conversations: string;
|
|
202
|
+
broadcastUsage: string;
|
|
155
203
|
userSearchPlaceholder: string;
|
|
204
|
+
usageScopeConversations: string;
|
|
205
|
+
usageScopeBroadcasts: string;
|
|
206
|
+
usageScopeBoth: string;
|
|
207
|
+
usageLimit80: string;
|
|
208
|
+
usageLimit100: string;
|
|
209
|
+
usageLimit120: string;
|
|
210
|
+
usageLimit100Prefix: string;
|
|
211
|
+
upgradePlanCta: string;
|
|
212
|
+
inviteUserDisabledAtLimit: string;
|
|
213
|
+
workspaceContextMissing: string;
|
|
156
214
|
};
|
|
157
215
|
pages: {
|
|
158
216
|
yourPages: string;
|
|
@@ -278,7 +336,9 @@ export declare const convertLanguageJsonToObject: (json: any, objToConvertTo?: C
|
|
|
278
336
|
scheduled: string;
|
|
279
337
|
};
|
|
280
338
|
messageState: {
|
|
339
|
+
empty: string;
|
|
281
340
|
read: string;
|
|
341
|
+
played: string;
|
|
282
342
|
delivered: string;
|
|
283
343
|
pending: string;
|
|
284
344
|
failed: string;
|
|
@@ -291,6 +351,7 @@ export declare const convertLanguageJsonToObject: (json: any, objToConvertTo?: C
|
|
|
291
351
|
filterByState: string;
|
|
292
352
|
broadcastOverview: string;
|
|
293
353
|
broadcastList: string;
|
|
354
|
+
openRecipientsReport: string;
|
|
294
355
|
newBroadcast: string;
|
|
295
356
|
searchPlaceholder: string;
|
|
296
357
|
broadcastName: string;
|
|
@@ -309,8 +370,10 @@ export declare const convertLanguageJsonToObject: (json: any, objToConvertTo?: C
|
|
|
309
370
|
loadingMore: string;
|
|
310
371
|
broadcastInfoDescription: string;
|
|
311
372
|
broadcastComplianceGuide: string;
|
|
373
|
+
targetingComplianceNotice: string;
|
|
312
374
|
editBroadcast: string;
|
|
313
375
|
save: string;
|
|
376
|
+
createDisabledAtUsageLimit: string;
|
|
314
377
|
selectClientStage: string;
|
|
315
378
|
clientStage: string;
|
|
316
379
|
sampleContacts: string;
|
|
@@ -350,6 +413,17 @@ export declare const convertLanguageJsonToObject: (json: any, objToConvertTo?: C
|
|
|
350
413
|
lifecycleFilter: string;
|
|
351
414
|
stateFilter: string;
|
|
352
415
|
loadingMore: string;
|
|
416
|
+
broadcastColumn: string;
|
|
417
|
+
openBroadcastReport: string;
|
|
418
|
+
messageSentAt: string;
|
|
419
|
+
template: string;
|
|
420
|
+
};
|
|
421
|
+
recipientsReport: {
|
|
422
|
+
pageTitle: string;
|
|
423
|
+
pageSubtitle: string;
|
|
424
|
+
exportCsv: string;
|
|
425
|
+
templateNameFilter: string;
|
|
426
|
+
noRowsToExport: string;
|
|
353
427
|
};
|
|
354
428
|
};
|
|
355
429
|
resources: {
|
|
@@ -382,6 +456,8 @@ export declare const convertLanguageJsonToObject: (json: any, objToConvertTo?: C
|
|
|
382
456
|
countryCode: string;
|
|
383
457
|
defaultAI: string;
|
|
384
458
|
defaultAgent: string;
|
|
459
|
+
handoverStartWith: string;
|
|
460
|
+
handoverAssignee: string;
|
|
385
461
|
startWith_countrySettings: string;
|
|
386
462
|
enableRating: string;
|
|
387
463
|
enableRating_description: string;
|
|
@@ -399,6 +475,7 @@ export declare const convertLanguageJsonToObject: (json: any, objToConvertTo?: C
|
|
|
399
475
|
tag: string;
|
|
400
476
|
convstage: string;
|
|
401
477
|
clientstage: string;
|
|
478
|
+
quickReply: string;
|
|
402
479
|
description: string;
|
|
403
480
|
languageCode: string;
|
|
404
481
|
selectIntegrationName: string;
|
|
@@ -470,6 +547,7 @@ export declare const convertLanguageJsonToObject: (json: any, objToConvertTo?: C
|
|
|
470
547
|
defaultAgentId: string;
|
|
471
548
|
};
|
|
472
549
|
dashboard: {
|
|
550
|
+
title: string;
|
|
473
551
|
dashboardOverview: string;
|
|
474
552
|
refresh: string;
|
|
475
553
|
opened: string;
|
|
@@ -497,6 +575,123 @@ export declare const convertLanguageJsonToObject: (json: any, objToConvertTo?: C
|
|
|
497
575
|
lastResponse: string;
|
|
498
576
|
liveAssigneeConversations: string;
|
|
499
577
|
noAgentsFound: string;
|
|
578
|
+
last7Days: string;
|
|
579
|
+
allTime: string;
|
|
580
|
+
allAgents: string;
|
|
581
|
+
allChannels: string;
|
|
582
|
+
totalConversationsCard: string;
|
|
583
|
+
currentlyOngoing: string;
|
|
584
|
+
todaysAverage: string;
|
|
585
|
+
deliverySuccess: string;
|
|
586
|
+
successfullySent: string;
|
|
587
|
+
avgChatTime: string;
|
|
588
|
+
newConversations: string;
|
|
589
|
+
newClientsInPeriod: string;
|
|
590
|
+
closed: string;
|
|
591
|
+
uniqueClosed: string;
|
|
592
|
+
agentPerformance: string;
|
|
593
|
+
agents: string;
|
|
594
|
+
openedChats: string;
|
|
595
|
+
agent: string;
|
|
596
|
+
messagesSent: string;
|
|
597
|
+
messagesReceived: string;
|
|
598
|
+
avgResponseShort: string;
|
|
599
|
+
handleTime: string;
|
|
600
|
+
total: string;
|
|
601
|
+
conversations: string;
|
|
602
|
+
chats: string;
|
|
603
|
+
day: string;
|
|
604
|
+
week: string;
|
|
605
|
+
month: string;
|
|
606
|
+
totalMessages_one: string;
|
|
607
|
+
totalMessages_other: string;
|
|
608
|
+
totalAgents_one: string;
|
|
609
|
+
totalAgents_other: string;
|
|
610
|
+
agentChats_one: string;
|
|
611
|
+
agentChats_other: string;
|
|
612
|
+
yesterday: string;
|
|
613
|
+
last14Days: string;
|
|
614
|
+
last30Days: string;
|
|
615
|
+
agentPerformanceTooltip: string;
|
|
616
|
+
selectAll: string;
|
|
617
|
+
clearAll: string;
|
|
618
|
+
reports: string;
|
|
619
|
+
broadcast: {
|
|
620
|
+
title: string;
|
|
621
|
+
period: {
|
|
622
|
+
today: string;
|
|
623
|
+
yesterday: string;
|
|
624
|
+
last7Days: string;
|
|
625
|
+
last30Days: string;
|
|
626
|
+
currentMonth: string;
|
|
627
|
+
lastMonth: string;
|
|
628
|
+
clearAll: string;
|
|
629
|
+
};
|
|
630
|
+
overviewTitle: string;
|
|
631
|
+
stats: {
|
|
632
|
+
deliveryRate: string;
|
|
633
|
+
successfullyDelivered: string;
|
|
634
|
+
readRate: string;
|
|
635
|
+
messageOpenedByUsers: string;
|
|
636
|
+
sentMessages: string;
|
|
637
|
+
sentMessagesValue: string;
|
|
638
|
+
totalMessages: string;
|
|
639
|
+
messagesSentInBroadcast: string;
|
|
640
|
+
percentFormatted: string;
|
|
641
|
+
};
|
|
642
|
+
recipients: {
|
|
643
|
+
title: string;
|
|
644
|
+
reachEngagementOverview: string;
|
|
645
|
+
successfulRecipients: string;
|
|
646
|
+
failed: string;
|
|
647
|
+
successRate: string;
|
|
648
|
+
deliveredAndReadRecipients: string;
|
|
649
|
+
};
|
|
650
|
+
campaignProgress: {
|
|
651
|
+
title: string;
|
|
652
|
+
completedCampaigns: string;
|
|
653
|
+
failedAttempts: string;
|
|
654
|
+
messages: string;
|
|
655
|
+
};
|
|
656
|
+
chartLegend: {
|
|
657
|
+
successful: string;
|
|
658
|
+
failed: string;
|
|
659
|
+
};
|
|
660
|
+
statusDistribution: {
|
|
661
|
+
title: string;
|
|
662
|
+
total: string;
|
|
663
|
+
broadcastsLowercase: string;
|
|
664
|
+
};
|
|
665
|
+
status: {
|
|
666
|
+
completed: string;
|
|
667
|
+
failed: string;
|
|
668
|
+
draft: string;
|
|
669
|
+
inProgress: string;
|
|
670
|
+
scheduled: string;
|
|
671
|
+
};
|
|
672
|
+
};
|
|
673
|
+
};
|
|
674
|
+
onboardingChecklist: {
|
|
675
|
+
title: string;
|
|
676
|
+
getStarted: string;
|
|
677
|
+
steps: {
|
|
678
|
+
workspace: string;
|
|
679
|
+
invite: string;
|
|
680
|
+
channel: string;
|
|
681
|
+
firstMessage: string;
|
|
682
|
+
uploadFile: string;
|
|
683
|
+
testAi: string;
|
|
684
|
+
};
|
|
685
|
+
guide: {
|
|
686
|
+
steps: {
|
|
687
|
+
workspace: string;
|
|
688
|
+
invite: string;
|
|
689
|
+
channel: string;
|
|
690
|
+
firstMessage: string;
|
|
691
|
+
uploadFile: string;
|
|
692
|
+
testAi: string;
|
|
693
|
+
};
|
|
694
|
+
};
|
|
500
695
|
};
|
|
501
696
|
id: string;
|
|
502
697
|
save: string;
|
|
@@ -539,6 +734,10 @@ export declare const convertLanguageJsonToObject: (json: any, objToConvertTo?: C
|
|
|
539
734
|
menu_management: string;
|
|
540
735
|
menu_crumby: string;
|
|
541
736
|
customerSupport: string;
|
|
737
|
+
commandPalette: {
|
|
738
|
+
placeholder: string;
|
|
739
|
+
noResults: string;
|
|
740
|
+
};
|
|
542
741
|
searchPattern: string;
|
|
543
742
|
home: string;
|
|
544
743
|
backToHome: string;
|
|
@@ -571,6 +770,15 @@ export declare const convertLanguageJsonToObject: (json: any, objToConvertTo?: C
|
|
|
571
770
|
messageParameterPlaceholder: string;
|
|
572
771
|
unarchive: string;
|
|
573
772
|
headerImageURL: string;
|
|
773
|
+
or: string;
|
|
774
|
+
uploadImage: string;
|
|
775
|
+
uploadImageHint: string;
|
|
776
|
+
uploadImageHintInbox: string;
|
|
777
|
+
pastImageLink: string;
|
|
778
|
+
uploadingImage: string;
|
|
779
|
+
invalidImageURL: string;
|
|
780
|
+
imageUploadFailed: string;
|
|
781
|
+
orUploadImage: string;
|
|
574
782
|
pwa: {
|
|
575
783
|
installApp: string;
|
|
576
784
|
addAppToHomeScreen: string;
|
|
@@ -662,7 +870,9 @@ export declare const convertLanguageJsonToObject: (json: any, objToConvertTo?: C
|
|
|
662
870
|
ai_assistant: string;
|
|
663
871
|
api_key: string;
|
|
664
872
|
webhooks: string;
|
|
873
|
+
crm_integrations: string;
|
|
665
874
|
conversation_lifecycle: string;
|
|
875
|
+
quick_replies: string;
|
|
666
876
|
channels: string;
|
|
667
877
|
rating_settings: string;
|
|
668
878
|
agents_management: string;
|
|
@@ -706,6 +916,16 @@ export declare const convertLanguageJsonToObject: (json: any, objToConvertTo?: C
|
|
|
706
916
|
noAgents: string;
|
|
707
917
|
loadingMoreText: string;
|
|
708
918
|
allUsersAlreadyHaveAgents: string;
|
|
919
|
+
assignableForAutoAssignment: string;
|
|
920
|
+
assignableForAutoAssignmentDescription: string;
|
|
921
|
+
createModeUserLinked: string;
|
|
922
|
+
createModeApiKey: string;
|
|
923
|
+
createModeUserLinkedDescription: string;
|
|
924
|
+
createModeApiKeyDescription: string;
|
|
925
|
+
apiKeyLabel: string;
|
|
926
|
+
apiKeyLabelPlaceholder: string;
|
|
927
|
+
noUsersForLinkedAgentTitle: string;
|
|
928
|
+
noUsersForLinkedAgentDescription: string;
|
|
709
929
|
};
|
|
710
930
|
ai: {
|
|
711
931
|
title: string;
|
|
@@ -743,6 +963,23 @@ export declare const convertLanguageJsonToObject: (json: any, objToConvertTo?: C
|
|
|
743
963
|
searchPlaceholder: string;
|
|
744
964
|
noWebhooks: string;
|
|
745
965
|
loadingMoreText: string;
|
|
966
|
+
crm: {
|
|
967
|
+
title: string;
|
|
968
|
+
addIntegration: string;
|
|
969
|
+
searchPlaceholder: string;
|
|
970
|
+
noIntegrations: string;
|
|
971
|
+
crmName: string;
|
|
972
|
+
integrationName: string;
|
|
973
|
+
integrationNamePlaceholder: string;
|
|
974
|
+
token: string;
|
|
975
|
+
tokenPlaceholder: string;
|
|
976
|
+
urlHeader: string;
|
|
977
|
+
urlHeaderPlaceholder: string;
|
|
978
|
+
clientId: string;
|
|
979
|
+
clientIdPlaceholder: string;
|
|
980
|
+
clientSecret: string;
|
|
981
|
+
clientSecretPlaceholder: string;
|
|
982
|
+
};
|
|
746
983
|
};
|
|
747
984
|
conversationLifeCycle: {
|
|
748
985
|
title: string;
|
|
@@ -753,12 +990,86 @@ export declare const convertLanguageJsonToObject: (json: any, objToConvertTo?: C
|
|
|
753
990
|
noConversationLifecycle: string;
|
|
754
991
|
loadingMoreText: string;
|
|
755
992
|
};
|
|
993
|
+
quickReply: {
|
|
994
|
+
title: string;
|
|
995
|
+
addNewQuickReply: string;
|
|
996
|
+
editQuickReply: string;
|
|
997
|
+
command: string;
|
|
998
|
+
commandPlaceholder: string;
|
|
999
|
+
content: string;
|
|
1000
|
+
contentPlaceholder: string;
|
|
1001
|
+
updatedAt: string;
|
|
1002
|
+
searchPlaceholder: string;
|
|
1003
|
+
noQuickReplies: string;
|
|
1004
|
+
loadingMoreText: string;
|
|
1005
|
+
};
|
|
756
1006
|
channel: {
|
|
757
1007
|
title: string;
|
|
1008
|
+
subTitle: string;
|
|
758
1009
|
addNewChannel: string;
|
|
759
1010
|
searchPlaceholder: string;
|
|
760
1011
|
noChannels: string;
|
|
761
1012
|
loadingMoreText: string;
|
|
1013
|
+
newChannelOn: string;
|
|
1014
|
+
nameOfChannel: string;
|
|
1015
|
+
channelCreatedTitle: string;
|
|
1016
|
+
channelCreatedDescription: string;
|
|
1017
|
+
startConversation: string;
|
|
1018
|
+
channelCreateError: string;
|
|
1019
|
+
editChannelTitle: string;
|
|
1020
|
+
editing: string;
|
|
1021
|
+
connectedPhoneNumber: string;
|
|
1022
|
+
wabaId: string;
|
|
1023
|
+
countrySettings: string;
|
|
1024
|
+
startConversationWith: string;
|
|
1025
|
+
agentName: string;
|
|
1026
|
+
aiAgentName: string;
|
|
1027
|
+
channelUpdateError: string;
|
|
1028
|
+
reconnectFacebook: string;
|
|
1029
|
+
reconnectFacebookSuccess: string;
|
|
1030
|
+
reconnectFacebookError: string;
|
|
1031
|
+
selectStartWith: string;
|
|
1032
|
+
selectAiAgent: string;
|
|
1033
|
+
selectAgent: string;
|
|
1034
|
+
deleteConfirmTitle: string;
|
|
1035
|
+
deleteConfirmMessage: string;
|
|
1036
|
+
botToken: string;
|
|
1037
|
+
watchHowToCreate: string;
|
|
1038
|
+
stuck: string;
|
|
1039
|
+
ourTeam: string;
|
|
1040
|
+
isHereForYou: string;
|
|
1041
|
+
customChannelSetup: string;
|
|
1042
|
+
customChannelDescription: string;
|
|
1043
|
+
customEndpoint: string;
|
|
1044
|
+
customEndpointPlaceholder: string;
|
|
1045
|
+
customValidateToken: string;
|
|
1046
|
+
customValidateTokenPlaceholder: string;
|
|
1047
|
+
customAccessToken: string;
|
|
1048
|
+
customAccessTokenPlaceholder: string;
|
|
1049
|
+
customExternalId: string;
|
|
1050
|
+
customExternalIdPlaceholder: string;
|
|
1051
|
+
gupshupChannelDescription: string;
|
|
1052
|
+
gupshupDisplayPhoneNumber: string;
|
|
1053
|
+
gupshupDisplayPhoneNumberPlaceholder: string;
|
|
1054
|
+
gupshupAccessToken: string;
|
|
1055
|
+
gupshupAccessTokenPlaceholder: string;
|
|
1056
|
+
gupshupAppId: string;
|
|
1057
|
+
gupshupAppIdPlaceholder: string;
|
|
1058
|
+
gupshupWabaId: string;
|
|
1059
|
+
gupshupWabaIdPlaceholder: string;
|
|
1060
|
+
gupshupPhoneId: string;
|
|
1061
|
+
gupshupPhoneIdPlaceholder: string;
|
|
1062
|
+
gupshupChannelSuccessIncomingHint: string;
|
|
1063
|
+
customChannelSuccessIncomingHint: string;
|
|
1064
|
+
customChannelDocsLinkText: string;
|
|
1065
|
+
customChannelCopyIncomingUrl: string;
|
|
1066
|
+
customChannelIncomingUrlCopied: string;
|
|
1067
|
+
customChannelIncomingUrlCopyFailed: string;
|
|
1068
|
+
copyIntegrationId: string;
|
|
1069
|
+
integrationIdCopied: string;
|
|
1070
|
+
integrationIdCopyFailed: string;
|
|
1071
|
+
rating: string;
|
|
1072
|
+
ratingDescription: string;
|
|
762
1073
|
};
|
|
763
1074
|
crumby: {
|
|
764
1075
|
title: string;
|
|
@@ -786,6 +1097,9 @@ export declare const convertLanguageJsonToObject: (json: any, objToConvertTo?: C
|
|
|
786
1097
|
pleaseAddTestNumberFirst: string;
|
|
787
1098
|
goToTestNumbers: string;
|
|
788
1099
|
};
|
|
1100
|
+
assistant: {
|
|
1101
|
+
welcomeMessage: string;
|
|
1102
|
+
};
|
|
789
1103
|
file: {
|
|
790
1104
|
filesSubTitle: string;
|
|
791
1105
|
addFiles: string;
|
|
@@ -874,7 +1188,42 @@ export declare const convertLanguageJsonToObject: (json: any, objToConvertTo?: C
|
|
|
874
1188
|
askForCityDescription: string;
|
|
875
1189
|
handoverEnabled: string;
|
|
876
1190
|
handoverEnabledDescription: string;
|
|
1191
|
+
endEnabled: string;
|
|
1192
|
+
endEnabledDescription: string;
|
|
877
1193
|
saved: string;
|
|
1194
|
+
autoTaggingTitle: string;
|
|
1195
|
+
autoTaggingDescription: string;
|
|
1196
|
+
clientAutoTags: string;
|
|
1197
|
+
chatAutoTags: string;
|
|
1198
|
+
tagColumn: string;
|
|
1199
|
+
conditionColumn: string;
|
|
1200
|
+
tagPlaceholder: string;
|
|
1201
|
+
conditionPlaceholder: string;
|
|
1202
|
+
addNewRule: string;
|
|
1203
|
+
deleteRule: string;
|
|
1204
|
+
};
|
|
1205
|
+
promptSettings: {
|
|
1206
|
+
title: string;
|
|
1207
|
+
description: string;
|
|
1208
|
+
cardTitle: string;
|
|
1209
|
+
saved: string;
|
|
1210
|
+
maxCharacters: string;
|
|
1211
|
+
contextPrompt: {
|
|
1212
|
+
label: string;
|
|
1213
|
+
description: string;
|
|
1214
|
+
};
|
|
1215
|
+
rolePrompt: {
|
|
1216
|
+
label: string;
|
|
1217
|
+
description: string;
|
|
1218
|
+
};
|
|
1219
|
+
personaPrompt: {
|
|
1220
|
+
label: string;
|
|
1221
|
+
description: string;
|
|
1222
|
+
};
|
|
1223
|
+
constraints: {
|
|
1224
|
+
label: string;
|
|
1225
|
+
description: string;
|
|
1226
|
+
};
|
|
878
1227
|
};
|
|
879
1228
|
};
|
|
880
1229
|
files: {
|
package/src/config/azure.d.ts
CHANGED
|
@@ -2,3 +2,5 @@ export declare const AZURE_STORAGE_ACCOUNT = "bcuserres";
|
|
|
2
2
|
export declare const AZURE_RAG_CONTAINER = "rag";
|
|
3
3
|
export declare const AZURE_RAG_BASE_URL = "https://bcuserres.blob.core.windows.net/rag";
|
|
4
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";
|
|
@@ -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
|
};
|