@@ -13,6 +13,12 @@ sequenceDiagram
13
13
'theme': 'base',
14
14
'themeVariables': {
15
15
'fontFamily': 'Segoe UI',
16
+ 'primaryColor': '#4285F4',
17
+ 'primaryTextColor': '#fff',
18
+ 'primaryBorderColor': '#7570b3',
19
+ 'lineColor': '#555',
20
+ 'secondaryColor': '#f8f8f8',
21
+ 'tertiaryColor': '#f4f4f4',
16
22
'signalColor': '#7d7f7c',
17
23
'signalTextColor': '#7d7f7c'
18
24
}}}%%
@@ -21,36 +27,44 @@ sequenceDiagram
21
27
participant ad as Airdrop components
22
28
participant ee as External extractor
23
29
24
- note over gw,ad: Extract External Sync Units
30
+ rect rgb(240, 245, 255)
31
+ note over gw,ad: Extract External Sync Units
25
32
user ->> gw: Select import connection
26
33
gw ->> ad: Start External Sync Unit extraction
27
34
ad ->> ee: Start External Sync Unit extraction
28
35
ee -->> gw: List of External Sync Units
29
36
gw ->> ad: List of External Sync Units
30
37
ad ->> gw: List of External Sync Units
31
38
gw -->> user: Show available External Sync Units
39
+ end
32
40
33
-
41
+ rect rgb(240, 248, 240)
34
42
note over gw,ad: Extract Metadata
35
43
ad ->> ee: Start Metadata extraction
36
44
ee -->> gw: List of extracted metadata artifacts
37
45
gw ->> ad: List of extracted metadata artifacts
46
+ end
38
47
48
+ rect rgb(245, 245, 245)
39
49
note over gw,ad: Extract data
40
50
ad ->> ee: Start data extraction
41
51
ee -->> gw: List of extracted data artifacts
42
52
gw ->> ad: List of extracted data artifacts
43
53
44
54
note over ad: Transform and import data into DevRev
55
+ end
45
56
57
+ rect rgb(255, 246, 240)
46
58
note over gw,ad: Extract attachments
47
59
ad ->> ee: Start attachment extraction
48
60
ee -->> gw: List of extracted attachments
49
61
gw ->> ad: List of extracted attachments
50
62
51
63
ad -->> gw: Finished import
52
64
gw -->> user: Show finished import and report
65
+ end
53
66
67
+ rect rgb(248, 240, 245)
54
68
note over gw,ad: Delete data
55
69
user ->> gw: Delete import
56
70
gw ->> ad: Delete import
@@ -65,6 +79,7 @@ sequenceDiagram
65
79
note over ad: Deletes internal data
66
80
ad -->> gw: Finished deleting import
67
81
gw -->> user: Import deleted
82
+ end
68
83
```
69
84
70
85
## Sync modes
0 commit comments