-
Notifications
You must be signed in to change notification settings - Fork 117
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[front] - feature: add support for Microsoft connector active workflo…
…ws checks - Introduced functionality to verify active workflows for Microsoft connectors - Extended `providersToCheck` to include new Microsoft provider with workflow ID generation [types] - feature: implement Microsoft connector ID generation - Created a new utility function to generate incremental sync workflow IDs for Microsoft connectors - Exported the new Microsoft connector-related functions through the main index file of the types module
- Loading branch information
Jules
authored and
Jules
committed
Jul 19, 2024
1 parent
97e96d5
commit a6c59c7
Showing
3 changed files
with
15 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
import { ModelId } from "../shared/model_id"; | ||
|
||
export function microsoftIncrementalSyncWorkflowId(connectorId: ModelId) { | ||
return `microsoft-incrementalSync-${connectorId}`; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters