feat(messaging): webhook push sync for Gmail, Calendar and Microsoft (#21970)
<!-- This is an auto-generated description by cubic. --> <a href="https://cubic.dev/pr/twentyhq/twenty/pull/21970?utm_source=github" target="_blank" rel="noopener noreferrer" data-no-image-dialog="true"><picture><source media="(prefers-color-scheme: dark)" srcset="https://www.cubic.dev/buttons/review-in-cubic-dark.svg"><source media="(prefers-color-scheme: light)" srcset="https://www.cubic.dev/buttons/review-in-cubic-light.svg"><img alt="Review in cubic" src="https://www.cubic.dev/buttons/review-in-cubic-dark.svg"></picture></a> <!-- End of auto-generated description by cubic. -->
This commit is contained in:
@@ -9,4 +9,5 @@ export enum FeatureFlagKey {
|
||||
IS_LOGIC_FUNCTION_PREBUILT_MODE_ENABLED = 'IS_LOGIC_FUNCTION_PREBUILT_MODE_ENABLED',
|
||||
IS_SETTINGS_DISCOVERY_HERO_ENABLED = 'IS_SETTINGS_DISCOVERY_HERO_ENABLED',
|
||||
IS_CALL_RECORDING_ENABLED = 'IS_CALL_RECORDING_ENABLED',
|
||||
IS_MESSAGING_CALENDAR_WEBHOOK_ENABLED = 'IS_MESSAGING_CALENDAR_WEBHOOK_ENABLED',
|
||||
}
|
||||
|
||||
@@ -0,0 +1,4 @@
|
||||
export enum WebhookSubscriptionChannelType {
|
||||
MESSAGING = 'messaging',
|
||||
CALENDAR = 'calendar',
|
||||
}
|
||||
@@ -0,0 +1,6 @@
|
||||
export enum WebhookSubscriptionStatus {
|
||||
PENDING = 'PENDING',
|
||||
ACTIVE = 'ACTIVE',
|
||||
FAILED = 'FAILED',
|
||||
EXPIRED = 'EXPIRED',
|
||||
}
|
||||
@@ -296,3 +296,5 @@ export { ViewOpenRecordIn } from './ViewOpenRecordIn';
|
||||
export { ViewSortDirection } from './ViewSortDirection';
|
||||
export { ViewType } from './ViewType';
|
||||
export { ViewVisibility } from './ViewVisibility';
|
||||
export { WebhookSubscriptionChannelType } from './WebhookSubscriptionChannelType';
|
||||
export { WebhookSubscriptionStatus } from './WebhookSubscriptionStatus';
|
||||
|
||||
Reference in New Issue
Block a user