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,38 +0,0 @@
|
|
|
1
|
-
[
|
|
2
|
-
{
|
|
3
|
-
"id": "06da3e1e-9af6-4b27-a248-60a58dc229d2",
|
|
4
|
-
"sort": null,
|
|
5
|
-
"content": "<p>All of our downloadable resources on bunnies.</p>",
|
|
6
|
-
"title": "Resource",
|
|
7
|
-
"slug": "resources",
|
|
8
|
-
"color": "#2ECDA7",
|
|
9
|
-
"seo": null
|
|
10
|
-
},
|
|
11
|
-
{
|
|
12
|
-
"id": "da30c277-650f-421c-b976-c598f898e89e",
|
|
13
|
-
"sort": null,
|
|
14
|
-
"content": null,
|
|
15
|
-
"title": "Video",
|
|
16
|
-
"slug": "video",
|
|
17
|
-
"color": "#A2B5CD",
|
|
18
|
-
"seo": null
|
|
19
|
-
},
|
|
20
|
-
{
|
|
21
|
-
"id": "4a62ba82-c48a-465f-a180-a3a8256c93bb",
|
|
22
|
-
"sort": null,
|
|
23
|
-
"content": "<p>Case studies of super successful bunnies.</p>",
|
|
24
|
-
"title": "Case Study",
|
|
25
|
-
"slug": "case-studies",
|
|
26
|
-
"color": "#FFC23B",
|
|
27
|
-
"seo": null
|
|
28
|
-
},
|
|
29
|
-
{
|
|
30
|
-
"id": "29b17aff-9ecb-44a7-a4f9-cbf364effd87",
|
|
31
|
-
"sort": null,
|
|
32
|
-
"content": null,
|
|
33
|
-
"title": "Podcast",
|
|
34
|
-
"slug": "podcast",
|
|
35
|
-
"color": "#3399FF",
|
|
36
|
-
"seo": null
|
|
37
|
-
}
|
|
38
|
-
]
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
[]
|
|
@@ -1,92 +0,0 @@
|
|
|
1
|
-
[
|
|
2
|
-
{
|
|
3
|
-
"id": "5da3d356-d818-434f-b225-db35c418bbb6",
|
|
4
|
-
"status": "published",
|
|
5
|
-
"sort": null,
|
|
6
|
-
"user_created": "9fdd1ca5-982e-422d-bced-640e3a98a339",
|
|
7
|
-
"date_created": "2023-03-16T01:50:49.262Z",
|
|
8
|
-
"user_updated": "9fdd1ca5-982e-422d-bced-640e3a98a339",
|
|
9
|
-
"date_updated": "2023-03-16T02:53:14.598Z",
|
|
10
|
-
"title": "Newsletter",
|
|
11
|
-
"key": "newsletter",
|
|
12
|
-
"schema": [
|
|
13
|
-
{
|
|
14
|
-
"name": "email",
|
|
15
|
-
"type": "text",
|
|
16
|
-
"label": "What is your email address?",
|
|
17
|
-
"help": "We hate spam just as much as you do!",
|
|
18
|
-
"validation": "required|email",
|
|
19
|
-
"width": "100"
|
|
20
|
-
}
|
|
21
|
-
],
|
|
22
|
-
"submit_label": "Subscribe",
|
|
23
|
-
"on_success": null,
|
|
24
|
-
"redirect_url": null,
|
|
25
|
-
"success_message": null
|
|
26
|
-
},
|
|
27
|
-
{
|
|
28
|
-
"id": "36493b64-2bad-4c58-9d70-785ccb12ee26",
|
|
29
|
-
"status": "published",
|
|
30
|
-
"sort": null,
|
|
31
|
-
"user_created": "9fdd1ca5-982e-422d-bced-640e3a98a339",
|
|
32
|
-
"date_created": "2023-02-26T15:02:36.662Z",
|
|
33
|
-
"user_updated": "9fdd1ca5-982e-422d-bced-640e3a98a339",
|
|
34
|
-
"date_updated": "2023-04-06T13:12:26.366Z",
|
|
35
|
-
"title": "Contact Us",
|
|
36
|
-
"key": "contact-us",
|
|
37
|
-
"schema": [
|
|
38
|
-
{
|
|
39
|
-
"name": "first_name",
|
|
40
|
-
"type": "text",
|
|
41
|
-
"label": "First Name",
|
|
42
|
-
"placeholder": "John",
|
|
43
|
-
"help": null,
|
|
44
|
-
"width": "50"
|
|
45
|
-
},
|
|
46
|
-
{
|
|
47
|
-
"name": "last_name",
|
|
48
|
-
"type": "text",
|
|
49
|
-
"label": "Last Name",
|
|
50
|
-
"width": "50"
|
|
51
|
-
},
|
|
52
|
-
{
|
|
53
|
-
"name": "email",
|
|
54
|
-
"type": "text",
|
|
55
|
-
"label": "Email",
|
|
56
|
-
"placeholder": "john@example.com",
|
|
57
|
-
"validation": "required",
|
|
58
|
-
"width": "50"
|
|
59
|
-
},
|
|
60
|
-
{
|
|
61
|
-
"name": "phone",
|
|
62
|
-
"type": "text",
|
|
63
|
-
"label": "Phone Number",
|
|
64
|
-
"width": "50"
|
|
65
|
-
},
|
|
66
|
-
{
|
|
67
|
-
"name": "company",
|
|
68
|
-
"type": "text",
|
|
69
|
-
"label": "Company",
|
|
70
|
-
"help": "What's the name of your company / organization?",
|
|
71
|
-
"width": "100"
|
|
72
|
-
},
|
|
73
|
-
{
|
|
74
|
-
"name": "message",
|
|
75
|
-
"type": "textarea",
|
|
76
|
-
"label": "Message",
|
|
77
|
-
"placeholder": "How can we help?",
|
|
78
|
-
"width": "100"
|
|
79
|
-
},
|
|
80
|
-
{
|
|
81
|
-
"name": "consent",
|
|
82
|
-
"type": "checkbox",
|
|
83
|
-
"label": "I agree with terms of service",
|
|
84
|
-
"width": "100"
|
|
85
|
-
}
|
|
86
|
-
],
|
|
87
|
-
"submit_label": "Get Started",
|
|
88
|
-
"on_success": "redirect",
|
|
89
|
-
"redirect_url": null,
|
|
90
|
-
"success_message": null
|
|
91
|
-
}
|
|
92
|
-
]
|
|
@@ -1,57 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"id": "ab89c489-faea-4310-8b59-7ddb3caf279a",
|
|
3
|
-
"title": "Agency OS",
|
|
4
|
-
"description": "A freaking awesome Nuxt + Directus template that will help you level up.",
|
|
5
|
-
"og_image": null,
|
|
6
|
-
"twitter_image": null,
|
|
7
|
-
"social_links": [
|
|
8
|
-
{
|
|
9
|
-
"service": "github",
|
|
10
|
-
"url": "https://github.com/directus"
|
|
11
|
-
},
|
|
12
|
-
{
|
|
13
|
-
"service": "linkedin",
|
|
14
|
-
"url": "https://www.linkedin.com/company/directus-io"
|
|
15
|
-
},
|
|
16
|
-
{
|
|
17
|
-
"service": "youtube",
|
|
18
|
-
"url": "https://www.youtube.com/c/DirectusVideos"
|
|
19
|
-
},
|
|
20
|
-
{
|
|
21
|
-
"url": "https://directus.chat/",
|
|
22
|
-
"service": "discord"
|
|
23
|
-
},
|
|
24
|
-
{
|
|
25
|
-
"service": "twitter",
|
|
26
|
-
"url": "https://twitter.com/directus"
|
|
27
|
-
}
|
|
28
|
-
],
|
|
29
|
-
"postal_code": "98052",
|
|
30
|
-
"street_address": "123 Main St",
|
|
31
|
-
"address_region": "WA",
|
|
32
|
-
"address_locality": "Seattle",
|
|
33
|
-
"email": "info@example.com",
|
|
34
|
-
"phone": "(425) 123-4567",
|
|
35
|
-
"address_country": "US",
|
|
36
|
-
"url": "https://agency-os.vercel.app",
|
|
37
|
-
"build_hook_url": "https://api.netlify.com/build_hooks/6410cc4f3210881c58bf4223",
|
|
38
|
-
"routes": [
|
|
39
|
-
{
|
|
40
|
-
"collection": "pages",
|
|
41
|
-
"route": "/{{ slug }}"
|
|
42
|
-
},
|
|
43
|
-
{
|
|
44
|
-
"collection": "posts",
|
|
45
|
-
"route": "/posts/{{ slug }}"
|
|
46
|
-
},
|
|
47
|
-
{
|
|
48
|
-
"collection": "categories",
|
|
49
|
-
"route": "/posts/categories/{{ slug }}"
|
|
50
|
-
},
|
|
51
|
-
{
|
|
52
|
-
"collection": "projects",
|
|
53
|
-
"route": "/projects/{{ slug }}"
|
|
54
|
-
}
|
|
55
|
-
],
|
|
56
|
-
"tagline": "The modern dev agency template"
|
|
57
|
-
}
|
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
[
|
|
2
|
-
{
|
|
3
|
-
"id": "f2952591-ce98-4a41-b077-ccc7610aa0b6",
|
|
4
|
-
"status": "new",
|
|
5
|
-
"sort": null,
|
|
6
|
-
"user_created": null,
|
|
7
|
-
"date_created": "2023-03-31T12:07:15.997Z",
|
|
8
|
-
"user_updated": "9fdd1ca5-982e-422d-bced-640e3a98a339",
|
|
9
|
-
"date_updated": "2023-04-06T11:53:01.304Z",
|
|
10
|
-
"data": {
|
|
11
|
-
"first_name": "John",
|
|
12
|
-
"last_name": "Daniels",
|
|
13
|
-
"email": "jwdaniels87@gmail.com",
|
|
14
|
-
"phone": "6159831268",
|
|
15
|
-
"company": "Directus",
|
|
16
|
-
"message": "Hi There",
|
|
17
|
-
"consent": true
|
|
18
|
-
},
|
|
19
|
-
"form": null
|
|
20
|
-
}
|
|
21
|
-
]
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
[]
|
|
@@ -1,30 +0,0 @@
|
|
|
1
|
-
[
|
|
2
|
-
{
|
|
3
|
-
"id": "footer",
|
|
4
|
-
"status": "published",
|
|
5
|
-
"user_created": "9fdd1ca5-982e-422d-bced-640e3a98a339",
|
|
6
|
-
"date_created": "2023-02-26T22:52:32.034Z",
|
|
7
|
-
"user_updated": "9fdd1ca5-982e-422d-bced-640e3a98a339",
|
|
8
|
-
"date_updated": "2023-04-03T17:59:31.978Z",
|
|
9
|
-
"title": "Footer Navigation",
|
|
10
|
-
"items": [
|
|
11
|
-
"dc0870f8-e316-48b0-b34d-ca5c4394344c",
|
|
12
|
-
"55a139ed-f4fa-4227-b5dd-7bf234451da8"
|
|
13
|
-
]
|
|
14
|
-
},
|
|
15
|
-
{
|
|
16
|
-
"id": "main",
|
|
17
|
-
"status": "published",
|
|
18
|
-
"user_created": "9fdd1ca5-982e-422d-bced-640e3a98a339",
|
|
19
|
-
"date_created": "2023-02-26T21:51:47.211Z",
|
|
20
|
-
"user_updated": "9fdd1ca5-982e-422d-bced-640e3a98a339",
|
|
21
|
-
"date_updated": "2023-03-20T11:58:56.971Z",
|
|
22
|
-
"title": "Main Navigation",
|
|
23
|
-
"items": [
|
|
24
|
-
"98fecf94-471c-4439-8289-ff5692853729",
|
|
25
|
-
"edb1caf2-ae32-49a3-a3d1-2cf0096a5f07",
|
|
26
|
-
"b3e04cd1-c082-4811-8c93-323ab6fcde86",
|
|
27
|
-
"fea5cb3b-0a34-4150-90cd-9b41e27ccdb4"
|
|
28
|
-
]
|
|
29
|
-
}
|
|
30
|
-
]
|
|
@@ -1,140 +0,0 @@
|
|
|
1
|
-
[
|
|
2
|
-
{
|
|
3
|
-
"id": "98fecf94-471c-4439-8289-ff5692853729",
|
|
4
|
-
"sort": 1,
|
|
5
|
-
"type": "page",
|
|
6
|
-
"page": "e4f2016e-d063-4968-9d25-969044bd5b39",
|
|
7
|
-
"navigation": "main",
|
|
8
|
-
"parent": null,
|
|
9
|
-
"url": null,
|
|
10
|
-
"open_in_new_tab": false,
|
|
11
|
-
"title": "Services",
|
|
12
|
-
"has_children": false,
|
|
13
|
-
"label": null,
|
|
14
|
-
"icon": null,
|
|
15
|
-
"children": []
|
|
16
|
-
},
|
|
17
|
-
{
|
|
18
|
-
"id": "dc0870f8-e316-48b0-b34d-ca5c4394344c",
|
|
19
|
-
"sort": 1,
|
|
20
|
-
"type": "page",
|
|
21
|
-
"page": "4dd784f0-67d6-4c6d-8cd7-4a3a9a5a7ca6",
|
|
22
|
-
"navigation": "footer",
|
|
23
|
-
"parent": null,
|
|
24
|
-
"url": null,
|
|
25
|
-
"open_in_new_tab": false,
|
|
26
|
-
"title": "Privacy Policy",
|
|
27
|
-
"has_children": false,
|
|
28
|
-
"label": "Our privacy policy and terms of service.",
|
|
29
|
-
"icon": null,
|
|
30
|
-
"children": []
|
|
31
|
-
},
|
|
32
|
-
{
|
|
33
|
-
"id": "4ab77cef-ccef-478e-b363-10932f5345aa",
|
|
34
|
-
"sort": 1,
|
|
35
|
-
"type": "url",
|
|
36
|
-
"page": null,
|
|
37
|
-
"navigation": null,
|
|
38
|
-
"parent": "b3e04cd1-c082-4811-8c93-323ab6fcde86",
|
|
39
|
-
"url": "/team",
|
|
40
|
-
"open_in_new_tab": false,
|
|
41
|
-
"title": "Team",
|
|
42
|
-
"has_children": false,
|
|
43
|
-
"label": "Learn more about the best team around.",
|
|
44
|
-
"icon": "person_pin",
|
|
45
|
-
"children": []
|
|
46
|
-
},
|
|
47
|
-
{
|
|
48
|
-
"id": "edb1caf2-ae32-49a3-a3d1-2cf0096a5f07",
|
|
49
|
-
"sort": 2,
|
|
50
|
-
"type": "url",
|
|
51
|
-
"page": null,
|
|
52
|
-
"navigation": "main",
|
|
53
|
-
"parent": null,
|
|
54
|
-
"url": "/projects",
|
|
55
|
-
"open_in_new_tab": false,
|
|
56
|
-
"title": "Projects",
|
|
57
|
-
"has_children": false,
|
|
58
|
-
"label": null,
|
|
59
|
-
"icon": null,
|
|
60
|
-
"children": []
|
|
61
|
-
},
|
|
62
|
-
{
|
|
63
|
-
"id": "b6bbbe43-b11b-460a-bb59-ceb3a535711c",
|
|
64
|
-
"sort": 2,
|
|
65
|
-
"type": "url",
|
|
66
|
-
"page": null,
|
|
67
|
-
"navigation": null,
|
|
68
|
-
"parent": "b3e04cd1-c082-4811-8c93-323ab6fcde86",
|
|
69
|
-
"url": "/careers",
|
|
70
|
-
"open_in_new_tab": false,
|
|
71
|
-
"title": "Careers",
|
|
72
|
-
"has_children": false,
|
|
73
|
-
"label": "Join the agency and build better apps for all.",
|
|
74
|
-
"icon": "cases",
|
|
75
|
-
"children": []
|
|
76
|
-
},
|
|
77
|
-
{
|
|
78
|
-
"id": "b3e04cd1-c082-4811-8c93-323ab6fcde86",
|
|
79
|
-
"sort": 3,
|
|
80
|
-
"type": "page",
|
|
81
|
-
"page": "f7c43acc-e52f-406c-bdb3-778eeb297955",
|
|
82
|
-
"navigation": "main",
|
|
83
|
-
"parent": null,
|
|
84
|
-
"url": null,
|
|
85
|
-
"open_in_new_tab": false,
|
|
86
|
-
"title": "About",
|
|
87
|
-
"has_children": true,
|
|
88
|
-
"label": null,
|
|
89
|
-
"icon": null,
|
|
90
|
-
"children": [
|
|
91
|
-
"4ab77cef-ccef-478e-b363-10932f5345aa",
|
|
92
|
-
"b6bbbe43-b11b-460a-bb59-ceb3a535711c"
|
|
93
|
-
]
|
|
94
|
-
},
|
|
95
|
-
{
|
|
96
|
-
"id": "fea5cb3b-0a34-4150-90cd-9b41e27ccdb4",
|
|
97
|
-
"sort": 4,
|
|
98
|
-
"type": "url",
|
|
99
|
-
"page": null,
|
|
100
|
-
"navigation": "main",
|
|
101
|
-
"parent": null,
|
|
102
|
-
"url": "/posts",
|
|
103
|
-
"open_in_new_tab": false,
|
|
104
|
-
"title": "Articles",
|
|
105
|
-
"has_children": false,
|
|
106
|
-
"label": null,
|
|
107
|
-
"icon": null,
|
|
108
|
-
"children": []
|
|
109
|
-
},
|
|
110
|
-
{
|
|
111
|
-
"id": "4d18581d-30fc-46c1-ba45-d8c550e9ea94",
|
|
112
|
-
"sort": 5,
|
|
113
|
-
"type": "url",
|
|
114
|
-
"page": null,
|
|
115
|
-
"navigation": null,
|
|
116
|
-
"parent": null,
|
|
117
|
-
"url": null,
|
|
118
|
-
"open_in_new_tab": false,
|
|
119
|
-
"title": "Menu",
|
|
120
|
-
"has_children": true,
|
|
121
|
-
"label": null,
|
|
122
|
-
"icon": null,
|
|
123
|
-
"children": []
|
|
124
|
-
},
|
|
125
|
-
{
|
|
126
|
-
"id": "55a139ed-f4fa-4227-b5dd-7bf234451da8",
|
|
127
|
-
"sort": null,
|
|
128
|
-
"type": "page",
|
|
129
|
-
"page": "e4f2016e-d063-4968-9d25-969044bd5b39",
|
|
130
|
-
"navigation": "footer",
|
|
131
|
-
"parent": null,
|
|
132
|
-
"url": null,
|
|
133
|
-
"open_in_new_tab": false,
|
|
134
|
-
"title": "Services",
|
|
135
|
-
"has_children": false,
|
|
136
|
-
"label": null,
|
|
137
|
-
"icon": null,
|
|
138
|
-
"children": []
|
|
139
|
-
}
|
|
140
|
-
]
|
|
@@ -1,123 +0,0 @@
|
|
|
1
|
-
[
|
|
2
|
-
{
|
|
3
|
-
"id": "591f8c5a-32c8-4db1-9b2b-f285a5d0dbe5",
|
|
4
|
-
"status": "published",
|
|
5
|
-
"date_created": "2023-02-08T21:26:17",
|
|
6
|
-
"user_updated": "aebb695f-5dcc-4dba-9e03-b847e333fb02",
|
|
7
|
-
"date_updated": "2023-04-25T08:19:17",
|
|
8
|
-
"user_created": "9fdd1ca5-982e-422d-bced-640e3a98a339",
|
|
9
|
-
"title": "Home",
|
|
10
|
-
"slug": "home",
|
|
11
|
-
"sort": 1,
|
|
12
|
-
"seo": "b1f04203-66c4-42ae-b1e1-3529555cc51e",
|
|
13
|
-
"blocks": [
|
|
14
|
-
8,
|
|
15
|
-
11,
|
|
16
|
-
13,
|
|
17
|
-
14,
|
|
18
|
-
15,
|
|
19
|
-
10,
|
|
20
|
-
16,
|
|
21
|
-
17,
|
|
22
|
-
22,
|
|
23
|
-
30,
|
|
24
|
-
31,
|
|
25
|
-
32,
|
|
26
|
-
33,
|
|
27
|
-
34
|
|
28
|
-
]
|
|
29
|
-
},
|
|
30
|
-
{
|
|
31
|
-
"id": "e4f2016e-d063-4968-9d25-969044bd5b39",
|
|
32
|
-
"status": "published",
|
|
33
|
-
"date_created": "2023-02-26T18:44:10",
|
|
34
|
-
"user_updated": "b3182bed-fa0a-45cf-9678-0cc54b7a8fb3",
|
|
35
|
-
"date_updated": "2023-04-13T13:58:46",
|
|
36
|
-
"user_created": "9fdd1ca5-982e-422d-bced-640e3a98a339",
|
|
37
|
-
"title": "Services",
|
|
38
|
-
"slug": "services",
|
|
39
|
-
"sort": 2,
|
|
40
|
-
"seo": "6fda4d61-a5e8-463b-b97a-505da1ac401d",
|
|
41
|
-
"blocks": [
|
|
42
|
-
18,
|
|
43
|
-
44
|
|
44
|
-
]
|
|
45
|
-
},
|
|
46
|
-
{
|
|
47
|
-
"id": "62b11d76-875a-4782-97fa-494576edc075",
|
|
48
|
-
"status": "published",
|
|
49
|
-
"date_created": "2023-02-26T22:55:02",
|
|
50
|
-
"user_updated": "9fdd1ca5-982e-422d-bced-640e3a98a339",
|
|
51
|
-
"date_updated": "2023-03-17T15:29:51",
|
|
52
|
-
"user_created": "9fdd1ca5-982e-422d-bced-640e3a98a339",
|
|
53
|
-
"title": "Team",
|
|
54
|
-
"slug": "team",
|
|
55
|
-
"sort": 3,
|
|
56
|
-
"seo": "8c7e24a4-61fc-4725-8dbe-d74ca65c9950",
|
|
57
|
-
"blocks": [
|
|
58
|
-
20,
|
|
59
|
-
28
|
|
60
|
-
]
|
|
61
|
-
},
|
|
62
|
-
{
|
|
63
|
-
"id": "c9316918-afb7-4a3c-a0a9-d71943ba8862",
|
|
64
|
-
"status": "published",
|
|
65
|
-
"date_created": "2023-02-26T22:55:13",
|
|
66
|
-
"user_updated": "9fdd1ca5-982e-422d-bced-640e3a98a339",
|
|
67
|
-
"date_updated": "2023-03-13T16:00:41",
|
|
68
|
-
"user_created": "9fdd1ca5-982e-422d-bced-640e3a98a339",
|
|
69
|
-
"title": "Careers",
|
|
70
|
-
"slug": "careers",
|
|
71
|
-
"sort": 4,
|
|
72
|
-
"seo": null,
|
|
73
|
-
"blocks": [
|
|
74
|
-
19
|
|
75
|
-
]
|
|
76
|
-
},
|
|
77
|
-
{
|
|
78
|
-
"id": "f7c43acc-e52f-406c-bdb3-778eeb297955",
|
|
79
|
-
"status": "published",
|
|
80
|
-
"date_created": "2023-02-06T16:21:45",
|
|
81
|
-
"user_updated": "9fdd1ca5-982e-422d-bced-640e3a98a339",
|
|
82
|
-
"date_updated": "2023-03-13T16:00:41",
|
|
83
|
-
"user_created": "9fdd1ca5-982e-422d-bced-640e3a98a339",
|
|
84
|
-
"title": "About",
|
|
85
|
-
"slug": "about",
|
|
86
|
-
"sort": 5,
|
|
87
|
-
"seo": null,
|
|
88
|
-
"blocks": [
|
|
89
|
-
4
|
|
90
|
-
]
|
|
91
|
-
},
|
|
92
|
-
{
|
|
93
|
-
"id": "4dd784f0-67d6-4c6d-8cd7-4a3a9a5a7ca6",
|
|
94
|
-
"status": "published",
|
|
95
|
-
"date_created": "2023-03-16T01:36:31",
|
|
96
|
-
"user_updated": "9fdd1ca5-982e-422d-bced-640e3a98a339",
|
|
97
|
-
"date_updated": "2023-03-20T12:43:46",
|
|
98
|
-
"user_created": "9fdd1ca5-982e-422d-bced-640e3a98a339",
|
|
99
|
-
"title": "Privacy Policy",
|
|
100
|
-
"slug": "privacy-policy",
|
|
101
|
-
"sort": 6,
|
|
102
|
-
"seo": "da230df5-b9e6-4430-ba8e-54fea767accc",
|
|
103
|
-
"blocks": [
|
|
104
|
-
35
|
|
105
|
-
]
|
|
106
|
-
},
|
|
107
|
-
{
|
|
108
|
-
"id": "81b649ba-4c00-45fc-bf2e-06e76b6a7693",
|
|
109
|
-
"status": "published",
|
|
110
|
-
"date_created": "2023-02-26T23:20:57",
|
|
111
|
-
"user_updated": "9fdd1ca5-982e-422d-bced-640e3a98a339",
|
|
112
|
-
"date_updated": "2023-03-13T16:00:41",
|
|
113
|
-
"user_created": "9fdd1ca5-982e-422d-bced-640e3a98a339",
|
|
114
|
-
"title": "Contact Us",
|
|
115
|
-
"slug": "contact-us",
|
|
116
|
-
"sort": 7,
|
|
117
|
-
"seo": null,
|
|
118
|
-
"blocks": [
|
|
119
|
-
21,
|
|
120
|
-
24
|
|
121
|
-
]
|
|
122
|
-
}
|
|
123
|
-
]
|