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,433 +0,0 @@
|
|
|
1
|
-
[
|
|
2
|
-
{
|
|
3
|
-
"id": "1479ba5f-eebf-4f3f-b9bb-fbe6c409b376",
|
|
4
|
-
"dashboard": "013b1a80-b551-475a-bbd8-119f1e1e9134",
|
|
5
|
-
"name": null,
|
|
6
|
-
"icon": null,
|
|
7
|
-
"color": null,
|
|
8
|
-
"show_header": false,
|
|
9
|
-
"note": null,
|
|
10
|
-
"type": "label",
|
|
11
|
-
"position_x": 1,
|
|
12
|
-
"position_y": 3,
|
|
13
|
-
"width": 30,
|
|
14
|
-
"height": 6,
|
|
15
|
-
"options": {
|
|
16
|
-
"text": "Content Workflow",
|
|
17
|
-
"color": "#18222F"
|
|
18
|
-
},
|
|
19
|
-
"date_created": "2023-04-06T12:18:21.978Z",
|
|
20
|
-
"user_created": "9fdd1ca5-982e-422d-bced-640e3a98a339"
|
|
21
|
-
},
|
|
22
|
-
{
|
|
23
|
-
"id": "18bb7102-3b89-4ebf-9c40-75f1f3ac950e",
|
|
24
|
-
"dashboard": "0612ec0b-4db9-45c9-a824-c1e817aca21c",
|
|
25
|
-
"name": "Date To",
|
|
26
|
-
"icon": "date_range",
|
|
27
|
-
"color": "#A2B5CD",
|
|
28
|
-
"show_header": true,
|
|
29
|
-
"note": null,
|
|
30
|
-
"type": "variable",
|
|
31
|
-
"position_x": 16,
|
|
32
|
-
"position_y": 8,
|
|
33
|
-
"width": 15,
|
|
34
|
-
"height": 6,
|
|
35
|
-
"options": {
|
|
36
|
-
"field": "date_to",
|
|
37
|
-
"type": "dateTime",
|
|
38
|
-
"inter": "datetime",
|
|
39
|
-
"defaultValue": "2023-01-01T00:00:00",
|
|
40
|
-
"options": {
|
|
41
|
-
"use24": false
|
|
42
|
-
}
|
|
43
|
-
},
|
|
44
|
-
"date_created": "2023-04-06T12:51:38.592Z",
|
|
45
|
-
"user_created": "9fdd1ca5-982e-422d-bced-640e3a98a339"
|
|
46
|
-
},
|
|
47
|
-
{
|
|
48
|
-
"id": "2565b21e-cfed-417a-a21b-f5520be8707f",
|
|
49
|
-
"dashboard": "013b1a80-b551-475a-bbd8-119f1e1e9134",
|
|
50
|
-
"name": "",
|
|
51
|
-
"icon": null,
|
|
52
|
-
"color": null,
|
|
53
|
-
"show_header": false,
|
|
54
|
-
"note": null,
|
|
55
|
-
"type": "label",
|
|
56
|
-
"position_x": 1,
|
|
57
|
-
"position_y": 41,
|
|
58
|
-
"width": 30,
|
|
59
|
-
"height": 6,
|
|
60
|
-
"options": {
|
|
61
|
-
"text": "Alerts",
|
|
62
|
-
"color": "#E35169"
|
|
63
|
-
},
|
|
64
|
-
"date_created": "2023-04-06T12:25:47.805Z",
|
|
65
|
-
"user_created": "9fdd1ca5-982e-422d-bced-640e3a98a339"
|
|
66
|
-
},
|
|
67
|
-
{
|
|
68
|
-
"id": "3987050b-48e4-41a6-9a31-c8fc388160a4",
|
|
69
|
-
"dashboard": "013b1a80-b551-475a-bbd8-119f1e1e9134",
|
|
70
|
-
"name": "Posts In Review",
|
|
71
|
-
"icon": "preview",
|
|
72
|
-
"color": "#FFA439",
|
|
73
|
-
"show_header": true,
|
|
74
|
-
"note": null,
|
|
75
|
-
"type": "list",
|
|
76
|
-
"position_x": 1,
|
|
77
|
-
"position_y": 30,
|
|
78
|
-
"width": 30,
|
|
79
|
-
"height": 9,
|
|
80
|
-
"options": {
|
|
81
|
-
"collection": "posts",
|
|
82
|
-
"displayTemplate": "{{title}} - {{author.avatar}} {{author.first_name}} {{author.last_name}}",
|
|
83
|
-
"filter": {
|
|
84
|
-
"_and": [
|
|
85
|
-
{
|
|
86
|
-
"status": {
|
|
87
|
-
"_eq": "in_review"
|
|
88
|
-
}
|
|
89
|
-
}
|
|
90
|
-
]
|
|
91
|
-
},
|
|
92
|
-
"limit": 10,
|
|
93
|
-
"linkToItem": true
|
|
94
|
-
},
|
|
95
|
-
"date_created": "2023-04-06T12:44:33.777Z",
|
|
96
|
-
"user_created": "9fdd1ca5-982e-422d-bced-640e3a98a339"
|
|
97
|
-
},
|
|
98
|
-
{
|
|
99
|
-
"id": "5caba4e3-8aa0-470e-b5cd-d062a70d0a8c",
|
|
100
|
-
"dashboard": "0612ec0b-4db9-45c9-a824-c1e817aca21c",
|
|
101
|
-
"name": "Date From",
|
|
102
|
-
"icon": "date_range",
|
|
103
|
-
"color": "#A2B5CD",
|
|
104
|
-
"show_header": true,
|
|
105
|
-
"note": null,
|
|
106
|
-
"type": "variable",
|
|
107
|
-
"position_x": 1,
|
|
108
|
-
"position_y": 8,
|
|
109
|
-
"width": 15,
|
|
110
|
-
"height": 6,
|
|
111
|
-
"options": {
|
|
112
|
-
"field": "date_from",
|
|
113
|
-
"type": "dateTime",
|
|
114
|
-
"inter": "datetime",
|
|
115
|
-
"defaultValue": "2023-01-01T00:00:00",
|
|
116
|
-
"options": {
|
|
117
|
-
"use24": false
|
|
118
|
-
}
|
|
119
|
-
},
|
|
120
|
-
"date_created": "2023-04-06T12:51:38.569Z",
|
|
121
|
-
"user_created": "9fdd1ca5-982e-422d-bced-640e3a98a339"
|
|
122
|
-
},
|
|
123
|
-
{
|
|
124
|
-
"id": "5d0adedb-c78e-44c2-b43a-f50b2526dd32",
|
|
125
|
-
"dashboard": "013b1a80-b551-475a-bbd8-119f1e1e9134",
|
|
126
|
-
"name": "Date To",
|
|
127
|
-
"icon": "date_range",
|
|
128
|
-
"color": "#A2B5CD",
|
|
129
|
-
"show_header": true,
|
|
130
|
-
"note": null,
|
|
131
|
-
"type": "variable",
|
|
132
|
-
"position_x": 16,
|
|
133
|
-
"position_y": 9,
|
|
134
|
-
"width": 15,
|
|
135
|
-
"height": 6,
|
|
136
|
-
"options": {
|
|
137
|
-
"field": "date_to",
|
|
138
|
-
"type": "dateTime",
|
|
139
|
-
"inter": "datetime",
|
|
140
|
-
"defaultValue": "{{$NOW}}",
|
|
141
|
-
"options": {
|
|
142
|
-
"use24": false
|
|
143
|
-
}
|
|
144
|
-
},
|
|
145
|
-
"date_created": "2023-04-06T12:22:46.584Z",
|
|
146
|
-
"user_created": "9fdd1ca5-982e-422d-bced-640e3a98a339"
|
|
147
|
-
},
|
|
148
|
-
{
|
|
149
|
-
"id": "6210699c-365d-4715-9d3f-1cd91bf86145",
|
|
150
|
-
"dashboard": "013b1a80-b551-475a-bbd8-119f1e1e9134",
|
|
151
|
-
"name": "In Review",
|
|
152
|
-
"icon": null,
|
|
153
|
-
"color": "#FFC23B",
|
|
154
|
-
"show_header": true,
|
|
155
|
-
"note": null,
|
|
156
|
-
"type": "metric",
|
|
157
|
-
"position_x": 11,
|
|
158
|
-
"position_y": 24,
|
|
159
|
-
"width": 10,
|
|
160
|
-
"height": 6,
|
|
161
|
-
"options": {
|
|
162
|
-
"collection": "posts",
|
|
163
|
-
"field": "id",
|
|
164
|
-
"function": "count",
|
|
165
|
-
"filter": {
|
|
166
|
-
"_and": [
|
|
167
|
-
{
|
|
168
|
-
"status": {
|
|
169
|
-
"_eq": "in_review"
|
|
170
|
-
}
|
|
171
|
-
}
|
|
172
|
-
]
|
|
173
|
-
},
|
|
174
|
-
"conditionalFormatting": [
|
|
175
|
-
{
|
|
176
|
-
"operator": ">=",
|
|
177
|
-
"value": 0,
|
|
178
|
-
"color": "#FFC23B"
|
|
179
|
-
}
|
|
180
|
-
]
|
|
181
|
-
},
|
|
182
|
-
"date_created": "2023-04-06T12:18:22.028Z",
|
|
183
|
-
"user_created": "9fdd1ca5-982e-422d-bced-640e3a98a339"
|
|
184
|
-
},
|
|
185
|
-
{
|
|
186
|
-
"id": "69b49682-9dd8-49e0-bed1-7151beb4be96",
|
|
187
|
-
"dashboard": "013b1a80-b551-475a-bbd8-119f1e1e9134",
|
|
188
|
-
"name": "Posts Missing Thumbnail",
|
|
189
|
-
"icon": "warning",
|
|
190
|
-
"color": "#E35169",
|
|
191
|
-
"show_header": true,
|
|
192
|
-
"note": "These posts are missing a thumbnail image.",
|
|
193
|
-
"type": "list",
|
|
194
|
-
"position_x": 16,
|
|
195
|
-
"position_y": 65,
|
|
196
|
-
"width": 15,
|
|
197
|
-
"height": 18,
|
|
198
|
-
"options": {
|
|
199
|
-
"collection": "posts",
|
|
200
|
-
"linkToItem": true,
|
|
201
|
-
"filter": {
|
|
202
|
-
"_and": [
|
|
203
|
-
{
|
|
204
|
-
"image": {
|
|
205
|
-
"id": {
|
|
206
|
-
"_null": true
|
|
207
|
-
}
|
|
208
|
-
}
|
|
209
|
-
}
|
|
210
|
-
]
|
|
211
|
-
},
|
|
212
|
-
"sortField": null,
|
|
213
|
-
"displayTemplate": "{{title}}",
|
|
214
|
-
"limit": -1
|
|
215
|
-
},
|
|
216
|
-
"date_created": "2023-04-06T12:40:22.222Z",
|
|
217
|
-
"user_created": "9fdd1ca5-982e-422d-bced-640e3a98a339"
|
|
218
|
-
},
|
|
219
|
-
{
|
|
220
|
-
"id": "926a7632-c7f3-4da7-bc61-c6d4fb4fe900",
|
|
221
|
-
"dashboard": "013b1a80-b551-475a-bbd8-119f1e1e9134",
|
|
222
|
-
"name": "Published Over Time",
|
|
223
|
-
"icon": null,
|
|
224
|
-
"color": "#FF99DD",
|
|
225
|
-
"show_header": true,
|
|
226
|
-
"note": null,
|
|
227
|
-
"type": "time-series",
|
|
228
|
-
"position_x": 1,
|
|
229
|
-
"position_y": 15,
|
|
230
|
-
"width": 30,
|
|
231
|
-
"height": 9,
|
|
232
|
-
"options": {
|
|
233
|
-
"collection": "posts",
|
|
234
|
-
"function": "count",
|
|
235
|
-
"dateField": "date_published",
|
|
236
|
-
"range": "3 months",
|
|
237
|
-
"precision": "day",
|
|
238
|
-
"valueField": "id",
|
|
239
|
-
"color": "#FF99DD"
|
|
240
|
-
},
|
|
241
|
-
"date_created": "2023-04-06T12:20:17.049Z",
|
|
242
|
-
"user_created": "9fdd1ca5-982e-422d-bced-640e3a98a339"
|
|
243
|
-
},
|
|
244
|
-
{
|
|
245
|
-
"id": "bab08465-6abb-43ac-9ce0-c2b65b8a12b5",
|
|
246
|
-
"dashboard": "013b1a80-b551-475a-bbd8-119f1e1e9134",
|
|
247
|
-
"name": "Pages Missing SEO Data",
|
|
248
|
-
"icon": "warning",
|
|
249
|
-
"color": "#E35169",
|
|
250
|
-
"show_header": true,
|
|
251
|
-
"note": "These pages are missing SEO Title or Meta Description",
|
|
252
|
-
"type": "list",
|
|
253
|
-
"position_x": 1,
|
|
254
|
-
"position_y": 47,
|
|
255
|
-
"width": 15,
|
|
256
|
-
"height": 18,
|
|
257
|
-
"options": {
|
|
258
|
-
"collection": "pages",
|
|
259
|
-
"linkToItem": true,
|
|
260
|
-
"filter": {
|
|
261
|
-
"_and": [
|
|
262
|
-
{
|
|
263
|
-
"_or": [
|
|
264
|
-
{
|
|
265
|
-
"seo": {
|
|
266
|
-
"title": {
|
|
267
|
-
"_empty": true
|
|
268
|
-
}
|
|
269
|
-
}
|
|
270
|
-
},
|
|
271
|
-
{
|
|
272
|
-
"seo": {
|
|
273
|
-
"meta_description": {
|
|
274
|
-
"_empty": true
|
|
275
|
-
}
|
|
276
|
-
}
|
|
277
|
-
}
|
|
278
|
-
]
|
|
279
|
-
}
|
|
280
|
-
]
|
|
281
|
-
},
|
|
282
|
-
"sortField": "title",
|
|
283
|
-
"displayTemplate": "{{title}}",
|
|
284
|
-
"limit": -1
|
|
285
|
-
},
|
|
286
|
-
"date_created": "2023-04-06T12:27:38.037Z",
|
|
287
|
-
"user_created": "9fdd1ca5-982e-422d-bced-640e3a98a339"
|
|
288
|
-
},
|
|
289
|
-
{
|
|
290
|
-
"id": "c7963278-b862-4ded-954e-019ebf88271a",
|
|
291
|
-
"dashboard": "013b1a80-b551-475a-bbd8-119f1e1e9134",
|
|
292
|
-
"name": "Posts Missing SEO Data",
|
|
293
|
-
"icon": "warning",
|
|
294
|
-
"color": "#E35169",
|
|
295
|
-
"show_header": true,
|
|
296
|
-
"note": "These posts are missing SEO Title or Meta Description",
|
|
297
|
-
"type": "list",
|
|
298
|
-
"position_x": 16,
|
|
299
|
-
"position_y": 47,
|
|
300
|
-
"width": 15,
|
|
301
|
-
"height": 18,
|
|
302
|
-
"options": {
|
|
303
|
-
"collection": "posts",
|
|
304
|
-
"linkToItem": true,
|
|
305
|
-
"filter": {
|
|
306
|
-
"_and": [
|
|
307
|
-
{
|
|
308
|
-
"_or": [
|
|
309
|
-
{
|
|
310
|
-
"seo": {
|
|
311
|
-
"title": {
|
|
312
|
-
"_empty": true
|
|
313
|
-
}
|
|
314
|
-
}
|
|
315
|
-
},
|
|
316
|
-
{
|
|
317
|
-
"seo": {
|
|
318
|
-
"meta_description": {
|
|
319
|
-
"_empty": true
|
|
320
|
-
}
|
|
321
|
-
}
|
|
322
|
-
}
|
|
323
|
-
]
|
|
324
|
-
}
|
|
325
|
-
]
|
|
326
|
-
},
|
|
327
|
-
"sortField": null,
|
|
328
|
-
"displayTemplate": "{{title}}",
|
|
329
|
-
"limit": -1
|
|
330
|
-
},
|
|
331
|
-
"date_created": "2023-04-06T12:28:43.767Z",
|
|
332
|
-
"user_created": "9fdd1ca5-982e-422d-bced-640e3a98a339"
|
|
333
|
-
},
|
|
334
|
-
{
|
|
335
|
-
"id": "c92b79b3-2bc5-4be7-b83e-95c588463d3c",
|
|
336
|
-
"dashboard": "013b1a80-b551-475a-bbd8-119f1e1e9134",
|
|
337
|
-
"name": "Date From",
|
|
338
|
-
"icon": "date_range",
|
|
339
|
-
"color": "#A2B5CD",
|
|
340
|
-
"show_header": true,
|
|
341
|
-
"note": null,
|
|
342
|
-
"type": "variable",
|
|
343
|
-
"position_x": 1,
|
|
344
|
-
"position_y": 9,
|
|
345
|
-
"width": 15,
|
|
346
|
-
"height": 6,
|
|
347
|
-
"options": {
|
|
348
|
-
"field": "date_from",
|
|
349
|
-
"type": "dateTime",
|
|
350
|
-
"inter": "datetime",
|
|
351
|
-
"defaultValue": "2023-01-01T12:00:00",
|
|
352
|
-
"options": {
|
|
353
|
-
"use24": false
|
|
354
|
-
}
|
|
355
|
-
},
|
|
356
|
-
"date_created": "2023-04-06T12:22:46.558Z",
|
|
357
|
-
"user_created": "9fdd1ca5-982e-422d-bced-640e3a98a339"
|
|
358
|
-
},
|
|
359
|
-
{
|
|
360
|
-
"id": "e85f38ea-8eb7-4b28-a877-39dda66140c6",
|
|
361
|
-
"dashboard": "013b1a80-b551-475a-bbd8-119f1e1e9134",
|
|
362
|
-
"name": "Draft",
|
|
363
|
-
"icon": null,
|
|
364
|
-
"color": "#A2B5CD",
|
|
365
|
-
"show_header": true,
|
|
366
|
-
"note": null,
|
|
367
|
-
"type": "metric",
|
|
368
|
-
"position_x": 1,
|
|
369
|
-
"position_y": 24,
|
|
370
|
-
"width": 10,
|
|
371
|
-
"height": 6,
|
|
372
|
-
"options": {
|
|
373
|
-
"collection": "posts",
|
|
374
|
-
"field": "id",
|
|
375
|
-
"function": "count",
|
|
376
|
-
"filter": {
|
|
377
|
-
"_and": [
|
|
378
|
-
{
|
|
379
|
-
"status": {
|
|
380
|
-
"_eq": "draft"
|
|
381
|
-
}
|
|
382
|
-
}
|
|
383
|
-
]
|
|
384
|
-
},
|
|
385
|
-
"conditionalFormatting": [
|
|
386
|
-
{
|
|
387
|
-
"operator": ">=",
|
|
388
|
-
"value": 0,
|
|
389
|
-
"color": "#A2B5CD"
|
|
390
|
-
}
|
|
391
|
-
]
|
|
392
|
-
},
|
|
393
|
-
"date_created": "2023-04-06T12:18:22.067Z",
|
|
394
|
-
"user_created": "9fdd1ca5-982e-422d-bced-640e3a98a339"
|
|
395
|
-
},
|
|
396
|
-
{
|
|
397
|
-
"id": "e99840a1-d366-40ae-94ce-84f963191322",
|
|
398
|
-
"dashboard": "013b1a80-b551-475a-bbd8-119f1e1e9134",
|
|
399
|
-
"name": "Published",
|
|
400
|
-
"icon": null,
|
|
401
|
-
"color": "#2ECDA7",
|
|
402
|
-
"show_header": true,
|
|
403
|
-
"note": null,
|
|
404
|
-
"type": "metric",
|
|
405
|
-
"position_x": 21,
|
|
406
|
-
"position_y": 24,
|
|
407
|
-
"width": 10,
|
|
408
|
-
"height": 6,
|
|
409
|
-
"options": {
|
|
410
|
-
"collection": "posts",
|
|
411
|
-
"field": "id",
|
|
412
|
-
"function": "count",
|
|
413
|
-
"filter": {
|
|
414
|
-
"_and": [
|
|
415
|
-
{
|
|
416
|
-
"status": {
|
|
417
|
-
"_eq": "published"
|
|
418
|
-
}
|
|
419
|
-
}
|
|
420
|
-
]
|
|
421
|
-
},
|
|
422
|
-
"conditionalFormatting": [
|
|
423
|
-
{
|
|
424
|
-
"operator": ">=",
|
|
425
|
-
"value": 0,
|
|
426
|
-
"color": "#2ECDA7"
|
|
427
|
-
}
|
|
428
|
-
]
|
|
429
|
-
},
|
|
430
|
-
"date_created": "2023-04-06T12:18:22.000Z",
|
|
431
|
-
"user_created": "9fdd1ca5-982e-422d-bced-640e3a98a339"
|
|
432
|
-
}
|
|
433
|
-
]
|