@bcrumbs.net/inbox 0.0.55 → 0.0.59
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/{cb9c022b3cf80e0f.svg → 2998ffe42c3436c0.svg} +43 -43
- package/{594c01a9720e0657.svg → 396ba1d86a9997b1.svg} +42 -42
- package/assets/ar/inbox.json +268 -263
- package/assets/en/inbox.json +270 -265
- package/d9e9a351fe00b4f8.png +0 -0
- package/index.cjs.d.ts +1 -1
- package/index.cjs.js +24277 -15000
- package/index.esm.d.ts +1 -1
- package/index.esm.js +24282 -15005
- package/package.json +3 -3
- package/src/app/auth/utils/getValidWorkspaceId.d.ts +4 -0
- package/src/app/broadcast/utils/helper.d.ts +2 -1
- package/src/app/contact/components/ContactFormFields.d.ts +1 -2
- package/src/app/contact/config/contactForm.d.ts +0 -3
- package/src/app/dashboard/components/DashboardSections.d.ts +6 -2
- package/src/app/dashboard/components/OpenedChatsCard.d.ts +2 -1
- package/src/app/dashboard/components/TagPerformanceCard.d.ts +8 -0
- package/src/app/dashboard/utils/dateHelpers.d.ts +3 -0
- package/src/app/dashboard/utils/reportHelpers.d.ts +16 -0
- package/src/app/inbox/components/Chat/ChatContent.d.ts +1 -0
- package/src/app/inbox/components/Chat/ChatHeader.d.ts +7 -3
- package/src/app/inbox/components/Chat/QuickReplyPickerMenu.d.ts +14 -0
- package/src/app/inbox/components/Chat/index.d.ts +4 -2
- package/src/app/inbox/components/ConvsList/ConvItem/ActionsMenu.d.ts +1 -1
- package/src/app/inbox/components/NewConvList/ConversationItem.d.ts +1 -1
- package/src/app/inbox/components/NewConvList/FilterDrawer.d.ts +2 -1
- package/src/app/inbox/components/NewConvList/HeaderSection.d.ts +3 -7
- package/src/app/inbox/components/NewConvList/index.d.ts +2 -1
- package/src/app/inbox/components/Shared/SharedStyle.d.ts +0 -6
- package/src/app/inbox/hooks/useCanContribute.d.ts +4 -2
- package/src/app/inbox/hooks/useConvAutoComplete.d.ts +15 -0
- package/src/app/inbox/hooks/useConvEnhance.d.ts +17 -0
- package/src/app/inbox/hooks/useConvFilters.d.ts +6 -2
- package/src/app/inbox/hooks/useMyAgent.d.ts +2 -0
- package/src/app/inbox/hooks/useQuickReplyPicker.d.ts +18 -0
- package/src/app/inbox/hooks/useQuickReplyPickerAnchor.d.ts +7 -0
- package/src/app/inbox/utils/convAssistIntent.d.ts +16 -0
- package/src/app/inbox/utils/convAssistStorage.d.ts +12 -0
- package/src/app/inbox/utils/convs.d.ts +9 -0
- package/src/app/inbox/utils/quickReplyPicker.d.ts +13 -0
- package/src/app/managemnet/components/WebhookHeadersEditor.d.ts +12 -0
- package/src/app/managemnet/components/channels/ChannelTypeCard.d.ts +2 -1
- package/src/app/onboarding/components/OnboardingChecklistWidget.d.ts +2 -1
- package/src/app/resources/components/Integrations/Facebook/PagePickerPopup.d.ts +1 -2
- package/src/app/resources/components/Integrations/Facebook/index.d.ts +3 -1
- package/src/app/resources/hooks/useFBPagesHook.d.ts +1 -0
- package/src/app/subscriptions/components/Plans/ShowcasePlans.d.ts +3 -1
- package/src/app/subscriptions/components/SubscriptionSettings/SubscriptionProfile.d.ts +0 -1
- package/src/app/subscriptions/components/SubscriptionSettings/SubscriptionUsageCard.d.ts +1 -2
- package/src/app/subscriptions/components/SubscriptionSettings/SubscriptionUsers.d.ts +1 -1
- package/src/app/subscriptions/components/SubscriptionSettings/index.d.ts +6 -0
- package/src/app/subscriptions/utils/newWorkspaceContext.d.ts +5 -0
- package/src/assets/locales/translations.d.ts +43 -0
- package/src/graphql.autogenerated.d.ts +170 -3
- package/src/graphql.billing.autogenerated.d.ts +169 -0
- package/src/lib/conversation-chat.d.ts +1 -1
- package/src/utils/zohoOAuth.d.ts +16 -0
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
export declare class ZohoOAuthExchangeError extends Error {
|
|
2
|
+
readonly zohoError?: string | undefined;
|
|
3
|
+
readonly httpStatus?: number | undefined;
|
|
4
|
+
constructor(message: string, zohoError?: string | undefined, httpStatus?: number | undefined);
|
|
5
|
+
}
|
|
6
|
+
export declare function isZohoInvalidCodeError(error: unknown): boolean;
|
|
7
|
+
/**
|
|
8
|
+
* Exchange a Zoho authorization code for a refresh token via the adapter service.
|
|
9
|
+
*/
|
|
10
|
+
export declare function exchangeZohoAuthorizationCodeForRefreshToken(input: {
|
|
11
|
+
code: string;
|
|
12
|
+
accountsBaseUrl: string;
|
|
13
|
+
clientId: string;
|
|
14
|
+
clientSecret: string;
|
|
15
|
+
redirectUri?: string;
|
|
16
|
+
}): Promise<string>;
|