cozy-ui-plus 1.1.0

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 (670) hide show
  1. package/CHANGELOG.md +10 -0
  2. package/LICENSE +21 -0
  3. package/README.md +1 -0
  4. package/babel.config.js +24 -0
  5. package/dist/AppIcon/index.js +265 -0
  6. package/dist/AppLinker/index.js +159 -0
  7. package/dist/AppLinker/native.config.js +8 -0
  8. package/dist/AppLinker/native.js +81 -0
  9. package/dist/AppSections/Sections.js +461 -0
  10. package/dist/AppSections/_mockApps.js +210 -0
  11. package/dist/AppSections/_testApps.js +162 -0
  12. package/dist/AppSections/categories.js +183 -0
  13. package/dist/AppSections/components/AppsSection.js +112 -0
  14. package/dist/AppSections/components/DropdownFilter.js +101 -0
  15. package/dist/AppSections/constants.js +16 -0
  16. package/dist/AppSections/generateI18nConfig.js +37 -0
  17. package/dist/AppSections/helpers.js +28 -0
  18. package/dist/AppSections/index.js +24 -0
  19. package/dist/AppSections/search.js +161 -0
  20. package/dist/AppTile/helpers.js +41 -0
  21. package/dist/AppTile/index.js +171 -0
  22. package/dist/CipherIcon/index.js +102 -0
  23. package/dist/CollectionField/index.js +166 -0
  24. package/dist/ContactPicker/index.js +129 -0
  25. package/dist/Contacts/AddModal/ContactAddressDialog/helpers.js +31 -0
  26. package/dist/Contacts/AddModal/ContactAddressDialog/index.js +106 -0
  27. package/dist/Contacts/AddModal/ContactAddressDialog/locales/index.js +113 -0
  28. package/dist/Contacts/AddModal/ContactForm/FieldInput.js +164 -0
  29. package/dist/Contacts/AddModal/ContactForm/FieldInputAccordion.js +91 -0
  30. package/dist/Contacts/AddModal/ContactForm/FieldInputArray.js +105 -0
  31. package/dist/Contacts/AddModal/ContactForm/FieldInputLayout.js +98 -0
  32. package/dist/Contacts/AddModal/ContactForm/FieldInputWrapper.js +51 -0
  33. package/dist/Contacts/AddModal/ContactForm/HasValueCondition.js +44 -0
  34. package/dist/Contacts/AddModal/ContactForm/RelatedContactList.js +55 -0
  35. package/dist/Contacts/AddModal/ContactForm/TextFieldCustomLabelSelect.js +104 -0
  36. package/dist/Contacts/AddModal/ContactForm/TextFieldSelect.js +59 -0
  37. package/dist/Contacts/AddModal/ContactForm/contactToFormValues.js +119 -0
  38. package/dist/Contacts/AddModal/ContactForm/fieldsConfig.js +314 -0
  39. package/dist/Contacts/AddModal/ContactForm/formValuesToContact.js +110 -0
  40. package/dist/Contacts/AddModal/ContactForm/helpers.js +466 -0
  41. package/dist/Contacts/AddModal/ContactForm/index.js +184 -0
  42. package/dist/Contacts/AddModal/ContactForm/locales/index.js +313 -0
  43. package/dist/Contacts/AddModal/CustomLabelDialog/index.js +138 -0
  44. package/dist/Contacts/AddModal/CustomLabelDialog/locales/index.js +73 -0
  45. package/dist/Contacts/AddModal/index.js +134 -0
  46. package/dist/Contacts/AddModal/locales/index.js +65 -0
  47. package/dist/Contacts/AddModal/mocks.js +265 -0
  48. package/dist/Contacts/AddModal/types.js +110 -0
  49. package/dist/Contacts/GroupsSelect/GroupCreation.js +157 -0
  50. package/dist/Contacts/GroupsSelect/GroupsSelect.js +207 -0
  51. package/dist/Contacts/GroupsSelect/GroupsSelectProvider.js +60 -0
  52. package/dist/Contacts/GroupsSelect/SelectBox/Control.js +54 -0
  53. package/dist/Contacts/GroupsSelect/SelectBox/EditGroupName.js +89 -0
  54. package/dist/Contacts/GroupsSelect/SelectBox/Menu.js +49 -0
  55. package/dist/Contacts/GroupsSelect/SelectBox/Option.js +80 -0
  56. package/dist/Contacts/GroupsSelect/SelectBox/SelectContainer.js +25 -0
  57. package/dist/Contacts/GroupsSelect/helpers.js +45 -0
  58. package/dist/Contacts/GroupsSelect/locales/index.js +97 -0
  59. package/dist/Contacts/GroupsSelect/useGroupSelect.js +196 -0
  60. package/dist/Contacts/Header/GroupsSelection.js +101 -0
  61. package/dist/Contacts/Header/ImportDropdown.js +115 -0
  62. package/dist/Contacts/Header/SearchInput.js +40 -0
  63. package/dist/Contacts/Header/index.js +93 -0
  64. package/dist/Contacts/Header/locales/index.js +73 -0
  65. package/dist/ContactsList/ContactCell.js +45 -0
  66. package/dist/ContactsList/ContactRow.js +84 -0
  67. package/dist/ContactsList/Contacts/ContactCozy.js +44 -0
  68. package/dist/ContactsList/Contacts/ContactEmail.js +44 -0
  69. package/dist/ContactsList/Contacts/ContactIdentity.js +86 -0
  70. package/dist/ContactsList/Contacts/ContactName.js +48 -0
  71. package/dist/ContactsList/Contacts/ContactPhone.js +44 -0
  72. package/dist/ContactsList/ContactsList.js +74 -0
  73. package/dist/ContactsList/helpers.js +156 -0
  74. package/dist/ContactsList/index.js +13 -0
  75. package/dist/ContactsList/locales/withContactsListLocales.js +42 -0
  76. package/dist/ContactsListModal/AddContact/AddContactActions.js +32 -0
  77. package/dist/ContactsListModal/AddContact/AddContactContent.js +85 -0
  78. package/dist/ContactsListModal/AddContact/AddContactDialog.js +63 -0
  79. package/dist/ContactsListModal/AddContact/AddContactTitle.js +21 -0
  80. package/dist/ContactsListModal/AddContact/helpers.js +61 -0
  81. package/dist/ContactsListModal/ContactsListContent.js +88 -0
  82. package/dist/ContactsListModal/ContactsListModal.js +178 -0
  83. package/dist/ContactsListModal/ContactsListModalWithQuery.js +44 -0
  84. package/dist/ContactsListModal/EmptyMessage.js +33 -0
  85. package/dist/ContactsListModal/MobileHeader.js +67 -0
  86. package/dist/ContactsListModal/index.js +58 -0
  87. package/dist/ContactsListModal/mockClient.js +2009 -0
  88. package/dist/ContactsListModal/queries.js +26 -0
  89. package/dist/ContactsListModal/withContactsListLocales.js +40 -0
  90. package/dist/Dialogs/AuthenticationDialogs/index.js +139 -0
  91. package/dist/Field/index.js +297 -0
  92. package/dist/FileImageLoader/checkImageSource.js +61 -0
  93. package/dist/FileImageLoader/index.js +394 -0
  94. package/dist/FilePicker/FilePickerBody.js +108 -0
  95. package/dist/FilePicker/FilePickerBodyItem.js +132 -0
  96. package/dist/FilePicker/FilePickerBreadcrumb.js +74 -0
  97. package/dist/FilePicker/FilePickerFooter.js +91 -0
  98. package/dist/FilePicker/FilePickerHeader.js +110 -0
  99. package/dist/FilePicker/docs/DemoProvider.js +280 -0
  100. package/dist/FilePicker/helpers.js +57 -0
  101. package/dist/FilePicker/index.js +125 -0
  102. package/dist/FilePicker/queries.js +61 -0
  103. package/dist/Intent/IntentDialogOpener/index.js +142 -0
  104. package/dist/Intent/IntentIframe/index.js +182 -0
  105. package/dist/ListItem/ExpandedAttributes/ExpandedAttribute.js +64 -0
  106. package/dist/ListItem/ExpandedAttributes/helpers.js +263 -0
  107. package/dist/ListItem/ExpandedAttributes/index.js +90 -0
  108. package/dist/ListItem/ListItemBase/Renaming/RenameDialog.js +52 -0
  109. package/dist/ListItem/ListItemBase/Renaming/RenameInput.js +319 -0
  110. package/dist/ListItem/ListItemBase/Renaming/helpers.js +73 -0
  111. package/dist/ListItem/ListItemBase/index.js +153 -0
  112. package/dist/ListItem/ListItemByDoc/index.js +109 -0
  113. package/dist/ListItem/ListItemContact/helpers.js +39 -0
  114. package/dist/ListItem/ListItemContact/index.js +87 -0
  115. package/dist/ListItem/ListItemContact/useActions.js +28 -0
  116. package/dist/ListItem/ListItemFile/ExpirationAnnotation.js +54 -0
  117. package/dist/ListItem/ListItemFile/ItemIcon.js +61 -0
  118. package/dist/ListItem/ListItemFile/PrimaryText.js +47 -0
  119. package/dist/ListItem/ListItemFile/SecondaryText.js +41 -0
  120. package/dist/ListItem/ListItemFile/index.js +96 -0
  121. package/dist/ListItem/hoc/withListItemLocales.js +322 -0
  122. package/dist/Paywall/MaxAccountsByKonnectorPaywall.js +48 -0
  123. package/dist/Paywall/MaxAccountsPaywall.js +43 -0
  124. package/dist/Paywall/MaxDaysToCapturePaywall.js +43 -0
  125. package/dist/Paywall/MaxPapersPaywall.js +44 -0
  126. package/dist/Paywall/OnlyOfficePaywall.js +41 -0
  127. package/dist/Paywall/PasswordSharingPaywall.js +34 -0
  128. package/dist/Paywall/Paywall.js +205 -0
  129. package/dist/Paywall/QuotaPaywall.js +32 -0
  130. package/dist/Paywall/helpers.js +31 -0
  131. package/dist/Paywall/index.js +63 -0
  132. package/dist/Paywall/locales/withPaywallLocales.js +401 -0
  133. package/dist/Qualification/QualificationGrid/helpers.js +16 -0
  134. package/dist/Qualification/QualificationGrid/index.js +136 -0
  135. package/dist/Qualification/QualificationGrid/locales/withLocales.js +82 -0
  136. package/dist/Qualification/QualificationIcon/index.js +156 -0
  137. package/dist/Qualification/QualificationItem/index.js +87 -0
  138. package/dist/Qualification/QualificationModal/helpers.js +95 -0
  139. package/dist/Qualification/QualificationModal/index.js +121 -0
  140. package/dist/Qualification/QualificationModal/locales/index.js +37 -0
  141. package/dist/ShortcutTile/index.js +68 -0
  142. package/dist/SquareAppIcon/index.js +262 -0
  143. package/dist/Storage/StorageButton.js +54 -0
  144. package/dist/Storage/StorageProgress.js +68 -0
  145. package/dist/Storage/index.js +49 -0
  146. package/dist/Storage/locales/index.js +41 -0
  147. package/dist/UploadQueue/FileUploadProgress.js +86 -0
  148. package/dist/UploadQueue/Item.js +132 -0
  149. package/dist/UploadQueue/Pending.js +23 -0
  150. package/dist/UploadQueue/RemainingTime.js +59 -0
  151. package/dist/UploadQueue/helpers.js +13 -0
  152. package/dist/UploadQueue/index.js +277 -0
  153. package/dist/UploadQueue/useStatusIcon.js +60 -0
  154. package/dist/hooks/useClientErrors.js +185 -0
  155. package/dist/proptypes.js +33 -0
  156. package/dist/providers/CozyTheme/CozyThemeWithQuery.js +41 -0
  157. package/dist/providers/CozyTheme/index.js +58 -0
  158. package/dist/providers/CozyTheme/queries.js +25 -0
  159. package/dist/providers/DemoProvider.js +49 -0
  160. package/dist/providers/Intent/index.js +130 -0
  161. package/dist/src/AppIcon/index.d.ts +50 -0
  162. package/dist/src/AppIcon/index.spec.d.ts +1 -0
  163. package/dist/src/AppLinker/index.d.ts +35 -0
  164. package/dist/src/AppLinker/index.spec.d.ts +1 -0
  165. package/dist/src/AppLinker/native.config.d.ts +1 -0
  166. package/dist/src/AppLinker/native.d.ts +6 -0
  167. package/dist/src/AppLinker/native.spec.d.ts +1 -0
  168. package/dist/src/AppSections/Sections.d.ts +49 -0
  169. package/dist/src/AppSections/_mockApps.d.ts +242 -0
  170. package/dist/src/AppSections/_testApps.d.ts +203 -0
  171. package/dist/src/AppSections/categories.d.ts +7 -0
  172. package/dist/src/AppSections/categories.spec.d.ts +1 -0
  173. package/dist/src/AppSections/components/AppsSection.d.ts +20 -0
  174. package/dist/src/AppSections/components/AppsSection.spec.d.ts +1 -0
  175. package/dist/src/AppSections/components/DropdownFilter.d.ts +17 -0
  176. package/dist/src/AppSections/constants.d.ts +8 -0
  177. package/dist/src/AppSections/generateI18nConfig.d.ts +4 -0
  178. package/dist/src/AppSections/helpers.d.ts +2 -0
  179. package/dist/src/AppSections/helpers.spec.d.ts +1 -0
  180. package/dist/src/AppSections/index.d.ts +3 -0
  181. package/dist/src/AppSections/index.spec.d.ts +1 -0
  182. package/dist/src/AppSections/search.d.ts +3 -0
  183. package/dist/src/AppSections/search.spec.d.ts +1 -0
  184. package/dist/src/AppTile/AppTile.spec.d.ts +1 -0
  185. package/dist/src/AppTile/helpers.d.ts +9 -0
  186. package/dist/src/AppTile/index.d.ts +33 -0
  187. package/dist/src/CipherIcon/index.d.ts +2 -0
  188. package/dist/src/CipherIcon/index.spec.d.ts +1 -0
  189. package/dist/src/CollectionField/index.d.ts +23 -0
  190. package/dist/src/ContactPicker/index.d.ts +21 -0
  191. package/dist/src/Contacts/AddModal/ContactAddressDialog/helpers.d.ts +4 -0
  192. package/dist/src/Contacts/AddModal/ContactAddressDialog/helpers.spec.d.ts +1 -0
  193. package/dist/src/Contacts/AddModal/ContactAddressDialog/index.d.ts +39 -0
  194. package/dist/src/Contacts/AddModal/ContactAddressDialog/locales/index.d.ts +10 -0
  195. package/dist/src/Contacts/AddModal/ContactForm/FieldInput.d.ts +39 -0
  196. package/dist/src/Contacts/AddModal/ContactForm/FieldInputAccordion.d.ts +12 -0
  197. package/dist/src/Contacts/AddModal/ContactForm/FieldInputArray.d.ts +14 -0
  198. package/dist/src/Contacts/AddModal/ContactForm/FieldInputLayout.d.ts +22 -0
  199. package/dist/src/Contacts/AddModal/ContactForm/FieldInputWrapper.d.ts +19 -0
  200. package/dist/src/Contacts/AddModal/ContactForm/HasValueCondition.d.ts +18 -0
  201. package/dist/src/Contacts/AddModal/ContactForm/HasValueCondition.spec.d.ts +1 -0
  202. package/dist/src/Contacts/AddModal/ContactForm/RelatedContactList.d.ts +15 -0
  203. package/dist/src/Contacts/AddModal/ContactForm/TextFieldCustomLabelSelect.d.ts +9 -0
  204. package/dist/src/Contacts/AddModal/ContactForm/TextFieldSelect.d.ts +5 -0
  205. package/dist/src/Contacts/AddModal/ContactForm/contactToFormValues.d.ts +6 -0
  206. package/dist/src/Contacts/AddModal/ContactForm/contactToFormValues.spec.d.ts +1 -0
  207. package/dist/src/Contacts/AddModal/ContactForm/fieldsConfig.d.ts +4 -0
  208. package/dist/src/Contacts/AddModal/ContactForm/formValuesToContact.d.ts +7 -0
  209. package/dist/src/Contacts/AddModal/ContactForm/formValuesToContact.spec.d.ts +1 -0
  210. package/dist/src/Contacts/AddModal/ContactForm/helpers.d.ts +35 -0
  211. package/dist/src/Contacts/AddModal/ContactForm/helpers.spec.d.ts +1 -0
  212. package/dist/src/Contacts/AddModal/ContactForm/index.d.ts +17 -0
  213. package/dist/src/Contacts/AddModal/ContactForm/index.spec.d.ts +1 -0
  214. package/dist/src/Contacts/AddModal/ContactForm/locales/index.d.ts +10 -0
  215. package/dist/src/Contacts/AddModal/CustomLabelDialog/index.d.ts +22 -0
  216. package/dist/src/Contacts/AddModal/CustomLabelDialog/locales/index.d.ts +10 -0
  217. package/dist/src/Contacts/AddModal/index.d.ts +8 -0
  218. package/dist/src/Contacts/AddModal/locales/index.d.ts +10 -0
  219. package/dist/src/Contacts/AddModal/mocks.d.ts +276 -0
  220. package/dist/src/Contacts/AddModal/types.d.ts +188 -0
  221. package/dist/src/Contacts/GroupsSelect/GroupCreation.d.ts +3 -0
  222. package/dist/src/Contacts/GroupsSelect/GroupsSelect.d.ts +56 -0
  223. package/dist/src/Contacts/GroupsSelect/GroupsSelect.spec.d.ts +22 -0
  224. package/dist/src/Contacts/GroupsSelect/GroupsSelectProvider.d.ts +5 -0
  225. package/dist/src/Contacts/GroupsSelect/SelectBox/Control.d.ts +14 -0
  226. package/dist/src/Contacts/GroupsSelect/SelectBox/EditGroupName.d.ts +7 -0
  227. package/dist/src/Contacts/GroupsSelect/SelectBox/Menu.d.ts +7 -0
  228. package/dist/src/Contacts/GroupsSelect/SelectBox/Option.d.ts +18 -0
  229. package/dist/src/Contacts/GroupsSelect/SelectBox/SelectContainer.d.ts +2 -0
  230. package/dist/src/Contacts/GroupsSelect/helpers.d.ts +9 -0
  231. package/dist/src/Contacts/GroupsSelect/locales/index.d.ts +10 -0
  232. package/dist/src/Contacts/GroupsSelect/useGroupSelect.d.ts +11 -0
  233. package/dist/src/Contacts/Header/GroupsSelection.d.ts +7 -0
  234. package/dist/src/Contacts/Header/ImportDropdown.d.ts +4 -0
  235. package/dist/src/Contacts/Header/SearchInput.d.ts +4 -0
  236. package/dist/src/Contacts/Header/index.d.ts +26 -0
  237. package/dist/src/Contacts/Header/locales/index.d.ts +10 -0
  238. package/dist/src/ContactsList/ContactCell.d.ts +8 -0
  239. package/dist/src/ContactsList/ContactRow.d.ts +16 -0
  240. package/dist/src/ContactsList/ContactRow.spec.d.ts +1 -0
  241. package/dist/src/ContactsList/Contacts/ContactCozy.d.ts +14 -0
  242. package/dist/src/ContactsList/Contacts/ContactEmail.d.ts +14 -0
  243. package/dist/src/ContactsList/Contacts/ContactIdentity.d.ts +10 -0
  244. package/dist/src/ContactsList/Contacts/ContactName.d.ts +10 -0
  245. package/dist/src/ContactsList/Contacts/ContactPhone.d.ts +14 -0
  246. package/dist/src/ContactsList/ContactsList.d.ts +2 -0
  247. package/dist/src/ContactsList/helpers.d.ts +9 -0
  248. package/dist/src/ContactsList/helpers.spec.d.ts +1 -0
  249. package/dist/src/ContactsList/index.d.ts +2 -0
  250. package/dist/src/ContactsList/locales/withContactsListLocales.d.ts +12 -0
  251. package/dist/src/ContactsListModal/AddContact/AddContactActions.d.ts +2 -0
  252. package/dist/src/ContactsListModal/AddContact/AddContactContent.d.ts +2 -0
  253. package/dist/src/ContactsListModal/AddContact/AddContactDialog.d.ts +6 -0
  254. package/dist/src/ContactsListModal/AddContact/AddContactTitle.d.ts +2 -0
  255. package/dist/src/ContactsListModal/AddContact/helpers.d.ts +6 -0
  256. package/dist/src/ContactsListModal/AddContact/helpers.spec.d.ts +1 -0
  257. package/dist/src/ContactsListModal/ContactsListContent.d.ts +2 -0
  258. package/dist/src/ContactsListModal/ContactsListModal.d.ts +20 -0
  259. package/dist/src/ContactsListModal/ContactsListModalWithQuery.d.ts +12 -0
  260. package/dist/src/ContactsListModal/EmptyMessage.d.ts +2 -0
  261. package/dist/src/ContactsListModal/MobileHeader.d.ts +16 -0
  262. package/dist/src/ContactsListModal/index.d.ts +2 -0
  263. package/dist/src/ContactsListModal/mockClient.d.ts +3 -0
  264. package/dist/src/ContactsListModal/queries.d.ts +7 -0
  265. package/dist/src/ContactsListModal/withContactsListLocales.d.ts +7 -0
  266. package/dist/src/Dialogs/AuthenticationDialogs/index.d.ts +2 -0
  267. package/dist/src/Field/index.d.ts +53 -0
  268. package/dist/src/Field/index.spec.d.ts +1 -0
  269. package/dist/src/FileImageLoader/checkImageSource.d.ts +1 -0
  270. package/dist/src/FileImageLoader/index.d.ts +45 -0
  271. package/dist/src/FileImageLoader/index.spec.d.ts +1 -0
  272. package/dist/src/FilePicker/FilePickerBody.d.ts +19 -0
  273. package/dist/src/FilePicker/FilePickerBodyItem.d.ts +22 -0
  274. package/dist/src/FilePicker/FilePickerBodyItem.spec.d.ts +1 -0
  275. package/dist/src/FilePicker/FilePickerBreadcrumb.d.ts +13 -0
  276. package/dist/src/FilePicker/FilePickerFooter.d.ts +15 -0
  277. package/dist/src/FilePicker/FilePickerFooter.spec.d.ts +1 -0
  278. package/dist/src/FilePicker/FilePickerHeader.d.ts +14 -0
  279. package/dist/src/FilePicker/docs/DemoProvider.d.ts +23 -0
  280. package/dist/src/FilePicker/helpers.d.ts +3 -0
  281. package/dist/src/FilePicker/helpers.spec.d.ts +1 -0
  282. package/dist/src/FilePicker/index.d.ts +22 -0
  283. package/dist/src/FilePicker/queries.d.ts +14 -0
  284. package/dist/src/Intent/IntentDialogOpener/index.d.ts +32 -0
  285. package/dist/src/Intent/IntentIframe/index.d.ts +8 -0
  286. package/dist/src/ListItem/ExpandedAttributes/ExpandedAttribute.d.ts +14 -0
  287. package/dist/src/ListItem/ExpandedAttributes/helpers.d.ts +43 -0
  288. package/dist/src/ListItem/ExpandedAttributes/helpers.spec.d.ts +1 -0
  289. package/dist/src/ListItem/ExpandedAttributes/index.d.ts +2 -0
  290. package/dist/src/ListItem/ListItemBase/Renaming/RenameDialog.d.ts +2 -0
  291. package/dist/src/ListItem/ListItemBase/Renaming/RenameInput.d.ts +12 -0
  292. package/dist/src/ListItem/ListItemBase/Renaming/helpers.d.ts +1 -0
  293. package/dist/src/ListItem/ListItemBase/index.d.ts +2 -0
  294. package/dist/src/ListItem/ListItemByDoc/index.d.ts +46 -0
  295. package/dist/src/ListItem/ListItemContact/helpers.d.ts +1 -0
  296. package/dist/src/ListItem/ListItemContact/helpers.spec.d.ts +1 -0
  297. package/dist/src/ListItem/ListItemContact/index.d.ts +35 -0
  298. package/dist/src/ListItem/ListItemContact/useActions.d.ts +2 -0
  299. package/dist/src/ListItem/ListItemFile/ExpirationAnnotation.d.ts +2 -0
  300. package/dist/src/ListItem/ListItemFile/ItemIcon.d.ts +12 -0
  301. package/dist/src/ListItem/ListItemFile/PrimaryText.d.ts +12 -0
  302. package/dist/src/ListItem/ListItemFile/SecondaryText.d.ts +12 -0
  303. package/dist/src/ListItem/ListItemFile/index.d.ts +37 -0
  304. package/dist/src/ListItem/hoc/withListItemLocales.d.ts +12 -0
  305. package/dist/src/Paywall/MaxAccountsByKonnectorPaywall.d.ts +2 -0
  306. package/dist/src/Paywall/MaxAccountsPaywall.d.ts +2 -0
  307. package/dist/src/Paywall/MaxDaysToCapturePaywall.d.ts +2 -0
  308. package/dist/src/Paywall/MaxPapersPaywall.d.ts +2 -0
  309. package/dist/src/Paywall/OnlyOfficePaywall.d.ts +16 -0
  310. package/dist/src/Paywall/PasswordSharingPaywall.d.ts +10 -0
  311. package/dist/src/Paywall/Paywall.d.ts +2 -0
  312. package/dist/src/Paywall/Paywall.spec.d.ts +1 -0
  313. package/dist/src/Paywall/QuotaPaywall.d.ts +13 -0
  314. package/dist/src/Paywall/helpers.d.ts +1 -0
  315. package/dist/src/Paywall/index.d.ts +7 -0
  316. package/dist/src/Paywall/locales/withPaywallLocales.d.ts +2 -0
  317. package/dist/src/Qualification/QualificationGrid/helpers.d.ts +1 -0
  318. package/dist/src/Qualification/QualificationGrid/index.d.ts +2 -0
  319. package/dist/src/Qualification/QualificationGrid/locales/withLocales.d.ts +12 -0
  320. package/dist/src/Qualification/QualificationIcon/index.d.ts +13 -0
  321. package/dist/src/Qualification/QualificationItem/index.d.ts +17 -0
  322. package/dist/src/Qualification/QualificationModal/helpers.d.ts +14 -0
  323. package/dist/src/Qualification/QualificationModal/helpers.spec.d.ts +1 -0
  324. package/dist/src/Qualification/QualificationModal/index.d.ts +16 -0
  325. package/dist/src/Qualification/QualificationModal/locales/index.d.ts +10 -0
  326. package/dist/src/ShortcutTile/index.d.ts +13 -0
  327. package/dist/src/SquareAppIcon/SquareAppIcon.spec.d.ts +1 -0
  328. package/dist/src/SquareAppIcon/index.d.ts +26 -0
  329. package/dist/src/Storage/StorageButton.d.ts +4 -0
  330. package/dist/src/Storage/StorageProgress.d.ts +5 -0
  331. package/dist/src/Storage/index.d.ts +14 -0
  332. package/dist/src/Storage/locales/index.d.ts +10 -0
  333. package/dist/src/UploadQueue/FileUploadProgress.d.ts +4 -0
  334. package/dist/src/UploadQueue/Item.d.ts +3 -0
  335. package/dist/src/UploadQueue/Pending.d.ts +3 -0
  336. package/dist/src/UploadQueue/RemainingTime.d.ts +4 -0
  337. package/dist/src/UploadQueue/helpers.d.ts +1 -0
  338. package/dist/src/UploadQueue/index.d.ts +42 -0
  339. package/dist/src/UploadQueue/index.spec.d.ts +1 -0
  340. package/dist/src/UploadQueue/useStatusIcon.d.ts +1 -0
  341. package/dist/src/hooks/useClientErrors.d.ts +29 -0
  342. package/dist/src/hooks/useClientErrors.spec.d.ts +1 -0
  343. package/dist/src/proptypes.d.ts +18 -0
  344. package/dist/src/providers/CozyTheme/CozyThemeWithQuery.d.ts +2 -0
  345. package/dist/src/providers/CozyTheme/index.d.ts +24 -0
  346. package/dist/src/providers/CozyTheme/queries.d.ts +8 -0
  347. package/dist/src/providers/DemoProvider.d.ts +6 -0
  348. package/dist/src/providers/Intent/index.d.ts +9 -0
  349. package/dist/stylesheet.css +898 -0
  350. package/dist/test/I18n.d.ts +6 -0
  351. package/dist/types.d.js +1 -0
  352. package/jest.config.js +20 -0
  353. package/package.json +76 -0
  354. package/preprocess.js +16 -0
  355. package/src/AppIcon/Readme.md +96 -0
  356. package/src/AppIcon/index.jsx +168 -0
  357. package/src/AppIcon/index.spec.js +145 -0
  358. package/src/AppIcon/styles.styl +37 -0
  359. package/src/AppLinker/Readme.md +32 -0
  360. package/src/AppLinker/__snapshots__/index.spec.jsx.snap +13 -0
  361. package/src/AppLinker/index.jsx +107 -0
  362. package/src/AppLinker/index.spec.jsx +60 -0
  363. package/src/AppLinker/native.config.js +1 -0
  364. package/src/AppLinker/native.js +57 -0
  365. package/src/AppLinker/native.spec.js +120 -0
  366. package/src/AppSections/Readme.md +35 -0
  367. package/src/AppSections/Sections.jsx +285 -0
  368. package/src/AppSections/Sections.styl +4 -0
  369. package/src/AppSections/__snapshots__/search.spec.js.snap +972 -0
  370. package/src/AppSections/_mockApps.js +197 -0
  371. package/src/AppSections/_testApps.js +151 -0
  372. package/src/AppSections/categories.js +138 -0
  373. package/src/AppSections/categories.spec.js +289 -0
  374. package/src/AppSections/components/AppsSection.jsx +82 -0
  375. package/src/AppSections/components/AppsSection.spec.jsx +50 -0
  376. package/src/AppSections/components/AppsSection.styl +7 -0
  377. package/src/AppSections/components/DropdownFilter.jsx +50 -0
  378. package/src/AppSections/components/DropdownFilter.styl +14 -0
  379. package/src/AppSections/constants.js +9 -0
  380. package/src/AppSections/generateI18nConfig.ts +23 -0
  381. package/src/AppSections/helpers.js +16 -0
  382. package/src/AppSections/helpers.spec.js +40 -0
  383. package/src/AppSections/index.jsx +3 -0
  384. package/src/AppSections/index.spec.jsx +137 -0
  385. package/src/AppSections/locales/en.json +37 -0
  386. package/src/AppSections/locales/fr.json +37 -0
  387. package/src/AppSections/locales/ru.json +37 -0
  388. package/src/AppSections/locales/vi.json +37 -0
  389. package/src/AppSections/search.js +104 -0
  390. package/src/AppSections/search.spec.js +158 -0
  391. package/src/AppTile/AppTile.spec.jsx +117 -0
  392. package/src/AppTile/Readme.md +24 -0
  393. package/src/AppTile/helpers.js +25 -0
  394. package/src/AppTile/index.jsx +139 -0
  395. package/src/AppTile/locales/en.json +9 -0
  396. package/src/AppTile/locales/fr.json +9 -0
  397. package/src/AppTile/locales/ru.json +9 -0
  398. package/src/AppTile/locales/vi.json +9 -0
  399. package/src/AppTile/styles.styl +27 -0
  400. package/src/CipherIcon/Readme.md +14 -0
  401. package/src/CipherIcon/index.jsx +46 -0
  402. package/src/CipherIcon/index.spec.jsx +53 -0
  403. package/src/CollectionField/Readme.md +41 -0
  404. package/src/CollectionField/index.jsx +141 -0
  405. package/src/CollectionField/styles.styl +15 -0
  406. package/src/ContactPicker/Readme.md +26 -0
  407. package/src/ContactPicker/index.jsx +86 -0
  408. package/src/ContactPicker/styles.styl +5 -0
  409. package/src/Contacts/AddModal/ContactAddressDialog/helpers.js +22 -0
  410. package/src/Contacts/AddModal/ContactAddressDialog/helpers.spec.js +64 -0
  411. package/src/Contacts/AddModal/ContactAddressDialog/index.jsx +85 -0
  412. package/src/Contacts/AddModal/ContactAddressDialog/locales/en.json +25 -0
  413. package/src/Contacts/AddModal/ContactAddressDialog/locales/fr.json +25 -0
  414. package/src/Contacts/AddModal/ContactAddressDialog/locales/index.jsx +11 -0
  415. package/src/Contacts/AddModal/ContactAddressDialog/locales/ru.json +25 -0
  416. package/src/Contacts/AddModal/ContactAddressDialog/locales/vi.json +25 -0
  417. package/src/Contacts/AddModal/ContactForm/FieldInput.jsx +124 -0
  418. package/src/Contacts/AddModal/ContactForm/FieldInputAccordion.jsx +58 -0
  419. package/src/Contacts/AddModal/ContactForm/FieldInputArray.jsx +81 -0
  420. package/src/Contacts/AddModal/ContactForm/FieldInputLayout.jsx +77 -0
  421. package/src/Contacts/AddModal/ContactForm/FieldInputWrapper.jsx +44 -0
  422. package/src/Contacts/AddModal/ContactForm/HasValueCondition.jsx +31 -0
  423. package/src/Contacts/AddModal/ContactForm/HasValueCondition.spec.jsx +79 -0
  424. package/src/Contacts/AddModal/ContactForm/RelatedContactList.jsx +37 -0
  425. package/src/Contacts/AddModal/ContactForm/TextFieldCustomLabelSelect.jsx +79 -0
  426. package/src/Contacts/AddModal/ContactForm/TextFieldSelect.jsx +40 -0
  427. package/src/Contacts/AddModal/ContactForm/__snapshots__/HasValueCondition.spec.jsx.snap +33 -0
  428. package/src/Contacts/AddModal/ContactForm/contactToFormValues.js +109 -0
  429. package/src/Contacts/AddModal/ContactForm/contactToFormValues.spec.js +133 -0
  430. package/src/Contacts/AddModal/ContactForm/fieldsConfig.jsx +357 -0
  431. package/src/Contacts/AddModal/ContactForm/formValuesToContact.js +111 -0
  432. package/src/Contacts/AddModal/ContactForm/formValuesToContact.spec.js +557 -0
  433. package/src/Contacts/AddModal/ContactForm/helpers.js +393 -0
  434. package/src/Contacts/AddModal/ContactForm/helpers.spec.js +391 -0
  435. package/src/Contacts/AddModal/ContactForm/index.jsx +138 -0
  436. package/src/Contacts/AddModal/ContactForm/index.spec.jsx +301 -0
  437. package/src/Contacts/AddModal/ContactForm/locales/en.json +75 -0
  438. package/src/Contacts/AddModal/ContactForm/locales/fr.json +75 -0
  439. package/src/Contacts/AddModal/ContactForm/locales/index.jsx +11 -0
  440. package/src/Contacts/AddModal/ContactForm/locales/ru.json +75 -0
  441. package/src/Contacts/AddModal/ContactForm/locales/vi.json +75 -0
  442. package/src/Contacts/AddModal/ContactForm/styles.styl +2 -0
  443. package/src/Contacts/AddModal/CustomLabelDialog/index.jsx +109 -0
  444. package/src/Contacts/AddModal/CustomLabelDialog/locales/en.json +15 -0
  445. package/src/Contacts/AddModal/CustomLabelDialog/locales/fr.json +15 -0
  446. package/src/Contacts/AddModal/CustomLabelDialog/locales/index.jsx +11 -0
  447. package/src/Contacts/AddModal/CustomLabelDialog/locales/ru.json +15 -0
  448. package/src/Contacts/AddModal/CustomLabelDialog/locales/vi.json +15 -0
  449. package/src/Contacts/AddModal/Readme.md +55 -0
  450. package/src/Contacts/AddModal/index.jsx +86 -0
  451. package/src/Contacts/AddModal/locales/en.json +13 -0
  452. package/src/Contacts/AddModal/locales/fr.json +13 -0
  453. package/src/Contacts/AddModal/locales/index.jsx +11 -0
  454. package/src/Contacts/AddModal/locales/ru.json +13 -0
  455. package/src/Contacts/AddModal/locales/vi.json +13 -0
  456. package/src/Contacts/AddModal/mocks.js +299 -0
  457. package/src/Contacts/AddModal/types.js +102 -0
  458. package/src/Contacts/GroupsSelect/GroupCreation.jsx +96 -0
  459. package/src/Contacts/GroupsSelect/GroupsSelect.jsx +159 -0
  460. package/src/Contacts/GroupsSelect/GroupsSelect.spec.jsx +249 -0
  461. package/src/Contacts/GroupsSelect/GroupsSelectProvider.jsx +40 -0
  462. package/src/Contacts/GroupsSelect/Readme.md +1 -0
  463. package/src/Contacts/GroupsSelect/SelectBox/Control.jsx +37 -0
  464. package/src/Contacts/GroupsSelect/SelectBox/EditGroupName.jsx +52 -0
  465. package/src/Contacts/GroupsSelect/SelectBox/Menu.jsx +27 -0
  466. package/src/Contacts/GroupsSelect/SelectBox/Option.jsx +71 -0
  467. package/src/Contacts/GroupsSelect/SelectBox/SelectContainer.jsx +15 -0
  468. package/src/Contacts/GroupsSelect/SelectBox/styles.styl +2 -0
  469. package/src/Contacts/GroupsSelect/helpers.js +25 -0
  470. package/src/Contacts/GroupsSelect/locales/en.json +21 -0
  471. package/src/Contacts/GroupsSelect/locales/fr.json +21 -0
  472. package/src/Contacts/GroupsSelect/locales/index.jsx +11 -0
  473. package/src/Contacts/GroupsSelect/locales/ru.json +21 -0
  474. package/src/Contacts/GroupsSelect/locales/vi.json +21 -0
  475. package/src/Contacts/GroupsSelect/styles.styl +48 -0
  476. package/src/Contacts/GroupsSelect/useGroupSelect.jsx +89 -0
  477. package/src/Contacts/Header/GroupsSelection.jsx +75 -0
  478. package/src/Contacts/Header/ImportDropdown.jsx +80 -0
  479. package/src/Contacts/Header/Readme.md +38 -0
  480. package/src/Contacts/Header/SearchInput.jsx +19 -0
  481. package/src/Contacts/Header/index.jsx +80 -0
  482. package/src/Contacts/Header/locales/en.json +15 -0
  483. package/src/Contacts/Header/locales/fr.json +15 -0
  484. package/src/Contacts/Header/locales/index.jsx +11 -0
  485. package/src/Contacts/Header/locales/ru.json +15 -0
  486. package/src/Contacts/Header/locales/vi.json +15 -0
  487. package/src/Contacts/Readme.md +1 -0
  488. package/src/ContactsList/ContactCell.jsx +23 -0
  489. package/src/ContactsList/ContactRow.jsx +46 -0
  490. package/src/ContactsList/ContactRow.spec.js +75 -0
  491. package/src/ContactsList/Contacts/ContactCozy.jsx +23 -0
  492. package/src/ContactsList/Contacts/ContactEmail.jsx +23 -0
  493. package/src/ContactsList/Contacts/ContactIdentity.jsx +57 -0
  494. package/src/ContactsList/Contacts/ContactName.jsx +43 -0
  495. package/src/ContactsList/Contacts/ContactPhone.jsx +24 -0
  496. package/src/ContactsList/ContactsList.jsx +52 -0
  497. package/src/ContactsList/Readme.md +47 -0
  498. package/src/ContactsList/_mockContacts.json +2494 -0
  499. package/src/ContactsList/helpers.js +132 -0
  500. package/src/ContactsList/helpers.spec.js +150 -0
  501. package/src/ContactsList/index.js +3 -0
  502. package/src/ContactsList/locales/en.json +5 -0
  503. package/src/ContactsList/locales/fr.json +5 -0
  504. package/src/ContactsList/locales/ru.json +5 -0
  505. package/src/ContactsList/locales/vi.json +5 -0
  506. package/src/ContactsList/locales/withContactsListLocales.jsx +15 -0
  507. package/src/ContactsList/styles.styl +35 -0
  508. package/src/ContactsListModal/AddContact/AddContactActions.jsx +16 -0
  509. package/src/ContactsListModal/AddContact/AddContactContent.jsx +60 -0
  510. package/src/ContactsListModal/AddContact/AddContactDialog.jsx +38 -0
  511. package/src/ContactsListModal/AddContact/AddContactTitle.jsx +9 -0
  512. package/src/ContactsListModal/AddContact/helpers.js +18 -0
  513. package/src/ContactsListModal/AddContact/helpers.spec.js +74 -0
  514. package/src/ContactsListModal/AddContact/styles.styl +2 -0
  515. package/src/ContactsListModal/ContactsListContent.jsx +74 -0
  516. package/src/ContactsListModal/ContactsListModal.jsx +143 -0
  517. package/src/ContactsListModal/ContactsListModalWithQuery.jsx +27 -0
  518. package/src/ContactsListModal/EmptyMessage.jsx +18 -0
  519. package/src/ContactsListModal/MobileHeader.jsx +50 -0
  520. package/src/ContactsListModal/Readme.md +45 -0
  521. package/src/ContactsListModal/index.jsx +28 -0
  522. package/src/ContactsListModal/locales/en.json +11 -0
  523. package/src/ContactsListModal/locales/fr.json +11 -0
  524. package/src/ContactsListModal/locales/ru.json +11 -0
  525. package/src/ContactsListModal/locales/vi.json +11 -0
  526. package/src/ContactsListModal/mockClient.jsx +47 -0
  527. package/src/ContactsListModal/queries.js +12 -0
  528. package/src/ContactsListModal/styles.styl +12 -0
  529. package/src/ContactsListModal/withContactsListLocales.jsx +11 -0
  530. package/src/Dialogs/AuthenticationDialogs/index.jsx +115 -0
  531. package/src/Field/Readme.md +357 -0
  532. package/src/Field/index.jsx +317 -0
  533. package/src/Field/index.spec.js +59 -0
  534. package/src/Field/styles.styl +41 -0
  535. package/src/FileImageLoader/Readme.md +112 -0
  536. package/src/FileImageLoader/checkImageSource.js +29 -0
  537. package/src/FileImageLoader/index.jsx +186 -0
  538. package/src/FileImageLoader/index.spec.jsx +176 -0
  539. package/src/FilePicker/FilePickerBody.jsx +111 -0
  540. package/src/FilePicker/FilePickerBodyItem.jsx +126 -0
  541. package/src/FilePicker/FilePickerBodyItem.spec.jsx +164 -0
  542. package/src/FilePicker/FilePickerBreadcrumb.jsx +55 -0
  543. package/src/FilePicker/FilePickerFooter.jsx +42 -0
  544. package/src/FilePicker/FilePickerFooter.spec.jsx +41 -0
  545. package/src/FilePicker/FilePickerHeader.jsx +89 -0
  546. package/src/FilePicker/Readme.md +50 -0
  547. package/src/FilePicker/docs/DemoProvider.jsx +273 -0
  548. package/src/FilePicker/helpers.js +46 -0
  549. package/src/FilePicker/helpers.spec.js +84 -0
  550. package/src/FilePicker/index.jsx +94 -0
  551. package/src/FilePicker/locales/en.json +8 -0
  552. package/src/FilePicker/locales/fr.json +8 -0
  553. package/src/FilePicker/locales/ru.json +8 -0
  554. package/src/FilePicker/locales/vi.json +8 -0
  555. package/src/FilePicker/queries.js +37 -0
  556. package/src/FilePicker/styles.styl +18 -0
  557. package/src/Intent/IntentDialogOpener/Readme.md +25 -0
  558. package/src/Intent/IntentDialogOpener/index.jsx +110 -0
  559. package/src/Intent/IntentIframe/Readme.md +80 -0
  560. package/src/Intent/IntentIframe/index.jsx +112 -0
  561. package/src/Intent/IntentIframe/styles.styl +21 -0
  562. package/src/ListItem/ExpandedAttributes/ExpandedAttribute.jsx +40 -0
  563. package/src/ListItem/ExpandedAttributes/helpers.js +214 -0
  564. package/src/ListItem/ExpandedAttributes/helpers.spec.js +175 -0
  565. package/src/ListItem/ExpandedAttributes/index.jsx +62 -0
  566. package/src/ListItem/ListItemBase/Renaming/RenameDialog.jsx +38 -0
  567. package/src/ListItem/ListItemBase/Renaming/RenameInput.jsx +134 -0
  568. package/src/ListItem/ListItemBase/Renaming/helpers.js +35 -0
  569. package/src/ListItem/ListItemBase/index.jsx +116 -0
  570. package/src/ListItem/ListItemByDoc/index.jsx +103 -0
  571. package/src/ListItem/ListItemContact/helpers.js +28 -0
  572. package/src/ListItem/ListItemContact/helpers.spec.js +41 -0
  573. package/src/ListItem/ListItemContact/index.jsx +68 -0
  574. package/src/ListItem/ListItemContact/useActions.jsx +22 -0
  575. package/src/ListItem/ListItemFile/ExpirationAnnotation.jsx +39 -0
  576. package/src/ListItem/ListItemFile/ItemIcon.jsx +49 -0
  577. package/src/ListItem/ListItemFile/PrimaryText.jsx +38 -0
  578. package/src/ListItem/ListItemFile/SecondaryText.jsx +36 -0
  579. package/src/ListItem/ListItemFile/index.jsx +75 -0
  580. package/src/ListItem/Readme.md +211 -0
  581. package/src/ListItem/hoc/withListItemLocales.jsx +15 -0
  582. package/src/ListItem/locales/en.json +75 -0
  583. package/src/ListItem/locales/fr.json +75 -0
  584. package/src/ListItem/locales/ru.json +75 -0
  585. package/src/ListItem/locales/vi.json +75 -0
  586. package/src/Paywall/MaxAccountsByKonnectorPaywall.jsx +32 -0
  587. package/src/Paywall/MaxAccountsPaywall.jsx +27 -0
  588. package/src/Paywall/MaxDaysToCapturePaywall.jsx +27 -0
  589. package/src/Paywall/MaxPapersPaywall.jsx +29 -0
  590. package/src/Paywall/OnlyOfficePaywall.jsx +24 -0
  591. package/src/Paywall/PasswordSharingPaywall.jsx +20 -0
  592. package/src/Paywall/Paywall.jsx +130 -0
  593. package/src/Paywall/Paywall.spec.jsx +228 -0
  594. package/src/Paywall/QuotaPaywall.jsx +18 -0
  595. package/src/Paywall/Readme.md +139 -0
  596. package/src/Paywall/helpers.js +22 -0
  597. package/src/Paywall/howto.md +28 -0
  598. package/src/Paywall/index.jsx +7 -0
  599. package/src/Paywall/locales/en.json +95 -0
  600. package/src/Paywall/locales/fr.json +95 -0
  601. package/src/Paywall/locales/ru.json +95 -0
  602. package/src/Paywall/locales/vi.json +95 -0
  603. package/src/Paywall/locales/withPaywallLocales.jsx +15 -0
  604. package/src/Qualification/QualificationGrid/Readme.md +26 -0
  605. package/src/Qualification/QualificationGrid/helpers.js +4 -0
  606. package/src/Qualification/QualificationGrid/index.jsx +91 -0
  607. package/src/Qualification/QualificationGrid/locales/en.json +15 -0
  608. package/src/Qualification/QualificationGrid/locales/fr.json +15 -0
  609. package/src/Qualification/QualificationGrid/locales/ru.json +15 -0
  610. package/src/Qualification/QualificationGrid/locales/vi.json +15 -0
  611. package/src/Qualification/QualificationGrid/locales/withLocales.jsx +15 -0
  612. package/src/Qualification/QualificationIcon/Readme.md +14 -0
  613. package/src/Qualification/QualificationIcon/index.jsx +104 -0
  614. package/src/Qualification/QualificationItem/Readme.md +8 -0
  615. package/src/Qualification/QualificationItem/index.jsx +64 -0
  616. package/src/Qualification/QualificationModal/Readme.md +28 -0
  617. package/src/Qualification/QualificationModal/helpers.js +63 -0
  618. package/src/Qualification/QualificationModal/helpers.spec.js +61 -0
  619. package/src/Qualification/QualificationModal/index.jsx +71 -0
  620. package/src/Qualification/QualificationModal/locales/en.json +6 -0
  621. package/src/Qualification/QualificationModal/locales/fr.json +6 -0
  622. package/src/Qualification/QualificationModal/locales/index.jsx +11 -0
  623. package/src/Qualification/QualificationModal/locales/ru.json +6 -0
  624. package/src/Qualification/QualificationModal/locales/vi.json +6 -0
  625. package/src/ShortcutTile/index.tsx +60 -0
  626. package/src/SquareAppIcon/Readme.md +185 -0
  627. package/src/SquareAppIcon/SquareAppIcon.spec.js +86 -0
  628. package/src/SquareAppIcon/__snapshots__/SquareAppIcon.spec.js.snap +474 -0
  629. package/src/SquareAppIcon/constants.json +6 -0
  630. package/src/SquareAppIcon/index.jsx +289 -0
  631. package/src/SquareAppIcon/styles.styl +141 -0
  632. package/src/Storage/Readme.md +45 -0
  633. package/src/Storage/StorageButton.jsx +34 -0
  634. package/src/Storage/StorageProgress.jsx +52 -0
  635. package/src/Storage/index.jsx +41 -0
  636. package/src/Storage/locales/en.json +7 -0
  637. package/src/Storage/locales/fr.json +7 -0
  638. package/src/Storage/locales/index.jsx +11 -0
  639. package/src/Storage/locales/ru.json +7 -0
  640. package/src/Storage/locales/vi.json +7 -0
  641. package/src/UploadQueue/FileUploadProgress.jsx +50 -0
  642. package/src/UploadQueue/Item.jsx +99 -0
  643. package/src/UploadQueue/Pending.jsx +12 -0
  644. package/src/UploadQueue/Readme.md +95 -0
  645. package/src/UploadQueue/RemainingTime.jsx +27 -0
  646. package/src/UploadQueue/helpers.js +3 -0
  647. package/src/UploadQueue/index.jsx +161 -0
  648. package/src/UploadQueue/index.spec.jsx +163 -0
  649. package/src/UploadQueue/locales/en.json +10 -0
  650. package/src/UploadQueue/locales/es.json +10 -0
  651. package/src/UploadQueue/locales/fr.json +10 -0
  652. package/src/UploadQueue/locales/ru.json +10 -0
  653. package/src/UploadQueue/locales/vi.json +10 -0
  654. package/src/UploadQueue/styles.styl +155 -0
  655. package/src/UploadQueue/useStatusIcon.js +32 -0
  656. package/src/hooks/useClientErrors.jsx +140 -0
  657. package/src/hooks/useClientErrors.spec.jsx +94 -0
  658. package/src/proptypes.js +20 -0
  659. package/src/providers/CozyTheme/CozyThemeWithQuery.jsx +25 -0
  660. package/src/providers/CozyTheme/Readme.md +88 -0
  661. package/src/providers/CozyTheme/index.jsx +35 -0
  662. package/src/providers/CozyTheme/queries.js +14 -0
  663. package/src/providers/DemoProvider.jsx +30 -0
  664. package/src/providers/Intent/index.jsx +83 -0
  665. package/src/types.d.ts +4 -0
  666. package/test/I18n.js +13 -0
  667. package/test/fileMock.js +3 -0
  668. package/test/jestsetup.js +1 -0
  669. package/tsconfig-build.json +16 -0
  670. package/tsconfig.json +9 -0
