wbcrm 1.56.8__py2.py3-none-any.whl

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.
Files changed (182) hide show
  1. wbcrm/__init__.py +1 -0
  2. wbcrm/admin/__init__.py +5 -0
  3. wbcrm/admin/accounts.py +60 -0
  4. wbcrm/admin/activities.py +104 -0
  5. wbcrm/admin/events.py +43 -0
  6. wbcrm/admin/groups.py +8 -0
  7. wbcrm/admin/products.py +9 -0
  8. wbcrm/apps.py +5 -0
  9. wbcrm/configurations/__init__.py +1 -0
  10. wbcrm/configurations/base.py +16 -0
  11. wbcrm/dynamic_preferences_registry.py +38 -0
  12. wbcrm/factories/__init__.py +14 -0
  13. wbcrm/factories/accounts.py +57 -0
  14. wbcrm/factories/activities.py +124 -0
  15. wbcrm/factories/groups.py +24 -0
  16. wbcrm/factories/products.py +11 -0
  17. wbcrm/filters/__init__.py +10 -0
  18. wbcrm/filters/accounts.py +80 -0
  19. wbcrm/filters/activities.py +204 -0
  20. wbcrm/filters/groups.py +21 -0
  21. wbcrm/filters/products.py +38 -0
  22. wbcrm/filters/signals.py +95 -0
  23. wbcrm/fixtures/wbcrm.json +1215 -0
  24. wbcrm/kpi_handlers/activities.py +171 -0
  25. wbcrm/locale/de/LC_MESSAGES/django.mo +0 -0
  26. wbcrm/locale/de/LC_MESSAGES/django.po +1557 -0
  27. wbcrm/locale/de/LC_MESSAGES/django.po.translated +1630 -0
  28. wbcrm/locale/en/LC_MESSAGES/django.mo +0 -0
  29. wbcrm/locale/en/LC_MESSAGES/django.po +1466 -0
  30. wbcrm/locale/fr/LC_MESSAGES/django.mo +0 -0
  31. wbcrm/locale/fr/LC_MESSAGES/django.po +1467 -0
  32. wbcrm/migrations/0001_initial_squashed_squashed_0032_productcompanyrelationship_alter_product_prospects_and_more.py +3948 -0
  33. wbcrm/migrations/0002_alter_activity_repeat_choice.py +32 -0
  34. wbcrm/migrations/0003_remove_activity_external_id_and_more.py +63 -0
  35. wbcrm/migrations/0004_alter_activity_status.py +28 -0
  36. wbcrm/migrations/0005_account_accountrole_accountroletype_and_more.py +182 -0
  37. wbcrm/migrations/0006_alter_activity_location.py +17 -0
  38. wbcrm/migrations/0007_alter_account_status.py +23 -0
  39. wbcrm/migrations/0008_alter_activity_options.py +16 -0
  40. wbcrm/migrations/0009_alter_account_is_public.py +19 -0
  41. wbcrm/migrations/0010_alter_account_reference_id.py +17 -0
  42. wbcrm/migrations/0011_activity_summary.py +22 -0
  43. wbcrm/migrations/0012_alter_activity_summary.py +17 -0
  44. wbcrm/migrations/0013_account_action_plan_account_relationship_status_and_more.py +34 -0
  45. wbcrm/migrations/0014_alter_account_relationship_status.py +24 -0
  46. wbcrm/migrations/0015_alter_activity_type.py +23 -0
  47. wbcrm/migrations/0016_auto_20241205_1015.py +106 -0
  48. wbcrm/migrations/0017_event.py +40 -0
  49. wbcrm/migrations/0018_activity_search_vector.py +24 -0
  50. wbcrm/migrations/__init__.py +0 -0
  51. wbcrm/models/__init__.py +5 -0
  52. wbcrm/models/accounts.py +648 -0
  53. wbcrm/models/activities.py +1419 -0
  54. wbcrm/models/events.py +15 -0
  55. wbcrm/models/groups.py +119 -0
  56. wbcrm/models/llm/activity_summaries.py +41 -0
  57. wbcrm/models/llm/analyze_relationship.py +50 -0
  58. wbcrm/models/products.py +86 -0
  59. wbcrm/models/recurrence.py +280 -0
  60. wbcrm/preferences.py +13 -0
  61. wbcrm/report/activity_report.py +110 -0
  62. wbcrm/serializers/__init__.py +23 -0
  63. wbcrm/serializers/accounts.py +141 -0
  64. wbcrm/serializers/activities.py +525 -0
  65. wbcrm/serializers/groups.py +30 -0
  66. wbcrm/serializers/products.py +58 -0
  67. wbcrm/serializers/recurrence.py +91 -0
  68. wbcrm/serializers/signals.py +71 -0
  69. wbcrm/static/wbcrm/markdown/documentation/activity.md +86 -0
  70. wbcrm/static/wbcrm/markdown/documentation/activitytype.md +20 -0
  71. wbcrm/static/wbcrm/markdown/documentation/group.md +2 -0
  72. wbcrm/static/wbcrm/markdown/documentation/product.md +11 -0
  73. wbcrm/synchronization/__init__.py +0 -0
  74. wbcrm/synchronization/activity/__init__.py +0 -0
  75. wbcrm/synchronization/activity/admin.py +73 -0
  76. wbcrm/synchronization/activity/backend.py +214 -0
  77. wbcrm/synchronization/activity/backends/__init__.py +0 -0
  78. wbcrm/synchronization/activity/backends/google/__init__.py +2 -0
  79. wbcrm/synchronization/activity/backends/google/google_calendar_backend.py +406 -0
  80. wbcrm/synchronization/activity/backends/google/request_utils/__init__.py +16 -0
  81. wbcrm/synchronization/activity/backends/google/request_utils/external_to_internal/create.py +75 -0
  82. wbcrm/synchronization/activity/backends/google/request_utils/external_to_internal/delete.py +78 -0
  83. wbcrm/synchronization/activity/backends/google/request_utils/external_to_internal/update.py +155 -0
  84. wbcrm/synchronization/activity/backends/google/request_utils/internal_to_external/update.py +181 -0
  85. wbcrm/synchronization/activity/backends/google/tasks.py +21 -0
  86. wbcrm/synchronization/activity/backends/google/tests/__init__.py +0 -0
  87. wbcrm/synchronization/activity/backends/google/tests/conftest.py +1 -0
  88. wbcrm/synchronization/activity/backends/google/tests/test_data.py +81 -0
  89. wbcrm/synchronization/activity/backends/google/tests/test_google_backend.py +319 -0
  90. wbcrm/synchronization/activity/backends/google/tests/test_utils.py +274 -0
  91. wbcrm/synchronization/activity/backends/google/typing_informations.py +139 -0
  92. wbcrm/synchronization/activity/backends/google/utils.py +217 -0
  93. wbcrm/synchronization/activity/backends/outlook/__init__.py +0 -0
  94. wbcrm/synchronization/activity/backends/outlook/backend.py +593 -0
  95. wbcrm/synchronization/activity/backends/outlook/msgraph.py +436 -0
  96. wbcrm/synchronization/activity/backends/outlook/parser.py +432 -0
  97. wbcrm/synchronization/activity/backends/outlook/tests/__init__.py +0 -0
  98. wbcrm/synchronization/activity/backends/outlook/tests/conftest.py +1 -0
  99. wbcrm/synchronization/activity/backends/outlook/tests/fixtures.py +606 -0
  100. wbcrm/synchronization/activity/backends/outlook/tests/test_admin.py +118 -0
  101. wbcrm/synchronization/activity/backends/outlook/tests/test_backend.py +274 -0
  102. wbcrm/synchronization/activity/backends/outlook/tests/test_controller.py +249 -0
  103. wbcrm/synchronization/activity/backends/outlook/tests/test_parser.py +174 -0
  104. wbcrm/synchronization/activity/controller.py +627 -0
  105. wbcrm/synchronization/activity/dynamic_preferences_registry.py +119 -0
  106. wbcrm/synchronization/activity/preferences.py +27 -0
  107. wbcrm/synchronization/activity/shortcuts.py +16 -0
  108. wbcrm/synchronization/activity/tasks.py +21 -0
  109. wbcrm/synchronization/activity/urls.py +7 -0
  110. wbcrm/synchronization/activity/utils.py +46 -0
  111. wbcrm/synchronization/activity/views.py +41 -0
  112. wbcrm/synchronization/admin.py +1 -0
  113. wbcrm/synchronization/apps.py +14 -0
  114. wbcrm/synchronization/dynamic_preferences_registry.py +1 -0
  115. wbcrm/synchronization/management.py +36 -0
  116. wbcrm/synchronization/tasks.py +1 -0
  117. wbcrm/synchronization/urls.py +5 -0
  118. wbcrm/tasks.py +264 -0
  119. wbcrm/templates/email/activity.html +98 -0
  120. wbcrm/templates/email/activity_report.html +6 -0
  121. wbcrm/templates/email/daily_summary.html +72 -0
  122. wbcrm/templates/email/global_daily_summary.html +85 -0
  123. wbcrm/tests/__init__.py +0 -0
  124. wbcrm/tests/accounts/__init__.py +0 -0
  125. wbcrm/tests/accounts/test_models.py +393 -0
  126. wbcrm/tests/accounts/test_viewsets.py +88 -0
  127. wbcrm/tests/conftest.py +76 -0
  128. wbcrm/tests/disable_signals.py +62 -0
  129. wbcrm/tests/e2e/__init__.py +1 -0
  130. wbcrm/tests/e2e/e2e_wbcrm_utility.py +83 -0
  131. wbcrm/tests/e2e/test_e2e.py +370 -0
  132. wbcrm/tests/test_assignee_methods.py +40 -0
  133. wbcrm/tests/test_chartviewsets.py +112 -0
  134. wbcrm/tests/test_dto.py +64 -0
  135. wbcrm/tests/test_filters.py +52 -0
  136. wbcrm/tests/test_models.py +217 -0
  137. wbcrm/tests/test_recurrence.py +292 -0
  138. wbcrm/tests/test_report.py +21 -0
  139. wbcrm/tests/test_serializers.py +171 -0
  140. wbcrm/tests/test_tasks.py +95 -0
  141. wbcrm/tests/test_viewsets.py +967 -0
  142. wbcrm/tests/tests.py +121 -0
  143. wbcrm/typings.py +109 -0
  144. wbcrm/urls.py +67 -0
  145. wbcrm/viewsets/__init__.py +22 -0
  146. wbcrm/viewsets/accounts.py +122 -0
  147. wbcrm/viewsets/activities.py +341 -0
  148. wbcrm/viewsets/buttons/__init__.py +7 -0
  149. wbcrm/viewsets/buttons/accounts.py +27 -0
  150. wbcrm/viewsets/buttons/activities.py +89 -0
  151. wbcrm/viewsets/buttons/signals.py +17 -0
  152. wbcrm/viewsets/display/__init__.py +12 -0
  153. wbcrm/viewsets/display/accounts.py +110 -0
  154. wbcrm/viewsets/display/activities.py +444 -0
  155. wbcrm/viewsets/display/groups.py +22 -0
  156. wbcrm/viewsets/display/products.py +105 -0
  157. wbcrm/viewsets/endpoints/__init__.py +8 -0
  158. wbcrm/viewsets/endpoints/accounts.py +25 -0
  159. wbcrm/viewsets/endpoints/activities.py +30 -0
  160. wbcrm/viewsets/endpoints/groups.py +7 -0
  161. wbcrm/viewsets/endpoints/products.py +9 -0
  162. wbcrm/viewsets/groups.py +38 -0
  163. wbcrm/viewsets/menu/__init__.py +8 -0
  164. wbcrm/viewsets/menu/accounts.py +18 -0
  165. wbcrm/viewsets/menu/activities.py +49 -0
  166. wbcrm/viewsets/menu/groups.py +16 -0
  167. wbcrm/viewsets/menu/products.py +20 -0
  168. wbcrm/viewsets/mixins.py +35 -0
  169. wbcrm/viewsets/previews/__init__.py +1 -0
  170. wbcrm/viewsets/previews/activities.py +10 -0
  171. wbcrm/viewsets/products.py +57 -0
  172. wbcrm/viewsets/recurrence.py +27 -0
  173. wbcrm/viewsets/titles/__init__.py +13 -0
  174. wbcrm/viewsets/titles/accounts.py +23 -0
  175. wbcrm/viewsets/titles/activities.py +61 -0
  176. wbcrm/viewsets/titles/products.py +13 -0
  177. wbcrm/viewsets/titles/utils.py +46 -0
  178. wbcrm/workflows/__init__.py +1 -0
  179. wbcrm/workflows/assignee_methods.py +25 -0
  180. wbcrm-1.56.8.dist-info/METADATA +11 -0
  181. wbcrm-1.56.8.dist-info/RECORD +182 -0
  182. wbcrm-1.56.8.dist-info/WHEEL +5 -0
