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,278 +0,0 @@
1
- [
2
- {
3
- "id": "0147042f-8bab-49ef-995e-1937a2c3676f",
4
- "title": "Web development projects and case studies",
5
- "meta_description": null,
6
- "no_index": false,
7
- "no_follow": false,
8
- "canonical_url": null,
9
- "sitemap_priority": "0.50",
10
- "sitemap_change_frequency": "hourly",
11
- "og_image": null,
12
- "twitter_image": null
13
- },
14
- {
15
- "id": "0b5ccdde-64ac-4147-bb93-48452bd6a4ad",
16
- "title": null,
17
- "meta_description": null,
18
- "no_index": false,
19
- "no_follow": false,
20
- "canonical_url": null,
21
- "sitemap_priority": "0.50",
22
- "sitemap_change_frequency": "hourly",
23
- "og_image": "d304528e-9000-4530-92cf-bb04891e8d5d",
24
- "twitter_image": null
25
- },
26
- {
27
- "id": "205ff1d2-8b89-42e4-a56c-9ed0bc0c2053",
28
- "title": "SEO title",
29
- "meta_description": null,
30
- "no_index": false,
31
- "no_follow": false,
32
- "canonical_url": null,
33
- "sitemap_priority": "0.50",
34
- "sitemap_change_frequency": "hourly",
35
- "og_image": null,
36
- "twitter_image": null
37
- },
38
- {
39
- "id": "2b94ef24-cfd4-49cc-867a-2081470ea3a1",
40
- "title": null,
41
- "meta_description": null,
42
- "no_index": false,
43
- "no_follow": false,
44
- "canonical_url": null,
45
- "sitemap_priority": "0.50",
46
- "sitemap_change_frequency": "hourly",
47
- "og_image": null,
48
- "twitter_image": null
49
- },
50
- {
51
- "id": "3bbd2830-7d3f-4914-ae9b-736ddf212bfb",
52
- "title": null,
53
- "meta_description": null,
54
- "no_index": false,
55
- "no_follow": false,
56
- "canonical_url": null,
57
- "sitemap_priority": "0.50",
58
- "sitemap_change_frequency": "hourly",
59
- "og_image": null,
60
- "twitter_image": null
61
- },
62
- {
63
- "id": "5c01f956-3135-4a4d-a0d9-820a9e832b6a",
64
- "title": "Page Title",
65
- "meta_description": null,
66
- "no_index": false,
67
- "no_follow": false,
68
- "canonical_url": null,
69
- "sitemap_priority": "0.50",
70
- "sitemap_change_frequency": "hourly",
71
- "og_image": null,
72
- "twitter_image": null
73
- },
74
- {
75
- "id": "640d2e86-61ac-4dd5-9f09-52f421e46d53",
76
- "title": "Bettor Signals",
77
- "meta_description": null,
78
- "no_index": false,
79
- "no_follow": false,
80
- "canonical_url": null,
81
- "sitemap_priority": "0.50",
82
- "sitemap_change_frequency": "hourly",
83
- "og_image": null,
84
- "twitter_image": null
85
- },
86
- {
87
- "id": "6c173487-762e-44af-8fb7-3676a49df8d3",
88
- "title": "New Post",
89
- "meta_description": null,
90
- "no_index": false,
91
- "no_follow": false,
92
- "canonical_url": null,
93
- "sitemap_priority": "0.50",
94
- "sitemap_change_frequency": null,
95
- "og_image": null,
96
- "twitter_image": null
97
- },
98
- {
99
- "id": "6fda4d61-a5e8-463b-b97a-505da1ac401d",
100
- "title": "Services",
101
- "meta_description": "Here's the services we offer",
102
- "no_index": false,
103
- "no_follow": false,
104
- "canonical_url": null,
105
- "sitemap_priority": "0.50",
106
- "sitemap_change_frequency": "hourly",
107
- "og_image": null,
108
- "twitter_image": null
109
- },
110
- {
111
- "id": "73705376-ec30-4479-9368-8d64b72e7e0b",
112
- "title": "New Page",
113
- "meta_description": null,
114
- "no_index": false,
115
- "no_follow": false,
116
- "canonical_url": null,
117
- "sitemap_priority": "0.50",
118
- "sitemap_change_frequency": "hourly",
119
- "og_image": null,
120
- "twitter_image": null
121
- },
122
- {
123
- "id": "76469818-993f-4452-a039-95037f190f36",
124
- "title": null,
125
- "meta_description": null,
126
- "no_index": false,
127
- "no_follow": false,
128
- "canonical_url": null,
129
- "sitemap_priority": "0.50",
130
- "sitemap_change_frequency": "hourly",
131
- "og_image": null,
132
- "twitter_image": null
133
- },
134
- {
135
- "id": "8c7e24a4-61fc-4725-8dbe-d74ca65c9950",
136
- "title": null,
137
- "meta_description": null,
138
- "no_index": false,
139
- "no_follow": false,
140
- "canonical_url": null,
141
- "sitemap_priority": "0.50",
142
- "sitemap_change_frequency": "hourly",
143
- "og_image": null,
144
- "twitter_image": null
145
- },
146
- {
147
- "id": "a68e31da-d56b-4ec2-b8bf-e9cd15ad8c37",
148
- "title": "Test Page Too",
149
- "meta_description": null,
150
- "no_index": false,
151
- "no_follow": false,
152
- "canonical_url": null,
153
- "sitemap_priority": "0.50",
154
- "sitemap_change_frequency": null,
155
- "og_image": null,
156
- "twitter_image": null
157
- },
158
- {
159
- "id": "b1f04203-66c4-42ae-b1e1-3529555cc51e",
160
- "title": "Custom web development agency",
161
- "meta_description": "Web and mobile applications that wow your users",
162
- "no_index": false,
163
- "no_follow": false,
164
- "canonical_url": null,
165
- "sitemap_priority": "0.50",
166
- "sitemap_change_frequency": "hourly",
167
- "og_image": null,
168
- "twitter_image": null
169
- },
170
- {
171
- "id": "c1456ffb-7cab-4b3e-88fd-d05a357e0cdd",
172
- "title": "Test title",
173
- "meta_description": null,
174
- "no_index": false,
175
- "no_follow": false,
176
- "canonical_url": null,
177
- "sitemap_priority": "0.50",
178
- "sitemap_change_frequency": "hourly",
179
- "og_image": null,
180
- "twitter_image": null
181
- },
182
- {
183
- "id": "c9fbf226-94a0-4616-8766-43398624e97d",
184
- "title": null,
185
- "meta_description": null,
186
- "no_index": false,
187
- "no_follow": false,
188
- "canonical_url": null,
189
- "sitemap_priority": "0.50",
190
- "sitemap_change_frequency": "hourly",
191
- "og_image": null,
192
- "twitter_image": null
193
- },
194
- {
195
- "id": "cc55e149-c07c-4a98-9445-764f4d572e87",
196
- "title": "Articles on development, marketing, and more.",
197
- "meta_description": null,
198
- "no_index": false,
199
- "no_follow": false,
200
- "canonical_url": null,
201
- "sitemap_priority": "0.50",
202
- "sitemap_change_frequency": "hourly",
203
- "og_image": null,
204
- "twitter_image": null
205
- },
206
- {
207
- "id": "ce17cd07-f47d-404c-8736-17abd45b3662",
208
- "title": "Web Development Agency",
209
- "meta_description": "Websites and apps that wow your users.",
210
- "no_index": false,
211
- "no_follow": false,
212
- "canonical_url": null,
213
- "sitemap_priority": "0.50",
214
- "sitemap_change_frequency": null,
215
- "og_image": null,
216
- "twitter_image": null
217
- },
218
- {
219
- "id": "d9bbe93e-867b-4b6b-b530-0546acb6bd49",
220
- "title": null,
221
- "meta_description": null,
222
- "no_index": false,
223
- "no_follow": false,
224
- "canonical_url": null,
225
- "sitemap_priority": "0.50",
226
- "sitemap_change_frequency": "hourly",
227
- "og_image": null,
228
- "twitter_image": null
229
- },
230
- {
231
- "id": "da230df5-b9e6-4430-ba8e-54fea767accc",
232
- "title": "Privacy Policy",
233
- "meta_description": null,
234
- "no_index": false,
235
- "no_follow": false,
236
- "canonical_url": null,
237
- "sitemap_priority": "0.50",
238
- "sitemap_change_frequency": "hourly",
239
- "og_image": null,
240
- "twitter_image": null
241
- },
242
- {
243
- "id": "dec6b80e-20a1-4e3a-bc4a-98cabb263ec3",
244
- "title": "New Page",
245
- "meta_description": null,
246
- "no_index": false,
247
- "no_follow": false,
248
- "canonical_url": null,
249
- "sitemap_priority": "0.50",
250
- "sitemap_change_frequency": null,
251
- "og_image": null,
252
- "twitter_image": null
253
- },
254
- {
255
- "id": "e87c8935-b5e1-49d6-b5c2-1b866f089d81",
256
- "title": "New Landing Page",
257
- "meta_description": null,
258
- "no_index": false,
259
- "no_follow": false,
260
- "canonical_url": null,
261
- "sitemap_priority": "0.50",
262
- "sitemap_change_frequency": "hourly",
263
- "og_image": null,
264
- "twitter_image": null
265
- },
266
- {
267
- "id": "eef0aa0c-8b23-4c8c-8a06-8a09966462e1",
268
- "title": "Landing Page Meta Title",
269
- "meta_description": "Ullamco mollit id minim veniam occaecat eiusmod consectetur et. Tempor ullamco quis veniam amet. Et exercitation aliqua eiusmod ipsum in anim amet. Sint ea duis ut. Quis aliquip culpa qui non ex nostrud dolore. Consectetur non proident do. Sunt nisi adipisicing pariatur consectetur cupidatat occaecat aute laboris amet.",
270
- "no_index": false,
271
- "no_follow": false,
272
- "canonical_url": null,
273
- "sitemap_priority": "0.50",
274
- "sitemap_change_frequency": "hourly",
275
- "og_image": null,
276
- "twitter_image": null
277
- }
278
- ]
@@ -1,132 +0,0 @@
1
- [
2
- {
3
- "id": "74705463-e6df-469f-85b5-d9e4b63989af",
4
- "status": "published",
5
- "sort": null,
6
- "user_created": "9fdd1ca5-982e-422d-bced-640e3a98a339",
7
- "date_created": "2023-02-26T23:10:37.466Z",
8
- "user_updated": "9fdd1ca5-982e-422d-bced-640e3a98a339",
9
- "date_updated": "2023-04-03T17:55:20.150Z",
10
- "name": "Rabbat Minor",
11
- "job_title": "Director of Demand Gen",
12
- "bio": "<p>When I was 19, I realized my dreams of being a rock star weren't going to pan out. So, I decided to sellout 😂. I fell into marketing by chance, but it quickly became a labor of love. At my core, I enjoy learning more about people and their stories. That being said &ndash; let's chat! I'd love to hear your story.</p>",
13
- "image": "643faffb-d41d-48ad-9050-881cf495cbb6",
14
- "social_media": [
15
- {
16
- "service": "linkedin",
17
- "url": "https://www.linkedin.com/in/mattbminor/"
18
- },
19
- {
20
- "service": "twitter",
21
- "url": "https://twitter.com/mattm1nor"
22
- }
23
- ]
24
- },
25
- {
26
- "id": "78773c92-7e57-4e58-8198-c840958cedb6",
27
- "status": "published",
28
- "sort": null,
29
- "user_created": "9fdd1ca5-982e-422d-bced-640e3a98a339",
30
- "date_created": "2023-02-27T04:16:40.763Z",
31
- "user_updated": "9fdd1ca5-982e-422d-bced-640e3a98a339",
32
- "date_updated": "2023-04-03T17:36:24.000Z",
33
- "name": "Carrot Gillespie",
34
- "job_title": "Developer Advocate",
35
- "bio": "<p>When I was 19, I realized my dreams of being a rock star weren't going to pan out. So, I decided to sellout 😂. I fell into marketing by chance, but it quickly became a labor of love. At my core, I enjoy learning more about people and their stories. That being said &ndash; let's chat! I'd love to hear your story.</p>",
36
- "image": "e15ca910-1567-4f15-b5a0-b802da67f228",
37
- "social_media": [
38
- {
39
- "service": "linkedin",
40
- "url": "https://www.linkedin.com/in/mattbminor/"
41
- },
42
- {
43
- "service": "twitter",
44
- "url": "https://twitter.com/mattm1nor"
45
- }
46
- ]
47
- },
48
- {
49
- "id": "78ea9b95-41ca-49a4-9990-ba9e4d44a057",
50
- "status": "published",
51
- "sort": null,
52
- "user_created": "9fdd1ca5-982e-422d-bced-640e3a98a339",
53
- "date_created": "2023-02-27T04:00:19.846Z",
54
- "user_updated": "9fdd1ca5-982e-422d-bced-640e3a98a339",
55
- "date_updated": "2023-04-03T17:36:24.000Z",
56
- "name": "Bunny Daniels",
57
- "job_title": "Account Executive",
58
- "bio": "<p>When I was 19, I realized my dreams of being a rock star weren't going to pan out. So, I decided to sellout 😂. I fell into marketing by chance, but it quickly became a labor of love. At my core, I enjoy learning more about people and their stories. That being said &ndash; let's chat! I'd love to hear your story.</p>",
59
- "image": "f1693c44-52e4-4fae-a7d2-b3153a34eb72",
60
- "social_media": [
61
- {
62
- "service": "twitter",
63
- "url": "https://twitter.com/mattm1nor"
64
- }
65
- ]
66
- },
67
- {
68
- "id": "fbe0f198-c456-4da3-ba31-52952c93825e",
69
- "status": "published",
70
- "sort": null,
71
- "user_created": "9fdd1ca5-982e-422d-bced-640e3a98a339",
72
- "date_created": "2023-02-27T04:16:48.198Z",
73
- "user_updated": "9fdd1ca5-982e-422d-bced-640e3a98a339",
74
- "date_updated": "2023-04-03T17:36:24.000Z",
75
- "name": "Pawdro Pizzaro",
76
- "job_title": "Account Executive",
77
- "bio": "<p>When I was 19, I realized my dreams of being a rock star weren't going to pan out. So, I decided to sellout 😂. I fell into marketing by chance, but it quickly became a labor of love. At my core, I enjoy learning more about people and their stories. That being said &ndash; let's chat! I'd love to hear your story.</p>",
78
- "image": "d598a4c0-4e9a-44a3-a72e-49564e34a432",
79
- "social_media": [
80
- {
81
- "service": "linkedin",
82
- "url": "https://www.linkedin.com/in/mattbminor/"
83
- }
84
- ]
85
- },
86
- {
87
- "id": "113893f5-1768-4ab0-92eb-bd6ee8236437",
88
- "status": "published",
89
- "sort": null,
90
- "user_created": "9fdd1ca5-982e-422d-bced-640e3a98a339",
91
- "date_created": "2023-02-27T04:00:05.744Z",
92
- "user_updated": "9fdd1ca5-982e-422d-bced-640e3a98a339",
93
- "date_updated": "2023-04-03T17:36:24.000Z",
94
- "name": "Bun Haynes",
95
- "job_title": "CEO",
96
- "bio": "<p>When I was 19, I realized my dreams of being a rock star weren't going to pan out. So, I decided to sellout 😂. I fell into marketing by chance, but it quickly became a labor of love. At my core, I enjoy learning more about people and their stories. That being said &ndash; let's chat! I'd love to hear your story.</p>",
97
- "image": "08177527-b867-47e9-b5d5-eab146b3cdba",
98
- "social_media": [
99
- {
100
- "service": "linkedin",
101
- "url": "https://www.linkedin.com/in/mattbminor/"
102
- },
103
- {
104
- "service": "twitter",
105
- "url": "https://twitter.com/mattm1nor"
106
- }
107
- ]
108
- },
109
- {
110
- "id": "382915eb-1fec-45ab-a680-590d5554bb21",
111
- "status": "published",
112
- "sort": null,
113
- "user_created": "9fdd1ca5-982e-422d-bced-640e3a98a339",
114
- "date_created": "2023-02-27T04:00:12.339Z",
115
- "user_updated": "9fdd1ca5-982e-422d-bced-640e3a98a339",
116
- "date_updated": "2023-04-03T17:36:24.000Z",
117
- "name": "Hare Booth",
118
- "job_title": "VP of Marketing",
119
- "bio": "<p>When I was 19, I realized my dreams of being a rock star weren't going to pan out. So, I decided to sellout 😂. I fell into marketing by chance, but it quickly became a labor of love. At my core, I enjoy learning more about people and their stories. That being said &ndash; let's chat! I'd love to hear your story.</p>",
120
- "image": "72eea8c7-72fe-4ef2-9e57-524f7cb886a4",
121
- "social_media": [
122
- {
123
- "service": "linkedin",
124
- "url": "https://www.linkedin.com/in/mattbminor/"
125
- },
126
- {
127
- "service": "twitter",
128
- "url": "https://twitter.com/mattm1nor"
129
- }
130
- ]
131
- }
132
- ]
@@ -1,66 +0,0 @@
1
- [
2
- {
3
- "id": "97ac6e52-69b4-4015-bed4-049c83bb5507",
4
- "status": "published",
5
- "sort": null,
6
- "user_created": "9fdd1ca5-982e-422d-bced-640e3a98a339",
7
- "date_created": "2023-02-26T17:34:21.820Z",
8
- "user_updated": "b3182bed-fa0a-45cf-9678-0cc54b7a8fb3",
9
- "date_updated": "2023-03-01T23:00:55.753Z",
10
- "title": "Elon Musk",
11
- "subtitle": "CEO",
12
- "company": "Tesla",
13
- "company_logo": null,
14
- "link": null,
15
- "image": "7775c53a-6c2c-453d-8c22-8b5445121d10",
16
- "content": "<p>When we needed help building a new e-commerce platform, we turned to DEF Dev Agency, and we're so glad we did. Their team of experts, led by Project Manager Jane Smith, were incredibly knowledgeable and attentive to our needs. They communicated regularly with us throughout the development process, ensuring that the final product met our exact specifications. Thanks to their hard work, we now have a platform that has significantly improved our business. We highly recommend DEF Dev Agency to anyone looking for top-quality development services.</p>"
17
- },
18
- {
19
- "id": "d507ff08-a0ca-4acb-abd7-1b294b9e105c",
20
- "status": "published",
21
- "sort": null,
22
- "user_created": "9fdd1ca5-982e-422d-bced-640e3a98a339",
23
- "date_created": "2023-02-26T17:34:52.209Z",
24
- "user_updated": "b3182bed-fa0a-45cf-9678-0cc54b7a8fb3",
25
- "date_updated": "2023-03-01T23:00:55.804Z",
26
- "title": "Shantanu Narayen",
27
- "subtitle": "CEO",
28
- "company": "Adobe",
29
- "company_logo": null,
30
- "link": null,
31
- "image": "3eff7dc2-445a-47c5-9503-3f600ecdb5c6",
32
- "content": "<p>We couldn't be happier with the mobile app that GHI Dev Agency helped us create. Their team, led by Lead Developer Alex Rodriguez, was always available to answer our questions and provide updates. They took the time to understand our needs and built a custom app that perfectly met our requirements. Thanks to their efforts, our app has been a huge hit with users and has helped us achieve our business goals. We highly recommend GHI Dev Agency to anyone in need of expert development services.</p>"
33
- },
34
- {
35
- "id": "40b34bf4-c3c9-4833-ab22-4b4ea1fb7eb7",
36
- "status": "published",
37
- "sort": null,
38
- "user_created": "9fdd1ca5-982e-422d-bced-640e3a98a339",
39
- "date_created": "2023-03-15T17:22:41.108Z",
40
- "user_updated": "9fdd1ca5-982e-422d-bced-640e3a98a339",
41
- "date_updated": "2023-03-15T17:22:29.137Z",
42
- "title": "Tim Apple",
43
- "subtitle": "CEO",
44
- "company": "Apple",
45
- "company_logo": null,
46
- "link": null,
47
- "image": "3eff7dc2-445a-47c5-9503-3f600ecdb5c6",
48
- "content": "<p>Working with this dev agency was a game-changer for our business. They helped us develop a custom web application that has transformed the way we operate. From start to finish, the team was professional, responsive, and highly skilled. They took the time to understand our needs and worked closely with us to ensure the final product met all of our requirements. We couldn't be happier with the end result and highly recommend this dev agency to anyone looking for top-notch development services.</p>"
49
- },
50
- {
51
- "id": "372b754c-412b-4478-8054-070ba40c0615",
52
- "status": "published",
53
- "sort": null,
54
- "user_created": "9fdd1ca5-982e-422d-bced-640e3a98a339",
55
- "date_created": "2023-02-26T14:32:08.322Z",
56
- "user_updated": "9fdd1ca5-982e-422d-bced-640e3a98a339",
57
- "date_updated": "2023-03-16T12:54:14.653Z",
58
- "title": "John Doe",
59
- "subtitle": "CEO",
60
- "company": "Apple",
61
- "company_logo": null,
62
- "link": null,
63
- "image": null,
64
- "content": "<p>Working with this dev agency was a game-changer for our business. They helped us develop a custom web application that has transformed the way we operate. From start to finish, the team was professional, responsive, and highly skilled. They took the time to understand our needs and worked closely with us to ensure the final product met all of our requirements. We couldn't be happier with the end result and highly recommend this dev agency to anyone looking for top-notch development services.</p>"
65
- }
66
- ]
@@ -1,38 +0,0 @@
1
- [
2
- {
3
- "id": "013b1a80-b551-475a-bbd8-119f1e1e9134",
4
- "name": "Content",
5
- "icon": "content_paste",
6
- "note": "Stats on content workflow",
7
- "date_created": "2023-03-23T14:08:56.504Z",
8
- "user_created": "9fdd1ca5-982e-422d-bced-640e3a98a339",
9
- "color": "#FF99DD",
10
- "panels": [
11
- "1479ba5f-eebf-4f3f-b9bb-fbe6c409b376",
12
- "2565b21e-cfed-417a-a21b-f5520be8707f",
13
- "3987050b-48e4-41a6-9a31-c8fc388160a4",
14
- "5d0adedb-c78e-44c2-b43a-f50b2526dd32",
15
- "6210699c-365d-4715-9d3f-1cd91bf86145",
16
- "69b49682-9dd8-49e0-bed1-7151beb4be96",
17
- "926a7632-c7f3-4da7-bc61-c6d4fb4fe900",
18
- "bab08465-6abb-43ac-9ce0-c2b65b8a12b5",
19
- "c7963278-b862-4ded-954e-019ebf88271a",
20
- "c92b79b3-2bc5-4be7-b83e-95c588463d3c",
21
- "e85f38ea-8eb7-4b28-a877-39dda66140c6",
22
- "e99840a1-d366-40ae-94ce-84f963191322"
23
- ]
24
- },
25
- {
26
- "id": "0612ec0b-4db9-45c9-a824-c1e817aca21c",
27
- "name": "Analytics",
28
- "icon": "stacked_bar_chart",
29
- "note": "Website and conversion analytics",
30
- "date_created": "2023-03-22T20:08:59.611Z",
31
- "user_created": "9fdd1ca5-982e-422d-bced-640e3a98a339",
32
- "color": "#A2B5CD",
33
- "panels": [
34
- "18bb7102-3b89-4ebf-9c40-75f1f3ac950e",
35
- "5caba4e3-8aa0-470e-b5cd-d062a70d0a8c"
36
- ]
37
- }
38
- ]