@@ -0,0 +1,2494 @@
1
+ [
2
+ {
3
+ "_id": "013a6414-9727-4a4e-8b35-d3b9946a17c6",
4
+ "_type": "io.cozy.contacts",
5
+ "email": [
6
+ {
7
+ "address": "isabelle.durand@cozycloud.cc",
8
+ "primary": true
9
+ }
10
+ ]
11
+ },
12
+ {
13
+ "_id": "013a6413-9726-4a4d-8b34-d3b9946a17c5",
14
+ "_type": "io.cozy.contacts",
15
+ "address": [
16
+ {
17
+ "city": "Greenville",
18
+ "country": "Bolivia, Plurinational State of",
19
+ "postcode": "12198",
20
+ "primary": true,
21
+ "street": "85 Paxton Street"
22
+ }
23
+ ],
24
+ "birthday": "1981-11-23",
25
+ "email": [
26
+ {
27
+ "address": "alexis.bickers@logico.club",
28
+ "primary": true
29
+ }
30
+ ],
31
+ "metadata": {
32
+ "version": 1
33
+ },
34
+ "fullname": "Alexis Bickers",
35
+ "me": true,
36
+ "phone": [
37
+ {
38
+ "number": "+33 (9)7 58 16 92 55",
39
+ "primary": true
40
+ }
41
+ ],
42
+ "relationships": {
43
+ "groups": {
44
+ "data": [
45
+ {
46
+ "_id": "group_id_work",
47
+ "_type": "io.cozy.contacts.groups"
48
+ }
49
+ ]
50
+ }
51
+ }
52
+ },
53
+ {
54
+ "_id": "0409957b-36c1-4a66-b4f7-316e1a06e8b8",
55
+ "_type": "io.cozy.contacts",
56
+ "address": [
57
+ {
58
+ "city": "Fargo",
59
+ "country": "Oman",
60
+ "postcode": "81957",
61
+ "primary": true,
62
+ "street": "54 Willow Avenue"
63
+ }
64
+ ],
65
+ "birthday": "1965-03-05",
66
+ "email": [
67
+ {
68
+ "address": "alexa.luck@grafixmedia.name",
69
+ "primary": true
70
+ }
71
+ ],
72
+ "name": {
73
+ "familyName": "Luck",
74
+ "givenName": "Alexa"
75
+ },
76
+ "phone": [
77
+ {
78
+ "number": "+33 (3)1 80 76 59 62",
79
+ "primary": true
80
+ }
81
+ ]
82
+ },
83
+ {
84
+ "_id": "07719549-2087-412e-8da2-e5c0b55fe7b8",
85
+ "_type": "io.cozy.contacts",
86
+ "address": [
87
+ {
88
+ "city": "Norfolk",
89
+ "country": "Tunisia",
90
+ "postcode": "33109",
91
+ "primary": true,
92
+ "street": "24 Blakeley Street"
93
+ }
94
+ ],
95
+ "birthday": "1970-04-07",
96
+ "email": [
97
+ {
98
+ "address": "rosanne.leath@conixco.name",
99
+ "primary": true
100
+ }
101
+ ],
102
+ "metadata": {
103
+ "version": 1
104
+ },
105
+ "name": {
106
+ "familyName": "Leath",
107
+ "givenName": "Rosanne"
108
+ },
109
+ "phone": [
110
+ {
111
+ "number": "+33 (9)4 11 94 93 17",
112
+ "primary": true
113
+ }
114
+ ],
115
+ "relationships": {
116
+ "groups": {
117
+ "data": [
118
+ {
119
+ "_id": "group_id_work",
120
+ "_type": "io.cozy.contacts.groups"
121
+ }
122
+ ]
123
+ }
124
+ }
125
+ },
126
+ {
127
+ "_id": "083bf60c-287b-45e9-b3d6-0e64ee2eee2d",
128
+ "_type": "io.cozy.contacts",
129
+ "address": [
130
+ {
131
+ "city": "Hobart",
132
+ "country": "Liechtenstein",
133
+ "postcode": "42424",
134
+ "primary": true,
135
+ "street": "47 Blakeley Street"
136
+ }
137
+ ],
138
+ "birthday": "1974-12-13",
139
+ "email": [
140
+ {
141
+ "address": "rosanne.lenihan@corerobotics.info",
142
+ "primary": true
143
+ }
144
+ ],
145
+ "name": {
146
+ "familyName": "Lenihan",
147
+ "givenName": "Rosanne"
148
+ },
149
+ "phone": [
150
+ {
151
+ "number": "+33 (3)3 86 10 59 74",
152
+ "primary": true
153
+ }
154
+ ]
155
+ },
156
+ {
157
+ "_id": "0c647009-9785-4d09-b18a-0f22d3bff233",
158
+ "_type": "io.cozy.contacts",
159
+ "address": [
160
+ {
161
+ "city": "Pheonix",
162
+ "country": "French Southern Territories",
163
+ "postcode": "60317",
164
+ "primary": true,
165
+ "street": "89 Haredale Road"
166
+ }
167
+ ],
168
+ "birthday": "1950-04-28",
169
+ "email": [
170
+ {
171
+ "address": "mitch.woodrum@opticast.org",
172
+ "primary": true
173
+ },
174
+ {
175
+ "address": "liza.bryd@multilingua.club",
176
+ "primary": false
177
+ }
178
+ ],
179
+ "metadata": {
180
+ "version": 1
181
+ },
182
+ "name": {
183
+ "familyName": "Woodrum",
184
+ "givenName": "Mitch"
185
+ },
186
+ "phone": [
187
+ {
188
+ "number": "+33 (9)7 70 95 95 36",
189
+ "primary": true
190
+ },
191
+ {
192
+ "number": "+33 (2)0 18 10 93 80",
193
+ "primary": false
194
+ }
195
+ ],
196
+ "relationships": {
197
+ "groups": {
198
+ "data": [
199
+ {
200
+ "_id": "group_id_family",
201
+ "_type": "io.cozy.contacts.groups"
202
+ }
203
+ ]
204
+ }
205
+ }
206
+ },
207
+ {
208
+ "_id": "0ea42f4a-28f1-432e-934a-68f9c50fe38e",
209
+ "_type": "io.cozy.contacts",
210
+ "address": [
211
+ {
212
+ "city": "Youngstown",
213
+ "country": "Chad",
214
+ "postcode": "38300",
215
+ "primary": true,
216
+ "street": "78 Bushey Crescent"
217
+ }
218
+ ],
219
+ "birthday": "1959-04-20",
220
+ "email": [
221
+ {
222
+ "address": "haydee.tindel@galcom.com",
223
+ "primary": true
224
+ }
225
+ ],
226
+ "name": {
227
+ "familyName": "Tindel",
228
+ "givenName": "Haydee"
229
+ },
230
+ "phone": [
231
+ {
232
+ "number": "+33 (8)7 11 08 64 48",
233
+ "primary": true
234
+ }
235
+ ]
236
+ },
237
+ {
238
+ "_id": "0ffe83ef-10cf-4be6-bf6c-a189f907e65a",
239
+ "_type": "io.cozy.contacts",
240
+ "address": [
241
+ {
242
+ "city": "Halifax",
243
+ "country": "New Caledonia",
244
+ "postcode": "87206",
245
+ "primary": true,
246
+ "street": "5 Mercer Street"
247
+ }
248
+ ],
249
+ "birthday": "1956-06-06",
250
+ "email": [
251
+ {
252
+ "address": "shea.brier@logico.club",
253
+ "primary": true
254
+ }
255
+ ],
256
+ "metadata": {
257
+ "version": 1
258
+ },
259
+ "name": {
260
+ "familyName": "Brier",
261
+ "givenName": "Shea"
262
+ },
263
+ "phone": [
264
+ {
265
+ "number": "+33 (0)8 43 39 94 21",
266
+ "primary": true
267
+ }
268
+ ],
269
+ "relationships": {
270
+ "groups": {
271
+ "data": [
272
+ {
273
+ "_id": "group_id_work",
274
+ "_type": "io.cozy.contacts.groups"
275
+ }
276
+ ]
277
+ }
278
+ }
279
+ },
280
+ {
281
+ "_id": "155e4c33-f6ad-45ee-816d-5eb0874225f2",
282
+ "_type": "io.cozy.contacts",
283
+ "address": [
284
+ {
285
+ "city": "Greenville",
286
+ "country": "Guadeloupe",
287
+ "postcode": "59663",
288
+ "primary": true,
289
+ "street": "87 Pitman Street"
290
+ }
291
+ ],
292
+ "email": [
293
+ {
294
+ "address": "neida.backer@hivemind.biz",
295
+ "primary": true
296
+ }
297
+ ],
298
+ "metadata": {
299
+ "version": 1
300
+ },
301
+ "name": {
302
+ "givenName": "Hivemind"
303
+ },
304
+ "phone": [
305
+ {
306
+ "number": "+33 (1)6 74 60 61 23",
307
+ "primary": true
308
+ }
309
+ ],
310
+ "relationships": {
311
+ "groups": {
312
+ "data": [
313
+ {
314
+ "_id": "group_id_work",
315
+ "_type": "io.cozy.contacts.groups"
316
+ },
317
+ {
318
+ "_id": "group_id_family",
319
+ "_type": "io.cozy.contacts.groups"
320
+ }
321
+ ]
322
+ }
323
+ }
324
+ },
325
+ {
326
+ "_id": "1816abd3-d371-482c-ae9d-33385fb8780d",
327
+ "_type": "io.cozy.contacts",
328
+ "address": [
329
+ {
330
+ "city": "Northampton",
331
+ "country": "Montenegro",
332
+ "postcode": "65005",
333
+ "primary": true,
334
+ "street": "96 Hinton Road"
335
+ }
336
+ ],
337
+ "email": [
338
+ {
339
+ "address": "edward.carter@tomiatech.com",
340
+ "primary": true
341
+ }
342
+ ],
343
+ "metadata": {
344
+ "version": 1
345
+ },
346
+ "name": {
347
+ "givenName": "Tomiatech"
348
+ },
349
+ "phone": [
350
+ {
351
+ "number": "+33 (4)8 48 86 77 17",
352
+ "primary": true
353
+ }
354
+ ],
355
+ "relationships": {
356
+ "groups": {
357
+ "data": [
358
+ {
359
+ "_id": "group_id_work",
360
+ "_type": "io.cozy.contacts.groups"
361
+ },
362
+ {
363
+ "_id": "group_id_family",
364
+ "_type": "io.cozy.contacts.groups"
365
+ }
366
+ ]
367
+ }
368
+ }
369
+ },
370
+ {
371
+ "_id": "1be291a9-0836-4c94-876b-5269fa901ed4",
372
+ "_type": "io.cozy.contacts",
373
+ "address": [
374
+ {
375
+ "city": "Northampton",
376
+ "country": "Tokelau",
377
+ "postcode": "56285",
378
+ "primary": true,
379
+ "street": "14 Faraday Street"
380
+ }
381
+ ],
382
+ "birthday": "1955-09-21",
383
+ "email": [
384
+ {
385
+ "address": "katelin.bourquin@unilogic.biz",
386
+ "primary": true
387
+ }
388
+ ],
389
+ "metadata": {
390
+ "version": 1
391
+ },
392
+ "name": {
393
+ "familyName": "Bourquin",
394
+ "givenName": "Katelin"
395
+ },
396
+ "phone": [
397
+ {
398
+ "number": "+33 (9)3 52 45 98 35",
399
+ "primary": true
400
+ }
401
+ ],
402
+ "relationships": {
403
+ "groups": {
404
+ "data": [
405
+ {
406
+ "_id": "group_id_work",
407
+ "_type": "io.cozy.contacts.groups"
408
+ }
409
+ ]
410
+ }
411
+ }
412
+ },
413
+ {
414
+ "_id": "23d3d724-d869-4def-841f-c85b499aa6a6",
415
+ "_type": "io.cozy.contacts",
416
+ "address": [
417
+ {
418
+ "city": "Waterbury",
419
+ "country": "Iceland",
420
+ "postcode": "69639",
421
+ "primary": true,
422
+ "street": "65 Faraday Street"
423
+ }
424
+ ],
425
+ "birthday": "1957-02-23",
426
+ "email": [
427
+ {
428
+ "address": "cory.verde@peersys.xyz",
429
+ "primary": true
430
+ }
431
+ ],
432
+ "metadata": {
433
+ "version": 1
434
+ },
435
+ "name": {
436
+ "familyName": "Verde",
437
+ "givenName": "Cory"
438
+ },
439
+ "phone": [
440
+ {
441
+ "number": "+33 (2)3 15 97 52 48",
442
+ "primary": true
443
+ }
444
+ ],
445
+ "relationships": {
446
+ "groups": {
447
+ "data": [
448
+ {
449
+ "_id": "group_id_work",
450
+ "_type": "io.cozy.contacts.groups"
451
+ }
452
+ ]
453
+ }
454
+ }
455
+ },
456
+ {
457
+ "_id": "24e83428-df51-46fd-97ed-1f7d94064548",
458
+ "_type": "io.cozy.contacts",
459
+ "address": [
460
+ {
461
+ "city": "Bangor",
462
+ "country": "Lesotho",
463
+ "postcode": "15002",
464
+ "primary": true,
465
+ "street": "93 Alexander Avenue"
466
+ }
467
+ ],
468
+ "birthday": "1952-12-29",
469
+ "email": [
470
+ {
471
+ "address": "aiden.bryd@citisys.info",
472
+ "primary": true
473
+ }
474
+ ],
475
+ "metadata": {
476
+ "version": 1
477
+ },
478
+ "name": {
479
+ "familyName": "Bryd",
480
+ "givenName": "Aiden"
481
+ },
482
+ "phone": [
483
+ {
484
+ "number": "+33 (1)4 80 11 59 28",
485
+ "primary": true
486
+ }
487
+ ],
488
+ "relationships": {
489
+ "groups": {
490
+ "data": [
491
+ {
492
+ "_id": "group_id_work",
493
+ "_type": "io.cozy.contacts.groups"
494
+ }
495
+ ]
496
+ }
497
+ }
498
+ },
499
+ {
500
+ "_id": "289a814a-0d7d-4c6d-aa6c-be8bd28456dd",
501
+ "_type": "io.cozy.contacts",
502
+ "address": [
503
+ {
504
+ "city": "Charleston",
505
+ "country": "South Georgia and the South Sandwich Islands",
506
+ "postcode": "79336",
507
+ "primary": true,
508
+ "street": "72 Walford Way"
509
+ }
510
+ ],
511
+ "birthday": "1988-04-29",
512
+ "email": [
513
+ {
514
+ "address": "maisha.kilmer@nitrosystems.eu",
515
+ "primary": true
516
+ }
517
+ ],
518
+ "metadata": {
519
+ "version": 1
520
+ },
521
+ "name": {
522
+ "familyName": "Kilmer",
523
+ "givenName": "Maisha"
524
+ },
525
+ "phone": [
526
+ {
527
+ "number": "+33 (0)5 89 50 15 43",
528
+ "primary": true
529
+ }
530
+ ],
531
+ "relationships": {
532
+ "groups": {
533
+ "data": [
534
+ {
535
+ "_id": "group_id_work",
536
+ "_type": "io.cozy.contacts.groups"
537
+ }
538
+ ]
539
+ }
540
+ }
541
+ },
542
+ {
543
+ "_id": "29fdda84-d786-4890-9fd6-842fed02d193",
544
+ "_type": "io.cozy.contacts",
545
+ "address": [
546
+ {
547
+ "city": "Melbourne",
548
+ "country": "French Polynesia",
549
+ "postcode": "47415",
550
+ "primary": true,
551
+ "street": "74 Orchard Road"
552
+ }
553
+ ],
554
+ "birthday": "1986-10-10",
555
+ "email": [
556
+ {
557
+ "address": "danny.stine@celmax.club",
558
+ "primary": true
559
+ }
560
+ ],
561
+ "name": {
562
+ "familyName": "Stine",
563
+ "givenName": "Danny"
564
+ },
565
+ "phone": [
566
+ {
567
+ "number": "+33 (3)8 94 64 96 17",
568
+ "primary": true
569
+ }
570
+ ]
571
+ },
572
+ {
573
+ "_id": "2a75a0e5-cc4b-4fdc-be4d-2ac24a802368",
574
+ "_type": "io.cozy.contacts",
575
+ "address": [
576
+ {
577
+ "city": "Charleston",
578
+ "country": "Madagascar",
579
+ "postcode": "18247",
580
+ "primary": true,
581
+ "street": "67 Hunt Street"
582
+ }
583
+ ],
584
+ "email": [
585
+ {
586
+ "address": "ivan.bryd@strategyline.eu",
587
+ "primary": true
588
+ }
589
+ ],
590
+ "metadata": {
591
+ "version": 1
592
+ },
593
+ "name": {
594
+ "givenName": "StrategyLine"
595
+ },
596
+ "phone": [
597
+ {
598
+ "number": "+33 (3)8 15 32 28 30",
599
+ "primary": true
600
+ }
601
+ ],
602
+ "relationships": {
603
+ "groups": {
604
+ "data": [
605
+ {
606
+ "_id": "group_id_work",
607
+ "_type": "io.cozy.contacts.groups"
608
+ },
609
+ {
610
+ "_id": "group_id_family",
611
+ "_type": "io.cozy.contacts.groups"
612
+ }
613
+ ]
614
+ }
615
+ }
616
+ },
617
+ {
618
+ "_id": "3043b044-072b-464f-b301-46df3ae99aee",
619
+ "_type": "io.cozy.contacts",
620
+ "address": [
621
+ {
622
+ "city": "Albany",
623
+ "country": "Niger",
624
+ "postcode": "60266",
625
+ "primary": true,
626
+ "street": "92 Canal Street"
627
+ }
628
+ ],
629
+ "birthday": "1974-05-17",
630
+ "email": [
631
+ {
632
+ "address": "raylene.bourne@tecomix.name",
633
+ "primary": true
634
+ }
635
+ ],
636
+ "metadata": {
637
+ "version": 1
638
+ },
639
+ "name": {
640
+ "familyName": "Bourne",
641
+ "givenName": "Raylene"
642
+ },
643
+ "phone": [
644
+ {
645
+ "number": "+33 (3)5 71 20 15 93",
646
+ "primary": true
647
+ }
648
+ ],
649
+ "relationships": {
650
+ "groups": {
651
+ "data": [
652
+ {
653
+ "_id": "group_id_work",
654
+ "_type": "io.cozy.contacts.groups"
655
+ }
656
+ ]
657
+ }
658
+ }
659
+ },
660
+ {
661
+ "_id": "307c4e16-70b8-4328-af1c-1d762f788e16",
662
+ "_type": "io.cozy.contacts",
663
+ "address": [
664
+ {
665
+ "city": "Tacoma",
666
+ "country": "Bermuda",
667
+ "postcode": "05692",
668
+ "primary": true,
669
+ "street": "69 Elm Street"
670
+ }
671
+ ],
672
+ "birthday": "1994-02-21",
673
+ "email": [
674
+ {
675
+ "address": "max.higgins@maxcast.com",
676
+ "primary": true
677
+ }
678
+ ],
679
+ "name": {
680
+ "familyName": "Higgins",
681
+ "givenName": "Max"
682
+ },
683
+ "phone": [
684
+ {
685
+ "number": "+33 (4)5 39 48 09 09",
686
+ "primary": true
687
+ }
688
+ ]
689
+ },
690
+ {
691
+ "_id": "309067e3-81a5-45a4-8125-179185dc37da",
692
+ "_type": "io.cozy.contacts",
693
+ "address": [
694
+ {
695
+ "city": "Northampton",
696
+ "country": "India",
697
+ "postcode": "39596",
698
+ "primary": true,
699
+ "street": "49 Blakeley Street"
700
+ }
701
+ ],
702
+ "birthday": "1976-02-18",
703
+ "email": [
704
+ {
705
+ "address": "raymond.muldoon@thermolock.info",
706
+ "primary": true
707
+ },
708
+ {
709
+ "address": "jason.hundt@citisys.name",
710
+ "primary": false
711
+ }
712
+ ],
713
+ "metadata": {
714
+ "version": 1
715
+ },
716
+ "name": {
717
+ "familyName": "Muldoon",
718
+ "givenName": "Raymond"
719
+ },
720
+ "phone": [
721
+ {
722
+ "number": "+33 (7)2 68 87 05 72",
723
+ "primary": true
724
+ },
725
+ {
726
+ "number": "+33 (4)5 23 05 63 86",
727
+ "primary": false
728
+ }
729
+ ],
730
+ "relationships": {
731
+ "groups": {
732
+ "data": [
733
+ {
734
+ "_id": "group_id_family",
735
+ "_type": "io.cozy.contacts.groups"
736
+ }
737
+ ]
738
+ }
739
+ }
740
+ },
741
+ {
742
+ "_id": "328b1bb6-8234-4efd-b18f-1aafd58dc83e",
743
+ "_type": "io.cozy.contacts",
744
+ "address": [
745
+ {
746
+ "city": "Walkerville",
747
+ "country": "Nigeria",
748
+ "postcode": "34344",
749
+ "primary": true,
750
+ "street": "92 Berkeley Street"
751
+ }
752
+ ],
753
+ "birthday": "1994-02-23",
754
+ "email": [
755
+ {
756
+ "address": "rosanne.stine@infracom.edu",
757
+ "primary": true
758
+ }
759
+ ],
760
+ "name": {
761
+ "familyName": "Stine",
762
+ "givenName": "Rosanne"
763
+ },
764
+ "phone": [
765
+ {
766
+ "number": "+33 (9)0 11 98 31 70",
767
+ "primary": true
768
+ }
769
+ ]
770
+ },
771
+ {
772
+ "_id": "366f3eec-aaa0-4c82-9f27-80ad305ecec8",
773
+ "_type": "io.cozy.contacts",
774
+ "address": [
775
+ {
776
+ "city": "Oakland",
777
+ "country": "China",
778
+ "postcode": "61059",
779
+ "primary": true,
780
+ "street": "85 Winston Road"
781
+ }
782
+ ],
783
+ "birthday": "1991-12-23",
784
+ "email": [
785
+ {
786
+ "address": "andy.keesee@fortyfour.mobi",
787
+ "primary": true
788
+ }
789
+ ],
790
+ "name": {
791
+ "familyName": "Keesee",
792
+ "givenName": "Andy"
793
+ },
794
+ "phone": [
795
+ {
796
+ "number": "+33 (0)5 64 21 84 37",
797
+ "primary": true
798
+ }
799
+ ]
800
+ },
801
+ {
802
+ "_id": "398e8336-de18-43c8-8b5a-86ab72005c41",
803
+ "_type": "io.cozy.contacts",
804
+ "address": [
805
+ {
806
+ "city": "Frankston",
807
+ "country": "Micronesia, Federated States of",
808
+ "postcode": "15368",
809
+ "primary": true,
810
+ "street": "9 Robinson Street"
811
+ }
812
+ ],
813
+ "birthday": "1983-09-13",
814
+ "email": [
815
+ {
816
+ "address": "kirstie.mercer@tomiatech.eu",
817
+ "primary": true
818
+ }
819
+ ],
820
+ "name": {
821
+ "familyName": "Mercer",
822
+ "givenName": "Kirstie"
823
+ },
824
+ "phone": [
825
+ {
826
+ "number": "+33 (6)8 99 21 10 92",
827
+ "primary": true
828
+ }
829
+ ]
830
+ },
831
+ {
832
+ "_id": "3e540ae7-4605-4f05-82c9-8cb901a0c34d",
833
+ "_type": "io.cozy.contacts",
834
+ "address": [
835
+ {
836
+ "city": "Norfolk",
837
+ "country": "Peru",
838
+ "postcode": "27382",
839
+ "primary": true,
840
+ "street": "32 Foster Walk"
841
+ }
842
+ ],
843
+ "birthday": "1987-04-29",
844
+ "email": [
845
+ {
846
+ "address": "michelle.jensen@pancast.club",
847
+ "primary": true
848
+ }
849
+ ],
850
+ "name": {
851
+ "familyName": "Jensen",
852
+ "givenName": "Michelle"
853
+ },
854
+ "phone": [
855
+ {
856
+ "number": "+33 (9)4 55 02 64 05",
857
+ "primary": true
858
+ }
859
+ ]
860
+ },
861
+ {
862
+ "_id": "3f6007f9-9284-4bfd-9350-1cbf294bd39b",
863
+ "_type": "io.cozy.contacts",
864
+ "address": [
865
+ {
866
+ "city": "Greenville",
867
+ "country": "Austria",
868
+ "postcode": "32426",
869
+ "primary": true,
870
+ "street": "77 Fairmont Avenue"
871
+ }
872
+ ],
873
+ "birthday": "1981-04-29",
874
+ "metadata": {
875
+ "version": 1
876
+ },
877
+ "name": {
878
+ "familyName": "Okainmayle",
879
+ "givenName": "Jay"
880
+ },
881
+ "phone": [
882
+ {
883
+ "number": "+33 (3)0 31 26 10 64",
884
+ "primary": true
885
+ }
886
+ ],
887
+ "relationships": {
888
+ "groups": {
889
+ "data": []
890
+ }
891
+ }
892
+ },
893
+ {
894
+ "_id": "3fe82c80-9da3-4a42-bab5-8274df1316e6",
895
+ "_type": "io.cozy.contacts",
896
+ "address": [
897
+ {
898
+ "city": "Rochester",
899
+ "country": "Uganda",
900
+ "postcode": "27943",
901
+ "primary": true,
902
+ "street": "31 Maple Street"
903
+ }
904
+ ],
905
+ "birthday": "1983-05-03",
906
+ "email": [
907
+ {
908
+ "address": "chloe.leath@iridimax.org",
909
+ "primary": true
910
+ }
911
+ ],
912
+ "metadata": {
913
+ "version": 1
914
+ },
915
+ "name": {
916
+ "familyName": "Leath",
917
+ "givenName": "Chloe"
918
+ },
919
+ "phone": [
920
+ {
921
+ "number": "+33 (3)7 91 15 42 39",
922
+ "primary": true
923
+ }
924
+ ],
925
+ "relationships": {
926
+ "groups": {
927
+ "data": [
928
+ {
929
+ "_id": "group_id_work",
930
+ "_type": "io.cozy.contacts.groups"
931
+ }
932
+ ]
933
+ }
934
+ }
935
+ },
936
+ {
937
+ "_id": "42a330ca-a30c-489f-8939-4c1b137f84e9",
938
+ "_type": "io.cozy.contacts",
939
+ "address": [
940
+ {
941
+ "city": "Nottingham",
942
+ "country": "Saint Pierre and Miquelon",
943
+ "postcode": "16585",
944
+ "primary": true,
945
+ "street": "21 Berkeley Street"
946
+ }
947
+ ],
948
+ "birthday": "1992-11-15",
949
+ "email": [
950
+ {
951
+ "address": "eleanore.hottle@tomiatech.edu",
952
+ "primary": true
953
+ }
954
+ ],
955
+ "name": {
956
+ "familyName": "Hottle",
957
+ "givenName": "Eleanore"
958
+ },
959
+ "phone": [
960
+ {
961
+ "number": "+33 (3)6 44 88 19 04",
962
+ "primary": true
963
+ }
964
+ ]
965
+ },
966
+ {
967
+ "_id": "44bae7a3-04ed-4cc3-80f8-e15fc9b2399d",
968
+ "_type": "io.cozy.contacts",
969
+ "address": [
970
+ {
971
+ "city": "Redmond",
972
+ "country": "Bosnia and Herzegovina",
973
+ "postcode": "87880",
974
+ "primary": true,
975
+ "street": "24 Seaside Drive"
976
+ }
977
+ ],
978
+ "birthday": "1977-08-09",
979
+ "email": [
980
+ {
981
+ "address": "kurt.rohloff@corexts.org",
982
+ "primary": true
983
+ }
984
+ ],
985
+ "metadata": {
986
+ "version": 1
987
+ },
988
+ "name": {
989
+ "familyName": "Rohloff",
990
+ "givenName": "Kurt"
991
+ },
992
+ "phone": [
993
+ {
994
+ "number": "+33 (9)8 32 78 45 41",
995
+ "primary": true
996
+ }
997
+ ],
998
+ "relationships": {
999
+ "groups": {
1000
+ "data": [
1001
+ {
1002
+ "_id": "group_id_work",
1003
+ "_type": "io.cozy.contacts.groups"
1004
+ }
1005
+ ]
1006
+ }
1007
+ }
1008
+ },
1009
+ {
1010
+ "_id": "4bb1f622-5383-449e-a2d2-fc9e14006903",
1011
+ "_type": "io.cozy.contacts",
1012
+ "address": [
1013
+ {
1014
+ "city": "Sacramento",
1015
+ "country": "Angola",
1016
+ "postcode": "12833",
1017
+ "primary": true,
1018
+ "street": "31 Faraday Street"
1019
+ }
1020
+ ],
1021
+ "birthday": "1998-12-10",
1022
+ "email": [
1023
+ {
1024
+ "address": "travis.paquette@zatheon.co",
1025
+ "primary": true
1026
+ }
1027
+ ],
1028
+ "name": {
1029
+ "familyName": "Paquette",
1030
+ "givenName": "Travis"
1031
+ },
1032
+ "phone": [
1033
+ {
1034
+ "number": "+33 (2)7 21 10 25 88",
1035
+ "primary": true
1036
+ }
1037
+ ]
1038
+ },
1039
+ {
1040
+ "_id": "507fcc3d-1423-46da-b5f9-8fbcfd3f3fe4",
1041
+ "_type": "io.cozy.contacts",
1042
+ "address": [
1043
+ {
1044
+ "city": "Christchurch",
1045
+ "country": "Netherlands",
1046
+ "postcode": "21910",
1047
+ "primary": true,
1048
+ "street": "46 Walford Way"
1049
+ }
1050
+ ],
1051
+ "birthday": "1978-11-03",
1052
+ "email": [
1053
+ {
1054
+ "address": "lorelei.cadena@dalserve.club",
1055
+ "primary": true
1056
+ },
1057
+ {
1058
+ "address": "juliana.oldman@thermatek.name",
1059
+ "primary": false
1060
+ }
1061
+ ],
1062
+ "metadata": {
1063
+ "version": 1
1064
+ },
1065
+ "name": {
1066
+ "familyName": "Cadena",
1067
+ "givenName": "Lorelei"
1068
+ },
1069
+ "phone": [
1070
+ {
1071
+ "number": "+33 (4)4 72 27 49 64",
1072
+ "primary": true
1073
+ },
1074
+ {
1075
+ "number": "+33 (0)3 15 05 94 03",
1076
+ "primary": false
1077
+ }
1078
+ ],
1079
+ "relationships": {
1080
+ "groups": {
1081
+ "data": [
1082
+ {
1083
+ "_id": "group_id_family",
1084
+ "_type": "io.cozy.contacts.groups"
1085
+ }
1086
+ ]
1087
+ }
1088
+ }
1089
+ },
1090
+ {
1091
+ "_id": "53c75e29-5c9b-4c4f-b802-e4a152551b23",
1092
+ "_type": "io.cozy.contacts",
1093
+ "address": [
1094
+ {
1095
+ "city": "Southampton",
1096
+ "country": "Afghanistan",
1097
+ "postcode": "72082",
1098
+ "primary": true,
1099
+ "street": "6 Prospect Place"
1100
+ }
1101
+ ],
1102
+ "birthday": "1976-03-29",
1103
+ "email": [
1104
+ {
1105
+ "address": "jay.padeutell@noemail.net",
1106
+ "primary": true
1107
+ }
1108
+ ],
1109
+ "metadata": {
1110
+ "version": 1
1111
+ },
1112
+ "name": {
1113
+ "familyName": "Padeutell",
1114
+ "givenName": "Jay"
1115
+ },
1116
+ "relationships": {
1117
+ "groups": {
1118
+ "data": []
1119
+ }
1120
+ }
1121
+ },
1122
+ {
1123
+ "_id": "5c21e9fa-18a5-4999-b704-59b902db8542",
1124
+ "_type": "io.cozy.contacts",
1125
+ "address": [
1126
+ {
1127
+ "city": "Stanford",
1128
+ "country": "Isle of Man",
1129
+ "postcode": "26162",
1130
+ "primary": true,
1131
+ "street": "83 Canal Street"
1132
+ }
1133
+ ],
1134
+ "birthday": "1996-08-03",
1135
+ "email": [
1136
+ {
1137
+ "address": "travis.sprowl@vtgrafix.name",
1138
+ "primary": true
1139
+ }
1140
+ ],
1141
+ "metadata": {
1142
+ "version": 1
1143
+ },
1144
+ "name": {
1145
+ "familyName": "Sprowl",
1146
+ "givenName": "Travis"
1147
+ },
1148
+ "phone": [
1149
+ {
1150
+ "number": "+33 (8)9 22 15 20 68",
1151
+ "primary": true
1152
+ }
1153
+ ],
1154
+ "relationships": {
1155
+ "groups": {
1156
+ "data": [
1157
+ {
1158
+ "_id": "group_id_work",
1159
+ "_type": "io.cozy.contacts.groups"
1160
+ }
1161
+ ]
1162
+ }
1163
+ }
1164
+ },
1165
+ {
1166
+ "_id": "627ba975-1314-4813-8366-cea7ac4734bf",
1167
+ "_type": "io.cozy.contacts",
1168
+ "address": [
1169
+ {
1170
+ "city": "Norfolk",
1171
+ "country": "Trinidad and Tobago",
1172
+ "postcode": "50716",
1173
+ "primary": true,
1174
+ "street": "14 Maple Street"
1175
+ }
1176
+ ],
1177
+ "birthday": "1960-11-17",
1178
+ "email": [
1179
+ {
1180
+ "address": "jetta.neal@multiserv.net",
1181
+ "primary": true
1182
+ }
1183
+ ],
1184
+ "name": {
1185
+ "familyName": "Neal",
1186
+ "givenName": "Jetta"
1187
+ },
1188
+ "phone": [
1189
+ {
1190
+ "number": "+33 (2)1 88 04 40 79",
1191
+ "primary": true
1192
+ }
1193
+ ]
1194
+ },
1195
+ {
1196
+ "_id": "63d70d1a-838b-4eb4-b9ca-c3ea15937d51",
1197
+ "_type": "io.cozy.contacts",
1198
+ "address": [
1199
+ {
1200
+ "city": "Charleston",
1201
+ "country": "Turks and Caicos Islands",
1202
+ "postcode": "74804",
1203
+ "primary": true,
1204
+ "street": "50 Hunt Street"
1205
+ }
1206
+ ],
1207
+ "email": [
1208
+ {
1209
+ "address": "selma.keesee@westgate.net",
1210
+ "primary": true
1211
+ }
1212
+ ],
1213
+ "metadata": {
1214
+ "version": 1
1215
+ },
1216
+ "name": {
1217
+ "givenName": "WestGate"
1218
+ },
1219
+ "phone": [
1220
+ {
1221
+ "number": "+33 (7)6 39 42 48 60",
1222
+ "primary": true
1223
+ }
1224
+ ],
1225
+ "relationships": {
1226
+ "groups": {
1227
+ "data": [
1228
+ {
1229
+ "_id": "group_id_work",
1230
+ "_type": "io.cozy.contacts.groups"
1231
+ },
1232
+ {
1233
+ "_id": "group_id_family",
1234
+ "_type": "io.cozy.contacts.groups"
1235
+ }
1236
+ ]
1237
+ }
1238
+ }
1239
+ },
1240
+ {
1241
+ "_id": "6e109549-bbb7-4b23-a95e-794407001cd1",
1242
+ "_type": "io.cozy.contacts",
1243
+ "address": [
1244
+ {
1245
+ "city": "Halifax",
1246
+ "country": "Cook Islands",
1247
+ "postcode": "94609",
1248
+ "primary": true,
1249
+ "street": "93 Stockton Lane"
1250
+ }
1251
+ ],
1252
+ "birthday": "1992-06-16",
1253
+ "email": [
1254
+ {
1255
+ "address": "edward.kelsey@hivemind.co",
1256
+ "primary": true
1257
+ }
1258
+ ],
1259
+ "metadata": {
1260
+ "version": 1
1261
+ },
1262
+ "name": {
1263
+ "familyName": "Kelsey",
1264
+ "givenName": "Edward"
1265
+ },
1266
+ "phone": [
1267
+ {
1268
+ "number": "+33 (6)6 35 56 75 23",
1269
+ "primary": true
1270
+ }
1271
+ ],
1272
+ "relationships": {
1273
+ "groups": {
1274
+ "data": [
1275
+ {
1276
+ "_id": "group_id_work",
1277
+ "_type": "io.cozy.contacts.groups"
1278
+ }
1279
+ ]
1280
+ }
1281
+ }
1282
+ },
1283
+ {
1284
+ "_id": "6ed104be-083e-4991-bacb-78e18f815210",
1285
+ "_type": "io.cozy.contacts",
1286
+ "address": [
1287
+ {
1288
+ "city": "Seattle",
1289
+ "country": "Marshall Islands",
1290
+ "postcode": "79310",
1291
+ "primary": true,
1292
+ "street": "36 Albion Place"
1293
+ }
1294
+ ],
1295
+ "birthday": "1951-07-03",
1296
+ "email": [
1297
+ {
1298
+ "address": "madelyn.woodrum@airconix.xyz",
1299
+ "primary": true
1300
+ }
1301
+ ],
1302
+ "metadata": {
1303
+ "version": 1
1304
+ },
1305
+ "name": {
1306
+ "familyName": "Woodrum",
1307
+ "givenName": "Madelyn"
1308
+ },
1309
+ "phone": [
1310
+ {
1311
+ "number": "+33 (8)4 54 36 85 66",
1312
+ "primary": true
1313
+ }
1314
+ ],
1315
+ "relationships": {
1316
+ "groups": {
1317
+ "data": [
1318
+ {
1319
+ "_id": "group_id_work",
1320
+ "_type": "io.cozy.contacts.groups"
1321
+ }
1322
+ ]
1323
+ }
1324
+ }
1325
+ },
1326
+ {
1327
+ "_id": "6f767688-7118-4837-818f-610d0565ce83",
1328
+ "_type": "io.cozy.contacts",
1329
+ "address": [
1330
+ {
1331
+ "city": "Denver",
1332
+ "country": "Cayman Islands",
1333
+ "postcode": "49200",
1334
+ "primary": true,
1335
+ "street": "20 Winston Road"
1336
+ }
1337
+ ],
1338
+ "birthday": "1967-06-25",
1339
+ "email": [
1340
+ {
1341
+ "address": "vaughn.friedrich@seelogic.co",
1342
+ "primary": true
1343
+ },
1344
+ {
1345
+ "address": "dannielle.seabury@corptek.name",
1346
+ "primary": false
1347
+ }
1348
+ ],
1349
+ "metadata": {
1350
+ "version": 1
1351
+ },
1352
+ "name": {
1353
+ "familyName": "Friedrich",
1354
+ "givenName": "Vaughn"
1355
+ },
1356
+ "phone": [
1357
+ {
1358
+ "number": "+33 (1)8 68 41 49 83",
1359
+ "primary": true
1360
+ },
1361
+ {
1362
+ "number": "+33 (7)5 60 23 43 55",
1363
+ "primary": false
1364
+ }
1365
+ ],
1366
+ "relationships": {
1367
+ "groups": {
1368
+ "data": [
1369
+ {
1370
+ "_id": "group_id_family",
1371
+ "_type": "io.cozy.contacts.groups"
1372
+ }
1373
+ ]
1374
+ }
1375
+ }
1376
+ },
1377
+ {
1378
+ "_id": "706364ef-f84c-4d84-896a-f96c1c6a554c",
1379
+ "_type": "io.cozy.contacts",
1380
+ "address": [
1381
+ {
1382
+ "city": "Cardiff",
1383
+ "country": "Ukraine",
1384
+ "postcode": "21604",
1385
+ "primary": true,
1386
+ "street": "43 Berkeley Street"
1387
+ }
1388
+ ],
1389
+ "birthday": "1962-07-12",
1390
+ "email": [
1391
+ {
1392
+ "address": "raylene.pullman@viewtopia.me",
1393
+ "primary": true
1394
+ }
1395
+ ],
1396
+ "name": {
1397
+ "familyName": "Pullman",
1398
+ "givenName": "Raylene"
1399
+ },
1400
+ "phone": [
1401
+ {
1402
+ "number": "+33 (0)7 90 41 79 27",
1403
+ "primary": true
1404
+ }
1405
+ ]
1406
+ },
1407
+ {
1408
+ "_id": "71967809-8e54-4413-aa8e-35b2b945e816",
1409
+ "_type": "io.cozy.contacts",
1410
+ "address": [
1411
+ {
1412
+ "city": "Newark",
1413
+ "country": "Norway",
1414
+ "postcode": "84101",
1415
+ "primary": true,
1416
+ "street": "58 Longford Crescent"
1417
+ }
1418
+ ],
1419
+ "email": [
1420
+ {
1421
+ "address": "cecilia.latshaw@xenosys.club",
1422
+ "primary": true
1423
+ }
1424
+ ],
1425
+ "metadata": {
1426
+ "version": 1
1427
+ },
1428
+ "name": {
1429
+ "givenName": "Xenosys"
1430
+ },
1431
+ "phone": [
1432
+ {
1433
+ "number": "+33 (3)2 00 61 89 63",
1434
+ "primary": true
1435
+ }
1436
+ ],
1437
+ "relationships": {
1438
+ "groups": {
1439
+ "data": [
1440
+ {
1441
+ "_id": "group_id_work",
1442
+ "_type": "io.cozy.contacts.groups"
1443
+ },
1444
+ {
1445
+ "_id": "group_id_family",
1446
+ "_type": "io.cozy.contacts.groups"
1447
+ }
1448
+ ]
1449
+ }
1450
+ }
1451
+ },
1452
+ {
1453
+ "_id": "799b0f99-3ad7-4f07-a689-9765b4e239c9",
1454
+ "_type": "io.cozy.contacts",
1455
+ "address": [
1456
+ {
1457
+ "city": "Bradford",
1458
+ "country": "Aruba",
1459
+ "postcode": "69222",
1460
+ "primary": true,
1461
+ "street": "18 Pearl Street"
1462
+ }
1463
+ ],
1464
+ "email": [
1465
+ {
1466
+ "address": "tyler.rhymer@baramax.eu",
1467
+ "primary": true
1468
+ }
1469
+ ],
1470
+ "metadata": {
1471
+ "version": 1
1472
+ },
1473
+ "name": {
1474
+ "givenName": "Baramax"
1475
+ },
1476
+ "phone": [
1477
+ {
1478
+ "number": "+33 (3)2 38 88 00 99",
1479
+ "primary": true
1480
+ }
1481
+ ],
1482
+ "relationships": {
1483
+ "groups": {
1484
+ "data": [
1485
+ {
1486
+ "_id": "group_id_work",
1487
+ "_type": "io.cozy.contacts.groups"
1488
+ },
1489
+ {
1490
+ "_id": "group_id_family",
1491
+ "_type": "io.cozy.contacts.groups"
1492
+ }
1493
+ ]
1494
+ }
1495
+ }
1496
+ },
1497
+ {
1498
+ "_id": "7a8b0143-ed8a-4e28-85ec-37c16d1904b6",
1499
+ "_type": "io.cozy.contacts",
1500
+ "address": [
1501
+ {
1502
+ "city": "Rochester",
1503
+ "country": "Colombia",
1504
+ "postcode": "18722",
1505
+ "primary": true,
1506
+ "street": "91 Chestnut Walk"
1507
+ }
1508
+ ],
1509
+ "email": [
1510
+ {
1511
+ "address": "vernon.leath@vtgrafix.co",
1512
+ "primary": true
1513
+ }
1514
+ ],
1515
+ "metadata": {
1516
+ "version": 1
1517
+ },
1518
+ "name": {
1519
+ "givenName": "VTGrafix"
1520
+ },
1521
+ "phone": [
1522
+ {
1523
+ "number": "+33 (6)7 92 54 15 17",
1524
+ "primary": true
1525
+ }
1526
+ ],
1527
+ "relationships": {
1528
+ "groups": {
1529
+ "data": [
1530
+ {
1531
+ "_id": "group_id_work",
1532
+ "_type": "io.cozy.contacts.groups"
1533
+ },
1534
+ {
1535
+ "_id": "group_id_family",
1536
+ "_type": "io.cozy.contacts.groups"
1537
+ }
1538
+ ]
1539
+ }
1540
+ }
1541
+ },
1542
+ {
1543
+ "_id": "7acdab81-52cb-46f6-9e81-42032e9843ae",
1544
+ "_type": "io.cozy.contacts",
1545
+ "address": [
1546
+ {
1547
+ "city": "Richmond",
1548
+ "country": "Finland",
1549
+ "postcode": "60992",
1550
+ "primary": true,
1551
+ "street": "90 Crawford Street"
1552
+ }
1553
+ ],
1554
+ "birthday": "1969-06-06",
1555
+ "email": [
1556
+ {
1557
+ "address": "francis.flinn@fortyfour.xyz",
1558
+ "primary": true
1559
+ },
1560
+ {
1561
+ "address": "stan.lenihan@hassifix.mobi",
1562
+ "primary": false
1563
+ }
1564
+ ],
1565
+ "metadata": {
1566
+ "version": 1
1567
+ },
1568
+ "name": {
1569
+ "familyName": "Flinn",
1570
+ "givenName": "Francis"
1571
+ },
1572
+ "phone": [
1573
+ {
1574
+ "number": "+33 (2)1 24 07 51 43",
1575
+ "primary": true
1576
+ },
1577
+ {
1578
+ "number": "+33 (4)9 32 20 32 87",
1579
+ "primary": false
1580
+ }
1581
+ ],
1582
+ "relationships": {
1583
+ "groups": {
1584
+ "data": [
1585
+ {
1586
+ "_id": "group_id_family",
1587
+ "_type": "io.cozy.contacts.groups"
1588
+ }
1589
+ ]
1590
+ }
1591
+ }
1592
+ },
1593
+ {
1594
+ "_id": "7cb3822f-3a2b-4978-9791-a1e19e792828",
1595
+ "_type": "io.cozy.contacts",
1596
+ "address": [
1597
+ {
1598
+ "city": "Albany",
1599
+ "country": "Singapore",
1600
+ "postcode": "21285",
1601
+ "primary": true,
1602
+ "street": "51 Crawford Street"
1603
+ }
1604
+ ],
1605
+ "birthday": "1989-10-31",
1606
+ "email": [
1607
+ {
1608
+ "address": "raisa.cappel@zatheon.eu",
1609
+ "primary": true
1610
+ }
1611
+ ],
1612
+ "metadata": {
1613
+ "version": 1
1614
+ },
1615
+ "name": {
1616
+ "familyName": "Cappel",
1617
+ "givenName": "Raisa"
1618
+ },
1619
+ "phone": [
1620
+ {
1621
+ "number": "+33 (2)3 69 80 63 05",
1622
+ "primary": true
1623
+ }
1624
+ ],
1625
+ "relationships": {
1626
+ "groups": {
1627
+ "data": [
1628
+ {
1629
+ "_id": "group_id_work",
1630
+ "_type": "io.cozy.contacts.groups"
1631
+ }
1632
+ ]
1633
+ }
1634
+ }
1635
+ },
1636
+ {
1637
+ "_id": "814f6f67-bcc0-498f-bb91-cab5ed315a12",
1638
+ "_type": "io.cozy.contacts",
1639
+ "address": [
1640
+ {
1641
+ "city": "Nottingham",
1642
+ "country": "Mauritania",
1643
+ "postcode": "96737",
1644
+ "primary": true,
1645
+ "street": "41 Elton Way"
1646
+ }
1647
+ ],
1648
+ "birthday": "1988-03-07",
1649
+ "email": [
1650
+ {
1651
+ "address": "hannah.sager@haltheon.eu",
1652
+ "primary": true
1653
+ }
1654
+ ],
1655
+ "name": {
1656
+ "familyName": "Sager",
1657
+ "givenName": "Hannah"
1658
+ },
1659
+ "phone": [
1660
+ {
1661
+ "number": "+33 (0)0 16 15 45 65",
1662
+ "primary": true
1663
+ }
1664
+ ]
1665
+ },
1666
+ {
1667
+ "_id": "823d1ca9-4b10-456f-a603-231e3de5a774",
1668
+ "_type": "io.cozy.contacts",
1669
+ "address": [
1670
+ {
1671
+ "city": "Kingston",
1672
+ "country": "Guatemala",
1673
+ "postcode": "44220",
1674
+ "primary": true,
1675
+ "street": "5 Buckley Street"
1676
+ }
1677
+ ],
1678
+ "birthday": "1961-02-02",
1679
+ "email": [
1680
+ {
1681
+ "address": "aiden.smit@tomiatech.co",
1682
+ "primary": true
1683
+ }
1684
+ ],
1685
+ "name": {
1686
+ "familyName": "Smit",
1687
+ "givenName": "Aiden"
1688
+ },
1689
+ "phone": [
1690
+ {
1691
+ "number": "+33 (6)9 42 00 67 88",
1692
+ "primary": true
1693
+ }
1694
+ ]
1695
+ },
1696
+ {
1697
+ "_id": "857a0db5-84ff-4efe-a16e-9fa6b6a843eb",
1698
+ "_type": "io.cozy.contacts",
1699
+ "address": [
1700
+ {
1701
+ "city": "Birmingham",
1702
+ "country": "Bouvet Island",
1703
+ "postcode": "41090",
1704
+ "primary": true,
1705
+ "street": "88 Baker Street"
1706
+ }
1707
+ ],
1708
+ "birthday": "1999-11-12",
1709
+ "email": [
1710
+ {
1711
+ "address": "jenette.bourne@dynaair.mobi",
1712
+ "primary": true
1713
+ },
1714
+ {
1715
+ "address": "darrell.zobel@anaplex.name",
1716
+ "primary": false
1717
+ }
1718
+ ],
1719
+ "metadata": {
1720
+ "version": 1
1721
+ },
1722
+ "name": {
1723
+ "familyName": "Bourne",
1724
+ "givenName": "Jenette"
1725
+ },
1726
+ "phone": [
1727
+ {
1728
+ "number": "+33 (0)8 05 76 45 70",
1729
+ "primary": true
1730
+ },
1731
+ {
1732
+ "number": "+33 (9)9 35 66 28 54",
1733
+ "primary": false
1734
+ }
1735
+ ],
1736
+ "relationships": {
1737
+ "groups": {
1738
+ "data": [
1739
+ {
1740
+ "_id": "group_id_family",
1741
+ "_type": "io.cozy.contacts.groups"
1742
+ }
1743
+ ]
1744
+ }
1745
+ }
1746
+ },
1747
+ {
1748
+ "_id": "8ba82505-25c3-4821-88df-2e11becc21e8",
1749
+ "_type": "io.cozy.contacts",
1750
+ "address": [
1751
+ {
1752
+ "city": "Hartford",
1753
+ "country": "Nepal",
1754
+ "postcode": "73991",
1755
+ "primary": true,
1756
+ "street": "60 Buckley Street"
1757
+ }
1758
+ ],
1759
+ "birthday": "1985-12-20",
1760
+ "email": [
1761
+ {
1762
+ "address": "kurt.goudy@amsquare.edu",
1763
+ "primary": true
1764
+ }
1765
+ ],
1766
+ "metadata": {
1767
+ "version": 1
1768
+ },
1769
+ "name": {
1770
+ "familyName": "Goudy",
1771
+ "givenName": "Kurt"
1772
+ },
1773
+ "phone": [
1774
+ {
1775
+ "number": "+33 (6)3 54 74 20 62",
1776
+ "primary": true
1777
+ }
1778
+ ],
1779
+ "relationships": {
1780
+ "groups": {
1781
+ "data": [
1782
+ {
1783
+ "_id": "group_id_work",
1784
+ "_type": "io.cozy.contacts.groups"
1785
+ }
1786
+ ]
1787
+ }
1788
+ }
1789
+ },
1790
+ {
1791
+ "_id": "8cbefa6a-41c9-4065-ad33-87618dfee702",
1792
+ "_type": "io.cozy.contacts",
1793
+ "address": [
1794
+ {
1795
+ "city": "York",
1796
+ "country": "Antigua and Barbuda",
1797
+ "postcode": "67153",
1798
+ "primary": true,
1799
+ "street": "91 Grosvenor Square"
1800
+ }
1801
+ ],
1802
+ "birthday": "1998-11-21",
1803
+ "email": [
1804
+ {
1805
+ "address": "madeleine.verde@tomiatech.me",
1806
+ "primary": true
1807
+ },
1808
+ {
1809
+ "address": "jenette.hyder@helixicon.edu",
1810
+ "primary": false
1811
+ }
1812
+ ],
1813
+ "metadata": {
1814
+ "version": 1
1815
+ },
1816
+ "name": {
1817
+ "familyName": "Verde",
1818
+ "givenName": "Madeleine"
1819
+ },
1820
+ "phone": [
1821
+ {
1822
+ "number": "+33 (4)0 94 18 19 04",
1823
+ "primary": true
1824
+ },
1825
+ {
1826
+ "number": "+33 (7)2 66 13 89 19",
1827
+ "primary": false
1828
+ }
1829
+ ],
1830
+ "relationships": {
1831
+ "groups": {
1832
+ "data": [
1833
+ {
1834
+ "_id": "group_id_family",
1835
+ "_type": "io.cozy.contacts.groups"
1836
+ }
1837
+ ]
1838
+ }
1839
+ }
1840
+ },
1841
+ {
1842
+ "_id": "9393e04d-90eb-4f47-b0d1-7cfd88ca9a3f",
1843
+ "_type": "io.cozy.contacts",
1844
+ "address": [
1845
+ {
1846
+ "city": "Frankston",
1847
+ "country": "Martinique",
1848
+ "postcode": "29212",
1849
+ "primary": true,
1850
+ "street": "63 Dunstable Street"
1851
+ }
1852
+ ],
1853
+ "birthday": "1976-12-15",
1854
+ "email": [
1855
+ {
1856
+ "address": "madeleine.milling@acousticom.gov",
1857
+ "primary": true
1858
+ },
1859
+ {
1860
+ "address": "cecilia.pullman@polycore.edu",
1861
+ "primary": false
1862
+ }
1863
+ ],
1864
+ "metadata": {
1865
+ "version": 1
1866
+ },
1867
+ "name": {
1868
+ "familyName": "Milling",
1869
+ "givenName": "Madeleine"
1870
+ },
1871
+ "phone": [
1872
+ {
1873
+ "number": "+33 (4)0 61 39 16 43",
1874
+ "primary": true
1875
+ },
1876
+ {
1877
+ "number": "+33 (9)7 54 31 00 91",
1878
+ "primary": false
1879
+ }
1880
+ ],
1881
+ "relationships": {
1882
+ "groups": {
1883
+ "data": [
1884
+ {
1885
+ "_id": "group_id_family",
1886
+ "_type": "io.cozy.contacts.groups"
1887
+ }
1888
+ ]
1889
+ }
1890
+ }
1891
+ },
1892
+ {
1893
+ "_id": "9b05f823-53fd-48b7-ba50-e2abf7aa20bc",
1894
+ "_type": "io.cozy.contacts",
1895
+ "address": [
1896
+ {
1897
+ "city": "Lancaster",
1898
+ "country": "Viet Nam",
1899
+ "postcode": "32405",
1900
+ "primary": true,
1901
+ "street": "33 Wandle Street"
1902
+ }
1903
+ ],
1904
+ "birthday": "1961-08-01",
1905
+ "email": [
1906
+ {
1907
+ "address": "rosanne.chapman@peersys.gov",
1908
+ "primary": true
1909
+ }
1910
+ ],
1911
+ "name": {
1912
+ "familyName": "Chapman",
1913
+ "givenName": "Rosanne"
1914
+ },
1915
+ "phone": [
1916
+ {
1917
+ "number": "+33 (8)1 50 82 04 53",
1918
+ "primary": true
1919
+ }
1920
+ ]
1921
+ },
1922
+ {
1923
+ "_id": "a68a9b3c-f3f7-4f94-b3f2-f2d0363895a5",
1924
+ "_type": "io.cozy.contacts",
1925
+ "address": [
1926
+ {
1927
+ "city": "Sudbury",
1928
+ "country": "Aruba",
1929
+ "postcode": "34465",
1930
+ "primary": true,
1931
+ "street": "64 Glenn Drive"
1932
+ }
1933
+ ],
1934
+ "birthday": "1989-01-26",
1935
+ "email": [
1936
+ {
1937
+ "address": "isabelle.muldoon@fastmart.co",
1938
+ "primary": true
1939
+ }
1940
+ ],
1941
+ "metadata": {
1942
+ "version": 1
1943
+ },
1944
+ "name": {
1945
+ "familyName": "Muldoon",
1946
+ "givenName": "Isabelle"
1947
+ },
1948
+ "phone": [
1949
+ {
1950
+ "number": "+33 (4)6 38 04 02 44",
1951
+ "primary": true
1952
+ }
1953
+ ],
1954
+ "relationships": {
1955
+ "groups": {
1956
+ "data": [
1957
+ {
1958
+ "_id": "group_id_work",
1959
+ "_type": "io.cozy.contacts.groups"
1960
+ }
1961
+ ]
1962
+ }
1963
+ }
1964
+ },
1965
+ {
1966
+ "_id": "a749ffad-068e-4772-9060-4cb9bd7e8039",
1967
+ "_type": "io.cozy.contacts",
1968
+ "address": [
1969
+ {
1970
+ "city": "Melbourne",
1971
+ "country": "Malawi",
1972
+ "postcode": "16693",
1973
+ "primary": true,
1974
+ "street": "70 Glenn Drive"
1975
+ }
1976
+ ],
1977
+ "birthday": "1960-08-28",
1978
+ "email": [
1979
+ {
1980
+ "address": "warren.tindel@fortyfour.info",
1981
+ "primary": true
1982
+ }
1983
+ ],
1984
+ "name": {
1985
+ "familyName": "Tindel",
1986
+ "givenName": "Warren"
1987
+ },
1988
+ "phone": [
1989
+ {
1990
+ "number": "+33 (6)7 00 31 47 81",
1991
+ "primary": true
1992
+ }
1993
+ ]
1994
+ },
1995
+ {
1996
+ "_id": "a83989ca-041d-4615-87e0-7d41f86acc5d",
1997
+ "_type": "io.cozy.contacts",
1998
+ "address": [
1999
+ {
2000
+ "city": "Seattle",
2001
+ "country": "Niue",
2002
+ "postcode": "87611",
2003
+ "primary": true,
2004
+ "street": "42 Brook Street"
2005
+ }
2006
+ ],
2007
+ "birthday": "1954-07-26",
2008
+ "email": [
2009
+ {
2010
+ "address": "jamie.paschall@acousticom.me",
2011
+ "primary": true
2012
+ }
2013
+ ],
2014
+ "name": {
2015
+ "familyName": "Paschall",
2016
+ "givenName": "Jamie"
2017
+ },
2018
+ "phone": [
2019
+ {
2020
+ "number": "+33 (4)9 34 94 87 29",
2021
+ "primary": true
2022
+ }
2023
+ ]
2024
+ },
2025
+ {
2026
+ "_id": "a9d28cf8-43a6-4fff-81a1-4a09048edf71",
2027
+ "_type": "io.cozy.contacts",
2028
+ "address": [
2029
+ {
2030
+ "city": "Vancouver",
2031
+ "country": "Armenia",
2032
+ "postcode": "27393",
2033
+ "primary": true,
2034
+ "street": "62 Marsham Street"
2035
+ }
2036
+ ],
2037
+ "birthday": "1955-09-22",
2038
+ "email": [
2039
+ {
2040
+ "address": "rico.bourne@citisys.org",
2041
+ "primary": true
2042
+ }
2043
+ ],
2044
+ "metadata": {
2045
+ "version": 1
2046
+ },
2047
+ "name": {
2048
+ "familyName": "Bourne",
2049
+ "givenName": "Rico"
2050
+ },
2051
+ "phone": [
2052
+ {
2053
+ "number": "+33 (1)4 84 34 52 44",
2054
+ "primary": true
2055
+ }
2056
+ ],
2057
+ "relationships": {
2058
+ "groups": {
2059
+ "data": [
2060
+ {
2061
+ "_id": "group_id_work",
2062
+ "_type": "io.cozy.contacts.groups"
2063
+ }
2064
+ ]
2065
+ }
2066
+ }
2067
+ },
2068
+ {
2069
+ "_id": "b21e4b4b-1df9-4992-b39b-cf844df864d5",
2070
+ "_type": "io.cozy.contacts",
2071
+ "address": [
2072
+ {
2073
+ "city": "Cleveland",
2074
+ "country": "United States of America",
2075
+ "postcode": "15748",
2076
+ "primary": true,
2077
+ "street": "85 Grosvenor Square"
2078
+ }
2079
+ ],
2080
+ "email": [
2081
+ {
2082
+ "address": "rico.murphy@triosys.info",
2083
+ "primary": true
2084
+ }
2085
+ ],
2086
+ "metadata": {
2087
+ "version": 1
2088
+ },
2089
+ "name": {
2090
+ "givenName": "TrioSys"
2091
+ },
2092
+ "phone": [
2093
+ {
2094
+ "number": "+33 (6)3 45 36 56 40",
2095
+ "primary": true
2096
+ }
2097
+ ],
2098
+ "relationships": {
2099
+ "groups": {
2100
+ "data": [
2101
+ {
2102
+ "_id": "group_id_work",
2103
+ "_type": "io.cozy.contacts.groups"
2104
+ },
2105
+ {
2106
+ "_id": "group_id_family",
2107
+ "_type": "io.cozy.contacts.groups"
2108
+ }
2109
+ ]
2110
+ }
2111
+ }
2112
+ },
2113
+ {
2114
+ "_id": "b6f5fc43-4199-4cca-8372-d1fe4e75a168",
2115
+ "_type": "io.cozy.contacts",
2116
+ "address": [
2117
+ {
2118
+ "city": "Boston",
2119
+ "country": "Saint Pierre and Miquelon",
2120
+ "postcode": "23731",
2121
+ "primary": true,
2122
+ "street": "70 Beechmont Parkway"
2123
+ }
2124
+ ],
2125
+ "birthday": "1989-08-11",
2126
+ "email": [
2127
+ {
2128
+ "address": "gavin.wallis@infratouch.biz",
2129
+ "primary": true
2130
+ }
2131
+ ],
2132
+ "metadata": {
2133
+ "version": 1
2134
+ },
2135
+ "name": {
2136
+ "familyName": "Wallis",
2137
+ "givenName": "Gavin"
2138
+ },
2139
+ "phone": [
2140
+ {
2141
+ "number": "+33 (2)4 15 56 27 30",
2142
+ "primary": true
2143
+ }
2144
+ ],
2145
+ "relationships": {
2146
+ "groups": {
2147
+ "data": [
2148
+ {
2149
+ "_id": "group_id_work",
2150
+ "_type": "io.cozy.contacts.groups"
2151
+ }
2152
+ ]
2153
+ }
2154
+ }
2155
+ },
2156
+ {
2157
+ "_id": "c55c831a-9869-4e14-b3aa-d004bced41b0",
2158
+ "_type": "io.cozy.contacts",
2159
+ "address": [
2160
+ {
2161
+ "city": "Cleveland",
2162
+ "country": "Liechtenstein",
2163
+ "postcode": "61719",
2164
+ "primary": true,
2165
+ "street": "50 Green Street"
2166
+ }
2167
+ ],
2168
+ "birthday": "1963-10-08",
2169
+ "email": [
2170
+ {
2171
+ "address": "neida.remus@dynalab.club",
2172
+ "primary": true
2173
+ }
2174
+ ],
2175
+ "name": {
2176
+ "familyName": "Remus",
2177
+ "givenName": "Neida"
2178
+ },
2179
+ "phone": [
2180
+ {
2181
+ "number": "+33 (5)6 42 50 42 12",
2182
+ "primary": true
2183
+ }
2184
+ ]
2185
+ },
2186
+ {
2187
+ "_id": "d0c565de-f440-4d2f-83db-0e3d75f49d23",
2188
+ "_type": "io.cozy.contacts",
2189
+ "address": [
2190
+ {
2191
+ "city": "Waterbury",
2192
+ "country": "British Indian Ocean Territory",
2193
+ "postcode": "29412",
2194
+ "primary": true,
2195
+ "street": "68 Rutland Drive"
2196
+ }
2197
+ ],
2198
+ "birthday": "1972-07-31",
2199
+ "email": [
2200
+ {
2201
+ "address": "rosanne.bourne@creatonix.xyz",
2202
+ "primary": true
2203
+ }
2204
+ ],
2205
+ "name": {
2206
+ "familyName": "Bourne",
2207
+ "givenName": "Rosanne"
2208
+ },
2209
+ "phone": [
2210
+ {
2211
+ "number": "+33 (1)3 93 75 09 69",
2212
+ "primary": true
2213
+ }
2214
+ ]
2215
+ },
2216
+ {
2217
+ "_id": "d2bda580-4df6-473e-89db-2af41364c44e",
2218
+ "_type": "io.cozy.contacts",
2219
+ "address": [
2220
+ {
2221
+ "city": "Hobart",
2222
+ "country": "Romania",
2223
+ "postcode": "79805",
2224
+ "primary": true,
2225
+ "street": "1 Mount Street"
2226
+ }
2227
+ ],
2228
+ "email": [
2229
+ {
2230
+ "address": "anton.brandt@westercom.me",
2231
+ "primary": true
2232
+ }
2233
+ ],
2234
+ "metadata": {
2235
+ "version": 1
2236
+ },
2237
+ "name": {
2238
+ "givenName": "Westercom"
2239
+ },
2240
+ "phone": [
2241
+ {
2242
+ "number": "+33 (2)6 47 62 10 86",
2243
+ "primary": true
2244
+ }
2245
+ ],
2246
+ "relationships": {
2247
+ "groups": {
2248
+ "data": [
2249
+ {
2250
+ "_id": "group_id_work",
2251
+ "_type": "io.cozy.contacts.groups"
2252
+ },
2253
+ {
2254
+ "_id": "group_id_family",
2255
+ "_type": "io.cozy.contacts.groups"
2256
+ }
2257
+ ]
2258
+ }
2259
+ }
2260
+ },
2261
+ {
2262
+ "_id": "d50b7eea-6e71-4348-ad75-fc791d7a82d4",
2263
+ "_type": "io.cozy.contacts",
2264
+ "address": [
2265
+ {
2266
+ "city": "Fargo",
2267
+ "country": "Angola",
2268
+ "postcode": "52889",
2269
+ "primary": true,
2270
+ "street": "34 Paxton Street"
2271
+ }
2272
+ ],
2273
+ "birthday": "1979-05-07",
2274
+ "email": [
2275
+ {
2276
+ "address": "rico.magby@freecast.eu",
2277
+ "primary": true
2278
+ },
2279
+ {
2280
+ "address": "myong.brandt@lexiconlabs.org",
2281
+ "primary": false
2282
+ }
2283
+ ],
2284
+ "metadata": {
2285
+ "version": 1
2286
+ },
2287
+ "name": {
2288
+ "familyName": "Magby",
2289
+ "givenName": "Rico"
2290
+ },
2291
+ "phone": [
2292
+ {
2293
+ "number": "+33 (3)4 20 14 07 04",
2294
+ "primary": true
2295
+ },
2296
+ {
2297
+ "number": "+33 (9)4 63 79 76 97",
2298
+ "primary": false
2299
+ }
2300
+ ],
2301
+ "relationships": {
2302
+ "groups": {
2303
+ "data": [
2304
+ {
2305
+ "_id": "group_id_family",
2306
+ "_type": "io.cozy.contacts.groups"
2307
+ }
2308
+ ]
2309
+ }
2310
+ }
2311
+ },
2312
+ {
2313
+ "_id": "e93c6abd-4819-4873-b7fb-ea46e02816a2",
2314
+ "_type": "io.cozy.contacts",
2315
+ "address": [
2316
+ {
2317
+ "city": "Plymouth",
2318
+ "country": "Mongolia",
2319
+ "postcode": "18222",
2320
+ "primary": true,
2321
+ "street": "66 Orchard Road"
2322
+ }
2323
+ ],
2324
+ "birthday": "1978-04-22",
2325
+ "email": [
2326
+ {
2327
+ "address": "raylene.wallis@corerobotics.name",
2328
+ "primary": true
2329
+ }
2330
+ ],
2331
+ "metadata": {
2332
+ "version": 1
2333
+ },
2334
+ "name": {
2335
+ "familyName": "Wallis",
2336
+ "givenName": "Raylene"
2337
+ },
2338
+ "phone": [
2339
+ {
2340
+ "number": "+33 (8)2 20 49 87 28",
2341
+ "primary": true
2342
+ }
2343
+ ],
2344
+ "relationships": {
2345
+ "groups": {
2346
+ "data": [
2347
+ {
2348
+ "_id": "group_id_work",
2349
+ "_type": "io.cozy.contacts.groups"
2350
+ }
2351
+ ]
2352
+ }
2353
+ }
2354
+ },
2355
+ {
2356
+ "_id": "f330db30-2c2b-4621-b40f-25bb737e2eba",
2357
+ "_type": "io.cozy.contacts",
2358
+ "address": [
2359
+ {
2360
+ "city": "Boston",
2361
+ "country": "Saint Pierre and Miquelon",
2362
+ "postcode": "04284",
2363
+ "primary": true,
2364
+ "street": "19 Mount Street"
2365
+ }
2366
+ ],
2367
+ "birthday": "1950-01-18",
2368
+ "email": [
2369
+ {
2370
+ "address": "lyn.hollis@citisys.biz",
2371
+ "primary": true
2372
+ },
2373
+ {
2374
+ "address": "edward.pace@mediadime.net",
2375
+ "primary": false
2376
+ }
2377
+ ],
2378
+ "metadata": {
2379
+ "version": 1
2380
+ },
2381
+ "name": {
2382
+ "familyName": "Hollis",
2383
+ "givenName": "Lyn"
2384
+ },
2385
+ "phone": [
2386
+ {
2387
+ "number": "+33 (8)8 32 79 16 61",
2388
+ "primary": true
2389
+ },
2390
+ {
2391
+ "number": "+33 (7)9 69 80 25 08",
2392
+ "primary": false
2393
+ }
2394
+ ],
2395
+ "relationships": {
2396
+ "groups": {
2397
+ "data": [
2398
+ {
2399
+ "_id": "group_id_family",
2400
+ "_type": "io.cozy.contacts.groups"
2401
+ }
2402
+ ]
2403
+ }
2404
+ }
2405
+ },
2406
+ {
2407
+ "_id": "f87951a3-f887-498c-b683-efbf59221da0",
2408
+ "_type": "io.cozy.contacts",
2409
+ "address": [
2410
+ {
2411
+ "city": "Pheonix",
2412
+ "country": "Madagascar",
2413
+ "postcode": "83764",
2414
+ "primary": true,
2415
+ "street": "5 Harvard Avenue"
2416
+ }
2417
+ ],
2418
+ "birthday": "1975-04-11",
2419
+ "email": [
2420
+ {
2421
+ "address": "marcus.milligan@fortyfour.me",
2422
+ "primary": true
2423
+ }
2424
+ ],
2425
+ "metadata": {
2426
+ "version": 1
2427
+ },
2428
+ "name": {
2429
+ "familyName": "Milligan",
2430
+ "givenName": "Marcus"
2431
+ },
2432
+ "phone": [
2433
+ {
2434
+ "number": "+33 (6)8 38 98 96 07",
2435
+ "primary": true
2436
+ }
2437
+ ],
2438
+ "relationships": {
2439
+ "groups": {
2440
+ "data": [
2441
+ {
2442
+ "_id": "group_id_work",
2443
+ "_type": "io.cozy.contacts.groups"
2444
+ }
2445
+ ]
2446
+ }
2447
+ }
2448
+ },
2449
+ {
2450
+ "_id": "fc1f5295-a7e9-431c-a3cb-70259edd81e0",
2451
+ "_type": "io.cozy.contacts",
2452
+ "address": [
2453
+ {
2454
+ "city": "Portsmouth",
2455
+ "country": "Bonaire, Sint Eustatius and Saba",
2456
+ "postcode": "52481",
2457
+ "primary": true,
2458
+ "street": "44 Prospect Place"
2459
+ }
2460
+ ],
2461
+ "email": [
2462
+ {
2463
+ "address": "grace.muldoon@coremax.xyz",
2464
+ "primary": true
2465
+ }
2466
+ ],
2467
+ "metadata": {
2468
+ "version": 1
2469
+ },
2470
+ "name": {
2471
+ "givenName": "CoreMax"
2472
+ },
2473
+ "phone": [
2474
+ {
2475
+ "number": "+33 (8)1 17 99 91 53",
2476
+ "primary": true
2477
+ }
2478
+ ],
2479
+ "relationships": {
2480
+ "groups": {
2481
+ "data": [
2482
+ {
2483
+ "_id": "group_id_work",
2484
+ "_type": "io.cozy.contacts.groups"
2485
+ },
2486
+ {
2487
+ "_id": "group_id_family",
2488
+ "_type": "io.cozy.contacts.groups"
2489
+ }
2490
+ ]
2491
+ }
2492
+ }
2493
+ }
2494
+ ]