directus-template-cli 0.3.6 → 0.4.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 (344) hide show
  1. package/README.md +5 -2
  2. package/dist/commands/apply.d.ts +1 -1
  3. package/dist/commands/apply.js +80 -50
  4. package/dist/commands/extract.d.ts +1 -2
  5. package/dist/commands/extract.js +13 -18
  6. package/dist/lib/extract/extract-assets.d.ts +182 -2
  7. package/dist/lib/extract/extract-assets.js +25 -32
  8. package/dist/lib/extract/extract-collections.d.ts +4 -0
  9. package/dist/lib/extract/extract-collections.js +24 -0
  10. package/dist/lib/extract/extract-content.d.ts +1 -1
  11. package/dist/lib/extract/extract-content.js +18 -18
  12. package/dist/lib/extract/extract-dashboards.d.ts +8 -0
  13. package/dist/lib/extract/extract-dashboards.js +42 -0
  14. package/dist/lib/extract/extract-fields.d.ts +4 -0
  15. package/dist/lib/extract/extract-fields.js +30 -0
  16. package/dist/lib/extract/extract-files.js +11 -34
  17. package/dist/lib/extract/extract-flows.d.ts +8 -0
  18. package/dist/lib/extract/extract-flows.js +42 -0
  19. package/dist/lib/extract/extract-folders.d.ts +1 -1
  20. package/dist/lib/extract/extract-folders.js +12 -13
  21. package/dist/lib/extract/extract-permissions.d.ts +1 -1
  22. package/dist/lib/extract/extract-permissions.js +13 -13
  23. package/dist/lib/extract/extract-presets.js +15 -11
  24. package/dist/lib/extract/extract-relations.d.ts +4 -0
  25. package/dist/lib/extract/extract-relations.js +33 -0
  26. package/dist/lib/extract/extract-roles.js +11 -22
  27. package/dist/lib/extract/extract-schema.js +14 -14
  28. package/dist/lib/extract/extract-settings.d.ts +4 -0
  29. package/dist/lib/extract/extract-settings.js +22 -0
  30. package/dist/lib/extract/extract-translations.d.ts +4 -0
  31. package/dist/lib/extract/extract-translations.js +24 -0
  32. package/dist/lib/extract/extract-users.d.ts +1 -1
  33. package/dist/lib/extract/extract-users.js +14 -36
  34. package/dist/lib/extract/index.d.ts +1 -1
  35. package/dist/lib/extract/index.js +27 -32
  36. package/dist/lib/interfaces.d.ts +1 -1
  37. package/dist/lib/load/index.d.ts +1 -1
  38. package/dist/lib/load/index.js +33 -44
  39. package/dist/lib/load/load-collections.d.ts +4 -0
  40. package/dist/lib/load/load-collections.js +66 -0
  41. package/dist/lib/load/load-dashboards.d.ts +2 -1
  42. package/dist/lib/load/load-dashboards.js +33 -3
  43. package/dist/lib/load/load-data.d.ts +1 -1
  44. package/dist/lib/load/load-data.js +87 -60
  45. package/dist/lib/load/load-files.d.ts +1 -1
  46. package/dist/lib/load/load-files.js +23 -20
  47. package/dist/lib/load/load-flows.d.ts +2 -2
  48. package/dist/lib/load/load-flows.js +43 -9
  49. package/dist/lib/load/load-folders.js +15 -11
  50. package/dist/lib/load/load-permissions.d.ts +1 -1
  51. package/dist/lib/load/load-permissions.js +22 -21
  52. package/dist/lib/load/load-presets.d.ts +1 -2
  53. package/dist/lib/load/load-presets.js +16 -19
  54. package/dist/lib/load/load-relations.d.ts +4 -0
  55. package/dist/lib/load/load-relations.js +33 -0
  56. package/dist/lib/load/load-roles.d.ts +1 -1
  57. package/dist/lib/load/load-roles.js +20 -10
  58. package/dist/lib/load/load-schema.d.ts +14 -2
  59. package/dist/lib/load/load-schema.js +85 -10
  60. package/dist/lib/load/load-settings.d.ts +1 -1
  61. package/dist/lib/load/load-settings.js +10 -4
  62. package/dist/lib/load/load-translations.d.ts +1 -0
  63. package/dist/lib/load/load-translations.js +21 -0
  64. package/dist/lib/load/load-users.d.ts +1 -2
  65. package/dist/lib/load/load-users.js +19 -8
  66. package/dist/lib/sdk.d.ts +13 -0
  67. package/dist/lib/sdk.js +26 -0
  68. package/dist/lib/utils/auth.d.ts +2 -2
  69. package/dist/lib/utils/auth.js +12 -11
  70. package/dist/lib/utils/check-template.d.ts +1 -0
  71. package/dist/lib/utils/check-template.js +32 -0
  72. package/dist/lib/utils/filter-fields.js +5 -5
  73. package/dist/lib/utils/get-role-ids.d.ts +55 -0
  74. package/dist/lib/utils/get-role-ids.js +14 -0
  75. package/dist/lib/utils/log-error.d.ts +14 -0
  76. package/dist/lib/utils/log-error.js +25 -0
  77. package/dist/lib/utils/path.d.ts +7 -0
  78. package/dist/lib/utils/path.js +20 -0
  79. package/dist/lib/utils/read-file.d.ts +0 -1
  80. package/dist/lib/utils/read-file.js +7 -9
  81. package/dist/lib/utils/read-templates.js +2 -2
  82. package/dist/lib/utils/system-fields.d.ts +20 -0
  83. package/dist/lib/utils/system-fields.js +159 -0
  84. package/dist/lib/utils/template-defaults.js +8 -11
  85. package/dist/lib/utils/transform-github-url.d.ts +1 -0
  86. package/dist/lib/utils/transform-github-url.js +15 -0
  87. package/dist/lib/utils/validate-url.js +1 -1
  88. package/dist/lib/utils/write-to-file.js +4 -4
  89. package/oclif.manifest.json +34 -16
  90. package/package.json +25 -23
  91. package/dist/lib/api.d.ts +0 -15
  92. package/dist/lib/api.js +0 -37
  93. package/dist/lib/extract/extract-from-endpoint.d.ts +0 -4
  94. package/dist/lib/extract/extract-from-endpoint.js +0 -23
  95. package/dist/lib/load/load-operations.d.ts +0 -1
  96. package/dist/lib/load/load-operations.js +0 -29
  97. package/dist/lib/load/load-panels.d.ts +0 -0
  98. package/dist/lib/load/load-panels.js +0 -0
  99. package/dist/lib/utils/delete-items.d.ts +0 -1
  100. package/dist/lib/utils/delete-items.js +0 -15
  101. package/dist/lib/utils/load-to-destination.d.ts +0 -1
  102. package/dist/lib/utils/load-to-destination.js +0 -14
  103. package/templates/agencyos/README.md +0 -11
  104. package/templates/agencyos/package.json +0 -11
  105. package/templates/agencyos/src/assets/08177527-b867-47e9-b5d5-eab146b3cdba.jpg +0 -0
  106. package/templates/agencyos/src/assets/08242513-ca8f-471f-b69b-82703a19d1e5.svg +0 -14
  107. package/templates/agencyos/src/assets/0dfe66dd-ceba-4dca-8907-03b2dda49443.svg +0 -1
  108. package/templates/agencyos/src/assets/12e02b82-b4a4-4aaf-8ca4-e73c20a41c26.jpeg +0 -0
  109. package/templates/agencyos/src/assets/1f19dd72-a433-481d-9b51-e3cc8e4f33d3.svg +0 -1
  110. package/templates/agencyos/src/assets/1f69c0b8-19b7-49d7-b420-bedad577a079.png +0 -0
  111. package/templates/agencyos/src/assets/21e179ab-72c3-4350-b46a-fadd16f5652e.svg +0 -1
  112. package/templates/agencyos/src/assets/270fa8d1-45a3-4fcb-87d2-27a0248f1daf.jpg +0 -0
  113. package/templates/agencyos/src/assets/27f55be1-7ef5-47c4-87ba-ab9a060ab270.jpeg +0 -0
  114. package/templates/agencyos/src/assets/2b4a0ba0-52c7-4e10-b191-c803d8da6a36.png +0 -0
  115. package/templates/agencyos/src/assets/35a67f1b-d401-4300-a503-b8e583186f2a.svg +0 -11
  116. package/templates/agencyos/src/assets/3eff7dc2-445a-47c5-9503-3f600ecdb5c6.jpeg +0 -0
  117. package/templates/agencyos/src/assets/44a4e780-d59b-4fa5-9b26-1c4b447474d2.jpg +0 -0
  118. package/templates/agencyos/src/assets/4b31c98e-ec03-4b91-bb18-ef55dd199638.jpg +0 -0
  119. package/templates/agencyos/src/assets/5419bf05-9ab2-484b-a69d-d09b18602cf1.svg +0 -1
  120. package/templates/agencyos/src/assets/5a6dfe1e-7e5b-4a5f-9f6c-983777a67c05.svg +0 -1
  121. package/templates/agencyos/src/assets/643faffb-d41d-48ad-9050-881cf495cbb6.jpg +0 -0
  122. package/templates/agencyos/src/assets/6464e61f-455a-4b47-b623-bb12e5251dfe.jpeg +0 -0
  123. package/templates/agencyos/src/assets/6789bc72-ab83-40bf-8152-d6f2bafbc2a8.png +0 -0
  124. package/templates/agencyos/src/assets/68103296-6634-4d66-918a-04b09afe6621.jpeg +0 -0
  125. package/templates/agencyos/src/assets/690c2042-e3ad-46f4-9cd8-095a7b3a1df7.svg +0 -3
  126. package/templates/agencyos/src/assets/6a1ca349-d7ab-4f43-9284-c61671e145f2.svg +0 -22
  127. package/templates/agencyos/src/assets/6dad2008-3af5-407e-827e-da5744223181.svg +0 -1
  128. package/templates/agencyos/src/assets/6ff389c5-3ecb-4219-8f72-f10326aab421.jpg +0 -0
  129. package/templates/agencyos/src/assets/7647f4c2-9880-433a-bb8e-69b0c30ae31e.svg +0 -1
  130. package/templates/agencyos/src/assets/7775c53a-6c2c-453d-8c22-8b5445121d10.jpeg +0 -0
  131. package/templates/agencyos/src/assets/793e9bf7-c646-4588-8865-fe22556070ff.svg +0 -1
  132. package/templates/agencyos/src/assets/87fc0e81-45e4-4c05-8e9a-8e5c759d7aae.png +0 -0
  133. package/templates/agencyos/src/assets/88b95737-7ff4-4a09-8523-362d42caa9f9.jpg +0 -0
  134. package/templates/agencyos/src/assets/8f748634-d77b-4985-b27e-7e1f3559881a.jpeg +0 -0
  135. package/templates/agencyos/src/assets/a104c031-6ad2-4148-ace6-052e28cfda0b.svg +0 -1
  136. package/templates/agencyos/src/assets/ac905071-0643-4337-8f53-48ed45b1ccf2.jpg +0 -0
  137. package/templates/agencyos/src/assets/b1a3fd77-8e62-4678-9d44-333a30eec13b.jpg +0 -0
  138. package/templates/agencyos/src/assets/b210ecec-860f-4057-bab9-18c044b6e129.jpg +0 -0
  139. package/templates/agencyos/src/assets/b9db00d9-535f-4e24-8a46-5f7e5fc65bf2.jpg +0 -0
  140. package/templates/agencyos/src/assets/c0253924-38cd-4ca0-9989-9c0a57ec076a.png +0 -0
  141. package/templates/agencyos/src/assets/ce0b845f-f8d8-4856-b0af-1df4e3a838cc.jpg +0 -0
  142. package/templates/agencyos/src/assets/d0130348-9ead-49d0-b8e7-871cd43921a0.svg +0 -1
  143. package/templates/agencyos/src/assets/d4fd6edc-4cc5-48c1-8bc7-e646924bbdca.jpeg +0 -0
  144. package/templates/agencyos/src/assets/d598a4c0-4e9a-44a3-a72e-49564e34a432.jpg +0 -0
  145. package/templates/agencyos/src/assets/d94c9355-d89e-4229-941a-62b8525fd69a.png +0 -0
  146. package/templates/agencyos/src/assets/df0745c2-b6e3-4b37-b64d-55a4eb0033ab.avif +0 -0
  147. package/templates/agencyos/src/assets/df979753-946b-4d93-954e-e24367388d2c.svg +0 -1
  148. package/templates/agencyos/src/assets/dfa90758-9700-49e4-8fa2-b6cd074811b7.png +0 -0
  149. package/templates/agencyos/src/assets/e15ca910-1567-4f15-b5a0-b802da67f228.jpg +0 -0
  150. package/templates/agencyos/src/assets/eef7d7b1-3bf9-4647-90c1-a16c24161335.svg +0 -4
  151. package/templates/agencyos/src/assets/f1693c44-52e4-4fae-a7d2-b3153a34eb72.jpg +0 -0
  152. package/templates/agencyos/src/assets/f81e1a85-5a9c-41ef-9ef3-6a9349722daa.jpg +0 -0
  153. package/templates/agencyos/src/assets/fbae19f3-8739-4048-a20f-89ebbf59b032.jpg +0 -0
  154. package/templates/agencyos/src/collections.json +0 -3007
  155. package/templates/agencyos/src/content/block_button.json +0 -50
  156. package/templates/agencyos/src/content/block_button_group.json +0 -27
  157. package/templates/agencyos/src/content/block_columns.json +0 -18
  158. package/templates/agencyos/src/content/block_columns_rows.json +0 -47
  159. package/templates/agencyos/src/content/block_cta.json +0 -9
  160. package/templates/agencyos/src/content/block_divider.json +0 -14
  161. package/templates/agencyos/src/content/block_faqs.json +0 -90
  162. package/templates/agencyos/src/content/block_form.json +0 -26
  163. package/templates/agencyos/src/content/block_gallery.json +0 -19
  164. package/templates/agencyos/src/content/block_gallery_files.json +0 -102
  165. package/templates/agencyos/src/content/block_hero.json +0 -20
  166. package/templates/agencyos/src/content/block_html.json +0 -1
  167. package/templates/agencyos/src/content/block_logocloud.json +0 -24
  168. package/templates/agencyos/src/content/block_logocloud_logos.json +0 -50
  169. package/templates/agencyos/src/content/block_quote.json +0 -14
  170. package/templates/agencyos/src/content/block_richtext.json +0 -58
  171. package/templates/agencyos/src/content/block_step_items.json +0 -47
  172. package/templates/agencyos/src/content/block_steps.json +0 -24
  173. package/templates/agencyos/src/content/block_team.json +0 -14
  174. package/templates/agencyos/src/content/block_testimonial_slider_items.json +0 -42
  175. package/templates/agencyos/src/content/block_testimonials.json +0 -13
  176. package/templates/agencyos/src/content/block_video.json +0 -10
  177. package/templates/agencyos/src/content/categories.json +0 -38
  178. package/templates/agencyos/src/content/contacts.json +0 -46
  179. package/templates/agencyos/src/content/conversations.json +0 -1
  180. package/templates/agencyos/src/content/forms.json +0 -129
  181. package/templates/agencyos/src/content/globals.json +0 -52
  182. package/templates/agencyos/src/content/help_articles.json +0 -1
  183. package/templates/agencyos/src/content/help_collections.json +0 -20
  184. package/templates/agencyos/src/content/help_feedback.json +0 -122
  185. package/templates/agencyos/src/content/inbox.json +0 -15
  186. package/templates/agencyos/src/content/messages.json +0 -1
  187. package/templates/agencyos/src/content/navigation.json +0 -34
  188. package/templates/agencyos/src/content/navigation_items.json +0 -185
  189. package/templates/agencyos/src/content/organization_addresses.json +0 -18
  190. package/templates/agencyos/src/content/organizations.json +0 -50
  191. package/templates/agencyos/src/content/organizations_contacts.json +0 -14
  192. package/templates/agencyos/src/content/os_activities.json +0 -23
  193. package/templates/agencyos/src/content/os_activity_contacts.json +0 -7
  194. package/templates/agencyos/src/content/os_deal_contacts.json +0 -9
  195. package/templates/agencyos/src/content/os_deal_stages.json +0 -68
  196. package/templates/agencyos/src/content/os_deals.json +0 -27
  197. package/templates/agencyos/src/content/os_email_templates.json +0 -13
  198. package/templates/agencyos/src/content/os_expenses.json +0 -22
  199. package/templates/agencyos/src/content/os_invoice_items.json +0 -65
  200. package/templates/agencyos/src/content/os_invoices.json +0 -29
  201. package/templates/agencyos/src/content/os_items.json +0 -17
  202. package/templates/agencyos/src/content/os_payment_terms.json +0 -18
  203. package/templates/agencyos/src/content/os_payments.json +0 -291
  204. package/templates/agencyos/src/content/os_project_contacts.json +0 -8
  205. package/templates/agencyos/src/content/os_project_files.json +0 -1
  206. package/templates/agencyos/src/content/os_project_templates.json +0 -467
  207. package/templates/agencyos/src/content/os_project_updates.json +0 -1
  208. package/templates/agencyos/src/content/os_projects.json +0 -50
  209. package/templates/agencyos/src/content/os_proposal_approvals.json +0 -1
  210. package/templates/agencyos/src/content/os_proposal_blocks.json +0 -134
  211. package/templates/agencyos/src/content/os_proposal_contacts.json +0 -8
  212. package/templates/agencyos/src/content/os_proposals.json +0 -33
  213. package/templates/agencyos/src/content/os_settings.json +0 -6
  214. package/templates/agencyos/src/content/os_task_files.json +0 -1
  215. package/templates/agencyos/src/content/os_tasks.json +0 -464
  216. package/templates/agencyos/src/content/os_tax_rates.json +0 -24
  217. package/templates/agencyos/src/content/page_blocks.json +0 -170
  218. package/templates/agencyos/src/content/pages.json +0 -96
  219. package/templates/agencyos/src/content/pages_blog.json +0 -7
  220. package/templates/agencyos/src/content/pages_projects.json +0 -6
  221. package/templates/agencyos/src/content/post_gallery_items.json +0 -32
  222. package/templates/agencyos/src/content/posts.json +0 -235
  223. package/templates/agencyos/src/content/redirects.json +0 -12
  224. package/templates/agencyos/src/content/seo.json +0 -52
  225. package/templates/agencyos/src/content/team.json +0 -128
  226. package/templates/agencyos/src/content/testimonials.json +0 -66
  227. package/templates/agencyos/src/dashboards.json +0 -64
  228. package/templates/agencyos/src/files.json +0 -1129
  229. package/templates/agencyos/src/flows.json +0 -451
  230. package/templates/agencyos/src/folders.json +0 -104
  231. package/templates/agencyos/src/operations.json +0 -717
  232. package/templates/agencyos/src/panels.json +0 -1019
  233. package/templates/agencyos/src/permissions.json +0 -5533
  234. package/templates/agencyos/src/presets.json +0 -2421
  235. package/templates/agencyos/src/public-permissions.json +0 -629
  236. package/templates/agencyos/src/roles.json +0 -46
  237. package/templates/agencyos/src/schema/snapshot.json +0 -39415
  238. package/templates/agencyos/src/settings.json +0 -99
  239. package/templates/agencyos/src/users.json +0 -147
  240. package/templates/website/README.md +0 -15
  241. package/templates/website/package.json +0 -11
  242. package/templates/website/src/assets/004e37f7-765e-4339-8d44-987729e47898.png +0 -0
  243. package/templates/website/src/assets/008b1c0e-bdd3-4c5f-a029-b9c07582a42d.jpg +0 -0
  244. package/templates/website/src/assets/08177527-b867-47e9-b5d5-eab146b3cdba.jpg +0 -0
  245. package/templates/website/src/assets/0dfe66dd-ceba-4dca-8907-03b2dda49443.svg +0 -1
  246. package/templates/website/src/assets/12e02b82-b4a4-4aaf-8ca4-e73c20a41c26.jpeg +0 -0
  247. package/templates/website/src/assets/18bf5269-9986-48c7-b607-01b77283df3b.png +0 -0
  248. package/templates/website/src/assets/1f19dd72-a433-481d-9b51-e3cc8e4f33d3.svg +0 -1
  249. package/templates/website/src/assets/270fa8d1-45a3-4fcb-87d2-27a0248f1daf.jpg +0 -0
  250. package/templates/website/src/assets/27f55be1-7ef5-47c4-87ba-ab9a060ab270.jpeg +0 -0
  251. package/templates/website/src/assets/284c190b-0ebb-4b3e-847d-c260b793b77c.png +0 -0
  252. package/templates/website/src/assets/35a67f1b-d401-4300-a503-b8e583186f2a.svg +0 -11
  253. package/templates/website/src/assets/3ac899c4-4bf9-4733-b2c4-b259c69faf46.png +0 -0
  254. package/templates/website/src/assets/3eff7dc2-445a-47c5-9503-3f600ecdb5c6.jpeg +0 -0
  255. package/templates/website/src/assets/40a0a417-231e-4819-86bf-66e96ec64852.svg +0 -3
  256. package/templates/website/src/assets/45140116-7656-4226-99b6-fd750722a083.svg +0 -3
  257. package/templates/website/src/assets/4b31c98e-ec03-4b91-bb18-ef55dd199638.jpg +0 -0
  258. package/templates/website/src/assets/57c6e801-9ba1-46eb-beb7-96cf7c497c92.svg +0 -1
  259. package/templates/website/src/assets/643faffb-d41d-48ad-9050-881cf495cbb6.jpg +0 -0
  260. package/templates/website/src/assets/6464e61f-455a-4b47-b623-bb12e5251dfe.jpeg +0 -0
  261. package/templates/website/src/assets/68103296-6634-4d66-918a-04b09afe6621.jpeg +0 -0
  262. package/templates/website/src/assets/68ee3ce3-bc8e-4901-b3a6-8a23afda0fa0.jpg +0 -0
  263. package/templates/website/src/assets/6dad2008-3af5-407e-827e-da5744223181.svg +0 -1
  264. package/templates/website/src/assets/72eea8c7-72fe-4ef2-9e57-524f7cb886a4.jpg +0 -0
  265. package/templates/website/src/assets/72f6f5a0-9a07-422f-b82f-b9e295ce5afa.svg +0 -4
  266. package/templates/website/src/assets/7775c53a-6c2c-453d-8c22-8b5445121d10.jpeg +0 -0
  267. package/templates/website/src/assets/7834aacc-d78c-4a55-ba92-d7b5d74188c1.png +0 -0
  268. package/templates/website/src/assets/7a5b47f6-d648-48f9-bf93-4bfafda48940.png +0 -0
  269. package/templates/website/src/assets/7c04cbdd-4b48-41aa-94d7-fc7c17373b1a.png +0 -0
  270. package/templates/website/src/assets/82b872b1-ff96-4af6-b7f1-878e60c3c448.png +0 -0
  271. package/templates/website/src/assets/840ec616-acad-412e-be79-485a702f9a55.svg +0 -1
  272. package/templates/website/src/assets/87fc0e81-45e4-4c05-8e9a-8e5c759d7aae.png +0 -0
  273. package/templates/website/src/assets/8bc1e7b3-b795-46af-bac4-34f7d90b902f.JPG +0 -0
  274. package/templates/website/src/assets/8f748634-d77b-4985-b27e-7e1f3559881a.jpeg +0 -0
  275. package/templates/website/src/assets/9778a2b4-27de-4035-af5a-f58897578787.png +0 -0
  276. package/templates/website/src/assets/a104c031-6ad2-4148-ace6-052e28cfda0b.svg +0 -1
  277. package/templates/website/src/assets/b626a403-5f09-4463-9715-44b2bd34eb26.jpg +0 -0
  278. package/templates/website/src/assets/c38f6e9e-7bb5-46c7-8266-b27ab96a1282.png +0 -0
  279. package/templates/website/src/assets/c983bd13-da09-4c90-8e65-ae6a92093df8.png +0 -0
  280. package/templates/website/src/assets/d0130348-9ead-49d0-b8e7-871cd43921a0.svg +0 -1
  281. package/templates/website/src/assets/d304528e-9000-4530-92cf-bb04891e8d5d.jpg +0 -0
  282. package/templates/website/src/assets/d4fd6edc-4cc5-48c1-8bc7-e646924bbdca.jpeg +0 -0
  283. package/templates/website/src/assets/d598a4c0-4e9a-44a3-a72e-49564e34a432.jpg +0 -0
  284. package/templates/website/src/assets/dfa90758-9700-49e4-8fa2-b6cd074811b7.png +0 -0
  285. package/templates/website/src/assets/e15ca910-1567-4f15-b5a0-b802da67f228.jpg +0 -0
  286. package/templates/website/src/assets/ea18cbf2-3c4f-488b-a68c-2d3a64cc9137.png +0 -0
  287. package/templates/website/src/assets/eb8e4c86-92ac-4697-9634-2e376f5d6015.png +0 -0
  288. package/templates/website/src/assets/f1693c44-52e4-4fae-a7d2-b3153a34eb72.jpg +0 -0
  289. package/templates/website/src/collections.json +0 -1788
  290. package/templates/website/src/content/block_cardgroup.json +0 -26
  291. package/templates/website/src/content/block_cardgroup_cards.json +0 -1
  292. package/templates/website/src/content/block_cardgroup_posts.json +0 -32
  293. package/templates/website/src/content/block_columns.json +0 -21
  294. package/templates/website/src/content/block_columns_rows.json +0 -47
  295. package/templates/website/src/content/block_cta.json +0 -15
  296. package/templates/website/src/content/block_faqs.json +0 -45
  297. package/templates/website/src/content/block_form.json +0 -26
  298. package/templates/website/src/content/block_gallery.json +0 -15
  299. package/templates/website/src/content/block_gallery_files.json +0 -38
  300. package/templates/website/src/content/block_hero.json +0 -145
  301. package/templates/website/src/content/block_html.json +0 -1
  302. package/templates/website/src/content/block_logocloud.json +0 -16
  303. package/templates/website/src/content/block_logocloud_files.json +0 -44
  304. package/templates/website/src/content/block_quote.json +0 -11
  305. package/templates/website/src/content/block_richtext.json +0 -32
  306. package/templates/website/src/content/block_steps.json +0 -14
  307. package/templates/website/src/content/block_steps_items.json +0 -26
  308. package/templates/website/src/content/block_team.json +0 -8
  309. package/templates/website/src/content/block_testimonials.json +0 -13
  310. package/templates/website/src/content/block_testimonials_items.json +0 -26
  311. package/templates/website/src/content/block_video.json +0 -10
  312. package/templates/website/src/content/blog_settings.json +0 -8
  313. package/templates/website/src/content/categories.json +0 -38
  314. package/templates/website/src/content/events.json +0 -1
  315. package/templates/website/src/content/forms.json +0 -92
  316. package/templates/website/src/content/globals.json +0 -57
  317. package/templates/website/src/content/inbox.json +0 -21
  318. package/templates/website/src/content/metrics.json +0 -1
  319. package/templates/website/src/content/navigation.json +0 -30
  320. package/templates/website/src/content/navigation_items.json +0 -140
  321. package/templates/website/src/content/pages.json +0 -123
  322. package/templates/website/src/content/pages_blocks.json +0 -310
  323. package/templates/website/src/content/posts.json +0 -120
  324. package/templates/website/src/content/projects.json +0 -48
  325. package/templates/website/src/content/projects_files.json +0 -44
  326. package/templates/website/src/content/projects_settings.json +0 -6
  327. package/templates/website/src/content/redirects.json +0 -12
  328. package/templates/website/src/content/seo.json +0 -278
  329. package/templates/website/src/content/team.json +0 -132
  330. package/templates/website/src/content/testimonials.json +0 -66
  331. package/templates/website/src/dashboards.json +0 -38
  332. package/templates/website/src/fields.json +0 -27761
  333. package/templates/website/src/files.json +0 -1100
  334. package/templates/website/src/flows.json +0 -131
  335. package/templates/website/src/folders.json +0 -52
  336. package/templates/website/src/operations.json +0 -214
  337. package/templates/website/src/panels.json +0 -433
  338. package/templates/website/src/permissions.json +0 -1556
  339. package/templates/website/src/presets.json +0 -1254
  340. package/templates/website/src/public-permissions.json +0 -511
  341. package/templates/website/src/roles.json +0 -70
  342. package/templates/website/src/schema/snapshot.json +0 -17018
  343. package/templates/website/src/settings.json +0 -66
  344. package/templates/website/src/users.json +0 -194
