wbcore 1.59.9__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 (1239) hide show
  1. wbcore/__init__.py +1 -0
  2. wbcore/admin.py +197 -0
  3. wbcore/apps.py +17 -0
  4. wbcore/cache/__init__.py +0 -0
  5. wbcore/cache/buttons.py +23 -0
  6. wbcore/cache/decorators.py +31 -0
  7. wbcore/cache/mixins.py +49 -0
  8. wbcore/cache/registry.py +98 -0
  9. wbcore/cache/views.py +19 -0
  10. wbcore/configs/__init__.py +11 -0
  11. wbcore/configs/configs.py +52 -0
  12. wbcore/configs/decorators.py +11 -0
  13. wbcore/configs/registry.py +35 -0
  14. wbcore/configs/views.py +12 -0
  15. wbcore/configurations/__init__.py +1 -0
  16. wbcore/configurations/base.py +46 -0
  17. wbcore/configurations/configurations/__init__.py +16 -0
  18. wbcore/configurations/configurations/apps.py +55 -0
  19. wbcore/configurations/configurations/authentication.py +44 -0
  20. wbcore/configurations/configurations/base.py +15 -0
  21. wbcore/configurations/configurations/cache.py +20 -0
  22. wbcore/configurations/configurations/celery.py +26 -0
  23. wbcore/configurations/configurations/i18nl10n.py +11 -0
  24. wbcore/configurations/configurations/mail.py +2 -0
  25. wbcore/configurations/configurations/maintenance.py +53 -0
  26. wbcore/configurations/configurations/media.py +22 -0
  27. wbcore/configurations/configurations/middleware.py +27 -0
  28. wbcore/configurations/configurations/network.py +19 -0
  29. wbcore/configurations/configurations/rest_framework.py +42 -0
  30. wbcore/configurations/configurations/static.py +28 -0
  31. wbcore/configurations/configurations/templates.py +17 -0
  32. wbcore/configurations/configurations/uvicorn.py +9 -0
  33. wbcore/configurations/configurations/wbcore.py +61 -0
  34. wbcore/content_type/__init__.py +0 -0
  35. wbcore/content_type/admin.py +8 -0
  36. wbcore/content_type/filters.py +20 -0
  37. wbcore/content_type/serializers.py +98 -0
  38. wbcore/content_type/utils.py +30 -0
  39. wbcore/content_type/viewsets.py +81 -0
  40. wbcore/contrib/__init__.py +0 -0
  41. wbcore/contrib/agenda/__init__.py +0 -0
  42. wbcore/contrib/agenda/admin/__init__.py +2 -0
  43. wbcore/contrib/agenda/admin/calendar_item.py +14 -0
  44. wbcore/contrib/agenda/admin/conference_room.py +19 -0
  45. wbcore/contrib/agenda/apps.py +6 -0
  46. wbcore/contrib/agenda/configurations.py +11 -0
  47. wbcore/contrib/agenda/factories/__init__.py +2 -0
  48. wbcore/contrib/agenda/factories/calendar_item.py +49 -0
  49. wbcore/contrib/agenda/factories/conference_room.py +20 -0
  50. wbcore/contrib/agenda/filters/__init__.py +2 -0
  51. wbcore/contrib/agenda/filters/calendar_item.py +66 -0
  52. wbcore/contrib/agenda/filters/conference_room.py +42 -0
  53. wbcore/contrib/agenda/locale/de/LC_MESSAGES/django.po +206 -0
  54. wbcore/contrib/agenda/locale/de/LC_MESSAGES/django.po.translated +236 -0
  55. wbcore/contrib/agenda/locale/en/LC_MESSAGES/django.po +200 -0
  56. wbcore/contrib/agenda/locale/fr/LC_MESSAGES/django.po +201 -0
  57. wbcore/contrib/agenda/migrations/0001_initial.py +84 -0
  58. wbcore/contrib/agenda/migrations/0002_initial.py +26 -0
  59. wbcore/contrib/agenda/migrations/0003_calendaritem_endpoint_basename.py +42 -0
  60. wbcore/contrib/agenda/migrations/0004_alter_calendaritem_item_type.py +17 -0
  61. wbcore/contrib/agenda/migrations/0005_building_and_more.py +94 -0
  62. wbcore/contrib/agenda/migrations/0006_calendaritem_is_deletable.py +17 -0
  63. wbcore/contrib/agenda/migrations/0007_alter_calendaritem_options.py +21 -0
  64. wbcore/contrib/agenda/migrations/0008_alter_calendaritem_item_type.py +17 -0
  65. wbcore/contrib/agenda/migrations/0009_alter_calendaritem_icon.py +18 -0
  66. wbcore/contrib/agenda/migrations/__init__.py +0 -0
  67. wbcore/contrib/agenda/models/__init__.py +2 -0
  68. wbcore/contrib/agenda/models/calendar_item.py +240 -0
  69. wbcore/contrib/agenda/models/conference_room.py +96 -0
  70. wbcore/contrib/agenda/release_notes/1_0_0.md +13 -0
  71. wbcore/contrib/agenda/release_notes/__init__.py +0 -0
  72. wbcore/contrib/agenda/serializers/__init__.py +10 -0
  73. wbcore/contrib/agenda/serializers/calendar_item.py +77 -0
  74. wbcore/contrib/agenda/serializers/conference_room.py +99 -0
  75. wbcore/contrib/agenda/signals.py +5 -0
  76. wbcore/contrib/agenda/static/agenda/markdown/documentation/building.md +11 -0
  77. wbcore/contrib/agenda/static/agenda/markdown/documentation/conferenceroom.md +20 -0
  78. wbcore/contrib/agenda/tests/__init__.py +0 -0
  79. wbcore/contrib/agenda/tests/conftest.py +14 -0
  80. wbcore/contrib/agenda/tests/signals.py +17 -0
  81. wbcore/contrib/agenda/tests/test_models.py +34 -0
  82. wbcore/contrib/agenda/tests/test_viewsets.py +172 -0
  83. wbcore/contrib/agenda/tests/tests.py +26 -0
  84. wbcore/contrib/agenda/typings.py +19 -0
  85. wbcore/contrib/agenda/urls.py +26 -0
  86. wbcore/contrib/agenda/viewsets/__init__.py +13 -0
  87. wbcore/contrib/agenda/viewsets/buttons/__init__.py +1 -0
  88. wbcore/contrib/agenda/viewsets/buttons/conference_room.py +21 -0
  89. wbcore/contrib/agenda/viewsets/calendar_items.py +169 -0
  90. wbcore/contrib/agenda/viewsets/conference_room.py +48 -0
  91. wbcore/contrib/agenda/viewsets/display/__init__.py +2 -0
  92. wbcore/contrib/agenda/viewsets/display/calendar_items.py +17 -0
  93. wbcore/contrib/agenda/viewsets/display/conference_room.py +42 -0
  94. wbcore/contrib/agenda/viewsets/endpoints/__init__.py +1 -0
  95. wbcore/contrib/agenda/viewsets/endpoints/calendar_items.py +19 -0
  96. wbcore/contrib/agenda/viewsets/menu/__init__.py +2 -0
  97. wbcore/contrib/agenda/viewsets/menu/calendar_items.py +12 -0
  98. wbcore/contrib/agenda/viewsets/menu/conference_room.py +38 -0
  99. wbcore/contrib/agenda/viewsets/titles/__init__.py +2 -0
  100. wbcore/contrib/agenda/viewsets/titles/calendar_items.py +8 -0
  101. wbcore/contrib/agenda/viewsets/titles/conference_room.py +25 -0
  102. wbcore/contrib/ai/__init__.py +0 -0
  103. wbcore/contrib/ai/apps.py +5 -0
  104. wbcore/contrib/ai/exceptions.py +40 -0
  105. wbcore/contrib/ai/llm/__init__.py +0 -0
  106. wbcore/contrib/ai/llm/config.py +166 -0
  107. wbcore/contrib/ai/llm/decorators.py +10 -0
  108. wbcore/contrib/ai/llm/mixins.py +34 -0
  109. wbcore/contrib/ai/llm/utils.py +69 -0
  110. wbcore/contrib/authentication/__init__.py +9 -0
  111. wbcore/contrib/authentication/admin.py +247 -0
  112. wbcore/contrib/authentication/apps.py +14 -0
  113. wbcore/contrib/authentication/authentication.py +111 -0
  114. wbcore/contrib/authentication/configs.py +10 -0
  115. wbcore/contrib/authentication/configurations.py +60 -0
  116. wbcore/contrib/authentication/dynamic_preferences_registry.py +26 -0
  117. wbcore/contrib/authentication/factories/__init__.py +10 -0
  118. wbcore/contrib/authentication/factories/tokens.py +15 -0
  119. wbcore/contrib/authentication/factories/users.py +112 -0
  120. wbcore/contrib/authentication/factories/users_activities.py +19 -0
  121. wbcore/contrib/authentication/filters.py +17 -0
  122. wbcore/contrib/authentication/fixtures/authentication.json +62 -0
  123. wbcore/contrib/authentication/locale/de/LC_MESSAGES/django.po +632 -0
  124. wbcore/contrib/authentication/locale/de/LC_MESSAGES/django.po.translated +634 -0
  125. wbcore/contrib/authentication/locale/en/LC_MESSAGES/django.po +590 -0
  126. wbcore/contrib/authentication/locale/fr/LC_MESSAGES/django.po +592 -0
  127. wbcore/contrib/authentication/management/__init__.py +14 -0
  128. wbcore/contrib/authentication/migrations/0001_initial_squashed.py +174 -0
  129. wbcore/contrib/authentication/migrations/0002_profile.py +26 -0
  130. wbcore/contrib/authentication/migrations/0003_alter_user_profile.py +34 -0
  131. wbcore/contrib/authentication/migrations/0004_token.py +51 -0
  132. wbcore/contrib/authentication/migrations/0005_user_external_calendar_settings.py +17 -0
  133. wbcore/contrib/authentication/migrations/0006_auto_20231206_1422.py +13 -0
  134. wbcore/contrib/authentication/migrations/__init__.py +0 -0
  135. wbcore/contrib/authentication/models/__init__.py +3 -0
  136. wbcore/contrib/authentication/models/tokens.py +140 -0
  137. wbcore/contrib/authentication/models/users.py +224 -0
  138. wbcore/contrib/authentication/models/users_activities.py +114 -0
  139. wbcore/contrib/authentication/release_notes/1_0_0.md +13 -0
  140. wbcore/contrib/authentication/release_notes/__init__.py +0 -0
  141. wbcore/contrib/authentication/serializers/__init__.py +14 -0
  142. wbcore/contrib/authentication/serializers/users.py +351 -0
  143. wbcore/contrib/authentication/serializers/users_activites.py +37 -0
  144. wbcore/contrib/authentication/tasks.py +30 -0
  145. wbcore/contrib/authentication/templates/activate_confirm.html +12 -0
  146. wbcore/contrib/authentication/templates/base.html +135 -0
  147. wbcore/contrib/authentication/templates/email_base_template.html +335 -0
  148. wbcore/contrib/authentication/templates/password_reset_done.html +13 -0
  149. wbcore/contrib/authentication/templates/password_reset_email.html +11 -0
  150. wbcore/contrib/authentication/templates/password_reset_email_html.html +43 -0
  151. wbcore/contrib/authentication/templates/password_reset_form.html +23 -0
  152. wbcore/contrib/authentication/templates/password_reset_sent.html +11 -0
  153. wbcore/contrib/authentication/templates/reset_password.html +15 -0
  154. wbcore/contrib/authentication/templates/user_registration_email.html +37 -0
  155. wbcore/contrib/authentication/tests/__init__.py +0 -0
  156. wbcore/contrib/authentication/tests/conftest.py +18 -0
  157. wbcore/contrib/authentication/tests/e2e/__init__.py +1 -0
  158. wbcore/contrib/authentication/tests/e2e/e2e_auth_utility.py +20 -0
  159. wbcore/contrib/authentication/tests/signals.py +18 -0
  160. wbcore/contrib/authentication/tests/test_configs.py +6 -0
  161. wbcore/contrib/authentication/tests/test_serializers.py +6 -0
  162. wbcore/contrib/authentication/tests/test_tasks.py +34 -0
  163. wbcore/contrib/authentication/tests/test_tokens.py +127 -0
  164. wbcore/contrib/authentication/tests/test_users.py +338 -0
  165. wbcore/contrib/authentication/tests/test_viewsets.py +6 -0
  166. wbcore/contrib/authentication/tests/tests.py +15 -0
  167. wbcore/contrib/authentication/urls.py +94 -0
  168. wbcore/contrib/authentication/utils.py +10 -0
  169. wbcore/contrib/authentication/viewsets/__init__.py +19 -0
  170. wbcore/contrib/authentication/viewsets/buttons/__init__.py +1 -0
  171. wbcore/contrib/authentication/viewsets/buttons/users.py +56 -0
  172. wbcore/contrib/authentication/viewsets/display/__init__.py +6 -0
  173. wbcore/contrib/authentication/viewsets/display/user_activities.py +86 -0
  174. wbcore/contrib/authentication/viewsets/display/users.py +73 -0
  175. wbcore/contrib/authentication/viewsets/endpoints/__init__.py +6 -0
  176. wbcore/contrib/authentication/viewsets/endpoints/user_activities.py +14 -0
  177. wbcore/contrib/authentication/viewsets/endpoints/users.py +18 -0
  178. wbcore/contrib/authentication/viewsets/menu/__init__.py +6 -0
  179. wbcore/contrib/authentication/viewsets/menu/user_activities.py +40 -0
  180. wbcore/contrib/authentication/viewsets/menu/users.py +17 -0
  181. wbcore/contrib/authentication/viewsets/titles/__init__.py +12 -0
  182. wbcore/contrib/authentication/viewsets/titles/user_activities.py +32 -0
  183. wbcore/contrib/authentication/viewsets/titles/users.py +27 -0
  184. wbcore/contrib/authentication/viewsets/user_activities.py +224 -0
  185. wbcore/contrib/authentication/viewsets/users.py +331 -0
  186. wbcore/contrib/color/admin.py +28 -0
  187. wbcore/contrib/color/apps.py +5 -0
  188. wbcore/contrib/color/enums.py +17 -0
  189. wbcore/contrib/color/factories.py +10 -0
  190. wbcore/contrib/color/fields.py +29 -0
  191. wbcore/contrib/color/forms.py +13 -0
  192. wbcore/contrib/color/migrations/0001_initial.py +33 -0
  193. wbcore/contrib/color/migrations/0002_alter_colorgradient_colors.py +25 -0
  194. wbcore/contrib/color/migrations/__init__.py +0 -0
  195. wbcore/contrib/color/models.py +63 -0
  196. wbcore/contrib/color/tests/conftest.py +10 -0
  197. wbcore/contrib/color/tests/test_color_models.py +61 -0
  198. wbcore/contrib/color/tests/test_fields.py +25 -0
  199. wbcore/contrib/currency/__init__.py +0 -0
  200. wbcore/contrib/currency/admin.py +33 -0
  201. wbcore/contrib/currency/apps.py +5 -0
  202. wbcore/contrib/currency/dynamic_preferences_registry.py +39 -0
  203. wbcore/contrib/currency/factories.py +40 -0
  204. wbcore/contrib/currency/fixtures/currency.yaml +1014 -0
  205. wbcore/contrib/currency/fixtures/currency_fx_rate.yaml +73585 -0
  206. wbcore/contrib/currency/import_export/__init__.py +0 -0
  207. wbcore/contrib/currency/import_export/backends/__init__.py +1 -0
  208. wbcore/contrib/currency/import_export/backends/fixerio/__init__.py +1 -0
  209. wbcore/contrib/currency/import_export/backends/fixerio/currency_fx_rates.py +69 -0
  210. wbcore/contrib/currency/import_export/backends/utils.py +5 -0
  211. wbcore/contrib/currency/import_export/handlers/__init__.py +2 -0
  212. wbcore/contrib/currency/import_export/handlers/currency.py +25 -0
  213. wbcore/contrib/currency/import_export/handlers/currency_fx_rates.py +29 -0
  214. wbcore/contrib/currency/import_export/parsers/__init__.py +0 -0
  215. wbcore/contrib/currency/import_export/parsers/fixerio/__init__.py +0 -0
  216. wbcore/contrib/currency/import_export/parsers/fixerio/currency_fx_rates.py +34 -0
  217. wbcore/contrib/currency/migrations/0001_initial.py +89 -0
  218. wbcore/contrib/currency/migrations/__init__.py +0 -0
  219. wbcore/contrib/currency/models.py +199 -0
  220. wbcore/contrib/currency/release_notes/1_0_0.md +13 -0
  221. wbcore/contrib/currency/release_notes/__init__.py +0 -0
  222. wbcore/contrib/currency/serializers.py +45 -0
  223. wbcore/contrib/currency/tests/__init__.py +0 -0
  224. wbcore/contrib/currency/tests/conftest.py +7 -0
  225. wbcore/contrib/currency/tests/test_models.py +115 -0
  226. wbcore/contrib/currency/tests/test_serializers.py +67 -0
  227. wbcore/contrib/currency/tests/test_viewsets.py +196 -0
  228. wbcore/contrib/currency/urls.py +20 -0
  229. wbcore/contrib/currency/viewsets/__init__.py +2 -0
  230. wbcore/contrib/currency/viewsets/buttons/__init__.py +0 -0
  231. wbcore/contrib/currency/viewsets/currency.py +57 -0
  232. wbcore/contrib/currency/viewsets/currency_fx_rates.py +33 -0
  233. wbcore/contrib/currency/viewsets/display/__init__.py +2 -0
  234. wbcore/contrib/currency/viewsets/display/currency.py +38 -0
  235. wbcore/contrib/currency/viewsets/display/currency_fx_rates.py +9 -0
  236. wbcore/contrib/currency/viewsets/endpoints/__init__.py +1 -0
  237. wbcore/contrib/currency/viewsets/endpoints/currency_fx_rates.py +6 -0
  238. wbcore/contrib/currency/viewsets/menu/__init__.py +1 -0
  239. wbcore/contrib/currency/viewsets/menu/currency.py +8 -0
  240. wbcore/contrib/currency/viewsets/preview/__init__.py +1 -0
  241. wbcore/contrib/currency/viewsets/preview/currency.py +10 -0
  242. wbcore/contrib/currency/viewsets/titles/__init__.py +2 -0
  243. wbcore/contrib/currency/viewsets/titles/currency.py +6 -0
  244. wbcore/contrib/currency/viewsets/titles/currency_fx_rates.py +8 -0
  245. wbcore/contrib/dataloader/__init__.py +1 -0
  246. wbcore/contrib/dataloader/apps.py +5 -0
  247. wbcore/contrib/dataloader/dataloaders/__init__.py +2 -0
  248. wbcore/contrib/dataloader/dataloaders/dataloaders.py +25 -0
  249. wbcore/contrib/dataloader/dataloaders/proxies.py +82 -0
  250. wbcore/contrib/dataloader/models/__init__.py +1 -0
  251. wbcore/contrib/dataloader/models/entities.py +30 -0
  252. wbcore/contrib/dataloader/models/querysets/__init__.py +1 -0
  253. wbcore/contrib/dataloader/models/querysets/entities.py +28 -0
  254. wbcore/contrib/dataloader/tests/__init__.py +0 -0
  255. wbcore/contrib/dataloader/tests/conftest.py +26 -0
  256. wbcore/contrib/dataloader/tests/test/__init__.py +0 -0
  257. wbcore/contrib/dataloader/tests/test/dataloaders/__init__.py +0 -0
  258. wbcore/contrib/dataloader/tests/test/dataloaders/dataloaders.py +18 -0
  259. wbcore/contrib/dataloader/tests/test/dataloaders/protocols.py +5 -0
  260. wbcore/contrib/dataloader/tests/test/dataloaders/proxies.py +11 -0
  261. wbcore/contrib/dataloader/tests/test/factories.py +13 -0
  262. wbcore/contrib/dataloader/tests/test/models.py +11 -0
  263. wbcore/contrib/dataloader/tests/test_dataloaders.py +38 -0
  264. wbcore/contrib/dataloader/tests/test_entities.py +13 -0
  265. wbcore/contrib/dataloader/utils.py +20 -0
  266. wbcore/contrib/directory/__init__.py +0 -0
  267. wbcore/contrib/directory/admin/__init__.py +14 -0
  268. wbcore/contrib/directory/admin/contacts.py +55 -0
  269. wbcore/contrib/directory/admin/entries.py +235 -0
  270. wbcore/contrib/directory/admin/relationships.py +73 -0
  271. wbcore/contrib/directory/apps.py +6 -0
  272. wbcore/contrib/directory/configs.py +9 -0
  273. wbcore/contrib/directory/configurations.py +70 -0
  274. wbcore/contrib/directory/dynamic_preferences_registry.py +61 -0
  275. wbcore/contrib/directory/factories/__init__.py +35 -0
  276. wbcore/contrib/directory/factories/contacts.py +71 -0
  277. wbcore/contrib/directory/factories/entries.py +174 -0
  278. wbcore/contrib/directory/factories/relationships.py +77 -0
  279. wbcore/contrib/directory/filters/__init__.py +22 -0
  280. wbcore/contrib/directory/filters/contacts.py +234 -0
  281. wbcore/contrib/directory/filters/entries.py +273 -0
  282. wbcore/contrib/directory/filters/relationships.py +90 -0
  283. wbcore/contrib/directory/fixtures/directory.json +3884 -0
  284. wbcore/contrib/directory/locale/de/LC_MESSAGES/django.po +1700 -0
  285. wbcore/contrib/directory/locale/de/LC_MESSAGES/django.po.translated +1779 -0
  286. wbcore/contrib/directory/locale/en/LC_MESSAGES/django.po +1652 -0
  287. wbcore/contrib/directory/locale/fr/LC_MESSAGES/django.po +1654 -0
  288. wbcore/contrib/directory/migrations/0001_initial.py +871 -0
  289. wbcore/contrib/directory/migrations/0002_auto_20230414_1553.py +42 -0
  290. wbcore/contrib/directory/migrations/0003_remove_entry_last_event.py +16 -0
  291. wbcore/contrib/directory/migrations/0004_entry_is_draft_entry.py +21 -0
  292. wbcore/contrib/directory/migrations/0005_entry_salutation.py +17 -0
  293. wbcore/contrib/directory/migrations/0006_employeremployeerelationship_position_name.py +23 -0
  294. wbcore/contrib/directory/migrations/0007_alter_bankingcontact_options.py +20 -0
  295. wbcore/contrib/directory/migrations/0008_bankingcontact_access.py +17 -0
  296. wbcore/contrib/directory/migrations/0009_remove_entry_external_identfier_and_more.py +22 -0
  297. wbcore/contrib/directory/migrations/0010_remove_addresscontact_city.py +31 -0
  298. wbcore/contrib/directory/migrations/0011_person_description_person_i18n.py +24 -0
  299. wbcore/contrib/directory/migrations/0012_alter_person_managers.py +20 -0
  300. wbcore/contrib/directory/migrations/0013_alter_clientmanagerrelationship_options.py +17 -0
  301. wbcore/contrib/directory/migrations/0014_alter_entry_relationship_managers_and_more.py +28 -0
  302. wbcore/contrib/directory/migrations/__init__.py +0 -0
  303. wbcore/contrib/directory/models/__init__.py +27 -0
  304. wbcore/contrib/directory/models/contacts.py +554 -0
  305. wbcore/contrib/directory/models/entries.py +896 -0
  306. wbcore/contrib/directory/models/relationships.py +624 -0
  307. wbcore/contrib/directory/permissions.py +6 -0
  308. wbcore/contrib/directory/preferences.py +11 -0
  309. wbcore/contrib/directory/release_notes/1_0_0.md +13 -0
  310. wbcore/contrib/directory/release_notes/1_0_1.md +13 -0
  311. wbcore/contrib/directory/release_notes/__init__.py +0 -0
  312. wbcore/contrib/directory/serializers/__init__.py +62 -0
  313. wbcore/contrib/directory/serializers/companies.py +169 -0
  314. wbcore/contrib/directory/serializers/contacts.py +404 -0
  315. wbcore/contrib/directory/serializers/entries.py +355 -0
  316. wbcore/contrib/directory/serializers/entry_representations.py +38 -0
  317. wbcore/contrib/directory/serializers/persons.py +214 -0
  318. wbcore/contrib/directory/serializers/relationships.py +333 -0
  319. wbcore/contrib/directory/signals.py +3 -0
  320. wbcore/contrib/directory/static/directory/markdown/documentation/address.md +38 -0
  321. wbcore/contrib/directory/static/directory/markdown/documentation/banking.md +54 -0
  322. wbcore/contrib/directory/static/directory/markdown/documentation/bankingentry.md +38 -0
  323. wbcore/contrib/directory/static/directory/markdown/documentation/clientmanagerrelationship.md +42 -0
  324. wbcore/contrib/directory/static/directory/markdown/documentation/company.md +52 -0
  325. wbcore/contrib/directory/static/directory/markdown/documentation/companytype.md +2 -0
  326. wbcore/contrib/directory/static/directory/markdown/documentation/customerstatus.md +2 -0
  327. wbcore/contrib/directory/static/directory/markdown/documentation/email.md +20 -0
  328. wbcore/contrib/directory/static/directory/markdown/documentation/employeecompany.md +34 -0
  329. wbcore/contrib/directory/static/directory/markdown/documentation/employerperson.md +43 -0
  330. wbcore/contrib/directory/static/directory/markdown/documentation/person.md +61 -0
  331. wbcore/contrib/directory/static/directory/markdown/documentation/position.md +2 -0
  332. wbcore/contrib/directory/static/directory/markdown/documentation/relationshiptype.md +2 -0
  333. wbcore/contrib/directory/static/directory/markdown/documentation/socialmedia.md +23 -0
  334. wbcore/contrib/directory/static/directory/markdown/documentation/specialization.md +2 -0
  335. wbcore/contrib/directory/static/directory/markdown/documentation/systememployee.md +31 -0
  336. wbcore/contrib/directory/static/directory/markdown/documentation/telephone.md +23 -0
  337. wbcore/contrib/directory/static/directory/markdown/documentation/telephonesearch.md +26 -0
  338. wbcore/contrib/directory/static/directory/markdown/documentation/userisclient.md +14 -0
  339. wbcore/contrib/directory/static/directory/markdown/documentation/userismanager.md +28 -0
  340. wbcore/contrib/directory/static/directory/markdown/documentation/website.md +20 -0
  341. wbcore/contrib/directory/tests/__init__.py +0 -0
  342. wbcore/contrib/directory/tests/conftest.py +62 -0
  343. wbcore/contrib/directory/tests/disable_signals.py +62 -0
  344. wbcore/contrib/directory/tests/e2e/__init__.py +7 -0
  345. wbcore/contrib/directory/tests/e2e/e2e_directory_utility.py +163 -0
  346. wbcore/contrib/directory/tests/signals.py +89 -0
  347. wbcore/contrib/directory/tests/test_configs.py +6 -0
  348. wbcore/contrib/directory/tests/test_filters.py +60 -0
  349. wbcore/contrib/directory/tests/test_models.py +428 -0
  350. wbcore/contrib/directory/tests/test_permissions.py +123 -0
  351. wbcore/contrib/directory/tests/test_serializers.py +217 -0
  352. wbcore/contrib/directory/tests/test_viewsets.py +835 -0
  353. wbcore/contrib/directory/typings.py +17 -0
  354. wbcore/contrib/directory/urls.py +135 -0
  355. wbcore/contrib/directory/viewsets/__init__.py +57 -0
  356. wbcore/contrib/directory/viewsets/buttons/__init__.py +7 -0
  357. wbcore/contrib/directory/viewsets/buttons/contacts.py +17 -0
  358. wbcore/contrib/directory/viewsets/buttons/entries.py +134 -0
  359. wbcore/contrib/directory/viewsets/buttons/relationships.py +64 -0
  360. wbcore/contrib/directory/viewsets/contacts.py +392 -0
  361. wbcore/contrib/directory/viewsets/display/__init__.py +36 -0
  362. wbcore/contrib/directory/viewsets/display/contacts.py +368 -0
  363. wbcore/contrib/directory/viewsets/display/entries.py +532 -0
  364. wbcore/contrib/directory/viewsets/display/relationships.py +292 -0
  365. wbcore/contrib/directory/viewsets/display/utils.py +34 -0
  366. wbcore/contrib/directory/viewsets/endpoints/__init__.py +22 -0
  367. wbcore/contrib/directory/viewsets/endpoints/contacts.py +55 -0
  368. wbcore/contrib/directory/viewsets/endpoints/entries.py +31 -0
  369. wbcore/contrib/directory/viewsets/endpoints/relationships.py +81 -0
  370. wbcore/contrib/directory/viewsets/entries.py +205 -0
  371. wbcore/contrib/directory/viewsets/menu/__init__.py +16 -0
  372. wbcore/contrib/directory/viewsets/menu/contacts.py +26 -0
  373. wbcore/contrib/directory/viewsets/menu/entries.py +62 -0
  374. wbcore/contrib/directory/viewsets/menu/relationships.py +32 -0
  375. wbcore/contrib/directory/viewsets/menu/utils.py +73 -0
  376. wbcore/contrib/directory/viewsets/mixins.py +12 -0
  377. wbcore/contrib/directory/viewsets/previews/__init__.py +2 -0
  378. wbcore/contrib/directory/viewsets/previews/contacts.py +19 -0
  379. wbcore/contrib/directory/viewsets/previews/entries.py +32 -0
  380. wbcore/contrib/directory/viewsets/relationships.py +256 -0
  381. wbcore/contrib/directory/viewsets/titles/__init__.py +30 -0
  382. wbcore/contrib/directory/viewsets/titles/contacts.py +123 -0
  383. wbcore/contrib/directory/viewsets/titles/entries.py +30 -0
  384. wbcore/contrib/directory/viewsets/titles/relationships.py +86 -0
  385. wbcore/contrib/directory/viewsets/titles/utils.py +47 -0
  386. wbcore/contrib/directory/viewsets/utils.py +101 -0
  387. wbcore/contrib/documents/__init__.py +0 -0
  388. wbcore/contrib/documents/admin.py +80 -0
  389. wbcore/contrib/documents/apps.py +6 -0
  390. wbcore/contrib/documents/factories.py +44 -0
  391. wbcore/contrib/documents/filters.py +81 -0
  392. wbcore/contrib/documents/fixtures/docments.json +135 -0
  393. wbcore/contrib/documents/locale/de/LC_MESSAGES/django.po +281 -0
  394. wbcore/contrib/documents/locale/de/LC_MESSAGES/django.po.translated +285 -0
  395. wbcore/contrib/documents/locale/en/LC_MESSAGES/django.po +271 -0
  396. wbcore/contrib/documents/locale/fr/LC_MESSAGES/django.po +270 -0
  397. wbcore/contrib/documents/migrations/0001_initial.py +189 -0
  398. wbcore/contrib/documents/migrations/0002_documentmodelrelationship_primary_and_more.py +22 -0
  399. wbcore/contrib/documents/migrations/0003_alter_documentmodelrelationship_unique_together_and_more.py +30 -0
  400. wbcore/contrib/documents/migrations/0004_auto_20240103_0958.py +44 -0
  401. wbcore/contrib/documents/migrations/0005_document_valid_from_document_valid_until_and_more.py +32 -0
  402. wbcore/contrib/documents/migrations/__init__.py +0 -0
  403. wbcore/contrib/documents/models/__init__.py +4 -0
  404. wbcore/contrib/documents/models/document_model_relationships.py +58 -0
  405. wbcore/contrib/documents/models/document_types.py +36 -0
  406. wbcore/contrib/documents/models/documents.py +311 -0
  407. wbcore/contrib/documents/models/mixins.py +10 -0
  408. wbcore/contrib/documents/models/shareable_links.py +91 -0
  409. wbcore/contrib/documents/release_notes/1_0_0.md +13 -0
  410. wbcore/contrib/documents/release_notes/__init__.py +0 -0
  411. wbcore/contrib/documents/serializers/__init__.py +12 -0
  412. wbcore/contrib/documents/serializers/document_model_relationships.py +31 -0
  413. wbcore/contrib/documents/serializers/document_types.py +41 -0
  414. wbcore/contrib/documents/serializers/documents.py +65 -0
  415. wbcore/contrib/documents/serializers/shareable_links.py +91 -0
  416. wbcore/contrib/documents/static/documents/markdown/documentation/document_types.md +21 -0
  417. wbcore/contrib/documents/static/documents/markdown/documentation/documents.md +18 -0
  418. wbcore/contrib/documents/static/documents/markdown/documentation/shareablelink.md +28 -0
  419. wbcore/contrib/documents/static/documents/markdown/documentation/shareablelinkaccess.md +20 -0
  420. wbcore/contrib/documents/tests/conftest.py +30 -0
  421. wbcore/contrib/documents/tests/test_models.py +148 -0
  422. wbcore/contrib/documents/urls.py +43 -0
  423. wbcore/contrib/documents/viewsets/__init__.py +10 -0
  424. wbcore/contrib/documents/viewsets/buttons/__init__.py +3 -0
  425. wbcore/contrib/documents/viewsets/buttons/documents.py +54 -0
  426. wbcore/contrib/documents/viewsets/buttons/shareable_links.py +21 -0
  427. wbcore/contrib/documents/viewsets/buttons/signals.py +14 -0
  428. wbcore/contrib/documents/viewsets/display/__init__.py +4 -0
  429. wbcore/contrib/documents/viewsets/display/document_model_relationships.py +19 -0
  430. wbcore/contrib/documents/viewsets/display/document_types.py +24 -0
  431. wbcore/contrib/documents/viewsets/display/documents.py +102 -0
  432. wbcore/contrib/documents/viewsets/display/shareable_links.py +66 -0
  433. wbcore/contrib/documents/viewsets/document_model_relationships.py +25 -0
  434. wbcore/contrib/documents/viewsets/document_types.py +38 -0
  435. wbcore/contrib/documents/viewsets/documents.py +108 -0
  436. wbcore/contrib/documents/viewsets/endpoints/__init__.py +5 -0
  437. wbcore/contrib/documents/viewsets/endpoints/documents.py +20 -0
  438. wbcore/contrib/documents/viewsets/endpoints/documents_model_relationships.py +14 -0
  439. wbcore/contrib/documents/viewsets/endpoints/shareable_links.py +27 -0
  440. wbcore/contrib/documents/viewsets/menu/__init__.py +1 -0
  441. wbcore/contrib/documents/viewsets/menu/documents.py +25 -0
  442. wbcore/contrib/documents/viewsets/previews/__init__.py +1 -0
  443. wbcore/contrib/documents/viewsets/previews/documents.py +10 -0
  444. wbcore/contrib/documents/viewsets/shareable_links.py +110 -0
  445. wbcore/contrib/documents/viewsets/titles/__init__.py +3 -0
  446. wbcore/contrib/documents/viewsets/titles/document_types.py +14 -0
  447. wbcore/contrib/documents/viewsets/titles/documents.py +27 -0
  448. wbcore/contrib/documents/viewsets/titles/shareable_links.py +14 -0
  449. wbcore/contrib/dynamic_preferences/__init__.py +0 -0
  450. wbcore/contrib/dynamic_preferences/types.py +127 -0
  451. wbcore/contrib/dynamic_preferences/viewsets.py +27 -0
  452. wbcore/contrib/example_app/__init__.py +0 -0
  453. wbcore/contrib/example_app/admin.py +118 -0
  454. wbcore/contrib/example_app/apps.py +6 -0
  455. wbcore/contrib/example_app/factories/__init__.py +8 -0
  456. wbcore/contrib/example_app/factories/event.py +27 -0
  457. wbcore/contrib/example_app/factories/league.py +16 -0
  458. wbcore/contrib/example_app/factories/match.py +26 -0
  459. wbcore/contrib/example_app/factories/person.py +34 -0
  460. wbcore/contrib/example_app/factories/role.py +10 -0
  461. wbcore/contrib/example_app/factories/sport.py +13 -0
  462. wbcore/contrib/example_app/factories/stadium.py +13 -0
  463. wbcore/contrib/example_app/factories/team.py +37 -0
  464. wbcore/contrib/example_app/filters/__init__.py +9 -0
  465. wbcore/contrib/example_app/filters/event.py +83 -0
  466. wbcore/contrib/example_app/filters/league.py +75 -0
  467. wbcore/contrib/example_app/filters/match.py +93 -0
  468. wbcore/contrib/example_app/filters/person.py +78 -0
  469. wbcore/contrib/example_app/filters/role.py +18 -0
  470. wbcore/contrib/example_app/filters/sport.py +27 -0
  471. wbcore/contrib/example_app/filters/stadium.py +31 -0
  472. wbcore/contrib/example_app/filters/team.py +78 -0
  473. wbcore/contrib/example_app/filters/teamresult.py +48 -0
  474. wbcore/contrib/example_app/fixtures/example_app.json +7425 -0
  475. wbcore/contrib/example_app/migrations/0001_initial.py +498 -0
  476. wbcore/contrib/example_app/migrations/0002_sportperson_profile.py +49 -0
  477. wbcore/contrib/example_app/migrations/0003_change_stadium_capacity.py +31 -0
  478. wbcore/contrib/example_app/migrations/0004_alter_player_transfer_value.py +21 -0
  479. wbcore/contrib/example_app/migrations/0005_sportperson_profile_image.py +23 -0
  480. wbcore/contrib/example_app/migrations/0006_league_season_period_player_is_active_and_more.py +116 -0
  481. wbcore/contrib/example_app/migrations/0007_alter_player_options_alter_team_options_and_more.py +40 -0
  482. wbcore/contrib/example_app/migrations/__init__.py +0 -0
  483. wbcore/contrib/example_app/models.py +978 -0
  484. wbcore/contrib/example_app/serializers/__init__.py +31 -0
  485. wbcore/contrib/example_app/serializers/league.py +112 -0
  486. wbcore/contrib/example_app/serializers/match_event.py +305 -0
  487. wbcore/contrib/example_app/serializers/person_team.py +281 -0
  488. wbcore/contrib/example_app/serializers/role.py +16 -0
  489. wbcore/contrib/example_app/serializers/season.py +54 -0
  490. wbcore/contrib/example_app/serializers/sport.py +38 -0
  491. wbcore/contrib/example_app/serializers/stadium.py +59 -0
  492. wbcore/contrib/example_app/serializers/teamresult.py +44 -0
  493. wbcore/contrib/example_app/templates/example_app/embedded_view.html +19 -0
  494. wbcore/contrib/example_app/tests/__init__.py +0 -0
  495. wbcore/contrib/example_app/tests/conftest.py +13 -0
  496. wbcore/contrib/example_app/tests/e2e/__init__.py +1 -0
  497. wbcore/contrib/example_app/tests/e2e/e2e_example_app_utility.py +52 -0
  498. wbcore/contrib/example_app/tests/e2e/test_league.py +70 -0
  499. wbcore/contrib/example_app/tests/e2e/test_person.py +68 -0
  500. wbcore/contrib/example_app/tests/e2e/test_teams.py +57 -0
  501. wbcore/contrib/example_app/tests/signals.py +7 -0
  502. wbcore/contrib/example_app/tests/test_displays.py +41 -0
  503. wbcore/contrib/example_app/tests/test_filters.py +71 -0
  504. wbcore/contrib/example_app/tests/test_models/test_event.py +89 -0
  505. wbcore/contrib/example_app/tests/test_models/test_match.py +220 -0
  506. wbcore/contrib/example_app/tests/test_models/test_others.py +161 -0
  507. wbcore/contrib/example_app/tests/test_serializers/test_league_serializer.py +34 -0
  508. wbcore/contrib/example_app/tests/test_serializers/test_match_serializer.py +139 -0
  509. wbcore/contrib/example_app/tests/test_serializers/test_role_serializer.py +13 -0
  510. wbcore/contrib/example_app/tests/test_serializers/test_sport_serializer.py +14 -0
  511. wbcore/contrib/example_app/tests/test_serializers/test_stadium_serializer.py +14 -0
  512. wbcore/contrib/example_app/tests/test_serializers/test_team_result_serializer.py +30 -0
  513. wbcore/contrib/example_app/tests/test_serializers/test_team_serializer.py +70 -0
  514. wbcore/contrib/example_app/tests/test_utils.py +26 -0
  515. wbcore/contrib/example_app/tests/test_viewsets/test_event_viewset.py +167 -0
  516. wbcore/contrib/example_app/tests/test_viewsets/test_league_viewset.py +84 -0
  517. wbcore/contrib/example_app/tests/test_viewsets/test_match_viewset.py +65 -0
  518. wbcore/contrib/example_app/tests/test_viewsets/test_person_viewset.py +166 -0
  519. wbcore/contrib/example_app/tests/test_viewsets/test_role_viewset.py +75 -0
  520. wbcore/contrib/example_app/tests/test_viewsets/test_sport_viewset.py +75 -0
  521. wbcore/contrib/example_app/tests/test_viewsets/test_stadium_viewset.py +75 -0
  522. wbcore/contrib/example_app/tests/test_viewsets/test_team_viewset.py +92 -0
  523. wbcore/contrib/example_app/tests/test_viewsets/test_teamresult_viewset.py +58 -0
  524. wbcore/contrib/example_app/tests/test_viewsets/test_utils_viewsets.py +124 -0
  525. wbcore/contrib/example_app/urls.py +82 -0
  526. wbcore/contrib/example_app/utils.py +21 -0
  527. wbcore/contrib/example_app/views.py +6 -0
  528. wbcore/contrib/example_app/viewsets/__init__.py +29 -0
  529. wbcore/contrib/example_app/viewsets/buttons/__init__.py +2 -0
  530. wbcore/contrib/example_app/viewsets/buttons/person.py +19 -0
  531. wbcore/contrib/example_app/viewsets/buttons/team.py +24 -0
  532. wbcore/contrib/example_app/viewsets/displays/__init__.py +23 -0
  533. wbcore/contrib/example_app/viewsets/displays/event.py +187 -0
  534. wbcore/contrib/example_app/viewsets/displays/league.py +391 -0
  535. wbcore/contrib/example_app/viewsets/displays/match.py +265 -0
  536. wbcore/contrib/example_app/viewsets/displays/person.py +252 -0
  537. wbcore/contrib/example_app/viewsets/displays/role.py +17 -0
  538. wbcore/contrib/example_app/viewsets/displays/season.py +66 -0
  539. wbcore/contrib/example_app/viewsets/displays/sport.py +116 -0
  540. wbcore/contrib/example_app/viewsets/displays/stadium.py +150 -0
  541. wbcore/contrib/example_app/viewsets/displays/team.py +250 -0
  542. wbcore/contrib/example_app/viewsets/displays/teamresult.py +31 -0
  543. wbcore/contrib/example_app/viewsets/endpoints/__init__.py +12 -0
  544. wbcore/contrib/example_app/viewsets/endpoints/endpoints.py +80 -0
  545. wbcore/contrib/example_app/viewsets/event.py +288 -0
  546. wbcore/contrib/example_app/viewsets/league.py +73 -0
  547. wbcore/contrib/example_app/viewsets/match.py +120 -0
  548. wbcore/contrib/example_app/viewsets/menu/__init__.py +1 -0
  549. wbcore/contrib/example_app/viewsets/menu/menus.py +103 -0
  550. wbcore/contrib/example_app/viewsets/menus.py +64 -0
  551. wbcore/contrib/example_app/viewsets/person.py +134 -0
  552. wbcore/contrib/example_app/viewsets/role.py +25 -0
  553. wbcore/contrib/example_app/viewsets/season.py +23 -0
  554. wbcore/contrib/example_app/viewsets/sport.py +26 -0
  555. wbcore/contrib/example_app/viewsets/stadium.py +31 -0
  556. wbcore/contrib/example_app/viewsets/team.py +69 -0
  557. wbcore/contrib/example_app/viewsets/teamresult.py +107 -0
  558. wbcore/contrib/example_app/viewsets/titles/__init__.py +9 -0
  559. wbcore/contrib/example_app/viewsets/titles/event.py +42 -0
  560. wbcore/contrib/example_app/viewsets/titles/league.py +25 -0
  561. wbcore/contrib/example_app/viewsets/titles/match.py +35 -0
  562. wbcore/contrib/example_app/viewsets/titles/person.py +36 -0
  563. wbcore/contrib/example_app/viewsets/titles/role.py +14 -0
  564. wbcore/contrib/example_app/viewsets/titles/sport.py +14 -0
  565. wbcore/contrib/example_app/viewsets/titles/stadium.py +14 -0
  566. wbcore/contrib/example_app/viewsets/titles/team.py +25 -0
  567. wbcore/contrib/example_app/viewsets/titles/teamresult.py +13 -0
  568. wbcore/contrib/geography/__init__.py +0 -0
  569. wbcore/contrib/geography/admin.py +30 -0
  570. wbcore/contrib/geography/apps.py +5 -0
  571. wbcore/contrib/geography/factories.py +46 -0
  572. wbcore/contrib/geography/fixtures/geography.json +13454 -0
  573. wbcore/contrib/geography/import_export/__init__.py +0 -0
  574. wbcore/contrib/geography/import_export/resources/__init__.py +0 -0
  575. wbcore/contrib/geography/import_export/resources/geography.py +11 -0
  576. wbcore/contrib/geography/migrations/0001_initial.py +110 -0
  577. wbcore/contrib/geography/migrations/0002_geography_geography_geography_tree_i739a.py +17 -0
  578. wbcore/contrib/geography/migrations/__init__.py +0 -0
  579. wbcore/contrib/geography/models.py +150 -0
  580. wbcore/contrib/geography/release_notes/1_0_0.md +13 -0
  581. wbcore/contrib/geography/release_notes/__init__.py +0 -0
  582. wbcore/contrib/geography/serializers.py +29 -0
  583. wbcore/contrib/geography/static/geography/markdown/documentation/geography.md +16 -0
  584. wbcore/contrib/geography/tests/__init__.py +0 -0
  585. wbcore/contrib/geography/tests/conftest.py +26 -0
  586. wbcore/contrib/geography/tests/signals.py +7 -0
  587. wbcore/contrib/geography/tests/test_models.py +27 -0
  588. wbcore/contrib/geography/tests/test_viewsets.py +100 -0
  589. wbcore/contrib/geography/urls.py +13 -0
  590. wbcore/contrib/geography/viewsets/__init__.py +1 -0
  591. wbcore/contrib/geography/viewsets/buttons/__init__.py +0 -0
  592. wbcore/contrib/geography/viewsets/display/__init__.py +1 -0
  593. wbcore/contrib/geography/viewsets/display/geography.py +32 -0
  594. wbcore/contrib/geography/viewsets/endpoints/__init__.py +0 -0
  595. wbcore/contrib/geography/viewsets/geography.py +58 -0
  596. wbcore/contrib/geography/viewsets/menu/__init__.py +1 -0
  597. wbcore/contrib/geography/viewsets/menu/geography.py +8 -0
  598. wbcore/contrib/geography/viewsets/preview/__init__.py +1 -0
  599. wbcore/contrib/geography/viewsets/preview/geography.py +19 -0
  600. wbcore/contrib/geography/viewsets/titles/__init__.py +0 -0
  601. wbcore/contrib/geography/viewsets/titles/geography.py +14 -0
  602. wbcore/contrib/gleap/__init__.py +0 -0
  603. wbcore/contrib/gleap/apps.py +5 -0
  604. wbcore/contrib/gleap/configs.py +12 -0
  605. wbcore/contrib/gleap/configurations.py +6 -0
  606. wbcore/contrib/gleap/hashes.py +13 -0
  607. wbcore/contrib/gleap/tests/__init__.py +0 -0
  608. wbcore/contrib/gleap/tests/conftest.py +1 -0
  609. wbcore/contrib/gleap/tests/tests.py +29 -0
  610. wbcore/contrib/gleap/urls.py +8 -0
  611. wbcore/contrib/gleap/views.py +31 -0
  612. wbcore/contrib/guardian/apps.py +6 -0
  613. wbcore/contrib/guardian/configurations.py +3 -0
  614. wbcore/contrib/guardian/filters.py +21 -0
  615. wbcore/contrib/guardian/migrations/0001_initial.py +103 -0
  616. wbcore/contrib/guardian/migrations/__init__.py +0 -0
  617. wbcore/contrib/guardian/models/__init__.py +1 -0
  618. wbcore/contrib/guardian/models/mixins.py +139 -0
  619. wbcore/contrib/guardian/models/models.py +29 -0
  620. wbcore/contrib/guardian/tasks.py +11 -0
  621. wbcore/contrib/guardian/tests/__init__.py +0 -0
  622. wbcore/contrib/guardian/tests/conftest.py +1 -0
  623. wbcore/contrib/guardian/tests/test_model_mixins.py +92 -0
  624. wbcore/contrib/guardian/tests/test_tasks.py +77 -0
  625. wbcore/contrib/guardian/tests/test_utils.py +196 -0
  626. wbcore/contrib/guardian/tests/test_viewsets.py +48 -0
  627. wbcore/contrib/guardian/urls.py +12 -0
  628. wbcore/contrib/guardian/utils.py +124 -0
  629. wbcore/contrib/guardian/viewsets/__init__.py +1 -0
  630. wbcore/contrib/guardian/viewsets/configs/__init__.py +4 -0
  631. wbcore/contrib/guardian/viewsets/configs/buttons.py +36 -0
  632. wbcore/contrib/guardian/viewsets/configs/displays.py +43 -0
  633. wbcore/contrib/guardian/viewsets/configs/endpoints.py +25 -0
  634. wbcore/contrib/guardian/viewsets/configs/titles.py +16 -0
  635. wbcore/contrib/guardian/viewsets/mixins.py +6 -0
  636. wbcore/contrib/guardian/viewsets/viewsets.py +141 -0
  637. wbcore/contrib/i18n/__init__.py +2 -0
  638. wbcore/contrib/i18n/buttons.py +33 -0
  639. wbcore/contrib/i18n/serializers/__init__.py +0 -0
  640. wbcore/contrib/i18n/serializers/fields.py +20 -0
  641. wbcore/contrib/i18n/serializers/mixins.py +13 -0
  642. wbcore/contrib/i18n/tests/conftest.py +11 -0
  643. wbcore/contrib/i18n/tests/test_viewsets.py +67 -0
  644. wbcore/contrib/i18n/translation.py +141 -0
  645. wbcore/contrib/i18n/viewsets.py +36 -0
  646. wbcore/contrib/icons/__init__.py +1 -0
  647. wbcore/contrib/icons/apps.py +5 -0
  648. wbcore/contrib/icons/backends/__init__.py +5 -0
  649. wbcore/contrib/icons/backends/default.py +375 -0
  650. wbcore/contrib/icons/backends/material.py +136 -0
  651. wbcore/contrib/icons/icons.py +167 -0
  652. wbcore/contrib/icons/models.py +11 -0
  653. wbcore/contrib/icons/serializers.py +18 -0
  654. wbcore/contrib/io/__init__.py +0 -0
  655. wbcore/contrib/io/admin.py +151 -0
  656. wbcore/contrib/io/apps.py +37 -0
  657. wbcore/contrib/io/backends/__init__.py +3 -0
  658. wbcore/contrib/io/backends/abstract.py +60 -0
  659. wbcore/contrib/io/backends/mail.py +39 -0
  660. wbcore/contrib/io/backends/utils.py +39 -0
  661. wbcore/contrib/io/configs/__init__.py +0 -0
  662. wbcore/contrib/io/configs/endpoints.py +13 -0
  663. wbcore/contrib/io/configurations/__init__.py +1 -0
  664. wbcore/contrib/io/configurations/base.py +7 -0
  665. wbcore/contrib/io/dynamic_preferences_registry.py +25 -0
  666. wbcore/contrib/io/enums.py +15 -0
  667. wbcore/contrib/io/exceptions.py +24 -0
  668. wbcore/contrib/io/factories.py +205 -0
  669. wbcore/contrib/io/fixtures/io.json +145 -0
  670. wbcore/contrib/io/import_export/backends/__init__.py +3 -0
  671. wbcore/contrib/io/import_export/backends/mail.py +51 -0
  672. wbcore/contrib/io/import_export/backends/sftp.py +69 -0
  673. wbcore/contrib/io/import_export/backends/stream.py +92 -0
  674. wbcore/contrib/io/import_export/parsers/__init__.py +0 -0
  675. wbcore/contrib/io/import_export/parsers/base_csv.py +36 -0
  676. wbcore/contrib/io/import_export/parsers/resources.py +50 -0
  677. wbcore/contrib/io/imports.py +313 -0
  678. wbcore/contrib/io/locale/de/LC_MESSAGES/django.po +144 -0
  679. wbcore/contrib/io/locale/de/LC_MESSAGES/django.po.translated +103 -0
  680. wbcore/contrib/io/locale/en/LC_MESSAGES/django.po +138 -0
  681. wbcore/contrib/io/locale/fr/LC_MESSAGES/django.po +138 -0
  682. wbcore/contrib/io/management/__init__.py +13 -0
  683. wbcore/contrib/io/migrations/0001_initial_squashed.py +319 -0
  684. wbcore/contrib/io/migrations/0002_importsource_creator.py +26 -0
  685. wbcore/contrib/io/migrations/0003_auto_20240103_1000.py +46 -0
  686. wbcore/contrib/io/migrations/0004_alter_importsource_status_exportsource.py +134 -0
  687. wbcore/contrib/io/migrations/0005_exportsource_data_alter_exportsource_query_str_and_more.py +67 -0
  688. wbcore/contrib/io/migrations/0006_alter_exportsource_query_params.py +20 -0
  689. wbcore/contrib/io/migrations/0007_alter_exportsource_query_params.py +23 -0
  690. wbcore/contrib/io/migrations/0008_importsource_resource_kwargs.py +18 -0
  691. wbcore/contrib/io/migrations/__init__.py +0 -0
  692. wbcore/contrib/io/mixins.py +37 -0
  693. wbcore/contrib/io/models.py +1037 -0
  694. wbcore/contrib/io/release_notes/1_0_0.md +13 -0
  695. wbcore/contrib/io/release_notes/__init__.py +0 -0
  696. wbcore/contrib/io/resources.py +176 -0
  697. wbcore/contrib/io/serializers.py +137 -0
  698. wbcore/contrib/io/signals.py +4 -0
  699. wbcore/contrib/io/tasks.py +27 -0
  700. wbcore/contrib/io/tests/__init__.py +0 -0
  701. wbcore/contrib/io/tests/conftest.py +42 -0
  702. wbcore/contrib/io/tests/test_backends.py +134 -0
  703. wbcore/contrib/io/tests/test_exports.py +130 -0
  704. wbcore/contrib/io/tests/test_imports.py +168 -0
  705. wbcore/contrib/io/tests/test_models.py +396 -0
  706. wbcore/contrib/io/tests/test_viewsets.py +271 -0
  707. wbcore/contrib/io/urls.py +29 -0
  708. wbcore/contrib/io/utils.py +44 -0
  709. wbcore/contrib/io/viewset_mixins.py +271 -0
  710. wbcore/contrib/io/viewsets.py +139 -0
  711. wbcore/contrib/notifications/__init__.py +0 -0
  712. wbcore/contrib/notifications/admin.py +63 -0
  713. wbcore/contrib/notifications/apps.py +43 -0
  714. wbcore/contrib/notifications/backends/__init__.py +0 -0
  715. wbcore/contrib/notifications/backends/abstract_backend.py +11 -0
  716. wbcore/contrib/notifications/backends/console/__init__.py +1 -0
  717. wbcore/contrib/notifications/backends/console/backends.py +25 -0
  718. wbcore/contrib/notifications/backends/firebase/__init__.py +1 -0
  719. wbcore/contrib/notifications/backends/firebase/backends.py +106 -0
  720. wbcore/contrib/notifications/configs.py +13 -0
  721. wbcore/contrib/notifications/configurations.py +9 -0
  722. wbcore/contrib/notifications/dispatch.py +90 -0
  723. wbcore/contrib/notifications/factories/__init__.py +0 -0
  724. wbcore/contrib/notifications/factories/notification_types.py +24 -0
  725. wbcore/contrib/notifications/factories/notifications.py +17 -0
  726. wbcore/contrib/notifications/factories/tokens.py +12 -0
  727. wbcore/contrib/notifications/locale/de/LC_MESSAGES/django.po +66 -0
  728. wbcore/contrib/notifications/locale/de/LC_MESSAGES/django.po.translated +63 -0
  729. wbcore/contrib/notifications/locale/en/LC_MESSAGES/django.po +61 -0
  730. wbcore/contrib/notifications/locale/fr/LC_MESSAGES/django.po +62 -0
  731. wbcore/contrib/notifications/migrations/0001_initial.py +116 -0
  732. wbcore/contrib/notifications/migrations/0002_notificationusertoken_unique_user_token_device.py +18 -0
  733. wbcore/contrib/notifications/migrations/0003_notificationusertoken_updated.py +17 -0
  734. wbcore/contrib/notifications/migrations/0004_alter_notification_body.py +17 -0
  735. wbcore/contrib/notifications/migrations/0005_alter_notification_endpoint.py +17 -0
  736. wbcore/contrib/notifications/migrations/0006_notification_created.py +25 -0
  737. wbcore/contrib/notifications/migrations/0007_notificationtype_resource_button_label.py +19 -0
  738. wbcore/contrib/notifications/migrations/0008_notificationtype_is_lock.py +18 -0
  739. wbcore/contrib/notifications/migrations/0009_alter_notificationtypesetting_options_and_more.py +32 -0
  740. wbcore/contrib/notifications/migrations/__init__.py +0 -0
  741. wbcore/contrib/notifications/models/__init__.py +3 -0
  742. wbcore/contrib/notifications/models/notification_types.py +165 -0
  743. wbcore/contrib/notifications/models/notifications.py +82 -0
  744. wbcore/contrib/notifications/models/tokens.py +46 -0
  745. wbcore/contrib/notifications/release_notes/1_0_0.md +13 -0
  746. wbcore/contrib/notifications/release_notes/__init__.py +0 -0
  747. wbcore/contrib/notifications/serializers/__init__.py +5 -0
  748. wbcore/contrib/notifications/serializers/notification_types.py +51 -0
  749. wbcore/contrib/notifications/serializers/notifications.py +33 -0
  750. wbcore/contrib/notifications/static/notifications/service-worker.js +1 -0
  751. wbcore/contrib/notifications/tasks.py +57 -0
  752. wbcore/contrib/notifications/templates/notifications/notification_template.html +43 -0
  753. wbcore/contrib/notifications/tests/__init__.py +0 -0
  754. wbcore/contrib/notifications/tests/conftest.py +47 -0
  755. wbcore/contrib/notifications/tests/test_backends/__init__.py +0 -0
  756. wbcore/contrib/notifications/tests/test_backends/test_firebase.py +79 -0
  757. wbcore/contrib/notifications/tests/test_configs.py +7 -0
  758. wbcore/contrib/notifications/tests/test_models/__init__.py +0 -0
  759. wbcore/contrib/notifications/tests/test_models/test_notification_types.py +85 -0
  760. wbcore/contrib/notifications/tests/test_models/test_notifications.py +46 -0
  761. wbcore/contrib/notifications/tests/test_models/test_tokens.py +30 -0
  762. wbcore/contrib/notifications/tests/test_serializers/__init__.py +0 -0
  763. wbcore/contrib/notifications/tests/test_serializers/test_notification_types.py +59 -0
  764. wbcore/contrib/notifications/tests/test_serializers/test_notifications.py +24 -0
  765. wbcore/contrib/notifications/tests/test_tasks.py +72 -0
  766. wbcore/contrib/notifications/tests/test_utils.py +0 -0
  767. wbcore/contrib/notifications/tests/test_viewsets/__init__.py +0 -0
  768. wbcore/contrib/notifications/tests/test_viewsets/test_notification_types.py +120 -0
  769. wbcore/contrib/notifications/tests/test_viewsets/test_notifications.py +143 -0
  770. wbcore/contrib/notifications/urls.py +27 -0
  771. wbcore/contrib/notifications/utils.py +27 -0
  772. wbcore/contrib/notifications/views.py +63 -0
  773. wbcore/contrib/notifications/viewsets/__init__.py +5 -0
  774. wbcore/contrib/notifications/viewsets/configs/notification_types.py +49 -0
  775. wbcore/contrib/notifications/viewsets/configs/notifications.py +91 -0
  776. wbcore/contrib/notifications/viewsets/menus.py +15 -0
  777. wbcore/contrib/notifications/viewsets/notification_types.py +51 -0
  778. wbcore/contrib/notifications/viewsets/notifications.py +58 -0
  779. wbcore/contrib/pandas/__init__.py +0 -0
  780. wbcore/contrib/pandas/fields.py +172 -0
  781. wbcore/contrib/pandas/filters.py +118 -0
  782. wbcore/contrib/pandas/filterset.py +28 -0
  783. wbcore/contrib/pandas/metadata.py +15 -0
  784. wbcore/contrib/pandas/tests/__init__.py +0 -0
  785. wbcore/contrib/pandas/tests/test_base.py +22 -0
  786. wbcore/contrib/pandas/tests/test_fields/__init__.py +0 -0
  787. wbcore/contrib/pandas/tests/test_fields/test_number_fields.py +19 -0
  788. wbcore/contrib/pandas/tests/test_filters/__init__.py +0 -0
  789. wbcore/contrib/pandas/tests/test_filters/test_pandas.py +115 -0
  790. wbcore/contrib/pandas/tests/test_views.py +22 -0
  791. wbcore/contrib/pandas/utils.py +170 -0
  792. wbcore/contrib/pandas/views.py +158 -0
  793. wbcore/contrib/tags/__init__.py +0 -0
  794. wbcore/contrib/tags/admin.py +17 -0
  795. wbcore/contrib/tags/apps.py +9 -0
  796. wbcore/contrib/tags/factories.py +28 -0
  797. wbcore/contrib/tags/filters.py +43 -0
  798. wbcore/contrib/tags/migrations/0001_initial.py +62 -0
  799. wbcore/contrib/tags/migrations/__init__.py +0 -0
  800. wbcore/contrib/tags/models/__init__.py +2 -0
  801. wbcore/contrib/tags/models/mixins.py +27 -0
  802. wbcore/contrib/tags/models/tags.py +107 -0
  803. wbcore/contrib/tags/release_notes/1_0_0.md +13 -0
  804. wbcore/contrib/tags/release_notes/__init__.py +0 -0
  805. wbcore/contrib/tags/serializers.py +90 -0
  806. wbcore/contrib/tags/signals.py +19 -0
  807. wbcore/contrib/tags/tests/__init__.py +0 -0
  808. wbcore/contrib/tags/tests/conftest.py +7 -0
  809. wbcore/contrib/tags/tests/tests.py +144 -0
  810. wbcore/contrib/tags/urls.py +15 -0
  811. wbcore/contrib/tags/viewsets/__init__.py +10 -0
  812. wbcore/contrib/tags/viewsets/display.py +50 -0
  813. wbcore/contrib/tags/viewsets/menu.py +15 -0
  814. wbcore/contrib/tags/viewsets/viewsets.py +58 -0
  815. wbcore/contrib/workflow/__init__.py +1 -0
  816. wbcore/contrib/workflow/admin/__init__.py +15 -0
  817. wbcore/contrib/workflow/admin/condition.py +9 -0
  818. wbcore/contrib/workflow/admin/data.py +15 -0
  819. wbcore/contrib/workflow/admin/display.py +9 -0
  820. wbcore/contrib/workflow/admin/process.py +37 -0
  821. wbcore/contrib/workflow/admin/step.py +92 -0
  822. wbcore/contrib/workflow/admin/transition.py +9 -0
  823. wbcore/contrib/workflow/admin/workflow.py +9 -0
  824. wbcore/contrib/workflow/apps.py +25 -0
  825. wbcore/contrib/workflow/configs.py +11 -0
  826. wbcore/contrib/workflow/decorators.py +25 -0
  827. wbcore/contrib/workflow/dispatch.py +24 -0
  828. wbcore/contrib/workflow/factories/__init__.py +18 -0
  829. wbcore/contrib/workflow/factories/condition.py +16 -0
  830. wbcore/contrib/workflow/factories/data.py +23 -0
  831. wbcore/contrib/workflow/factories/display.py +28 -0
  832. wbcore/contrib/workflow/factories/process.py +70 -0
  833. wbcore/contrib/workflow/factories/step.py +157 -0
  834. wbcore/contrib/workflow/factories/transition.py +27 -0
  835. wbcore/contrib/workflow/factories/workflow.py +20 -0
  836. wbcore/contrib/workflow/filters/__init__.py +24 -0
  837. wbcore/contrib/workflow/filters/condition.py +24 -0
  838. wbcore/contrib/workflow/filters/data.py +25 -0
  839. wbcore/contrib/workflow/filters/process.py +165 -0
  840. wbcore/contrib/workflow/filters/step.py +227 -0
  841. wbcore/contrib/workflow/filters/transition.py +42 -0
  842. wbcore/contrib/workflow/filters/workflow.py +44 -0
  843. wbcore/contrib/workflow/fixtures/workflow.json +612 -0
  844. wbcore/contrib/workflow/locale/de/LC_MESSAGES/django.po +1180 -0
  845. wbcore/contrib/workflow/locale/de/LC_MESSAGES/django.po.translated +1326 -0
  846. wbcore/contrib/workflow/locale/en/LC_MESSAGES/django.po +1102 -0
  847. wbcore/contrib/workflow/locale/fr/LC_MESSAGES/django.po +1114 -0
  848. wbcore/contrib/workflow/migrations/0001_initial.py +788 -0
  849. wbcore/contrib/workflow/migrations/0002_alter_step_step_type.py +31 -0
  850. wbcore/contrib/workflow/migrations/0003_alter_condition_attribute_name_and_more.py +75 -0
  851. wbcore/contrib/workflow/migrations/0004_alter_userstep_assignee_method.py +27 -0
  852. wbcore/contrib/workflow/migrations/0005_alter_userstep_assignee_method.py +17 -0
  853. wbcore/contrib/workflow/migrations/__init__.py +0 -0
  854. wbcore/contrib/workflow/models/__init__.py +19 -0
  855. wbcore/contrib/workflow/models/condition.py +124 -0
  856. wbcore/contrib/workflow/models/data.py +242 -0
  857. wbcore/contrib/workflow/models/display.py +34 -0
  858. wbcore/contrib/workflow/models/process.py +244 -0
  859. wbcore/contrib/workflow/models/step.py +778 -0
  860. wbcore/contrib/workflow/models/transition.py +71 -0
  861. wbcore/contrib/workflow/models/workflow.py +317 -0
  862. wbcore/contrib/workflow/serializers/__init__.py +37 -0
  863. wbcore/contrib/workflow/serializers/condition.py +65 -0
  864. wbcore/contrib/workflow/serializers/data.py +136 -0
  865. wbcore/contrib/workflow/serializers/display.py +25 -0
  866. wbcore/contrib/workflow/serializers/process.py +184 -0
  867. wbcore/contrib/workflow/serializers/signals.py +26 -0
  868. wbcore/contrib/workflow/serializers/step.py +365 -0
  869. wbcore/contrib/workflow/serializers/transition.py +81 -0
  870. wbcore/contrib/workflow/serializers/workflow.py +125 -0
  871. wbcore/contrib/workflow/sites.py +43 -0
  872. wbcore/contrib/workflow/static/workflow/markdown/documentation/assignedprocessstep.md +33 -0
  873. wbcore/contrib/workflow/static/workflow/markdown/documentation/condition.md +24 -0
  874. wbcore/contrib/workflow/static/workflow/markdown/documentation/decisionstep.md +30 -0
  875. wbcore/contrib/workflow/static/workflow/markdown/documentation/emailstep.md +45 -0
  876. wbcore/contrib/workflow/static/workflow/markdown/documentation/finishstep.md +33 -0
  877. wbcore/contrib/workflow/static/workflow/markdown/documentation/joinstep.md +33 -0
  878. wbcore/contrib/workflow/static/workflow/markdown/documentation/process.md +33 -0
  879. wbcore/contrib/workflow/static/workflow/markdown/documentation/processstep.md +51 -0
  880. wbcore/contrib/workflow/static/workflow/markdown/documentation/scriptstep.md +33 -0
  881. wbcore/contrib/workflow/static/workflow/markdown/documentation/splitstep.md +30 -0
  882. wbcore/contrib/workflow/static/workflow/markdown/documentation/startstep.md +27 -0
  883. wbcore/contrib/workflow/static/workflow/markdown/documentation/transition.md +27 -0
  884. wbcore/contrib/workflow/static/workflow/markdown/documentation/userstep.md +42 -0
  885. wbcore/contrib/workflow/static/workflow/markdown/documentation/workflow.md +32 -0
  886. wbcore/contrib/workflow/templates/Test_Templates.txt +25 -0
  887. wbcore/contrib/workflow/tests/__init__.py +0 -0
  888. wbcore/contrib/workflow/tests/conftest.py +281 -0
  889. wbcore/contrib/workflow/tests/test_configs.py +6 -0
  890. wbcore/contrib/workflow/tests/test_dispatch.py +94 -0
  891. wbcore/contrib/workflow/tests/test_displays.py +42 -0
  892. wbcore/contrib/workflow/tests/test_filters.py +104 -0
  893. wbcore/contrib/workflow/tests/test_models/step/test_decision_step.py +82 -0
  894. wbcore/contrib/workflow/tests/test_models/step/test_email_step.py +85 -0
  895. wbcore/contrib/workflow/tests/test_models/step/test_finish_step.py +167 -0
  896. wbcore/contrib/workflow/tests/test_models/step/test_join_step.py +117 -0
  897. wbcore/contrib/workflow/tests/test_models/step/test_script_step.py +24 -0
  898. wbcore/contrib/workflow/tests/test_models/step/test_split_step.py +49 -0
  899. wbcore/contrib/workflow/tests/test_models/step/test_step.py +756 -0
  900. wbcore/contrib/workflow/tests/test_models/step/test_user_step.py +225 -0
  901. wbcore/contrib/workflow/tests/test_models/test_condition.py +103 -0
  902. wbcore/contrib/workflow/tests/test_models/test_data.py +134 -0
  903. wbcore/contrib/workflow/tests/test_models/test_process.py +98 -0
  904. wbcore/contrib/workflow/tests/test_models/test_transition.py +128 -0
  905. wbcore/contrib/workflow/tests/test_models/test_workflow.py +358 -0
  906. wbcore/contrib/workflow/tests/test_serializers.py +200 -0
  907. wbcore/contrib/workflow/tests/test_viewsets.py +300 -0
  908. wbcore/contrib/workflow/tests/test_workflow_assignees.py +236 -0
  909. wbcore/contrib/workflow/urls.py +67 -0
  910. wbcore/contrib/workflow/utils.py +13 -0
  911. wbcore/contrib/workflow/viewsets/__init__.py +17 -0
  912. wbcore/contrib/workflow/viewsets/buttons/__init__.py +1 -0
  913. wbcore/contrib/workflow/viewsets/buttons/step.py +68 -0
  914. wbcore/contrib/workflow/viewsets/condition.py +32 -0
  915. wbcore/contrib/workflow/viewsets/data.py +33 -0
  916. wbcore/contrib/workflow/viewsets/display/__init__.py +15 -0
  917. wbcore/contrib/workflow/viewsets/display/condition.py +51 -0
  918. wbcore/contrib/workflow/viewsets/display/data.py +51 -0
  919. wbcore/contrib/workflow/viewsets/display/process.py +186 -0
  920. wbcore/contrib/workflow/viewsets/display/step.py +454 -0
  921. wbcore/contrib/workflow/viewsets/display/transition.py +76 -0
  922. wbcore/contrib/workflow/viewsets/display/workflow.py +168 -0
  923. wbcore/contrib/workflow/viewsets/endpoints/__init__.py +5 -0
  924. wbcore/contrib/workflow/viewsets/endpoints/condition.py +9 -0
  925. wbcore/contrib/workflow/viewsets/endpoints/data.py +9 -0
  926. wbcore/contrib/workflow/viewsets/endpoints/process.py +11 -0
  927. wbcore/contrib/workflow/viewsets/endpoints/step.py +24 -0
  928. wbcore/contrib/workflow/viewsets/endpoints/transition.py +19 -0
  929. wbcore/contrib/workflow/viewsets/menu/__init__.py +15 -0
  930. wbcore/contrib/workflow/viewsets/menu/condition.py +19 -0
  931. wbcore/contrib/workflow/viewsets/menu/data.py +19 -0
  932. wbcore/contrib/workflow/viewsets/menu/process.py +19 -0
  933. wbcore/contrib/workflow/viewsets/menu/step.py +124 -0
  934. wbcore/contrib/workflow/viewsets/menu/transition.py +19 -0
  935. wbcore/contrib/workflow/viewsets/menu/workflow.py +19 -0
  936. wbcore/contrib/workflow/viewsets/process.py +175 -0
  937. wbcore/contrib/workflow/viewsets/step.py +229 -0
  938. wbcore/contrib/workflow/viewsets/titles/__init__.py +16 -0
  939. wbcore/contrib/workflow/viewsets/titles/condition.py +14 -0
  940. wbcore/contrib/workflow/viewsets/titles/data.py +14 -0
  941. wbcore/contrib/workflow/viewsets/titles/process.py +27 -0
  942. wbcore/contrib/workflow/viewsets/titles/step.py +102 -0
  943. wbcore/contrib/workflow/viewsets/titles/transition.py +14 -0
  944. wbcore/contrib/workflow/viewsets/titles/workflow.py +14 -0
  945. wbcore/contrib/workflow/viewsets/transition.py +58 -0
  946. wbcore/contrib/workflow/viewsets/workflow.py +37 -0
  947. wbcore/contrib/workflow/workflows/__init__.py +1 -0
  948. wbcore/contrib/workflow/workflows/assignees.py +88 -0
  949. wbcore/crontab/__init__.py +0 -0
  950. wbcore/crontab/serializers.py +24 -0
  951. wbcore/crontab/viewsets.py +10 -0
  952. wbcore/dispatch.py +56 -0
  953. wbcore/docs/__init__.py +23 -0
  954. wbcore/docs/orderable.md +29 -0
  955. wbcore/docs/reparent.md +13 -0
  956. wbcore/dynamic_preferences_registry.py +131 -0
  957. wbcore/enums.py +50 -0
  958. wbcore/filters/__init__.py +21 -0
  959. wbcore/filters/backends.py +19 -0
  960. wbcore/filters/defaults.py +70 -0
  961. wbcore/filters/fields/__init__.py +15 -0
  962. wbcore/filters/fields/booleans.py +7 -0
  963. wbcore/filters/fields/choices.py +60 -0
  964. wbcore/filters/fields/content_type.py +45 -0
  965. wbcore/filters/fields/datetime.py +117 -0
  966. wbcore/filters/fields/models.py +123 -0
  967. wbcore/filters/fields/multiple_lookups.py +20 -0
  968. wbcore/filters/fields/numbers.py +48 -0
  969. wbcore/filters/fields/text.py +7 -0
  970. wbcore/filters/filterset.py +250 -0
  971. wbcore/filters/lookups.py +41 -0
  972. wbcore/filters/mixins.py +111 -0
  973. wbcore/filters/utils.py +21 -0
  974. wbcore/forms.py +125 -0
  975. wbcore/frontend.py +23 -0
  976. wbcore/frontend_user_configuration.py +96 -0
  977. wbcore/fsm/__init__.py +0 -0
  978. wbcore/fsm/markdown_extensions.py +31 -0
  979. wbcore/fsm/mixins.py +128 -0
  980. wbcore/locale/de/LC_MESSAGES/django.po +1252 -0
  981. wbcore/locale/de/LC_MESSAGES/django.po.translated +1580 -0
  982. wbcore/locale/en/LC_MESSAGES/django.po +1234 -0
  983. wbcore/locale/fr/LC_MESSAGES/django.po +1235 -0
  984. wbcore/management/__init__.py +88 -0
  985. wbcore/management/commands/__init__.py +0 -0
  986. wbcore/management/commands/bootstrap.py +18 -0
  987. wbcore/management/commands/clean_obsolete_object.py +21 -0
  988. wbcore/management/commands/handle_release_notes.py +54 -0
  989. wbcore/markdown/__init__.py +1 -0
  990. wbcore/markdown/admin.py +9 -0
  991. wbcore/markdown/dynamic_preferences_registry.py +16 -0
  992. wbcore/markdown/models.py +41 -0
  993. wbcore/markdown/template.py +38 -0
  994. wbcore/markdown/utils.py +37 -0
  995. wbcore/markdown/views.py +50 -0
  996. wbcore/menus/__init__.py +2 -0
  997. wbcore/menus/menus.py +96 -0
  998. wbcore/menus/registry.py +28 -0
  999. wbcore/menus/views.py +41 -0
  1000. wbcore/messages.py +60 -0
  1001. wbcore/metadata/__init__.py +0 -0
  1002. wbcore/metadata/configs/__init__.py +0 -0
  1003. wbcore/metadata/configs/base.py +86 -0
  1004. wbcore/metadata/configs/buttons/__init__.py +4 -0
  1005. wbcore/metadata/configs/buttons/bases.py +89 -0
  1006. wbcore/metadata/configs/buttons/buttons.py +138 -0
  1007. wbcore/metadata/configs/buttons/enums.py +68 -0
  1008. wbcore/metadata/configs/buttons/metadata.py +8 -0
  1009. wbcore/metadata/configs/buttons/view_config.py +145 -0
  1010. wbcore/metadata/configs/display/__init__.py +4 -0
  1011. wbcore/metadata/configs/display/configs.py +16 -0
  1012. wbcore/metadata/configs/display/display.py +234 -0
  1013. wbcore/metadata/configs/display/formatting.py +47 -0
  1014. wbcore/metadata/configs/display/instance_display/__init__.py +15 -0
  1015. wbcore/metadata/configs/display/instance_display/display.py +40 -0
  1016. wbcore/metadata/configs/display/instance_display/enums.py +7 -0
  1017. wbcore/metadata/configs/display/instance_display/layouts/__init__.py +3 -0
  1018. wbcore/metadata/configs/display/instance_display/layouts/inlines.py +58 -0
  1019. wbcore/metadata/configs/display/instance_display/layouts/layouts.py +77 -0
  1020. wbcore/metadata/configs/display/instance_display/layouts/sections.py +43 -0
  1021. wbcore/metadata/configs/display/instance_display/operators.py +22 -0
  1022. wbcore/metadata/configs/display/instance_display/pages.py +40 -0
  1023. wbcore/metadata/configs/display/instance_display/shortcuts.py +81 -0
  1024. wbcore/metadata/configs/display/instance_display/signals.py +3 -0
  1025. wbcore/metadata/configs/display/instance_display/styles.py +42 -0
  1026. wbcore/metadata/configs/display/instance_display/utils.py +74 -0
  1027. wbcore/metadata/configs/display/list_display.py +290 -0
  1028. wbcore/metadata/configs/display/models.py +26 -0
  1029. wbcore/metadata/configs/display/view_config.py +85 -0
  1030. wbcore/metadata/configs/display/views.py +48 -0
  1031. wbcore/metadata/configs/display/windows.py +28 -0
  1032. wbcore/metadata/configs/documentations.py +11 -0
  1033. wbcore/metadata/configs/endpoints.py +189 -0
  1034. wbcore/metadata/configs/fields.py +22 -0
  1035. wbcore/metadata/configs/filter_fields.py +41 -0
  1036. wbcore/metadata/configs/identifiers.py +27 -0
  1037. wbcore/metadata/configs/ordering_fields.py +24 -0
  1038. wbcore/metadata/configs/paginations.py +11 -0
  1039. wbcore/metadata/configs/preview.py +41 -0
  1040. wbcore/metadata/configs/primary_keys.py +9 -0
  1041. wbcore/metadata/configs/search_fields.py +9 -0
  1042. wbcore/metadata/configs/titles.py +48 -0
  1043. wbcore/metadata/configs/window_types.py +13 -0
  1044. wbcore/metadata/exceptions.py +0 -0
  1045. wbcore/metadata/metadata.py +34 -0
  1046. wbcore/metadata/mixins.py +106 -0
  1047. wbcore/metadata/tests/__init__.py +0 -0
  1048. wbcore/metadata/tests/test_buttons.py +165 -0
  1049. wbcore/metadata/utils.py +4 -0
  1050. wbcore/migrations/0001_initial_squashed_squashed_0010_preset_appliedpreset.py +398 -0
  1051. wbcore/migrations/0011_genericmodel.py +22 -0
  1052. wbcore/migrations/0012_delete_notification.py +15 -0
  1053. wbcore/migrations/0013_delete_colorgradient.py +14 -0
  1054. wbcore/migrations/0014_biguserobjectpermission_system.py +44 -0
  1055. wbcore/migrations/__init__.py +0 -0
  1056. wbcore/models/__init__.py +6 -0
  1057. wbcore/models/base.py +184 -0
  1058. wbcore/models/fields.py +29 -0
  1059. wbcore/models/orderable.py +6 -0
  1060. wbcore/pagination.py +64 -0
  1061. wbcore/pandas/__init__.py +53 -0
  1062. wbcore/pandas/fields.py +25 -0
  1063. wbcore/pandas/filterset.py +9 -0
  1064. wbcore/pandas/utils.py +25 -0
  1065. wbcore/pandas/views.py +9 -0
  1066. wbcore/permissions/__init__.py +0 -0
  1067. wbcore/permissions/backend.py +36 -0
  1068. wbcore/permissions/mixins.py +72 -0
  1069. wbcore/permissions/permissions.py +51 -0
  1070. wbcore/permissions/registry.py +33 -0
  1071. wbcore/permissions/shortcuts.py +38 -0
  1072. wbcore/permissions/utils.py +26 -0
  1073. wbcore/release_notes/__init__.py +0 -0
  1074. wbcore/release_notes/admin.py +30 -0
  1075. wbcore/release_notes/buttons.py +26 -0
  1076. wbcore/release_notes/display.py +52 -0
  1077. wbcore/release_notes/filters.py +36 -0
  1078. wbcore/release_notes/models.py +66 -0
  1079. wbcore/release_notes/serializers.py +12 -0
  1080. wbcore/release_notes/utils.py +14 -0
  1081. wbcore/release_notes/viewsets.py +52 -0
  1082. wbcore/reversion/__init__.py +0 -0
  1083. wbcore/reversion/filters.py +39 -0
  1084. wbcore/reversion/serializers.py +81 -0
  1085. wbcore/reversion/viewsets/__init__.py +6 -0
  1086. wbcore/reversion/viewsets/buttons.py +95 -0
  1087. wbcore/reversion/viewsets/displays.py +45 -0
  1088. wbcore/reversion/viewsets/endpoints.py +30 -0
  1089. wbcore/reversion/viewsets/titles.py +19 -0
  1090. wbcore/reversion/viewsets/viewsets.py +112 -0
  1091. wbcore/routers.py +63 -0
  1092. wbcore/search/__init__.py +62 -0
  1093. wbcore/serializers/__init__.py +68 -0
  1094. wbcore/serializers/fields/__init__.py +59 -0
  1095. wbcore/serializers/fields/boolean.py +51 -0
  1096. wbcore/serializers/fields/choice.py +60 -0
  1097. wbcore/serializers/fields/datetime.py +178 -0
  1098. wbcore/serializers/fields/fields.py +193 -0
  1099. wbcore/serializers/fields/file.py +20 -0
  1100. wbcore/serializers/fields/fsm.py +20 -0
  1101. wbcore/serializers/fields/json.py +56 -0
  1102. wbcore/serializers/fields/list.py +104 -0
  1103. wbcore/serializers/fields/mixins.py +196 -0
  1104. wbcore/serializers/fields/number.py +94 -0
  1105. wbcore/serializers/fields/other.py +34 -0
  1106. wbcore/serializers/fields/primary_key.py +22 -0
  1107. wbcore/serializers/fields/related.py +150 -0
  1108. wbcore/serializers/fields/text.py +141 -0
  1109. wbcore/serializers/fields/types.py +46 -0
  1110. wbcore/serializers/mixins.py +24 -0
  1111. wbcore/serializers/serializers.py +425 -0
  1112. wbcore/serializers/utils.py +143 -0
  1113. wbcore/shares/__init__.py +1 -0
  1114. wbcore/shares/config.py +64 -0
  1115. wbcore/shares/decorator.py +13 -0
  1116. wbcore/shares/signals.py +3 -0
  1117. wbcore/shares/sites.py +29 -0
  1118. wbcore/shares/views.py +25 -0
  1119. wbcore/signals/__init__.py +7 -0
  1120. wbcore/signals/clone.py +4 -0
  1121. wbcore/signals/filters.py +3 -0
  1122. wbcore/signals/instance_buttons.py +5 -0
  1123. wbcore/signals/merge.py +4 -0
  1124. wbcore/signals/models.py +4 -0
  1125. wbcore/signals/permissions.py +3 -0
  1126. wbcore/signals/serializers.py +5 -0
  1127. wbcore/tasks.py +87 -0
  1128. wbcore/template.py +29 -0
  1129. wbcore/templates/errors/404.html +134 -0
  1130. wbcore/templates/errors/500.html +138 -0
  1131. wbcore/templates/errors/503.html +132 -0
  1132. wbcore/templates/errors/custom.html +132 -0
  1133. wbcore/templates/forms.py +0 -0
  1134. wbcore/templates/notifications/email_template.html +43 -0
  1135. wbcore/templates/reversion/__init__.py +0 -0
  1136. wbcore/templates/reversion/compare_detail.html +19 -0
  1137. wbcore/templates/wbcore/admin/change_list.html +8 -0
  1138. wbcore/templates/wbcore/admin/csv_form.html +15 -0
  1139. wbcore/templates/wbcore/dynamic_color_array.html +29 -0
  1140. wbcore/templates/wbcore/email_base_template.html +335 -0
  1141. wbcore/templates/wbcore/email_notification_template.html +10 -0
  1142. wbcore/templates/wbcore/frontend.html +51 -0
  1143. wbcore/test/__init__.py +30 -0
  1144. wbcore/test/e2e_helpers_methods/e2e_checks.py +127 -0
  1145. wbcore/test/e2e_helpers_methods/e2e_helper_methods.py +397 -0
  1146. wbcore/test/mixins.py +660 -0
  1147. wbcore/test/signals.py +6 -0
  1148. wbcore/test/tests.py +129 -0
  1149. wbcore/test/utils.py +227 -0
  1150. wbcore/tests/__init__.py +0 -0
  1151. wbcore/tests/conftest.py +55 -0
  1152. wbcore/tests/e2e/__init__.py +0 -0
  1153. wbcore/tests/e2e/test_e2e.py +25 -0
  1154. wbcore/tests/models.py +6 -0
  1155. wbcore/tests/test_cache/__init__.py +0 -0
  1156. wbcore/tests/test_cache/test_decorators.py +28 -0
  1157. wbcore/tests/test_cache/test_mixins.py +30 -0
  1158. wbcore/tests/test_cache/test_registry.py +58 -0
  1159. wbcore/tests/test_configs.py +58 -0
  1160. wbcore/tests/test_enums.py +56 -0
  1161. wbcore/tests/test_fields/__init__.py +0 -0
  1162. wbcore/tests/test_fields/test_boolean_fields.py +49 -0
  1163. wbcore/tests/test_fields/test_choice_fields.py +57 -0
  1164. wbcore/tests/test_fields/test_datetime_fields.py +152 -0
  1165. wbcore/tests/test_fields/test_fields.py +24 -0
  1166. wbcore/tests/test_fields/test_file_fields.py +52 -0
  1167. wbcore/tests/test_fields/test_json_fields.py +28 -0
  1168. wbcore/tests/test_fields/test_list_fields.py +27 -0
  1169. wbcore/tests/test_fields/test_mixins.py +112 -0
  1170. wbcore/tests/test_fields/test_number_fields.py +166 -0
  1171. wbcore/tests/test_fields/test_other_fields.py +60 -0
  1172. wbcore/tests/test_fields/test_primary_key_fields.py +52 -0
  1173. wbcore/tests/test_fields/test_related.py +81 -0
  1174. wbcore/tests/test_fields/test_text_fields.py +118 -0
  1175. wbcore/tests/test_filters/__init__.py +0 -0
  1176. wbcore/tests/test_filters/test_mixins.py +109 -0
  1177. wbcore/tests/test_list_display.py +29 -0
  1178. wbcore/tests/test_models/__init__.py +0 -0
  1179. wbcore/tests/test_models/test_fields.py +26 -0
  1180. wbcore/tests/test_models/test_mixins.py +32 -0
  1181. wbcore/tests/test_new_display/__init__.py +0 -0
  1182. wbcore/tests/test_new_display/test_inlines.py +13 -0
  1183. wbcore/tests/test_new_display/test_layouts.py +15 -0
  1184. wbcore/tests/test_new_display/test_operators.py +16 -0
  1185. wbcore/tests/test_new_display/test_pages.py +8 -0
  1186. wbcore/tests/test_new_display/test_sections.py +0 -0
  1187. wbcore/tests/test_new_display/test_shortcuts.py +38 -0
  1188. wbcore/tests/test_new_display/test_utils.py +49 -0
  1189. wbcore/tests/test_pagination.py +32 -0
  1190. wbcore/tests/test_permissions/test_backend.py +29 -0
  1191. wbcore/tests/test_serializers/__init__.py +0 -0
  1192. wbcore/tests/test_serializers/test_fields.py +141 -0
  1193. wbcore/tests/test_serializers/test_mixins.py +54 -0
  1194. wbcore/tests/test_serializers/test_related.py +78 -0
  1195. wbcore/tests/test_something.py +39 -0
  1196. wbcore/tests/test_utils/__init__.py +0 -0
  1197. wbcore/tests/test_utils/test_date.py +50 -0
  1198. wbcore/tests/test_utils/test_date_builder.py +124 -0
  1199. wbcore/tests/test_utils/test_primary.py +80 -0
  1200. wbcore/tests/test_utils/test_signals.py +40 -0
  1201. wbcore/tests/test_viewsets.py +21 -0
  1202. wbcore/urls.py +117 -0
  1203. wbcore/utils/__init__.py +13 -0
  1204. wbcore/utils/cache.py +8 -0
  1205. wbcore/utils/date.py +237 -0
  1206. wbcore/utils/date_builder/__init__.py +18 -0
  1207. wbcore/utils/date_builder/components.py +42 -0
  1208. wbcore/utils/date_builder/offsets.py +27 -0
  1209. wbcore/utils/deprecations.py +11 -0
  1210. wbcore/utils/enum.py +23 -0
  1211. wbcore/utils/figures.py +286 -0
  1212. wbcore/utils/html.py +8 -0
  1213. wbcore/utils/importlib.py +13 -0
  1214. wbcore/utils/itertools.py +40 -0
  1215. wbcore/utils/models.py +293 -0
  1216. wbcore/utils/numbers.py +69 -0
  1217. wbcore/utils/prettytable.py +35 -0
  1218. wbcore/utils/print.py +29 -0
  1219. wbcore/utils/renderers.py +13 -0
  1220. wbcore/utils/reportlab.py +7 -0
  1221. wbcore/utils/rrules.py +82 -0
  1222. wbcore/utils/serializers.py +9 -0
  1223. wbcore/utils/settings.py +5 -0
  1224. wbcore/utils/signals.py +36 -0
  1225. wbcore/utils/string_loader.py +42 -0
  1226. wbcore/utils/strings.py +77 -0
  1227. wbcore/utils/urls.py +70 -0
  1228. wbcore/utils/views.py +207 -0
  1229. wbcore/views.py +26 -0
  1230. wbcore/viewsets/__init__.py +12 -0
  1231. wbcore/viewsets/encoders.py +18 -0
  1232. wbcore/viewsets/generics.py +5 -0
  1233. wbcore/viewsets/mixins.py +295 -0
  1234. wbcore/viewsets/utils.py +27 -0
  1235. wbcore/viewsets/viewsets.py +202 -0
  1236. wbcore/workers.py +8 -0
  1237. wbcore-1.59.9.dist-info/METADATA +65 -0
  1238. wbcore-1.59.9.dist-info/RECORD +1239 -0
  1239. wbcore-1.59.9.dist-info/WHEEL +5 -0