@@ -0,0 +1,1215 @@
1
+ [
2
+ {
3
+ "model": "wbcrm.activitytype",
4
+ "pk": 1,
5
+ "fields": {
6
+ "default": true,
7
+ "title": "Call",
8
+ "slugify_title": "call",
9
+ "color": "#bb7ff9",
10
+ "score": "3.0",
11
+ "icon": "wb-icon-phone"
12
+ }
13
+ },
14
+ {
15
+ "model": "wbcrm.activitytype",
16
+ "pk": 2,
17
+ "fields": {
18
+ "default": false,
19
+ "title": "Email",
20
+ "slugify_title": "email",
21
+ "color": "#d46f94",
22
+ "score": "2.0",
23
+ "icon": "wb-icon-envelope"
24
+ }
25
+ },
26
+ {
27
+ "model": "wbcrm.activitytype",
28
+ "pk": 3,
29
+ "fields": {
30
+ "default": false,
31
+ "title": "Meeting",
32
+ "slugify_title": "meeting",
33
+ "color": "#00b0e6",
34
+ "score": "4.0",
35
+ "icon": "wb-icon-handshake"
36
+ }
37
+ },
38
+ {
39
+ "model": "wbcrm.activitytype",
40
+ "pk": 4,
41
+ "fields": {
42
+ "default": false,
43
+ "title": "Event",
44
+ "slugify_title": "event",
45
+ "color": "#ffa67a",
46
+ "score": "2.0",
47
+ "icon": "wb-icon-people"
48
+ }
49
+ },
50
+ {
51
+ "model": "wbcrm.activitytype",
52
+ "pk": 5,
53
+ "fields": {
54
+ "default": false,
55
+ "title": "Business Travel",
56
+ "slugify_title": "business travel",
57
+ "color": "#f9f871",
58
+ "score": "2.0",
59
+ "icon": "wb-icon-suitcase-1"
60
+ }
61
+ },
62
+ {
63
+ "model": "wbcrm.activitytype",
64
+ "pk": 6,
65
+ "fields": {
66
+ "default": false,
67
+ "title": "Holiday",
68
+ "slugify_title": "holiday",
69
+ "color": "#e60064",
70
+ "score": "2.0",
71
+ "icon": "wb-icon-globe-1"
72
+ }
73
+ },
74
+ {
75
+ "model": "wbcrm.activitytype",
76
+ "pk": 7,
77
+ "fields": {
78
+ "default": false,
79
+ "title": "Lunch",
80
+ "slugify_title": "lunch",
81
+ "color": "#000000",
82
+ "score": "2.0",
83
+ "icon": "wb-icon-lunch"
84
+ }
85
+ },
86
+ {
87
+ "model": "wbcrm.activitytype",
88
+ "pk": 8,
89
+ "fields": {
90
+ "default": false,
91
+ "title": "Task",
92
+ "slugify_title": "task",
93
+ "color": "#dbcece",
94
+ "score": "2.0",
95
+ "icon": "wb-icon-bookmark"
96
+ }
97
+ },
98
+ {
99
+ "model": "wbcrm.activitytype",
100
+ "pk": 9,
101
+ "fields": {
102
+ "default": false,
103
+ "title": "Encounter",
104
+ "slugify_title": "encounter",
105
+ "color": "#00ffe5",
106
+ "score": "2.0",
107
+ "icon": "wb-icon-speech-bubble"
108
+ }
109
+ },
110
+ {
111
+ "model": "wbcrm.activitytype",
112
+ "pk": 10,
113
+ "fields": {
114
+ "default": false,
115
+ "title": "Other",
116
+ "slugify_title": "other",
117
+ "color": "#455778",
118
+ "score": "2.0",
119
+ "icon": "wb-icon-data-grid-1"
120
+ }
121
+ },
122
+ {
123
+ "model": "agenda.calendaritem",
124
+ "pk": 1,
125
+ "fields": {
126
+ "color": "#00b0e6",
127
+ "icon": "wb-icon-handshake",
128
+ "visibility": "PUBLIC",
129
+ "item_type": "wbcrm.Activity",
130
+ "period": "{\"bounds\": \"[)\", \"lower\": \"2021-10-05T09:00:00+00:00\", \"upper\": \"2021-10-05T10:03:17.601000+00:00\"}",
131
+ "title": "Meeting with Wirtz",
132
+ "all_day": false
133
+ }
134
+ },
135
+ {
136
+ "model": "agenda.calendaritem",
137
+ "pk": 2,
138
+ "fields": {
139
+ "color": "#00b0e6",
140
+ "icon": "wb-icon-handshake",
141
+ "visibility": "PUBLIC",
142
+ "item_type": "wbcrm.Activity",
143
+ "period": "{\"bounds\": \"[)\", \"lower\": \"2021-10-05T09:15:00+00:00\", \"upper\": \"2021-10-05T10:04:41.873000+00:00\"}",
144
+ "title": "",
145
+ "all_day": false
146
+ }
147
+ },
148
+ {
149
+ "model": "agenda.calendaritem",
150
+ "pk": 3,
151
+ "fields": {
152
+ "color": null,
153
+ "icon": "wb-icon-handshake",
154
+ "visibility": "PUBLIC",
155
+ "item_type": "wbcrm.Activity",
156
+ "period": "{\"bounds\": \"[)\", \"lower\": \"2021-10-06T08:00:00+00:00\", \"upper\": \"2021-10-06T09:30:00+00:00\"}",
157
+ "title": "Meeting with Thomas Frei",
158
+ "all_day": false
159
+ }
160
+ },
161
+ {
162
+ "model": "agenda.calendaritem",
163
+ "pk": 4,
164
+ "fields": {
165
+ "color": "#bb7ff9",
166
+ "icon": "wb-icon-phone",
167
+ "visibility": "PUBLIC",
168
+ "item_type": "wbcrm.Activity",
169
+ "period": "{\"bounds\": \"[)\", \"lower\": \"2021-10-06T10:30:00+00:00\", \"upper\": \"2021-10-06T12:30:00+00:00\"}",
170
+ "title": "Call Atlantic Games",
171
+ "all_day": false
172
+ }
173
+ },
174
+ {
175
+ "model": "agenda.calendaritem",
176
+ "pk": 5,
177
+ "fields": {
178
+ "color": null,
179
+ "icon": "wb-icon-phone",
180
+ "visibility": "PUBLIC",
181
+ "item_type": "wbcrm.Activity",
182
+ "period": "{\"bounds\": \"[)\", \"lower\": \"2020-01-08T15:20:00+00:00\", \"upper\": \"2020-01-08T16:00:00+00:00\"}",
183
+ "title": "Call with Wirtz",
184
+ "all_day": false
185
+ }
186
+ },
187
+ {
188
+ "model": "agenda.calendaritem",
189
+ "pk": 6,
190
+ "fields": {
191
+ "color": "#00b0e6",
192
+ "icon": "wb-icon-handshake",
193
+ "visibility": "PUBLIC",
194
+ "item_type": "wbcrm.Activity",
195
+ "period": "{\"bounds\": \"[)\", \"lower\": \"2021-10-07T08:15:00+00:00\", \"upper\": \"2021-10-07T17:30:00+00:00\"}",
196
+ "title": "Meeting with Atlantic Games",
197
+ "all_day": false
198
+ }
199
+ },
200
+ {
201
+ "model": "agenda.calendaritem",
202
+ "pk": 7,
203
+ "fields": {
204
+ "color": null,
205
+ "icon": "wb-icon-handshake",
206
+ "visibility": "PUBLIC",
207
+ "item_type": "wbcrm.Activity",
208
+ "period": "{\"bounds\": \"[)\", \"lower\": \"2021-10-14T05:15:00+00:00\", \"upper\": \"2021-10-14T07:20:00+00:00\"}",
209
+ "title": "Meeting with Wirtz",
210
+ "all_day": false
211
+ }
212
+ },
213
+ {
214
+ "model": "agenda.calendaritem",
215
+ "pk": 8,
216
+ "fields": {
217
+ "color": "#bb7ff9",
218
+ "icon": "wb-icon-phone",
219
+ "visibility": "PUBLIC",
220
+ "item_type": "wbcrm.Activity",
221
+ "period": "{\"bounds\": \"[)\", \"lower\": \"2021-10-08T06:00:00+00:00\", \"upper\": \"2021-10-08T08:00:00+00:00\"}",
222
+ "title": "Phone Call with Samuelsson",
223
+ "all_day": false
224
+ }
225
+ },
226
+ {
227
+ "model": "agenda.calendaritem",
228
+ "pk": 9,
229
+ "fields": {
230
+ "color": "#00b0e6",
231
+ "icon": "wb-icon-handshake",
232
+ "visibility": "PUBLIC",
233
+ "item_type": "wbcrm.Activity",
234
+ "period": "{\"bounds\": \"[)\", \"lower\": \"2021-10-12T10:50:38+00:00\", \"upper\": \"2021-10-12T11:50:38+00:00\"}",
235
+ "title": "Meeting with Sangwit",
236
+ "all_day": false
237
+ }
238
+ },
239
+ {
240
+ "model": "agenda.calendaritem",
241
+ "pk": 10,
242
+ "fields": {
243
+ "color": "#bb7ff9",
244
+ "icon": "wb-icon-phone",
245
+ "visibility": "PUBLIC",
246
+ "item_type": "wbcrm.Activity",
247
+ "period": "{\"bounds\": \"[)\", \"lower\": \"2021-10-12T08:00:00+00:00\", \"upper\": \"2021-10-12T10:00:00+00:00\"}",
248
+ "title": "Call with Dögg",
249
+ "all_day": false
250
+ }
251
+ },
252
+ {
253
+ "model": "agenda.calendaritem",
254
+ "pk": 11,
255
+ "fields": {
256
+ "color": "#00b0e6",
257
+ "icon": "wb-icon-handshake",
258
+ "visibility": "PUBLIC",
259
+ "item_type": "wbcrm.Activity",
260
+ "period": "{\"bounds\": \"[)\", \"lower\": \"2021-09-30T22:00:00+00:00\", \"upper\": \"2021-10-01T06:20:00+00:00\"}",
261
+ "title": "Meeting with Kaizen",
262
+ "all_day": false
263
+ }
264
+ },
265
+ {
266
+ "model": "agenda.calendaritem",
267
+ "pk": 12,
268
+ "fields": {
269
+ "color": "#000000",
270
+ "icon": "wb-icon-lunch",
271
+ "visibility": "PUBLIC",
272
+ "item_type": "wbcrm.Activity",
273
+ "period": "{\"bounds\": \"[)\", \"lower\": \"2021-09-30T22:00:00+00:00\", \"upper\": \"2021-10-01T06:20:00+00:00\"}",
274
+ "title": "Eating with Diana Beich",
275
+ "all_day": false
276
+ }
277
+ },
278
+ {
279
+ "model": "agenda.calendaritem",
280
+ "pk": 13,
281
+ "fields": {
282
+ "color": "#00b0e6",
283
+ "icon": "wb-icon-handshake",
284
+ "visibility": "PUBLIC",
285
+ "item_type": "wbcrm.Activity",
286
+ "period": "{\"bounds\": \"[)\", \"lower\": \"2021-04-01T10:00:00+00:00\", \"upper\": \"2021-04-01T12:35:00+00:00\"}",
287
+ "title": "Meeting with Uni Hamburg",
288
+ "all_day": false
289
+ }
290
+ },
291
+ {
292
+ "model": "agenda.calendaritem",
293
+ "pk": 14,
294
+ "fields": {
295
+ "color": "#bb7ff9",
296
+ "icon": "wb-icon-phone",
297
+ "visibility": "PUBLIC",
298
+ "item_type": "wbcrm.Activity",
299
+ "period": "{\"bounds\": \"[)\", \"lower\": \"2021-10-05T13:00:00+00:00\", \"upper\": \"2021-10-05T14:15:00+00:00\"}",
300
+ "title": "Call with Uni Hamburg",
301
+ "all_day": false
302
+ }
303
+ },
304
+ {
305
+ "model": "agenda.calendaritem",
306
+ "pk": 15,
307
+ "fields": {
308
+ "color": null,
309
+ "icon": "wb-icon-phone",
310
+ "visibility": "PUBLIC",
311
+ "item_type": "wbcrm.Activity",
312
+ "period": "{\"bounds\": \"[)\", \"lower\": \"2021-01-01T04:00:00+00:00\", \"upper\": \"2021-01-01T06:00:00+00:00\"}",
313
+ "title": "Call with Ratanarak",
314
+ "all_day": false
315
+ }
316
+ },
317
+ {
318
+ "model": "agenda.calendaritem",
319
+ "pk": 16,
320
+ "fields": {
321
+ "color": "#bb7ff9",
322
+ "icon": "wb-icon-phone",
323
+ "visibility": "PUBLIC",
324
+ "item_type": "wbcrm.Activity",
325
+ "period": "{\"bounds\": \"[)\", \"lower\": \"2021-10-05T08:30:00+00:00\", \"upper\": \"2021-10-05T13:30:00+00:00\"}",
326
+ "title": "Call with Kaizen IT",
327
+ "all_day": false
328
+ }
329
+ },
330
+ {
331
+ "model": "agenda.calendaritem",
332
+ "pk": 17,
333
+ "fields": {
334
+ "color": "#00b0e6",
335
+ "icon": "wb-icon-handshake",
336
+ "visibility": "PUBLIC",
337
+ "item_type": "wbcrm.Activity",
338
+ "period": "{\"bounds\": \"[)\", \"lower\": \"2021-09-30T22:00:00+00:00\", \"upper\": \"2021-10-01T21:00:00+00:00\"}",
339
+ "title": "Meeting with the LowCountryBank",
340
+ "all_day": false
341
+ }
342
+ },
343
+ {
344
+ "model": "agenda.calendaritem",
345
+ "pk": 18,
346
+ "fields": {
347
+ "color": "#f9f871",
348
+ "icon": "wb-icon-suitcase-1",
349
+ "visibility": "PUBLIC",
350
+ "item_type": "wbcrm.Activity",
351
+ "period": "{\"bounds\": \"[)\", \"lower\": \"2021-09-30T22:00:00+00:00\", \"upper\": \"2021-10-05T21:00:00+00:00\"}",
352
+ "title": "Travel to Russia",
353
+ "all_day": false
354
+ }
355
+ },
356
+ {
357
+ "model": "agenda.calendaritem",
358
+ "pk": 19,
359
+ "fields": {
360
+ "color": "#ffa67a",
361
+ "icon": "wb-icon-people",
362
+ "visibility": "PUBLIC",
363
+ "item_type": "wbcrm.Activity",
364
+ "period": "{\"bounds\": \"[)\", \"lower\": \"2023-05-20T16:00:00+00:00\", \"upper\": \"2023-05-21T00:00:00+00:00\"}",
365
+ "title": "Throw Big Birthday Party",
366
+ "all_day": false
367
+ }
368
+ },
369
+ {
370
+ "model": "agenda.calendaritem",
371
+ "pk": 20,
372
+ "fields": {
373
+ "color": "#bb7ff9",
374
+ "icon": "wb-icon-phone",
375
+ "visibility": "PUBLIC",
376
+ "item_type": "wbcrm.Activity",
377
+ "period": "{\"bounds\": \"[)\", \"lower\": \"2022-06-17T08:15:00+00:00\", \"upper\": \"2022-06-17T13:00:59+00:00\"}",
378
+ "title": "Conference Call",
379
+ "all_day": false
380
+ }
381
+ },
382
+ {
383
+ "model": "agenda.calendaritem",
384
+ "pk": 21,
385
+ "fields": {
386
+ "color": "#bb7ff9",
387
+ "icon": "wb-icon-phone",
388
+ "visibility": "PUBLIC",
389
+ "item_type": "wbcrm.Activity",
390
+ "period": "{\"bounds\": \"[)\", \"lower\": \"2022-06-24T08:15:00+00:00\", \"upper\": \"2022-06-24T13:00:59+00:00\"}",
391
+ "title": "Conference Call",
392
+ "all_day": false
393
+ }
394
+ },
395
+ {
396
+ "model": "agenda.calendaritem",
397
+ "pk": 22,
398
+ "fields": {
399
+ "color": "#bb7ff9",
400
+ "icon": "wb-icon-phone",
401
+ "visibility": "PUBLIC",
402
+ "item_type": "wbcrm.Activity",
403
+ "period": "{\"bounds\": \"[)\", \"lower\": \"2022-07-01T08:15:00+00:00\", \"upper\": \"2022-07-01T13:00:59+00:00\"}",
404
+ "title": "Conference Call",
405
+ "all_day": false
406
+ }
407
+ },
408
+ {
409
+ "model": "agenda.calendaritem",
410
+ "pk": 23,
411
+ "fields": {
412
+ "color": "#bb7ff9",
413
+ "icon": "wb-icon-phone",
414
+ "visibility": "PUBLIC",
415
+ "item_type": "wbcrm.Activity",
416
+ "period": "{\"bounds\": \"[)\", \"lower\": \"2022-07-08T08:15:00+00:00\", \"upper\": \"2022-07-08T13:00:59+00:00\"}",
417
+ "title": "Conference Call",
418
+ "all_day": false
419
+ }
420
+ },
421
+ {
422
+ "model": "agenda.calendaritem",
423
+ "pk": 24,
424
+ "fields": {
425
+ "color": "#bb7ff9",
426
+ "icon": "wb-icon-phone",
427
+ "visibility": "PUBLIC",
428
+ "item_type": "wbcrm.Activity",
429
+ "period": "{\"bounds\": \"[)\", \"lower\": \"2022-07-15T08:15:00+00:00\", \"upper\": \"2022-07-15T13:00:59+00:00\"}",
430
+ "title": "Conference Call",
431
+ "all_day": false
432
+ }
433
+ },
434
+ {
435
+ "model": "agenda.calendaritem",
436
+ "pk": 25,
437
+ "fields": {
438
+ "color": "#bb7ff9",
439
+ "icon": "wb-icon-phone",
440
+ "visibility": "PUBLIC",
441
+ "item_type": "wbcrm.Activity",
442
+ "period": "{\"bounds\": \"[)\", \"lower\": \"2022-07-22T08:15:00+00:00\", \"upper\": \"2022-07-22T13:00:59+00:00\"}",
443
+ "title": "Conference Call",
444
+ "all_day": false
445
+ }
446
+ },
447
+ {
448
+ "model": "agenda.calendaritem",
449
+ "pk": 26,
450
+ "fields": {
451
+ "color": "#bb7ff9",
452
+ "icon": "wb-icon-phone",
453
+ "visibility": "PRIVATE",
454
+ "item_type": "wbcrm.Activity",
455
+ "period": "{\"bounds\": \"[)\", \"lower\": \"2022-08-18T12:22:02+00:00\", \"upper\": \"2022-08-18T13:22:02+00:00\"}",
456
+ "title": "Super Secret wbcrm.Activity",
457
+ "all_day": false
458
+ }
459
+ },
460
+ {
461
+ "model": "wbcrm.activity",
462
+ "pk": 1,
463
+ "fields": {
464
+ "parent_occurrence": null,
465
+ "propagate_for_all_children": false,
466
+ "recurrence_end": null,
467
+ "recurrence_count": null,
468
+ "repeat_choice": "NEVER",
469
+ "online_meeting": false,
470
+ "status": "FINISHED",
471
+ "description": "Meeting with Wirtz",
472
+ "result": "",
473
+ "type": 3,
474
+ "importance": "MEDIUM",
475
+ "start": "2021-10-05T09:00:00Z",
476
+ "end": "2021-10-05T10:03:17.601Z",
477
+ "reminder_choice": "NEVER",
478
+ "location": null,
479
+ "location_longitude": null,
480
+ "location_latitude": null,
481
+ "created": "2021-10-05T09:03:17.605Z",
482
+ "reviewed_at": null,
483
+ "edited": "2022-07-06T16:28:46.867Z",
484
+ "preceded_by": null,
485
+ "disable_participant_check": false
486
+ }
487
+ },
488
+ {
489
+ "model": "wbcrm.activity",
490
+ "pk": 2,
491
+ "fields": {
492
+ "parent_occurrence": null,
493
+ "propagate_for_all_children": false,
494
+ "recurrence_end": null,
495
+ "recurrence_count": null,
496
+ "repeat_choice": "NEVER",
497
+ "online_meeting": false,
498
+ "status": "FINISHED",
499
+ "description": "Meeting with Andrew Q'quinn",
500
+ "result": "",
501
+ "type": 3,
502
+ "importance": "LOW",
503
+ "start": "2021-10-05T09:15:00Z",
504
+ "end": "2021-10-05T10:04:41.873Z",
505
+ "reminder_choice": "NEVER",
506
+ "location": null,
507
+ "location_longitude": null,
508
+ "location_latitude": null,
509
+ "created": "2021-10-05T09:04:41.878Z",
510
+ "reviewed_at": null,
511
+ "edited": "2022-07-06T15:50:16.514Z",
512
+ "preceded_by": null,
513
+ "disable_participant_check": false
514
+ }
515
+ },
516
+ {
517
+ "model": "wbcrm.activity",
518
+ "pk": 3,
519
+ "fields": {
520
+ "parent_occurrence": null,
521
+ "propagate_for_all_children": false,
522
+ "recurrence_end": null,
523
+ "recurrence_count": null,
524
+ "repeat_choice": "NEVER",
525
+ "online_meeting": false,
526
+ "status": "CANCELLED",
527
+ "description": "Meeting with Thomas Frei",
528
+ "result": "",
529
+ "type": 3,
530
+ "importance": "LOW",
531
+ "start": "2021-10-06T08:00:00Z",
532
+ "end": "2021-10-06T09:30:00Z",
533
+ "reminder_choice": "NEVER",
534
+ "location": null,
535
+ "location_longitude": null,
536
+ "location_latitude": null,
537
+ "created": "2021-10-07T08:21:02.603Z",
538
+ "reviewed_at": null,
539
+ "edited": "2022-07-06T16:28:26.598Z",
540
+ "preceded_by": null,
541
+ "disable_participant_check": false
542
+ }
543
+ },
544
+ {
545
+ "model": "wbcrm.activity",
546
+ "pk": 4,
547
+ "fields": {
548
+ "parent_occurrence": null,
549
+ "propagate_for_all_children": false,
550
+ "recurrence_end": null,
551
+ "recurrence_count": null,
552
+ "repeat_choice": "NEVER",
553
+ "online_meeting": false,
554
+ "status": "CANCELLED",
555
+ "description": "Call Atlantic Games",
556
+ "result": "",
557
+ "type": 1,
558
+ "importance": "LOW",
559
+ "start": "2021-10-06T10:30:00Z",
560
+ "end": "2021-10-06T12:30:00Z",
561
+ "reminder_choice": "NEVER",
562
+ "location": null,
563
+ "location_longitude": null,
564
+ "location_latitude": null,
565
+ "created": "2021-10-07T08:29:41.295Z",
566
+ "reviewed_at": null,
567
+ "edited": "2022-07-06T16:19:13.416Z",
568
+ "preceded_by": null,
569
+ "disable_participant_check": false
570
+ }
571
+ },
572
+ {
573
+ "model": "wbcrm.activity",
574
+ "pk": 5,
575
+ "fields": {
576
+ "parent_occurrence": null,
577
+ "propagate_for_all_children": false,
578
+ "recurrence_end": null,
579
+ "recurrence_count": null,
580
+ "repeat_choice": "NEVER",
581
+ "online_meeting": false,
582
+ "status": "REVIEWED",
583
+ "description": "Call with Wirtz",
584
+ "result": "<p>The call was great</p>",
585
+ "type": 1,
586
+ "importance": "LOW",
587
+ "start": "2020-01-08T15:20:00Z",
588
+ "end": "2020-01-08T16:00:00Z",
589
+ "reminder_choice": "NEVER",
590
+ "location": null,
591
+ "location_longitude": null,
592
+ "location_latitude": null,
593
+ "created": "2021-10-08T14:19:57.687Z",
594
+ "reviewed_at": "2021-10-08T14:21:03.632Z",
595
+ "edited": "2022-07-06T16:28:05.810Z",
596
+ "preceded_by": null,
597
+ "disable_participant_check": false
598
+ }
599
+ },
600
+ {
601
+ "model": "wbcrm.activity",
602
+ "pk": 6,
603
+ "fields": {
604
+ "parent_occurrence": null,
605
+ "propagate_for_all_children": false,
606
+ "recurrence_end": null,
607
+ "recurrence_count": null,
608
+ "repeat_choice": "NEVER",
609
+ "online_meeting": false,
610
+ "status": "FINISHED",
611
+ "description": "Meeting with Atlantic Games",
612
+ "result": "",
613
+ "type": 3,
614
+ "importance": "LOW",
615
+ "start": "2021-10-07T08:15:00Z",
616
+ "end": "2021-10-07T17:30:00Z",
617
+ "reminder_choice": "MINUTES_15",
618
+ "location": null,
619
+ "location_longitude": null,
620
+ "location_latitude": null,
621
+ "created": "2021-10-08T14:27:09.795Z",
622
+ "reviewed_at": null,
623
+ "edited": "2022-07-06T16:27:31.606Z",
624
+ "preceded_by": null,
625
+ "disable_participant_check": false
626
+ }
627
+ },
628
+ {
629
+ "model": "wbcrm.activity",
630
+ "pk": 7,
631
+ "fields": {
632
+ "parent_occurrence": null,
633
+ "propagate_for_all_children": false,
634
+ "recurrence_end": null,
635
+ "recurrence_count": null,
636
+ "repeat_choice": "NEVER",
637
+ "online_meeting": false,
638
+ "status": "REVIEWED",
639
+ "description": "Meeting with Wirtz",
640
+ "result": "Went well",
641
+ "type": 3,
642
+ "importance": "LOW",
643
+ "start": "2021-10-14T05:15:00Z",
644
+ "end": "2021-10-14T07:20:00Z",
645
+ "reminder_choice": "NEVER",
646
+ "location": null,
647
+ "location_longitude": null,
648
+ "location_latitude": null,
649
+ "created": "2021-10-11T06:21:04.844Z",
650
+ "reviewed_at": "2021-10-11T06:21:22.775Z",
651
+ "edited": "2022-07-06T16:27:07.201Z",
652
+ "preceded_by": null,
653
+ "disable_participant_check": false
654
+ }
655
+ },
656
+ {
657
+ "model": "wbcrm.activity",
658
+ "pk": 8,
659
+ "fields": {
660
+ "parent_occurrence": null,
661
+ "propagate_for_all_children": false,
662
+ "recurrence_end": null,
663
+ "recurrence_count": null,
664
+ "repeat_choice": "NEVER",
665
+ "online_meeting": false,
666
+ "status": "FINISHED",
667
+ "description": "Phone Call with Samuelsson",
668
+ "result": "",
669
+ "type": 1,
670
+ "importance": "LOW",
671
+ "start": "2021-10-08T06:00:00Z",
672
+ "end": "2021-10-08T08:00:00Z",
673
+ "reminder_choice": "MINUTES_15",
674
+ "location": null,
675
+ "location_longitude": null,
676
+ "location_latitude": null,
677
+ "created": "2021-10-11T06:54:40.387Z",
678
+ "reviewed_at": null,
679
+ "edited": "2022-07-06T16:26:43.240Z",
680
+ "preceded_by": null,
681
+ "disable_participant_check": false
682
+ }
683
+ },
684
+ {
685
+ "model": "wbcrm.activity",
686
+ "pk": 9,
687
+ "fields": {
688
+ "parent_occurrence": null,
689
+ "propagate_for_all_children": false,
690
+ "recurrence_end": null,
691
+ "recurrence_count": null,
692
+ "repeat_choice": "NEVER",
693
+ "online_meeting": false,
694
+ "status": "FINISHED",
695
+ "description": "Meeting with Sangwit",
696
+ "result": "",
697
+ "type": 3,
698
+ "importance": "LOW",
699
+ "start": "2021-10-12T10:50:38Z",
700
+ "end": "2021-10-12T11:50:38Z",
701
+ "reminder_choice": "MINUTES_15",
702
+ "location": null,
703
+ "location_longitude": null,
704
+ "location_latitude": null,
705
+ "created": "2021-10-12T10:51:06.518Z",
706
+ "reviewed_at": null,
707
+ "edited": "2022-07-06T16:26:20.686Z",
708
+ "preceded_by": null,
709
+ "disable_participant_check": false
710
+ }
711
+ },
712
+ {
713
+ "model": "wbcrm.activity",
714
+ "pk": 10,
715
+ "fields": {
716
+ "parent_occurrence": null,
717
+ "propagate_for_all_children": false,
718
+ "recurrence_end": null,
719
+ "recurrence_count": null,
720
+ "repeat_choice": "NEVER",
721
+ "online_meeting": false,
722
+ "status": "FINISHED",
723
+ "description": "Call with Dögg",
724
+ "result": "",
725
+ "type": 1,
726
+ "importance": "LOW",
727
+ "start": "2021-10-12T08:00:00Z",
728
+ "end": "2021-10-12T10:00:00Z",
729
+ "reminder_choice": "NEVER",
730
+ "location": null,
731
+ "location_longitude": null,
732
+ "location_latitude": null,
733
+ "created": "2021-10-12T13:06:16.231Z",
734
+ "reviewed_at": null,
735
+ "edited": "2022-07-06T16:25:54.544Z",
736
+ "preceded_by": null,
737
+ "disable_participant_check": false
738
+ }
739
+ },
740
+ {
741
+ "model": "wbcrm.activity",
742
+ "pk": 11,
743
+ "fields": {
744
+ "parent_occurrence": null,
745
+ "propagate_for_all_children": false,
746
+ "recurrence_end": null,
747
+ "recurrence_count": null,
748
+ "repeat_choice": "NEVER",
749
+ "online_meeting": false,
750
+ "status": "FINISHED",
751
+ "description": "Meeting with Kaizen",
752
+ "result": "",
753
+ "type": 3,
754
+ "importance": "LOW",
755
+ "start": "2021-09-30T22:00:00Z",
756
+ "end": "2021-10-01T06:20:00Z",
757
+ "reminder_choice": "NEVER",
758
+ "location": null,
759
+ "location_longitude": null,
760
+ "location_latitude": null,
761
+ "created": "2021-10-12T13:09:31.444Z",
762
+ "reviewed_at": null,
763
+ "edited": "2022-07-06T16:25:26.828Z",
764
+ "preceded_by": null,
765
+ "disable_participant_check": false
766
+ }
767
+ },
768
+ {
769
+ "model": "wbcrm.activity",
770
+ "pk": 12,
771
+ "fields": {
772
+ "parent_occurrence": null,
773
+ "propagate_for_all_children": false,
774
+ "recurrence_end": null,
775
+ "recurrence_count": null,
776
+ "repeat_choice": "NEVER",
777
+ "online_meeting": false,
778
+ "status": "FINISHED",
779
+ "description": "Eating with Diana Beich",
780
+ "result": "",
781
+ "type": 7,
782
+ "importance": "LOW",
783
+ "start": "2021-09-30T22:00:00Z",
784
+ "end": "2021-10-01T06:20:00Z",
785
+ "reminder_choice": "NEVER",
786
+ "location": null,
787
+ "location_longitude": null,
788
+ "location_latitude": null,
789
+ "created": "2021-10-12T13:14:48.051Z",
790
+ "reviewed_at": null,
791
+ "edited": "2022-07-06T16:21:26.051Z",
792
+ "preceded_by": null,
793
+ "disable_participant_check": false
794
+ }
795
+ },
796
+ {
797
+ "model": "wbcrm.activity",
798
+ "pk": 13,
799
+ "fields": {
800
+ "parent_occurrence": null,
801
+ "propagate_for_all_children": false,
802
+ "recurrence_end": null,
803
+ "recurrence_count": null,
804
+ "repeat_choice": "NEVER",
805
+ "online_meeting": false,
806
+ "status": "FINISHED",
807
+ "description": "Meeting with Uni Hamburg",
808
+ "result": "",
809
+ "type": 3,
810
+ "importance": "LOW",
811
+ "start": "2021-04-01T10:00:00Z",
812
+ "end": "2021-04-01T12:35:00Z",
813
+ "reminder_choice": "NEVER",
814
+ "location": null,
815
+ "location_longitude": null,
816
+ "location_latitude": null,
817
+ "created": "2021-10-12T13:16:47.884Z",
818
+ "reviewed_at": null,
819
+ "edited": "2022-07-06T16:21:48.936Z",
820
+ "preceded_by": null,
821
+ "disable_participant_check": false
822
+ }
823
+ },
824
+ {
825
+ "model": "wbcrm.activity",
826
+ "pk": 14,
827
+ "fields": {
828
+ "parent_occurrence": null,
829
+ "propagate_for_all_children": false,
830
+ "recurrence_end": null,
831
+ "recurrence_count": null,
832
+ "repeat_choice": "NEVER",
833
+ "online_meeting": false,
834
+ "status": "FINISHED",
835
+ "description": "Call with Uni Hamburg",
836
+ "result": "",
837
+ "type": 1,
838
+ "importance": "LOW",
839
+ "start": "2021-10-05T13:00:00Z",
840
+ "end": "2021-10-05T14:15:00Z",
841
+ "reminder_choice": "NEVER",
842
+ "location": null,
843
+ "location_longitude": null,
844
+ "location_latitude": null,
845
+ "created": "2021-10-12T13:18:06.802Z",
846
+ "reviewed_at": null,
847
+ "edited": "2022-07-06T16:21:00.977Z",
848
+ "preceded_by": null,
849
+ "disable_participant_check": false
850
+ }
851
+ },
852
+ {
853
+ "model": "wbcrm.activity",
854
+ "pk": 15,
855
+ "fields": {
856
+ "parent_occurrence": null,
857
+ "propagate_for_all_children": false,
858
+ "recurrence_end": null,
859
+ "recurrence_count": null,
860
+ "repeat_choice": "NEVER",
861
+ "online_meeting": false,
862
+ "status": "REVIEWED",
863
+ "description": "Call with Ratanarak",
864
+ "result": "<p>Great Call</p>",
865
+ "type": 1,
866
+ "importance": "LOW",
867
+ "start": "2021-01-01T04:00:00Z",
868
+ "end": "2021-01-01T06:00:00Z",
869
+ "reminder_choice": "NEVER",
870
+ "location": null,
871
+ "location_longitude": null,
872
+ "location_latitude": null,
873
+ "created": "2021-10-12T13:22:48.968Z",
874
+ "reviewed_at": "2021-10-12T13:44:32.726Z",
875
+ "edited": "2022-07-06T16:20:34.723Z",
876
+ "preceded_by": null,
877
+ "disable_participant_check": false
878
+ }
879
+ },
880
+ {
881
+ "model": "wbcrm.activity",
882
+ "pk": 16,
883
+ "fields": {
884
+ "parent_occurrence": null,
885
+ "propagate_for_all_children": false,
886
+ "recurrence_end": null,
887
+ "recurrence_count": null,
888
+ "repeat_choice": "NEVER",
889
+ "online_meeting": false,
890
+ "status": "FINISHED",
891
+ "description": "Call with Kaizen IT",
892
+ "result": "",
893
+ "type": 1,
894
+ "importance": "LOW",
895
+ "start": "2021-10-05T08:30:00Z",
896
+ "end": "2021-10-05T13:30:00Z",
897
+ "reminder_choice": "NEVER",
898
+ "location": null,
899
+ "location_longitude": null,
900
+ "location_latitude": null,
901
+ "created": "2021-10-12T13:45:31.181Z",
902
+ "reviewed_at": null,
903
+ "edited": "2022-07-06T16:20:11.832Z",
904
+ "preceded_by": null,
905
+ "disable_participant_check": false
906
+ }
907
+ },
908
+ {
909
+ "model": "wbcrm.activity",
910
+ "pk": 17,
911
+ "fields": {
912
+ "parent_occurrence": null,
913
+ "propagate_for_all_children": false,
914
+ "recurrence_end": null,
915
+ "recurrence_count": null,
916
+ "repeat_choice": "NEVER",
917
+ "online_meeting": false,
918
+ "status": "FINISHED",
919
+ "description": "Meeting with the LowCountryBank",
920
+ "result": "",
921
+ "type": 3,
922
+ "importance": "LOW",
923
+ "start": "2021-09-30T22:00:00Z",
924
+ "end": "2021-10-01T21:00:00Z",
925
+ "reminder_choice": "MINUTES_15",
926
+ "location": null,
927
+ "location_longitude": null,
928
+ "location_latitude": null,
929
+ "created": "2021-10-12T13:46:27.449Z",
930
+ "reviewed_at": null,
931
+ "edited": "2022-07-06T16:19:41.430Z",
932
+ "preceded_by": null,
933
+ "disable_participant_check": false
934
+ }
935
+ },
936
+ {
937
+ "model": "wbcrm.activity",
938
+ "pk": 18,
939
+ "fields": {
940
+ "parent_occurrence": null,
941
+ "propagate_for_all_children": false,
942
+ "recurrence_end": null,
943
+ "recurrence_count": null,
944
+ "repeat_choice": "NEVER",
945
+ "online_meeting": false,
946
+ "status": "PLANNED",
947
+ "description": "Travel to Russia",
948
+ "result": "",
949
+ "type": 5,
950
+ "importance": "LOW",
951
+ "start": "2021-09-30T22:00:00Z",
952
+ "end": "2021-10-05T21:00:00Z",
953
+ "reminder_choice": "NEVER",
954
+ "location": null,
955
+ "location_longitude": null,
956
+ "location_latitude": null,
957
+ "created": "2021-10-12T13:46:27.449Z",
958
+ "reviewed_at": null,
959
+ "edited": "2022-07-06T16:24:56.203Z",
960
+ "preceded_by": null,
961
+ "disable_participant_check": false
962
+ }
963
+ },
964
+ {
965
+ "model": "wbcrm.activity",
966
+ "pk": 19,
967
+ "fields": {
968
+ "parent_occurrence": null,
969
+ "propagate_for_all_children": false,
970
+ "recurrence_end": null,
971
+ "recurrence_count": null,
972
+ "repeat_choice": "NEVER",
973
+ "online_meeting": false,
974
+ "status": "PLANNED",
975
+ "description": "Throw Big Birthday Party",
976
+ "result": "",
977
+ "type": 4,
978
+ "importance": "HIGH",
979
+ "start": "2023-05-20T16:00:00Z",
980
+ "end": "2023-05-21T00:00:00Z",
981
+ "reminder_choice": "NEVER",
982
+ "location": null,
983
+ "location_longitude": null,
984
+ "location_latitude": null,
985
+ "created": "2021-10-12T13:46:27.449Z",
986
+ "reviewed_at": null,
987
+ "edited": "2022-07-06T16:22:39.495Z",
988
+ "preceded_by": null,
989
+ "disable_participant_check": false
990
+ }
991
+ },
992
+ {
993
+ "model": "wbcrm.activity",
994
+ "pk": 20,
995
+ "fields": {
996
+ "parent_occurrence": null,
997
+ "propagate_for_all_children": false,
998
+ "recurrence_end": null,
999
+ "recurrence_count": null,
1000
+ "repeat_choice": "NEVER",
1001
+ "online_meeting": false,
1002
+ "status": "PLANNED",
1003
+ "description": "",
1004
+ "result": "",
1005
+ "type": 1,
1006
+ "importance": "MEDIUM",
1007
+ "start": "2022-06-17T08:15:00Z",
1008
+ "end": "2022-06-17T13:00:59Z",
1009
+ "reminder_choice": "NEVER",
1010
+ "location": null,
1011
+ "location_longitude": null,
1012
+ "location_latitude": null,
1013
+ "created": "2022-06-17T08:34:51.286Z",
1014
+ "reviewed_at": null,
1015
+ "edited": "2022-07-06T16:30:40.877Z",
1016
+ "preceded_by": null,
1017
+ "disable_participant_check": false
1018
+ }
1019
+ },
1020
+ {
1021
+ "model": "wbcrm.activity",
1022
+ "pk": 21,
1023
+ "fields": {
1024
+ "parent_occurrence": 20,
1025
+ "propagate_for_all_children": false,
1026
+ "recurrence_end": null,
1027
+ "recurrence_count": null,
1028
+ "repeat_choice": "NEVER",
1029
+ "online_meeting": false,
1030
+ "status": "PLANNED",
1031
+ "description": "",
1032
+ "result": "",
1033
+ "type": 1,
1034
+ "importance": "MEDIUM",
1035
+ "start": "2022-06-24T08:15:00Z",
1036
+ "end": "2022-06-24T13:00:59Z",
1037
+ "reminder_choice": "NEVER",
1038
+ "location": null,
1039
+ "location_longitude": null,
1040
+ "location_latitude": null,
1041
+ "created": "2022-06-17T08:34:52.768Z",
1042
+ "reviewed_at": null,
1043
+ "edited": "2022-07-06T16:30:25.252Z",
1044
+ "preceded_by": null,
1045
+ "disable_participant_check": false
1046
+ }
1047
+ },
1048
+ {
1049
+ "model": "wbcrm.activity",
1050
+ "pk": 22,
1051
+ "fields": {
1052
+ "parent_occurrence": 20,
1053
+ "propagate_for_all_children": false,
1054
+ "recurrence_end": null,
1055
+ "recurrence_count": null,
1056
+ "repeat_choice": "NEVER",
1057
+ "online_meeting": false,
1058
+ "status": "PLANNED",
1059
+ "description": "",
1060
+ "result": "",
1061
+ "type": 1,
1062
+ "importance": "MEDIUM",
1063
+ "start": "2022-07-01T08:15:00Z",
1064
+ "end": "2022-07-01T13:00:59Z",
1065
+ "reminder_choice": "NEVER",
1066
+ "location": null,
1067
+ "location_longitude": null,
1068
+ "location_latitude": null,
1069
+ "created": "2022-06-17T08:34:52.815Z",
1070
+ "reviewed_at": null,
1071
+ "edited": "2022-07-06T16:30:09.527Z",
1072
+ "preceded_by": null,
1073
+ "disable_participant_check": false
1074
+ }
1075
+ },
1076
+ {
1077
+ "model": "wbcrm.activity",
1078
+ "pk": 23,
1079
+ "fields": {
1080
+ "parent_occurrence": 20,
1081
+ "propagate_for_all_children": false,
1082
+ "recurrence_end": null,
1083
+ "recurrence_count": null,
1084
+ "repeat_choice": "NEVER",
1085
+ "online_meeting": false,
1086
+ "status": "PLANNED",
1087
+ "description": "",
1088
+ "result": "",
1089
+ "type": 1,
1090
+ "importance": "MEDIUM",
1091
+ "start": "2022-07-08T08:15:00Z",
1092
+ "end": "2022-07-08T13:00:59Z",
1093
+ "reminder_choice": "NEVER",
1094
+ "location": null,
1095
+ "location_longitude": null,
1096
+ "location_latitude": null,
1097
+ "created": "2022-06-17T08:34:52.851Z",
1098
+ "reviewed_at": null,
1099
+ "edited": "2022-07-06T16:23:59.544Z",
1100
+ "preceded_by": null,
1101
+ "disable_participant_check": false
1102
+ }
1103
+ },
1104
+ {
1105
+ "model": "wbcrm.activity",
1106
+ "pk": 24,
1107
+ "fields": {
1108
+ "parent_occurrence": 20,
1109
+ "propagate_for_all_children": false,
1110
+ "recurrence_end": null,
1111
+ "recurrence_count": null,
1112
+ "repeat_choice": "NEVER",
1113
+ "online_meeting": false,
1114
+ "status": "PLANNED",
1115
+ "description": "",
1116
+ "result": "",
1117
+ "type": 1,
1118
+ "importance": "MEDIUM",
1119
+ "start": "2022-07-15T08:15:00Z",
1120
+ "end": "2022-07-15T13:00:59Z",
1121
+ "reminder_choice": "NEVER",
1122
+ "location": null,
1123
+ "location_longitude": null,
1124
+ "location_latitude": null,
1125
+ "created": "2022-06-17T08:34:52.886Z",
1126
+ "reviewed_at": null,
1127
+ "edited": "2022-07-06T16:29:54.610Z",
1128
+ "preceded_by": null,
1129
+ "disable_participant_check": false
1130
+ }
1131
+ },
1132
+ {
1133
+ "model": "wbcrm.activity",
1134
+ "pk": 25,
1135
+ "fields": {
1136
+ "parent_occurrence": 20,
1137
+ "propagate_for_all_children": false,
1138
+ "recurrence_end": null,
1139
+ "recurrence_count": null,
1140
+ "repeat_choice": "NEVER",
1141
+ "online_meeting": false,
1142
+ "status": "PLANNED",
1143
+ "description": "",
1144
+ "result": "",
1145
+ "type": 1,
1146
+ "importance": "MEDIUM",
1147
+ "start": "2022-07-22T08:15:00Z",
1148
+ "end": "2022-07-22T13:00:59Z",
1149
+ "reminder_choice": "NEVER",
1150
+ "location": null,
1151
+ "location_longitude": null,
1152
+ "location_latitude": null,
1153
+ "created": "2022-06-17T08:34:52.921Z",
1154
+ "reviewed_at": null,
1155
+ "edited": "2022-07-06T16:29:32.846Z",
1156
+ "preceded_by": null,
1157
+ "disable_participant_check": false
1158
+ }
1159
+ },
1160
+ {
1161
+ "model": "wbcrm.activity",
1162
+ "pk": 26,
1163
+ "fields": {
1164
+ "parent_occurrence": null,
1165
+ "propagate_for_all_children": false,
1166
+ "recurrence_end": null,
1167
+ "recurrence_count": null,
1168
+ "repeat_choice": "NEVER",
1169
+ "online_meeting": false,
1170
+ "status": "PLANNED",
1171
+ "description": "",
1172
+ "result": "",
1173
+ "type": 1,
1174
+ "importance": "LOW",
1175
+ "start": "2022-08-18T12:22:02Z",
1176
+ "end": "2022-08-18T13:22:02Z",
1177
+ "reminder_choice": "MINUTES_15",
1178
+ "location": null,
1179
+ "location_longitude": null,
1180
+ "location_latitude": null,
1181
+ "created": "2022-08-18T12:22:58.801Z",
1182
+ "reviewed_at": null,
1183
+ "edited": "2022-08-18T12:26:05.807Z",
1184
+ "preceded_by": null,
1185
+ "disable_participant_check": false
1186
+ }
1187
+ },
1188
+ {
1189
+ "model": "wbcrm.product",
1190
+ "pk": 1,
1191
+ "fields": {
1192
+ "title": "Sustainability",
1193
+ "is_competitor": false,
1194
+ "slugify_title": "sustainability"
1195
+ }
1196
+ },
1197
+ {
1198
+ "model": "wbcrm.product",
1199
+ "pk": 2,
1200
+ "fields": {
1201
+ "title": "AI",
1202
+ "is_competitor": true,
1203
+ "slugify_title": "ai"
1204
+ }
1205
+ },
1206
+ {
1207
+ "model": "wbcrm.product",
1208
+ "pk": 3,
1209
+ "fields": {
1210
+ "title": "Feet",
1211
+ "is_competitor": true,
1212
+ "slugify_title": "feet"
1213
+ }
1214
+ }
1215
+ ]