@@ -1,1254 +0,0 @@
1
- [
2
- {
3
- "id": 5,
4
- "bookmark": null,
5
- "user": null,
6
- "role": null,
7
- "collection": "pages",
8
- "search": null,
9
- "layout": null,
10
- "layout_query": {
11
- "tabular": {
12
- "page": 1,
13
- "fields": [
14
- "status",
15
- "title",
16
- "slug",
17
- "blocks"
18
- ],
19
- "sort": [
20
- "sort"
21
- ]
22
- }
23
- },
24
- "layout_options": {
25
- "tabular": {
26
- "widths": {
27
- "status": 32,
28
- "title": 179.501708984375
29
- }
30
- }
31
- },
32
- "refresh_interval": null,
33
- "filter": null,
34
- "icon": "bookmark_border",
35
- "color": null
36
- },
37
- {
38
- "id": 7,
39
- "bookmark": null,
40
- "user": null,
41
- "role": null,
42
- "collection": "testimonials",
43
- "search": null,
44
- "layout": null,
45
- "layout_query": {
46
- "tabular": {
47
- "page": 1,
48
- "fields": [
49
- "status",
50
- "image",
51
- "title",
52
- "company",
53
- "subtitle"
54
- ]
55
- }
56
- },
57
- "layout_options": {
58
- "tabular": {
59
- "widths": {
60
- "status": 32,
61
- "image": 51.5,
62
- "title": 106.58203125,
63
- "company": 125.6171875,
64
- "subtitle": 117.40625
65
- }
66
- }
67
- },
68
- "refresh_interval": null,
69
- "filter": null,
70
- "icon": "bookmark_border",
71
- "color": null
72
- },
73
- {
74
- "id": 9,
75
- "bookmark": "1. Workflow",
76
- "user": null,
77
- "role": null,
78
- "collection": "posts",
79
- "search": null,
80
- "layout": "kanban",
81
- "layout_query": {
82
- "tabular": {
83
- "fields": [
84
- "status",
85
- "image",
86
- "title",
87
- "date_published"
88
- ],
89
- "sort": [
90
- "-date_published"
91
- ],
92
- "page": 1
93
- }
94
- },
95
- "layout_options": {
96
- "kanban": {
97
- "titleField": "title",
98
- "showUngrouped": false,
99
- "dateField": "date_published",
100
- "textField": "summary",
101
- "crop": true
102
- },
103
- "tabular": {
104
- "widths": {
105
- "status": 32,
106
- "image": 63.16796875,
107
- "title": 371.87109375,
108
- "date_published": 179.76171875
109
- },
110
- "spacing": "comfortable"
111
- }
112
- },
113
- "refresh_interval": null,
114
- "filter": null,
115
- "icon": "view_kanban",
116
- "color": "#FF99DD"
117
- },
118
- {
119
- "id": 10,
120
- "bookmark": "2. Calendar",
121
- "user": null,
122
- "role": null,
123
- "collection": "posts",
124
- "search": null,
125
- "layout": "calendar",
126
- "layout_query": {
127
- "tabular": {
128
- "fields": [
129
- "status",
130
- "image",
131
- "title",
132
- "date_published"
133
- ],
134
- "sort": [
135
- "-date_published"
136
- ],
137
- "page": 1
138
- }
139
- },
140
- "layout_options": {
141
- "kanban": {
142
- "titleField": "title",
143
- "showUngrouped": false,
144
- "dateField": null,
145
- "textField": "content"
146
- },
147
- "tabular": {
148
- "widths": {
149
- "status": 32,
150
- "image": 63.16796875,
151
- "title": 371.87109375,
152
- "date_published": 179.76171875
153
- },
154
- "spacing": "comfortable"
155
- },
156
- "calendar": {
157
- "viewInfo": {
158
- "type": "dayGridMonth",
159
- "startDateStr": "2023-02-01T00:00:00-05:00"
160
- },
161
- "startDateField": "date_published",
162
- "template": "{{title}}"
163
- }
164
- },
165
- "refresh_interval": null,
166
- "filter": null,
167
- "icon": "calendar_today",
168
- "color": "#FF99DD"
169
- },
170
- {
171
- "id": 14,
172
- "bookmark": "3. All Blog Posts",
173
- "user": null,
174
- "role": null,
175
- "collection": "posts",
176
- "search": null,
177
- "layout": "tabular",
178
- "layout_query": {
179
- "tabular": {
180
- "fields": [
181
- "status",
182
- "image",
183
- "title",
184
- "category",
185
- "date_published",
186
- "author"
187
- ],
188
- "sort": [
189
- "-date_published"
190
- ],
191
- "page": 1
192
- }
193
- },
194
- "layout_options": {
195
- "kanban": {
196
- "titleField": "title",
197
- "showUngrouped": false,
198
- "dateField": null,
199
- "textField": "content"
200
- },
201
- "tabular": {
202
- "widths": {
203
- "status": 101.4609375,
204
- "image": 63.16796875,
205
- "title": 371.87109375,
206
- "category": 135.03125,
207
- "date_published": 145.5078125,
208
- "author": 227.5546875
209
- },
210
- "spacing": "comfortable"
211
- },
212
- "calendar": {
213
- "viewInfo": {
214
- "type": "dayGridMonth",
215
- "startDateStr": "2023-02-01T00:00:00-05:00"
216
- },
217
- "startDateField": "date_published",
218
- "template": "{{title}}"
219
- }
220
- },
221
- "refresh_interval": null,
222
- "filter": null,
223
- "icon": "list",
224
- "color": "#FF99DD"
225
- },
226
- {
227
- "id": 19,
228
- "bookmark": null,
229
- "user": null,
230
- "role": null,
231
- "collection": "forms",
232
- "search": null,
233
- "layout": null,
234
- "layout_query": {
235
- "tabular": {
236
- "page": 1,
237
- "fields": [
238
- "status",
239
- "title",
240
- "key",
241
- "schema"
242
- ]
243
- }
244
- },
245
- "layout_options": {
246
- "tabular": {
247
- "widths": {
248
- "status": 32
249
- }
250
- }
251
- },
252
- "refresh_interval": null,
253
- "filter": null,
254
- "icon": "bookmark_border",
255
- "color": null
256
- },
257
- {
258
- "id": 26,
259
- "bookmark": null,
260
- "user": null,
261
- "role": null,
262
- "collection": "inbox",
263
- "search": null,
264
- "layout": null,
265
- "layout_query": {
266
- "tabular": {
267
- "page": 1,
268
- "fields": [
269
- "status",
270
- "date_created",
271
- "form",
272
- "data"
273
- ],
274
- "sort": [
275
- "-date_created"
276
- ]
277
- }
278
- },
279
- "layout_options": {
280
- "tabular": {
281
- "widths": {
282
- "status": 32,
283
- "data": 284.96807861328125
284
- }
285
- }
286
- },
287
- "refresh_interval": null,
288
- "filter": null,
289
- "icon": "bookmark_border",
290
- "color": null
291
- },
292
- {
293
- "id": 30,
294
- "bookmark": null,
295
- "user": null,
296
- "role": null,
297
- "collection": "navigation",
298
- "search": null,
299
- "layout": null,
300
- "layout_query": {
301
- "tabular": {
302
- "page": 1,
303
- "fields": [
304
- "status",
305
- "title",
306
- "id",
307
- "items"
308
- ]
309
- }
310
- },
311
- "layout_options": {
312
- "tabular": {
313
- "widths": {
314
- "status": 37.29296875,
315
- "id": 115.59375
316
- }
317
- }
318
- },
319
- "refresh_interval": null,
320
- "filter": null,
321
- "icon": "bookmark_border",
322
- "color": null
323
- },
324
- {
325
- "id": 31,
326
- "bookmark": null,
327
- "user": null,
328
- "role": null,
329
- "collection": "navigation_items",
330
- "search": null,
331
- "layout": null,
332
- "layout_query": {
333
- "tabular": {
334
- "page": 1,
335
- "fields": [
336
- "navigation",
337
- "title",
338
- "has_children",
339
- "label",
340
- "type",
341
- "parent"
342
- ]
343
- }
344
- },
345
- "layout_options": {
346
- "tabular": {
347
- "widths": {
348
- "navigation": 131.640625,
349
- "has_children": 107.65625
350
- }
351
- }
352
- },
353
- "refresh_interval": null,
354
- "filter": null,
355
- "icon": "bookmark_border",
356
- "color": null
357
- },
358
- {
359
- "id": 50,
360
- "bookmark": null,
361
- "user": null,
362
- "role": null,
363
- "collection": "seo",
364
- "search": null,
365
- "layout": null,
366
- "layout_query": {
367
- "tabular": {
368
- "page": 1,
369
- "fields": [
370
- "title",
371
- "meta_description",
372
- "no_follow",
373
- "no_index"
374
- ]
375
- }
376
- },
377
- "layout_options": {
378
- "tabular": {
379
- "widths": {}
380
- }
381
- },
382
- "refresh_interval": null,
383
- "filter": null,
384
- "icon": "bookmark_border",
385
- "color": null
386
- },
387
- {
388
- "id": 53,
389
- "bookmark": null,
390
- "user": null,
391
- "role": null,
392
- "collection": "redirects",
393
- "search": null,
394
- "layout": null,
395
- "layout_query": {
396
- "tabular": {
397
- "page": 1,
398
- "fields": [
399
- "response_code",
400
- "url_old",
401
- "url_new"
402
- ]
403
- }
404
- },
405
- "layout_options": {
406
- "tabular": {
407
- "widths": {
408
- "response_code": 156.15625
409
- }
410
- }
411
- },
412
- "refresh_interval": null,
413
- "filter": null,
414
- "icon": "bookmark_border",
415
- "color": null
416
- },
417
- {
418
- "id": 62,
419
- "bookmark": null,
420
- "user": null,
421
- "role": null,
422
- "collection": "events",
423
- "search": null,
424
- "layout": null,
425
- "layout_query": {
426
- "tabular": {
427
- "page": 1
428
- }
429
- },
430
- "layout_options": null,
431
- "refresh_interval": null,
432
- "filter": null,
433
- "icon": "bookmark_border",
434
- "color": null
435
- },
436
- {
437
- "id": 73,
438
- "bookmark": null,
439
- "user": null,
440
- "role": null,
441
- "collection": "team",
442
- "search": null,
443
- "layout": null,
444
- "layout_query": {
445
- "tabular": {
446
- "page": 1,
447
- "fields": [
448
- "status",
449
- "image",
450
- "name",
451
- "job_title"
452
- ]
453
- }
454
- },
455
- "layout_options": {
456
- "tabular": {
457
- "widths": {
458
- "status": 32,
459
- "image": 61.731781005859375
460
- }
461
- }
462
- },
463
- "refresh_interval": null,
464
- "filter": null,
465
- "icon": "bookmark_border",
466
- "color": null
467
- },
468
- {
469
- "id": 74,
470
- "bookmark": null,
471
- "user": null,
472
- "role": null,
473
- "collection": "metrics",
474
- "search": null,
475
- "layout": null,
476
- "layout_query": null,
477
- "layout_options": null,
478
- "refresh_interval": null,
479
- "filter": null,
480
- "icon": "bookmark_border",
481
- "color": null
482
- },
483
- {
484
- "id": 76,
485
- "bookmark": null,
486
- "user": null,
487
- "role": null,
488
- "collection": "projects",
489
- "search": null,
490
- "layout": null,
491
- "layout_query": {
492
- "tabular": {
493
- "fields": [
494
- "status",
495
- "title",
496
- "slug"
497
- ]
498
- }
499
- },
500
- "layout_options": {
501
- "tabular": {
502
- "widths": {
503
- "status": 32
504
- }
505
- }
506
- },
507
- "refresh_interval": null,
508
- "filter": null,
509
- "icon": "bookmark_border",
510
- "color": null
511
- },
512
- {
513
- "id": 77,
514
- "bookmark": null,
515
- "user": null,
516
- "role": null,
517
- "collection": "categories",
518
- "search": null,
519
- "layout": null,
520
- "layout_query": {
521
- "tabular": {
522
- "page": 1,
523
- "fields": [
524
- "color",
525
- "title",
526
- "slug"
527
- ]
528
- }
529
- },
530
- "layout_options": {
531
- "tabular": {
532
- "widths": {
533
- "color": 39.171875
534
- }
535
- }
536
- },
537
- "refresh_interval": null,
538
- "filter": null,
539
- "icon": "bookmark_border",
540
- "color": null
541
- },
542
- {
543
- "id": 78,
544
- "bookmark": null,
545
- "user": null,
546
- "role": null,
547
- "collection": "posts",
548
- "search": null,
549
- "layout": null,
550
- "layout_query": {
551
- "tabular": {
552
- "page": 1,
553
- "fields": [
554
- "status",
555
- "image",
556
- "title",
557
- "date_published"
558
- ]
559
- }
560
- },
561
- "layout_options": {
562
- "tabular": {
563
- "widths": {
564
- "status": 100.4296875,
565
- "image": 55.890625,
566
- "title": 375.66015625
567
- }
568
- }
569
- },
570
- "refresh_interval": null,
571
- "filter": null,
572
- "icon": "bookmark_border",
573
- "color": null
574
- },
575
- {
576
- "id": 93,
577
- "bookmark": null,
578
- "user": "9fdd1ca5-982e-422d-bced-640e3a98a339",
579
- "role": null,
580
- "collection": "testimonials",
581
- "search": null,
582
- "layout": null,
583
- "layout_query": {
584
- "tabular": {
585
- "page": 1,
586
- "fields": [
587
- "status",
588
- "image",
589
- "title",
590
- "company",
591
- "subtitle"
592
- ]
593
- }
594
- },
595
- "layout_options": {
596
- "tabular": {
597
- "widths": {
598
- "status": 32,
599
- "image": 51.5,
600
- "title": 106.58203125,
601
- "company": 125.6171875,
602
- "subtitle": 117.40625
603
- }
604
- }
605
- },
606
- "refresh_interval": null,
607
- "filter": null,
608
- "icon": "bookmark_border",
609
- "color": null
610
- },
611
- {
612
- "id": 94,
613
- "bookmark": null,
614
- "user": "9fdd1ca5-982e-422d-bced-640e3a98a339",
615
- "role": null,
616
- "collection": "team",
617
- "search": null,
618
- "layout": null,
619
- "layout_query": {
620
- "tabular": {
621
- "page": 1,
622
- "fields": [
623
- "status",
624
- "image",
625
- "name",
626
- "job_title"
627
- ]
628
- }
629
- },
630
- "layout_options": {
631
- "tabular": {
632
- "widths": {
633
- "status": 32,
634
- "image": 61.731781005859375
635
- }
636
- }
637
- },
638
- "refresh_interval": null,
639
- "filter": null,
640
- "icon": "bookmark_border",
641
- "color": null
642
- },
643
- {
644
- "id": 95,
645
- "bookmark": null,
646
- "user": "9fdd1ca5-982e-422d-bced-640e3a98a339",
647
- "role": null,
648
- "collection": "testimonials",
649
- "search": null,
650
- "layout": null,
651
- "layout_query": {
652
- "tabular": {
653
- "page": 1,
654
- "fields": [
655
- "status",
656
- "image",
657
- "title",
658
- "company",
659
- "subtitle"
660
- ]
661
- }
662
- },
663
- "layout_options": {
664
- "tabular": {
665
- "widths": {
666
- "status": 32,
667
- "image": 51.5,
668
- "title": 106.58203125,
669
- "company": 125.6171875,
670
- "subtitle": 117.40625
671
- }
672
- }
673
- },
674
- "refresh_interval": null,
675
- "filter": null,
676
- "icon": "bookmark_border",
677
- "color": null
678
- },
679
- {
680
- "id": 96,
681
- "bookmark": null,
682
- "user": "9fdd1ca5-982e-422d-bced-640e3a98a339",
683
- "role": null,
684
- "collection": "block_faqs",
685
- "search": null,
686
- "layout": null,
687
- "layout_query": null,
688
- "layout_options": null,
689
- "refresh_interval": null,
690
- "filter": null,
691
- "icon": "bookmark_border",
692
- "color": null
693
- },
694
- {
695
- "id": 97,
696
- "bookmark": null,
697
- "user": "9fdd1ca5-982e-422d-bced-640e3a98a339",
698
- "role": null,
699
- "collection": "posts",
700
- "search": null,
701
- "layout": null,
702
- "layout_query": {
703
- "tabular": {
704
- "page": 1,
705
- "fields": [
706
- "status",
707
- "image",
708
- "title",
709
- "date_published"
710
- ]
711
- }
712
- },
713
- "layout_options": {
714
- "tabular": {
715
- "widths": {
716
- "status": 100.4296875,
717
- "image": 55.890625,
718
- "title": 375.66015625
719
- }
720
- }
721
- },
722
- "refresh_interval": null,
723
- "filter": null,
724
- "icon": "bookmark_border",
725
- "color": null
726
- },
727
- {
728
- "id": 98,
729
- "bookmark": null,
730
- "user": "9fdd1ca5-982e-422d-bced-640e3a98a339",
731
- "role": null,
732
- "collection": "pages",
733
- "search": null,
734
- "layout": null,
735
- "layout_query": {
736
- "tabular": {
737
- "page": 1,
738
- "fields": [
739
- "status",
740
- "title",
741
- "slug",
742
- "blocks"
743
- ],
744
- "sort": [
745
- "sort"
746
- ]
747
- }
748
- },
749
- "layout_options": {
750
- "tabular": {
751
- "widths": {
752
- "status": 32,
753
- "title": 179.501708984375
754
- }
755
- }
756
- },
757
- "refresh_interval": null,
758
- "filter": null,
759
- "icon": "bookmark_border",
760
- "color": null
761
- },
762
- {
763
- "id": 99,
764
- "bookmark": null,
765
- "user": "9fdd1ca5-982e-422d-bced-640e3a98a339",
766
- "role": null,
767
- "collection": "team",
768
- "search": null,
769
- "layout": null,
770
- "layout_query": {
771
- "tabular": {
772
- "page": 1,
773
- "fields": [
774
- "status",
775
- "image",
776
- "name",
777
- "job_title"
778
- ]
779
- }
780
- },
781
- "layout_options": {
782
- "tabular": {
783
- "widths": {
784
- "status": 32,
785
- "image": 61.731781005859375
786
- }
787
- }
788
- },
789
- "refresh_interval": null,
790
- "filter": null,
791
- "icon": "bookmark_border",
792
- "color": null
793
- },
794
- {
795
- "id": 100,
796
- "bookmark": null,
797
- "user": "9fdd1ca5-982e-422d-bced-640e3a98a339",
798
- "role": null,
799
- "collection": "navigation_items",
800
- "search": null,
801
- "layout": null,
802
- "layout_query": {
803
- "tabular": {
804
- "page": 1,
805
- "fields": [
806
- "navigation",
807
- "title",
808
- "has_children",
809
- "label",
810
- "type",
811
- "parent"
812
- ],
813
- "sort": [
814
- "-navigation"
815
- ]
816
- }
817
- },
818
- "layout_options": {
819
- "tabular": {
820
- "widths": {
821
- "navigation": 131.640625,
822
- "has_children": 107.65625
823
- }
824
- }
825
- },
826
- "refresh_interval": null,
827
- "filter": null,
828
- "icon": "bookmark_border",
829
- "color": null
830
- },
831
- {
832
- "id": 101,
833
- "bookmark": null,
834
- "user": "9fdd1ca5-982e-422d-bced-640e3a98a339",
835
- "role": null,
836
- "collection": "block_hero",
837
- "search": null,
838
- "layout": null,
839
- "layout_query": {
840
- "tabular": {
841
- "page": 1
842
- }
843
- },
844
- "layout_options": null,
845
- "refresh_interval": null,
846
- "filter": null,
847
- "icon": "bookmark_border",
848
- "color": null
849
- },
850
- {
851
- "id": 102,
852
- "bookmark": null,
853
- "user": "9fdd1ca5-982e-422d-bced-640e3a98a339",
854
- "role": null,
855
- "collection": "navigation",
856
- "search": null,
857
- "layout": null,
858
- "layout_query": {
859
- "tabular": {
860
- "page": 1,
861
- "fields": [
862
- "status",
863
- "title",
864
- "id",
865
- "items"
866
- ]
867
- }
868
- },
869
- "layout_options": {
870
- "tabular": {
871
- "widths": {
872
- "status": 37.29296875,
873
- "id": 115.59375
874
- }
875
- }
876
- },
877
- "refresh_interval": null,
878
- "filter": null,
879
- "icon": "bookmark_border",
880
- "color": null
881
- },
882
- {
883
- "id": 103,
884
- "bookmark": null,
885
- "user": "9fdd1ca5-982e-422d-bced-640e3a98a339",
886
- "role": null,
887
- "collection": "directus_presets",
888
- "search": null,
889
- "layout": null,
890
- "layout_query": {
891
- "tabular": {
892
- "page": 1
893
- }
894
- },
895
- "layout_options": null,
896
- "refresh_interval": null,
897
- "filter": null,
898
- "icon": "bookmark_border",
899
- "color": null
900
- },
901
- {
902
- "id": 104,
903
- "bookmark": null,
904
- "user": "9fdd1ca5-982e-422d-bced-640e3a98a339",
905
- "role": null,
906
- "collection": "inbox",
907
- "search": null,
908
- "layout": null,
909
- "layout_query": {
910
- "tabular": {
911
- "page": 1,
912
- "fields": [
913
- "status",
914
- "date_created",
915
- "form",
916
- "data"
917
- ],
918
- "sort": [
919
- "-date_created"
920
- ]
921
- }
922
- },
923
- "layout_options": {
924
- "tabular": {
925
- "widths": {
926
- "status": 32,
927
- "data": 284.96807861328125
928
- }
929
- }
930
- },
931
- "refresh_interval": null,
932
- "filter": null,
933
- "icon": "bookmark_border",
934
- "color": null
935
- },
936
- {
937
- "id": 105,
938
- "bookmark": null,
939
- "user": "9fdd1ca5-982e-422d-bced-640e3a98a339",
940
- "role": null,
941
- "collection": "projects",
942
- "search": null,
943
- "layout": null,
944
- "layout_query": {
945
- "tabular": {
946
- "fields": [
947
- "status",
948
- "title",
949
- "slug"
950
- ],
951
- "page": 1
952
- }
953
- },
954
- "layout_options": {
955
- "tabular": {
956
- "widths": {
957
- "status": 32
958
- }
959
- }
960
- },
961
- "refresh_interval": null,
962
- "filter": null,
963
- "icon": "bookmark_border",
964
- "color": null
965
- },
966
- {
967
- "id": 106,
968
- "bookmark": null,
969
- "user": "9fdd1ca5-982e-422d-bced-640e3a98a339",
970
- "role": null,
971
- "collection": "forms",
972
- "search": null,
973
- "layout": null,
974
- "layout_query": {
975
- "tabular": {
976
- "page": 1,
977
- "fields": [
978
- "status",
979
- "title",
980
- "key",
981
- "schema"
982
- ]
983
- }
984
- },
985
- "layout_options": {
986
- "tabular": {
987
- "widths": {
988
- "status": 32
989
- }
990
- }
991
- },
992
- "refresh_interval": null,
993
- "filter": null,
994
- "icon": "bookmark_border",
995
- "color": null
996
- },
997
- {
998
- "id": 107,
999
- "bookmark": null,
1000
- "user": "9fdd1ca5-982e-422d-bced-640e3a98a339",
1001
- "role": null,
1002
- "collection": "directus_files",
1003
- "search": null,
1004
- "layout": "cards",
1005
- "layout_query": {
1006
- "cards": {
1007
- "sort": [
1008
- "-uploaded_on"
1009
- ],
1010
- "page": 1
1011
- }
1012
- },
1013
- "layout_options": {
1014
- "cards": {
1015
- "icon": "insert_drive_file",
1016
- "title": "{{ title }}",
1017
- "subtitle": "{{ type }} • {{ filesize }}",
1018
- "size": 4,
1019
- "imageFit": "crop"
1020
- }
1021
- },
1022
- "refresh_interval": null,
1023
- "filter": null,
1024
- "icon": "bookmark_border",
1025
- "color": null
1026
- },
1027
- {
1028
- "id": 108,
1029
- "bookmark": null,
1030
- "user": "9fdd1ca5-982e-422d-bced-640e3a98a339",
1031
- "role": null,
1032
- "collection": "block_form",
1033
- "search": null,
1034
- "layout": null,
1035
- "layout_query": null,
1036
- "layout_options": null,
1037
- "refresh_interval": null,
1038
- "filter": null,
1039
- "icon": "bookmark_border",
1040
- "color": null
1041
- },
1042
- {
1043
- "id": 109,
1044
- "bookmark": null,
1045
- "user": "aebb695f-5dcc-4dba-9e03-b847e333fb02",
1046
- "role": null,
1047
- "collection": "block_richtext",
1048
- "search": null,
1049
- "layout": null,
1050
- "layout_query": {
1051
- "tabular": {
1052
- "page": 1,
1053
- "fields": [
1054
- "content",
1055
- "headline",
1056
- "title"
1057
- ]
1058
- }
1059
- },
1060
- "layout_options": {
1061
- "tabular": {
1062
- "widths": {
1063
- "content": 328.578125,
1064
- "headline": 357.390625
1065
- }
1066
- }
1067
- },
1068
- "refresh_interval": null,
1069
- "filter": null,
1070
- "icon": "bookmark_border",
1071
- "color": null
1072
- },
1073
- {
1074
- "id": 110,
1075
- "bookmark": null,
1076
- "user": "aebb695f-5dcc-4dba-9e03-b847e333fb02",
1077
- "role": null,
1078
- "collection": "pages",
1079
- "search": null,
1080
- "layout": null,
1081
- "layout_query": {
1082
- "tabular": {
1083
- "page": 1,
1084
- "fields": [
1085
- "status",
1086
- "title",
1087
- "slug",
1088
- "blocks",
1089
- "date_created"
1090
- ],
1091
- "sort": [
1092
- "-title"
1093
- ]
1094
- }
1095
- },
1096
- "layout_options": {
1097
- "tabular": {
1098
- "widths": {
1099
- "status": 32,
1100
- "title": 179.501708984375,
1101
- "date_created": 214.70703125
1102
- }
1103
- }
1104
- },
1105
- "refresh_interval": null,
1106
- "filter": {
1107
- "_and": [
1108
- {
1109
- "status": {
1110
- "_eq": "published"
1111
- }
1112
- }
1113
- ]
1114
- },
1115
- "icon": "bookmark_border",
1116
- "color": null
1117
- },
1118
- {
1119
- "id": 111,
1120
- "bookmark": null,
1121
- "user": "aebb695f-5dcc-4dba-9e03-b847e333fb02",
1122
- "role": null,
1123
- "collection": "directus_files",
1124
- "search": null,
1125
- "layout": "cards",
1126
- "layout_query": {
1127
- "cards": {
1128
- "sort": [
1129
- "-uploaded_on"
1130
- ],
1131
- "page": 1
1132
- }
1133
- },
1134
- "layout_options": {
1135
- "cards": {
1136
- "icon": "insert_drive_file",
1137
- "title": "{{ title }}",
1138
- "subtitle": "{{ type }} • {{ filesize }}",
1139
- "size": 4,
1140
- "imageFit": "crop"
1141
- }
1142
- },
1143
- "refresh_interval": null,
1144
- "filter": null,
1145
- "icon": "bookmark_border",
1146
- "color": null
1147
- },
1148
- {
1149
- "id": 112,
1150
- "bookmark": null,
1151
- "user": "aebb695f-5dcc-4dba-9e03-b847e333fb02",
1152
- "role": null,
1153
- "collection": "posts",
1154
- "search": null,
1155
- "layout": null,
1156
- "layout_query": {
1157
- "tabular": {
1158
- "page": 1,
1159
- "fields": [
1160
- "status",
1161
- "image",
1162
- "title",
1163
- "date_published",
1164
- "seo"
1165
- ]
1166
- }
1167
- },
1168
- "layout_options": {
1169
- "tabular": {
1170
- "widths": {
1171
- "status": 100.4296875,
1172
- "image": 55.890625,
1173
- "title": 375.66015625,
1174
- "seo": 337.87109375
1175
- }
1176
- }
1177
- },
1178
- "refresh_interval": null,
1179
- "filter": null,
1180
- "icon": "bookmark_border",
1181
- "color": null
1182
- },
1183
- {
1184
- "id": 113,
1185
- "bookmark": null,
1186
- "user": "aebb695f-5dcc-4dba-9e03-b847e333fb02",
1187
- "role": null,
1188
- "collection": "block_hero",
1189
- "search": null,
1190
- "layout": null,
1191
- "layout_query": {
1192
- "tabular": {
1193
- "page": 1
1194
- }
1195
- },
1196
- "layout_options": null,
1197
- "refresh_interval": null,
1198
- "filter": null,
1199
- "icon": "bookmark",
1200
- "color": null
1201
- },
1202
- {
1203
- "id": 114,
1204
- "bookmark": null,
1205
- "user": "b3182bed-fa0a-45cf-9678-0cc54b7a8fb3",
1206
- "role": null,
1207
- "collection": "posts",
1208
- "search": null,
1209
- "layout": null,
1210
- "layout_query": {
1211
- "tabular": {
1212
- "page": 1,
1213
- "fields": [
1214
- "status",
1215
- "image",
1216
- "title",
1217
- "date_published"
1218
- ]
1219
- }
1220
- },
1221
- "layout_options": {
1222
- "tabular": {
1223
- "widths": {
1224
- "status": 100.4296875,
1225
- "image": 55.890625,
1226
- "title": 375.66015625
1227
- }
1228
- }
1229
- },
1230
- "refresh_interval": null,
1231
- "filter": null,
1232
- "icon": "bookmark_border",
1233
- "color": null
1234
- },
1235
- {
1236
- "id": 115,
1237
- "bookmark": null,
1238
- "user": "aebb695f-5dcc-4dba-9e03-b847e333fb02",
1239
- "role": null,
1240
- "collection": "block_testimonials",
1241
- "search": null,
1242
- "layout": null,
1243
- "layout_query": {
1244
- "tabular": {
1245
- "page": 1
1246
- }
1247
- },
1248
- "layout_options": null,
1249
- "refresh_interval": null,
1250
- "filter": null,
1251
- "icon": "bookmark",
1252
- "color": null
1253
- }
1254
- ]