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,47 +0,0 @@
1
- [
2
- {
3
- "button_group": null,
4
- "block_steps": "a163efd7-1037-4261-939d-28a08122c426",
5
- "image": "5a6dfe1e-7e5b-4a5f-9f6c-983777a67c05",
6
- "id": "36ec55d8-1bc0-494c-8448-7afcce4bd5e1",
7
- "title": "Ideation & Design",
8
- "content": "<p>With a solid understanding in place, our creative minds come together to ideate and sketch the initial concepts. Whether it's a brand identity or a website layout, this is where ideas are born and iteratively refined into tangible design blueprints.</p>",
9
- "sort": 2
10
- },
11
- {
12
- "button_group": null,
13
- "block_steps": "a163efd7-1037-4261-939d-28a08122c426",
14
- "image": "793e9bf7-c646-4588-8865-fe22556070ff",
15
- "id": "6ace7412-79cc-4f03-9d1c-64343b3ebd87",
16
- "title": "Development & Execution",
17
- "content": "<p>Our developers and strategists take the lead in this phase. Leveraging the latest tools and technologies, we bring the conceptualized designs to life, ensuring optimal performance and responsiveness across all devices and platforms.</p>",
18
- "sort": 3
19
- },
20
- {
21
- "button_group": null,
22
- "block_steps": "a163efd7-1037-4261-939d-28a08122c426",
23
- "image": "df979753-946b-4d93-954e-e24367388d2c",
24
- "id": "6dc81e9f-c446-4005-a87f-a54163f48433",
25
- "title": "Discovery & Research",
26
- "content": "<p>This is where our journey begins. We deep-dive into understanding your brand, its core values, target audience, and competitive landscape. This phase ensures that our subsequent actions are grounded in data and genuine insights.</p>",
27
- "sort": 1
28
- },
29
- {
30
- "button_group": null,
31
- "block_steps": "a163efd7-1037-4261-939d-28a08122c426",
32
- "image": "5419bf05-9ab2-484b-a69d-d09b18602cf1",
33
- "id": "75903f73-8964-46a8-a33a-c9d22ecb5daa",
34
- "title": "Launch & Feedback Loop",
35
- "content": "<p>With everything set, we launch the project! But our relationship doesn't end there. We believe in continuous improvement and thus, regularly gather feedback, making necessary tweaks and ensuring you're always at the forefront of your industry.</p>",
36
- "sort": 5
37
- },
38
- {
39
- "button_group": null,
40
- "block_steps": "a163efd7-1037-4261-939d-28a08122c426",
41
- "image": "21e179ab-72c3-4350-b46a-fadd16f5652e",
42
- "id": "8306f18f-0dd1-446d-b173-6f1a481049b9",
43
- "title": "Testing & Quality Assurance",
44
- "content": "<p>Before any launch, we rigorously test our creations. From functionality checks to usability tests, we ensure everything is in tip-top shape. Our goal is to ensure the final product is not just good, but exceptional.</p>",
45
- "sort": 4
46
- }
47
- ]
@@ -1,24 +0,0 @@
1
- [
2
- {
3
- "id": "007bed6b-147e-4931-a141-350e2617bd6b",
4
- "title": "Steps",
5
- "headline": "<p>A process designed to deliver the <em>best results</em></p>",
6
- "alternate_image_position": true,
7
- "show_step_numbers": true,
8
- "steps": []
9
- },
10
- {
11
- "id": "a163efd7-1037-4261-939d-28a08122c426",
12
- "title": "Our Process",
13
- "headline": "<p><em>Refined</em> over tons of projects</p>",
14
- "alternate_image_position": true,
15
- "show_step_numbers": true,
16
- "steps": [
17
- "6dc81e9f-c446-4005-a87f-a54163f48433",
18
- "36ec55d8-1bc0-494c-8448-7afcce4bd5e1",
19
- "6ace7412-79cc-4f03-9d1c-64343b3ebd87",
20
- "8306f18f-0dd1-446d-b173-6f1a481049b9",
21
- "75903f73-8964-46a8-a33a-c9d22ecb5daa"
22
- ]
23
- }
24
- ]
@@ -1,14 +0,0 @@
1
- [
2
- {
3
- "id": "9550fb22-ef6c-4a9f-bd87-7abf362aeee9",
4
- "title": "Our Team",
5
- "headline": "<p>We <em>understand</em> your business</p>",
6
- "content": "<p dir=\"ltr\">I&rsquo;ve been serving businesses in this industry for 5+ years in a consulting role - and before that I was the right hand man in a print and apparel shop that doubled in revenue over 4 years.</p>\n<p dir=\"ltr\">I know how to get things done. I&rsquo;m comfortable taking larger projects from idea to completion. The projects you&rsquo;re looking to tackle are right in my wheelhouse.</p>"
7
- },
8
- {
9
- "id": "aa94c8db-bfc1-4681-8ddc-818166556e79",
10
- "title": "Our Team",
11
- "headline": "<p>We've got the best <em>developers</em> and <em>designers</em> around.</p>",
12
- "content": "<p>Deserunt ea deserunt est est ipsum non duis ad dolore. Irure qui duis occaecat incididunt laboris cillum eu Lorem. Aliquip duis proident in eu ipsum dolor veniam irure incididunt Lorem consectetur consectetur velit. Aliqua nulla anim aliquip officia ad culpa incididunt do adipisicing laboris.0/1</p>"
13
- }
14
- ]
@@ -1,42 +0,0 @@
1
- [
2
- {
3
- "testimonials_id": "40b34bf4-c3c9-4833-ab22-4b4ea1fb7eb7",
4
- "block_testimonial_slider_id": "ca71c49a-3e89-41a5-aaf1-5177744f52c0",
5
- "user_updated": null,
6
- "user_created": "95e535d2-f45b-4d94-891b-a89ee6ed1475",
7
- "id": "96f7dbaf-fb3d-4215-b8be-339cb502a8eb",
8
- "date_updated": null,
9
- "date_created": "2023-09-21T04:20:49.383Z",
10
- "sort": 1
11
- },
12
- {
13
- "testimonials_id": "d507ff08-a0ca-4acb-abd7-1b294b9e105c",
14
- "block_testimonial_slider_id": "ca71c49a-3e89-41a5-aaf1-5177744f52c0",
15
- "user_updated": null,
16
- "user_created": "95e535d2-f45b-4d94-891b-a89ee6ed1475",
17
- "id": "512ecae7-5fc9-4fcd-9da5-e12b2536fe99",
18
- "date_updated": null,
19
- "date_created": "2023-09-21T04:20:49.466Z",
20
- "sort": 2
21
- },
22
- {
23
- "testimonials_id": "97ac6e52-69b4-4015-bed4-049c83bb5507",
24
- "block_testimonial_slider_id": "ca71c49a-3e89-41a5-aaf1-5177744f52c0",
25
- "user_updated": null,
26
- "user_created": "95e535d2-f45b-4d94-891b-a89ee6ed1475",
27
- "id": "3be32544-73c7-4e87-b835-9a6520d05f79",
28
- "date_updated": null,
29
- "date_created": "2023-09-21T04:20:49.478Z",
30
- "sort": 3
31
- },
32
- {
33
- "testimonials_id": "f983bc2b-2878-4156-bd40-ce0b93fe08d5",
34
- "block_testimonial_slider_id": "ca71c49a-3e89-41a5-aaf1-5177744f52c0",
35
- "user_updated": "95e535d2-f45b-4d94-891b-a89ee6ed1475",
36
- "user_created": "95e535d2-f45b-4d94-891b-a89ee6ed1475",
37
- "id": "66d1c5c5-1e5e-47d4-a75f-210c9bd70520",
38
- "date_updated": "2023-09-21T04:37:34.090Z",
39
- "date_created": "2023-09-21T04:35:35.709Z",
40
- "sort": 4
41
- }
42
- ]
@@ -1,13 +0,0 @@
1
- [
2
- {
3
- "id": "ca71c49a-3e89-41a5-aaf1-5177744f52c0",
4
- "title": "What Clients Say",
5
- "headline": "<p>Trusted by <em>many</em></p>",
6
- "testimonials": [
7
- "96f7dbaf-fb3d-4215-b8be-339cb502a8eb",
8
- "512ecae7-5fc9-4fcd-9da5-e12b2536fe99",
9
- "3be32544-73c7-4e87-b835-9a6520d05f79",
10
- "66d1c5c5-1e5e-47d4-a75f-210c9bd70520"
11
- ]
12
- }
13
- ]
@@ -1,10 +0,0 @@
1
- [
2
- {
3
- "video_file": null,
4
- "id": "1833f0ec-bc01-4b3d-809b-3043def64d9f",
5
- "video_url": "https://www.loom.com/share/e820d612c08042408a1936e3c195f12b",
6
- "type": "url",
7
- "title": "Video",
8
- "headline": "<p>This is <em>a video </em>component</p>"
9
- }
10
- ]
@@ -1,38 +0,0 @@
1
- [
2
- {
3
- "seo": null,
4
- "id": "06da3e1e-9af6-4b27-a248-60a58dc229d2",
5
- "title": "SEO",
6
- "slug": "seo",
7
- "color": "#2ECDA7",
8
- "headline": "<p>Helpful resources on <em>search</em> engine optimization.</p>",
9
- "sort": 1
10
- },
11
- {
12
- "seo": null,
13
- "id": "4a62ba82-c48a-465f-a180-a3a8256c93bb",
14
- "title": "Case Study",
15
- "slug": "case-studies",
16
- "color": "#FFC23B",
17
- "headline": "<p>Case studies of super <em>successful</em> bunnies.</p>",
18
- "sort": 2
19
- },
20
- {
21
- "seo": null,
22
- "id": "da30c277-650f-421c-b976-c598f898e89e",
23
- "title": "Web Development",
24
- "slug": "web-development",
25
- "color": "#A2B5CD",
26
- "headline": "<p>Our best and brightest advice on web development.</p>",
27
- "sort": 3
28
- },
29
- {
30
- "seo": null,
31
- "id": "9896a65e-a004-4481-87cf-a07e515a5d82",
32
- "title": "Analytics",
33
- "slug": "analytics",
34
- "color": "#3399FF",
35
- "headline": "<p>Tips and advice on how to make sense of your analytics data.</p>",
36
- "sort": null
37
- }
38
- ]
@@ -1,46 +0,0 @@
1
- [
2
- {
3
- "user": "46cbbc2d-f3e1-468a-9925-c6df6493c496",
4
- "user_updated": "95e535d2-f45b-4d94-891b-a89ee6ed1475",
5
- "user_created": "95e535d2-f45b-4d94-891b-a89ee6ed1475",
6
- "id": "447868fd-194c-41a4-bb7b-0aa85d5a44e8",
7
- "date_updated": "2023-10-19T13:19:48.182Z",
8
- "date_created": "2023-09-09T03:10:01.439Z",
9
- "job_title": "Speech Pathologist",
10
- "phone": "+1555-555-5555",
11
- "email": "ashley@example.com",
12
- "last_name": "Simmons",
13
- "first_name": "Ashley",
14
- "status": "draft",
15
- "contact_notes": null,
16
- "organizations": [
17
- "3afc4678-1441-401b-8106-871b31f292c4"
18
- ],
19
- "deals": [
20
- "b583fb2e-e813-498a-8f8a-1c9418e28e60"
21
- ],
22
- "activities": [
23
- "1de14a0c-23db-4946-8069-70f669cd6bdc"
24
- ]
25
- },
26
- {
27
- "user": null,
28
- "user_updated": null,
29
- "user_created": "95e535d2-f45b-4d94-891b-a89ee6ed1475",
30
- "id": "79d06c95-2030-41b1-b455-9a87f0777788",
31
- "date_updated": null,
32
- "date_created": "2023-10-19T13:18:25.026Z",
33
- "job_title": "CEO",
34
- "phone": null,
35
- "email": "elon@tezla.com",
36
- "last_name": "Dusk",
37
- "first_name": "Elon",
38
- "status": "active",
39
- "contact_notes": null,
40
- "organizations": [
41
- "6f4c96a4-0081-498e-bbf3-7d9bce9f4fd4"
42
- ],
43
- "deals": [],
44
- "activities": []
45
- }
46
- ]
@@ -1,129 +0,0 @@
1
- [
2
- {
3
- "user_updated": "95e535d2-f45b-4d94-891b-a89ee6ed1475",
4
- "user_created": "95e535d2-f45b-4d94-891b-a89ee6ed1475",
5
- "id": "36493b64-2bad-4c58-9d70-785ccb12ee26",
6
- "date_updated": "2023-09-15T13:04:48.625Z",
7
- "date_created": "2023-02-26T15:02:36.662Z",
8
- "title": "Contact Us",
9
- "submit_label": "Get Started",
10
- "status": "published",
11
- "redirect_url": null,
12
- "on_success": "redirect",
13
- "key": "contact-us",
14
- "schema": [
15
- {
16
- "name": "first_name",
17
- "type": "text",
18
- "label": "First Name",
19
- "placeholder": "John",
20
- "help": null,
21
- "width": "50"
22
- },
23
- {
24
- "name": "last_name",
25
- "type": "text",
26
- "label": "Last Name",
27
- "width": "50"
28
- },
29
- {
30
- "name": "email",
31
- "type": "text",
32
- "label": "Email",
33
- "placeholder": "john@example.com",
34
- "validation": "required",
35
- "width": "50"
36
- },
37
- {
38
- "name": "phone",
39
- "type": "text",
40
- "label": "Phone Number",
41
- "width": "50"
42
- },
43
- {
44
- "name": "company",
45
- "type": "text",
46
- "label": "Company",
47
- "help": "What's the name of your company / organization?",
48
- "width": "100"
49
- },
50
- {
51
- "name": "message",
52
- "type": "textarea",
53
- "label": "Message",
54
- "placeholder": "How can we help?",
55
- "width": "100"
56
- },
57
- {
58
- "name": "consent",
59
- "type": "checkbox",
60
- "label": "I agree with terms of service",
61
- "width": "100"
62
- }
63
- ],
64
- "success_message": null,
65
- "sort": null
66
- },
67
- {
68
- "user_updated": "95e535d2-f45b-4d94-891b-a89ee6ed1475",
69
- "user_created": "95e535d2-f45b-4d94-891b-a89ee6ed1475",
70
- "id": "5da3d356-d818-434f-b225-db35c418bbb6",
71
- "date_updated": "2023-10-20T03:20:50.314Z",
72
- "date_created": "2023-03-16T01:50:49.262Z",
73
- "title": "Newsletter",
74
- "submit_label": "Subscribe",
75
- "status": "published",
76
- "redirect_url": null,
77
- "on_success": "message",
78
- "key": "newsletter",
79
- "schema": [
80
- {
81
- "name": "email",
82
- "type": "text",
83
- "label": "What is your email address?",
84
- "help": "We hate spam just as much as you do!",
85
- "validation": "required|email",
86
- "width": "100"
87
- }
88
- ],
89
- "success_message": "<p>Thanks for subscribing to our newsletter! Please check your inbox for confirmation.</p>",
90
- "sort": null
91
- },
92
- {
93
- "user_updated": "95e535d2-f45b-4d94-891b-a89ee6ed1475",
94
- "user_created": "95e535d2-f45b-4d94-891b-a89ee6ed1475",
95
- "id": "940a86aa-0500-4ddb-8ab1-dccfd08295a5",
96
- "date_updated": "2023-10-20T17:47:10.031Z",
97
- "date_created": "2023-09-19T01:10:50.143Z",
98
- "title": "Project Onboarding",
99
- "submit_label": "Submit Answers",
100
- "status": "draft",
101
- "redirect_url": null,
102
- "on_success": "message",
103
- "key": "onboarding",
104
- "schema": [
105
- {
106
- "name": "why",
107
- "type": "textarea",
108
- "label": "Why do this project now?",
109
- "width": "100",
110
- "conditions": [
111
- {
112
- "field": "test_condition",
113
- "action": "show",
114
- "condition": "is_filled",
115
- "value": null
116
- }
117
- ]
118
- },
119
- {
120
- "name": "files",
121
- "type": "file",
122
- "label": "Upload Your Logo",
123
- "width": "67"
124
- }
125
- ],
126
- "success_message": "<p>Thanks for completing the onboarding form. You're amazing!</p>",
127
- "sort": null
128
- }
129
- ]
@@ -1,52 +0,0 @@
1
- {
2
- "logo_on_light_bg": null,
3
- "logo_on_dark_bg": null,
4
- "og_image": "c0253924-38cd-4ca0-9989-9c0a57ec076a",
5
- "id": "ab89c489-faea-4310-8b59-7ddb3caf279a",
6
- "url": "https://www.agencyos.dev",
7
- "title": "Agency OS",
8
- "tagline": "The hackable agency operating system",
9
- "street_address": "123 Main St",
10
- "postal_code": "55555",
11
- "phone": "(555) 123-4567",
12
- "email": "info@example.com",
13
- "build_hook_url": "https://api.netlify.com/build_hooks/6410cc4f3210881c58bf4223",
14
- "address_region": "NY",
15
- "address_locality": "New York",
16
- "address_country": "US",
17
- "theme": {
18
- "primary": "violet",
19
- "gray": "slate",
20
- "borderRadius": "xl",
21
- "fonts": {
22
- "families": {
23
- "display": "Poppins",
24
- "body": "Inter",
25
- "code": "Fira Code"
26
- }
27
- }
28
- },
29
- "social_links": [
30
- {
31
- "service": "github",
32
- "url": "https://github.com/directus-community/agency-os"
33
- },
34
- {
35
- "service": "linkedin",
36
- "url": "https://www.linkedin.com/company/directus-io"
37
- },
38
- {
39
- "service": "youtube",
40
- "url": "https://www.youtube.com/c/DirectusVideos"
41
- },
42
- {
43
- "url": "https://directus.chat/",
44
- "service": "discord"
45
- },
46
- {
47
- "service": "twitter",
48
- "url": "https://twitter.com/directus"
49
- }
50
- ],
51
- "description": "A freaking awesome Nuxt + Directus app that will help you power up your agency."
52
- }
@@ -1,20 +0,0 @@
1
- [
2
- {
3
- "id": "8d7cb6e3-bae7-48f6-9af3-4b510167289c",
4
- "title": "Getting Started",
5
- "slug": "getting-started",
6
- "icon": "not_started",
7
- "description": "How to get started with Agency OS",
8
- "sort": 1,
9
- "articles": []
10
- },
11
- {
12
- "id": "5bb9ab97-a99b-4582-9c7c-58c9e00ccb1e",
13
- "title": "Client Portal",
14
- "slug": "client-portal",
15
- "icon": "captive_portal",
16
- "description": "How to use your client portal.",
17
- "sort": 2,
18
- "articles": []
19
- }
20
- ]
@@ -1,122 +0,0 @@
1
- [
2
- {
3
- "user_updated": null,
4
- "user_created": "95e535d2-f45b-4d94-891b-a89ee6ed1475",
5
- "id": "e96925bd-b775-408a-9478-7de249aa3f67",
6
- "date_updated": "2023-10-03T21:06:56.483Z",
7
- "date_created": "2023-06-19T15:53:34.861Z",
8
- "visitor_id": "34dc4542-4f0b-4a4d-b590-b9b1231008e0",
9
- "url": "http://vitae.io",
10
- "title": "Enterprise-wide directional orchestration",
11
- "comments": "Ill program the virtual XML microchip, that should transmitter the SDD protocol!",
12
- "rating": 3
13
- },
14
- {
15
- "user_updated": null,
16
- "user_created": "95e535d2-f45b-4d94-891b-a89ee6ed1475",
17
- "id": "e9a62b9f-2708-4217-a47c-cecf8e2b4a15",
18
- "date_updated": "2023-03-07T19:18:21.764Z",
19
- "date_created": "2023-06-17T18:56:52.601Z",
20
- "visitor_id": "7ac1bd0a-0c65-4cc3-8aed-75506676d661",
21
- "url": "http://quaerat.org",
22
- "title": "Seamless bi-directional capacity",
23
- "comments": "We need to calculate the open-source SDD driver!",
24
- "rating": 3
25
- },
26
- {
27
- "user_updated": null,
28
- "user_created": "95e535d2-f45b-4d94-891b-a89ee6ed1475",
29
- "id": "e9f639fe-6c42-4b80-ad59-1af7c4ed6777",
30
- "date_updated": "2023-10-09T05:38:06.826Z",
31
- "date_created": "2023-05-14T11:44:50.883Z",
32
- "visitor_id": "9c0b71e0-61e0-4b85-96cd-1cef53de98fc",
33
- "url": "https://deserunt.dev",
34
- "title": "Reactive 4th generation info-mediaries",
35
- "comments": "If we back up the sensor, we can get to the JBOD matrix through the optical EXE alarm!",
36
- "rating": 1
37
- },
38
- {
39
- "user_updated": null,
40
- "user_created": "95e535d2-f45b-4d94-891b-a89ee6ed1475",
41
- "id": "ea5ce31b-a5d0-4b6e-a5f6-eb8580b301b9",
42
- "date_updated": "2023-03-13T21:45:59.071Z",
43
- "date_created": "2023-08-12T00:40:41.229Z",
44
- "visitor_id": "718e1cbb-671c-41b5-a50d-1483e6952349",
45
- "url": "http://necessitatibus.name",
46
- "title": "Mandatory regional complexity",
47
- "comments": "connecting the port wont do anything, we need to program the haptic RSS pixel!",
48
- "rating": 1
49
- },
50
- {
51
- "user_updated": null,
52
- "user_created": "95e535d2-f45b-4d94-891b-a89ee6ed1475",
53
- "id": "ea6d4efd-b4e8-4539-b59d-6664d1a10b12",
54
- "date_updated": "2023-08-04T22:49:20.936Z",
55
- "date_created": "2023-09-27T18:26:37.032Z",
56
- "visitor_id": "94064e22-b5aa-4d77-a5e5-6f92d7d646c7",
57
- "url": "https://ipsum.net",
58
- "title": "Fundamental multi-tasking standardization",
59
- "comments": "Try to generate the TCP bus, maybe it will override the neural bandwidth!",
60
- "rating": 2
61
- },
62
- {
63
- "user_updated": null,
64
- "user_created": "95e535d2-f45b-4d94-891b-a89ee6ed1475",
65
- "id": "eb39a0e1-0d3e-4038-87ae-f47a3022c8e4",
66
- "date_updated": "2023-05-22T13:48:03.720Z",
67
- "date_created": "2023-04-30T21:43:45.468Z",
68
- "visitor_id": "ad1928c8-c3bf-47c3-8549-084ec1499e95",
69
- "url": "http://quos.org",
70
- "title": "User-centric executive knowledge user",
71
- "comments": "calculating the interface wont do anything, we need to bypass the mobile IB panel!",
72
- "rating": 4
73
- },
74
- {
75
- "user_updated": null,
76
- "user_created": "95e535d2-f45b-4d94-891b-a89ee6ed1475",
77
- "id": "ebadb1d9-a308-43fe-918f-4c09eb072b4b",
78
- "date_updated": "2023-08-20T06:56:03.036Z",
79
- "date_created": "2023-08-28T17:29:58.754Z",
80
- "visitor_id": "fad13d70-bd94-4229-8941-3673f1418447",
81
- "url": "http://asperiores.info",
82
- "title": "Compatible fresh-thinking success",
83
- "comments": "Use the multi-byte THX firewall, then you can back up the digital system!",
84
- "rating": 3
85
- },
86
- {
87
- "user_updated": null,
88
- "user_created": "95e535d2-f45b-4d94-891b-a89ee6ed1475",
89
- "id": "ef751ffc-d101-450a-9545-6eb4877bbb9a",
90
- "date_updated": "2023-02-08T04:20:20.930Z",
91
- "date_created": "2023-08-26T03:24:27.894Z",
92
- "visitor_id": "f022a273-6cee-4b94-aab2-da22332c0ccf",
93
- "url": "http://consequatur.io",
94
- "title": "Profit-focused executive core",
95
- "comments": "Try to bypass the GB panel, maybe it will synthesize the back-end transmitter!",
96
- "rating": 2
97
- },
98
- {
99
- "user_updated": null,
100
- "user_created": "95e535d2-f45b-4d94-891b-a89ee6ed1475",
101
- "id": "f187b286-c19e-42b5-9bfa-358cb042dd48",
102
- "date_updated": "2023-05-18T02:46:04.567Z",
103
- "date_created": "2023-05-31T21:51:23.027Z",
104
- "visitor_id": "1f50108d-be5f-4018-975c-98636615bbda",
105
- "url": "http://omnis.io",
106
- "title": "Ameliorated asynchronous pricing structure",
107
- "comments": "The EXE matrix is down, transmit the wireless matrix so we can index the RAM pixel!",
108
- "rating": 2
109
- },
110
- {
111
- "user_updated": null,
112
- "user_created": "95e535d2-f45b-4d94-891b-a89ee6ed1475",
113
- "id": "f2952cf5-c2be-44ce-9dd9-275759fa363f",
114
- "date_updated": "2023-06-01T16:48:34.509Z",
115
- "date_created": "2023-04-17T03:26:29.789Z",
116
- "visitor_id": "997cbbba-ed6a-4c18-91d1-7313f257f05e",
117
- "url": "http://vel.dev",
118
- "title": "Realigned empowering monitoring",
119
- "comments": "Try to override the RSS port, maybe it will quantify the haptic port!",
120
- "rating": 2
121
- }
122
- ]
@@ -1,15 +0,0 @@
1
- [
2
- {
3
- "task": null,
4
- "project": null,
5
- "user_updated": null,
6
- "user_created": null,
7
- "id": "743732e5-9aeb-44dc-9714-739ddf49f129",
8
- "form": "36493b64-2bad-4c58-9d70-785ccb12ee26",
9
- "date_updated": null,
10
- "date_created": "2023-10-25T22:01:07.571Z",
11
- "status": "new",
12
- "data": {},
13
- "sort": null
14
- }
15
- ]
@@ -1,34 +0,0 @@
1
- [
2
- {
3
- "user_updated": "95e535d2-f45b-4d94-891b-a89ee6ed1475",
4
- "user_created": "95e535d2-f45b-4d94-891b-a89ee6ed1475",
5
- "date_updated": "2023-10-20T18:10:04.699Z",
6
- "date_created": "2023-02-26T22:52:32.034Z",
7
- "title": "Footer Navigation",
8
- "status": "published",
9
- "id": "footer",
10
- "items": [
11
- "dc0870f8-e316-48b0-b34d-ca5c4394344c",
12
- "e096f25c-a549-4fe5-a284-17b0a347037a",
13
- "69a080ef-024e-4647-9873-d5876b32699a",
14
- "44faaaaf-d10e-40ef-a890-57750e993733",
15
- "c732b100-1f5a-4ce1-8fde-b0072d09623f",
16
- "55a139ed-f4fa-4227-b5dd-7bf234451da8"
17
- ]
18
- },
19
- {
20
- "user_updated": "95e535d2-f45b-4d94-891b-a89ee6ed1475",
21
- "user_created": "95e535d2-f45b-4d94-891b-a89ee6ed1475",
22
- "date_updated": "2023-10-23T16:29:21.771Z",
23
- "date_created": "2023-02-26T21:51:47.211Z",
24
- "title": "Main Navigation",
25
- "status": "published",
26
- "id": "main",
27
- "items": [
28
- "98fecf94-471c-4439-8289-ff5692853729",
29
- "edb1caf2-ae32-49a3-a3d1-2cf0096a5f07",
30
- "b3e04cd1-c082-4811-8c93-323ab6fcde86",
31
- "fea5cb3b-0a34-4150-90cd-9b41e27ccdb4"
32
- ]
33
- }
34
- ]