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,2421 +0,0 @@
|
|
|
1
|
-
[
|
|
2
|
-
{
|
|
3
|
-
"user": null,
|
|
4
|
-
"role": null,
|
|
5
|
-
"bookmark": null,
|
|
6
|
-
"collection": "pages",
|
|
7
|
-
"search": null,
|
|
8
|
-
"layout": null,
|
|
9
|
-
"icon": "bookmark_border",
|
|
10
|
-
"color": null,
|
|
11
|
-
"filter": null,
|
|
12
|
-
"layout_options": {
|
|
13
|
-
"tabular": {
|
|
14
|
-
"widths": {
|
|
15
|
-
"status": 32,
|
|
16
|
-
"title": 179.501708984375
|
|
17
|
-
}
|
|
18
|
-
}
|
|
19
|
-
},
|
|
20
|
-
"layout_query": {
|
|
21
|
-
"tabular": {
|
|
22
|
-
"page": 1,
|
|
23
|
-
"fields": [
|
|
24
|
-
"status",
|
|
25
|
-
"title",
|
|
26
|
-
"slug",
|
|
27
|
-
"blocks"
|
|
28
|
-
],
|
|
29
|
-
"sort": [
|
|
30
|
-
"sort"
|
|
31
|
-
]
|
|
32
|
-
}
|
|
33
|
-
},
|
|
34
|
-
"refresh_interval": null
|
|
35
|
-
},
|
|
36
|
-
{
|
|
37
|
-
"user": null,
|
|
38
|
-
"role": null,
|
|
39
|
-
"bookmark": null,
|
|
40
|
-
"collection": "testimonials",
|
|
41
|
-
"search": null,
|
|
42
|
-
"layout": null,
|
|
43
|
-
"icon": "bookmark_border",
|
|
44
|
-
"color": null,
|
|
45
|
-
"filter": null,
|
|
46
|
-
"layout_options": {
|
|
47
|
-
"tabular": {
|
|
48
|
-
"widths": {
|
|
49
|
-
"status": 32,
|
|
50
|
-
"image": 51.5,
|
|
51
|
-
"title": 106.58203125,
|
|
52
|
-
"company": 125.6171875,
|
|
53
|
-
"subtitle": 117.40625
|
|
54
|
-
}
|
|
55
|
-
}
|
|
56
|
-
},
|
|
57
|
-
"layout_query": {
|
|
58
|
-
"tabular": {
|
|
59
|
-
"page": 1,
|
|
60
|
-
"fields": [
|
|
61
|
-
"status",
|
|
62
|
-
"image",
|
|
63
|
-
"title",
|
|
64
|
-
"company",
|
|
65
|
-
"subtitle"
|
|
66
|
-
]
|
|
67
|
-
}
|
|
68
|
-
},
|
|
69
|
-
"refresh_interval": null
|
|
70
|
-
},
|
|
71
|
-
{
|
|
72
|
-
"user": null,
|
|
73
|
-
"role": null,
|
|
74
|
-
"bookmark": "1. Workflow",
|
|
75
|
-
"collection": "posts",
|
|
76
|
-
"search": null,
|
|
77
|
-
"layout": "kanban",
|
|
78
|
-
"icon": "view_kanban",
|
|
79
|
-
"color": "#18222F",
|
|
80
|
-
"filter": null,
|
|
81
|
-
"layout_options": {
|
|
82
|
-
"kanban": {
|
|
83
|
-
"titleField": "title",
|
|
84
|
-
"showUngrouped": false,
|
|
85
|
-
"dateField": "date_published",
|
|
86
|
-
"textField": "summary",
|
|
87
|
-
"crop": true,
|
|
88
|
-
"groupField": "status",
|
|
89
|
-
"groupTitle": null
|
|
90
|
-
}
|
|
91
|
-
},
|
|
92
|
-
"layout_query": {
|
|
93
|
-
"tabular": {
|
|
94
|
-
"fields": [
|
|
95
|
-
"status",
|
|
96
|
-
"image",
|
|
97
|
-
"title",
|
|
98
|
-
"date_published"
|
|
99
|
-
],
|
|
100
|
-
"sort": [
|
|
101
|
-
"-date_published"
|
|
102
|
-
],
|
|
103
|
-
"page": 1
|
|
104
|
-
}
|
|
105
|
-
},
|
|
106
|
-
"refresh_interval": null
|
|
107
|
-
},
|
|
108
|
-
{
|
|
109
|
-
"user": null,
|
|
110
|
-
"role": null,
|
|
111
|
-
"bookmark": "2. Calendar",
|
|
112
|
-
"collection": "posts",
|
|
113
|
-
"search": null,
|
|
114
|
-
"layout": "calendar",
|
|
115
|
-
"icon": "calendar_today",
|
|
116
|
-
"color": "#18222F",
|
|
117
|
-
"filter": null,
|
|
118
|
-
"layout_options": {
|
|
119
|
-
"kanban": {
|
|
120
|
-
"titleField": "title",
|
|
121
|
-
"showUngrouped": false,
|
|
122
|
-
"dateField": null,
|
|
123
|
-
"textField": "content"
|
|
124
|
-
},
|
|
125
|
-
"tabular": {
|
|
126
|
-
"widths": {
|
|
127
|
-
"status": 32,
|
|
128
|
-
"image": 63.16796875,
|
|
129
|
-
"title": 371.87109375,
|
|
130
|
-
"date_published": 179.76171875
|
|
131
|
-
},
|
|
132
|
-
"spacing": "comfortable"
|
|
133
|
-
},
|
|
134
|
-
"calendar": {
|
|
135
|
-
"viewInfo": {
|
|
136
|
-
"type": "dayGridMonth",
|
|
137
|
-
"startDateStr": "2023-02-01T00:00:00-05:00"
|
|
138
|
-
},
|
|
139
|
-
"startDateField": "date_published",
|
|
140
|
-
"template": "{{title}}"
|
|
141
|
-
}
|
|
142
|
-
},
|
|
143
|
-
"layout_query": {
|
|
144
|
-
"tabular": {
|
|
145
|
-
"fields": [
|
|
146
|
-
"status",
|
|
147
|
-
"image",
|
|
148
|
-
"title",
|
|
149
|
-
"date_published"
|
|
150
|
-
],
|
|
151
|
-
"sort": [
|
|
152
|
-
"-date_published"
|
|
153
|
-
],
|
|
154
|
-
"page": 1
|
|
155
|
-
}
|
|
156
|
-
},
|
|
157
|
-
"refresh_interval": null
|
|
158
|
-
},
|
|
159
|
-
{
|
|
160
|
-
"user": null,
|
|
161
|
-
"role": null,
|
|
162
|
-
"bookmark": "3. All Posts",
|
|
163
|
-
"collection": "posts",
|
|
164
|
-
"search": null,
|
|
165
|
-
"layout": "tabular",
|
|
166
|
-
"icon": "list",
|
|
167
|
-
"color": "#18222F",
|
|
168
|
-
"filter": null,
|
|
169
|
-
"layout_options": {
|
|
170
|
-
"kanban": {
|
|
171
|
-
"titleField": "title",
|
|
172
|
-
"showUngrouped": false,
|
|
173
|
-
"dateField": null,
|
|
174
|
-
"textField": "content"
|
|
175
|
-
},
|
|
176
|
-
"tabular": {
|
|
177
|
-
"widths": {
|
|
178
|
-
"status": 101.4609375,
|
|
179
|
-
"image": 63.16796875,
|
|
180
|
-
"title": 371.87109375,
|
|
181
|
-
"category": 135.03125,
|
|
182
|
-
"date_published": 145.5078125,
|
|
183
|
-
"author": 227.5546875
|
|
184
|
-
},
|
|
185
|
-
"spacing": "comfortable"
|
|
186
|
-
},
|
|
187
|
-
"calendar": {
|
|
188
|
-
"viewInfo": {
|
|
189
|
-
"type": "dayGridMonth",
|
|
190
|
-
"startDateStr": "2023-02-01T00:00:00-05:00"
|
|
191
|
-
},
|
|
192
|
-
"startDateField": "date_published",
|
|
193
|
-
"template": "{{title}}"
|
|
194
|
-
}
|
|
195
|
-
},
|
|
196
|
-
"layout_query": {
|
|
197
|
-
"tabular": {
|
|
198
|
-
"fields": [
|
|
199
|
-
"status",
|
|
200
|
-
"image",
|
|
201
|
-
"title",
|
|
202
|
-
"category",
|
|
203
|
-
"date_published",
|
|
204
|
-
"author"
|
|
205
|
-
],
|
|
206
|
-
"sort": [
|
|
207
|
-
"-date_published"
|
|
208
|
-
],
|
|
209
|
-
"page": 1,
|
|
210
|
-
"limit": 25
|
|
211
|
-
}
|
|
212
|
-
},
|
|
213
|
-
"refresh_interval": null
|
|
214
|
-
},
|
|
215
|
-
{
|
|
216
|
-
"user": null,
|
|
217
|
-
"role": null,
|
|
218
|
-
"bookmark": null,
|
|
219
|
-
"collection": "forms",
|
|
220
|
-
"search": null,
|
|
221
|
-
"layout": null,
|
|
222
|
-
"icon": "bookmark_border",
|
|
223
|
-
"color": null,
|
|
224
|
-
"filter": null,
|
|
225
|
-
"layout_options": {
|
|
226
|
-
"tabular": {
|
|
227
|
-
"widths": {
|
|
228
|
-
"status": 32
|
|
229
|
-
}
|
|
230
|
-
}
|
|
231
|
-
},
|
|
232
|
-
"layout_query": {
|
|
233
|
-
"tabular": {
|
|
234
|
-
"page": 1,
|
|
235
|
-
"fields": [
|
|
236
|
-
"status",
|
|
237
|
-
"title",
|
|
238
|
-
"key",
|
|
239
|
-
"schema"
|
|
240
|
-
]
|
|
241
|
-
}
|
|
242
|
-
},
|
|
243
|
-
"refresh_interval": null
|
|
244
|
-
},
|
|
245
|
-
{
|
|
246
|
-
"user": null,
|
|
247
|
-
"role": null,
|
|
248
|
-
"bookmark": null,
|
|
249
|
-
"collection": "inbox",
|
|
250
|
-
"search": null,
|
|
251
|
-
"layout": null,
|
|
252
|
-
"icon": "bookmark_border",
|
|
253
|
-
"color": null,
|
|
254
|
-
"filter": null,
|
|
255
|
-
"layout_options": {
|
|
256
|
-
"tabular": {
|
|
257
|
-
"widths": {
|
|
258
|
-
"status": 32,
|
|
259
|
-
"data": 284.96807861328125
|
|
260
|
-
}
|
|
261
|
-
}
|
|
262
|
-
},
|
|
263
|
-
"layout_query": {
|
|
264
|
-
"tabular": {
|
|
265
|
-
"page": 1,
|
|
266
|
-
"fields": [
|
|
267
|
-
"status",
|
|
268
|
-
"date_created",
|
|
269
|
-
"form",
|
|
270
|
-
"data"
|
|
271
|
-
],
|
|
272
|
-
"sort": [
|
|
273
|
-
"-date_created"
|
|
274
|
-
]
|
|
275
|
-
}
|
|
276
|
-
},
|
|
277
|
-
"refresh_interval": null
|
|
278
|
-
},
|
|
279
|
-
{
|
|
280
|
-
"user": null,
|
|
281
|
-
"role": null,
|
|
282
|
-
"bookmark": null,
|
|
283
|
-
"collection": "navigation",
|
|
284
|
-
"search": null,
|
|
285
|
-
"layout": null,
|
|
286
|
-
"icon": "bookmark_border",
|
|
287
|
-
"color": null,
|
|
288
|
-
"filter": null,
|
|
289
|
-
"layout_options": {
|
|
290
|
-
"tabular": {
|
|
291
|
-
"widths": {
|
|
292
|
-
"status": 37.29296875,
|
|
293
|
-
"id": 115.59375
|
|
294
|
-
}
|
|
295
|
-
}
|
|
296
|
-
},
|
|
297
|
-
"layout_query": {
|
|
298
|
-
"tabular": {
|
|
299
|
-
"page": 1,
|
|
300
|
-
"fields": [
|
|
301
|
-
"status",
|
|
302
|
-
"title",
|
|
303
|
-
"id",
|
|
304
|
-
"items"
|
|
305
|
-
]
|
|
306
|
-
}
|
|
307
|
-
},
|
|
308
|
-
"refresh_interval": null
|
|
309
|
-
},
|
|
310
|
-
{
|
|
311
|
-
"user": null,
|
|
312
|
-
"role": null,
|
|
313
|
-
"bookmark": null,
|
|
314
|
-
"collection": "navigation_items",
|
|
315
|
-
"search": null,
|
|
316
|
-
"layout": null,
|
|
317
|
-
"icon": "bookmark_border",
|
|
318
|
-
"color": null,
|
|
319
|
-
"filter": null,
|
|
320
|
-
"layout_options": {
|
|
321
|
-
"tabular": {
|
|
322
|
-
"widths": {
|
|
323
|
-
"navigation": 131.640625,
|
|
324
|
-
"has_children": 107.65625
|
|
325
|
-
}
|
|
326
|
-
}
|
|
327
|
-
},
|
|
328
|
-
"layout_query": {
|
|
329
|
-
"tabular": {
|
|
330
|
-
"page": 1,
|
|
331
|
-
"fields": [
|
|
332
|
-
"navigation",
|
|
333
|
-
"title",
|
|
334
|
-
"has_children",
|
|
335
|
-
"label",
|
|
336
|
-
"type",
|
|
337
|
-
"parent"
|
|
338
|
-
]
|
|
339
|
-
}
|
|
340
|
-
},
|
|
341
|
-
"refresh_interval": null
|
|
342
|
-
},
|
|
343
|
-
{
|
|
344
|
-
"user": null,
|
|
345
|
-
"role": null,
|
|
346
|
-
"bookmark": null,
|
|
347
|
-
"collection": "seo",
|
|
348
|
-
"search": null,
|
|
349
|
-
"layout": null,
|
|
350
|
-
"icon": "bookmark_border",
|
|
351
|
-
"color": null,
|
|
352
|
-
"filter": null,
|
|
353
|
-
"layout_options": {
|
|
354
|
-
"tabular": {
|
|
355
|
-
"widths": {}
|
|
356
|
-
}
|
|
357
|
-
},
|
|
358
|
-
"layout_query": {
|
|
359
|
-
"tabular": {
|
|
360
|
-
"page": 1,
|
|
361
|
-
"fields": [
|
|
362
|
-
"title",
|
|
363
|
-
"meta_description",
|
|
364
|
-
"no_follow",
|
|
365
|
-
"no_index"
|
|
366
|
-
]
|
|
367
|
-
}
|
|
368
|
-
},
|
|
369
|
-
"refresh_interval": null
|
|
370
|
-
},
|
|
371
|
-
{
|
|
372
|
-
"user": null,
|
|
373
|
-
"role": null,
|
|
374
|
-
"bookmark": null,
|
|
375
|
-
"collection": "redirects",
|
|
376
|
-
"search": null,
|
|
377
|
-
"layout": null,
|
|
378
|
-
"icon": "bookmark_border",
|
|
379
|
-
"color": null,
|
|
380
|
-
"filter": null,
|
|
381
|
-
"layout_options": {
|
|
382
|
-
"tabular": {
|
|
383
|
-
"widths": {
|
|
384
|
-
"response_code": 156.15625
|
|
385
|
-
}
|
|
386
|
-
}
|
|
387
|
-
},
|
|
388
|
-
"layout_query": {
|
|
389
|
-
"tabular": {
|
|
390
|
-
"page": 1,
|
|
391
|
-
"fields": [
|
|
392
|
-
"response_code",
|
|
393
|
-
"url_old",
|
|
394
|
-
"url_new"
|
|
395
|
-
]
|
|
396
|
-
}
|
|
397
|
-
},
|
|
398
|
-
"refresh_interval": null
|
|
399
|
-
},
|
|
400
|
-
{
|
|
401
|
-
"user": null,
|
|
402
|
-
"role": null,
|
|
403
|
-
"bookmark": "1. My Activities",
|
|
404
|
-
"collection": "os_activities",
|
|
405
|
-
"search": null,
|
|
406
|
-
"layout": null,
|
|
407
|
-
"icon": "event_list",
|
|
408
|
-
"color": "#D064AC",
|
|
409
|
-
"filter": {
|
|
410
|
-
"_and": [
|
|
411
|
-
{
|
|
412
|
-
"_and": [
|
|
413
|
-
{
|
|
414
|
-
"status": {
|
|
415
|
-
"_eq": "open"
|
|
416
|
-
}
|
|
417
|
-
},
|
|
418
|
-
{
|
|
419
|
-
"assigned_to": {
|
|
420
|
-
"_eq": "$CURRENT_USER"
|
|
421
|
-
}
|
|
422
|
-
}
|
|
423
|
-
]
|
|
424
|
-
}
|
|
425
|
-
]
|
|
426
|
-
},
|
|
427
|
-
"layout_options": {
|
|
428
|
-
"tabular": {
|
|
429
|
-
"widths": {
|
|
430
|
-
"status": 45.8515625
|
|
431
|
-
}
|
|
432
|
-
}
|
|
433
|
-
},
|
|
434
|
-
"layout_query": {
|
|
435
|
-
"tabular": {
|
|
436
|
-
"limit": 25,
|
|
437
|
-
"fields": [
|
|
438
|
-
"status",
|
|
439
|
-
"activity_type",
|
|
440
|
-
"deal",
|
|
441
|
-
"name"
|
|
442
|
-
],
|
|
443
|
-
"page": 1
|
|
444
|
-
}
|
|
445
|
-
},
|
|
446
|
-
"refresh_interval": null
|
|
447
|
-
},
|
|
448
|
-
{
|
|
449
|
-
"user": null,
|
|
450
|
-
"role": null,
|
|
451
|
-
"bookmark": "1. My Deals",
|
|
452
|
-
"collection": "os_deals",
|
|
453
|
-
"search": null,
|
|
454
|
-
"layout": "kanban",
|
|
455
|
-
"icon": "person_search",
|
|
456
|
-
"color": "#D064AC",
|
|
457
|
-
"filter": {
|
|
458
|
-
"_and": [
|
|
459
|
-
{
|
|
460
|
-
"owner": {
|
|
461
|
-
"_eq": "$CURRENT_USER"
|
|
462
|
-
}
|
|
463
|
-
}
|
|
464
|
-
]
|
|
465
|
-
},
|
|
466
|
-
"layout_options": {
|
|
467
|
-
"kanban": {
|
|
468
|
-
"groupField": "deal_stage",
|
|
469
|
-
"groupTitle": "name",
|
|
470
|
-
"showUngrouped": false,
|
|
471
|
-
"dateField": "next_contact_date",
|
|
472
|
-
"userField": "owner",
|
|
473
|
-
"titleField": "name",
|
|
474
|
-
"textField": null
|
|
475
|
-
}
|
|
476
|
-
},
|
|
477
|
-
"layout_query": {
|
|
478
|
-
"tabular": {
|
|
479
|
-
"limit": 25
|
|
480
|
-
},
|
|
481
|
-
"kanban": {
|
|
482
|
-
"page": 1
|
|
483
|
-
}
|
|
484
|
-
},
|
|
485
|
-
"refresh_interval": null
|
|
486
|
-
},
|
|
487
|
-
{
|
|
488
|
-
"user": null,
|
|
489
|
-
"role": null,
|
|
490
|
-
"bookmark": "1. My Tasks",
|
|
491
|
-
"collection": "os_tasks",
|
|
492
|
-
"search": null,
|
|
493
|
-
"layout": "tabular",
|
|
494
|
-
"icon": "playlist_add_check_circle",
|
|
495
|
-
"color": "#D064AC",
|
|
496
|
-
"filter": {
|
|
497
|
-
"_and": [
|
|
498
|
-
{
|
|
499
|
-
"_and": [
|
|
500
|
-
{
|
|
501
|
-
"assigned_to": {
|
|
502
|
-
"_eq": "$CURRENT_USER"
|
|
503
|
-
}
|
|
504
|
-
},
|
|
505
|
-
{
|
|
506
|
-
"status": {
|
|
507
|
-
"_neq": "completed"
|
|
508
|
-
}
|
|
509
|
-
}
|
|
510
|
-
]
|
|
511
|
-
}
|
|
512
|
-
]
|
|
513
|
-
},
|
|
514
|
-
"layout_options": {
|
|
515
|
-
"tabular": {
|
|
516
|
-
"widths": {
|
|
517
|
-
"status": 45.0062255859375,
|
|
518
|
-
"name": 265.52813720703125,
|
|
519
|
-
"type": 149.378173828125
|
|
520
|
-
}
|
|
521
|
-
}
|
|
522
|
-
},
|
|
523
|
-
"layout_query": {
|
|
524
|
-
"tabular": {
|
|
525
|
-
"limit": 25,
|
|
526
|
-
"page": 1,
|
|
527
|
-
"fields": [
|
|
528
|
-
"status",
|
|
529
|
-
"name",
|
|
530
|
-
"due_date",
|
|
531
|
-
"type",
|
|
532
|
-
"assigned_to"
|
|
533
|
-
],
|
|
534
|
-
"sort": [
|
|
535
|
-
"due_date"
|
|
536
|
-
]
|
|
537
|
-
}
|
|
538
|
-
},
|
|
539
|
-
"refresh_interval": null
|
|
540
|
-
},
|
|
541
|
-
{
|
|
542
|
-
"user": null,
|
|
543
|
-
"role": null,
|
|
544
|
-
"bookmark": "1. My Projects",
|
|
545
|
-
"collection": "os_projects",
|
|
546
|
-
"search": null,
|
|
547
|
-
"layout": "tabular",
|
|
548
|
-
"icon": "mindfulness",
|
|
549
|
-
"color": "#D064AC",
|
|
550
|
-
"filter": {
|
|
551
|
-
"_and": [
|
|
552
|
-
{
|
|
553
|
-
"_and": [
|
|
554
|
-
{
|
|
555
|
-
"owner": {
|
|
556
|
-
"_eq": "$CURRENT_USER"
|
|
557
|
-
}
|
|
558
|
-
}
|
|
559
|
-
]
|
|
560
|
-
}
|
|
561
|
-
]
|
|
562
|
-
},
|
|
563
|
-
"layout_options": {
|
|
564
|
-
"tabular": {
|
|
565
|
-
"widths": {
|
|
566
|
-
"status": 97.0703125,
|
|
567
|
-
"name": 257.5887451171875
|
|
568
|
-
}
|
|
569
|
-
}
|
|
570
|
-
},
|
|
571
|
-
"layout_query": {
|
|
572
|
-
"tabular": {
|
|
573
|
-
"limit": 25,
|
|
574
|
-
"page": 1,
|
|
575
|
-
"fields": [
|
|
576
|
-
"status",
|
|
577
|
-
"name",
|
|
578
|
-
"organization",
|
|
579
|
-
"owner",
|
|
580
|
-
"start_date",
|
|
581
|
-
"due_date",
|
|
582
|
-
"contacts"
|
|
583
|
-
]
|
|
584
|
-
}
|
|
585
|
-
},
|
|
586
|
-
"refresh_interval": null
|
|
587
|
-
},
|
|
588
|
-
{
|
|
589
|
-
"user": null,
|
|
590
|
-
"role": null,
|
|
591
|
-
"bookmark": null,
|
|
592
|
-
"collection": "team",
|
|
593
|
-
"search": null,
|
|
594
|
-
"layout": null,
|
|
595
|
-
"icon": "bookmark_border",
|
|
596
|
-
"color": null,
|
|
597
|
-
"filter": null,
|
|
598
|
-
"layout_options": {
|
|
599
|
-
"tabular": {
|
|
600
|
-
"widths": {
|
|
601
|
-
"status": 32,
|
|
602
|
-
"image": 61.731781005859375
|
|
603
|
-
}
|
|
604
|
-
}
|
|
605
|
-
},
|
|
606
|
-
"layout_query": {
|
|
607
|
-
"tabular": {
|
|
608
|
-
"page": 1,
|
|
609
|
-
"fields": [
|
|
610
|
-
"status",
|
|
611
|
-
"image",
|
|
612
|
-
"name",
|
|
613
|
-
"job_title"
|
|
614
|
-
]
|
|
615
|
-
}
|
|
616
|
-
},
|
|
617
|
-
"refresh_interval": null
|
|
618
|
-
},
|
|
619
|
-
{
|
|
620
|
-
"user": null,
|
|
621
|
-
"role": null,
|
|
622
|
-
"bookmark": null,
|
|
623
|
-
"collection": "categories",
|
|
624
|
-
"search": null,
|
|
625
|
-
"layout": null,
|
|
626
|
-
"icon": "bookmark_border",
|
|
627
|
-
"color": null,
|
|
628
|
-
"filter": null,
|
|
629
|
-
"layout_options": {
|
|
630
|
-
"tabular": {
|
|
631
|
-
"widths": {
|
|
632
|
-
"color": 39.171875
|
|
633
|
-
}
|
|
634
|
-
}
|
|
635
|
-
},
|
|
636
|
-
"layout_query": {
|
|
637
|
-
"tabular": {
|
|
638
|
-
"page": 1,
|
|
639
|
-
"fields": [
|
|
640
|
-
"color",
|
|
641
|
-
"title",
|
|
642
|
-
"slug"
|
|
643
|
-
]
|
|
644
|
-
}
|
|
645
|
-
},
|
|
646
|
-
"refresh_interval": null
|
|
647
|
-
},
|
|
648
|
-
{
|
|
649
|
-
"user": null,
|
|
650
|
-
"role": null,
|
|
651
|
-
"bookmark": null,
|
|
652
|
-
"collection": "posts",
|
|
653
|
-
"search": null,
|
|
654
|
-
"layout": null,
|
|
655
|
-
"icon": "bookmark_border",
|
|
656
|
-
"color": null,
|
|
657
|
-
"filter": null,
|
|
658
|
-
"layout_options": {
|
|
659
|
-
"tabular": {
|
|
660
|
-
"widths": {
|
|
661
|
-
"status": 100.4296875,
|
|
662
|
-
"image": 55.890625,
|
|
663
|
-
"title": 375.66015625
|
|
664
|
-
}
|
|
665
|
-
}
|
|
666
|
-
},
|
|
667
|
-
"layout_query": {
|
|
668
|
-
"tabular": {
|
|
669
|
-
"page": 1,
|
|
670
|
-
"fields": [
|
|
671
|
-
"status",
|
|
672
|
-
"image",
|
|
673
|
-
"title",
|
|
674
|
-
"date_published"
|
|
675
|
-
]
|
|
676
|
-
}
|
|
677
|
-
},
|
|
678
|
-
"refresh_interval": null
|
|
679
|
-
},
|
|
680
|
-
{
|
|
681
|
-
"user": null,
|
|
682
|
-
"role": null,
|
|
683
|
-
"bookmark": null,
|
|
684
|
-
"collection": "testimonials",
|
|
685
|
-
"search": null,
|
|
686
|
-
"layout": null,
|
|
687
|
-
"icon": "bookmark_border",
|
|
688
|
-
"color": null,
|
|
689
|
-
"filter": null,
|
|
690
|
-
"layout_options": {
|
|
691
|
-
"tabular": {
|
|
692
|
-
"widths": {
|
|
693
|
-
"status": 32,
|
|
694
|
-
"image": 51.5,
|
|
695
|
-
"title": 106.58203125,
|
|
696
|
-
"company": 125.6171875,
|
|
697
|
-
"subtitle": 117.40625
|
|
698
|
-
}
|
|
699
|
-
}
|
|
700
|
-
},
|
|
701
|
-
"layout_query": {
|
|
702
|
-
"tabular": {
|
|
703
|
-
"page": 1,
|
|
704
|
-
"fields": [
|
|
705
|
-
"status",
|
|
706
|
-
"image",
|
|
707
|
-
"title",
|
|
708
|
-
"company",
|
|
709
|
-
"subtitle"
|
|
710
|
-
]
|
|
711
|
-
}
|
|
712
|
-
},
|
|
713
|
-
"refresh_interval": null
|
|
714
|
-
},
|
|
715
|
-
{
|
|
716
|
-
"user": null,
|
|
717
|
-
"role": null,
|
|
718
|
-
"bookmark": null,
|
|
719
|
-
"collection": "team",
|
|
720
|
-
"search": null,
|
|
721
|
-
"layout": null,
|
|
722
|
-
"icon": "bookmark_border",
|
|
723
|
-
"color": null,
|
|
724
|
-
"filter": null,
|
|
725
|
-
"layout_options": {
|
|
726
|
-
"tabular": {
|
|
727
|
-
"widths": {
|
|
728
|
-
"status": 32,
|
|
729
|
-
"image": 61.731781005859375
|
|
730
|
-
}
|
|
731
|
-
}
|
|
732
|
-
},
|
|
733
|
-
"layout_query": {
|
|
734
|
-
"tabular": {
|
|
735
|
-
"page": 1,
|
|
736
|
-
"fields": [
|
|
737
|
-
"status",
|
|
738
|
-
"image",
|
|
739
|
-
"name",
|
|
740
|
-
"job_title"
|
|
741
|
-
]
|
|
742
|
-
}
|
|
743
|
-
},
|
|
744
|
-
"refresh_interval": null
|
|
745
|
-
},
|
|
746
|
-
{
|
|
747
|
-
"user": null,
|
|
748
|
-
"role": null,
|
|
749
|
-
"bookmark": null,
|
|
750
|
-
"collection": "testimonials",
|
|
751
|
-
"search": null,
|
|
752
|
-
"layout": null,
|
|
753
|
-
"icon": "bookmark_border",
|
|
754
|
-
"color": null,
|
|
755
|
-
"filter": null,
|
|
756
|
-
"layout_options": {
|
|
757
|
-
"tabular": {
|
|
758
|
-
"widths": {
|
|
759
|
-
"status": 32,
|
|
760
|
-
"image": 51.5,
|
|
761
|
-
"title": 106.58203125,
|
|
762
|
-
"company": 125.6171875,
|
|
763
|
-
"subtitle": 117.40625
|
|
764
|
-
}
|
|
765
|
-
}
|
|
766
|
-
},
|
|
767
|
-
"layout_query": {
|
|
768
|
-
"tabular": {
|
|
769
|
-
"page": 1,
|
|
770
|
-
"fields": [
|
|
771
|
-
"status",
|
|
772
|
-
"image",
|
|
773
|
-
"title",
|
|
774
|
-
"company",
|
|
775
|
-
"subtitle"
|
|
776
|
-
]
|
|
777
|
-
}
|
|
778
|
-
},
|
|
779
|
-
"refresh_interval": null
|
|
780
|
-
},
|
|
781
|
-
{
|
|
782
|
-
"user": null,
|
|
783
|
-
"role": null,
|
|
784
|
-
"bookmark": null,
|
|
785
|
-
"collection": "block_faqs",
|
|
786
|
-
"search": null,
|
|
787
|
-
"layout": null,
|
|
788
|
-
"icon": "bookmark_border",
|
|
789
|
-
"color": null,
|
|
790
|
-
"filter": null,
|
|
791
|
-
"layout_options": null,
|
|
792
|
-
"layout_query": null,
|
|
793
|
-
"refresh_interval": null
|
|
794
|
-
},
|
|
795
|
-
{
|
|
796
|
-
"user": null,
|
|
797
|
-
"role": null,
|
|
798
|
-
"bookmark": null,
|
|
799
|
-
"collection": "posts",
|
|
800
|
-
"search": null,
|
|
801
|
-
"layout": null,
|
|
802
|
-
"icon": "bookmark_border",
|
|
803
|
-
"color": null,
|
|
804
|
-
"filter": null,
|
|
805
|
-
"layout_options": {
|
|
806
|
-
"tabular": {
|
|
807
|
-
"widths": {
|
|
808
|
-
"status": 100.4296875,
|
|
809
|
-
"image": 55.890625,
|
|
810
|
-
"title": 375.66015625
|
|
811
|
-
}
|
|
812
|
-
}
|
|
813
|
-
},
|
|
814
|
-
"layout_query": {
|
|
815
|
-
"tabular": {
|
|
816
|
-
"page": 1,
|
|
817
|
-
"fields": [
|
|
818
|
-
"status",
|
|
819
|
-
"image",
|
|
820
|
-
"title",
|
|
821
|
-
"date_published"
|
|
822
|
-
]
|
|
823
|
-
}
|
|
824
|
-
},
|
|
825
|
-
"refresh_interval": null
|
|
826
|
-
},
|
|
827
|
-
{
|
|
828
|
-
"user": null,
|
|
829
|
-
"role": null,
|
|
830
|
-
"bookmark": null,
|
|
831
|
-
"collection": "pages",
|
|
832
|
-
"search": null,
|
|
833
|
-
"layout": null,
|
|
834
|
-
"icon": "bookmark_border",
|
|
835
|
-
"color": null,
|
|
836
|
-
"filter": null,
|
|
837
|
-
"layout_options": {
|
|
838
|
-
"tabular": {
|
|
839
|
-
"widths": {
|
|
840
|
-
"status": 32,
|
|
841
|
-
"title": 179.501708984375
|
|
842
|
-
}
|
|
843
|
-
}
|
|
844
|
-
},
|
|
845
|
-
"layout_query": {
|
|
846
|
-
"tabular": {
|
|
847
|
-
"page": 1,
|
|
848
|
-
"fields": [
|
|
849
|
-
"status",
|
|
850
|
-
"title",
|
|
851
|
-
"slug",
|
|
852
|
-
"blocks"
|
|
853
|
-
],
|
|
854
|
-
"sort": [
|
|
855
|
-
"sort"
|
|
856
|
-
]
|
|
857
|
-
}
|
|
858
|
-
},
|
|
859
|
-
"refresh_interval": null
|
|
860
|
-
},
|
|
861
|
-
{
|
|
862
|
-
"user": null,
|
|
863
|
-
"role": null,
|
|
864
|
-
"bookmark": null,
|
|
865
|
-
"collection": "team",
|
|
866
|
-
"search": null,
|
|
867
|
-
"layout": null,
|
|
868
|
-
"icon": "bookmark_border",
|
|
869
|
-
"color": null,
|
|
870
|
-
"filter": null,
|
|
871
|
-
"layout_options": {
|
|
872
|
-
"tabular": {
|
|
873
|
-
"widths": {
|
|
874
|
-
"status": 32,
|
|
875
|
-
"image": 61.731781005859375
|
|
876
|
-
}
|
|
877
|
-
}
|
|
878
|
-
},
|
|
879
|
-
"layout_query": {
|
|
880
|
-
"tabular": {
|
|
881
|
-
"page": 1,
|
|
882
|
-
"fields": [
|
|
883
|
-
"status",
|
|
884
|
-
"image",
|
|
885
|
-
"name",
|
|
886
|
-
"job_title"
|
|
887
|
-
]
|
|
888
|
-
}
|
|
889
|
-
},
|
|
890
|
-
"refresh_interval": null
|
|
891
|
-
},
|
|
892
|
-
{
|
|
893
|
-
"user": null,
|
|
894
|
-
"role": null,
|
|
895
|
-
"bookmark": null,
|
|
896
|
-
"collection": "navigation_items",
|
|
897
|
-
"search": null,
|
|
898
|
-
"layout": null,
|
|
899
|
-
"icon": "bookmark_border",
|
|
900
|
-
"color": null,
|
|
901
|
-
"filter": null,
|
|
902
|
-
"layout_options": {
|
|
903
|
-
"tabular": {
|
|
904
|
-
"widths": {
|
|
905
|
-
"navigation": 131.640625,
|
|
906
|
-
"has_children": 107.65625
|
|
907
|
-
}
|
|
908
|
-
}
|
|
909
|
-
},
|
|
910
|
-
"layout_query": {
|
|
911
|
-
"tabular": {
|
|
912
|
-
"page": 1,
|
|
913
|
-
"fields": [
|
|
914
|
-
"navigation",
|
|
915
|
-
"title",
|
|
916
|
-
"has_children",
|
|
917
|
-
"label",
|
|
918
|
-
"type",
|
|
919
|
-
"parent"
|
|
920
|
-
],
|
|
921
|
-
"sort": [
|
|
922
|
-
"-navigation"
|
|
923
|
-
]
|
|
924
|
-
}
|
|
925
|
-
},
|
|
926
|
-
"refresh_interval": null
|
|
927
|
-
},
|
|
928
|
-
{
|
|
929
|
-
"user": null,
|
|
930
|
-
"role": null,
|
|
931
|
-
"bookmark": null,
|
|
932
|
-
"collection": "block_hero",
|
|
933
|
-
"search": null,
|
|
934
|
-
"layout": null,
|
|
935
|
-
"icon": "bookmark_border",
|
|
936
|
-
"color": null,
|
|
937
|
-
"filter": null,
|
|
938
|
-
"layout_options": null,
|
|
939
|
-
"layout_query": {
|
|
940
|
-
"tabular": {
|
|
941
|
-
"page": 1
|
|
942
|
-
}
|
|
943
|
-
},
|
|
944
|
-
"refresh_interval": null
|
|
945
|
-
},
|
|
946
|
-
{
|
|
947
|
-
"user": null,
|
|
948
|
-
"role": null,
|
|
949
|
-
"bookmark": null,
|
|
950
|
-
"collection": "navigation",
|
|
951
|
-
"search": null,
|
|
952
|
-
"layout": null,
|
|
953
|
-
"icon": "bookmark_border",
|
|
954
|
-
"color": null,
|
|
955
|
-
"filter": null,
|
|
956
|
-
"layout_options": {
|
|
957
|
-
"tabular": {
|
|
958
|
-
"widths": {
|
|
959
|
-
"status": 37.29296875,
|
|
960
|
-
"id": 115.59375
|
|
961
|
-
}
|
|
962
|
-
}
|
|
963
|
-
},
|
|
964
|
-
"layout_query": {
|
|
965
|
-
"tabular": {
|
|
966
|
-
"page": 1,
|
|
967
|
-
"fields": [
|
|
968
|
-
"status",
|
|
969
|
-
"title",
|
|
970
|
-
"id",
|
|
971
|
-
"items"
|
|
972
|
-
]
|
|
973
|
-
}
|
|
974
|
-
},
|
|
975
|
-
"refresh_interval": null
|
|
976
|
-
},
|
|
977
|
-
{
|
|
978
|
-
"user": null,
|
|
979
|
-
"role": null,
|
|
980
|
-
"bookmark": null,
|
|
981
|
-
"collection": "directus_presets",
|
|
982
|
-
"search": null,
|
|
983
|
-
"layout": null,
|
|
984
|
-
"icon": "bookmark_border",
|
|
985
|
-
"color": null,
|
|
986
|
-
"filter": null,
|
|
987
|
-
"layout_options": null,
|
|
988
|
-
"layout_query": {
|
|
989
|
-
"tabular": {
|
|
990
|
-
"page": 1
|
|
991
|
-
}
|
|
992
|
-
},
|
|
993
|
-
"refresh_interval": null
|
|
994
|
-
},
|
|
995
|
-
{
|
|
996
|
-
"user": null,
|
|
997
|
-
"role": null,
|
|
998
|
-
"bookmark": null,
|
|
999
|
-
"collection": "inbox",
|
|
1000
|
-
"search": null,
|
|
1001
|
-
"layout": null,
|
|
1002
|
-
"icon": "bookmark_border",
|
|
1003
|
-
"color": null,
|
|
1004
|
-
"filter": null,
|
|
1005
|
-
"layout_options": {
|
|
1006
|
-
"tabular": {
|
|
1007
|
-
"widths": {
|
|
1008
|
-
"status": 32,
|
|
1009
|
-
"data": 284.96807861328125
|
|
1010
|
-
}
|
|
1011
|
-
}
|
|
1012
|
-
},
|
|
1013
|
-
"layout_query": {
|
|
1014
|
-
"tabular": {
|
|
1015
|
-
"page": 1,
|
|
1016
|
-
"fields": [
|
|
1017
|
-
"status",
|
|
1018
|
-
"date_created",
|
|
1019
|
-
"form",
|
|
1020
|
-
"data"
|
|
1021
|
-
],
|
|
1022
|
-
"sort": [
|
|
1023
|
-
"-date_created"
|
|
1024
|
-
]
|
|
1025
|
-
}
|
|
1026
|
-
},
|
|
1027
|
-
"refresh_interval": null
|
|
1028
|
-
},
|
|
1029
|
-
{
|
|
1030
|
-
"user": null,
|
|
1031
|
-
"role": null,
|
|
1032
|
-
"bookmark": null,
|
|
1033
|
-
"collection": "forms",
|
|
1034
|
-
"search": null,
|
|
1035
|
-
"layout": null,
|
|
1036
|
-
"icon": "bookmark_border",
|
|
1037
|
-
"color": null,
|
|
1038
|
-
"filter": null,
|
|
1039
|
-
"layout_options": {
|
|
1040
|
-
"tabular": {
|
|
1041
|
-
"widths": {
|
|
1042
|
-
"status": 32
|
|
1043
|
-
}
|
|
1044
|
-
}
|
|
1045
|
-
},
|
|
1046
|
-
"layout_query": {
|
|
1047
|
-
"tabular": {
|
|
1048
|
-
"page": 1,
|
|
1049
|
-
"fields": [
|
|
1050
|
-
"status",
|
|
1051
|
-
"title",
|
|
1052
|
-
"key",
|
|
1053
|
-
"schema"
|
|
1054
|
-
]
|
|
1055
|
-
}
|
|
1056
|
-
},
|
|
1057
|
-
"refresh_interval": null
|
|
1058
|
-
},
|
|
1059
|
-
{
|
|
1060
|
-
"user": null,
|
|
1061
|
-
"role": null,
|
|
1062
|
-
"bookmark": null,
|
|
1063
|
-
"collection": "directus_files",
|
|
1064
|
-
"search": null,
|
|
1065
|
-
"layout": "cards",
|
|
1066
|
-
"icon": "bookmark_border",
|
|
1067
|
-
"color": null,
|
|
1068
|
-
"filter": null,
|
|
1069
|
-
"layout_options": {
|
|
1070
|
-
"cards": {
|
|
1071
|
-
"icon": "insert_drive_file",
|
|
1072
|
-
"title": "{{ title }}",
|
|
1073
|
-
"subtitle": "{{ type }} • {{ filesize }}",
|
|
1074
|
-
"size": 4,
|
|
1075
|
-
"imageFit": "crop"
|
|
1076
|
-
}
|
|
1077
|
-
},
|
|
1078
|
-
"layout_query": {
|
|
1079
|
-
"cards": {
|
|
1080
|
-
"sort": [
|
|
1081
|
-
"-uploaded_on"
|
|
1082
|
-
],
|
|
1083
|
-
"page": 1
|
|
1084
|
-
}
|
|
1085
|
-
},
|
|
1086
|
-
"refresh_interval": null
|
|
1087
|
-
},
|
|
1088
|
-
{
|
|
1089
|
-
"user": null,
|
|
1090
|
-
"role": null,
|
|
1091
|
-
"bookmark": null,
|
|
1092
|
-
"collection": "block_form",
|
|
1093
|
-
"search": null,
|
|
1094
|
-
"layout": null,
|
|
1095
|
-
"icon": "bookmark_border",
|
|
1096
|
-
"color": null,
|
|
1097
|
-
"filter": null,
|
|
1098
|
-
"layout_options": null,
|
|
1099
|
-
"layout_query": null,
|
|
1100
|
-
"refresh_interval": null
|
|
1101
|
-
},
|
|
1102
|
-
{
|
|
1103
|
-
"user": null,
|
|
1104
|
-
"role": null,
|
|
1105
|
-
"bookmark": null,
|
|
1106
|
-
"collection": "block_richtext",
|
|
1107
|
-
"search": null,
|
|
1108
|
-
"layout": null,
|
|
1109
|
-
"icon": "bookmark_border",
|
|
1110
|
-
"color": null,
|
|
1111
|
-
"filter": null,
|
|
1112
|
-
"layout_options": {
|
|
1113
|
-
"tabular": {
|
|
1114
|
-
"widths": {
|
|
1115
|
-
"content": 328.578125,
|
|
1116
|
-
"headline": 357.390625
|
|
1117
|
-
}
|
|
1118
|
-
}
|
|
1119
|
-
},
|
|
1120
|
-
"layout_query": {
|
|
1121
|
-
"tabular": {
|
|
1122
|
-
"page": 1,
|
|
1123
|
-
"fields": [
|
|
1124
|
-
"content",
|
|
1125
|
-
"headline",
|
|
1126
|
-
"title"
|
|
1127
|
-
]
|
|
1128
|
-
}
|
|
1129
|
-
},
|
|
1130
|
-
"refresh_interval": null
|
|
1131
|
-
},
|
|
1132
|
-
{
|
|
1133
|
-
"user": null,
|
|
1134
|
-
"role": null,
|
|
1135
|
-
"bookmark": null,
|
|
1136
|
-
"collection": "pages",
|
|
1137
|
-
"search": null,
|
|
1138
|
-
"layout": null,
|
|
1139
|
-
"icon": "bookmark_border",
|
|
1140
|
-
"color": null,
|
|
1141
|
-
"filter": {
|
|
1142
|
-
"_and": [
|
|
1143
|
-
{
|
|
1144
|
-
"status": {
|
|
1145
|
-
"_eq": "published"
|
|
1146
|
-
}
|
|
1147
|
-
}
|
|
1148
|
-
]
|
|
1149
|
-
},
|
|
1150
|
-
"layout_options": {
|
|
1151
|
-
"tabular": {
|
|
1152
|
-
"widths": {
|
|
1153
|
-
"status": 32,
|
|
1154
|
-
"title": 179.501708984375,
|
|
1155
|
-
"date_created": 214.70703125
|
|
1156
|
-
}
|
|
1157
|
-
}
|
|
1158
|
-
},
|
|
1159
|
-
"layout_query": {
|
|
1160
|
-
"tabular": {
|
|
1161
|
-
"page": 1,
|
|
1162
|
-
"fields": [
|
|
1163
|
-
"status",
|
|
1164
|
-
"title",
|
|
1165
|
-
"slug",
|
|
1166
|
-
"blocks",
|
|
1167
|
-
"date_created"
|
|
1168
|
-
],
|
|
1169
|
-
"sort": [
|
|
1170
|
-
"-title"
|
|
1171
|
-
]
|
|
1172
|
-
}
|
|
1173
|
-
},
|
|
1174
|
-
"refresh_interval": null
|
|
1175
|
-
},
|
|
1176
|
-
{
|
|
1177
|
-
"user": null,
|
|
1178
|
-
"role": null,
|
|
1179
|
-
"bookmark": null,
|
|
1180
|
-
"collection": "directus_files",
|
|
1181
|
-
"search": null,
|
|
1182
|
-
"layout": "cards",
|
|
1183
|
-
"icon": "bookmark_border",
|
|
1184
|
-
"color": null,
|
|
1185
|
-
"filter": null,
|
|
1186
|
-
"layout_options": {
|
|
1187
|
-
"cards": {
|
|
1188
|
-
"icon": "insert_drive_file",
|
|
1189
|
-
"title": "{{ title }}",
|
|
1190
|
-
"subtitle": "{{ type }} • {{ filesize }}",
|
|
1191
|
-
"size": 4,
|
|
1192
|
-
"imageFit": "crop"
|
|
1193
|
-
}
|
|
1194
|
-
},
|
|
1195
|
-
"layout_query": {
|
|
1196
|
-
"cards": {
|
|
1197
|
-
"sort": [
|
|
1198
|
-
"-uploaded_on"
|
|
1199
|
-
],
|
|
1200
|
-
"page": 1
|
|
1201
|
-
}
|
|
1202
|
-
},
|
|
1203
|
-
"refresh_interval": null
|
|
1204
|
-
},
|
|
1205
|
-
{
|
|
1206
|
-
"user": null,
|
|
1207
|
-
"role": null,
|
|
1208
|
-
"bookmark": null,
|
|
1209
|
-
"collection": "posts",
|
|
1210
|
-
"search": null,
|
|
1211
|
-
"layout": null,
|
|
1212
|
-
"icon": "bookmark_border",
|
|
1213
|
-
"color": null,
|
|
1214
|
-
"filter": null,
|
|
1215
|
-
"layout_options": {
|
|
1216
|
-
"tabular": {
|
|
1217
|
-
"widths": {
|
|
1218
|
-
"status": 100.4296875,
|
|
1219
|
-
"image": 55.890625,
|
|
1220
|
-
"title": 375.66015625,
|
|
1221
|
-
"seo": 337.87109375
|
|
1222
|
-
}
|
|
1223
|
-
}
|
|
1224
|
-
},
|
|
1225
|
-
"layout_query": {
|
|
1226
|
-
"tabular": {
|
|
1227
|
-
"page": 1,
|
|
1228
|
-
"fields": [
|
|
1229
|
-
"status",
|
|
1230
|
-
"image",
|
|
1231
|
-
"title",
|
|
1232
|
-
"date_published",
|
|
1233
|
-
"seo"
|
|
1234
|
-
]
|
|
1235
|
-
}
|
|
1236
|
-
},
|
|
1237
|
-
"refresh_interval": null
|
|
1238
|
-
},
|
|
1239
|
-
{
|
|
1240
|
-
"user": null,
|
|
1241
|
-
"role": null,
|
|
1242
|
-
"bookmark": null,
|
|
1243
|
-
"collection": "block_hero",
|
|
1244
|
-
"search": null,
|
|
1245
|
-
"layout": null,
|
|
1246
|
-
"icon": "bookmark",
|
|
1247
|
-
"color": null,
|
|
1248
|
-
"filter": null,
|
|
1249
|
-
"layout_options": null,
|
|
1250
|
-
"layout_query": {
|
|
1251
|
-
"tabular": {
|
|
1252
|
-
"page": 1
|
|
1253
|
-
}
|
|
1254
|
-
},
|
|
1255
|
-
"refresh_interval": null
|
|
1256
|
-
},
|
|
1257
|
-
{
|
|
1258
|
-
"user": null,
|
|
1259
|
-
"role": null,
|
|
1260
|
-
"bookmark": null,
|
|
1261
|
-
"collection": "posts",
|
|
1262
|
-
"search": null,
|
|
1263
|
-
"layout": null,
|
|
1264
|
-
"icon": "bookmark_border",
|
|
1265
|
-
"color": null,
|
|
1266
|
-
"filter": null,
|
|
1267
|
-
"layout_options": {
|
|
1268
|
-
"tabular": {
|
|
1269
|
-
"widths": {
|
|
1270
|
-
"status": 100.4296875,
|
|
1271
|
-
"image": 55.890625,
|
|
1272
|
-
"title": 375.66015625
|
|
1273
|
-
}
|
|
1274
|
-
}
|
|
1275
|
-
},
|
|
1276
|
-
"layout_query": {
|
|
1277
|
-
"tabular": {
|
|
1278
|
-
"page": 1,
|
|
1279
|
-
"fields": [
|
|
1280
|
-
"status",
|
|
1281
|
-
"image",
|
|
1282
|
-
"title",
|
|
1283
|
-
"date_published"
|
|
1284
|
-
]
|
|
1285
|
-
}
|
|
1286
|
-
},
|
|
1287
|
-
"refresh_interval": null
|
|
1288
|
-
},
|
|
1289
|
-
{
|
|
1290
|
-
"user": null,
|
|
1291
|
-
"role": null,
|
|
1292
|
-
"bookmark": null,
|
|
1293
|
-
"collection": "block_testimonials",
|
|
1294
|
-
"search": null,
|
|
1295
|
-
"layout": null,
|
|
1296
|
-
"icon": "bookmark",
|
|
1297
|
-
"color": null,
|
|
1298
|
-
"filter": null,
|
|
1299
|
-
"layout_options": null,
|
|
1300
|
-
"layout_query": {
|
|
1301
|
-
"tabular": {
|
|
1302
|
-
"page": 1
|
|
1303
|
-
}
|
|
1304
|
-
},
|
|
1305
|
-
"refresh_interval": null
|
|
1306
|
-
},
|
|
1307
|
-
{
|
|
1308
|
-
"user": null,
|
|
1309
|
-
"role": null,
|
|
1310
|
-
"bookmark": null,
|
|
1311
|
-
"collection": "pages",
|
|
1312
|
-
"search": null,
|
|
1313
|
-
"layout": null,
|
|
1314
|
-
"icon": "bookmark_border",
|
|
1315
|
-
"color": null,
|
|
1316
|
-
"filter": {
|
|
1317
|
-
"_and": [
|
|
1318
|
-
{
|
|
1319
|
-
"status": {
|
|
1320
|
-
"_eq": "published"
|
|
1321
|
-
}
|
|
1322
|
-
}
|
|
1323
|
-
]
|
|
1324
|
-
},
|
|
1325
|
-
"layout_options": {
|
|
1326
|
-
"tabular": {
|
|
1327
|
-
"widths": {
|
|
1328
|
-
"status": 32,
|
|
1329
|
-
"title": 179.501708984375,
|
|
1330
|
-
"date_created": 214.70703125
|
|
1331
|
-
}
|
|
1332
|
-
}
|
|
1333
|
-
},
|
|
1334
|
-
"layout_query": {
|
|
1335
|
-
"tabular": {
|
|
1336
|
-
"page": 1,
|
|
1337
|
-
"fields": [
|
|
1338
|
-
"status",
|
|
1339
|
-
"title",
|
|
1340
|
-
"slug",
|
|
1341
|
-
"blocks",
|
|
1342
|
-
"date_created"
|
|
1343
|
-
],
|
|
1344
|
-
"sort": [
|
|
1345
|
-
"sort"
|
|
1346
|
-
],
|
|
1347
|
-
"limit": 25
|
|
1348
|
-
}
|
|
1349
|
-
},
|
|
1350
|
-
"refresh_interval": null
|
|
1351
|
-
},
|
|
1352
|
-
{
|
|
1353
|
-
"user": null,
|
|
1354
|
-
"role": null,
|
|
1355
|
-
"bookmark": null,
|
|
1356
|
-
"collection": "inbox",
|
|
1357
|
-
"search": null,
|
|
1358
|
-
"layout": null,
|
|
1359
|
-
"icon": "bookmark_border",
|
|
1360
|
-
"color": null,
|
|
1361
|
-
"filter": null,
|
|
1362
|
-
"layout_options": {
|
|
1363
|
-
"tabular": {
|
|
1364
|
-
"widths": {
|
|
1365
|
-
"status": 32,
|
|
1366
|
-
"data": 284.96807861328125
|
|
1367
|
-
}
|
|
1368
|
-
}
|
|
1369
|
-
},
|
|
1370
|
-
"layout_query": {
|
|
1371
|
-
"tabular": {
|
|
1372
|
-
"page": 1,
|
|
1373
|
-
"fields": [
|
|
1374
|
-
"status",
|
|
1375
|
-
"date_created",
|
|
1376
|
-
"form",
|
|
1377
|
-
"data"
|
|
1378
|
-
],
|
|
1379
|
-
"sort": [
|
|
1380
|
-
"-date_created"
|
|
1381
|
-
],
|
|
1382
|
-
"limit": 25
|
|
1383
|
-
}
|
|
1384
|
-
},
|
|
1385
|
-
"refresh_interval": null
|
|
1386
|
-
},
|
|
1387
|
-
{
|
|
1388
|
-
"user": null,
|
|
1389
|
-
"role": null,
|
|
1390
|
-
"bookmark": null,
|
|
1391
|
-
"collection": "directus_files",
|
|
1392
|
-
"search": null,
|
|
1393
|
-
"layout": "cards",
|
|
1394
|
-
"icon": "bookmark_border",
|
|
1395
|
-
"color": null,
|
|
1396
|
-
"filter": null,
|
|
1397
|
-
"layout_options": {
|
|
1398
|
-
"cards": {
|
|
1399
|
-
"icon": "insert_drive_file",
|
|
1400
|
-
"title": "{{ title }}",
|
|
1401
|
-
"subtitle": "{{ type }} • {{ filesize }}",
|
|
1402
|
-
"size": 4,
|
|
1403
|
-
"imageFit": "crop"
|
|
1404
|
-
}
|
|
1405
|
-
},
|
|
1406
|
-
"layout_query": {
|
|
1407
|
-
"cards": {
|
|
1408
|
-
"sort": [
|
|
1409
|
-
"-uploaded_on"
|
|
1410
|
-
],
|
|
1411
|
-
"page": 1,
|
|
1412
|
-
"limit": 25
|
|
1413
|
-
}
|
|
1414
|
-
},
|
|
1415
|
-
"refresh_interval": null
|
|
1416
|
-
},
|
|
1417
|
-
{
|
|
1418
|
-
"user": null,
|
|
1419
|
-
"role": null,
|
|
1420
|
-
"bookmark": null,
|
|
1421
|
-
"collection": "messages",
|
|
1422
|
-
"search": null,
|
|
1423
|
-
"layout": null,
|
|
1424
|
-
"icon": "bookmark",
|
|
1425
|
-
"color": null,
|
|
1426
|
-
"filter": null,
|
|
1427
|
-
"layout_options": null,
|
|
1428
|
-
"layout_query": {
|
|
1429
|
-
"tabular": {
|
|
1430
|
-
"page": 1,
|
|
1431
|
-
"limit": 25
|
|
1432
|
-
}
|
|
1433
|
-
},
|
|
1434
|
-
"refresh_interval": null
|
|
1435
|
-
},
|
|
1436
|
-
{
|
|
1437
|
-
"user": null,
|
|
1438
|
-
"role": null,
|
|
1439
|
-
"bookmark": null,
|
|
1440
|
-
"collection": "categories",
|
|
1441
|
-
"search": null,
|
|
1442
|
-
"layout": null,
|
|
1443
|
-
"icon": "bookmark_border",
|
|
1444
|
-
"color": null,
|
|
1445
|
-
"filter": null,
|
|
1446
|
-
"layout_options": {
|
|
1447
|
-
"tabular": {
|
|
1448
|
-
"widths": {
|
|
1449
|
-
"color": 39.171875
|
|
1450
|
-
}
|
|
1451
|
-
}
|
|
1452
|
-
},
|
|
1453
|
-
"layout_query": {
|
|
1454
|
-
"tabular": {
|
|
1455
|
-
"page": 1,
|
|
1456
|
-
"fields": [
|
|
1457
|
-
"color",
|
|
1458
|
-
"title",
|
|
1459
|
-
"slug"
|
|
1460
|
-
],
|
|
1461
|
-
"limit": 25
|
|
1462
|
-
}
|
|
1463
|
-
},
|
|
1464
|
-
"refresh_interval": null
|
|
1465
|
-
},
|
|
1466
|
-
{
|
|
1467
|
-
"user": null,
|
|
1468
|
-
"role": null,
|
|
1469
|
-
"bookmark": null,
|
|
1470
|
-
"collection": "categories",
|
|
1471
|
-
"search": null,
|
|
1472
|
-
"layout": null,
|
|
1473
|
-
"icon": "bookmark_border",
|
|
1474
|
-
"color": null,
|
|
1475
|
-
"filter": null,
|
|
1476
|
-
"layout_options": {
|
|
1477
|
-
"tabular": {
|
|
1478
|
-
"widths": {
|
|
1479
|
-
"color": 39.171875
|
|
1480
|
-
}
|
|
1481
|
-
}
|
|
1482
|
-
},
|
|
1483
|
-
"layout_query": {
|
|
1484
|
-
"tabular": {
|
|
1485
|
-
"page": 1,
|
|
1486
|
-
"fields": [
|
|
1487
|
-
"color",
|
|
1488
|
-
"title",
|
|
1489
|
-
"slug"
|
|
1490
|
-
],
|
|
1491
|
-
"limit": 25
|
|
1492
|
-
}
|
|
1493
|
-
},
|
|
1494
|
-
"refresh_interval": null
|
|
1495
|
-
},
|
|
1496
|
-
{
|
|
1497
|
-
"user": null,
|
|
1498
|
-
"role": null,
|
|
1499
|
-
"bookmark": null,
|
|
1500
|
-
"collection": "forms",
|
|
1501
|
-
"search": null,
|
|
1502
|
-
"layout": null,
|
|
1503
|
-
"icon": "bookmark_border",
|
|
1504
|
-
"color": null,
|
|
1505
|
-
"filter": null,
|
|
1506
|
-
"layout_options": {
|
|
1507
|
-
"tabular": {
|
|
1508
|
-
"widths": {
|
|
1509
|
-
"status": 32
|
|
1510
|
-
}
|
|
1511
|
-
}
|
|
1512
|
-
},
|
|
1513
|
-
"layout_query": {
|
|
1514
|
-
"tabular": {
|
|
1515
|
-
"page": 1,
|
|
1516
|
-
"fields": [
|
|
1517
|
-
"status",
|
|
1518
|
-
"title",
|
|
1519
|
-
"key",
|
|
1520
|
-
"schema"
|
|
1521
|
-
],
|
|
1522
|
-
"limit": 25
|
|
1523
|
-
}
|
|
1524
|
-
},
|
|
1525
|
-
"refresh_interval": null
|
|
1526
|
-
},
|
|
1527
|
-
{
|
|
1528
|
-
"user": null,
|
|
1529
|
-
"role": null,
|
|
1530
|
-
"bookmark": null,
|
|
1531
|
-
"collection": "redirects",
|
|
1532
|
-
"search": null,
|
|
1533
|
-
"layout": null,
|
|
1534
|
-
"icon": "bookmark_border",
|
|
1535
|
-
"color": null,
|
|
1536
|
-
"filter": null,
|
|
1537
|
-
"layout_options": {
|
|
1538
|
-
"tabular": {
|
|
1539
|
-
"widths": {
|
|
1540
|
-
"response_code": 156.15625
|
|
1541
|
-
}
|
|
1542
|
-
}
|
|
1543
|
-
},
|
|
1544
|
-
"layout_query": {
|
|
1545
|
-
"tabular": {
|
|
1546
|
-
"page": 1,
|
|
1547
|
-
"fields": [
|
|
1548
|
-
"response_code",
|
|
1549
|
-
"url_old",
|
|
1550
|
-
"url_new"
|
|
1551
|
-
],
|
|
1552
|
-
"limit": 25
|
|
1553
|
-
}
|
|
1554
|
-
},
|
|
1555
|
-
"refresh_interval": null
|
|
1556
|
-
},
|
|
1557
|
-
{
|
|
1558
|
-
"user": null,
|
|
1559
|
-
"role": null,
|
|
1560
|
-
"bookmark": null,
|
|
1561
|
-
"collection": "posts",
|
|
1562
|
-
"search": null,
|
|
1563
|
-
"layout": "tabular",
|
|
1564
|
-
"icon": "bookmark_border",
|
|
1565
|
-
"color": null,
|
|
1566
|
-
"filter": null,
|
|
1567
|
-
"layout_options": {
|
|
1568
|
-
"tabular": {
|
|
1569
|
-
"widths": {
|
|
1570
|
-
"status": 100.4296875,
|
|
1571
|
-
"image": 55.890625,
|
|
1572
|
-
"title": 375.66015625
|
|
1573
|
-
}
|
|
1574
|
-
},
|
|
1575
|
-
"cards": {
|
|
1576
|
-
"title": "{{title}}",
|
|
1577
|
-
"subtitle": "{{sort}}"
|
|
1578
|
-
}
|
|
1579
|
-
},
|
|
1580
|
-
"layout_query": {
|
|
1581
|
-
"tabular": {
|
|
1582
|
-
"page": 1,
|
|
1583
|
-
"fields": [
|
|
1584
|
-
"status",
|
|
1585
|
-
"image",
|
|
1586
|
-
"title",
|
|
1587
|
-
"date_published"
|
|
1588
|
-
],
|
|
1589
|
-
"limit": 25
|
|
1590
|
-
},
|
|
1591
|
-
"cards": {
|
|
1592
|
-
"limit": 25
|
|
1593
|
-
}
|
|
1594
|
-
},
|
|
1595
|
-
"refresh_interval": null
|
|
1596
|
-
},
|
|
1597
|
-
{
|
|
1598
|
-
"user": null,
|
|
1599
|
-
"role": null,
|
|
1600
|
-
"bookmark": null,
|
|
1601
|
-
"collection": "posts",
|
|
1602
|
-
"search": null,
|
|
1603
|
-
"layout": null,
|
|
1604
|
-
"icon": "bookmark_border",
|
|
1605
|
-
"color": null,
|
|
1606
|
-
"filter": null,
|
|
1607
|
-
"layout_options": {
|
|
1608
|
-
"tabular": {
|
|
1609
|
-
"widths": {
|
|
1610
|
-
"status": 100.4296875,
|
|
1611
|
-
"image": 55.890625,
|
|
1612
|
-
"title": 375.66015625
|
|
1613
|
-
}
|
|
1614
|
-
}
|
|
1615
|
-
},
|
|
1616
|
-
"layout_query": {
|
|
1617
|
-
"tabular": {
|
|
1618
|
-
"page": 1,
|
|
1619
|
-
"fields": [
|
|
1620
|
-
"status",
|
|
1621
|
-
"image",
|
|
1622
|
-
"title",
|
|
1623
|
-
"date_published"
|
|
1624
|
-
],
|
|
1625
|
-
"limit": 25
|
|
1626
|
-
}
|
|
1627
|
-
},
|
|
1628
|
-
"refresh_interval": null
|
|
1629
|
-
},
|
|
1630
|
-
{
|
|
1631
|
-
"user": null,
|
|
1632
|
-
"role": null,
|
|
1633
|
-
"bookmark": null,
|
|
1634
|
-
"collection": "conversations",
|
|
1635
|
-
"search": null,
|
|
1636
|
-
"layout": null,
|
|
1637
|
-
"icon": "bookmark",
|
|
1638
|
-
"color": null,
|
|
1639
|
-
"filter": null,
|
|
1640
|
-
"layout_options": {
|
|
1641
|
-
"tabular": {
|
|
1642
|
-
"widths": {
|
|
1643
|
-
"status": 32
|
|
1644
|
-
}
|
|
1645
|
-
}
|
|
1646
|
-
},
|
|
1647
|
-
"layout_query": {
|
|
1648
|
-
"tabular": {
|
|
1649
|
-
"page": 1,
|
|
1650
|
-
"limit": 25,
|
|
1651
|
-
"fields": [
|
|
1652
|
-
"status",
|
|
1653
|
-
"title",
|
|
1654
|
-
"messages"
|
|
1655
|
-
]
|
|
1656
|
-
}
|
|
1657
|
-
},
|
|
1658
|
-
"refresh_interval": null
|
|
1659
|
-
},
|
|
1660
|
-
{
|
|
1661
|
-
"user": null,
|
|
1662
|
-
"role": null,
|
|
1663
|
-
"bookmark": null,
|
|
1664
|
-
"collection": "block_form",
|
|
1665
|
-
"search": null,
|
|
1666
|
-
"layout": null,
|
|
1667
|
-
"icon": "bookmark_border",
|
|
1668
|
-
"color": null,
|
|
1669
|
-
"filter": null,
|
|
1670
|
-
"layout_options": null,
|
|
1671
|
-
"layout_query": {
|
|
1672
|
-
"tabular": {
|
|
1673
|
-
"limit": 25
|
|
1674
|
-
}
|
|
1675
|
-
},
|
|
1676
|
-
"refresh_interval": null
|
|
1677
|
-
},
|
|
1678
|
-
{
|
|
1679
|
-
"user": null,
|
|
1680
|
-
"role": null,
|
|
1681
|
-
"bookmark": null,
|
|
1682
|
-
"collection": "navigation",
|
|
1683
|
-
"search": null,
|
|
1684
|
-
"layout": null,
|
|
1685
|
-
"icon": "bookmark_border",
|
|
1686
|
-
"color": null,
|
|
1687
|
-
"filter": null,
|
|
1688
|
-
"layout_options": {
|
|
1689
|
-
"tabular": {
|
|
1690
|
-
"widths": {
|
|
1691
|
-
"status": 37.29296875,
|
|
1692
|
-
"id": 115.59375
|
|
1693
|
-
}
|
|
1694
|
-
}
|
|
1695
|
-
},
|
|
1696
|
-
"layout_query": {
|
|
1697
|
-
"tabular": {
|
|
1698
|
-
"page": 1,
|
|
1699
|
-
"fields": [
|
|
1700
|
-
"status",
|
|
1701
|
-
"title",
|
|
1702
|
-
"id",
|
|
1703
|
-
"items"
|
|
1704
|
-
],
|
|
1705
|
-
"limit": 25
|
|
1706
|
-
}
|
|
1707
|
-
},
|
|
1708
|
-
"refresh_interval": null
|
|
1709
|
-
},
|
|
1710
|
-
{
|
|
1711
|
-
"user": null,
|
|
1712
|
-
"role": null,
|
|
1713
|
-
"bookmark": null,
|
|
1714
|
-
"collection": "navigation_items",
|
|
1715
|
-
"search": null,
|
|
1716
|
-
"layout": null,
|
|
1717
|
-
"icon": "bookmark_border",
|
|
1718
|
-
"color": null,
|
|
1719
|
-
"filter": null,
|
|
1720
|
-
"layout_options": {
|
|
1721
|
-
"tabular": {
|
|
1722
|
-
"widths": {
|
|
1723
|
-
"navigation": 131.640625,
|
|
1724
|
-
"has_children": 107.65625
|
|
1725
|
-
}
|
|
1726
|
-
}
|
|
1727
|
-
},
|
|
1728
|
-
"layout_query": {
|
|
1729
|
-
"tabular": {
|
|
1730
|
-
"page": 1,
|
|
1731
|
-
"fields": [
|
|
1732
|
-
"navigation",
|
|
1733
|
-
"title",
|
|
1734
|
-
"has_children",
|
|
1735
|
-
"label",
|
|
1736
|
-
"type",
|
|
1737
|
-
"parent"
|
|
1738
|
-
],
|
|
1739
|
-
"sort": [
|
|
1740
|
-
"-navigation"
|
|
1741
|
-
],
|
|
1742
|
-
"limit": 25
|
|
1743
|
-
}
|
|
1744
|
-
},
|
|
1745
|
-
"refresh_interval": null
|
|
1746
|
-
},
|
|
1747
|
-
{
|
|
1748
|
-
"user": null,
|
|
1749
|
-
"role": null,
|
|
1750
|
-
"bookmark": null,
|
|
1751
|
-
"collection": "seo",
|
|
1752
|
-
"search": null,
|
|
1753
|
-
"layout": null,
|
|
1754
|
-
"icon": "bookmark_border",
|
|
1755
|
-
"color": null,
|
|
1756
|
-
"filter": null,
|
|
1757
|
-
"layout_options": {
|
|
1758
|
-
"tabular": {
|
|
1759
|
-
"widths": {}
|
|
1760
|
-
}
|
|
1761
|
-
},
|
|
1762
|
-
"layout_query": {
|
|
1763
|
-
"tabular": {
|
|
1764
|
-
"page": 1,
|
|
1765
|
-
"fields": [
|
|
1766
|
-
"title",
|
|
1767
|
-
"meta_description",
|
|
1768
|
-
"no_follow",
|
|
1769
|
-
"no_index"
|
|
1770
|
-
],
|
|
1771
|
-
"limit": 25
|
|
1772
|
-
}
|
|
1773
|
-
},
|
|
1774
|
-
"refresh_interval": null
|
|
1775
|
-
},
|
|
1776
|
-
{
|
|
1777
|
-
"user": null,
|
|
1778
|
-
"role": null,
|
|
1779
|
-
"bookmark": null,
|
|
1780
|
-
"collection": "conversations",
|
|
1781
|
-
"search": null,
|
|
1782
|
-
"layout": null,
|
|
1783
|
-
"icon": "bookmark",
|
|
1784
|
-
"color": null,
|
|
1785
|
-
"filter": null,
|
|
1786
|
-
"layout_options": {
|
|
1787
|
-
"tabular": {
|
|
1788
|
-
"widths": {
|
|
1789
|
-
"status": 32
|
|
1790
|
-
}
|
|
1791
|
-
}
|
|
1792
|
-
},
|
|
1793
|
-
"layout_query": {
|
|
1794
|
-
"tabular": {
|
|
1795
|
-
"page": 1,
|
|
1796
|
-
"limit": 25,
|
|
1797
|
-
"fields": [
|
|
1798
|
-
"status",
|
|
1799
|
-
"title",
|
|
1800
|
-
"messages"
|
|
1801
|
-
]
|
|
1802
|
-
}
|
|
1803
|
-
},
|
|
1804
|
-
"refresh_interval": null
|
|
1805
|
-
},
|
|
1806
|
-
{
|
|
1807
|
-
"user": null,
|
|
1808
|
-
"role": null,
|
|
1809
|
-
"bookmark": null,
|
|
1810
|
-
"collection": "help_articles",
|
|
1811
|
-
"search": null,
|
|
1812
|
-
"layout": null,
|
|
1813
|
-
"icon": "bookmark",
|
|
1814
|
-
"color": null,
|
|
1815
|
-
"filter": null,
|
|
1816
|
-
"layout_options": null,
|
|
1817
|
-
"layout_query": {
|
|
1818
|
-
"tabular": {
|
|
1819
|
-
"limit": 25,
|
|
1820
|
-
"page": 1
|
|
1821
|
-
}
|
|
1822
|
-
},
|
|
1823
|
-
"refresh_interval": null
|
|
1824
|
-
},
|
|
1825
|
-
{
|
|
1826
|
-
"user": null,
|
|
1827
|
-
"role": null,
|
|
1828
|
-
"bookmark": null,
|
|
1829
|
-
"collection": "help_articles",
|
|
1830
|
-
"search": null,
|
|
1831
|
-
"layout": null,
|
|
1832
|
-
"icon": "bookmark",
|
|
1833
|
-
"color": null,
|
|
1834
|
-
"filter": null,
|
|
1835
|
-
"layout_options": {
|
|
1836
|
-
"tabular": {
|
|
1837
|
-
"widths": {
|
|
1838
|
-
"status": 32
|
|
1839
|
-
}
|
|
1840
|
-
}
|
|
1841
|
-
},
|
|
1842
|
-
"layout_query": {
|
|
1843
|
-
"tabular": {
|
|
1844
|
-
"limit": 25,
|
|
1845
|
-
"page": 1,
|
|
1846
|
-
"fields": [
|
|
1847
|
-
"status",
|
|
1848
|
-
"title",
|
|
1849
|
-
"help_collection"
|
|
1850
|
-
],
|
|
1851
|
-
"sort": [
|
|
1852
|
-
"sort"
|
|
1853
|
-
]
|
|
1854
|
-
}
|
|
1855
|
-
},
|
|
1856
|
-
"refresh_interval": null
|
|
1857
|
-
},
|
|
1858
|
-
{
|
|
1859
|
-
"user": null,
|
|
1860
|
-
"role": null,
|
|
1861
|
-
"bookmark": null,
|
|
1862
|
-
"collection": "block_hero",
|
|
1863
|
-
"search": null,
|
|
1864
|
-
"layout": null,
|
|
1865
|
-
"icon": "bookmark",
|
|
1866
|
-
"color": null,
|
|
1867
|
-
"filter": null,
|
|
1868
|
-
"layout_options": null,
|
|
1869
|
-
"layout_query": {
|
|
1870
|
-
"tabular": {
|
|
1871
|
-
"page": 1,
|
|
1872
|
-
"limit": 25
|
|
1873
|
-
}
|
|
1874
|
-
},
|
|
1875
|
-
"refresh_interval": null
|
|
1876
|
-
},
|
|
1877
|
-
{
|
|
1878
|
-
"user": null,
|
|
1879
|
-
"role": null,
|
|
1880
|
-
"bookmark": null,
|
|
1881
|
-
"collection": "inbox",
|
|
1882
|
-
"search": null,
|
|
1883
|
-
"layout": null,
|
|
1884
|
-
"icon": "bookmark_border",
|
|
1885
|
-
"color": null,
|
|
1886
|
-
"filter": null,
|
|
1887
|
-
"layout_options": {
|
|
1888
|
-
"tabular": {
|
|
1889
|
-
"widths": {
|
|
1890
|
-
"status": 32,
|
|
1891
|
-
"data": 284.96807861328125
|
|
1892
|
-
}
|
|
1893
|
-
}
|
|
1894
|
-
},
|
|
1895
|
-
"layout_query": {
|
|
1896
|
-
"tabular": {
|
|
1897
|
-
"page": 1,
|
|
1898
|
-
"fields": [
|
|
1899
|
-
"status",
|
|
1900
|
-
"date_created",
|
|
1901
|
-
"form",
|
|
1902
|
-
"data"
|
|
1903
|
-
],
|
|
1904
|
-
"sort": [
|
|
1905
|
-
"-date_created"
|
|
1906
|
-
],
|
|
1907
|
-
"limit": 25
|
|
1908
|
-
}
|
|
1909
|
-
},
|
|
1910
|
-
"refresh_interval": null
|
|
1911
|
-
},
|
|
1912
|
-
{
|
|
1913
|
-
"user": null,
|
|
1914
|
-
"role": null,
|
|
1915
|
-
"bookmark": null,
|
|
1916
|
-
"collection": "help_collections",
|
|
1917
|
-
"search": null,
|
|
1918
|
-
"layout": null,
|
|
1919
|
-
"icon": "bookmark",
|
|
1920
|
-
"color": null,
|
|
1921
|
-
"filter": null,
|
|
1922
|
-
"layout_options": {
|
|
1923
|
-
"tabular": {
|
|
1924
|
-
"widths": {
|
|
1925
|
-
"icon": 49.12109375
|
|
1926
|
-
}
|
|
1927
|
-
}
|
|
1928
|
-
},
|
|
1929
|
-
"layout_query": {
|
|
1930
|
-
"tabular": {
|
|
1931
|
-
"page": 1,
|
|
1932
|
-
"limit": 25,
|
|
1933
|
-
"fields": [
|
|
1934
|
-
"icon",
|
|
1935
|
-
"title",
|
|
1936
|
-
"description"
|
|
1937
|
-
]
|
|
1938
|
-
}
|
|
1939
|
-
},
|
|
1940
|
-
"refresh_interval": null
|
|
1941
|
-
},
|
|
1942
|
-
{
|
|
1943
|
-
"user": null,
|
|
1944
|
-
"role": null,
|
|
1945
|
-
"bookmark": null,
|
|
1946
|
-
"collection": "messages",
|
|
1947
|
-
"search": null,
|
|
1948
|
-
"layout": null,
|
|
1949
|
-
"icon": "bookmark",
|
|
1950
|
-
"color": null,
|
|
1951
|
-
"filter": null,
|
|
1952
|
-
"layout_options": null,
|
|
1953
|
-
"layout_query": {
|
|
1954
|
-
"tabular": {
|
|
1955
|
-
"page": 1,
|
|
1956
|
-
"limit": 25
|
|
1957
|
-
}
|
|
1958
|
-
},
|
|
1959
|
-
"refresh_interval": null
|
|
1960
|
-
},
|
|
1961
|
-
{
|
|
1962
|
-
"user": null,
|
|
1963
|
-
"role": null,
|
|
1964
|
-
"bookmark": null,
|
|
1965
|
-
"collection": "help_feedback",
|
|
1966
|
-
"search": null,
|
|
1967
|
-
"layout": null,
|
|
1968
|
-
"icon": "bookmark",
|
|
1969
|
-
"color": null,
|
|
1970
|
-
"filter": null,
|
|
1971
|
-
"layout_options": null,
|
|
1972
|
-
"layout_query": {
|
|
1973
|
-
"tabular": {
|
|
1974
|
-
"page": 1,
|
|
1975
|
-
"limit": 25
|
|
1976
|
-
}
|
|
1977
|
-
},
|
|
1978
|
-
"refresh_interval": null
|
|
1979
|
-
},
|
|
1980
|
-
{
|
|
1981
|
-
"user": null,
|
|
1982
|
-
"role": null,
|
|
1983
|
-
"bookmark": null,
|
|
1984
|
-
"collection": "team",
|
|
1985
|
-
"search": null,
|
|
1986
|
-
"layout": null,
|
|
1987
|
-
"icon": "bookmark_border",
|
|
1988
|
-
"color": null,
|
|
1989
|
-
"filter": null,
|
|
1990
|
-
"layout_options": {
|
|
1991
|
-
"tabular": {
|
|
1992
|
-
"widths": {
|
|
1993
|
-
"status": 32,
|
|
1994
|
-
"image": 61.731781005859375,
|
|
1995
|
-
"job_title": 265.55078125
|
|
1996
|
-
}
|
|
1997
|
-
}
|
|
1998
|
-
},
|
|
1999
|
-
"layout_query": {
|
|
2000
|
-
"tabular": {
|
|
2001
|
-
"page": 1,
|
|
2002
|
-
"fields": [
|
|
2003
|
-
"status",
|
|
2004
|
-
"image",
|
|
2005
|
-
"name",
|
|
2006
|
-
"job_title"
|
|
2007
|
-
],
|
|
2008
|
-
"limit": 25
|
|
2009
|
-
}
|
|
2010
|
-
},
|
|
2011
|
-
"refresh_interval": null
|
|
2012
|
-
},
|
|
2013
|
-
{
|
|
2014
|
-
"user": null,
|
|
2015
|
-
"role": null,
|
|
2016
|
-
"bookmark": null,
|
|
2017
|
-
"collection": "testimonials",
|
|
2018
|
-
"search": null,
|
|
2019
|
-
"layout": null,
|
|
2020
|
-
"icon": "bookmark_border",
|
|
2021
|
-
"color": null,
|
|
2022
|
-
"filter": null,
|
|
2023
|
-
"layout_options": {
|
|
2024
|
-
"tabular": {
|
|
2025
|
-
"widths": {
|
|
2026
|
-
"status": 32,
|
|
2027
|
-
"image": 51.5,
|
|
2028
|
-
"title": 161.125,
|
|
2029
|
-
"company": 125.6171875,
|
|
2030
|
-
"subtitle": 117.40625
|
|
2031
|
-
}
|
|
2032
|
-
}
|
|
2033
|
-
},
|
|
2034
|
-
"layout_query": {
|
|
2035
|
-
"tabular": {
|
|
2036
|
-
"page": 1,
|
|
2037
|
-
"fields": [
|
|
2038
|
-
"status",
|
|
2039
|
-
"image",
|
|
2040
|
-
"title",
|
|
2041
|
-
"company",
|
|
2042
|
-
"subtitle"
|
|
2043
|
-
],
|
|
2044
|
-
"limit": 25
|
|
2045
|
-
}
|
|
2046
|
-
},
|
|
2047
|
-
"refresh_interval": null
|
|
2048
|
-
},
|
|
2049
|
-
{
|
|
2050
|
-
"user": null,
|
|
2051
|
-
"role": null,
|
|
2052
|
-
"bookmark": null,
|
|
2053
|
-
"collection": "pages",
|
|
2054
|
-
"search": null,
|
|
2055
|
-
"layout": null,
|
|
2056
|
-
"icon": "bookmark_border",
|
|
2057
|
-
"color": null,
|
|
2058
|
-
"filter": {
|
|
2059
|
-
"_and": [
|
|
2060
|
-
{
|
|
2061
|
-
"status": {
|
|
2062
|
-
"_eq": "published"
|
|
2063
|
-
}
|
|
2064
|
-
}
|
|
2065
|
-
]
|
|
2066
|
-
},
|
|
2067
|
-
"layout_options": {
|
|
2068
|
-
"tabular": {
|
|
2069
|
-
"widths": {
|
|
2070
|
-
"status": 32,
|
|
2071
|
-
"title": 179.501708984375,
|
|
2072
|
-
"date_created": 214.70703125
|
|
2073
|
-
}
|
|
2074
|
-
}
|
|
2075
|
-
},
|
|
2076
|
-
"layout_query": {
|
|
2077
|
-
"tabular": {
|
|
2078
|
-
"page": 1,
|
|
2079
|
-
"fields": [
|
|
2080
|
-
"status",
|
|
2081
|
-
"title",
|
|
2082
|
-
"slug",
|
|
2083
|
-
"blocks",
|
|
2084
|
-
"date_created"
|
|
2085
|
-
],
|
|
2086
|
-
"sort": [
|
|
2087
|
-
"-title"
|
|
2088
|
-
],
|
|
2089
|
-
"limit": 25
|
|
2090
|
-
}
|
|
2091
|
-
},
|
|
2092
|
-
"refresh_interval": null
|
|
2093
|
-
},
|
|
2094
|
-
{
|
|
2095
|
-
"user": null,
|
|
2096
|
-
"role": null,
|
|
2097
|
-
"bookmark": null,
|
|
2098
|
-
"collection": "block_video",
|
|
2099
|
-
"search": null,
|
|
2100
|
-
"layout": null,
|
|
2101
|
-
"icon": "bookmark",
|
|
2102
|
-
"color": null,
|
|
2103
|
-
"filter": null,
|
|
2104
|
-
"layout_options": null,
|
|
2105
|
-
"layout_query": {
|
|
2106
|
-
"tabular": {
|
|
2107
|
-
"limit": 25
|
|
2108
|
-
}
|
|
2109
|
-
},
|
|
2110
|
-
"refresh_interval": null
|
|
2111
|
-
},
|
|
2112
|
-
{
|
|
2113
|
-
"user": null,
|
|
2114
|
-
"role": null,
|
|
2115
|
-
"bookmark": null,
|
|
2116
|
-
"collection": "directus_presets",
|
|
2117
|
-
"search": null,
|
|
2118
|
-
"layout": null,
|
|
2119
|
-
"icon": "bookmark_border",
|
|
2120
|
-
"color": null,
|
|
2121
|
-
"filter": null,
|
|
2122
|
-
"layout_options": null,
|
|
2123
|
-
"layout_query": {
|
|
2124
|
-
"tabular": {
|
|
2125
|
-
"page": 1,
|
|
2126
|
-
"limit": 25
|
|
2127
|
-
}
|
|
2128
|
-
},
|
|
2129
|
-
"refresh_interval": null
|
|
2130
|
-
},
|
|
2131
|
-
{
|
|
2132
|
-
"user": null,
|
|
2133
|
-
"role": null,
|
|
2134
|
-
"bookmark": null,
|
|
2135
|
-
"collection": "block_testimonials",
|
|
2136
|
-
"search": null,
|
|
2137
|
-
"layout": null,
|
|
2138
|
-
"icon": "bookmark",
|
|
2139
|
-
"color": null,
|
|
2140
|
-
"filter": null,
|
|
2141
|
-
"layout_options": null,
|
|
2142
|
-
"layout_query": {
|
|
2143
|
-
"tabular": {
|
|
2144
|
-
"page": 1
|
|
2145
|
-
}
|
|
2146
|
-
},
|
|
2147
|
-
"refresh_interval": null
|
|
2148
|
-
},
|
|
2149
|
-
{
|
|
2150
|
-
"user": null,
|
|
2151
|
-
"role": null,
|
|
2152
|
-
"bookmark": "1. Open Invoices",
|
|
2153
|
-
"collection": "os_invoices",
|
|
2154
|
-
"search": null,
|
|
2155
|
-
"layout": null,
|
|
2156
|
-
"icon": "warning",
|
|
2157
|
-
"color": "#D064AC",
|
|
2158
|
-
"filter": {
|
|
2159
|
-
"_and": [
|
|
2160
|
-
{
|
|
2161
|
-
"amount_due": {
|
|
2162
|
-
"_gt": "0"
|
|
2163
|
-
}
|
|
2164
|
-
}
|
|
2165
|
-
]
|
|
2166
|
-
},
|
|
2167
|
-
"layout_options": {
|
|
2168
|
-
"tabular": {
|
|
2169
|
-
"widths": {
|
|
2170
|
-
"invoice_number": 66.73175048828125,
|
|
2171
|
-
"status": 87.59112548828125,
|
|
2172
|
-
"organization": 156.05029296875,
|
|
2173
|
-
"due_date": 179.90625,
|
|
2174
|
-
"amount_due": 139.6353759765625,
|
|
2175
|
-
"project": 311.9964599609375
|
|
2176
|
-
}
|
|
2177
|
-
}
|
|
2178
|
-
},
|
|
2179
|
-
"layout_query": {
|
|
2180
|
-
"tabular": {
|
|
2181
|
-
"page": 1,
|
|
2182
|
-
"limit": 25,
|
|
2183
|
-
"fields": [
|
|
2184
|
-
"invoice_number",
|
|
2185
|
-
"status",
|
|
2186
|
-
"organization",
|
|
2187
|
-
"due_date",
|
|
2188
|
-
"amount_due",
|
|
2189
|
-
"contact",
|
|
2190
|
-
"project",
|
|
2191
|
-
"issue_date"
|
|
2192
|
-
]
|
|
2193
|
-
}
|
|
2194
|
-
},
|
|
2195
|
-
"refresh_interval": null
|
|
2196
|
-
},
|
|
2197
|
-
{
|
|
2198
|
-
"user": null,
|
|
2199
|
-
"role": null,
|
|
2200
|
-
"bookmark": "2. Kanban",
|
|
2201
|
-
"collection": "os_tasks",
|
|
2202
|
-
"search": null,
|
|
2203
|
-
"layout": "kanban",
|
|
2204
|
-
"icon": "view_kanban",
|
|
2205
|
-
"color": "#D064AC",
|
|
2206
|
-
"filter": null,
|
|
2207
|
-
"layout_options": {
|
|
2208
|
-
"tabular": {
|
|
2209
|
-
"widths": {
|
|
2210
|
-
"status": 42.481231689453125,
|
|
2211
|
-
"name": 299.28125,
|
|
2212
|
-
"due_date": 144.1102294921875,
|
|
2213
|
-
"project.name": 218.5718994140625
|
|
2214
|
-
}
|
|
2215
|
-
},
|
|
2216
|
-
"calendar": {
|
|
2217
|
-
"viewInfo": {
|
|
2218
|
-
"type": "timeGridWeek",
|
|
2219
|
-
"startDateStr": "2023-09-17T00:00:00-04:00"
|
|
2220
|
-
},
|
|
2221
|
-
"startDateField": "due_date",
|
|
2222
|
-
"template": "{{name}} <{{project.name}}>"
|
|
2223
|
-
},
|
|
2224
|
-
"kanban": {
|
|
2225
|
-
"groupField": "status",
|
|
2226
|
-
"groupTitle": null,
|
|
2227
|
-
"titleField": "name",
|
|
2228
|
-
"userField": "assigned_to",
|
|
2229
|
-
"textField": null,
|
|
2230
|
-
"crop": true,
|
|
2231
|
-
"showUngrouped": false
|
|
2232
|
-
}
|
|
2233
|
-
},
|
|
2234
|
-
"layout_query": {
|
|
2235
|
-
"tabular": {
|
|
2236
|
-
"limit": 25,
|
|
2237
|
-
"page": 1,
|
|
2238
|
-
"fields": [
|
|
2239
|
-
"status",
|
|
2240
|
-
"name",
|
|
2241
|
-
"due_date",
|
|
2242
|
-
"assigned_to",
|
|
2243
|
-
"type",
|
|
2244
|
-
"project.name"
|
|
2245
|
-
]
|
|
2246
|
-
},
|
|
2247
|
-
"kanban": {
|
|
2248
|
-
"page": 1
|
|
2249
|
-
}
|
|
2250
|
-
},
|
|
2251
|
-
"refresh_interval": null
|
|
2252
|
-
},
|
|
2253
|
-
{
|
|
2254
|
-
"user": null,
|
|
2255
|
-
"role": null,
|
|
2256
|
-
"bookmark": "3. Calendar",
|
|
2257
|
-
"collection": "os_tasks",
|
|
2258
|
-
"search": null,
|
|
2259
|
-
"layout": "calendar",
|
|
2260
|
-
"icon": "calendar_month",
|
|
2261
|
-
"color": "#D064AC",
|
|
2262
|
-
"filter": null,
|
|
2263
|
-
"layout_options": {
|
|
2264
|
-
"tabular": {
|
|
2265
|
-
"widths": {
|
|
2266
|
-
"status": 42.481231689453125,
|
|
2267
|
-
"name": 299.28125,
|
|
2268
|
-
"due_date": 144.1102294921875,
|
|
2269
|
-
"project.name": 218.5718994140625
|
|
2270
|
-
}
|
|
2271
|
-
},
|
|
2272
|
-
"calendar": {
|
|
2273
|
-
"viewInfo": {
|
|
2274
|
-
"type": "listWeek",
|
|
2275
|
-
"startDateStr": "2023-09-17T00:00:00-04:00"
|
|
2276
|
-
},
|
|
2277
|
-
"startDateField": "due_date",
|
|
2278
|
-
"template": "{{name}} <{{project.name}} for {{project.organization.name}}>"
|
|
2279
|
-
},
|
|
2280
|
-
"kanban": {
|
|
2281
|
-
"groupField": "status",
|
|
2282
|
-
"groupTitle": null,
|
|
2283
|
-
"titleField": "name",
|
|
2284
|
-
"userField": "assigned_to",
|
|
2285
|
-
"textField": "description",
|
|
2286
|
-
"crop": true,
|
|
2287
|
-
"showUngrouped": false
|
|
2288
|
-
}
|
|
2289
|
-
},
|
|
2290
|
-
"layout_query": {
|
|
2291
|
-
"tabular": {
|
|
2292
|
-
"limit": 25,
|
|
2293
|
-
"page": 1,
|
|
2294
|
-
"fields": [
|
|
2295
|
-
"status",
|
|
2296
|
-
"name",
|
|
2297
|
-
"due_date",
|
|
2298
|
-
"assigned_to",
|
|
2299
|
-
"type",
|
|
2300
|
-
"project.name"
|
|
2301
|
-
]
|
|
2302
|
-
},
|
|
2303
|
-
"kanban": {
|
|
2304
|
-
"page": 1
|
|
2305
|
-
}
|
|
2306
|
-
},
|
|
2307
|
-
"refresh_interval": null
|
|
2308
|
-
},
|
|
2309
|
-
{
|
|
2310
|
-
"user": null,
|
|
2311
|
-
"role": null,
|
|
2312
|
-
"bookmark": "1. My Organizations",
|
|
2313
|
-
"collection": "organizations",
|
|
2314
|
-
"search": null,
|
|
2315
|
-
"layout": "tabular",
|
|
2316
|
-
"icon": "business_center",
|
|
2317
|
-
"color": "#6644FF",
|
|
2318
|
-
"filter": {
|
|
2319
|
-
"_and": [
|
|
2320
|
-
{
|
|
2321
|
-
"owner": {
|
|
2322
|
-
"_eq": "$CURRENT_USER"
|
|
2323
|
-
}
|
|
2324
|
-
}
|
|
2325
|
-
]
|
|
2326
|
-
},
|
|
2327
|
-
"layout_options": {
|
|
2328
|
-
"map": {
|
|
2329
|
-
"cameraOptions": {
|
|
2330
|
-
"center": {
|
|
2331
|
-
"lng": 0,
|
|
2332
|
-
"lat": 2.842170943040401e-14
|
|
2333
|
-
},
|
|
2334
|
-
"zoom": 1.4093909156797106,
|
|
2335
|
-
"bearing": 0,
|
|
2336
|
-
"pitch": 0,
|
|
2337
|
-
"bbox": [
|
|
2338
|
-
-266.1617684801636,
|
|
2339
|
-
-85.05112899999995,
|
|
2340
|
-
266.16176848015976,
|
|
2341
|
-
85.05112899999995
|
|
2342
|
-
]
|
|
2343
|
-
}
|
|
2344
|
-
},
|
|
2345
|
-
"tabular": {
|
|
2346
|
-
"widths": {
|
|
2347
|
-
"logo.$thumbnail": 54.548614501953125,
|
|
2348
|
-
"name": 181.76129150390625,
|
|
2349
|
-
"addresses": 132.1065673828125,
|
|
2350
|
-
"contacts": 113.73077392578125,
|
|
2351
|
-
"owner": 187.34808349609375,
|
|
2352
|
-
"organization_notes": 188.0078125
|
|
2353
|
-
}
|
|
2354
|
-
}
|
|
2355
|
-
},
|
|
2356
|
-
"layout_query": {
|
|
2357
|
-
"tabular": {
|
|
2358
|
-
"limit": 25,
|
|
2359
|
-
"page": 1,
|
|
2360
|
-
"fields": [
|
|
2361
|
-
"logo.$thumbnail",
|
|
2362
|
-
"name",
|
|
2363
|
-
"addresses",
|
|
2364
|
-
"contacts",
|
|
2365
|
-
"owner",
|
|
2366
|
-
"website",
|
|
2367
|
-
"organization_notes"
|
|
2368
|
-
]
|
|
2369
|
-
},
|
|
2370
|
-
"map": {
|
|
2371
|
-
"limit": 1000
|
|
2372
|
-
}
|
|
2373
|
-
},
|
|
2374
|
-
"refresh_interval": null
|
|
2375
|
-
},
|
|
2376
|
-
{
|
|
2377
|
-
"user": null,
|
|
2378
|
-
"role": null,
|
|
2379
|
-
"bookmark": "1. My Contacts",
|
|
2380
|
-
"collection": "contacts",
|
|
2381
|
-
"search": null,
|
|
2382
|
-
"layout": "tabular",
|
|
2383
|
-
"icon": "perm_contact_calendar",
|
|
2384
|
-
"color": "#6644FF",
|
|
2385
|
-
"filter": {
|
|
2386
|
-
"_and": [
|
|
2387
|
-
{
|
|
2388
|
-
"organizations": {
|
|
2389
|
-
"organizations_id": {
|
|
2390
|
-
"owner": {
|
|
2391
|
-
"_eq": "$CURRENT_USER"
|
|
2392
|
-
}
|
|
2393
|
-
}
|
|
2394
|
-
}
|
|
2395
|
-
}
|
|
2396
|
-
]
|
|
2397
|
-
},
|
|
2398
|
-
"layout_options": {
|
|
2399
|
-
"tabular": {
|
|
2400
|
-
"widths": {
|
|
2401
|
-
"first_name": 125.3125,
|
|
2402
|
-
"email": 252.24786376953125
|
|
2403
|
-
}
|
|
2404
|
-
}
|
|
2405
|
-
},
|
|
2406
|
-
"layout_query": {
|
|
2407
|
-
"tabular": {
|
|
2408
|
-
"limit": 25,
|
|
2409
|
-
"page": 1,
|
|
2410
|
-
"fields": [
|
|
2411
|
-
"first_name",
|
|
2412
|
-
"last_name",
|
|
2413
|
-
"email",
|
|
2414
|
-
"phone",
|
|
2415
|
-
"organizations"
|
|
2416
|
-
]
|
|
2417
|
-
}
|
|
2418
|
-
},
|
|
2419
|
-
"refresh_interval": null
|
|
2420
|
-
}
|
|
2421
|
-
]
|