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.
- package/README.md +5 -2
- package/dist/commands/apply.d.ts +1 -1
- package/dist/commands/apply.js +80 -50
- package/dist/commands/extract.d.ts +1 -2
- package/dist/commands/extract.js +13 -18
- package/dist/lib/extract/extract-assets.d.ts +182 -2
- package/dist/lib/extract/extract-assets.js +25 -32
- package/dist/lib/extract/extract-collections.d.ts +4 -0
- package/dist/lib/extract/extract-collections.js +24 -0
- package/dist/lib/extract/extract-content.d.ts +1 -1
- package/dist/lib/extract/extract-content.js +18 -18
- package/dist/lib/extract/extract-dashboards.d.ts +8 -0
- package/dist/lib/extract/extract-dashboards.js +42 -0
- package/dist/lib/extract/extract-fields.d.ts +4 -0
- package/dist/lib/extract/extract-fields.js +30 -0
- package/dist/lib/extract/extract-files.js +11 -34
- package/dist/lib/extract/extract-flows.d.ts +8 -0
- package/dist/lib/extract/extract-flows.js +42 -0
- package/dist/lib/extract/extract-folders.d.ts +1 -1
- package/dist/lib/extract/extract-folders.js +12 -13
- package/dist/lib/extract/extract-permissions.d.ts +1 -1
- package/dist/lib/extract/extract-permissions.js +13 -13
- package/dist/lib/extract/extract-presets.js +15 -11
- package/dist/lib/extract/extract-relations.d.ts +4 -0
- package/dist/lib/extract/extract-relations.js +33 -0
- package/dist/lib/extract/extract-roles.js +11 -22
- package/dist/lib/extract/extract-schema.js +14 -14
- package/dist/lib/extract/extract-settings.d.ts +4 -0
- package/dist/lib/extract/extract-settings.js +22 -0
- package/dist/lib/extract/extract-translations.d.ts +4 -0
- package/dist/lib/extract/extract-translations.js +24 -0
- package/dist/lib/extract/extract-users.d.ts +1 -1
- package/dist/lib/extract/extract-users.js +14 -36
- package/dist/lib/extract/index.d.ts +1 -1
- package/dist/lib/extract/index.js +27 -32
- package/dist/lib/interfaces.d.ts +1 -1
- package/dist/lib/load/index.d.ts +1 -1
- package/dist/lib/load/index.js +33 -44
- package/dist/lib/load/load-collections.d.ts +4 -0
- package/dist/lib/load/load-collections.js +66 -0
- package/dist/lib/load/load-dashboards.d.ts +2 -1
- package/dist/lib/load/load-dashboards.js +33 -3
- package/dist/lib/load/load-data.d.ts +1 -1
- package/dist/lib/load/load-data.js +87 -60
- package/dist/lib/load/load-files.d.ts +1 -1
- package/dist/lib/load/load-files.js +23 -20
- package/dist/lib/load/load-flows.d.ts +2 -2
- package/dist/lib/load/load-flows.js +43 -9
- package/dist/lib/load/load-folders.js +15 -11
- package/dist/lib/load/load-permissions.d.ts +1 -1
- package/dist/lib/load/load-permissions.js +22 -21
- package/dist/lib/load/load-presets.d.ts +1 -2
- package/dist/lib/load/load-presets.js +16 -19
- package/dist/lib/load/load-relations.d.ts +4 -0
- package/dist/lib/load/load-relations.js +33 -0
- package/dist/lib/load/load-roles.d.ts +1 -1
- package/dist/lib/load/load-roles.js +20 -10
- package/dist/lib/load/load-schema.d.ts +14 -2
- package/dist/lib/load/load-schema.js +85 -10
- package/dist/lib/load/load-settings.d.ts +1 -1
- package/dist/lib/load/load-settings.js +10 -4
- package/dist/lib/load/load-translations.d.ts +1 -0
- package/dist/lib/load/load-translations.js +21 -0
- package/dist/lib/load/load-users.d.ts +1 -2
- package/dist/lib/load/load-users.js +19 -8
- package/dist/lib/sdk.d.ts +13 -0
- package/dist/lib/sdk.js +26 -0
- package/dist/lib/utils/auth.d.ts +2 -2
- package/dist/lib/utils/auth.js +12 -11
- package/dist/lib/utils/check-template.d.ts +1 -0
- package/dist/lib/utils/check-template.js +32 -0
- package/dist/lib/utils/filter-fields.js +5 -5
- package/dist/lib/utils/get-role-ids.d.ts +55 -0
- package/dist/lib/utils/get-role-ids.js +14 -0
- package/dist/lib/utils/log-error.d.ts +14 -0
- package/dist/lib/utils/log-error.js +25 -0
- package/dist/lib/utils/path.d.ts +7 -0
- package/dist/lib/utils/path.js +20 -0
- package/dist/lib/utils/read-file.d.ts +0 -1
- package/dist/lib/utils/read-file.js +7 -9
- package/dist/lib/utils/read-templates.js +2 -2
- package/dist/lib/utils/system-fields.d.ts +20 -0
- package/dist/lib/utils/system-fields.js +159 -0
- package/dist/lib/utils/template-defaults.js +8 -11
- package/dist/lib/utils/transform-github-url.d.ts +1 -0
- package/dist/lib/utils/transform-github-url.js +15 -0
- package/dist/lib/utils/validate-url.js +1 -1
- package/dist/lib/utils/write-to-file.js +4 -4
- package/oclif.manifest.json +34 -16
- package/package.json +25 -23
- package/dist/lib/api.d.ts +0 -15
- package/dist/lib/api.js +0 -37
- package/dist/lib/extract/extract-from-endpoint.d.ts +0 -4
- package/dist/lib/extract/extract-from-endpoint.js +0 -23
- package/dist/lib/load/load-operations.d.ts +0 -1
- package/dist/lib/load/load-operations.js +0 -29
- package/dist/lib/load/load-panels.d.ts +0 -0
- package/dist/lib/load/load-panels.js +0 -0
- package/dist/lib/utils/delete-items.d.ts +0 -1
- package/dist/lib/utils/delete-items.js +0 -15
- package/dist/lib/utils/load-to-destination.d.ts +0 -1
- package/dist/lib/utils/load-to-destination.js +0 -14
- package/templates/agencyos/README.md +0 -11
- package/templates/agencyos/package.json +0 -11
- package/templates/agencyos/src/assets/08177527-b867-47e9-b5d5-eab146b3cdba.jpg +0 -0
- package/templates/agencyos/src/assets/08242513-ca8f-471f-b69b-82703a19d1e5.svg +0 -14
- package/templates/agencyos/src/assets/0dfe66dd-ceba-4dca-8907-03b2dda49443.svg +0 -1
- package/templates/agencyos/src/assets/12e02b82-b4a4-4aaf-8ca4-e73c20a41c26.jpeg +0 -0
- package/templates/agencyos/src/assets/1f19dd72-a433-481d-9b51-e3cc8e4f33d3.svg +0 -1
- package/templates/agencyos/src/assets/1f69c0b8-19b7-49d7-b420-bedad577a079.png +0 -0
- package/templates/agencyos/src/assets/21e179ab-72c3-4350-b46a-fadd16f5652e.svg +0 -1
- package/templates/agencyos/src/assets/270fa8d1-45a3-4fcb-87d2-27a0248f1daf.jpg +0 -0
- package/templates/agencyos/src/assets/27f55be1-7ef5-47c4-87ba-ab9a060ab270.jpeg +0 -0
- package/templates/agencyos/src/assets/2b4a0ba0-52c7-4e10-b191-c803d8da6a36.png +0 -0
- package/templates/agencyos/src/assets/35a67f1b-d401-4300-a503-b8e583186f2a.svg +0 -11
- package/templates/agencyos/src/assets/3eff7dc2-445a-47c5-9503-3f600ecdb5c6.jpeg +0 -0
- package/templates/agencyos/src/assets/44a4e780-d59b-4fa5-9b26-1c4b447474d2.jpg +0 -0
- package/templates/agencyos/src/assets/4b31c98e-ec03-4b91-bb18-ef55dd199638.jpg +0 -0
- package/templates/agencyos/src/assets/5419bf05-9ab2-484b-a69d-d09b18602cf1.svg +0 -1
- package/templates/agencyos/src/assets/5a6dfe1e-7e5b-4a5f-9f6c-983777a67c05.svg +0 -1
- package/templates/agencyos/src/assets/643faffb-d41d-48ad-9050-881cf495cbb6.jpg +0 -0
- package/templates/agencyos/src/assets/6464e61f-455a-4b47-b623-bb12e5251dfe.jpeg +0 -0
- package/templates/agencyos/src/assets/6789bc72-ab83-40bf-8152-d6f2bafbc2a8.png +0 -0
- package/templates/agencyos/src/assets/68103296-6634-4d66-918a-04b09afe6621.jpeg +0 -0
- package/templates/agencyos/src/assets/690c2042-e3ad-46f4-9cd8-095a7b3a1df7.svg +0 -3
- package/templates/agencyos/src/assets/6a1ca349-d7ab-4f43-9284-c61671e145f2.svg +0 -22
- package/templates/agencyos/src/assets/6dad2008-3af5-407e-827e-da5744223181.svg +0 -1
- package/templates/agencyos/src/assets/6ff389c5-3ecb-4219-8f72-f10326aab421.jpg +0 -0
- package/templates/agencyos/src/assets/7647f4c2-9880-433a-bb8e-69b0c30ae31e.svg +0 -1
- package/templates/agencyos/src/assets/7775c53a-6c2c-453d-8c22-8b5445121d10.jpeg +0 -0
- package/templates/agencyos/src/assets/793e9bf7-c646-4588-8865-fe22556070ff.svg +0 -1
- package/templates/agencyos/src/assets/87fc0e81-45e4-4c05-8e9a-8e5c759d7aae.png +0 -0
- package/templates/agencyos/src/assets/88b95737-7ff4-4a09-8523-362d42caa9f9.jpg +0 -0
- package/templates/agencyos/src/assets/8f748634-d77b-4985-b27e-7e1f3559881a.jpeg +0 -0
- package/templates/agencyos/src/assets/a104c031-6ad2-4148-ace6-052e28cfda0b.svg +0 -1
- package/templates/agencyos/src/assets/ac905071-0643-4337-8f53-48ed45b1ccf2.jpg +0 -0
- package/templates/agencyos/src/assets/b1a3fd77-8e62-4678-9d44-333a30eec13b.jpg +0 -0
- package/templates/agencyos/src/assets/b210ecec-860f-4057-bab9-18c044b6e129.jpg +0 -0
- package/templates/agencyos/src/assets/b9db00d9-535f-4e24-8a46-5f7e5fc65bf2.jpg +0 -0
- package/templates/agencyos/src/assets/c0253924-38cd-4ca0-9989-9c0a57ec076a.png +0 -0
- package/templates/agencyos/src/assets/ce0b845f-f8d8-4856-b0af-1df4e3a838cc.jpg +0 -0
- package/templates/agencyos/src/assets/d0130348-9ead-49d0-b8e7-871cd43921a0.svg +0 -1
- package/templates/agencyos/src/assets/d4fd6edc-4cc5-48c1-8bc7-e646924bbdca.jpeg +0 -0
- package/templates/agencyos/src/assets/d598a4c0-4e9a-44a3-a72e-49564e34a432.jpg +0 -0
- package/templates/agencyos/src/assets/d94c9355-d89e-4229-941a-62b8525fd69a.png +0 -0
- package/templates/agencyos/src/assets/df0745c2-b6e3-4b37-b64d-55a4eb0033ab.avif +0 -0
- package/templates/agencyos/src/assets/df979753-946b-4d93-954e-e24367388d2c.svg +0 -1
- package/templates/agencyos/src/assets/dfa90758-9700-49e4-8fa2-b6cd074811b7.png +0 -0
- package/templates/agencyos/src/assets/e15ca910-1567-4f15-b5a0-b802da67f228.jpg +0 -0
- package/templates/agencyos/src/assets/eef7d7b1-3bf9-4647-90c1-a16c24161335.svg +0 -4
- package/templates/agencyos/src/assets/f1693c44-52e4-4fae-a7d2-b3153a34eb72.jpg +0 -0
- package/templates/agencyos/src/assets/f81e1a85-5a9c-41ef-9ef3-6a9349722daa.jpg +0 -0
- package/templates/agencyos/src/assets/fbae19f3-8739-4048-a20f-89ebbf59b032.jpg +0 -0
- package/templates/agencyos/src/collections.json +0 -3007
- package/templates/agencyos/src/content/block_button.json +0 -50
- package/templates/agencyos/src/content/block_button_group.json +0 -27
- package/templates/agencyos/src/content/block_columns.json +0 -18
- package/templates/agencyos/src/content/block_columns_rows.json +0 -47
- package/templates/agencyos/src/content/block_cta.json +0 -9
- package/templates/agencyos/src/content/block_divider.json +0 -14
- package/templates/agencyos/src/content/block_faqs.json +0 -90
- package/templates/agencyos/src/content/block_form.json +0 -26
- package/templates/agencyos/src/content/block_gallery.json +0 -19
- package/templates/agencyos/src/content/block_gallery_files.json +0 -102
- package/templates/agencyos/src/content/block_hero.json +0 -20
- package/templates/agencyos/src/content/block_html.json +0 -1
- package/templates/agencyos/src/content/block_logocloud.json +0 -24
- package/templates/agencyos/src/content/block_logocloud_logos.json +0 -50
- package/templates/agencyos/src/content/block_quote.json +0 -14
- package/templates/agencyos/src/content/block_richtext.json +0 -58
- package/templates/agencyos/src/content/block_step_items.json +0 -47
- package/templates/agencyos/src/content/block_steps.json +0 -24
- package/templates/agencyos/src/content/block_team.json +0 -14
- package/templates/agencyos/src/content/block_testimonial_slider_items.json +0 -42
- package/templates/agencyos/src/content/block_testimonials.json +0 -13
- package/templates/agencyos/src/content/block_video.json +0 -10
- package/templates/agencyos/src/content/categories.json +0 -38
- package/templates/agencyos/src/content/contacts.json +0 -46
- package/templates/agencyos/src/content/conversations.json +0 -1
- package/templates/agencyos/src/content/forms.json +0 -129
- package/templates/agencyos/src/content/globals.json +0 -52
- package/templates/agencyos/src/content/help_articles.json +0 -1
- package/templates/agencyos/src/content/help_collections.json +0 -20
- package/templates/agencyos/src/content/help_feedback.json +0 -122
- package/templates/agencyos/src/content/inbox.json +0 -15
- package/templates/agencyos/src/content/messages.json +0 -1
- package/templates/agencyos/src/content/navigation.json +0 -34
- package/templates/agencyos/src/content/navigation_items.json +0 -185
- package/templates/agencyos/src/content/organization_addresses.json +0 -18
- package/templates/agencyos/src/content/organizations.json +0 -50
- package/templates/agencyos/src/content/organizations_contacts.json +0 -14
- package/templates/agencyos/src/content/os_activities.json +0 -23
- package/templates/agencyos/src/content/os_activity_contacts.json +0 -7
- package/templates/agencyos/src/content/os_deal_contacts.json +0 -9
- package/templates/agencyos/src/content/os_deal_stages.json +0 -68
- package/templates/agencyos/src/content/os_deals.json +0 -27
- package/templates/agencyos/src/content/os_email_templates.json +0 -13
- package/templates/agencyos/src/content/os_expenses.json +0 -22
- package/templates/agencyos/src/content/os_invoice_items.json +0 -65
- package/templates/agencyos/src/content/os_invoices.json +0 -29
- package/templates/agencyos/src/content/os_items.json +0 -17
- package/templates/agencyos/src/content/os_payment_terms.json +0 -18
- package/templates/agencyos/src/content/os_payments.json +0 -291
- package/templates/agencyos/src/content/os_project_contacts.json +0 -8
- package/templates/agencyos/src/content/os_project_files.json +0 -1
- package/templates/agencyos/src/content/os_project_templates.json +0 -467
- package/templates/agencyos/src/content/os_project_updates.json +0 -1
- package/templates/agencyos/src/content/os_projects.json +0 -50
- package/templates/agencyos/src/content/os_proposal_approvals.json +0 -1
- package/templates/agencyos/src/content/os_proposal_blocks.json +0 -134
- package/templates/agencyos/src/content/os_proposal_contacts.json +0 -8
- package/templates/agencyos/src/content/os_proposals.json +0 -33
- package/templates/agencyos/src/content/os_settings.json +0 -6
- package/templates/agencyos/src/content/os_task_files.json +0 -1
- package/templates/agencyos/src/content/os_tasks.json +0 -464
- package/templates/agencyos/src/content/os_tax_rates.json +0 -24
- package/templates/agencyos/src/content/page_blocks.json +0 -170
- package/templates/agencyos/src/content/pages.json +0 -96
- package/templates/agencyos/src/content/pages_blog.json +0 -7
- package/templates/agencyos/src/content/pages_projects.json +0 -6
- package/templates/agencyos/src/content/post_gallery_items.json +0 -32
- package/templates/agencyos/src/content/posts.json +0 -235
- package/templates/agencyos/src/content/redirects.json +0 -12
- package/templates/agencyos/src/content/seo.json +0 -52
- package/templates/agencyos/src/content/team.json +0 -128
- package/templates/agencyos/src/content/testimonials.json +0 -66
- package/templates/agencyos/src/dashboards.json +0 -64
- package/templates/agencyos/src/files.json +0 -1129
- package/templates/agencyos/src/flows.json +0 -451
- package/templates/agencyos/src/folders.json +0 -104
- package/templates/agencyos/src/operations.json +0 -717
- package/templates/agencyos/src/panels.json +0 -1019
- package/templates/agencyos/src/permissions.json +0 -5533
- package/templates/agencyos/src/presets.json +0 -2421
- package/templates/agencyos/src/public-permissions.json +0 -629
- package/templates/agencyos/src/roles.json +0 -46
- package/templates/agencyos/src/schema/snapshot.json +0 -39415
- package/templates/agencyos/src/settings.json +0 -99
- package/templates/agencyos/src/users.json +0 -147
- package/templates/website/README.md +0 -15
- package/templates/website/package.json +0 -11
- package/templates/website/src/assets/004e37f7-765e-4339-8d44-987729e47898.png +0 -0
- package/templates/website/src/assets/008b1c0e-bdd3-4c5f-a029-b9c07582a42d.jpg +0 -0
- package/templates/website/src/assets/08177527-b867-47e9-b5d5-eab146b3cdba.jpg +0 -0
- package/templates/website/src/assets/0dfe66dd-ceba-4dca-8907-03b2dda49443.svg +0 -1
- package/templates/website/src/assets/12e02b82-b4a4-4aaf-8ca4-e73c20a41c26.jpeg +0 -0
- package/templates/website/src/assets/18bf5269-9986-48c7-b607-01b77283df3b.png +0 -0
- package/templates/website/src/assets/1f19dd72-a433-481d-9b51-e3cc8e4f33d3.svg +0 -1
- package/templates/website/src/assets/270fa8d1-45a3-4fcb-87d2-27a0248f1daf.jpg +0 -0
- package/templates/website/src/assets/27f55be1-7ef5-47c4-87ba-ab9a060ab270.jpeg +0 -0
- package/templates/website/src/assets/284c190b-0ebb-4b3e-847d-c260b793b77c.png +0 -0
- package/templates/website/src/assets/35a67f1b-d401-4300-a503-b8e583186f2a.svg +0 -11
- package/templates/website/src/assets/3ac899c4-4bf9-4733-b2c4-b259c69faf46.png +0 -0
- package/templates/website/src/assets/3eff7dc2-445a-47c5-9503-3f600ecdb5c6.jpeg +0 -0
- package/templates/website/src/assets/40a0a417-231e-4819-86bf-66e96ec64852.svg +0 -3
- package/templates/website/src/assets/45140116-7656-4226-99b6-fd750722a083.svg +0 -3
- package/templates/website/src/assets/4b31c98e-ec03-4b91-bb18-ef55dd199638.jpg +0 -0
- package/templates/website/src/assets/57c6e801-9ba1-46eb-beb7-96cf7c497c92.svg +0 -1
- package/templates/website/src/assets/643faffb-d41d-48ad-9050-881cf495cbb6.jpg +0 -0
- package/templates/website/src/assets/6464e61f-455a-4b47-b623-bb12e5251dfe.jpeg +0 -0
- package/templates/website/src/assets/68103296-6634-4d66-918a-04b09afe6621.jpeg +0 -0
- package/templates/website/src/assets/68ee3ce3-bc8e-4901-b3a6-8a23afda0fa0.jpg +0 -0
- package/templates/website/src/assets/6dad2008-3af5-407e-827e-da5744223181.svg +0 -1
- package/templates/website/src/assets/72eea8c7-72fe-4ef2-9e57-524f7cb886a4.jpg +0 -0
- package/templates/website/src/assets/72f6f5a0-9a07-422f-b82f-b9e295ce5afa.svg +0 -4
- package/templates/website/src/assets/7775c53a-6c2c-453d-8c22-8b5445121d10.jpeg +0 -0
- package/templates/website/src/assets/7834aacc-d78c-4a55-ba92-d7b5d74188c1.png +0 -0
- package/templates/website/src/assets/7a5b47f6-d648-48f9-bf93-4bfafda48940.png +0 -0
- package/templates/website/src/assets/7c04cbdd-4b48-41aa-94d7-fc7c17373b1a.png +0 -0
- package/templates/website/src/assets/82b872b1-ff96-4af6-b7f1-878e60c3c448.png +0 -0
- package/templates/website/src/assets/840ec616-acad-412e-be79-485a702f9a55.svg +0 -1
- package/templates/website/src/assets/87fc0e81-45e4-4c05-8e9a-8e5c759d7aae.png +0 -0
- package/templates/website/src/assets/8bc1e7b3-b795-46af-bac4-34f7d90b902f.JPG +0 -0
- package/templates/website/src/assets/8f748634-d77b-4985-b27e-7e1f3559881a.jpeg +0 -0
- package/templates/website/src/assets/9778a2b4-27de-4035-af5a-f58897578787.png +0 -0
- package/templates/website/src/assets/a104c031-6ad2-4148-ace6-052e28cfda0b.svg +0 -1
- package/templates/website/src/assets/b626a403-5f09-4463-9715-44b2bd34eb26.jpg +0 -0
- package/templates/website/src/assets/c38f6e9e-7bb5-46c7-8266-b27ab96a1282.png +0 -0
- package/templates/website/src/assets/c983bd13-da09-4c90-8e65-ae6a92093df8.png +0 -0
- package/templates/website/src/assets/d0130348-9ead-49d0-b8e7-871cd43921a0.svg +0 -1
- package/templates/website/src/assets/d304528e-9000-4530-92cf-bb04891e8d5d.jpg +0 -0
- package/templates/website/src/assets/d4fd6edc-4cc5-48c1-8bc7-e646924bbdca.jpeg +0 -0
- package/templates/website/src/assets/d598a4c0-4e9a-44a3-a72e-49564e34a432.jpg +0 -0
- package/templates/website/src/assets/dfa90758-9700-49e4-8fa2-b6cd074811b7.png +0 -0
- package/templates/website/src/assets/e15ca910-1567-4f15-b5a0-b802da67f228.jpg +0 -0
- package/templates/website/src/assets/ea18cbf2-3c4f-488b-a68c-2d3a64cc9137.png +0 -0
- package/templates/website/src/assets/eb8e4c86-92ac-4697-9634-2e376f5d6015.png +0 -0
- package/templates/website/src/assets/f1693c44-52e4-4fae-a7d2-b3153a34eb72.jpg +0 -0
- package/templates/website/src/collections.json +0 -1788
- package/templates/website/src/content/block_cardgroup.json +0 -26
- package/templates/website/src/content/block_cardgroup_cards.json +0 -1
- package/templates/website/src/content/block_cardgroup_posts.json +0 -32
- package/templates/website/src/content/block_columns.json +0 -21
- package/templates/website/src/content/block_columns_rows.json +0 -47
- package/templates/website/src/content/block_cta.json +0 -15
- package/templates/website/src/content/block_faqs.json +0 -45
- package/templates/website/src/content/block_form.json +0 -26
- package/templates/website/src/content/block_gallery.json +0 -15
- package/templates/website/src/content/block_gallery_files.json +0 -38
- package/templates/website/src/content/block_hero.json +0 -145
- package/templates/website/src/content/block_html.json +0 -1
- package/templates/website/src/content/block_logocloud.json +0 -16
- package/templates/website/src/content/block_logocloud_files.json +0 -44
- package/templates/website/src/content/block_quote.json +0 -11
- package/templates/website/src/content/block_richtext.json +0 -32
- package/templates/website/src/content/block_steps.json +0 -14
- package/templates/website/src/content/block_steps_items.json +0 -26
- package/templates/website/src/content/block_team.json +0 -8
- package/templates/website/src/content/block_testimonials.json +0 -13
- package/templates/website/src/content/block_testimonials_items.json +0 -26
- package/templates/website/src/content/block_video.json +0 -10
- package/templates/website/src/content/blog_settings.json +0 -8
- package/templates/website/src/content/categories.json +0 -38
- package/templates/website/src/content/events.json +0 -1
- package/templates/website/src/content/forms.json +0 -92
- package/templates/website/src/content/globals.json +0 -57
- package/templates/website/src/content/inbox.json +0 -21
- package/templates/website/src/content/metrics.json +0 -1
- package/templates/website/src/content/navigation.json +0 -30
- package/templates/website/src/content/navigation_items.json +0 -140
- package/templates/website/src/content/pages.json +0 -123
- package/templates/website/src/content/pages_blocks.json +0 -310
- package/templates/website/src/content/posts.json +0 -120
- package/templates/website/src/content/projects.json +0 -48
- package/templates/website/src/content/projects_files.json +0 -44
- package/templates/website/src/content/projects_settings.json +0 -6
- package/templates/website/src/content/redirects.json +0 -12
- package/templates/website/src/content/seo.json +0 -278
- package/templates/website/src/content/team.json +0 -132
- package/templates/website/src/content/testimonials.json +0 -66
- package/templates/website/src/dashboards.json +0 -38
- package/templates/website/src/fields.json +0 -27761
- package/templates/website/src/files.json +0 -1100
- package/templates/website/src/flows.json +0 -131
- package/templates/website/src/folders.json +0 -52
- package/templates/website/src/operations.json +0 -214
- package/templates/website/src/panels.json +0 -433
- package/templates/website/src/permissions.json +0 -1556
- package/templates/website/src/presets.json +0 -1254
- package/templates/website/src/public-permissions.json +0 -511
- package/templates/website/src/roles.json +0 -70
- package/templates/website/src/schema/snapshot.json +0 -17018
- package/templates/website/src/settings.json +0 -66
- package/templates/website/src/users.json +0 -194
|
@@ -1,26 +0,0 @@
|
|
|
1
|
-
[
|
|
2
|
-
{
|
|
3
|
-
"id": "06fec8cb-ba15-4a6a-8779-06882a2decfe",
|
|
4
|
-
"group_type": "posts",
|
|
5
|
-
"title": "Cardgroup",
|
|
6
|
-
"headline": "<p>Got <em>some cards</em> for you </p>",
|
|
7
|
-
"posts": [
|
|
8
|
-
4,
|
|
9
|
-
5,
|
|
10
|
-
6
|
|
11
|
-
],
|
|
12
|
-
"cards": []
|
|
13
|
-
},
|
|
14
|
-
{
|
|
15
|
-
"id": "52661ac6-f134-4fbf-9084-17cf3fc4e256",
|
|
16
|
-
"group_type": "posts",
|
|
17
|
-
"title": null,
|
|
18
|
-
"headline": null,
|
|
19
|
-
"posts": [
|
|
20
|
-
1,
|
|
21
|
-
2,
|
|
22
|
-
3
|
|
23
|
-
],
|
|
24
|
-
"cards": []
|
|
25
|
-
}
|
|
26
|
-
]
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
[]
|
|
@@ -1,32 +0,0 @@
|
|
|
1
|
-
[
|
|
2
|
-
{
|
|
3
|
-
"id": 1,
|
|
4
|
-
"block_cardgroup_id": "52661ac6-f134-4fbf-9084-17cf3fc4e256",
|
|
5
|
-
"posts_id": "ba559a1e-5b0c-4932-ab97-b1ab4ca69955"
|
|
6
|
-
},
|
|
7
|
-
{
|
|
8
|
-
"id": 2,
|
|
9
|
-
"block_cardgroup_id": "52661ac6-f134-4fbf-9084-17cf3fc4e256",
|
|
10
|
-
"posts_id": "ddf1003f-6b9a-460c-83fd-d985d6defbd6"
|
|
11
|
-
},
|
|
12
|
-
{
|
|
13
|
-
"id": 3,
|
|
14
|
-
"block_cardgroup_id": "52661ac6-f134-4fbf-9084-17cf3fc4e256",
|
|
15
|
-
"posts_id": "f7845a69-edcb-4163-a2a9-fb82b64475c5"
|
|
16
|
-
},
|
|
17
|
-
{
|
|
18
|
-
"id": 4,
|
|
19
|
-
"block_cardgroup_id": "06fec8cb-ba15-4a6a-8779-06882a2decfe",
|
|
20
|
-
"posts_id": "ba559a1e-5b0c-4932-ab97-b1ab4ca69955"
|
|
21
|
-
},
|
|
22
|
-
{
|
|
23
|
-
"id": 5,
|
|
24
|
-
"block_cardgroup_id": "06fec8cb-ba15-4a6a-8779-06882a2decfe",
|
|
25
|
-
"posts_id": "ddf1003f-6b9a-460c-83fd-d985d6defbd6"
|
|
26
|
-
},
|
|
27
|
-
{
|
|
28
|
-
"id": 6,
|
|
29
|
-
"block_cardgroup_id": "06fec8cb-ba15-4a6a-8779-06882a2decfe",
|
|
30
|
-
"posts_id": "f7845a69-edcb-4163-a2a9-fb82b64475c5"
|
|
31
|
-
}
|
|
32
|
-
]
|
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
[
|
|
2
|
-
{
|
|
3
|
-
"id": "945245a7-4bab-4560-8287-fd2f797a18a8",
|
|
4
|
-
"title": "Our Services",
|
|
5
|
-
"headline": "<p>We can <em>help you</em></p>",
|
|
6
|
-
"rows": [
|
|
7
|
-
3,
|
|
8
|
-
4,
|
|
9
|
-
5
|
|
10
|
-
]
|
|
11
|
-
},
|
|
12
|
-
{
|
|
13
|
-
"id": "f79740a1-66ce-4ad9-83f3-a32721e5e44d",
|
|
14
|
-
"title": "Columns",
|
|
15
|
-
"headline": "<p>These are <em>several rows</em> of image and text columns.</p>",
|
|
16
|
-
"rows": [
|
|
17
|
-
1,
|
|
18
|
-
2
|
|
19
|
-
]
|
|
20
|
-
}
|
|
21
|
-
]
|
|
@@ -1,47 +0,0 @@
|
|
|
1
|
-
[
|
|
2
|
-
{
|
|
3
|
-
"id": 1,
|
|
4
|
-
"block_columns": "f79740a1-66ce-4ad9-83f3-a32721e5e44d",
|
|
5
|
-
"title": "We're good at stuff",
|
|
6
|
-
"headline": "We can help you with that",
|
|
7
|
-
"content": "<p>1. Create an empty array to store the result<br />2. Loop through the array<br />3. Calculate the index of the result array<br />4. If the index doesn't exist, create it<br />5. Push the current item to the result array</p>",
|
|
8
|
-
"image": "1f19dd72-a433-481d-9b51-e3cc8e4f33d3",
|
|
9
|
-
"image_position": "left"
|
|
10
|
-
},
|
|
11
|
-
{
|
|
12
|
-
"id": 2,
|
|
13
|
-
"block_columns": "f79740a1-66ce-4ad9-83f3-a32721e5e44d",
|
|
14
|
-
"title": "We can read good too",
|
|
15
|
-
"headline": "Here's some other stuff we're good at",
|
|
16
|
-
"content": "<p>Id velit magna nulla incididunt. Esse velit qui cillum irure tempor. Adipisicing sint incididunt non amet cupidatat commodo est reprehenderit. Nulla ex quis duis pariatur sit eu ad proident pariatur duis. Culpa mollit ea fugiat ullamco qui do eu nisi ea ipsum do consequat laborum elit. Nulla cillum proident nulla laborum velit sunt amet cillum elit laborum sint id. Voluptate incididunt elit incididunt aliqua amet. Aliqua minim ad magna eiusmod minim ex aliqua.</p>",
|
|
17
|
-
"image": "6dad2008-3af5-407e-827e-da5744223181",
|
|
18
|
-
"image_position": "right"
|
|
19
|
-
},
|
|
20
|
-
{
|
|
21
|
-
"id": 3,
|
|
22
|
-
"block_columns": "945245a7-4bab-4560-8287-fd2f797a18a8",
|
|
23
|
-
"title": "UX / UI Design",
|
|
24
|
-
"headline": "It all starts with design",
|
|
25
|
-
"content": "<p>With our user-centered design approach, we'll create an online experience that is easy and enjoyable for your customers, helping you build trust and drive conversions. Don't let a poor user experience hold you back. </p>",
|
|
26
|
-
"image": "6dad2008-3af5-407e-827e-da5744223181",
|
|
27
|
-
"image_position": "left"
|
|
28
|
-
},
|
|
29
|
-
{
|
|
30
|
-
"id": 4,
|
|
31
|
-
"block_columns": "945245a7-4bab-4560-8287-fd2f797a18a8",
|
|
32
|
-
"title": "Web Application Development",
|
|
33
|
-
"headline": "Develop your application",
|
|
34
|
-
"content": "<p>We specialize in developing web applications that are tailored to meet the unique needs of your business. Whether you need a custom CRM system, a project management tool, or a complex e-commerce platform, our team of skilled developers can build a web application that is secure, scalable, and easy to use. We use the latest web development technologies and frameworks to ensure that your application is fast, reliable, and future-proof.</p>",
|
|
35
|
-
"image": "1f19dd72-a433-481d-9b51-e3cc8e4f33d3",
|
|
36
|
-
"image_position": "right"
|
|
37
|
-
},
|
|
38
|
-
{
|
|
39
|
-
"id": 5,
|
|
40
|
-
"block_columns": "945245a7-4bab-4560-8287-fd2f797a18a8",
|
|
41
|
-
"title": "Mobile Application Development",
|
|
42
|
-
"headline": "Mobile apps without the headache",
|
|
43
|
-
"content": "<p>Whether you need a native iOS or Android app or a hybrid app that can run on multiple platforms, our team of skilled developers can build a mobile application that is secure, scalable, and optimized for performance. </p>",
|
|
44
|
-
"image": "6dad2008-3af5-407e-827e-da5744223181",
|
|
45
|
-
"image_position": "left"
|
|
46
|
-
}
|
|
47
|
-
]
|
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
[
|
|
2
|
-
{
|
|
3
|
-
"id": "cf12eadb-8085-4556-949c-969d1c5f90d0",
|
|
4
|
-
"title": "Your next digital project",
|
|
5
|
-
"headline": "<p>Ready for an easier faster process?</p>",
|
|
6
|
-
"content": "<p>Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea</p>",
|
|
7
|
-
"buttons": [
|
|
8
|
-
{
|
|
9
|
-
"label": "Get Started",
|
|
10
|
-
"href": "contact-us",
|
|
11
|
-
"variant": "default"
|
|
12
|
-
}
|
|
13
|
-
]
|
|
14
|
-
}
|
|
15
|
-
]
|
|
@@ -1,45 +0,0 @@
|
|
|
1
|
-
[
|
|
2
|
-
{
|
|
3
|
-
"id": "8759da00-c0a7-447d-924c-e106c8e4703a",
|
|
4
|
-
"title": "Frequently Asked Questions",
|
|
5
|
-
"headline": "<p>What can we <em>help </em>you with?</p>",
|
|
6
|
-
"faqs": [
|
|
7
|
-
{
|
|
8
|
-
"title": "How does this work?",
|
|
9
|
-
"answer": "Lorem ipsum dipsum"
|
|
10
|
-
}
|
|
11
|
-
]
|
|
12
|
-
},
|
|
13
|
-
{
|
|
14
|
-
"id": "cf6a9e3d-87c4-4f18-abb3-78594b9c7ca4",
|
|
15
|
-
"title": "Frequently Asked Questions",
|
|
16
|
-
"headline": "<p>How can we <em>help</em> you?</p>",
|
|
17
|
-
"faqs": [
|
|
18
|
-
{
|
|
19
|
-
"title": "How much does the average project cost?",
|
|
20
|
-
"answer": "Lorem ipsum blah blah"
|
|
21
|
-
},
|
|
22
|
-
{
|
|
23
|
-
"title": "How long does it take?",
|
|
24
|
-
"answer": "Lorem ipsum blah blah"
|
|
25
|
-
}
|
|
26
|
-
]
|
|
27
|
-
},
|
|
28
|
-
{
|
|
29
|
-
"id": "ec44961c-fcda-4ce7-ad9a-ec63413bffd1",
|
|
30
|
-
"title": "Frequently Asked Questions",
|
|
31
|
-
"headline": "<p>FAQs</p>",
|
|
32
|
-
"faqs": [
|
|
33
|
-
{
|
|
34
|
-
"title": "How does M2A work?",
|
|
35
|
-
"answer": "Let me show you."
|
|
36
|
-
}
|
|
37
|
-
]
|
|
38
|
-
},
|
|
39
|
-
{
|
|
40
|
-
"id": "f30cd38b-78d4-4981-bec5-72210d0afdc2",
|
|
41
|
-
"title": "New Custom",
|
|
42
|
-
"headline": "<p>Blocks</p>",
|
|
43
|
-
"faqs": null
|
|
44
|
-
}
|
|
45
|
-
]
|
|
@@ -1,26 +0,0 @@
|
|
|
1
|
-
[
|
|
2
|
-
{
|
|
3
|
-
"id": "0291d044-c27b-4e82-b3e5-fcb950c96d6f",
|
|
4
|
-
"title": "Let's Talk",
|
|
5
|
-
"headline": "<p>Fill out this form please.</p>",
|
|
6
|
-
"form": "36493b64-2bad-4c58-9d70-785ccb12ee26"
|
|
7
|
-
},
|
|
8
|
-
{
|
|
9
|
-
"id": "210e0adc-37ab-4c3a-831b-339aa67fd8db",
|
|
10
|
-
"title": "Contact Us",
|
|
11
|
-
"headline": "<p>Ready to talk about <em>your project?</em></p>",
|
|
12
|
-
"form": "36493b64-2bad-4c58-9d70-785ccb12ee26"
|
|
13
|
-
},
|
|
14
|
-
{
|
|
15
|
-
"id": "9c077fc5-c6dc-4f62-9e89-9a4aca4d0313",
|
|
16
|
-
"title": "Get in Touch",
|
|
17
|
-
"headline": "<p>Contact us Now</p>",
|
|
18
|
-
"form": "36493b64-2bad-4c58-9d70-785ccb12ee26"
|
|
19
|
-
},
|
|
20
|
-
{
|
|
21
|
-
"id": "cf049bb0-39b3-472d-bf1f-306bf27fec20",
|
|
22
|
-
"title": "Contact Us",
|
|
23
|
-
"headline": "<p>Get in<em> touch now</em></p>",
|
|
24
|
-
"form": "36493b64-2bad-4c58-9d70-785ccb12ee26"
|
|
25
|
-
}
|
|
26
|
-
]
|
|
@@ -1,38 +0,0 @@
|
|
|
1
|
-
[
|
|
2
|
-
{
|
|
3
|
-
"id": 1,
|
|
4
|
-
"block_gallery": "61a1866b-5bff-473a-a6e3-106cd6b37412",
|
|
5
|
-
"directus_files_id": "7a5b47f6-d648-48f9-bf93-4bfafda48940",
|
|
6
|
-
"sort": 1
|
|
7
|
-
},
|
|
8
|
-
{
|
|
9
|
-
"id": 2,
|
|
10
|
-
"block_gallery": "61a1866b-5bff-473a-a6e3-106cd6b37412",
|
|
11
|
-
"directus_files_id": "18bf5269-9986-48c7-b607-01b77283df3b",
|
|
12
|
-
"sort": 2
|
|
13
|
-
},
|
|
14
|
-
{
|
|
15
|
-
"id": 3,
|
|
16
|
-
"block_gallery": "61a1866b-5bff-473a-a6e3-106cd6b37412",
|
|
17
|
-
"directus_files_id": "c983bd13-da09-4c90-8e65-ae6a92093df8",
|
|
18
|
-
"sort": 3
|
|
19
|
-
},
|
|
20
|
-
{
|
|
21
|
-
"id": 4,
|
|
22
|
-
"block_gallery": "61a1866b-5bff-473a-a6e3-106cd6b37412",
|
|
23
|
-
"directus_files_id": "9778a2b4-27de-4035-af5a-f58897578787",
|
|
24
|
-
"sort": 4
|
|
25
|
-
},
|
|
26
|
-
{
|
|
27
|
-
"id": 5,
|
|
28
|
-
"block_gallery": "61a1866b-5bff-473a-a6e3-106cd6b37412",
|
|
29
|
-
"directus_files_id": "004e37f7-765e-4339-8d44-987729e47898",
|
|
30
|
-
"sort": 5
|
|
31
|
-
},
|
|
32
|
-
{
|
|
33
|
-
"id": 6,
|
|
34
|
-
"block_gallery": "61a1866b-5bff-473a-a6e3-106cd6b37412",
|
|
35
|
-
"directus_files_id": "c38f6e9e-7bb5-46c7-8266-b27ab96a1282",
|
|
36
|
-
"sort": 6
|
|
37
|
-
}
|
|
38
|
-
]
|
|
@@ -1,145 +0,0 @@
|
|
|
1
|
-
[
|
|
2
|
-
{
|
|
3
|
-
"id": "1fa9065d-39a0-479a-a8ae-9ccd31429c98",
|
|
4
|
-
"content": "This guide will teach you everything you need to know about those wascally wabbits.",
|
|
5
|
-
"buttons": [
|
|
6
|
-
{
|
|
7
|
-
"label": "Learn More",
|
|
8
|
-
"href": "learn-more",
|
|
9
|
-
"variant": "default"
|
|
10
|
-
}
|
|
11
|
-
],
|
|
12
|
-
"image": "12e02b82-b4a4-4aaf-8ca4-e73c20a41c26",
|
|
13
|
-
"headline": null
|
|
14
|
-
},
|
|
15
|
-
{
|
|
16
|
-
"id": "5bb58cbd-4258-43c5-a610-c107382295a4",
|
|
17
|
-
"content": null,
|
|
18
|
-
"buttons": null,
|
|
19
|
-
"image": null,
|
|
20
|
-
"headline": null
|
|
21
|
-
},
|
|
22
|
-
{
|
|
23
|
-
"id": "5f452316-f1a2-4c90-aeac-cc09cd171d95",
|
|
24
|
-
"content": "This guide will teach you everything you need to know about those wascally wabbits.",
|
|
25
|
-
"buttons": [
|
|
26
|
-
{
|
|
27
|
-
"label": "Learn More",
|
|
28
|
-
"href": "learn-more-about-rabbits",
|
|
29
|
-
"variant": "primary"
|
|
30
|
-
}
|
|
31
|
-
],
|
|
32
|
-
"image": "7775c53a-6c2c-453d-8c22-8b5445121d10",
|
|
33
|
-
"headline": null
|
|
34
|
-
},
|
|
35
|
-
{
|
|
36
|
-
"id": "6aa654f5-b55f-4436-a35c-1f989f26268a",
|
|
37
|
-
"content": "We are a team of experienced developers and designers who build beautiful, performant, and secure web and mobile applications.",
|
|
38
|
-
"buttons": [
|
|
39
|
-
{
|
|
40
|
-
"label": "Learn More",
|
|
41
|
-
"href": "/contact-us",
|
|
42
|
-
"variant": "primary"
|
|
43
|
-
},
|
|
44
|
-
{
|
|
45
|
-
"label": "Get Started",
|
|
46
|
-
"href": "/contact-us",
|
|
47
|
-
"variant": "outline"
|
|
48
|
-
}
|
|
49
|
-
],
|
|
50
|
-
"image": "6464e61f-455a-4b47-b623-bb12e5251dfe",
|
|
51
|
-
"headline": "<p>Web apps that <em>wow your users!!</em></p>"
|
|
52
|
-
},
|
|
53
|
-
{
|
|
54
|
-
"id": "7336f23e-0165-44fd-a051-15cddbfb5a6e",
|
|
55
|
-
"content": "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.",
|
|
56
|
-
"buttons": [
|
|
57
|
-
{
|
|
58
|
-
"label": "Learn More about Directus",
|
|
59
|
-
"href": "contact-us",
|
|
60
|
-
"variant": "primary"
|
|
61
|
-
}
|
|
62
|
-
],
|
|
63
|
-
"image": "1f19dd72-a433-481d-9b51-e3cc8e4f33d3",
|
|
64
|
-
"headline": null
|
|
65
|
-
},
|
|
66
|
-
{
|
|
67
|
-
"id": "7ae4167e-d6a6-4907-8965-93d23fa7332d",
|
|
68
|
-
"content": "Rabbits are everyone's best friends",
|
|
69
|
-
"buttons": [
|
|
70
|
-
{
|
|
71
|
-
"label": "Learn more",
|
|
72
|
-
"href": "learn-more",
|
|
73
|
-
"variant": "default"
|
|
74
|
-
}
|
|
75
|
-
],
|
|
76
|
-
"image": "7775c53a-6c2c-453d-8c22-8b5445121d10",
|
|
77
|
-
"headline": null
|
|
78
|
-
},
|
|
79
|
-
{
|
|
80
|
-
"id": "840cb442-6c59-4461-a3ca-467223c5f098",
|
|
81
|
-
"content": "Here's the hero content",
|
|
82
|
-
"buttons": [
|
|
83
|
-
{
|
|
84
|
-
"label": "Learn More",
|
|
85
|
-
"href": "try-directus",
|
|
86
|
-
"variant": "primary"
|
|
87
|
-
}
|
|
88
|
-
],
|
|
89
|
-
"image": null,
|
|
90
|
-
"headline": null
|
|
91
|
-
},
|
|
92
|
-
{
|
|
93
|
-
"id": "8ece685c-e903-443b-b29d-b36491709743",
|
|
94
|
-
"content": "We help you leverage the transformative power of superior software development!",
|
|
95
|
-
"buttons": [
|
|
96
|
-
{
|
|
97
|
-
"label": "Let's Talk",
|
|
98
|
-
"href": "/contact-us",
|
|
99
|
-
"variant": "primary"
|
|
100
|
-
}
|
|
101
|
-
],
|
|
102
|
-
"image": "27f55be1-7ef5-47c4-87ba-ab9a060ab270",
|
|
103
|
-
"headline": "<p>Custom <em>web development and design</em> services</p>"
|
|
104
|
-
},
|
|
105
|
-
{
|
|
106
|
-
"id": "a0dd7808-4d84-4c0b-99ba-360100cb15a8",
|
|
107
|
-
"content": "Here's some descriptive text below the headline",
|
|
108
|
-
"buttons": [
|
|
109
|
-
{
|
|
110
|
-
"label": "Learn More",
|
|
111
|
-
"href": "/learn-more",
|
|
112
|
-
"variant": "primary"
|
|
113
|
-
}
|
|
114
|
-
],
|
|
115
|
-
"image": "1f19dd72-a433-481d-9b51-e3cc8e4f33d3",
|
|
116
|
-
"headline": null
|
|
117
|
-
},
|
|
118
|
-
{
|
|
119
|
-
"id": "a4f1fa5e-dd6d-4031-92de-70b7bb903f88",
|
|
120
|
-
"content": null,
|
|
121
|
-
"buttons": null,
|
|
122
|
-
"image": null,
|
|
123
|
-
"headline": null
|
|
124
|
-
},
|
|
125
|
-
{
|
|
126
|
-
"id": "afc88ea9-5c84-4109-be11-856cea2dcd1f",
|
|
127
|
-
"content": null,
|
|
128
|
-
"buttons": null,
|
|
129
|
-
"image": "27f55be1-7ef5-47c4-87ba-ab9a060ab270",
|
|
130
|
-
"headline": null
|
|
131
|
-
},
|
|
132
|
-
{
|
|
133
|
-
"id": "f5e6f088-b11d-4959-affc-31bc86d7079c",
|
|
134
|
-
"content": "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.",
|
|
135
|
-
"buttons": [
|
|
136
|
-
{
|
|
137
|
-
"label": "Learn More about Directus",
|
|
138
|
-
"href": "contact-us",
|
|
139
|
-
"variant": "primary"
|
|
140
|
-
}
|
|
141
|
-
],
|
|
142
|
-
"image": "1f19dd72-a433-481d-9b51-e3cc8e4f33d3",
|
|
143
|
-
"headline": null
|
|
144
|
-
}
|
|
145
|
-
]
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
[]
|
|
@@ -1,44 +0,0 @@
|
|
|
1
|
-
[
|
|
2
|
-
{
|
|
3
|
-
"id": 1,
|
|
4
|
-
"block_logocloud_id": "f22bcb92-6793-4518-b9e7-3d789ed894df",
|
|
5
|
-
"file": "35a67f1b-d401-4300-a503-b8e583186f2a",
|
|
6
|
-
"sort": 1
|
|
7
|
-
},
|
|
8
|
-
{
|
|
9
|
-
"id": 2,
|
|
10
|
-
"block_logocloud_id": "f22bcb92-6793-4518-b9e7-3d789ed894df",
|
|
11
|
-
"file": "57c6e801-9ba1-46eb-beb7-96cf7c497c92",
|
|
12
|
-
"sort": 2
|
|
13
|
-
},
|
|
14
|
-
{
|
|
15
|
-
"id": 3,
|
|
16
|
-
"block_logocloud_id": "f22bcb92-6793-4518-b9e7-3d789ed894df",
|
|
17
|
-
"file": "0dfe66dd-ceba-4dca-8907-03b2dda49443",
|
|
18
|
-
"sort": 3
|
|
19
|
-
},
|
|
20
|
-
{
|
|
21
|
-
"id": 4,
|
|
22
|
-
"block_logocloud_id": "f22bcb92-6793-4518-b9e7-3d789ed894df",
|
|
23
|
-
"file": "a104c031-6ad2-4148-ace6-052e28cfda0b",
|
|
24
|
-
"sort": 4
|
|
25
|
-
},
|
|
26
|
-
{
|
|
27
|
-
"id": 5,
|
|
28
|
-
"block_logocloud_id": "f22bcb92-6793-4518-b9e7-3d789ed894df",
|
|
29
|
-
"file": "45140116-7656-4226-99b6-fd750722a083",
|
|
30
|
-
"sort": 5
|
|
31
|
-
},
|
|
32
|
-
{
|
|
33
|
-
"id": 6,
|
|
34
|
-
"block_logocloud_id": "f22bcb92-6793-4518-b9e7-3d789ed894df",
|
|
35
|
-
"file": "840ec616-acad-412e-be79-485a702f9a55",
|
|
36
|
-
"sort": 6
|
|
37
|
-
},
|
|
38
|
-
{
|
|
39
|
-
"id": 7,
|
|
40
|
-
"block_logocloud_id": "f22bcb92-6793-4518-b9e7-3d789ed894df",
|
|
41
|
-
"file": "d0130348-9ead-49d0-b8e7-871cd43921a0",
|
|
42
|
-
"sort": 7
|
|
43
|
-
}
|
|
44
|
-
]
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
[
|
|
2
|
-
{
|
|
3
|
-
"id": "45043f8a-7647-417b-ba77-65d09a93bcc1",
|
|
4
|
-
"title": "Ben Haynes",
|
|
5
|
-
"headline": null,
|
|
6
|
-
"image": null,
|
|
7
|
-
"background_color": "#18222F",
|
|
8
|
-
"content": "<p>I think Directus is the BEST data management platform in the world. You can take that to the bank.</p>",
|
|
9
|
-
"subtitle": "CEO at Directus"
|
|
10
|
-
}
|
|
11
|
-
]
|
|
@@ -1,32 +0,0 @@
|
|
|
1
|
-
[
|
|
2
|
-
{
|
|
3
|
-
"id": "1619b2fe-ce09-4a78-8c47-1428995c7c1c",
|
|
4
|
-
"headline": "We're different than all the rest.",
|
|
5
|
-
"content": "<p>At our digital agency, we believe that standing out in the crowded digital landscape requires a unique approach. <a href=\"/team\" target=\"_self\">That's why we take a holistic approach</a> to digital marketing, focusing on building a strong brand identity and developing strategies that are tailored to our clients' specific needs.</p>\n<p><a class=\"btn btn-primary\" href=\"/contact-us\" target=\"_self\">Test Button</a></p>\n<h1>H1</h1>\n<blockquote>\n<p>Our team of experts brings a diverse range of skills and experiences to the table, including web design, content creation, SEO, social media marketing, and more. We're not just interested in getting quick results; we're invested in helping our clients build sustainable, long-term success.</p>\n</blockquote>\n<ol>\n<li>Number 1</li>\n<li>Number 2 (Who does number 2 work for)</li>\n<li>Number 3</li>\n</ol>\n<ul>\n<li>Item 1</li>\n<li>Item 2</li>\n<li>Item 3</li>\n</ul>\n<h2>H2</h2>\n<p>Some text</p>\n<hr />\n<h3>H3</h3>\n<p>Some text</p>\n<p><img src=\"https://nuxt-starter.directus.app/assets/8f748634-d77b-4985-b27e-7e1f3559881a?width=512&height=512\" alt=\"402f501a 4786 46c1 8dd1 4e0f3d5b75ec\" /></p>\n<p>From the initial consultation to ongoing support, we're dedicated to providing personalized attention and exceptional service. At our digital agency, we're not just different from the rest - we're better.</p>",
|
|
6
|
-
"title": "Why Us"
|
|
7
|
-
},
|
|
8
|
-
{
|
|
9
|
-
"id": "2387edcd-e6ab-451c-befa-30ab247b2290",
|
|
10
|
-
"headline": "Rich Text Block",
|
|
11
|
-
"content": "<p><strong>Here's a few sentences.</strong></p>",
|
|
12
|
-
"title": null
|
|
13
|
-
},
|
|
14
|
-
{
|
|
15
|
-
"id": "6c5df396-be52-4b1c-a144-d55b229e5a34",
|
|
16
|
-
"headline": "The Benefits of Rabbits",
|
|
17
|
-
"content": "<p>Rabbits are a great source of environmental benefit. They help to keep grasslands and other ecosystems in check. Rabbits are herbivores, meaning they eat only plants, which helps to keep vegetation in balance. Additionally, rabbits are crucial to the food chain, providing sustenance for predators in their environment.</p>\n<p>Rabbits also help to improve the quality of soil by digging burrows and depositing their waste in them. This helps to aerate the soil, improving its quality and allowing for better plant growth. Additionally, the waste from rabbits is a rich source of nutrients for plants and other animals in the area. This helps to keep the soil healthy and support the overall ecosystem.</p>",
|
|
18
|
-
"title": null
|
|
19
|
-
},
|
|
20
|
-
{
|
|
21
|
-
"id": "8f714990-cb45-4c6c-afa6-a49615768a4f",
|
|
22
|
-
"headline": "About Us",
|
|
23
|
-
"content": "<p>Our website, \"Bunny Lovers,\" is dedicated to all things rabbit! Our goal is to provide comprehensive information and resources for rabbit owners and enthusiasts alike. We believe that rabbits make wonderful pets and we want to help people give their furry friends the best life possible.</p>\n<p>The team behind Bunny Lovers is made up of rabbit owners and experts who have years of experience caring for these cute and cuddly creatures. We share a passion for rabbits and their well-being, and we have combined our knowledge to create a one-stop shop for everything rabbit-related. From breed information to health advice, we aim to provide you with the most up-to-date and accurate information available.</p>\n<p>In addition to our informative articles, we also offer a lively and supportive community where rabbit owners can connect and share their experiences. Whether you are a seasoned rabbit owner or just starting out, you are sure to find the information and support you need on our site. So, come join us and let's celebrate these amazing animals together!</p>",
|
|
24
|
-
"title": null
|
|
25
|
-
},
|
|
26
|
-
{
|
|
27
|
-
"id": "9d65df9c-307f-4049-bc21-0c3a77178d91",
|
|
28
|
-
"headline": "We <em>protect our clients</em> like our own families",
|
|
29
|
-
"content": "<p>Thank you for considering our privacy policy at XYZ Development Agency. We take your privacy very seriously and want you to know exactly how we collect, use, share, and protect your information when you visit our website or use our services.</p>\n<h2>Information We Collect</h2>\n<p>We collect personal information such as your name, email address, phone number, and company name when you fill out a contact form or sign up for our newsletter. We also collect non-personal information such as your IP address, browser type, and operating system when you visit our website.</p>\n<h2>How We Use Your Information</h2>\n<p>We use your personal information to respond to your inquiries, send you newsletters, and provide you with our services. We use non-personal information to analyze website traffic and improve our website's performance.</p>\n<h2>Information Sharing</h2>\n<p>We do not sell or rent your personal information to third parties. However, we may share your personal information with trusted third-party service providers who assist us in providing our services to you. We may also share your information when required by law or to protect our rights and property.</p>\n<h2>Security</h2>\n<p>We take appropriate measures to protect your personal information from unauthorized access, disclosure, or misuse. We use secure servers and encryption technologies to ensure the confidentiality and integrity of your information.</p>\n<h2>Cookies and Tracking Technologies</h2>\n<p>We use cookies and other tracking technologies to collect non-personal information about your website usage. You can disable cookies through your browser settings, but this may limit your access to certain features of our website.</p>\n<h2>Links to Third-Party Websites</h2>\n<p>Our website may contain links to third-party websites. We are not responsible for the privacy practices or content of those websites. We encourage you to review the privacy policies of those websites before providing any personal information.</p>\n<h2>Changes to Our Privacy Policy</h2>\n<p>We may update our privacy policy from time to time. We will notify you of any changes by posting the new policy on our website. Your continued use of our website or services after any changes to our privacy policy means that you agree to the updated policy.</p>\n<h2>Contact Us</h2>\n<p>If you have any questions or concerns about our privacy policy, please contact us at privacy@xyzdevelopment.com.</p>\n<p>Thank you for trusting XYZ Development Agency with your personal information.</p>",
|
|
30
|
-
"title": "Privacy Policy"
|
|
31
|
-
}
|
|
32
|
-
]
|
|
@@ -1,14 +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
|
-
2,
|
|
10
|
-
1,
|
|
11
|
-
3
|
|
12
|
-
]
|
|
13
|
-
}
|
|
14
|
-
]
|
|
@@ -1,26 +0,0 @@
|
|
|
1
|
-
[
|
|
2
|
-
{
|
|
3
|
-
"id": 1,
|
|
4
|
-
"block_steps": "007bed6b-147e-4931-a141-350e2617bd6b",
|
|
5
|
-
"sort": 2,
|
|
6
|
-
"title": "Onboarding",
|
|
7
|
-
"content": "<p>Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. </p>",
|
|
8
|
-
"image": null
|
|
9
|
-
},
|
|
10
|
-
{
|
|
11
|
-
"id": 2,
|
|
12
|
-
"block_steps": "007bed6b-147e-4931-a141-350e2617bd6b",
|
|
13
|
-
"sort": 1,
|
|
14
|
-
"title": "Analysis",
|
|
15
|
-
"content": "<p>Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum.</p>",
|
|
16
|
-
"image": "68103296-6634-4d66-918a-04b09afe6621"
|
|
17
|
-
},
|
|
18
|
-
{
|
|
19
|
-
"id": 3,
|
|
20
|
-
"block_steps": "007bed6b-147e-4931-a141-350e2617bd6b",
|
|
21
|
-
"sort": 3,
|
|
22
|
-
"title": "Payment",
|
|
23
|
-
"content": "<p>Now's the time. Your bill has come due. Sunt amet ea deserunt esse qui irure mollit aliqua. Quis cillum in et aute in consectetur consequat et voluptate Lorem enim anim esse consectetur. Esse laboris occaecat sunt cupidatat et. Irure deserunt ad sit.</p>",
|
|
24
|
-
"image": "ea18cbf2-3c4f-488b-a68c-2d3a64cc9137"
|
|
25
|
-
}
|
|
26
|
-
]
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
[
|
|
2
|
-
{
|
|
3
|
-
"id": "aa94c8db-bfc1-4681-8ddc-818166556e79",
|
|
4
|
-
"title": "Our Team",
|
|
5
|
-
"headline": "<p>We've got the best <em>developers</em> and <em>designers</em> around.</p>",
|
|
6
|
-
"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>"
|
|
7
|
-
}
|
|
8
|
-
]
|
|
@@ -1,26 +0,0 @@
|
|
|
1
|
-
[
|
|
2
|
-
{
|
|
3
|
-
"id": 1,
|
|
4
|
-
"block_testimonials_id": "ca71c49a-3e89-41a5-aaf1-5177744f52c0",
|
|
5
|
-
"testimonial": "372b754c-412b-4478-8054-070ba40c0615",
|
|
6
|
-
"sort": 1
|
|
7
|
-
},
|
|
8
|
-
{
|
|
9
|
-
"id": 2,
|
|
10
|
-
"block_testimonials_id": "ca71c49a-3e89-41a5-aaf1-5177744f52c0",
|
|
11
|
-
"testimonial": "97ac6e52-69b4-4015-bed4-049c83bb5507",
|
|
12
|
-
"sort": 2
|
|
13
|
-
},
|
|
14
|
-
{
|
|
15
|
-
"id": 3,
|
|
16
|
-
"block_testimonials_id": "ca71c49a-3e89-41a5-aaf1-5177744f52c0",
|
|
17
|
-
"testimonial": "d507ff08-a0ca-4acb-abd7-1b294b9e105c",
|
|
18
|
-
"sort": 3
|
|
19
|
-
},
|
|
20
|
-
{
|
|
21
|
-
"id": 4,
|
|
22
|
-
"block_testimonials_id": "ca71c49a-3e89-41a5-aaf1-5177744f52c0",
|
|
23
|
-
"testimonial": "40b34bf4-c3c9-4833-ab22-4b4ea1fb7eb7",
|
|
24
|
-
"sort": 4
|
|
25
|
-
}
|
|
26
|
-
]
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"id": "109cf29c-3f73-418a-9a76-bfc0b6a27cf6",
|
|
3
|
-
"featured_post": "ddf1003f-6b9a-460c-83fd-d985d6defbd6",
|
|
4
|
-
"posts_per_page": 10,
|
|
5
|
-
"title": "Our Blog",
|
|
6
|
-
"headline": "<header class=\"pb-6 border-b-2 border-gray-300 dark:border-gray-700\" data-v-inspector=\"pages/posts/index.vue:43:5\">\n<div class=\"text-3xl font-serif font-bold leading-snug tracking-tight color-em dark:text-white\" data-v-inspector=\"components/typography/Headline.vue:18:3\">\n<p>Articles on <em>development</em>, marketing, and more.</p>\n</div>\n</header>",
|
|
7
|
-
"seo": "cc55e149-c07c-4a98-9445-764f4d572e87"
|
|
8
|
-
}
|