@@ -0,0 +1,3884 @@
1
+ [
2
+ {
3
+ "model": "directory.bankingcontact",
4
+ "pk": 1,
5
+ "fields": {
6
+ "status": "DRAFT",
7
+ "primary": true,
8
+ "location": "WORK",
9
+ "edited": "2022-07-06T15:50:16.514Z",
10
+ "entry": 11,
11
+ "institute": "Bank of Iceland",
12
+ "institute_additional": null,
13
+ "iban": "IS56 0159 2600 7654 6258 7602 15",
14
+ "swift_bic": "NBIIISREXXX",
15
+ "currency": 1,
16
+ "additional_information": null
17
+ }
18
+ },
19
+ {
20
+ "model": "directory.bankingcontact",
21
+ "pk": 2,
22
+ "fields": {
23
+ "status": "APPROVED",
24
+ "primary": true,
25
+ "location": "WORK",
26
+ "edited": "2022-07-06T15:50:16.514Z",
27
+ "entry": 19,
28
+ "institute": "LowCountry Bank",
29
+ "institute_additional": null,
30
+ "iban": "NL93 ABNA 9242 0623 71",
31
+ "swift_bic": "LCBANL2A",
32
+ "currency": 1,
33
+ "additional_information": null
34
+ }
35
+ },
36
+ {
37
+ "model": "directory.bankingcontact",
38
+ "pk": 3,
39
+ "fields": {
40
+ "status": "PENDING",
41
+ "primary": true,
42
+ "location": "WORK",
43
+ "edited": "2022-07-06T15:50:16.514Z",
44
+ "entry": 20,
45
+ "institute": "A Swiss Bank",
46
+ "institute_additional": null,
47
+ "iban": "CH58 0483 5134 6778 2491 1",
48
+ "swift_bic": "ASBSCHZZ80A",
49
+ "currency": 4,
50
+ "additional_information": null
51
+ }
52
+ },
53
+ {
54
+ "model": "directory.bankingcontact",
55
+ "pk": 4,
56
+ "fields": {
57
+ "status": "DRAFT",
58
+ "primary": true,
59
+ "location": "WORK",
60
+ "edited": "2022-07-06T15:50:16.514Z",
61
+ "entry": 10,
62
+ "institute": "COMMERZBANK Aktiengesellschaft, pobočka Praha",
63
+ "institute_additional": null,
64
+ "iban": "CZ66 6200 0000 1933 2277 1950",
65
+ "swift_bic": "COBACZPX",
66
+ "currency": 2,
67
+ "additional_information": null
68
+ }
69
+ },
70
+ {
71
+ "model": "directory.bankingcontact",
72
+ "pk": 5,
73
+ "fields": {
74
+ "status": "PENDING",
75
+ "primary": true,
76
+ "location": "WORK",
77
+ "edited": "2022-07-06T15:50:16.514Z",
78
+ "entry": 14,
79
+ "institute": "Banca Popolare di Bergamo SpA",
80
+ "institute_additional": null,
81
+ "iban": "IT78 A054 2811 1010 6896 9563 839",
82
+ "swift_bic": "BEPOIT21XXX",
83
+ "currency": 16,
84
+ "additional_information": null
85
+ }
86
+ },
87
+ {
88
+ "model": "directory.bankingcontact",
89
+ "pk": 6,
90
+ "fields": {
91
+ "status": "DRAFT",
92
+ "primary": true,
93
+ "location": "WORK",
94
+ "edited": "2022-07-06T15:50:16.514Z",
95
+ "entry": 13,
96
+ "institute": "NATIONAL BANK OF GREECE S.A.",
97
+ "institute_additional": null,
98
+ "iban": "GR44 0110 1250 0000 0006 7594 556",
99
+ "swift_bic": "ETHNGRAA",
100
+ "currency": 3,
101
+ "additional_information": null
102
+ }
103
+ },
104
+ {
105
+ "model": "directory.bankingcontact",
106
+ "pk": 7,
107
+ "fields": {
108
+ "status": "APPROVED",
109
+ "primary": true,
110
+ "location": "PRIVATE",
111
+ "edited": "2022-07-06T15:50:16.514Z",
112
+ "entry": 24,
113
+ "institute": "UBS Switzerland",
114
+ "institute_additional": null,
115
+ "iban": "CH3589144163198225275",
116
+ "swift_bic": "UBSWCHZH80A",
117
+ "currency": 4,
118
+ "additional_information": null
119
+ }
120
+ },
121
+ {
122
+ "model": "directory.bankingcontact",
123
+ "pk": 8,
124
+ "fields": {
125
+ "status": "APPROVED",
126
+ "primary": true,
127
+ "location": "PRIVATE",
128
+ "edited": "2022-07-06T15:50:16.514Z",
129
+ "entry": 34,
130
+ "institute": "Československá obchodní banka, a. s.",
131
+ "institute_additional": null,
132
+ "iban": "CZ7050513258424242394677",
133
+ "swift_bic": "CEKOCZPP",
134
+ "currency": 1,
135
+ "additional_information": null
136
+ }
137
+ },
138
+ {
139
+ "model": "directory.bankingcontact",
140
+ "pk": 9,
141
+ "fields": {
142
+ "status": "APPROVED",
143
+ "primary": true,
144
+ "location": "PRIVATE",
145
+ "edited": "2022-07-06T15:50:16.514Z",
146
+ "entry": 39,
147
+ "institute": "JPMorgan Chase & Co.",
148
+ "institute_additional": null,
149
+ "iban": null,
150
+ "swift_bic": "CHASUS33XXX",
151
+ "currency": 2,
152
+ "additional_information": "Routing Number: 933093838, Account Number: 34616519"
153
+ }
154
+ },
155
+ {
156
+ "model": "directory.addresscontact",
157
+ "pk": 1,
158
+ "fields": {
159
+ "primary": true,
160
+ "location": "WORK",
161
+ "entry": 30,
162
+ "street": "17/4-5 Soi Santhiparp Nares Road 2",
163
+ "street_additional": null,
164
+ "zip": "10500",
165
+ "province": null,
166
+ "geography_city": 1
167
+ }
168
+ },
169
+ {
170
+ "model": "directory.addresscontact",
171
+ "pk": 2,
172
+ "fields": {
173
+ "primary": true,
174
+ "location": "WORK",
175
+ "entry": 34,
176
+ "street": "Nezvalova 1566",
177
+ "street_additional": null,
178
+ "zip": "256 01",
179
+ "province": null,
180
+ "geography_city": 5
181
+ }
182
+ },
183
+ {
184
+ "model": "directory.addresscontact",
185
+ "pk": 3,
186
+ "fields": {
187
+ "primary": true,
188
+ "location": "WORK",
189
+ "entry": 11,
190
+ "street": "Laugarvegur 114",
191
+ "street_additional": "",
192
+ "zip": "154",
193
+ "province": null,
194
+ "geography_city": 11
195
+ }
196
+ },
197
+ {
198
+ "model": "directory.addresscontact",
199
+ "pk": 4,
200
+ "fields": {
201
+ "primary": true,
202
+ "location": "WORK",
203
+ "entry": 39,
204
+ "street": "2403 Farland Avenue",
205
+ "street_additional": null,
206
+ "zip": "78123",
207
+ "province": null,
208
+ "geography_city": 15
209
+ }
210
+ },
211
+ {
212
+ "model": "directory.addresscontact",
213
+ "pk": 5,
214
+ "fields": {
215
+ "primary": true,
216
+ "location": "WORK",
217
+ "entry": 38,
218
+ "street": "339 Colony Street",
219
+ "street_additional": null,
220
+ "zip": "06443",
221
+ "province": null,
222
+ "geography_city": 17
223
+ }
224
+ },
225
+ {
226
+ "model": "directory.addresscontact",
227
+ "pk": 6,
228
+ "fields": {
229
+ "primary": true,
230
+ "location": "WORK",
231
+ "entry": 40,
232
+ "street": "1918 Jett Lane",
233
+ "street_additional": "Upper Palace",
234
+ "zip": "90250",
235
+ "province": null,
236
+ "geography_city": 19
237
+ }
238
+ },
239
+ {
240
+ "model": "directory.addresscontact",
241
+ "pk": 7,
242
+ "fields": {
243
+ "primary": true,
244
+ "location": "WORK",
245
+ "entry": 26,
246
+ "street": "Wings Bldg",
247
+ "street_additional": null,
248
+ "zip": "n/a",
249
+ "province": null,
250
+ "geography_city": 22
251
+ }
252
+ },
253
+ {
254
+ "model": "directory.addresscontact",
255
+ "pk": 8,
256
+ "fields": {
257
+ "primary": true,
258
+ "location": "WORK",
259
+ "entry": 28,
260
+ "street": "Строителей, дом 2/А, кв. 110",
261
+ "street_additional": null,
262
+ "zip": null,
263
+ "province": null,
264
+ "geography_city": 25
265
+ }
266
+ },
267
+ {
268
+ "model": "directory.addresscontact",
269
+ "pk": 9,
270
+ "fields": {
271
+ "primary": true,
272
+ "location": "WORK",
273
+ "entry": 42,
274
+ "street": "Mittelweg 177",
275
+ "street_additional": null,
276
+ "zip": "20148",
277
+ "province": null,
278
+ "geography_city": 28
279
+ }
280
+ },
281
+ {
282
+ "model": "directory.addresscontact",
283
+ "pk": 10,
284
+ "fields": {
285
+ "primary": true,
286
+ "location": "WORK",
287
+ "entry": 37,
288
+ "street": "Hartstrone st Limerick",
289
+ "street_additional": null,
290
+ "zip": "n/A",
291
+ "province": null,
292
+ "geography_city": 31
293
+ }
294
+ },
295
+ {
296
+ "model": "directory.addresscontact",
297
+ "pk": 11,
298
+ "fields": {
299
+ "primary": true,
300
+ "location": "WORK",
301
+ "entry": 35,
302
+ "street": "Burgwal 149",
303
+ "street_additional": null,
304
+ "zip": "3931 HL",
305
+ "province": null,
306
+ "geography_city": 34
307
+ }
308
+ },
309
+ {
310
+ "model": "directory.addresscontact",
311
+ "pk": 12,
312
+ "fields": {
313
+ "primary": false,
314
+ "location": "WORK",
315
+ "entry": 28,
316
+ "street": "140 Western Main Rd",
317
+ "street_additional": null,
318
+ "zip": null,
319
+ "province": null,
320
+ "geography_city": 38
321
+ }
322
+ },
323
+ {
324
+ "model": "directory.addresscontact",
325
+ "pk": 13,
326
+ "fields": {
327
+ "primary": true,
328
+ "location": "WORK",
329
+ "entry": 18,
330
+ "street": "Warner Drive",
331
+ "street_additional": null,
332
+ "zip": "WD25 7LP",
333
+ "province": null,
334
+ "geography_city": 41
335
+ }
336
+ },
337
+ {
338
+ "model": "directory.addresscontact",
339
+ "pk": 14,
340
+ "fields": {
341
+ "primary": true,
342
+ "location": "PRIVATE",
343
+ "entry": 22,
344
+ "street": "Sundlaugavegur 101",
345
+ "street_additional": null,
346
+ "zip": "232",
347
+ "province": null,
348
+ "geography_city": 43
349
+ }
350
+ },
351
+ {
352
+ "model": "directory.addresscontact",
353
+ "pk": 15,
354
+ "fields": {
355
+ "primary": true,
356
+ "location": "PRIVATE",
357
+ "entry": 24,
358
+ "street": "Via Albarelle 74",
359
+ "street_additional": null,
360
+ "zip": "1071",
361
+ "province": null,
362
+ "geography_city": 46
363
+ }
364
+ },
365
+ {
366
+ "model": "directory.addresscontact",
367
+ "pk": 16,
368
+ "fields": {
369
+ "primary": true,
370
+ "location": "WORK",
371
+ "entry": 17,
372
+ "street": "Mittelweg 177",
373
+ "street_additional": null,
374
+ "zip": "20148",
375
+ "province": null,
376
+ "geography_city": 28
377
+ }
378
+ },
379
+ {
380
+ "model": "directory.addresscontact",
381
+ "pk": 17,
382
+ "fields": {
383
+ "primary": true,
384
+ "location": "WORK",
385
+ "entry": 15,
386
+ "street": "Wings Bldg",
387
+ "street_additional": null,
388
+ "zip": "n/a",
389
+ "province": null,
390
+ "geography_city": 22
391
+ }
392
+ },
393
+ {
394
+ "model": "directory.addresscontact",
395
+ "pk": 18,
396
+ "fields": {
397
+ "primary": true,
398
+ "location": "WORK",
399
+ "entry": 9,
400
+ "street": "17/4-5 Soi Santhiparp Nares Road 2",
401
+ "street_additional": null,
402
+ "zip": "10500",
403
+ "province": null,
404
+ "geography_city": 1
405
+ }
406
+ },
407
+ {
408
+ "model": "directory.addresscontact",
409
+ "pk": 19,
410
+ "fields": {
411
+ "primary": true,
412
+ "location": "WORK",
413
+ "entry": 12,
414
+ "street": "2403 Farland Avenue",
415
+ "street_additional": null,
416
+ "zip": "78123",
417
+ "province": null,
418
+ "geography_city": 15
419
+ }
420
+ },
421
+ {
422
+ "model": "directory.addresscontact",
423
+ "pk": 20,
424
+ "fields": {
425
+ "primary": true,
426
+ "location": "WORK",
427
+ "entry": 10,
428
+ "street": "Nezvalova 1566",
429
+ "street_additional": null,
430
+ "zip": "256 01",
431
+ "province": null,
432
+ "geography_city": 5
433
+ }
434
+ },
435
+ {
436
+ "model": "directory.addresscontact",
437
+ "pk": 21,
438
+ "fields": {
439
+ "primary": true,
440
+ "location": "WORK",
441
+ "entry": 20,
442
+ "street": "Kronwiesenweg 134",
443
+ "street_additional": null,
444
+ "zip": "5024",
445
+ "province": null,
446
+ "geography_city": 48
447
+ }
448
+ },
449
+ {
450
+ "model": "directory.addresscontact",
451
+ "pk": 22,
452
+ "fields": {
453
+ "primary": true,
454
+ "location": "WORK",
455
+ "entry": 16,
456
+ "street": "Строителей, дом 2/А, кв. 110",
457
+ "street_additional": null,
458
+ "zip": "Республика Кабардино-Балкария",
459
+ "province": null,
460
+ "geography_city": 25
461
+ }
462
+ },
463
+ {
464
+ "model": "directory.addresscontact",
465
+ "pk": 23,
466
+ "fields": {
467
+ "primary": true,
468
+ "location": "WORK",
469
+ "entry": 21,
470
+ "street": "140 Western Main Rd",
471
+ "street_additional": null,
472
+ "zip": null,
473
+ "province": null,
474
+ "geography_city": 38
475
+ }
476
+ },
477
+ {
478
+ "model": "directory.addresscontact",
479
+ "pk": 24,
480
+ "fields": {
481
+ "primary": true,
482
+ "location": "WORK",
483
+ "entry": 14,
484
+ "street": "1918 Jett Lane",
485
+ "street_additional": "Upper Palace",
486
+ "zip": "90250",
487
+ "province": null,
488
+ "geography_city": 19
489
+ }
490
+ },
491
+ {
492
+ "model": "directory.addresscontact",
493
+ "pk": 25,
494
+ "fields": {
495
+ "primary": true,
496
+ "location": "WORK",
497
+ "entry": 13,
498
+ "street": "339 Colony Street",
499
+ "street_additional": null,
500
+ "zip": "06443",
501
+ "province": null,
502
+ "geography_city": 17
503
+ }
504
+ },
505
+ {
506
+ "model": "directory.addresscontact",
507
+ "pk": 26,
508
+ "fields": {
509
+ "primary": true,
510
+ "location": "PRIVATE",
511
+ "entry": 8,
512
+ "street": "1600 Pennsylvania Avenue",
513
+ "street_additional": null,
514
+ "zip": "20500",
515
+ "province": null,
516
+ "geography_city": 50
517
+ }
518
+ },
519
+ {
520
+ "model": "directory.addresscontact",
521
+ "pk": 27,
522
+ "fields": {
523
+ "primary": true,
524
+ "location": "PRIVATE",
525
+ "entry": 1,
526
+ "street": "ул. Воздвиженка",
527
+ "street_additional": null,
528
+ "zip": null,
529
+ "province": null,
530
+ "geography_city": 52
531
+ }
532
+ },
533
+ {
534
+ "model": "directory.addresscontact",
535
+ "pk": 28,
536
+ "fields": {
537
+ "primary": true,
538
+ "location": "PRIVATE",
539
+ "entry": 23,
540
+ "street": "Röstavägen",
541
+ "street_additional": null,
542
+ "zip": "83043",
543
+ "province": null,
544
+ "geography_city": 55
545
+ }
546
+ },
547
+ {
548
+ "model": "directory.addresscontact",
549
+ "pk": 29,
550
+ "fields": {
551
+ "primary": true,
552
+ "location": "PRIVATE",
553
+ "entry": 36,
554
+ "street": "Hulkerweg",
555
+ "street_additional": null,
556
+ "zip": "1647",
557
+ "province": null,
558
+ "geography_city": 57
559
+ }
560
+ },
561
+ {
562
+ "model": "directory.addresscontact",
563
+ "pk": 30,
564
+ "fields": {
565
+ "primary": true,
566
+ "location": "PRIVATE",
567
+ "entry": 44,
568
+ "street": "Skidoo Road",
569
+ "street_additional": null,
570
+ "zip": null,
571
+ "province": null,
572
+ "geography_city": 58
573
+ }
574
+ },
575
+ {
576
+ "model": "directory.addresscontact",
577
+ "pk": 31,
578
+ "fields": {
579
+ "primary": true,
580
+ "location": "PRIVATE",
581
+ "entry": 31,
582
+ "street": null,
583
+ "street_additional": null,
584
+ "zip": null,
585
+ "province": null,
586
+ "geography_city": 60
587
+ }
588
+ },
589
+ {
590
+ "model": "directory.addresscontact",
591
+ "pk": 32,
592
+ "fields": {
593
+ "primary": true,
594
+ "location": "PRIVATE",
595
+ "entry": 45,
596
+ "street": "P. Bezruče",
597
+ "street_additional": null,
598
+ "zip": "47106",
599
+ "province": null,
600
+ "geography_city": 62
601
+ }
602
+ },
603
+ {
604
+ "model": "directory.addresscontact",
605
+ "pk": 33,
606
+ "fields": {
607
+ "primary": true,
608
+ "location": "PRIVATE",
609
+ "entry": 33,
610
+ "street": null,
611
+ "street_additional": null,
612
+ "zip": null,
613
+ "province": null,
614
+ "geography_city": 64
615
+ }
616
+ },
617
+ {
618
+ "model": "directory.addresscontact",
619
+ "pk": 34,
620
+ "fields": {
621
+ "primary": true,
622
+ "location": "PRIVATE",
623
+ "entry": 41,
624
+ "street": "ул. Торговая",
625
+ "street_additional": null,
626
+ "zip": null,
627
+ "province": null,
628
+ "geography_city": 66
629
+ }
630
+ },
631
+ {
632
+ "model": "directory.addresscontact",
633
+ "pk": 35,
634
+ "fields": {
635
+ "primary": true,
636
+ "location": "PRIVATE",
637
+ "entry": 47,
638
+ "street": "Красноармейская ул",
639
+ "street_additional": null,
640
+ "zip": null,
641
+ "province": null,
642
+ "geography_city": 68
643
+ }
644
+ },
645
+ {
646
+ "model": "directory.addresscontact",
647
+ "pk": 36,
648
+ "fields": {
649
+ "primary": true,
650
+ "location": "PRIVATE",
651
+ "entry": 48,
652
+ "street": null,
653
+ "street_additional": null,
654
+ "zip": null,
655
+ "province": null,
656
+ "geography_city": 70
657
+ }
658
+ },
659
+ {
660
+ "model": "directory.addresscontact",
661
+ "pk": 37,
662
+ "fields": {
663
+ "primary": true,
664
+ "location": "PRIVATE",
665
+ "entry": 32,
666
+ "street": null,
667
+ "street_additional": null,
668
+ "zip": null,
669
+ "province": null,
670
+ "geography_city": 72
671
+ }
672
+ },
673
+ {
674
+ "model": "directory.addresscontact",
675
+ "pk": 38,
676
+ "fields": {
677
+ "primary": true,
678
+ "location": "PRIVATE",
679
+ "entry": 43,
680
+ "street": "Žižkova",
681
+ "street_additional": null,
682
+ "zip": "50801",
683
+ "province": null,
684
+ "geography_city": 74
685
+ }
686
+ },
687
+ {
688
+ "model": "directory.addresscontact",
689
+ "pk": 39,
690
+ "fields": {
691
+ "primary": true,
692
+ "location": "PRIVATE",
693
+ "entry": 25,
694
+ "street": "Junction Road",
695
+ "street_additional": null,
696
+ "zip": null,
697
+ "province": null,
698
+ "geography_city": 76
699
+ }
700
+ },
701
+ {
702
+ "model": "directory.addresscontact",
703
+ "pk": 40,
704
+ "fields": {
705
+ "primary": true,
706
+ "location": "PRIVATE",
707
+ "entry": 29,
708
+ "street": "Заводской пер.",
709
+ "street_additional": null,
710
+ "zip": "676121",
711
+ "province": null,
712
+ "geography_city": 78
713
+ }
714
+ },
715
+ {
716
+ "model": "directory.telephonecontact",
717
+ "pk": 1,
718
+ "fields": {
719
+ "primary": true,
720
+ "location": "WORK",
721
+ "entry": 9,
722
+ "number": "+6622351692",
723
+ "telephone_type": "FIX"
724
+ }
725
+ },
726
+ {
727
+ "model": "directory.telephonecontact",
728
+ "pk": 2,
729
+ "fields": {
730
+ "primary": false,
731
+ "location": "WORK",
732
+ "entry": 9,
733
+ "number": "+6622351338",
734
+ "telephone_type": "FAX"
735
+ }
736
+ },
737
+ {
738
+ "model": "directory.telephonecontact",
739
+ "pk": 3,
740
+ "fields": {
741
+ "primary": true,
742
+ "location": "WORK",
743
+ "entry": 10,
744
+ "number": "+420325287449",
745
+ "telephone_type": "FIX"
746
+ }
747
+ },
748
+ {
749
+ "model": "directory.telephonecontact",
750
+ "pk": 4,
751
+ "fields": {
752
+ "primary": true,
753
+ "location": "WORK",
754
+ "entry": 11,
755
+ "number": "+3544288734",
756
+ "telephone_type": "FIX"
757
+ }
758
+ },
759
+ {
760
+ "model": "directory.telephonecontact",
761
+ "pk": 5,
762
+ "fields": {
763
+ "primary": false,
764
+ "location": "WORK",
765
+ "entry": 11,
766
+ "number": "+3544288700",
767
+ "telephone_type": "FAX"
768
+ }
769
+ },
770
+ {
771
+ "model": "directory.telephonecontact",
772
+ "pk": 6,
773
+ "fields": {
774
+ "primary": true,
775
+ "location": "WORK",
776
+ "entry": 12,
777
+ "number": "+15129413600",
778
+ "telephone_type": "CELL"
779
+ }
780
+ },
781
+ {
782
+ "model": "directory.telephonecontact",
783
+ "pk": 7,
784
+ "fields": {
785
+ "primary": false,
786
+ "location": "WORK",
787
+ "entry": 12,
788
+ "number": "+18305600451",
789
+ "telephone_type": "FIX"
790
+ }
791
+ },
792
+ {
793
+ "model": "directory.telephonecontact",
794
+ "pk": 8,
795
+ "fields": {
796
+ "primary": false,
797
+ "location": "WORK",
798
+ "entry": 38,
799
+ "number": "+12032450376",
800
+ "telephone_type": "FIX"
801
+ }
802
+ },
803
+ {
804
+ "model": "directory.telephonecontact",
805
+ "pk": 9,
806
+ "fields": {
807
+ "primary": false,
808
+ "location": "WORK",
809
+ "entry": 13,
810
+ "number": "+12032450375",
811
+ "telephone_type": "FAX"
812
+ }
813
+ },
814
+ {
815
+ "model": "directory.telephonecontact",
816
+ "pk": 10,
817
+ "fields": {
818
+ "primary": true,
819
+ "location": "WORK",
820
+ "entry": 13,
821
+ "number": "+12032068419",
822
+ "telephone_type": "CELL"
823
+ }
824
+ },
825
+ {
826
+ "model": "directory.telephonecontact",
827
+ "pk": 11,
828
+ "fields": {
829
+ "primary": false,
830
+ "location": "WORK",
831
+ "entry": 40,
832
+ "number": "+13106756514",
833
+ "telephone_type": "FIX"
834
+ }
835
+ },
836
+ {
837
+ "model": "directory.telephonecontact",
838
+ "pk": 12,
839
+ "fields": {
840
+ "primary": true,
841
+ "location": "WORK",
842
+ "entry": 15,
843
+ "number": "+85228992234",
844
+ "telephone_type": "FIX"
845
+ }
846
+ },
847
+ {
848
+ "model": "directory.telephonecontact",
849
+ "pk": 13,
850
+ "fields": {
851
+ "primary": true,
852
+ "location": "WORK",
853
+ "entry": 28,
854
+ "number": "+76629751632",
855
+ "telephone_type": "FIX"
856
+ }
857
+ },
858
+ {
859
+ "model": "directory.telephonecontact",
860
+ "pk": 14,
861
+ "fields": {
862
+ "primary": true,
863
+ "location": "WORK",
864
+ "entry": 17,
865
+ "number": "+4940428380",
866
+ "telephone_type": "FIX"
867
+ }
868
+ },
869
+ {
870
+ "model": "directory.telephonecontact",
871
+ "pk": 15,
872
+ "fields": {
873
+ "primary": false,
874
+ "location": "WORK",
875
+ "entry": 17,
876
+ "number": "+4940428384883",
877
+ "telephone_type": "FAX"
878
+ }
879
+ },
880
+ {
881
+ "model": "directory.telephonecontact",
882
+ "pk": 16,
883
+ "fields": {
884
+ "primary": true,
885
+ "location": "WORK",
886
+ "entry": 18,
887
+ "number": "+35361468122",
888
+ "telephone_type": "FIX"
889
+ }
890
+ },
891
+ {
892
+ "model": "directory.telephonecontact",
893
+ "pk": 17,
894
+ "fields": {
895
+ "primary": false,
896
+ "location": "WORK",
897
+ "entry": 35,
898
+ "number": "+31659045879",
899
+ "telephone_type": "FIX"
900
+ }
901
+ },
902
+ {
903
+ "model": "directory.telephonecontact",
904
+ "pk": 18,
905
+ "fields": {
906
+ "primary": true,
907
+ "location": "WORK",
908
+ "entry": 21,
909
+ "number": "+18686342893",
910
+ "telephone_type": "FIX"
911
+ }
912
+ },
913
+ {
914
+ "model": "directory.telephonecontact",
915
+ "pk": 19,
916
+ "fields": {
917
+ "primary": true,
918
+ "location": "PRIVATE",
919
+ "entry": 22,
920
+ "number": "+3544342136",
921
+ "telephone_type": "FIX"
922
+ }
923
+ },
924
+ {
925
+ "model": "directory.telephonecontact",
926
+ "pk": 20,
927
+ "fields": {
928
+ "primary": true,
929
+ "location": "PRIVATE",
930
+ "entry": 24,
931
+ "number": "+4102179742358",
932
+ "telephone_type": "FIX"
933
+ }
934
+ },
935
+ {
936
+ "model": "directory.telephonecontact",
937
+ "pk": 21,
938
+ "fields": {
939
+ "primary": true,
940
+ "location": "WORK",
941
+ "entry": 33,
942
+ "number": "+6628614512",
943
+ "telephone_type": "FIX"
944
+ }
945
+ },
946
+ {
947
+ "model": "directory.telephonecontact",
948
+ "pk": 22,
949
+ "fields": {
950
+ "primary": true,
951
+ "location": "WORK",
952
+ "entry": 35,
953
+ "number": "+31659045880",
954
+ "telephone_type": "FIX"
955
+ }
956
+ },
957
+ {
958
+ "model": "directory.telephonecontact",
959
+ "pk": 23,
960
+ "fields": {
961
+ "primary": true,
962
+ "location": "WORK",
963
+ "entry": 36,
964
+ "number": "+31659045880",
965
+ "telephone_type": "FIX"
966
+ }
967
+ },
968
+ {
969
+ "model": "directory.telephonecontact",
970
+ "pk": 24,
971
+ "fields": {
972
+ "primary": true,
973
+ "location": "WORK",
974
+ "entry": 38,
975
+ "number": "+120324503761",
976
+ "telephone_type": "FIX"
977
+ }
978
+ },
979
+ {
980
+ "model": "directory.telephonecontact",
981
+ "pk": 25,
982
+ "fields": {
983
+ "primary": true,
984
+ "location": "WORK",
985
+ "entry": 40,
986
+ "number": "+1310675651425",
987
+ "telephone_type": "FIX"
988
+ }
989
+ },
990
+ {
991
+ "model": "directory.telephonecontact",
992
+ "pk": 26,
993
+ "fields": {
994
+ "primary": true,
995
+ "location": "PRIVATE",
996
+ "entry": 8,
997
+ "number": "+18336920531",
998
+ "telephone_type": "FIX"
999
+ }
1000
+ },
1001
+ {
1002
+ "model": "directory.telephonecontact",
1003
+ "pk": 27,
1004
+ "fields": {
1005
+ "primary": true,
1006
+ "location": "PRIVATE",
1007
+ "entry": 37,
1008
+ "number": "+353669695988",
1009
+ "telephone_type": "FIX"
1010
+ }
1011
+ },
1012
+ {
1013
+ "model": "directory.telephonecontact",
1014
+ "pk": 28,
1015
+ "fields": {
1016
+ "primary": true,
1017
+ "location": "PRIVATE",
1018
+ "entry": 23,
1019
+ "number": "+46776165049",
1020
+ "telephone_type": "FIX"
1021
+ }
1022
+ },
1023
+ {
1024
+ "model": "directory.telephonecontact",
1025
+ "pk": 29,
1026
+ "fields": {
1027
+ "primary": true,
1028
+ "location": "PRIVATE",
1029
+ "entry": 42,
1030
+ "number": "+496871612197",
1031
+ "telephone_type": "FIX"
1032
+ }
1033
+ },
1034
+ {
1035
+ "model": "directory.telephonecontact",
1036
+ "pk": 30,
1037
+ "fields": {
1038
+ "primary": true,
1039
+ "location": "PRIVATE",
1040
+ "entry": 1,
1041
+ "number": "+74720311633",
1042
+ "telephone_type": "FIX"
1043
+ }
1044
+ },
1045
+ {
1046
+ "model": "directory.telephonecontact",
1047
+ "pk": 31,
1048
+ "fields": {
1049
+ "primary": true,
1050
+ "location": "PRIVATE",
1051
+ "entry": 44,
1052
+ "number": "+16297877318",
1053
+ "telephone_type": "FIX"
1054
+ }
1055
+ },
1056
+ {
1057
+ "model": "directory.telephonecontact",
1058
+ "pk": 32,
1059
+ "fields": {
1060
+ "primary": true,
1061
+ "location": "PRIVATE",
1062
+ "entry": 30,
1063
+ "number": "+66616515079",
1064
+ "telephone_type": "FIX"
1065
+ }
1066
+ },
1067
+ {
1068
+ "model": "directory.telephonecontact",
1069
+ "pk": 33,
1070
+ "fields": {
1071
+ "primary": true,
1072
+ "location": "PRIVATE",
1073
+ "entry": 31,
1074
+ "number": "+66829411286",
1075
+ "telephone_type": "FIX"
1076
+ }
1077
+ },
1078
+ {
1079
+ "model": "directory.telephonecontact",
1080
+ "pk": 34,
1081
+ "fields": {
1082
+ "primary": true,
1083
+ "location": "PRIVATE",
1084
+ "entry": 45,
1085
+ "number": "+420812603565",
1086
+ "telephone_type": "FIX"
1087
+ }
1088
+ },
1089
+ {
1090
+ "model": "directory.telephonecontact",
1091
+ "pk": 35,
1092
+ "fields": {
1093
+ "primary": true,
1094
+ "location": "PRIVATE",
1095
+ "entry": 47,
1096
+ "number": "+78797391541",
1097
+ "telephone_type": "FIX"
1098
+ }
1099
+ },
1100
+ {
1101
+ "model": "directory.telephonecontact",
1102
+ "pk": 36,
1103
+ "fields": {
1104
+ "primary": true,
1105
+ "location": "PRIVATE",
1106
+ "entry": 39,
1107
+ "number": "+12187821054",
1108
+ "telephone_type": "FIX"
1109
+ }
1110
+ },
1111
+ {
1112
+ "model": "directory.telephonecontact",
1113
+ "pk": 37,
1114
+ "fields": {
1115
+ "primary": true,
1116
+ "location": "PRIVATE",
1117
+ "entry": 41,
1118
+ "number": "+74134927715",
1119
+ "telephone_type": "FIX"
1120
+ }
1121
+ },
1122
+ {
1123
+ "model": "directory.telephonecontact",
1124
+ "pk": 38,
1125
+ "fields": {
1126
+ "primary": true,
1127
+ "location": "PRIVATE",
1128
+ "entry": 48,
1129
+ "number": "+14849077820",
1130
+ "telephone_type": "FIX"
1131
+ }
1132
+ },
1133
+ {
1134
+ "model": "directory.telephonecontact",
1135
+ "pk": 39,
1136
+ "fields": {
1137
+ "primary": true,
1138
+ "location": "PRIVATE",
1139
+ "entry": 32,
1140
+ "number": "+66996443024",
1141
+ "telephone_type": "FIX"
1142
+ }
1143
+ },
1144
+ {
1145
+ "model": "directory.telephonecontact",
1146
+ "pk": 40,
1147
+ "fields": {
1148
+ "primary": true,
1149
+ "location": "PRIVATE",
1150
+ "entry": 43,
1151
+ "number": "+420486508415",
1152
+ "telephone_type": "FIX"
1153
+ }
1154
+ },
1155
+ {
1156
+ "model": "directory.telephonecontact",
1157
+ "pk": 41,
1158
+ "fields": {
1159
+ "primary": true,
1160
+ "location": "PRIVATE",
1161
+ "entry": 27,
1162
+ "number": "+85273030135",
1163
+ "telephone_type": "FIX"
1164
+ }
1165
+ },
1166
+ {
1167
+ "model": "directory.telephonecontact",
1168
+ "pk": 42,
1169
+ "fields": {
1170
+ "primary": true,
1171
+ "location": "PRIVATE",
1172
+ "entry": 26,
1173
+ "number": "+85228952820",
1174
+ "telephone_type": "FIX"
1175
+ }
1176
+ },
1177
+ {
1178
+ "model": "directory.telephonecontact",
1179
+ "pk": 43,
1180
+ "fields": {
1181
+ "primary": true,
1182
+ "location": "PRIVATE",
1183
+ "entry": 25,
1184
+ "number": "+85221027823",
1185
+ "telephone_type": "FIX"
1186
+ }
1187
+ },
1188
+ {
1189
+ "model": "directory.telephonecontact",
1190
+ "pk": 44,
1191
+ "fields": {
1192
+ "primary": true,
1193
+ "location": "PRIVATE",
1194
+ "entry": 29,
1195
+ "number": "+74841496657",
1196
+ "telephone_type": "FIX"
1197
+ }
1198
+ },
1199
+ {
1200
+ "model": "directory.telephonecontact",
1201
+ "pk": 45,
1202
+ "fields": {
1203
+ "primary": true,
1204
+ "location": "WORK",
1205
+ "entry": 16,
1206
+ "number": "+74939323544",
1207
+ "telephone_type": "FIX"
1208
+ }
1209
+ },
1210
+ {
1211
+ "model": "directory.telephonecontact",
1212
+ "pk": 46,
1213
+ "fields": {
1214
+ "primary": true,
1215
+ "location": "WORK",
1216
+ "entry": 19,
1217
+ "number": "+31715257384",
1218
+ "telephone_type": "FIX"
1219
+ }
1220
+ },
1221
+ {
1222
+ "model": "directory.telephonecontact",
1223
+ "pk": 47,
1224
+ "fields": {
1225
+ "primary": false,
1226
+ "location": "PRIVATE",
1227
+ "entry": 37,
1228
+ "number": "+16467485008",
1229
+ "telephone_type": "FIX"
1230
+ }
1231
+ },
1232
+ {
1233
+ "model": "directory.emailcontact",
1234
+ "pk": 1,
1235
+ "fields": {
1236
+ "primary": true,
1237
+ "location": "WORK",
1238
+ "entry": null,
1239
+ "address": "admin@admin.ch"
1240
+ }
1241
+ },
1242
+ {
1243
+ "model": "directory.emailcontact",
1244
+ "pk": 2,
1245
+ "fields": {
1246
+ "primary": true,
1247
+ "location": "WORK",
1248
+ "entry": 8,
1249
+ "address": "admin@admin.ch"
1250
+ }
1251
+ },
1252
+ {
1253
+ "model": "directory.emailcontact",
1254
+ "pk": 3,
1255
+ "fields": {
1256
+ "primary": true,
1257
+ "location": "WORK",
1258
+ "entry": 9,
1259
+ "address": "kaizenit@mail.com"
1260
+ }
1261
+ },
1262
+ {
1263
+ "model": "directory.emailcontact",
1264
+ "pk": 4,
1265
+ "fields": {
1266
+ "primary": true,
1267
+ "location": "WORK",
1268
+ "entry": 10,
1269
+ "address": "like@art.com"
1270
+ }
1271
+ },
1272
+ {
1273
+ "model": "directory.emailcontact",
1274
+ "pk": 5,
1275
+ "fields": {
1276
+ "primary": true,
1277
+ "location": "WORK",
1278
+ "entry": 11,
1279
+ "address": "info@atlantic.com"
1280
+ }
1281
+ },
1282
+ {
1283
+ "model": "directory.emailcontact",
1284
+ "pk": 6,
1285
+ "fields": {
1286
+ "primary": true,
1287
+ "location": "WORK",
1288
+ "entry": 12,
1289
+ "address": "info@outpost.com"
1290
+ }
1291
+ },
1292
+ {
1293
+ "model": "directory.emailcontact",
1294
+ "pk": 7,
1295
+ "fields": {
1296
+ "primary": true,
1297
+ "location": "WORK",
1298
+ "entry": 13,
1299
+ "address": "metro@bank.com"
1300
+ }
1301
+ },
1302
+ {
1303
+ "model": "directory.emailcontact",
1304
+ "pk": 8,
1305
+ "fields": {
1306
+ "primary": true,
1307
+ "location": "WORK",
1308
+ "entry": 14,
1309
+ "address": "help@redwood.com"
1310
+ }
1311
+ },
1312
+ {
1313
+ "model": "directory.emailcontact",
1314
+ "pk": 9,
1315
+ "fields": {
1316
+ "primary": true,
1317
+ "location": "WORK",
1318
+ "entry": 15,
1319
+ "address": "darwin@consultants.com"
1320
+ }
1321
+ },
1322
+ {
1323
+ "model": "directory.emailcontact",
1324
+ "pk": 10,
1325
+ "fields": {
1326
+ "primary": true,
1327
+ "location": "WORK",
1328
+ "entry": 16,
1329
+ "address": "honest@consulting.ru"
1330
+ }
1331
+ },
1332
+ {
1333
+ "model": "directory.emailcontact",
1334
+ "pk": 11,
1335
+ "fields": {
1336
+ "primary": true,
1337
+ "location": "WORK",
1338
+ "entry": 19,
1339
+ "address": "info@lowCountry.com"
1340
+ }
1341
+ },
1342
+ {
1343
+ "model": "directory.emailcontact",
1344
+ "pk": 12,
1345
+ "fields": {
1346
+ "primary": true,
1347
+ "location": "WORK",
1348
+ "entry": 20,
1349
+ "address": "client@partner.ch"
1350
+ }
1351
+ },
1352
+ {
1353
+ "model": "directory.emailcontact",
1354
+ "pk": 13,
1355
+ "fields": {
1356
+ "primary": true,
1357
+ "location": "HOME",
1358
+ "entry": 22,
1359
+ "address": "DoggFridleifsdottir@dayrep.com"
1360
+ }
1361
+ },
1362
+ {
1363
+ "model": "directory.emailcontact",
1364
+ "pk": 14,
1365
+ "fields": {
1366
+ "primary": false,
1367
+ "location": "WORK",
1368
+ "entry": 22,
1369
+ "address": "DFridleifsdottir@atlantic.com"
1370
+ }
1371
+ },
1372
+ {
1373
+ "model": "directory.emailcontact",
1374
+ "pk": 15,
1375
+ "fields": {
1376
+ "primary": true,
1377
+ "location": "PRIVATE",
1378
+ "entry": 24,
1379
+ "address": "GiorgioLucchesi@teleworm.us"
1380
+ }
1381
+ },
1382
+ {
1383
+ "model": "directory.emailcontact",
1384
+ "pk": 16,
1385
+ "fields": {
1386
+ "primary": true,
1387
+ "location": "WORK",
1388
+ "entry": 25,
1389
+ "address": "Yan@consultants.com"
1390
+ }
1391
+ },
1392
+ {
1393
+ "model": "directory.emailcontact",
1394
+ "pk": 17,
1395
+ "fields": {
1396
+ "primary": true,
1397
+ "location": "WORK",
1398
+ "entry": 26,
1399
+ "address": "Bai@consultants.com"
1400
+ }
1401
+ },
1402
+ {
1403
+ "model": "directory.emailcontact",
1404
+ "pk": 18,
1405
+ "fields": {
1406
+ "primary": true,
1407
+ "location": "WORK",
1408
+ "entry": 27,
1409
+ "address": "Xinyi@consultants.com"
1410
+ }
1411
+ },
1412
+ {
1413
+ "model": "directory.emailcontact",
1414
+ "pk": 19,
1415
+ "fields": {
1416
+ "primary": true,
1417
+ "location": "WORK",
1418
+ "entry": 28,
1419
+ "address": "THosein@consulting.ru"
1420
+ }
1421
+ },
1422
+ {
1423
+ "model": "directory.emailcontact",
1424
+ "pk": 20,
1425
+ "fields": {
1426
+ "primary": true,
1427
+ "location": "WORK",
1428
+ "entry": 29,
1429
+ "address": "Mp@consulting.ru"
1430
+ }
1431
+ },
1432
+ {
1433
+ "model": "directory.emailcontact",
1434
+ "pk": 21,
1435
+ "fields": {
1436
+ "primary": true,
1437
+ "location": "WORK",
1438
+ "entry": 30,
1439
+ "address": "Banruerit.Kaizenit@mail.com"
1440
+ }
1441
+ },
1442
+ {
1443
+ "model": "directory.emailcontact",
1444
+ "pk": 22,
1445
+ "fields": {
1446
+ "primary": true,
1447
+ "location": "WORK",
1448
+ "entry": 31,
1449
+ "address": "Ratanarak.kaizenit@mail.com"
1450
+ }
1451
+ },
1452
+ {
1453
+ "model": "directory.emailcontact",
1454
+ "pk": 23,
1455
+ "fields": {
1456
+ "primary": true,
1457
+ "location": "WORK",
1458
+ "entry": 33,
1459
+ "address": "Sangwit.kaizenit@mail.com"
1460
+ }
1461
+ },
1462
+ {
1463
+ "model": "directory.emailcontact",
1464
+ "pk": 24,
1465
+ "fields": {
1466
+ "primary": true,
1467
+ "location": "WORK",
1468
+ "entry": 34,
1469
+ "address": "Kropa.like@art.com"
1470
+ }
1471
+ },
1472
+ {
1473
+ "model": "directory.emailcontact",
1474
+ "pk": 25,
1475
+ "fields": {
1476
+ "primary": true,
1477
+ "location": "WORK",
1478
+ "entry": 35,
1479
+ "address": "Breij@lowCountry.com"
1480
+ }
1481
+ },
1482
+ {
1483
+ "model": "directory.emailcontact",
1484
+ "pk": 26,
1485
+ "fields": {
1486
+ "primary": true,
1487
+ "location": "WORK",
1488
+ "entry": 36,
1489
+ "address": "Broens@lowCountry.com"
1490
+ }
1491
+ },
1492
+ {
1493
+ "model": "directory.emailcontact",
1494
+ "pk": 27,
1495
+ "fields": {
1496
+ "primary": true,
1497
+ "location": "WORK",
1498
+ "entry": 38,
1499
+ "address": "Smorillo.metro@bank.com"
1500
+ }
1501
+ },
1502
+ {
1503
+ "model": "directory.emailcontact",
1504
+ "pk": 28,
1505
+ "fields": {
1506
+ "primary": true,
1507
+ "location": "WORK",
1508
+ "entry": 40,
1509
+ "address": "Soule@redwood.com"
1510
+ }
1511
+ },
1512
+ {
1513
+ "model": "directory.emailcontact",
1514
+ "pk": 29,
1515
+ "fields": {
1516
+ "primary": false,
1517
+ "location": "PRIVATE",
1518
+ "entry": 40,
1519
+ "address": "M.Soule@online.com"
1520
+ }
1521
+ },
1522
+ {
1523
+ "model": "directory.emailcontact",
1524
+ "pk": 30,
1525
+ "fields": {
1526
+ "primary": true,
1527
+ "location": "WORK",
1528
+ "entry": 42,
1529
+ "address": "Beich@uni-hamburg.de"
1530
+ }
1531
+ },
1532
+ {
1533
+ "model": "directory.emailcontact",
1534
+ "pk": 31,
1535
+ "fields": {
1536
+ "primary": true,
1537
+ "location": "WORK",
1538
+ "entry": 43,
1539
+ "address": "Frei@company.com"
1540
+ }
1541
+ },
1542
+ {
1543
+ "model": "directory.emailcontact",
1544
+ "pk": 32,
1545
+ "fields": {
1546
+ "primary": true,
1547
+ "location": "WORK",
1548
+ "entry": 44,
1549
+ "address": "Wirtz@company.com"
1550
+ }
1551
+ },
1552
+ {
1553
+ "model": "directory.emailcontact",
1554
+ "pk": 33,
1555
+ "fields": {
1556
+ "primary": true,
1557
+ "location": "WORK",
1558
+ "entry": 45,
1559
+ "address": "Braaten@company.com"
1560
+ }
1561
+ },
1562
+ {
1563
+ "model": "directory.emailcontact",
1564
+ "pk": 34,
1565
+ "fields": {
1566
+ "primary": true,
1567
+ "location": "WORK",
1568
+ "entry": null,
1569
+ "address": "Overby@company.com"
1570
+ }
1571
+ },
1572
+ {
1573
+ "model": "directory.emailcontact",
1574
+ "pk": 35,
1575
+ "fields": {
1576
+ "primary": false,
1577
+ "location": "WORK",
1578
+ "entry": null,
1579
+ "address": "Overby@company.com"
1580
+ }
1581
+ },
1582
+ {
1583
+ "model": "directory.emailcontact",
1584
+ "pk": 36,
1585
+ "fields": {
1586
+ "primary": true,
1587
+ "location": "WORK",
1588
+ "entry": 47,
1589
+ "address": "Overby@company.com"
1590
+ }
1591
+ },
1592
+ {
1593
+ "model": "directory.emailcontact",
1594
+ "pk": 37,
1595
+ "fields": {
1596
+ "primary": true,
1597
+ "location": "WORK",
1598
+ "entry": 48,
1599
+ "address": "su@stainly.com"
1600
+ }
1601
+ },
1602
+ {
1603
+ "model": "directory.emailcontact",
1604
+ "pk": 38,
1605
+ "fields": {
1606
+ "primary": true,
1607
+ "location": "WORK",
1608
+ "entry": 17,
1609
+ "address": "info@uni-hamburg.de"
1610
+ }
1611
+ },
1612
+ {
1613
+ "model": "directory.emailcontact",
1614
+ "pk": 39,
1615
+ "fields": {
1616
+ "primary": true,
1617
+ "location": "PRIVATE",
1618
+ "entry": 37,
1619
+ "address": "andrew.quinn@mail.co.uk"
1620
+ }
1621
+ },
1622
+ {
1623
+ "model": "directory.emailcontact",
1624
+ "pk": 40,
1625
+ "fields": {
1626
+ "primary": true,
1627
+ "location": "PRIVATE",
1628
+ "entry": 23,
1629
+ "address": "astra@hotmail.com"
1630
+ }
1631
+ },
1632
+ {
1633
+ "model": "directory.websitecontact",
1634
+ "pk": 1,
1635
+ "fields": {
1636
+ "primary": true,
1637
+ "location": "WORK",
1638
+ "entry": 10,
1639
+ "url": "http://www.like-art.cz"
1640
+ }
1641
+ },
1642
+ {
1643
+ "model": "directory.websitecontact",
1644
+ "pk": 2,
1645
+ "fields": {
1646
+ "primary": true,
1647
+ "location": "WORK",
1648
+ "entry": 11,
1649
+ "url": "http://www.atlantic-games.com"
1650
+ }
1651
+ },
1652
+ {
1653
+ "model": "directory.websitecontact",
1654
+ "pk": 3,
1655
+ "fields": {
1656
+ "primary": true,
1657
+ "location": "WORK",
1658
+ "entry": 12,
1659
+ "url": "http://www.outpost-assets.com"
1660
+ }
1661
+ },
1662
+ {
1663
+ "model": "directory.websitecontact",
1664
+ "pk": 4,
1665
+ "fields": {
1666
+ "primary": true,
1667
+ "location": "WORK",
1668
+ "entry": 13,
1669
+ "url": "www.metro-bank.com"
1670
+ }
1671
+ },
1672
+ {
1673
+ "model": "directory.websitecontact",
1674
+ "pk": 5,
1675
+ "fields": {
1676
+ "primary": true,
1677
+ "location": "WORK",
1678
+ "entry": 17,
1679
+ "url": "http://uni-hamburg.de"
1680
+ }
1681
+ },
1682
+ {
1683
+ "model": "directory.websitecontact",
1684
+ "pk": 6,
1685
+ "fields": {
1686
+ "primary": true,
1687
+ "location": "PRIVATE",
1688
+ "entry": 47,
1689
+ "url": "http://over-ole.ru"
1690
+ }
1691
+ },
1692
+ {
1693
+ "model": "directory.websitecontact",
1694
+ "pk": 7,
1695
+ "fields": {
1696
+ "primary": true,
1697
+ "location": "PRIVATE",
1698
+ "entry": 37,
1699
+ "url": "http://andrew-quinn.ie"
1700
+ }
1701
+ },
1702
+ {
1703
+ "model": "directory.websitecontact",
1704
+ "pk": 8,
1705
+ "fields": {
1706
+ "primary": true,
1707
+ "location": "PRIVATE",
1708
+ "entry": 44,
1709
+ "url": "http://juliane-wirtz.com"
1710
+ }
1711
+ },
1712
+ {
1713
+ "model": "directory.relationshiptype",
1714
+ "pk": 1,
1715
+ "fields": {
1716
+ "title": "Friend",
1717
+ "counter_relationship": null,
1718
+ "slugify_title": null
1719
+ }
1720
+ },
1721
+ {
1722
+ "model": "directory.relationshiptype",
1723
+ "pk": 2,
1724
+ "fields": {
1725
+ "title": "Parent",
1726
+ "counter_relationship": null,
1727
+ "slugify_title": null
1728
+ }
1729
+ },
1730
+ {
1731
+ "model": "directory.relationshiptype",
1732
+ "pk": 3,
1733
+ "fields": {
1734
+ "title": "Child",
1735
+ "counter_relationship": 2,
1736
+ "slugify_title": null
1737
+ }
1738
+ },
1739
+ {
1740
+ "model": "directory.relationshiptype",
1741
+ "pk": 4,
1742
+ "fields": {
1743
+ "title": "Business Partner",
1744
+ "counter_relationship": null,
1745
+ "slugify_title": null
1746
+ }
1747
+ },
1748
+ {
1749
+ "model": "directory.relationshiptype",
1750
+ "pk": 5,
1751
+ "fields": {
1752
+ "title": "Brother",
1753
+ "counter_relationship": null,
1754
+ "slugify_title": null
1755
+ }
1756
+ },
1757
+ {
1758
+ "model": "directory.relationshiptype",
1759
+ "pk": 6,
1760
+ "fields": {
1761
+ "title": "Sister",
1762
+ "counter_relationship": null,
1763
+ "slugify_title": null
1764
+ }
1765
+ },
1766
+ {
1767
+ "model": "directory.relationship",
1768
+ "pk": 7,
1769
+ "fields": {
1770
+ "relationship_type": 2,
1771
+ "from_entry": 48,
1772
+ "to_entry": 8
1773
+ }
1774
+ },
1775
+ {
1776
+ "model": "directory.relationship",
1777
+ "pk": 8,
1778
+ "fields": {
1779
+ "relationship_type": 4,
1780
+ "from_entry": 9,
1781
+ "to_entry": 15
1782
+ }
1783
+ },
1784
+ {
1785
+ "model": "directory.relationship",
1786
+ "pk": 9,
1787
+ "fields": {
1788
+ "relationship_type": 5,
1789
+ "from_entry": 40,
1790
+ "to_entry": 41
1791
+ }
1792
+ },
1793
+ {
1794
+ "model": "directory.relationship",
1795
+ "pk": 10,
1796
+ "fields": {
1797
+ "relationship_type": 6,
1798
+ "from_entry": 41,
1799
+ "to_entry": 40
1800
+ }
1801
+ },
1802
+ {
1803
+ "model": "directory.clientmanagerrelationship",
1804
+ "pk": 1,
1805
+ "fields": {
1806
+ "relationship_manager": 43,
1807
+ "primary": true,
1808
+ "client": 23,
1809
+ "status": "APPROVED",
1810
+ "created": "2021-09-30T11:24:17.422Z"
1811
+ }
1812
+ },
1813
+ {
1814
+ "model": "directory.clientmanagerrelationship",
1815
+ "pk": 2,
1816
+ "fields": {
1817
+ "relationship_manager": 43,
1818
+ "primary": true,
1819
+ "client": 25,
1820
+ "status": "APPROVED",
1821
+ "created": "2021-09-30T11:24:17.422Z"
1822
+ }
1823
+ },
1824
+ {
1825
+ "model": "directory.clientmanagerrelationship",
1826
+ "pk": 3,
1827
+ "fields": {
1828
+ "relationship_manager": 45,
1829
+ "primary": true,
1830
+ "client": 28,
1831
+ "status": "PENDINGADD",
1832
+ "created": "2021-09-30T11:24:17.422Z"
1833
+ }
1834
+ },
1835
+ {
1836
+ "model": "directory.clientmanagerrelationship",
1837
+ "pk": 4,
1838
+ "fields": {
1839
+ "relationship_manager": 44,
1840
+ "primary": false,
1841
+ "client": 35,
1842
+ "status": "PENDINGADD",
1843
+ "created": "2021-09-30T11:24:17.422Z"
1844
+ }
1845
+ },
1846
+ {
1847
+ "model": "directory.clientmanagerrelationship",
1848
+ "pk": 5,
1849
+ "fields": {
1850
+ "relationship_manager": 44,
1851
+ "primary": false,
1852
+ "client": 36,
1853
+ "status": "PENDINGREMOVE",
1854
+ "created": "2021-09-30T11:24:17.422Z"
1855
+ }
1856
+ },
1857
+ {
1858
+ "model": "directory.clientmanagerrelationship",
1859
+ "pk": 6,
1860
+ "fields": {
1861
+ "relationship_manager": 45,
1862
+ "primary": true,
1863
+ "client": 37,
1864
+ "status": "DRAFT",
1865
+ "created": "2021-09-30T11:24:17.422Z"
1866
+ }
1867
+ },
1868
+ {
1869
+ "model": "directory.clientmanagerrelationship",
1870
+ "pk": 7,
1871
+ "fields": {
1872
+ "relationship_manager": 44,
1873
+ "primary": false,
1874
+ "client": 38,
1875
+ "status": "DRAFT",
1876
+ "created": "2021-09-30T11:24:17.422Z"
1877
+ }
1878
+ },
1879
+ {
1880
+ "model": "directory.clientmanagerrelationship",
1881
+ "pk": 8,
1882
+ "fields": {
1883
+ "relationship_manager": 45,
1884
+ "primary": true,
1885
+ "client": 40,
1886
+ "status": "REMOVED",
1887
+ "created": "2021-09-30T11:24:17.422Z"
1888
+ }
1889
+ },
1890
+ {
1891
+ "model": "directory.clientmanagerrelationship",
1892
+ "pk": 9,
1893
+ "fields": {
1894
+ "relationship_manager": 47,
1895
+ "primary": true,
1896
+ "client": 42,
1897
+ "status": "PENDINGADD",
1898
+ "created": "2021-09-30T11:24:17.422Z"
1899
+ }
1900
+ },
1901
+ {
1902
+ "model": "directory.clientmanagerrelationship",
1903
+ "pk": 10,
1904
+ "fields": {
1905
+ "relationship_manager": 25,
1906
+ "primary": true,
1907
+ "client": 10,
1908
+ "status": "APPROVED",
1909
+ "created": "2021-09-30T11:24:17.422Z"
1910
+ }
1911
+ },
1912
+ {
1913
+ "model": "directory.clientmanagerrelationship",
1914
+ "pk": 11,
1915
+ "fields": {
1916
+ "relationship_manager": 27,
1917
+ "primary": true,
1918
+ "client": 11,
1919
+ "status": "APPROVED",
1920
+ "created": "2021-09-30T11:24:17.422Z"
1921
+ }
1922
+ },
1923
+ {
1924
+ "model": "directory.clientmanagerrelationship",
1925
+ "pk": 12,
1926
+ "fields": {
1927
+ "relationship_manager": 28,
1928
+ "primary": true,
1929
+ "client": 12,
1930
+ "status": "APPROVED",
1931
+ "created": "2021-09-30T11:24:17.422Z"
1932
+ }
1933
+ },
1934
+ {
1935
+ "model": "directory.clientmanagerrelationship",
1936
+ "pk": 13,
1937
+ "fields": {
1938
+ "relationship_manager": 29,
1939
+ "primary": true,
1940
+ "client": 13,
1941
+ "status": "APPROVED",
1942
+ "created": "2021-09-30T11:24:17.422Z"
1943
+ }
1944
+ },
1945
+ {
1946
+ "model": "directory.clientmanagerrelationship",
1947
+ "pk": 14,
1948
+ "fields": {
1949
+ "relationship_manager": 30,
1950
+ "primary": true,
1951
+ "client": 14,
1952
+ "status": "APPROVED",
1953
+ "created": "2021-09-30T11:24:17.422Z"
1954
+ }
1955
+ },
1956
+ {
1957
+ "model": "directory.clientmanagerrelationship",
1958
+ "pk": 15,
1959
+ "fields": {
1960
+ "relationship_manager": 31,
1961
+ "primary": true,
1962
+ "client": 15,
1963
+ "status": "APPROVED",
1964
+ "created": "2021-09-30T11:24:17.422Z"
1965
+ }
1966
+ },
1967
+ {
1968
+ "model": "directory.clientmanagerrelationship",
1969
+ "pk": 16,
1970
+ "fields": {
1971
+ "relationship_manager": 32,
1972
+ "primary": true,
1973
+ "client": 16,
1974
+ "status": "APPROVED",
1975
+ "created": "2021-09-30T11:24:17.422Z"
1976
+ }
1977
+ },
1978
+ {
1979
+ "model": "directory.clientmanagerrelationship",
1980
+ "pk": 17,
1981
+ "fields": {
1982
+ "relationship_manager": 33,
1983
+ "primary": true,
1984
+ "client": 17,
1985
+ "status": "APPROVED",
1986
+ "created": "2021-09-30T11:24:17.422Z"
1987
+ }
1988
+ },
1989
+ {
1990
+ "model": "directory.clientmanagerrelationship",
1991
+ "pk": 18,
1992
+ "fields": {
1993
+ "relationship_manager": 34,
1994
+ "primary": true,
1995
+ "client": 18,
1996
+ "status": "APPROVED",
1997
+ "created": "2021-09-30T11:24:17.422Z"
1998
+ }
1999
+ },
2000
+ {
2001
+ "model": "directory.clientmanagerrelationship",
2002
+ "pk": 20,
2003
+ "fields": {
2004
+ "relationship_manager": 37,
2005
+ "primary": true,
2006
+ "client": 21,
2007
+ "status": "APPROVED",
2008
+ "created": "2021-09-30T11:24:17.422Z"
2009
+ }
2010
+ },
2011
+ {
2012
+ "model": "directory.clientmanagerrelationship",
2013
+ "pk": 21,
2014
+ "fields": {
2015
+ "relationship_manager": 22,
2016
+ "primary": false,
2017
+ "client": 21,
2018
+ "status": "PENDINGADD",
2019
+ "created": "2021-09-30T11:24:17.422Z"
2020
+ }
2021
+ },
2022
+ {
2023
+ "model": "directory.clientmanagerrelationship",
2024
+ "pk": 22,
2025
+ "fields": {
2026
+ "relationship_manager": 8,
2027
+ "primary": false,
2028
+ "client": 48,
2029
+ "status": "APPROVED",
2030
+ "created": "2021-09-30T11:24:17.422Z"
2031
+ }
2032
+ },
2033
+ {
2034
+ "model": "directory.clientmanagerrelationship",
2035
+ "pk": 23,
2036
+ "fields": {
2037
+ "relationship_manager": 31,
2038
+ "primary": true,
2039
+ "client": 36,
2040
+ "status": "APPROVED",
2041
+ "created": "2021-09-30T11:24:17.422Z"
2042
+ }
2043
+ },
2044
+ {
2045
+ "model": "directory.clientmanagerrelationship",
2046
+ "pk": 24,
2047
+ "fields": {
2048
+ "relationship_manager": 30,
2049
+ "primary": false,
2050
+ "client": 36,
2051
+ "status": "APPROVED",
2052
+ "created": "2021-09-30T11:24:17.422Z"
2053
+ }
2054
+ },
2055
+ {
2056
+ "model": "directory.clientmanagerrelationship",
2057
+ "pk": 25,
2058
+ "fields": {
2059
+ "relationship_manager": 30,
2060
+ "primary": true,
2061
+ "client": 35,
2062
+ "status": "APPROVED",
2063
+ "created": "2021-09-30T11:24:17.422Z"
2064
+ }
2065
+ },
2066
+ {
2067
+ "model": "directory.clientmanagerrelationship",
2068
+ "pk": 26,
2069
+ "fields": {
2070
+ "relationship_manager": 22,
2071
+ "primary": true,
2072
+ "client": 38,
2073
+ "status": "APPROVED",
2074
+ "created": "2021-09-30T11:24:17.422Z"
2075
+ }
2076
+ },
2077
+ {
2078
+ "model": "directory.clientmanagerrelationship",
2079
+ "pk": 27,
2080
+ "fields": {
2081
+ "relationship_manager": 32,
2082
+ "primary": true,
2083
+ "client": 26,
2084
+ "status": "APPROVED",
2085
+ "created": "2021-09-30T11:24:17.422Z"
2086
+ }
2087
+ },
2088
+ {
2089
+ "model": "directory.clientmanagerrelationship",
2090
+ "pk": 28,
2091
+ "fields": {
2092
+ "relationship_manager": 48,
2093
+ "primary": false,
2094
+ "client": 40,
2095
+ "status": "APPROVED",
2096
+ "created": "2021-09-30T11:24:17.422Z"
2097
+ }
2098
+ },
2099
+ {
2100
+ "model": "directory.employeremployeerelationship",
2101
+ "pk": 1,
2102
+ "fields": {
2103
+ "employee": 22,
2104
+ "primary": true,
2105
+ "position": 1,
2106
+ "employer": 11
2107
+ }
2108
+ },
2109
+ {
2110
+ "model": "directory.employeremployeerelationship",
2111
+ "pk": 2,
2112
+ "fields": {
2113
+ "employee": 23,
2114
+ "primary": true,
2115
+ "position": 2,
2116
+ "employer": 11
2117
+ }
2118
+ },
2119
+ {
2120
+ "model": "directory.employeremployeerelationship",
2121
+ "pk": 3,
2122
+ "fields": {
2123
+ "employee": 24,
2124
+ "primary": true,
2125
+ "position": 3,
2126
+ "employer": 20
2127
+ }
2128
+ },
2129
+ {
2130
+ "model": "directory.employeremployeerelationship",
2131
+ "pk": 4,
2132
+ "fields": {
2133
+ "employee": 25,
2134
+ "primary": true,
2135
+ "position": 4,
2136
+ "employer": 15
2137
+ }
2138
+ },
2139
+ {
2140
+ "model": "directory.employeremployeerelationship",
2141
+ "pk": 5,
2142
+ "fields": {
2143
+ "employee": 26,
2144
+ "primary": true,
2145
+ "position": 5,
2146
+ "employer": 15
2147
+ }
2148
+ },
2149
+ {
2150
+ "model": "directory.employeremployeerelationship",
2151
+ "pk": 6,
2152
+ "fields": {
2153
+ "employee": 27,
2154
+ "primary": true,
2155
+ "position": 2,
2156
+ "employer": 15
2157
+ }
2158
+ },
2159
+ {
2160
+ "model": "directory.employeremployeerelationship",
2161
+ "pk": 7,
2162
+ "fields": {
2163
+ "employee": 28,
2164
+ "primary": true,
2165
+ "position": 3,
2166
+ "employer": 16
2167
+ }
2168
+ },
2169
+ {
2170
+ "model": "directory.employeremployeerelationship",
2171
+ "pk": 8,
2172
+ "fields": {
2173
+ "employee": 28,
2174
+ "primary": false,
2175
+ "position": 5,
2176
+ "employer": 21
2177
+ }
2178
+ },
2179
+ {
2180
+ "model": "directory.employeremployeerelationship",
2181
+ "pk": 9,
2182
+ "fields": {
2183
+ "employee": 29,
2184
+ "primary": true,
2185
+ "position": 4,
2186
+ "employer": 16
2187
+ }
2188
+ },
2189
+ {
2190
+ "model": "directory.employeremployeerelationship",
2191
+ "pk": 10,
2192
+ "fields": {
2193
+ "employee": 30,
2194
+ "primary": true,
2195
+ "position": 2,
2196
+ "employer": 9
2197
+ }
2198
+ },
2199
+ {
2200
+ "model": "directory.employeremployeerelationship",
2201
+ "pk": 11,
2202
+ "fields": {
2203
+ "employee": 31,
2204
+ "primary": true,
2205
+ "position": 1,
2206
+ "employer": 9
2207
+ }
2208
+ },
2209
+ {
2210
+ "model": "directory.employeremployeerelationship",
2211
+ "pk": 12,
2212
+ "fields": {
2213
+ "employee": 32,
2214
+ "primary": true,
2215
+ "position": 3,
2216
+ "employer": 9
2217
+ }
2218
+ },
2219
+ {
2220
+ "model": "directory.employeremployeerelationship",
2221
+ "pk": 13,
2222
+ "fields": {
2223
+ "employee": 33,
2224
+ "primary": true,
2225
+ "position": 3,
2226
+ "employer": 9
2227
+ }
2228
+ },
2229
+ {
2230
+ "model": "directory.employeremployeerelationship",
2231
+ "pk": 14,
2232
+ "fields": {
2233
+ "employee": 34,
2234
+ "primary": true,
2235
+ "position": 1,
2236
+ "employer": 10
2237
+ }
2238
+ },
2239
+ {
2240
+ "model": "directory.employeremployeerelationship",
2241
+ "pk": 15,
2242
+ "fields": {
2243
+ "employee": 35,
2244
+ "primary": true,
2245
+ "position": 2,
2246
+ "employer": 19
2247
+ }
2248
+ },
2249
+ {
2250
+ "model": "directory.employeremployeerelationship",
2251
+ "pk": 16,
2252
+ "fields": {
2253
+ "employee": 36,
2254
+ "primary": true,
2255
+ "position": 5,
2256
+ "employer": 19
2257
+ }
2258
+ },
2259
+ {
2260
+ "model": "directory.employeremployeerelationship",
2261
+ "pk": 17,
2262
+ "fields": {
2263
+ "employee": 37,
2264
+ "primary": true,
2265
+ "position": 3,
2266
+ "employer": 18
2267
+ }
2268
+ },
2269
+ {
2270
+ "model": "directory.employeremployeerelationship",
2271
+ "pk": 19,
2272
+ "fields": {
2273
+ "employee": 39,
2274
+ "primary": true,
2275
+ "position": 2,
2276
+ "employer": 12
2277
+ }
2278
+ },
2279
+ {
2280
+ "model": "directory.employeremployeerelationship",
2281
+ "pk": 20,
2282
+ "fields": {
2283
+ "employee": 40,
2284
+ "primary": true,
2285
+ "position": 2,
2286
+ "employer": 14
2287
+ }
2288
+ },
2289
+ {
2290
+ "model": "directory.employeremployeerelationship",
2291
+ "pk": 21,
2292
+ "fields": {
2293
+ "employee": 42,
2294
+ "primary": true,
2295
+ "position": 3,
2296
+ "employer": 17
2297
+ }
2298
+ },
2299
+ {
2300
+ "model": "directory.employeremployeerelationship",
2301
+ "pk": 22,
2302
+ "fields": {
2303
+ "employee": 44,
2304
+ "primary": true,
2305
+ "position": 1,
2306
+ "employer": 14
2307
+ }
2308
+ },
2309
+ {
2310
+ "model": "directory.employeremployeerelationship",
2311
+ "pk": 23,
2312
+ "fields": {
2313
+ "employee": 8,
2314
+ "primary": true,
2315
+ "position": 5,
2316
+ "employer": 9
2317
+ }
2318
+ },
2319
+ {
2320
+ "model": "directory.employeremployeerelationship",
2321
+ "pk": 24,
2322
+ "fields": {
2323
+ "employee": 1,
2324
+ "primary": true,
2325
+ "position": 4,
2326
+ "employer": 18
2327
+ }
2328
+ },
2329
+ {
2330
+ "model": "directory.employeremployeerelationship",
2331
+ "pk": 25,
2332
+ "fields": {
2333
+ "employee": 45,
2334
+ "primary": true,
2335
+ "position": 1,
2336
+ "employer": 10
2337
+ }
2338
+ },
2339
+ {
2340
+ "model": "directory.employeremployeerelationship",
2341
+ "pk": 26,
2342
+ "fields": {
2343
+ "employee": 47,
2344
+ "primary": true,
2345
+ "position": 3,
2346
+ "employer": 16
2347
+ }
2348
+ },
2349
+ {
2350
+ "model": "directory.employeremployeerelationship",
2351
+ "pk": 27,
2352
+ "fields": {
2353
+ "employee": 38,
2354
+ "primary": true,
2355
+ "position": null,
2356
+ "employer": 21
2357
+ }
2358
+ },
2359
+ {
2360
+ "model": "directory.employeremployeerelationship",
2361
+ "pk": 29,
2362
+ "fields": {
2363
+ "employee": 41,
2364
+ "primary": true,
2365
+ "position": 4,
2366
+ "employer": 16
2367
+ }
2368
+ },
2369
+ {
2370
+ "model": "directory.employeremployeerelationship",
2371
+ "pk": 30,
2372
+ "fields": {
2373
+ "employee": 43,
2374
+ "primary": true,
2375
+ "position": 5,
2376
+ "employer": 10
2377
+ }
2378
+ },
2379
+ {
2380
+ "model": "directory.employeremployeerelationship",
2381
+ "pk": 31,
2382
+ "fields": {
2383
+ "employee": 42,
2384
+ "primary": false,
2385
+ "position": 2,
2386
+ "employer": 14
2387
+ }
2388
+ },
2389
+ {
2390
+ "model": "directory.entry",
2391
+ "pk": 1,
2392
+ "fields": {
2393
+ "computed_str": "Invisible User (Marshall Fund)",
2394
+ "is_active": true,
2395
+ "deletion_datetime": null,
2396
+ "uuid": "b45533f8-ca97-4d66-81cc-ed6d0ddd4fb7",
2397
+ "entry_type": "Person",
2398
+ "additional_fields": {},
2399
+ "activity_heat": 0.0,
2400
+ "slugify_computed_str": "invisible user marshall fund",
2401
+ "profile_image": "",
2402
+ "signature": ""
2403
+ }
2404
+ },
2405
+ {
2406
+ "model": "directory.entry",
2407
+ "pk": 8,
2408
+ "fields": {
2409
+ "computed_str": "admin admin (Kaizen IT)",
2410
+ "is_active": true,
2411
+ "deletion_datetime": null,
2412
+ "uuid": "16fb2ca5-9da3-4d7e-990e-c566bd35b012",
2413
+ "entry_type": "Person",
2414
+ "additional_fields": {},
2415
+ "activity_heat": 0.0,
2416
+ "slugify_computed_str": "admin admin kaizen it",
2417
+ "profile_image": "",
2418
+ "signature": ""
2419
+ }
2420
+ },
2421
+ {
2422
+ "model": "directory.entry",
2423
+ "pk": 9,
2424
+ "fields": {
2425
+ "computed_str": "Kaizen IT",
2426
+ "is_active": true,
2427
+ "deletion_datetime": null,
2428
+ "uuid": "1d2a291e-0a41-433f-ab82-21506d0b988d",
2429
+ "entry_type": "Company",
2430
+ "additional_fields": {},
2431
+ "activity_heat": 0.0,
2432
+ "slugify_computed_str": "kaizen it",
2433
+ "profile_image": "",
2434
+ "signature": ""
2435
+ }
2436
+ },
2437
+ {
2438
+ "model": "directory.entry",
2439
+ "pk": 10,
2440
+ "fields": {
2441
+ "computed_str": "Like Art",
2442
+ "is_active": true,
2443
+ "deletion_datetime": null,
2444
+ "uuid": "f785591c-dbaa-417f-bea9-c1fa4b8951e7",
2445
+ "entry_type": "Company",
2446
+ "additional_fields": {},
2447
+ "activity_heat": 1.0,
2448
+ "slugify_computed_str": "like art",
2449
+ "profile_image": "",
2450
+ "signature": ""
2451
+ }
2452
+ },
2453
+ {
2454
+ "model": "directory.entry",
2455
+ "pk": 11,
2456
+ "fields": {
2457
+ "computed_str": "Atlantic Games",
2458
+ "is_active": true,
2459
+ "deletion_datetime": null,
2460
+ "uuid": "147a46c8-2d5f-4b02-b226-ba258f7fd822",
2461
+ "entry_type": "Company",
2462
+ "additional_fields": {},
2463
+ "activity_heat": 0.1,
2464
+ "slugify_computed_str": "atlantic games",
2465
+ "profile_image": "",
2466
+ "signature": ""
2467
+ }
2468
+ },
2469
+ {
2470
+ "model": "directory.entry",
2471
+ "pk": 12,
2472
+ "fields": {
2473
+ "computed_str": "Outpost Asset Management",
2474
+ "is_active": true,
2475
+ "deletion_datetime": null,
2476
+ "uuid": "a796142e-aa7f-478f-a2bc-fed5513dc2d6",
2477
+ "entry_type": "Company",
2478
+ "additional_fields": {},
2479
+ "activity_heat": 0.4,
2480
+ "slugify_computed_str": "outpost asset management",
2481
+ "profile_image": "",
2482
+ "signature": ""
2483
+ }
2484
+ },
2485
+ {
2486
+ "model": "directory.entry",
2487
+ "pk": 13,
2488
+ "fields": {
2489
+ "computed_str": "Metro Bank",
2490
+ "is_active": true,
2491
+ "deletion_datetime": null,
2492
+ "uuid": "4b157ca7-1a8d-4b75-8583-6acbf1a3421c",
2493
+ "entry_type": "Company",
2494
+ "additional_fields": {},
2495
+ "activity_heat": 0.0,
2496
+ "slugify_computed_str": "metro bank",
2497
+ "profile_image": "",
2498
+ "signature": ""
2499
+ }
2500
+ },
2501
+ {
2502
+ "model": "directory.entry",
2503
+ "pk": 14,
2504
+ "fields": {
2505
+ "computed_str": "Redwood Bank",
2506
+ "is_active": true,
2507
+ "deletion_datetime": null,
2508
+ "uuid": "33e1763d-bb0b-46ae-a4a2-340c1dd2e301",
2509
+ "entry_type": "Company",
2510
+ "additional_fields": {},
2511
+ "activity_heat": 0.9,
2512
+ "slugify_computed_str": "redwood bank",
2513
+ "profile_image": "",
2514
+ "signature": ""
2515
+ }
2516
+ },
2517
+ {
2518
+ "model": "directory.entry",
2519
+ "pk": 15,
2520
+ "fields": {
2521
+ "computed_str": "Darwin Consultants",
2522
+ "is_active": true,
2523
+ "deletion_datetime": null,
2524
+ "uuid": "5f474000-559d-48ed-81ef-9a05d36b3d9a",
2525
+ "entry_type": "Company",
2526
+ "additional_fields": {},
2527
+ "activity_heat": 0.0,
2528
+ "slugify_computed_str": "darwin consultants",
2529
+ "profile_image": "",
2530
+ "signature": ""
2531
+ }
2532
+ },
2533
+ {
2534
+ "model": "directory.entry",
2535
+ "pk": 16,
2536
+ "fields": {
2537
+ "computed_str": "Honest Consulting",
2538
+ "is_active": true,
2539
+ "deletion_datetime": null,
2540
+ "uuid": "c90e06db-793f-449e-9581-4e5af871e655",
2541
+ "entry_type": "Company",
2542
+ "additional_fields": {},
2543
+ "activity_heat": 0.5,
2544
+ "slugify_computed_str": "honest consulting",
2545
+ "profile_image": "",
2546
+ "signature": ""
2547
+ }
2548
+ },
2549
+ {
2550
+ "model": "directory.entry",
2551
+ "pk": 17,
2552
+ "fields": {
2553
+ "computed_str": "Universtität Hamburg",
2554
+ "is_active": true,
2555
+ "deletion_datetime": null,
2556
+ "uuid": "4322a324-cc2b-400f-8719-0839ca582911",
2557
+ "entry_type": "Company",
2558
+ "additional_fields": {},
2559
+ "activity_heat": 0.0,
2560
+ "slugify_computed_str": "universtitat hamburg",
2561
+ "profile_image": "",
2562
+ "signature": ""
2563
+ }
2564
+ },
2565
+ {
2566
+ "model": "directory.entry",
2567
+ "pk": 18,
2568
+ "fields": {
2569
+ "computed_str": "Marshall Fund",
2570
+ "is_active": true,
2571
+ "deletion_datetime": null,
2572
+ "uuid": "29d96eb1-c63d-4daf-b9c0-92963ea2287b",
2573
+ "entry_type": "Company",
2574
+ "additional_fields": {},
2575
+ "activity_heat": 1.0,
2576
+ "slugify_computed_str": "marshall fund",
2577
+ "profile_image": "",
2578
+ "signature": ""
2579
+ }
2580
+ },
2581
+ {
2582
+ "model": "directory.entry",
2583
+ "pk": 19,
2584
+ "fields": {
2585
+ "computed_str": "LowCountry Bank",
2586
+ "is_active": true,
2587
+ "deletion_datetime": null,
2588
+ "uuid": "dbc4d494-9197-4829-9a3c-a8be49f587c9",
2589
+ "entry_type": "Company",
2590
+ "additional_fields": {},
2591
+ "activity_heat": 0.0,
2592
+ "slugify_computed_str": "lowcountry bank",
2593
+ "profile_image": "",
2594
+ "signature": ""
2595
+ }
2596
+ },
2597
+ {
2598
+ "model": "directory.entry",
2599
+ "pk": 20,
2600
+ "fields": {
2601
+ "computed_str": "Client Partner",
2602
+ "is_active": true,
2603
+ "deletion_datetime": null,
2604
+ "uuid": "32c4efe2-c012-45e8-8993-eb5853d32c97",
2605
+ "entry_type": "Company",
2606
+ "additional_fields": {},
2607
+ "activity_heat": 0.8,
2608
+ "slugify_computed_str": "client partner",
2609
+ "profile_image": "",
2610
+ "signature": ""
2611
+ }
2612
+ },
2613
+ {
2614
+ "model": "directory.entry",
2615
+ "pk": 21,
2616
+ "fields": {
2617
+ "computed_str": "Dollar Care",
2618
+ "is_active": true,
2619
+ "deletion_datetime": null,
2620
+ "uuid": "f7cbc779-3255-4434-9ffa-e67d15054fca",
2621
+ "entry_type": "Company",
2622
+ "additional_fields": {},
2623
+ "activity_heat": 0.0,
2624
+ "slugify_computed_str": "dollar care",
2625
+ "profile_image": "",
2626
+ "signature": ""
2627
+ }
2628
+ },
2629
+ {
2630
+ "model": "directory.entry",
2631
+ "pk": 22,
2632
+ "fields": {
2633
+ "computed_str": "Dögg Friðleifsdóttir (Atlantic Games)",
2634
+ "is_active": true,
2635
+ "deletion_datetime": null,
2636
+ "uuid": "d2a589e8-ce3a-4b1f-9e20-70853df6561d",
2637
+ "entry_type": "Person",
2638
+ "additional_fields": {},
2639
+ "activity_heat": 1.0,
2640
+ "slugify_computed_str": "dogg fridleifsdottir atlantic games",
2641
+ "profile_image": "",
2642
+ "signature": ""
2643
+ }
2644
+ },
2645
+ {
2646
+ "model": "directory.entry",
2647
+ "pk": 23,
2648
+ "fields": {
2649
+ "computed_str": "Ástráður Samúelsson (Atlantic Games)",
2650
+ "is_active": true,
2651
+ "deletion_datetime": null,
2652
+ "uuid": "fffc8bbb-2872-40d4-a18d-427091257411",
2653
+ "entry_type": "Person",
2654
+ "additional_fields": {},
2655
+ "activity_heat": 0.6,
2656
+ "slugify_computed_str": "astradur samuelsson atlantic games",
2657
+ "profile_image": "",
2658
+ "signature": ""
2659
+ }
2660
+ },
2661
+ {
2662
+ "model": "directory.entry",
2663
+ "pk": 24,
2664
+ "fields": {
2665
+ "computed_str": "Giorgio Lucchesi (Client Partner)",
2666
+ "is_active": true,
2667
+ "deletion_datetime": null,
2668
+ "uuid": "4c110567-0c2c-4a1f-8a33-19fea49a2576",
2669
+ "entry_type": "Person",
2670
+ "additional_fields": {},
2671
+ "activity_heat": 0.5,
2672
+ "slugify_computed_str": "giorgio lucchesi client partner",
2673
+ "profile_image": "",
2674
+ "signature": ""
2675
+ }
2676
+ },
2677
+ {
2678
+ "model": "directory.entry",
2679
+ "pk": 25,
2680
+ "fields": {
2681
+ "computed_str": "Yan Shen (Darwin Consultants)",
2682
+ "is_active": true,
2683
+ "deletion_datetime": null,
2684
+ "uuid": "d9d067c6-9df8-4483-be53-cd8977c76816",
2685
+ "entry_type": "Person",
2686
+ "additional_fields": {},
2687
+ "activity_heat": 0.25,
2688
+ "slugify_computed_str": "yan shen darwin consultants",
2689
+ "profile_image": "",
2690
+ "signature": ""
2691
+ }
2692
+ },
2693
+ {
2694
+ "model": "directory.entry",
2695
+ "pk": 26,
2696
+ "fields": {
2697
+ "computed_str": "Xue Bai (Darwin Consultants)",
2698
+ "is_active": true,
2699
+ "deletion_datetime": null,
2700
+ "uuid": "70ee33d0-58e8-4de5-ac5d-5022db53c22c",
2701
+ "entry_type": "Person",
2702
+ "additional_fields": {},
2703
+ "activity_heat": 1.0,
2704
+ "slugify_computed_str": "xue bai darwin consultants",
2705
+ "profile_image": "",
2706
+ "signature": ""
2707
+ }
2708
+ },
2709
+ {
2710
+ "model": "directory.entry",
2711
+ "pk": 27,
2712
+ "fields": {
2713
+ "computed_str": "Xinyi Xiong (Darwin Consultants)",
2714
+ "is_active": true,
2715
+ "deletion_datetime": null,
2716
+ "uuid": "b1410ee0-2314-43f9-a648-294bb780b2c6",
2717
+ "entry_type": "Person",
2718
+ "additional_fields": {},
2719
+ "activity_heat": 0.0,
2720
+ "slugify_computed_str": "xinyi xiong darwin consultants",
2721
+ "profile_image": "",
2722
+ "signature": ""
2723
+ }
2724
+ },
2725
+ {
2726
+ "model": "directory.entry",
2727
+ "pk": 28,
2728
+ "fields": {
2729
+ "computed_str": "Terrell Hosein (Honest Consulting)",
2730
+ "is_active": true,
2731
+ "deletion_datetime": null,
2732
+ "uuid": "eff21374-8cbe-45d0-98c4-c10a708bb063",
2733
+ "entry_type": "Person",
2734
+ "additional_fields": {},
2735
+ "activity_heat": 1.0,
2736
+ "slugify_computed_str": "terrell hosein honest consulting",
2737
+ "profile_image": "",
2738
+ "signature": ""
2739
+ }
2740
+ },
2741
+ {
2742
+ "model": "directory.entry",
2743
+ "pk": 29,
2744
+ "fields": {
2745
+ "computed_str": "Шишкин Мп (Honest Consulting)",
2746
+ "is_active": true,
2747
+ "deletion_datetime": null,
2748
+ "uuid": "32380e67-3de3-4f09-9b16-618e50da532a",
2749
+ "entry_type": "Person",
2750
+ "additional_fields": {},
2751
+ "activity_heat": 0.4,
2752
+ "slugify_computed_str": "shishkin mp honest consulting",
2753
+ "profile_image": "",
2754
+ "signature": ""
2755
+ }
2756
+ },
2757
+ {
2758
+ "model": "directory.entry",
2759
+ "pk": 30,
2760
+ "fields": {
2761
+ "computed_str": "Kasin Banruerit (Kaizen IT)",
2762
+ "is_active": true,
2763
+ "deletion_datetime": null,
2764
+ "uuid": "424db57e-8285-4ab4-9de8-9b5d0dc928d2",
2765
+ "entry_type": "Person",
2766
+ "additional_fields": {},
2767
+ "activity_heat": 0.35,
2768
+ "slugify_computed_str": "kasin banruerit kaizen it",
2769
+ "profile_image": "",
2770
+ "signature": ""
2771
+ }
2772
+ },
2773
+ {
2774
+ "model": "directory.entry",
2775
+ "pk": 31,
2776
+ "fields": {
2777
+ "computed_str": "Mayuree Ratanarak (Kaizen IT)",
2778
+ "is_active": true,
2779
+ "deletion_datetime": null,
2780
+ "uuid": "32fbabb3-30ce-4ea9-9538-df4a042fdc17",
2781
+ "entry_type": "Person",
2782
+ "additional_fields": {},
2783
+ "activity_heat": 0.0,
2784
+ "slugify_computed_str": "mayuree ratanarak kaizen it",
2785
+ "profile_image": "",
2786
+ "signature": ""
2787
+ }
2788
+ },
2789
+ {
2790
+ "model": "directory.entry",
2791
+ "pk": 32,
2792
+ "fields": {
2793
+ "computed_str": "Thailah Saenamuang (Kaizen IT)",
2794
+ "is_active": true,
2795
+ "deletion_datetime": null,
2796
+ "uuid": "c363dc88-6a1d-45a9-895f-70eebe0d4f56",
2797
+ "entry_type": "Person",
2798
+ "additional_fields": {},
2799
+ "activity_heat": 0.0,
2800
+ "slugify_computed_str": "thailah saenamuang kaizen it",
2801
+ "profile_image": "",
2802
+ "signature": ""
2803
+ }
2804
+ },
2805
+ {
2806
+ "model": "directory.entry",
2807
+ "pk": 33,
2808
+ "fields": {
2809
+ "computed_str": "Parun Sangwit (Kaizen IT)",
2810
+ "is_active": true,
2811
+ "deletion_datetime": null,
2812
+ "uuid": "5da13879-ae86-4204-ac78-349c023f1ccd",
2813
+ "entry_type": "Person",
2814
+ "additional_fields": {},
2815
+ "activity_heat": 0.8,
2816
+ "slugify_computed_str": "parun sangwit kaizen it",
2817
+ "profile_image": "",
2818
+ "signature": ""
2819
+ }
2820
+ },
2821
+ {
2822
+ "model": "directory.entry",
2823
+ "pk": 34,
2824
+ "fields": {
2825
+ "computed_str": "Viktorie Kropáčová (Like Art)",
2826
+ "is_active": true,
2827
+ "deletion_datetime": null,
2828
+ "uuid": "b0c1abcc-f94c-4bad-b0dc-e193c8272990",
2829
+ "entry_type": "Person",
2830
+ "additional_fields": {},
2831
+ "activity_heat": 1.0,
2832
+ "slugify_computed_str": "viktorie kropacova like art",
2833
+ "profile_image": "",
2834
+ "signature": ""
2835
+ }
2836
+ },
2837
+ {
2838
+ "model": "directory.entry",
2839
+ "pk": 35,
2840
+ "fields": {
2841
+ "computed_str": "Philomena Breij (LowCountry Bank)",
2842
+ "is_active": true,
2843
+ "deletion_datetime": null,
2844
+ "uuid": "634e5078-1422-4172-9e65-7c314f51f2db",
2845
+ "entry_type": "Person",
2846
+ "additional_fields": {},
2847
+ "activity_heat": 1.0,
2848
+ "slugify_computed_str": "philomena breij lowcountry bank",
2849
+ "profile_image": "",
2850
+ "signature": ""
2851
+ }
2852
+ },
2853
+ {
2854
+ "model": "directory.entry",
2855
+ "pk": 36,
2856
+ "fields": {
2857
+ "computed_str": "Ismay Broens (LowCountry Bank)",
2858
+ "is_active": true,
2859
+ "deletion_datetime": null,
2860
+ "uuid": "3820e63d-97a0-4b3d-9c08-f7dc8f8e5d28",
2861
+ "entry_type": "Person",
2862
+ "additional_fields": {},
2863
+ "activity_heat": 0.125,
2864
+ "slugify_computed_str": "ismay broens lowcountry bank",
2865
+ "profile_image": "",
2866
+ "signature": ""
2867
+ }
2868
+ },
2869
+ {
2870
+ "model": "directory.entry",
2871
+ "pk": 37,
2872
+ "fields": {
2873
+ "computed_str": "Andrew O'quinn (Marshall Fund)",
2874
+ "is_active": true,
2875
+ "deletion_datetime": null,
2876
+ "uuid": "e4ab5cf0-ac83-44ba-8f8f-b4d2ae563c4e",
2877
+ "entry_type": "Person",
2878
+ "additional_fields": {},
2879
+ "activity_heat": 0.8,
2880
+ "slugify_computed_str": "andrew o quinn marshall fund",
2881
+ "profile_image": "",
2882
+ "signature": ""
2883
+ }
2884
+ },
2885
+ {
2886
+ "model": "directory.entry",
2887
+ "pk": 38,
2888
+ "fields": {
2889
+ "computed_str": "Sara Morillo (Dollar Care)",
2890
+ "is_active": true,
2891
+ "deletion_datetime": null,
2892
+ "uuid": "fc49a343-3112-4591-8429-fafc898e7f93",
2893
+ "entry_type": "Person",
2894
+ "additional_fields": {},
2895
+ "activity_heat": 0.95,
2896
+ "slugify_computed_str": "sara morillo dollar care",
2897
+ "profile_image": "",
2898
+ "signature": ""
2899
+ }
2900
+ },
2901
+ {
2902
+ "model": "directory.entry",
2903
+ "pk": 39,
2904
+ "fields": {
2905
+ "computed_str": "Rodney Collins (Outpost Asset Management)",
2906
+ "is_active": true,
2907
+ "deletion_datetime": null,
2908
+ "uuid": "03609847-e1a4-403b-ace5-2878c0cc1522",
2909
+ "entry_type": "Person",
2910
+ "additional_fields": {},
2911
+ "activity_heat": 0.35,
2912
+ "slugify_computed_str": "rodney collins outpost asset management",
2913
+ "profile_image": "",
2914
+ "signature": ""
2915
+ }
2916
+ },
2917
+ {
2918
+ "model": "directory.entry",
2919
+ "pk": 40,
2920
+ "fields": {
2921
+ "computed_str": "Michael Soule (Redwood Bank)",
2922
+ "is_active": true,
2923
+ "deletion_datetime": null,
2924
+ "uuid": "9427f0cb-c5ce-4f50-8f31-14fcf3083b55",
2925
+ "entry_type": "Person",
2926
+ "additional_fields": {},
2927
+ "activity_heat": 0.2,
2928
+ "slugify_computed_str": "michael soule redwood bank",
2929
+ "profile_image": "",
2930
+ "signature": ""
2931
+ }
2932
+ },
2933
+ {
2934
+ "model": "directory.entry",
2935
+ "pk": 41,
2936
+ "fields": {
2937
+ "computed_str": "Susan Soule (Honest Consulting)",
2938
+ "is_active": true,
2939
+ "deletion_datetime": null,
2940
+ "uuid": "2f2c8e14-fe51-4b1e-aeb3-34aef739469a",
2941
+ "entry_type": "Person",
2942
+ "additional_fields": {},
2943
+ "activity_heat": 0.13,
2944
+ "slugify_computed_str": "susan soule honest consulting",
2945
+ "profile_image": "",
2946
+ "signature": ""
2947
+ }
2948
+ },
2949
+ {
2950
+ "model": "directory.entry",
2951
+ "pk": 42,
2952
+ "fields": {
2953
+ "computed_str": "Diana Beich (Universtität Hamburg)",
2954
+ "is_active": true,
2955
+ "deletion_datetime": null,
2956
+ "uuid": "ac4d5023-cbfe-436b-9027-682e0081f36b",
2957
+ "entry_type": "Person",
2958
+ "additional_fields": {},
2959
+ "activity_heat": 0.1,
2960
+ "slugify_computed_str": "diana beich universtitat hamburg",
2961
+ "profile_image": "",
2962
+ "signature": ""
2963
+ }
2964
+ },
2965
+ {
2966
+ "model": "directory.entry",
2967
+ "pk": 43,
2968
+ "fields": {
2969
+ "computed_str": "Thorsten Frei (Like Art)",
2970
+ "is_active": true,
2971
+ "deletion_datetime": null,
2972
+ "uuid": "dac5d5ba-62ed-47f8-8f08-f30d3f3e80c3",
2973
+ "entry_type": "Person",
2974
+ "additional_fields": {},
2975
+ "activity_heat": 0.6,
2976
+ "slugify_computed_str": "thorsten frei like art",
2977
+ "profile_image": "",
2978
+ "signature": ""
2979
+ }
2980
+ },
2981
+ {
2982
+ "model": "directory.entry",
2983
+ "pk": 44,
2984
+ "fields": {
2985
+ "computed_str": "Juliane Wirtz (Redwood Bank)",
2986
+ "is_active": true,
2987
+ "deletion_datetime": null,
2988
+ "uuid": "8b772b2a-2595-42ab-9ebc-8e6498ed0d6b",
2989
+ "entry_type": "Person",
2990
+ "additional_fields": {},
2991
+ "activity_heat": 0.8,
2992
+ "slugify_computed_str": "juliane wirtz redwood bank",
2993
+ "profile_image": "",
2994
+ "signature": ""
2995
+ }
2996
+ },
2997
+ {
2998
+ "model": "directory.entry",
2999
+ "pk": 45,
3000
+ "fields": {
3001
+ "computed_str": "Nora Braaten (Like Art)",
3002
+ "is_active": true,
3003
+ "deletion_datetime": null,
3004
+ "uuid": "78377559-fba1-467c-918e-a158263840dd",
3005
+ "entry_type": "Person",
3006
+ "additional_fields": {},
3007
+ "activity_heat": 0.25,
3008
+ "slugify_computed_str": "nora braaten like art",
3009
+ "profile_image": "",
3010
+ "signature": ""
3011
+ }
3012
+ },
3013
+ {
3014
+ "model": "directory.entry",
3015
+ "pk": 47,
3016
+ "fields": {
3017
+ "computed_str": "Ole Øverby (Honest Consulting)",
3018
+ "is_active": true,
3019
+ "deletion_datetime": null,
3020
+ "uuid": "a8d7ecdc-8e24-4a9b-bafe-db518ae53ab0",
3021
+ "entry_type": "Person",
3022
+ "additional_fields": {},
3023
+ "activity_heat": 0.7,
3024
+ "slugify_computed_str": "ole overby honest consulting",
3025
+ "profile_image": "",
3026
+ "signature": ""
3027
+ }
3028
+ },
3029
+ {
3030
+ "model": "directory.entry",
3031
+ "pk": 48,
3032
+ "fields": {
3033
+ "computed_str": "su su",
3034
+ "is_active": true,
3035
+ "deletion_datetime": null,
3036
+ "uuid": "c7d2c971-5c4d-4a23-90cb-04060789e902",
3037
+ "entry_type": "Person",
3038
+ "additional_fields": {},
3039
+ "activity_heat": 0.0,
3040
+ "slugify_computed_str": "su su",
3041
+ "profile_image": "",
3042
+ "signature": ""
3043
+ }
3044
+ },
3045
+ {
3046
+ "model": "directory.person",
3047
+ "pk": 1,
3048
+ "fields": {
3049
+ "prefix": "MR",
3050
+ "first_name": "Invisible",
3051
+ "last_name": "User",
3052
+ "initials": "IU",
3053
+ "active_employee": true,
3054
+ "birthday": null,
3055
+ "personality_profile_red": 0.0,
3056
+ "personality_profile_green": 0.0,
3057
+ "personality_profile_blue": 0.0,
3058
+ "formal": true,
3059
+ "specializations": [
3060
+ 1,
3061
+ 3
3062
+ ]
3063
+ }
3064
+ },
3065
+ {
3066
+ "model": "directory.person",
3067
+ "pk": 25,
3068
+ "fields": {
3069
+ "prefix": "MRS",
3070
+ "first_name": "Yan",
3071
+ "last_name": "Shen",
3072
+ "initials": "YS",
3073
+ "active_employee": true,
3074
+ "birthday": "1987-02-22",
3075
+ "personality_profile_red": 0.4,
3076
+ "personality_profile_green": 0.6000000000000001,
3077
+ "personality_profile_blue": 0.8,
3078
+ "formal": true,
3079
+ "specializations": []
3080
+ }
3081
+ },
3082
+ {
3083
+ "model": "directory.person",
3084
+ "pk": 26,
3085
+ "fields": {
3086
+ "prefix": "MR",
3087
+ "first_name": "Xue",
3088
+ "last_name": "Bai",
3089
+ "initials": "XB",
3090
+ "active_employee": true,
3091
+ "birthday": "1973-09-14",
3092
+ "personality_profile_red": 0.6000000000000001,
3093
+ "personality_profile_green": 1.0,
3094
+ "personality_profile_blue": 0.2,
3095
+ "formal": true,
3096
+ "specializations": [
3097
+ 2
3098
+ ]
3099
+ }
3100
+ },
3101
+ {
3102
+ "model": "directory.person",
3103
+ "pk": 27,
3104
+ "fields": {
3105
+ "prefix": "MR",
3106
+ "first_name": "Xinyi",
3107
+ "last_name": "Xiong",
3108
+ "initials": "XX",
3109
+ "active_employee": true,
3110
+ "birthday": "1976-02-15",
3111
+ "personality_profile_red": 0.0,
3112
+ "personality_profile_green": 0.0,
3113
+ "personality_profile_blue": 0.0,
3114
+ "formal": true,
3115
+ "specializations": [
3116
+ 3
3117
+ ]
3118
+ }
3119
+ },
3120
+ {
3121
+ "model": "directory.person",
3122
+ "pk": 39,
3123
+ "fields": {
3124
+ "prefix": "PROF",
3125
+ "first_name": "Rodney",
3126
+ "last_name": "Collins",
3127
+ "initials": "RC",
3128
+ "active_employee": true,
3129
+ "birthday": "1973-04-11",
3130
+ "personality_profile_red": 0.6000000000000001,
3131
+ "personality_profile_green": 1.0,
3132
+ "personality_profile_blue": 0.6000000000000001,
3133
+ "formal": true,
3134
+ "specializations": []
3135
+ }
3136
+ },
3137
+ {
3138
+ "model": "directory.person",
3139
+ "pk": 33,
3140
+ "fields": {
3141
+ "prefix": "DR",
3142
+ "first_name": "Parun",
3143
+ "last_name": "Sangwit",
3144
+ "initials": "PS",
3145
+ "active_employee": true,
3146
+ "birthday": "1947-01-01",
3147
+ "personality_profile_red": 1.0,
3148
+ "personality_profile_green": 0.8,
3149
+ "personality_profile_blue": 0.6000000000000001,
3150
+ "formal": true,
3151
+ "specializations": [
3152
+ 4,
3153
+ 5
3154
+ ]
3155
+ }
3156
+ },
3157
+ {
3158
+ "model": "directory.person",
3159
+ "pk": 31,
3160
+ "fields": {
3161
+ "prefix": "MR",
3162
+ "first_name": "Mayuree",
3163
+ "last_name": "Ratanarak",
3164
+ "initials": "MR",
3165
+ "active_employee": true,
3166
+ "birthday": "1981-02-25",
3167
+ "personality_profile_red": 0.2,
3168
+ "personality_profile_green": 0.2,
3169
+ "personality_profile_blue": 0.6000000000000001,
3170
+ "formal": true,
3171
+ "specializations": [
3172
+ 5
3173
+ ]
3174
+ }
3175
+ },
3176
+ {
3177
+ "model": "directory.person",
3178
+ "pk": 34,
3179
+ "fields": {
3180
+ "prefix": "MRS",
3181
+ "first_name": "Viktorie",
3182
+ "last_name": "Kropáčová",
3183
+ "initials": "VK",
3184
+ "active_employee": true,
3185
+ "birthday": "1955-06-07",
3186
+ "personality_profile_red": 0.4,
3187
+ "personality_profile_green": 1.0,
3188
+ "personality_profile_blue": 0.6000000000000001,
3189
+ "formal": true,
3190
+ "specializations": [
3191
+ 4
3192
+ ]
3193
+ }
3194
+ },
3195
+ {
3196
+ "model": "directory.person",
3197
+ "pk": 47,
3198
+ "fields": {
3199
+ "prefix": "MR",
3200
+ "first_name": "Ole",
3201
+ "last_name": "Øverby",
3202
+ "initials": "OØ",
3203
+ "active_employee": true,
3204
+ "birthday": null,
3205
+ "personality_profile_red": 0.0,
3206
+ "personality_profile_green": 0.0,
3207
+ "personality_profile_blue": 0.0,
3208
+ "formal": true,
3209
+ "specializations": [
3210
+ 1
3211
+ ]
3212
+ }
3213
+ },
3214
+ {
3215
+ "model": "directory.person",
3216
+ "pk": 40,
3217
+ "fields": {
3218
+ "prefix": "MR",
3219
+ "first_name": "Michael",
3220
+ "last_name": "Soule",
3221
+ "initials": "MS",
3222
+ "active_employee": true,
3223
+ "birthday": "1963-09-17",
3224
+ "personality_profile_red": 0.8,
3225
+ "personality_profile_green": 1.0,
3226
+ "personality_profile_blue": 0.8,
3227
+ "formal": true,
3228
+ "specializations": []
3229
+ }
3230
+ },
3231
+ {
3232
+ "model": "directory.person",
3233
+ "pk": 37,
3234
+ "fields": {
3235
+ "prefix": "MR",
3236
+ "first_name": "Andrew",
3237
+ "last_name": "O'quinn",
3238
+ "initials": "AO",
3239
+ "active_employee": true,
3240
+ "birthday": "1985-02-08",
3241
+ "personality_profile_red": 0.6000000000000001,
3242
+ "personality_profile_green": 0.4,
3243
+ "personality_profile_blue": 0.2,
3244
+ "formal": true,
3245
+ "specializations": [
3246
+ 3
3247
+ ]
3248
+ }
3249
+ },
3250
+ {
3251
+ "model": "directory.person",
3252
+ "pk": 32,
3253
+ "fields": {
3254
+ "prefix": "MRS",
3255
+ "first_name": "Thailah",
3256
+ "last_name": "Saenamuang",
3257
+ "initials": "TS",
3258
+ "active_employee": true,
3259
+ "birthday": "1981-11-16",
3260
+ "personality_profile_red": 0.4,
3261
+ "personality_profile_green": 0.6000000000000001,
3262
+ "personality_profile_blue": 0.4,
3263
+ "formal": true,
3264
+ "specializations": [
3265
+ 1,
3266
+ 5
3267
+ ]
3268
+ }
3269
+ },
3270
+ {
3271
+ "model": "directory.person",
3272
+ "pk": 24,
3273
+ "fields": {
3274
+ "prefix": "MR",
3275
+ "first_name": "Giorgio",
3276
+ "last_name": "Lucchesi",
3277
+ "initials": "GL",
3278
+ "active_employee": true,
3279
+ "birthday": "1979-03-21",
3280
+ "personality_profile_red": 1.0,
3281
+ "personality_profile_green": 0.2,
3282
+ "personality_profile_blue": 0.8,
3283
+ "formal": true,
3284
+ "specializations": []
3285
+ }
3286
+ },
3287
+ {
3288
+ "model": "directory.person",
3289
+ "pk": 38,
3290
+ "fields": {
3291
+ "prefix": "DR",
3292
+ "first_name": "Sara",
3293
+ "last_name": "Morillo",
3294
+ "initials": "SM",
3295
+ "active_employee": true,
3296
+ "birthday": "1985-05-09",
3297
+ "personality_profile_red": 0.6000000000000001,
3298
+ "personality_profile_green": 0.4,
3299
+ "personality_profile_blue": 0.6000000000000001,
3300
+ "formal": true,
3301
+ "specializations": [
3302
+ 2,
3303
+ 3,
3304
+ 4
3305
+ ]
3306
+ }
3307
+ },
3308
+ {
3309
+ "model": "directory.person",
3310
+ "pk": 8,
3311
+ "fields": {
3312
+ "prefix": "MR",
3313
+ "first_name": "admin",
3314
+ "last_name": "admin",
3315
+ "initials": "AA",
3316
+ "active_employee": true,
3317
+ "birthday": null,
3318
+ "personality_profile_red": 0.0,
3319
+ "personality_profile_green": 0.0,
3320
+ "personality_profile_blue": 0.0,
3321
+ "formal": true,
3322
+ "specializations": []
3323
+ }
3324
+ },
3325
+ {
3326
+ "model": "directory.person",
3327
+ "pk": 48,
3328
+ "fields": {
3329
+ "prefix": "MR",
3330
+ "first_name": "su",
3331
+ "last_name": "su",
3332
+ "initials": "SS",
3333
+ "active_employee": true,
3334
+ "birthday": null,
3335
+ "personality_profile_red": 0.0,
3336
+ "personality_profile_green": 0.0,
3337
+ "personality_profile_blue": 0.0,
3338
+ "formal": true,
3339
+ "specializations": []
3340
+ }
3341
+ },
3342
+ {
3343
+ "model": "directory.person",
3344
+ "pk": 28,
3345
+ "fields": {
3346
+ "prefix": "MR",
3347
+ "first_name": "Terrell",
3348
+ "last_name": "Hosein",
3349
+ "initials": "TH",
3350
+ "active_employee": true,
3351
+ "birthday": "1994-10-09",
3352
+ "personality_profile_red": 0.0,
3353
+ "personality_profile_green": 0.0,
3354
+ "personality_profile_blue": 0.0,
3355
+ "formal": true,
3356
+ "specializations": [
3357
+ 4
3358
+ ]
3359
+ }
3360
+ },
3361
+ {
3362
+ "model": "directory.person",
3363
+ "pk": 30,
3364
+ "fields": {
3365
+ "prefix": "MR",
3366
+ "first_name": "Kasin",
3367
+ "last_name": "Banruerit",
3368
+ "initials": "KB",
3369
+ "active_employee": true,
3370
+ "birthday": "1992-04-14",
3371
+ "personality_profile_red": 0.4,
3372
+ "personality_profile_green": 1.0,
3373
+ "personality_profile_blue": 0.0,
3374
+ "formal": true,
3375
+ "specializations": [
3376
+ 1
3377
+ ]
3378
+ }
3379
+ },
3380
+ {
3381
+ "model": "directory.person",
3382
+ "pk": 42,
3383
+ "fields": {
3384
+ "prefix": "DR",
3385
+ "first_name": "Diana",
3386
+ "last_name": "Beich",
3387
+ "initials": "DB",
3388
+ "active_employee": true,
3389
+ "birthday": "1982-03-14",
3390
+ "personality_profile_red": 0.0,
3391
+ "personality_profile_green": 0.0,
3392
+ "personality_profile_blue": 0.0,
3393
+ "formal": true,
3394
+ "specializations": []
3395
+ }
3396
+ },
3397
+ {
3398
+ "model": "directory.person",
3399
+ "pk": 29,
3400
+ "fields": {
3401
+ "prefix": "MRS",
3402
+ "first_name": "Шишкин",
3403
+ "last_name": "Мп",
3404
+ "initials": "ШМ",
3405
+ "active_employee": true,
3406
+ "birthday": "1981-10-26",
3407
+ "personality_profile_red": 0.0,
3408
+ "personality_profile_green": 0.0,
3409
+ "personality_profile_blue": 0.0,
3410
+ "formal": true,
3411
+ "specializations": []
3412
+ }
3413
+ },
3414
+ {
3415
+ "model": "directory.person",
3416
+ "pk": 41,
3417
+ "fields": {
3418
+ "prefix": "MR",
3419
+ "first_name": "Susan",
3420
+ "last_name": "Soule",
3421
+ "initials": "SS",
3422
+ "active_employee": true,
3423
+ "birthday": "1958-05-11",
3424
+ "personality_profile_red": 0.0,
3425
+ "personality_profile_green": 0.0,
3426
+ "personality_profile_blue": 0.0,
3427
+ "formal": true,
3428
+ "specializations": [
3429
+ 2,
3430
+ 4,
3431
+ 5
3432
+ ]
3433
+ }
3434
+ },
3435
+ {
3436
+ "model": "directory.person",
3437
+ "pk": 36,
3438
+ "fields": {
3439
+ "prefix": "MRS",
3440
+ "first_name": "Ismay",
3441
+ "last_name": "Broens",
3442
+ "initials": "IB",
3443
+ "active_employee": true,
3444
+ "birthday": "1983-07-26",
3445
+ "personality_profile_red": 0.0,
3446
+ "personality_profile_green": 0.0,
3447
+ "personality_profile_blue": 0.0,
3448
+ "formal": true,
3449
+ "specializations": [
3450
+ 2,
3451
+ 5
3452
+ ]
3453
+ }
3454
+ },
3455
+ {
3456
+ "model": "directory.person",
3457
+ "pk": 23,
3458
+ "fields": {
3459
+ "prefix": "MR",
3460
+ "first_name": "Ástráður",
3461
+ "last_name": "Samúelsson",
3462
+ "initials": "ÁS",
3463
+ "active_employee": true,
3464
+ "birthday": "1980-05-17",
3465
+ "personality_profile_red": 0.4,
3466
+ "personality_profile_green": 0.8,
3467
+ "personality_profile_blue": 0.4,
3468
+ "formal": true,
3469
+ "specializations": [
3470
+ 1,
3471
+ 5
3472
+ ]
3473
+ }
3474
+ },
3475
+ {
3476
+ "model": "directory.person",
3477
+ "pk": 44,
3478
+ "fields": {
3479
+ "prefix": "MR",
3480
+ "first_name": "Juliane",
3481
+ "last_name": "Wirtz",
3482
+ "initials": "JW",
3483
+ "active_employee": true,
3484
+ "birthday": "1985-03-14",
3485
+ "personality_profile_red": 0.6000000000000001,
3486
+ "personality_profile_green": 0.8,
3487
+ "personality_profile_blue": 0.6000000000000001,
3488
+ "formal": true,
3489
+ "specializations": []
3490
+ }
3491
+ },
3492
+ {
3493
+ "model": "directory.person",
3494
+ "pk": 22,
3495
+ "fields": {
3496
+ "prefix": "MRS",
3497
+ "first_name": "Dögg",
3498
+ "last_name": "Friðleifsdóttir",
3499
+ "initials": "DF",
3500
+ "active_employee": true,
3501
+ "birthday": null,
3502
+ "personality_profile_red": 0.8,
3503
+ "personality_profile_green": 0.4,
3504
+ "personality_profile_blue": 0.6000000000000001,
3505
+ "formal": true,
3506
+ "specializations": [
3507
+ 4
3508
+ ]
3509
+ }
3510
+ },
3511
+ {
3512
+ "model": "directory.person",
3513
+ "pk": 45,
3514
+ "fields": {
3515
+ "prefix": "MRS",
3516
+ "first_name": "Nora",
3517
+ "last_name": "Braaten",
3518
+ "initials": "NB",
3519
+ "active_employee": true,
3520
+ "birthday": "1981-09-14",
3521
+ "personality_profile_red": 0.8,
3522
+ "personality_profile_green": 0.4,
3523
+ "personality_profile_blue": 0.2,
3524
+ "formal": true,
3525
+ "specializations": [
3526
+ 3,
3527
+ 4
3528
+ ]
3529
+ }
3530
+ },
3531
+ {
3532
+ "model": "directory.person",
3533
+ "pk": 43,
3534
+ "fields": {
3535
+ "prefix": "MR",
3536
+ "first_name": "Thorsten",
3537
+ "last_name": "Frei",
3538
+ "initials": "TF",
3539
+ "active_employee": true,
3540
+ "birthday": "1991-11-24",
3541
+ "personality_profile_red": 0.4,
3542
+ "personality_profile_green": 0.8,
3543
+ "personality_profile_blue": 0.4,
3544
+ "formal": true,
3545
+ "specializations": [
3546
+ 3,
3547
+ 5
3548
+ ]
3549
+ }
3550
+ },
3551
+ {
3552
+ "model": "directory.person",
3553
+ "pk": 35,
3554
+ "fields": {
3555
+ "prefix": "MRS",
3556
+ "first_name": "Philomena",
3557
+ "last_name": "Breij",
3558
+ "initials": "PB",
3559
+ "active_employee": true,
3560
+ "birthday": "1979-12-17",
3561
+ "personality_profile_red": 1.0,
3562
+ "personality_profile_green": 0.2,
3563
+ "personality_profile_blue": 0.6000000000000001,
3564
+ "formal": true,
3565
+ "specializations": []
3566
+ }
3567
+ },
3568
+ {
3569
+ "model": "directory.company",
3570
+ "pk": 9,
3571
+ "fields": {
3572
+ "type": 3,
3573
+ "name": "Kaizen IT",
3574
+ "customer_status": 6,
3575
+ "headcount": "1400",
3576
+ "tier": "5",
3577
+ "description": ""
3578
+ }
3579
+ },
3580
+ {
3581
+ "model": "directory.company",
3582
+ "pk": 10,
3583
+ "fields": {
3584
+ "type": 1,
3585
+ "name": "Like Art",
3586
+ "customer_status": 6,
3587
+ "headcount": "",
3588
+ "tier": "1",
3589
+ "description": ""
3590
+ }
3591
+ },
3592
+ {
3593
+ "model": "directory.company",
3594
+ "pk": 11,
3595
+ "fields": {
3596
+ "type": 2,
3597
+ "name": "Atlantic Games",
3598
+ "customer_status": 5,
3599
+ "headcount": "18",
3600
+ "tier": "3",
3601
+ "description": ""
3602
+ }
3603
+ },
3604
+ {
3605
+ "model": "directory.company",
3606
+ "pk": 12,
3607
+ "fields": {
3608
+ "type": null,
3609
+ "name": "Outpost Asset Management",
3610
+ "customer_status": 4,
3611
+ "headcount": "",
3612
+ "tier": "2",
3613
+ "description": ""
3614
+ }
3615
+ },
3616
+ {
3617
+ "model": "directory.company",
3618
+ "pk": 13,
3619
+ "fields": {
3620
+ "type": 2,
3621
+ "name": "Metro Bank",
3622
+ "customer_status": 3,
3623
+ "headcount": "",
3624
+ "tier": "1",
3625
+ "description": ""
3626
+ }
3627
+ },
3628
+ {
3629
+ "model": "directory.company",
3630
+ "pk": 14,
3631
+ "fields": {
3632
+ "type": 1,
3633
+ "name": "Redwood Bank",
3634
+ "customer_status": null,
3635
+ "headcount": "",
3636
+ "tier": "1",
3637
+ "description": ""
3638
+ }
3639
+ },
3640
+ {
3641
+ "model": "directory.company",
3642
+ "pk": 15,
3643
+ "fields": {
3644
+ "type": 2,
3645
+ "name": "Darwin Consultants",
3646
+ "customer_status": 1,
3647
+ "headcount": "58",
3648
+ "tier": "4",
3649
+ "description": ""
3650
+ }
3651
+ },
3652
+ {
3653
+ "model": "directory.company",
3654
+ "pk": 16,
3655
+ "fields": {
3656
+ "type": 4,
3657
+ "name": "Honest Consulting",
3658
+ "customer_status": 4,
3659
+ "headcount": "",
3660
+ "tier": "4",
3661
+ "description": ""
3662
+ }
3663
+ },
3664
+ {
3665
+ "model": "directory.company",
3666
+ "pk": 17,
3667
+ "fields": {
3668
+ "type": 4,
3669
+ "name": "Universtität Hamburg",
3670
+ "customer_status": 5,
3671
+ "headcount": "",
3672
+ "tier": "1",
3673
+ "description": ""
3674
+ }
3675
+ },
3676
+ {
3677
+ "model": "directory.company",
3678
+ "pk": 18,
3679
+ "fields": {
3680
+ "type": 2,
3681
+ "name": "Marshall Fund",
3682
+ "customer_status": 5,
3683
+ "headcount": "",
3684
+ "tier": "3",
3685
+ "description": ""
3686
+ }
3687
+ },
3688
+ {
3689
+ "model": "directory.company",
3690
+ "pk": 19,
3691
+ "fields": {
3692
+ "type": 2,
3693
+ "name": "LowCountry Bank",
3694
+ "customer_status": 3,
3695
+ "headcount": "",
3696
+ "tier": "1",
3697
+ "description": ""
3698
+ }
3699
+ },
3700
+ {
3701
+ "model": "directory.company",
3702
+ "pk": 20,
3703
+ "fields": {
3704
+ "type": 1,
3705
+ "name": "Client Partner",
3706
+ "customer_status": 3,
3707
+ "headcount": "6",
3708
+ "tier": "2",
3709
+ "description": ""
3710
+ }
3711
+ },
3712
+ {
3713
+ "model": "directory.company",
3714
+ "pk": 21,
3715
+ "fields": {
3716
+ "type": 3,
3717
+ "name": "Dollar Care",
3718
+ "customer_status": 4,
3719
+ "headcount": "",
3720
+ "tier": "2",
3721
+ "description": ""
3722
+ }
3723
+ },
3724
+ {
3725
+ "model": "directory.customerstatus",
3726
+ "pk": 1,
3727
+ "fields": {
3728
+ "title": "Client",
3729
+ "slugify_title": "client"
3730
+ }
3731
+ },
3732
+ {
3733
+ "model": "directory.customerstatus",
3734
+ "pk": 2,
3735
+ "fields": {
3736
+ "title": "Prospective",
3737
+ "slugify_title": "prospective"
3738
+ }
3739
+ },
3740
+ {
3741
+ "model": "directory.customerstatus",
3742
+ "pk": 3,
3743
+ "fields": {
3744
+ "title": "Dead-End",
3745
+ "slugify_title": "dead end"
3746
+ }
3747
+ },
3748
+ {
3749
+ "model": "directory.customerstatus",
3750
+ "pk": 4,
3751
+ "fields": {
3752
+ "title": "Business Introducer",
3753
+ "slugify_title": "business introducer"
3754
+ }
3755
+ },
3756
+ {
3757
+ "model": "directory.customerstatus",
3758
+ "pk": 5,
3759
+ "fields": {
3760
+ "title": "Industry Expert",
3761
+ "slugify_title": "industry expert"
3762
+ }
3763
+ },
3764
+ {
3765
+ "model": "directory.customerstatus",
3766
+ "pk": 6,
3767
+ "fields": {
3768
+ "title": "Service Provider",
3769
+ "slugify_title": "service provider"
3770
+ }
3771
+ },
3772
+ {
3773
+ "model": "directory.position",
3774
+ "pk": 1,
3775
+ "fields": {
3776
+ "title": "CEO",
3777
+ "slugify_title": "ceo"
3778
+ }
3779
+ },
3780
+ {
3781
+ "model": "directory.position",
3782
+ "pk": 2,
3783
+ "fields": {
3784
+ "title": "CIO",
3785
+ "slugify_title": "cio"
3786
+ }
3787
+ },
3788
+ {
3789
+ "model": "directory.position",
3790
+ "pk": 3,
3791
+ "fields": {
3792
+ "title": "CFO",
3793
+ "slugify_title": "cfo"
3794
+ }
3795
+ },
3796
+ {
3797
+ "model": "directory.position",
3798
+ "pk": 4,
3799
+ "fields": {
3800
+ "title": "Strong Independent Woman",
3801
+ "slugify_title": "strong independent woman"
3802
+ }
3803
+ },
3804
+ {
3805
+ "model": "directory.position",
3806
+ "pk": 5,
3807
+ "fields": {
3808
+ "title": "Emotional Support Animal",
3809
+ "slugify_title": "emotional support animal"
3810
+ }
3811
+ },
3812
+ {
3813
+ "model": "directory.companytype",
3814
+ "pk": 1,
3815
+ "fields": {
3816
+ "title": "Wealth Manager",
3817
+ "slugify_title": "wealth manager"
3818
+ }
3819
+ },
3820
+ {
3821
+ "model": "directory.companytype",
3822
+ "pk": 2,
3823
+ "fields": {
3824
+ "title": "Asset Manager",
3825
+ "slugify_title": "asset manager"
3826
+ }
3827
+ },
3828
+ {
3829
+ "model": "directory.companytype",
3830
+ "pk": 3,
3831
+ "fields": {
3832
+ "title": "Bank",
3833
+ "slugify_title": "bank"
3834
+ }
3835
+ },
3836
+ {
3837
+ "model": "directory.companytype",
3838
+ "pk": 4,
3839
+ "fields": {
3840
+ "title": "Service Provider",
3841
+ "slugify_title": "service provider"
3842
+ }
3843
+ },
3844
+ {
3845
+ "model": "directory.specialization",
3846
+ "pk": 1,
3847
+ "fields": {
3848
+ "title": "Frontend Architecture",
3849
+ "slugify_title": "frontend architecture"
3850
+ }
3851
+ },
3852
+ {
3853
+ "model": "directory.specialization",
3854
+ "pk": 2,
3855
+ "fields": {
3856
+ "title": "DevOps",
3857
+ "slugify_title": "devops"
3858
+ }
3859
+ },
3860
+ {
3861
+ "model": "directory.specialization",
3862
+ "pk": 3,
3863
+ "fields": {
3864
+ "title": "Python",
3865
+ "slugify_title": "python"
3866
+ }
3867
+ },
3868
+ {
3869
+ "model": "directory.specialization",
3870
+ "pk": 4,
3871
+ "fields": {
3872
+ "title": "JavaScript",
3873
+ "slugify_title": "javascript"
3874
+ }
3875
+ },
3876
+ {
3877
+ "model": "directory.specialization",
3878
+ "pk": 5,
3879
+ "fields": {
3880
+ "title": "QA",
3881
+ "slugify_title": "qa"
3882
+ }
3883
+ }
3884
+ ]