@mframework/layer-shared 0.0.1
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 +2 -0
- package/dist/api/global-search.d.ts +8 -0
- package/dist/api/global-search.js +1 -0
- package/dist/app/components/Gallery/__tests__/Gallery.spec.d.ts +1 -0
- package/dist/app/components/Gallery/__tests__/Gallery.spec.js +12 -0
- package/dist/app/components/Heading/__tests__/Heading.spec.d.ts +1 -0
- package/dist/app/components/Heading/__tests__/Heading.spec.js +12 -0
- package/dist/app/components/Heading/types.d.ts +5 -0
- package/dist/app/components/Heading/types.js +1 -0
- package/dist/app/components/ui/AccordionItem/__tests__/AccordionItem.spec.d.ts +1 -0
- package/dist/app/components/ui/AccordionItem/__tests__/AccordionItem.spec.js +12 -0
- package/dist/app/components/ui/AccordionItem/types.d.ts +5 -0
- package/dist/app/components/ui/AccordionItem/types.js +1 -0
- package/dist/app/components/ui/Alert/types.d.ts +5 -0
- package/dist/app/components/ui/Alert/types.js +1 -0
- package/dist/app/components/ui/Breadcrumbs/__tests__/Breadcrumbs.spec.d.ts +1 -0
- package/dist/app/components/ui/Breadcrumbs/__tests__/Breadcrumbs.spec.js +12 -0
- package/dist/app/components/ui/Breadcrumbs/types.d.ts +7 -0
- package/dist/app/components/ui/Breadcrumbs/types.js +1 -0
- package/dist/app/components/ui/CartProductCard/types.d.ts +17 -0
- package/dist/app/components/ui/CartProductCard/types.js +1 -0
- package/dist/app/components/ui/CategoryCard/types.d.ts +8 -0
- package/dist/app/components/ui/CategoryCard/types.js +1 -0
- package/dist/app/components/ui/Display/types.d.ts +12 -0
- package/dist/app/components/ui/Display/types.js +1 -0
- package/dist/app/components/ui/Divider/__tests__/Divider.spec.d.ts +1 -0
- package/dist/app/components/ui/Divider/__tests__/Divider.spec.js +8 -0
- package/dist/app/components/ui/Form/__tests__/FormHelperText.spec.d.ts +1 -0
- package/dist/app/components/ui/Form/__tests__/FormHelperText.spec.js +8 -0
- package/dist/app/components/ui/Form/__tests__/FormLabel.spec.d.ts +1 -0
- package/dist/app/components/ui/Form/__tests__/FormLabel.spec.js +8 -0
- package/dist/app/components/ui/Hero/types.d.ts +10 -0
- package/dist/app/components/ui/Hero/types.js +1 -0
- package/dist/app/components/ui/Modal/types.d.ts +7 -0
- package/dist/app/components/ui/Modal/types.js +1 -0
- package/dist/app/components/ui/Overlay/__tests__/Overlay.spec.d.ts +1 -0
- package/dist/app/components/ui/Overlay/__tests__/Overlay.spec.js +12 -0
- package/dist/app/components/ui/Overlay/types.d.ts +3 -0
- package/dist/app/components/ui/Overlay/types.js +1 -0
- package/dist/app/components/ui/Pagination/__tests__/Pagination.spec.d.ts +1 -0
- package/dist/app/components/ui/Pagination/__tests__/Pagination.spec.js +15 -0
- package/dist/app/components/ui/Pagination/types.d.ts +6 -0
- package/dist/app/components/ui/Pagination/types.js +1 -0
- package/dist/app/components/ui/ProductCard/__tests__/ProductCard.spec.d.ts +1 -0
- package/dist/app/components/ui/ProductCard/__tests__/ProductCard.spec.js +14 -0
- package/dist/app/components/ui/ProductCard/types.d.ts +12 -0
- package/dist/app/components/ui/ProductCard/types.js +1 -0
- package/dist/app/components/ui/ProductCardHorizontal/__tests__/ProductCardHorizontal.spec.d.ts +1 -0
- package/dist/app/components/ui/ProductCardHorizontal/__tests__/ProductCardHorizontal.spec.js +34 -0
- package/dist/app/components/ui/ProductCardHorizontal/types.d.ts +4 -0
- package/dist/app/components/ui/ProductCardHorizontal/types.js +1 -0
- package/dist/app/components/ui/PurchaseCard/__tests__/PurchaseCard.spec.d.ts +1 -0
- package/dist/app/components/ui/PurchaseCard/__tests__/PurchaseCard.spec.js +12 -0
- package/dist/app/components/ui/PurchaseCard/types.d.ts +4 -0
- package/dist/app/components/ui/PurchaseCard/types.js +1 -0
- package/dist/app/components/ui/QuantitySelector/__tests__/QuantitySelector.spec.d.ts +1 -0
- package/dist/app/components/ui/QuantitySelector/__tests__/QuantitySelector.spec.js +13 -0
- package/dist/app/components/ui/QuantitySelector/types.d.ts +5 -0
- package/dist/app/components/ui/QuantitySelector/types.js +1 -0
- package/dist/app/components/ui/Review/__tests__/Review.spec.d.ts +1 -0
- package/dist/app/components/ui/Review/__tests__/Review.spec.js +13 -0
- package/dist/app/components/ui/Review/types.d.ts +4 -0
- package/dist/app/components/ui/Review/types.js +1 -0
- package/dist/app/components/ui/Tag/__tests__/Tag.spec.d.ts +1 -0
- package/dist/app/components/ui/Tag/__tests__/Tag.spec.js +8 -0
- package/dist/app/components/ui/Tag/types.d.ts +14 -0
- package/dist/app/components/ui/Tag/types.js +11 -0
- package/dist/app/composables/globals/useAdminTable.d.ts +3 -0
- package/dist/app/composables/globals/useAdminTable.js +9 -0
- package/dist/app/composables/globals/useCustomFetch.d.ts +2 -0
- package/dist/app/composables/globals/useCustomFetch.js +8 -0
- package/dist/app/composables/globals/useDirectusField.d.ts +10 -0
- package/dist/app/composables/globals/useDirectusField.js +119 -0
- package/dist/app/composables/globals/useDirectusForm.d.ts +10 -0
- package/dist/app/composables/globals/useDirectusForm.js +66 -0
- package/dist/app/composables/globals/useFileManager.d.ts +14 -0
- package/dist/app/composables/globals/useFileManager.js +62 -0
- package/dist/app/composables/globals/useLivePreview.d.ts +1 -0
- package/dist/app/composables/globals/useLivePreview.js +16 -0
- package/dist/app/composables/globals/useLoading.d.ts +6 -0
- package/dist/app/composables/globals/useLoading.js +19 -0
- package/dist/app/composables/globals/useNotifications.d.ts +35 -0
- package/dist/app/composables/globals/useNotifications.js +133 -0
- package/dist/app/composables/globals/useRichText.d.ts +1 -0
- package/dist/app/composables/globals/useRichText.js +32 -0
- package/dist/app/composables/globals/useServerRootMixin.d.ts +3 -0
- package/dist/app/composables/globals/useServerRootMixin.js +15 -0
- package/dist/app/composables/globals/useVisualEditing.d.ts +17 -0
- package/dist/app/composables/globals/useVisualEditing.js +27 -0
- package/dist/app/composables/mappers/createMapper.d.ts +2 -0
- package/dist/app/composables/mappers/createMapper.js +6 -0
- package/dist/app/composables/mappers/errors.d.ts +6 -0
- package/dist/app/composables/mappers/errors.js +12 -0
- package/dist/app/composables/mappers/index.d.ts +6 -0
- package/dist/app/composables/mappers/index.js +7 -0
- package/dist/app/composables/mappers/registry.d.ts +5 -0
- package/dist/app/composables/mappers/registry.js +18 -0
- package/dist/app/composables/mappers/testHarness.d.ts +13 -0
- package/dist/app/composables/mappers/testHarness.js +98 -0
- package/dist/app/composables/mappers/types.d.ts +5 -0
- package/dist/app/composables/mappers/types.js +1 -0
- package/dist/app/composables/mappers/zodMapper.d.ts +9 -0
- package/dist/app/composables/mappers/zodMapper.js +17 -0
- package/dist/app/composables/media/useFile.d.ts +2 -0
- package/dist/app/composables/media/useFile.js +4 -0
- package/dist/app/composables/media/useMediaCenter.d.ts +29 -0
- package/dist/app/composables/media/useMediaCenter.js +321 -0
- package/dist/app/composables/media/useVideojs.d.ts +11 -0
- package/dist/app/composables/media/useVideojs.js +42 -0
- package/dist/app/composables/registry.d.ts +3 -0
- package/dist/app/composables/registry.js +10 -0
- package/dist/app/composables/schema/commerce/attributes.d.ts +7 -0
- package/dist/app/composables/schema/commerce/attributes.js +1 -0
- package/dist/app/composables/schema/commerce/blocks.d.ts +6 -0
- package/dist/app/composables/schema/commerce/blocks.js +1 -0
- package/dist/app/composables/schema/commerce/bundleProduts.d.ts +10 -0
- package/dist/app/composables/schema/commerce/bundleProduts.js +1 -0
- package/dist/app/composables/schema/commerce/cart.d.ts +29 -0
- package/dist/app/composables/schema/commerce/cart.js +1 -0
- package/dist/app/composables/schema/commerce/category.d.ts +12 -0
- package/dist/app/composables/schema/commerce/category.js +1 -0
- package/dist/app/composables/schema/commerce/checkout.d.ts +9 -0
- package/dist/app/composables/schema/commerce/checkout.js +1 -0
- package/dist/app/composables/schema/commerce/company.d.ts +7 -0
- package/dist/app/composables/schema/commerce/company.js +1 -0
- package/dist/app/composables/schema/commerce/configurableProducts.d.ts +12 -0
- package/dist/app/composables/schema/commerce/configurableProducts.js +1 -0
- package/dist/app/composables/schema/commerce/coupons.d.ts +9 -0
- package/dist/app/composables/schema/commerce/coupons.js +1 -0
- package/dist/app/composables/schema/commerce/credit-memos.d.ts +48 -0
- package/dist/app/composables/schema/commerce/credit-memos.js +1 -0
- package/dist/app/composables/schema/commerce/digitalProducts.d.ts +11 -0
- package/dist/app/composables/schema/commerce/digitalProducts.js +1 -0
- package/dist/app/composables/schema/commerce/directory.d.ts +7 -0
- package/dist/app/composables/schema/commerce/directory.js +1 -0
- package/dist/app/composables/schema/commerce/events.d.ts +27 -0
- package/dist/app/composables/schema/commerce/events.js +1 -0
- package/dist/app/composables/schema/commerce/gift-registry.d.ts +7 -0
- package/dist/app/composables/schema/commerce/gift-registry.js +1 -0
- package/dist/app/composables/schema/commerce/guest-cart.d.ts +4 -0
- package/dist/app/composables/schema/commerce/guest-cart.js +1 -0
- package/dist/app/composables/schema/commerce/inventory.d.ts +8 -0
- package/dist/app/composables/schema/commerce/inventory.js +1 -0
- package/dist/app/composables/schema/commerce/invoices.d.ts +47 -0
- package/dist/app/composables/schema/commerce/invoices.js +1 -0
- package/dist/app/composables/schema/commerce/orders.d.ts +32 -0
- package/dist/app/composables/schema/commerce/orders.js +1 -0
- package/dist/app/composables/schema/commerce/payments.d.ts +8 -0
- package/dist/app/composables/schema/commerce/payments.js +1 -0
- package/dist/app/composables/schema/commerce/price.d.ts +9 -0
- package/dist/app/composables/schema/commerce/price.js +1 -0
- package/dist/app/composables/schema/commerce/product-types.d.ts +6 -0
- package/dist/app/composables/schema/commerce/product-types.js +1 -0
- package/dist/app/composables/schema/commerce/product.d.ts +20 -0
- package/dist/app/composables/schema/commerce/product.js +1 -0
- package/dist/app/composables/schema/commerce/quotes.d.ts +13 -0
- package/dist/app/composables/schema/commerce/quotes.js +1 -0
- package/dist/app/composables/schema/commerce/requisition-lists.d.ts +9 -0
- package/dist/app/composables/schema/commerce/requisition-lists.js +1 -0
- package/dist/app/composables/schema/commerce/returns.d.ts +8 -0
- package/dist/app/composables/schema/commerce/returns.js +1 -0
- package/dist/app/composables/schema/commerce/reward.d.ts +7 -0
- package/dist/app/composables/schema/commerce/reward.js +1 -0
- package/dist/app/composables/schema/commerce/rules.d.ts +7 -0
- package/dist/app/composables/schema/commerce/rules.js +1 -0
- package/dist/app/composables/schema/commerce/shipment.d.ts +18 -0
- package/dist/app/composables/schema/commerce/shipment.js +1 -0
- package/dist/app/composables/schema/commerce/shops.d.ts +8 -0
- package/dist/app/composables/schema/commerce/shops.js +1 -0
- package/dist/app/composables/schema/commerce/stockItems.d.ts +7 -0
- package/dist/app/composables/schema/commerce/stockItems.js +1 -0
- package/dist/app/composables/schema/commerce/store.d.ts +7 -0
- package/dist/app/composables/schema/commerce/store.js +1 -0
- package/dist/app/composables/schema/commerce/subscriptons.d.ts +9 -0
- package/dist/app/composables/schema/commerce/subscriptons.js +1 -0
- package/dist/app/composables/schema/commerce/taxRates.d.ts +7 -0
- package/dist/app/composables/schema/commerce/taxRates.js +1 -0
- package/dist/app/composables/schema/commerce/taxRules.d.ts +7 -0
- package/dist/app/composables/schema/commerce/taxRules.js +1 -0
- package/dist/app/composables/schema/commerce/teams.d.ts +6 -0
- package/dist/app/composables/schema/commerce/teams.js +1 -0
- package/dist/app/composables/schema/commerce/transactions.d.ts +11 -0
- package/dist/app/composables/schema/commerce/transactions.js +1 -0
- package/dist/app/composables/schema/identity/customerGroup.d.ts +7 -0
- package/dist/app/composables/schema/identity/customerGroup.js +1 -0
- package/dist/app/composables/schema/identity/user.d.ts +45 -0
- package/dist/app/composables/schema/identity/user.js +1 -0
- package/dist/app/composables/schema/media/asset.d.ts +28 -0
- package/dist/app/composables/schema/media/asset.js +1 -0
- package/dist/app/composables/schema/social/post.d.ts +25 -0
- package/dist/app/composables/schema/social/post.js +1 -0
- package/dist/app/composables/schema/social/profile.d.ts +22 -0
- package/dist/app/composables/schema/social/profile.js +1 -0
- package/dist/app/composables/schema/social/space.d.ts +17 -0
- package/dist/app/composables/schema/social/space.js +1 -0
- package/dist/app/composables/types.d.ts +11 -0
- package/dist/app/composables/types.js +1 -0
- package/dist/app/composables/useContent.d.ts +4 -0
- package/dist/app/composables/useContent.js +10 -0
- package/dist/app/composables/useDirectusRequest.d.ts +12 -0
- package/dist/app/composables/useDirectusRequest.js +83 -0
- package/dist/app/composables/utils/assert.d.ts +1 -0
- package/dist/app/composables/utils/assert.js +5 -0
- package/dist/app/composables/utils/deepMerge.d.ts +1 -0
- package/dist/app/composables/utils/deepMerge.js +15 -0
- package/dist/app/composables/utils/index.d.ts +4 -0
- package/dist/app/composables/utils/index.js +4 -0
- package/dist/app/composables/utils/isObject.d.ts +1 -0
- package/dist/app/composables/utils/isObject.js +5 -0
- package/dist/app/composables/utils/module.d.ts +4 -0
- package/dist/app/composables/utils/module.js +14 -0
- package/dist/app/composables/utils/safeGet.d.ts +1 -0
- package/dist/app/composables/utils/safeGet.js +5 -0
- package/dist/app/stores/index.d.ts +0 -0
- package/dist/app/stores/index.js +1 -0
- package/dist/app/utils/billing-address.d.ts +2 -0
- package/dist/app/utils/billing-address.js +18 -0
- package/dist/app/utils/color.d.ts +2 -0
- package/dist/app/utils/color.js +11 -0
- package/dist/app/utils/currency.d.ts +6 -0
- package/dist/app/utils/currency.js +20 -0
- package/dist/app/utils/embed.d.ts +2 -0
- package/dist/app/utils/embed.js +52 -0
- package/dist/app/utils/errors.d.ts +5 -0
- package/dist/app/utils/errors.js +6 -0
- package/dist/app/utils/fonts.d.ts +5 -0
- package/dist/app/utils/fonts.js +18 -0
- package/dist/app/utils/formkit.d.ts +12 -0
- package/dist/app/utils/formkit.js +59 -0
- package/dist/app/utils/icons.d.ts +4 -0
- package/dist/app/utils/icons.js +36 -0
- package/dist/app/utils/links.d.ts +7 -0
- package/dist/app/utils/links.js +21 -0
- package/dist/app/utils/lodash.d.ts +2 -0
- package/dist/app/utils/lodash.js +23 -0
- package/dist/app/utils/markdown.d.ts +1 -0
- package/dist/app/utils/markdown.js +8 -0
- package/dist/app/utils/math.d.ts +6 -0
- package/dist/app/utils/math.js +21 -0
- package/dist/app/utils/navigation.d.ts +2 -0
- package/dist/app/utils/navigation.js +9 -0
- package/dist/app/utils/objects.d.ts +3 -0
- package/dist/app/utils/objects.js +11 -0
- package/dist/app/utils/paths.d.ts +21 -0
- package/dist/app/utils/paths.js +21 -0
- package/dist/app/utils/relations.d.ts +9 -0
- package/dist/app/utils/relations.js +24 -0
- package/dist/app/utils/strings.d.ts +14 -0
- package/dist/app/utils/strings.js +92 -0
- package/dist/app/utils/time.d.ts +13 -0
- package/dist/app/utils/time.js +124 -0
- package/dist/app/utils/url.d.ts +12 -0
- package/dist/app/utils/url.js +20 -0
- package/dist/app/utils/user-name.d.ts +2 -0
- package/dist/app/utils/user-name.js +15 -0
- package/dist/blocks/block-button-group.d.ts +6 -0
- package/dist/blocks/block-button-group.js +1 -0
- package/dist/blocks/block-button.d.ts +13 -0
- package/dist/blocks/block-button.js +1 -0
- package/dist/blocks/block-column.d.ts +18 -0
- package/dist/blocks/block-column.js +1 -0
- package/dist/blocks/block-cta.d.ts +11 -0
- package/dist/blocks/block-cta.js +1 -0
- package/dist/blocks/block-divider.d.ts +4 -0
- package/dist/blocks/block-divider.js +1 -0
- package/dist/blocks/block-faq.d.ts +11 -0
- package/dist/blocks/block-faq.js +1 -0
- package/dist/blocks/block-form.d.ts +7 -0
- package/dist/blocks/block-form.js +1 -0
- package/dist/blocks/block-gallery.d.ts +13 -0
- package/dist/blocks/block-gallery.js +1 -0
- package/dist/blocks/block-hero.d.ts +11 -0
- package/dist/blocks/block-hero.js +1 -0
- package/dist/blocks/block-html.d.ts +4 -0
- package/dist/blocks/block-html.js +1 -0
- package/dist/blocks/block-logocloud.d.ts +13 -0
- package/dist/blocks/block-logocloud.js +1 -0
- package/dist/blocks/block-quote.d.ts +10 -0
- package/dist/blocks/block-quote.js +1 -0
- package/dist/blocks/block-richtext.d.ts +7 -0
- package/dist/blocks/block-richtext.js +1 -0
- package/dist/blocks/block-steps.d.ts +21 -0
- package/dist/blocks/block-steps.js +1 -0
- package/dist/blocks/block-team.d.ts +6 -0
- package/dist/blocks/block-team.js +1 -0
- package/dist/blocks/block-testimonial.d.ts +13 -0
- package/dist/blocks/block-testimonial.js +1 -0
- package/dist/blocks/block-video.d.ts +9 -0
- package/dist/blocks/block-video.js +1 -0
- package/dist/blocks/block.d.ts +17 -0
- package/dist/blocks/block.js +1 -0
- package/dist/blocks/index.d.ts +18 -0
- package/dist/blocks/index.js +1 -0
- package/dist/componentMap.d.ts +6 -0
- package/dist/componentMap.js +8 -0
- package/dist/content/category.d.ts +10 -0
- package/dist/content/category.js +1 -0
- package/dist/content/form.d.ts +21 -0
- package/dist/content/form.js +1 -0
- package/dist/content/index.d.ts +6 -0
- package/dist/content/index.js +1 -0
- package/dist/content/page.d.ts +38 -0
- package/dist/content/page.js +1 -0
- package/dist/content/post.d.ts +38 -0
- package/dist/content/post.js +1 -0
- package/dist/content/team.d.ts +17 -0
- package/dist/content/team.js +1 -0
- package/dist/content/testimonial.d.ts +18 -0
- package/dist/content/testimonial.js +1 -0
- package/dist/help/index.d.ts +51 -0
- package/dist/help/index.js +1 -0
- package/dist/index.d.ts +7 -0
- package/dist/index.js +1 -0
- package/dist/meta/analytics.d.ts +21 -0
- package/dist/meta/analytics.js +1 -0
- package/dist/meta/config.d.ts +22 -0
- package/dist/meta/config.js +1 -0
- package/dist/meta/globals.d.ts +33 -0
- package/dist/meta/globals.js +1 -0
- package/dist/meta/index.d.ts +6 -0
- package/dist/meta/index.js +1 -0
- package/dist/meta/navigation.d.ts +31 -0
- package/dist/meta/navigation.js +1 -0
- package/dist/meta/redirect.d.ts +12 -0
- package/dist/meta/redirect.js +1 -0
- package/dist/meta/seo.d.ts +19 -0
- package/dist/meta/seo.js +1 -0
- package/dist/os/contact.d.ts +22 -0
- package/dist/os/contact.js +1 -0
- package/dist/os/conversation.d.ts +23 -0
- package/dist/os/conversation.js +1 -0
- package/dist/os/index.d.ts +16 -0
- package/dist/os/index.js +1 -0
- package/dist/os/organization.d.ts +51 -0
- package/dist/os/organization.js +1 -0
- package/dist/os/os-activity.d.ts +26 -0
- package/dist/os/os-activity.js +1 -0
- package/dist/os/os-deal.d.ts +42 -0
- package/dist/os/os-deal.js +1 -0
- package/dist/os/os-expense.d.ts +21 -0
- package/dist/os/os-expense.js +1 -0
- package/dist/os/os-invoice.d.ts +46 -0
- package/dist/os/os-invoice.js +1 -0
- package/dist/os/os-item.d.ts +17 -0
- package/dist/os/os-item.js +1 -0
- package/dist/os/os-payment.d.ts +27 -0
- package/dist/os/os-payment.js +1 -0
- package/dist/os/os-project.d.ts +45 -0
- package/dist/os/os-project.js +1 -0
- package/dist/os/os-proposal.d.ts +61 -0
- package/dist/os/os-proposal.js +1 -0
- package/dist/os/os-settings.d.ts +17 -0
- package/dist/os/os-settings.js +1 -0
- package/dist/os/os-subscription.d.ts +12 -0
- package/dist/os/os-subscription.js +1 -0
- package/dist/os/os-task.d.ts +32 -0
- package/dist/os/os-task.js +1 -0
- package/dist/os/os-tax-rate.d.ts +12 -0
- package/dist/os/os-tax-rate.js +1 -0
- package/dist/package.json +72 -0
- package/dist/pageComponentMap.d.ts +2 -0
- package/dist/pageComponentMap.js +7 -0
- package/dist/schema.d.ts +78 -0
- package/dist/schema.js +1 -0
- package/dist/system/file.d.ts +47 -0
- package/dist/system/file.js +1 -0
- package/dist/system/folder.d.ts +8 -0
- package/dist/system/folder.js +1 -0
- package/dist/system/index.d.ts +4 -0
- package/dist/system/index.js +1 -0
- package/dist/system/role.d.ts +20 -0
- package/dist/system/role.js +1 -0
- package/dist/system/user.d.ts +57 -0
- package/dist/system/user.js +1 -0
- package/dist/tsconfig.tsbuildinfo +1 -0
- package/i18n/.gitkeep +0 -0
- package/i18n/config.ts +9 -0
- package/i18n/da_DK.json +613 -0
- package/i18n/de-DE/account.json +100 -0
- package/i18n/de-DE/cart.json +19 -0
- package/i18n/de-DE/changePassword.json +15 -0
- package/i18n/de-DE/checkout.json +68 -0
- package/i18n/de-DE/de-DE.ts +27 -0
- package/i18n/de-DE/errors.json +46 -0
- package/i18n/de-DE/form.json +42 -0
- package/i18n/de-DE/general.json +62 -0
- package/i18n/de-DE/listing.json +15 -0
- package/i18n/de-DE/newsletter.json +11 -0
- package/i18n/de-DE/product.json +48 -0
- package/i18n/de-DE/recoveryPassword.json +21 -0
- package/i18n/de-DE/validations.json +24 -0
- package/i18n/de_DE.json +613 -0
- package/i18n/en-GB/account.json +102 -0
- package/i18n/en-GB/cart.json +19 -0
- package/i18n/en-GB/changePassword.json +15 -0
- package/i18n/en-GB/checkout.json +68 -0
- package/i18n/en-GB/en-GB.ts +27 -0
- package/i18n/en-GB/errors.json +47 -0
- package/i18n/en-GB/form.json +42 -0
- package/i18n/en-GB/general.json +64 -0
- package/i18n/en-GB/listing.json +15 -0
- package/i18n/en-GB/newsletter.json +11 -0
- package/i18n/en-GB/product.json +48 -0
- package/i18n/en-GB/recoveryPassword.json +21 -0
- package/i18n/en-GB/validations.json +24 -0
- package/i18n/en_US.json +264 -0
- package/i18n/es_ES.json +613 -0
- package/i18n/fa_IR.json +613 -0
- package/i18n/fi_FI.json +613 -0
- package/i18n/fr_FR.json +613 -0
- package/i18n/it_IT.json +613 -0
- package/i18n/lv_LV.json +613 -0
- package/i18n/nb_NO.json +613 -0
- package/i18n/nl_NL.json +613 -0
- package/i18n/pl-PL/account.json +100 -0
- package/i18n/pl-PL/cart.json +19 -0
- package/i18n/pl-PL/changePassword.json +15 -0
- package/i18n/pl-PL/checkout.json +69 -0
- package/i18n/pl-PL/errors.json +46 -0
- package/i18n/pl-PL/form.json +42 -0
- package/i18n/pl-PL/general.json +64 -0
- package/i18n/pl-PL/listing.json +15 -0
- package/i18n/pl-PL/newsletter.json +11 -0
- package/i18n/pl-PL/pl-PL.ts +25 -0
- package/i18n/pl-PL/product.json +48 -0
- package/i18n/pl-PL/recoveryPassword.json +21 -0
- package/i18n/pl-PL/validations.json +24 -0
- package/i18n/pl_PL.json +613 -0
- package/i18n/pt_BR.json +613 -0
- package/i18n/ru_RU.json +613 -0
- package/i18n/sl_SI.json +613 -0
- package/i18n/src/helpers/prefix.ts +17 -0
- package/i18n/src/langs/de-DE.ts +2 -0
- package/i18n/src/langs/en-GB.ts +2 -0
- package/i18n/src/langs/pl-PL.ts +2 -0
- package/i18n/sv_SE.json +613 -0
- package/i18n/tr_TR.json +613 -0
- package/i18n/utils/i18n-validators.ts +31 -0
- package/i18n/zh_TW.json +613 -0
- package/nuxt.config.ts +91 -0
- package/package.json +72 -0
- package/prisma/generated/browser.ts +44 -0
- package/prisma/generated/client.ts +66 -0
- package/prisma/generated/commonInputTypes.ts +432 -0
- package/prisma/generated/enums.ts +15 -0
- package/prisma/generated/internal/class.ts +232 -0
- package/prisma/generated/internal/prismaNamespace.ts +1154 -0
- package/prisma/generated/internal/prismaNamespaceBrowser.ts +179 -0
- package/prisma/generated/models/Account.ts +1620 -0
- package/prisma/generated/models/Session.ts +1484 -0
- package/prisma/generated/models/Upload.ts +1291 -0
- package/prisma/generated/models/User.ts +1780 -0
- package/prisma/generated/models/Verification.ts +1172 -0
- package/prisma/generated/models.ts +16 -0
- package/prisma/schema.prisma +102 -0
- package/runtime/plugins/vuetify.ts +12 -0
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import type { File } from '../system';
|
|
2
|
+
export interface BlockQuote {
|
|
3
|
+
background_color?: string | null;
|
|
4
|
+
content?: string | null;
|
|
5
|
+
headline?: string | null;
|
|
6
|
+
id?: string;
|
|
7
|
+
image?: (string | File) | null;
|
|
8
|
+
subtitle?: string | null;
|
|
9
|
+
title?: string | null;
|
|
10
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import type { File } from '../system';
|
|
2
|
+
import type { BlockButtonGroup } from '.';
|
|
3
|
+
export interface BlockStep {
|
|
4
|
+
id?: string;
|
|
5
|
+
title?: string | null;
|
|
6
|
+
headline?: string | null;
|
|
7
|
+
/** If enabled, image position is alternated between left and right. */
|
|
8
|
+
alternate_image_position?: boolean;
|
|
9
|
+
/** Show the step numbers on the website. For example: (Step 1, Step 2, etc) */
|
|
10
|
+
show_step_numbers?: boolean | null;
|
|
11
|
+
steps?: (number | BlockStepItem)[];
|
|
12
|
+
}
|
|
13
|
+
export interface BlockStepItem {
|
|
14
|
+
id?: string;
|
|
15
|
+
title?: string | null;
|
|
16
|
+
content?: string | null;
|
|
17
|
+
image?: (string | File) | null;
|
|
18
|
+
sort?: number | null;
|
|
19
|
+
block_steps?: (string | BlockStep) | null;
|
|
20
|
+
button_group?: (string | BlockButtonGroup) | null;
|
|
21
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import type { Testimonial } from '../content';
|
|
2
|
+
export interface BlockTestimonial {
|
|
3
|
+
headline?: string | null;
|
|
4
|
+
id?: string;
|
|
5
|
+
title?: string | null;
|
|
6
|
+
testimonials?: (string | BlockTestimonialItem)[];
|
|
7
|
+
}
|
|
8
|
+
export interface BlockTestimonialItem {
|
|
9
|
+
block_testimonials_slider_id?: (string | BlockTestimonial) | null;
|
|
10
|
+
id?: string;
|
|
11
|
+
sort?: number | null;
|
|
12
|
+
testimonials_id?: (string | Testimonial) | null;
|
|
13
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import type { BlockColumn } from './block-column';
|
|
2
|
+
import type { BlockCta } from './block-cta';
|
|
3
|
+
import type { BlockFaq } from './block-faq';
|
|
4
|
+
import type { BlockForm } from './block-form';
|
|
5
|
+
import type { BlockGallery } from './block-gallery';
|
|
6
|
+
import type { BlockHero } from './block-hero';
|
|
7
|
+
import type { BlockHtml } from './block-html';
|
|
8
|
+
import type { BlockLogocloud } from './block-logocloud';
|
|
9
|
+
import type { BlockQuote } from './block-quote';
|
|
10
|
+
import type { BlockRichtext } from './block-richtext';
|
|
11
|
+
import type { BlockStep } from './block-steps';
|
|
12
|
+
import type { BlockTeam } from './block-team';
|
|
13
|
+
import type { BlockTestimonial } from './block-testimonial';
|
|
14
|
+
import type { BlockVideo } from './block-video';
|
|
15
|
+
import type { BlockDivider } from './block-divider';
|
|
16
|
+
export type BlockType = 'block_columns' | 'block_cta' | 'block_faqs' | 'block_form' | 'block_gallery' | 'block_hero' | 'block_html' | 'block_logocloud' | 'block_quote' | 'block_richtext' | 'block_steps' | 'block_team' | 'block_testimonials' | 'block_video' | 'block_divider';
|
|
17
|
+
export type Block = BlockColumn | BlockCta | BlockFaq | BlockForm | BlockGallery | BlockHero | BlockHtml | BlockLogocloud | BlockQuote | BlockRichtext | BlockStep | BlockTeam | BlockTestimonial | BlockVideo | BlockDivider;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
export type * from './block-column';
|
|
2
|
+
export type * from './block-cta';
|
|
3
|
+
export type * from './block-faq';
|
|
4
|
+
export type * from './block-form';
|
|
5
|
+
export type * from './block-gallery';
|
|
6
|
+
export type * from './block-hero';
|
|
7
|
+
export type * from './block-html';
|
|
8
|
+
export type * from './block-logocloud';
|
|
9
|
+
export type * from './block-quote';
|
|
10
|
+
export type * from './block-richtext';
|
|
11
|
+
export type * from './block-steps';
|
|
12
|
+
export type * from './block-team';
|
|
13
|
+
export type * from './block-testimonial';
|
|
14
|
+
export type * from './block-video';
|
|
15
|
+
export type * from './block-button-group';
|
|
16
|
+
export type * from './block-button';
|
|
17
|
+
export type * from './block-divider';
|
|
18
|
+
export type * from './block';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
export const componentMap = [
|
|
2
|
+
() => import('../../../social/app/components/features/spaceSections/defaultSpaces.vue'),
|
|
3
|
+
() => import('../../../social/app/components/features/spaceSections/audioSpaces.vue'),
|
|
4
|
+
() => import('../../../social/app/components/features/spaceSections/videoSpaces.vue'),
|
|
5
|
+
() => import('../../../social/app/components/features/spaceSections/imageSpaces.vue'),
|
|
6
|
+
() => import('../../../social/app/components/features/spaceSections/textSpaces.vue'),
|
|
7
|
+
];
|
|
8
|
+
export default componentMap;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import type { User } from '../system';
|
|
2
|
+
export interface Form {
|
|
3
|
+
date_created?: string | null;
|
|
4
|
+
date_updated?: string | null;
|
|
5
|
+
id?: string;
|
|
6
|
+
key?: string | null;
|
|
7
|
+
on_success?: string | null;
|
|
8
|
+
redirect_url?: string | null;
|
|
9
|
+
/** The fields for the form. */
|
|
10
|
+
schema?: {
|
|
11
|
+
[key: string]: any;
|
|
12
|
+
}[] | null;
|
|
13
|
+
sort?: number | null;
|
|
14
|
+
status?: string;
|
|
15
|
+
/** The text for the submit button label. */
|
|
16
|
+
submit_label?: string | null;
|
|
17
|
+
success_message?: string | null;
|
|
18
|
+
title?: string | null;
|
|
19
|
+
user_created?: string | User | null;
|
|
20
|
+
user_updated?: string | User | null;
|
|
21
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import type { SEO } from '../meta';
|
|
2
|
+
import type { User } from '../system';
|
|
3
|
+
import type { Post } from '.';
|
|
4
|
+
import type { BlockColumn, BlockCta, BlockFaq, BlockForm, BlockGallery, BlockHero, BlockHtml, BlockLogocloud, BlockQuote, BlockRichtext, BlockStep, BlockTeam, BlockTestimonial, BlockVideo, BlockType } from '../blocks';
|
|
5
|
+
export interface Page {
|
|
6
|
+
id?: string;
|
|
7
|
+
permalink: string;
|
|
8
|
+
date_created?: string | null;
|
|
9
|
+
date_updated?: string | null;
|
|
10
|
+
seo?: (string | SEO) | null;
|
|
11
|
+
sort?: number | null;
|
|
12
|
+
status?: string;
|
|
13
|
+
title?: string | null;
|
|
14
|
+
user_created?: (string | User) | null;
|
|
15
|
+
user_updated?: (string | User) | null;
|
|
16
|
+
blocks?: (string | PageBlock)[];
|
|
17
|
+
}
|
|
18
|
+
export interface PageBlock {
|
|
19
|
+
collection?: BlockType | null;
|
|
20
|
+
id?: string;
|
|
21
|
+
item?: (string | BlockColumn | BlockCta | BlockFaq | BlockForm | BlockGallery | BlockHero | BlockHtml | BlockLogocloud | BlockQuote | BlockRichtext | BlockStep | BlockTeam | BlockTestimonial | BlockVideo)[] | null;
|
|
22
|
+
pages_id?: (string | Page) | null;
|
|
23
|
+
sort?: number | null;
|
|
24
|
+
hide_block?: boolean | null;
|
|
25
|
+
}
|
|
26
|
+
export interface PagesProjects {
|
|
27
|
+
id?: string;
|
|
28
|
+
title?: string | null;
|
|
29
|
+
headline?: string | null | undefined;
|
|
30
|
+
seo: (string | SEO) | null;
|
|
31
|
+
}
|
|
32
|
+
export interface PagesBlog {
|
|
33
|
+
id?: string;
|
|
34
|
+
title?: string | null;
|
|
35
|
+
headline?: string | null;
|
|
36
|
+
featured_post?: (string | Post) | null;
|
|
37
|
+
seo: (string | SEO) | null;
|
|
38
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import type { File } from '../system';
|
|
2
|
+
import type { SEO } from '../meta';
|
|
3
|
+
import type { Category, Team } from '.';
|
|
4
|
+
export interface Post {
|
|
5
|
+
author?: (string | Team) | null;
|
|
6
|
+
category?: (string | Category) | null;
|
|
7
|
+
content?: string | null;
|
|
8
|
+
date_created?: string | null;
|
|
9
|
+
date_published?: string | null;
|
|
10
|
+
date_updated?: string | null;
|
|
11
|
+
id?: string;
|
|
12
|
+
image?: (string | File) | null;
|
|
13
|
+
seo?: (string | SEO) | null;
|
|
14
|
+
slug?: string | null;
|
|
15
|
+
sort?: number | null;
|
|
16
|
+
status?: 'draft' | 'published' | 'scheduled' | 'in_review' | 'archived';
|
|
17
|
+
summary?: string | null;
|
|
18
|
+
title?: string | null;
|
|
19
|
+
user_created?: string | null;
|
|
20
|
+
user_updated?: string | null;
|
|
21
|
+
links?: string;
|
|
22
|
+
type?: PostType;
|
|
23
|
+
details?: string;
|
|
24
|
+
gallery?: (number | ProjectFile)[];
|
|
25
|
+
built_with?: {
|
|
26
|
+
[key: string]: any;
|
|
27
|
+
} | null;
|
|
28
|
+
client?: string | null;
|
|
29
|
+
cost?: string | null;
|
|
30
|
+
video_url?: string | null;
|
|
31
|
+
}
|
|
32
|
+
export type PostType = 'blog' | 'video' | 'project';
|
|
33
|
+
export interface ProjectFile {
|
|
34
|
+
directus_files_id?: (string | File) | null;
|
|
35
|
+
id?: number;
|
|
36
|
+
project?: (string | File) | null;
|
|
37
|
+
sort?: number | null;
|
|
38
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import type { User, File } from '../system';
|
|
2
|
+
export interface Team {
|
|
3
|
+
bio?: string | null;
|
|
4
|
+
date_created?: string | null;
|
|
5
|
+
date_updated?: string | null;
|
|
6
|
+
id?: string;
|
|
7
|
+
image?: (string | File) | null;
|
|
8
|
+
job_title?: string | null;
|
|
9
|
+
name?: string | null;
|
|
10
|
+
social_media?: {
|
|
11
|
+
[key: string]: any;
|
|
12
|
+
} | null;
|
|
13
|
+
sort?: number | null;
|
|
14
|
+
status?: string;
|
|
15
|
+
user_created?: string | User | null;
|
|
16
|
+
user_updated?: string | User | null;
|
|
17
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import type { User } from '../system';
|
|
2
|
+
export interface Testimonial {
|
|
3
|
+
company?: string | null;
|
|
4
|
+
company_logo?: (string | File) | null;
|
|
5
|
+
content?: string | null;
|
|
6
|
+
date_created?: string | null;
|
|
7
|
+
date_updated?: string | null;
|
|
8
|
+
id?: string;
|
|
9
|
+
image?: (string | File) | null;
|
|
10
|
+
link?: string | null;
|
|
11
|
+
sort?: number | null;
|
|
12
|
+
status?: string;
|
|
13
|
+
subtitle?: string | null;
|
|
14
|
+
title?: string | null;
|
|
15
|
+
user_created?: string | User | null;
|
|
16
|
+
user_updated?: string | User | null;
|
|
17
|
+
company_info?: string;
|
|
18
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import type { User } from '../system';
|
|
2
|
+
import type { Form } from '../content';
|
|
3
|
+
export interface HelpArticle {
|
|
4
|
+
content?: string | null;
|
|
5
|
+
date_created?: string | null;
|
|
6
|
+
date_updated?: string | null;
|
|
7
|
+
help_collection?: (string | HelpCollection) | null;
|
|
8
|
+
id?: string;
|
|
9
|
+
owner?: string | User | null;
|
|
10
|
+
slug?: string | null;
|
|
11
|
+
sort?: number | null;
|
|
12
|
+
status?: string;
|
|
13
|
+
summary?: string | null;
|
|
14
|
+
title?: string | null;
|
|
15
|
+
user_created?: string | User | null;
|
|
16
|
+
user_updated?: string | User | null;
|
|
17
|
+
}
|
|
18
|
+
export interface HelpCollection {
|
|
19
|
+
description?: string | null;
|
|
20
|
+
icon?: string | null;
|
|
21
|
+
id?: string;
|
|
22
|
+
slug?: string | null;
|
|
23
|
+
sort?: number | null;
|
|
24
|
+
title?: string | null;
|
|
25
|
+
articles?: (string | HelpArticle)[];
|
|
26
|
+
}
|
|
27
|
+
export interface HelpFeedback {
|
|
28
|
+
comments?: string | null;
|
|
29
|
+
date_created?: string | null;
|
|
30
|
+
date_updated?: string | null;
|
|
31
|
+
id?: string;
|
|
32
|
+
rating?: number | null;
|
|
33
|
+
title?: string | null;
|
|
34
|
+
url?: string | null;
|
|
35
|
+
user_created?: string | User | null;
|
|
36
|
+
user_updated?: string | User | null;
|
|
37
|
+
visitor_id?: string | null;
|
|
38
|
+
}
|
|
39
|
+
export interface Inbox {
|
|
40
|
+
data?: {
|
|
41
|
+
[key: string]: any;
|
|
42
|
+
} | null;
|
|
43
|
+
date_created?: string | null;
|
|
44
|
+
date_updated?: string | null;
|
|
45
|
+
form?: (string | Form) | null;
|
|
46
|
+
id?: string;
|
|
47
|
+
sort?: number | null;
|
|
48
|
+
status?: string;
|
|
49
|
+
user_created?: string | User | null;
|
|
50
|
+
user_updated?: string | User | null;
|
|
51
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
package/dist/index.d.ts
ADDED
package/dist/index.js
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
export interface Event {
|
|
2
|
+
id?: string;
|
|
3
|
+
key?: string | null;
|
|
4
|
+
metadata?: {
|
|
5
|
+
[key: string]: any;
|
|
6
|
+
} | null;
|
|
7
|
+
service?: string | null;
|
|
8
|
+
session?: string | null;
|
|
9
|
+
timestamp?: string | null;
|
|
10
|
+
user?: string | null;
|
|
11
|
+
}
|
|
12
|
+
export interface Metric {
|
|
13
|
+
id?: string;
|
|
14
|
+
key?: string | null;
|
|
15
|
+
metadata?: {
|
|
16
|
+
[key: string]: any;
|
|
17
|
+
} | null;
|
|
18
|
+
service?: string | null;
|
|
19
|
+
timestamp?: string | null;
|
|
20
|
+
value?: number | null;
|
|
21
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import type { SEO } from '.';
|
|
2
|
+
export interface ChatConfig {
|
|
3
|
+
/** Would you like to enable the chat / messenger widget on the site? */
|
|
4
|
+
enabled?: boolean | null;
|
|
5
|
+
hours?: {
|
|
6
|
+
[key: string]: any;
|
|
7
|
+
} | null;
|
|
8
|
+
id?: string;
|
|
9
|
+
modules?: {
|
|
10
|
+
[key: string]: any;
|
|
11
|
+
} | null;
|
|
12
|
+
require_email?: string | null;
|
|
13
|
+
}
|
|
14
|
+
export interface PageSettings {
|
|
15
|
+
[key: string]: any;
|
|
16
|
+
}
|
|
17
|
+
export interface ProjectsSettings {
|
|
18
|
+
headline?: string | null;
|
|
19
|
+
id?: string;
|
|
20
|
+
seo?: (string | SEO) | null;
|
|
21
|
+
title?: string | null;
|
|
22
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
import type { File } from '../system/index.js';
|
|
2
|
+
export interface Globals {
|
|
3
|
+
address_country?: string | null;
|
|
4
|
+
address_locality?: string | null;
|
|
5
|
+
address_region?: string | null;
|
|
6
|
+
/** URL for the build / deploy hook that starts a new build */
|
|
7
|
+
build_hook_url?: string | null;
|
|
8
|
+
description?: string | null;
|
|
9
|
+
email?: string | null;
|
|
10
|
+
id?: string;
|
|
11
|
+
og_image?: (string | File) | null;
|
|
12
|
+
phone?: string | null;
|
|
13
|
+
postal_code?: string | null;
|
|
14
|
+
routes?: {
|
|
15
|
+
[key: string]: any;
|
|
16
|
+
} | null;
|
|
17
|
+
social_links: {
|
|
18
|
+
[key: string]: any;
|
|
19
|
+
} | null;
|
|
20
|
+
street_address?: string | null;
|
|
21
|
+
/** What's the website title? */
|
|
22
|
+
tagline?: string | null;
|
|
23
|
+
/** What's the website title? */
|
|
24
|
+
title?: string | null;
|
|
25
|
+
/** What's is the base url for the site? */
|
|
26
|
+
url?: string | null;
|
|
27
|
+
contact?: string;
|
|
28
|
+
deployment?: string;
|
|
29
|
+
/** This will be the default metadata used for SEO */
|
|
30
|
+
seo?: string;
|
|
31
|
+
social?: string;
|
|
32
|
+
notice_deployment?: string;
|
|
33
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
import type { User } from '../system/index.js';
|
|
2
|
+
import type { Page } from '../content/index.js';
|
|
3
|
+
export interface Navigation {
|
|
4
|
+
date_created?: string | null;
|
|
5
|
+
date_updated?: string | null;
|
|
6
|
+
id?: string;
|
|
7
|
+
status?: string;
|
|
8
|
+
title?: string | null;
|
|
9
|
+
user_created?: string | User | null;
|
|
10
|
+
user_updated?: string | User | null;
|
|
11
|
+
items?: (string | NavigationItem)[];
|
|
12
|
+
}
|
|
13
|
+
export interface NavigationItem {
|
|
14
|
+
has_children?: boolean | null;
|
|
15
|
+
/** Icon that displays in dropdown menus on website. */
|
|
16
|
+
icon?: string | null;
|
|
17
|
+
id?: string;
|
|
18
|
+
/** Label to help User. Displays below the link in dropdown nav menus. */
|
|
19
|
+
label?: string | null;
|
|
20
|
+
navigation?: (string | Navigation) | null;
|
|
21
|
+
open_in_new_tab?: boolean | null;
|
|
22
|
+
page?: (string | Page) | null;
|
|
23
|
+
parent?: (string | NavigationItem) | null;
|
|
24
|
+
sort?: number | null;
|
|
25
|
+
title?: string | null;
|
|
26
|
+
type?: string | null;
|
|
27
|
+
url?: string | null;
|
|
28
|
+
children?: (string | NavigationItem)[];
|
|
29
|
+
/** Control the icon and label displayed on the website. */
|
|
30
|
+
display_details?: string;
|
|
31
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import type { User } from '../system';
|
|
2
|
+
export interface Redirect {
|
|
3
|
+
date_created?: string | null;
|
|
4
|
+
date_updated?: string | null;
|
|
5
|
+
id?: string;
|
|
6
|
+
response_code?: number | null | string;
|
|
7
|
+
url_new: string;
|
|
8
|
+
url_old: string;
|
|
9
|
+
user_created?: string | User | null;
|
|
10
|
+
user_updated?: string | User | null;
|
|
11
|
+
notice_redirects?: string;
|
|
12
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
export interface SEO {
|
|
2
|
+
/** Where should the canonical URL for this entry point to. */
|
|
3
|
+
canonical_url?: string | null;
|
|
4
|
+
id?: string;
|
|
5
|
+
/** This entries meta description. Max 160 characters. */
|
|
6
|
+
meta_description?: string | null;
|
|
7
|
+
/** Instruct crawlers not to follow links on this page. */
|
|
8
|
+
no_follow?: boolean | null;
|
|
9
|
+
/** Instruct crawlers not to index this entry. */
|
|
10
|
+
no_index?: boolean | null;
|
|
11
|
+
/** This item's OG image. Defaults to global site OG image. The recommended size is 1200px x 630px. The image will be focal cropped to this dimension. */
|
|
12
|
+
og_image?: (string | File) | null;
|
|
13
|
+
/** How often to instruct search engines to crawl. */
|
|
14
|
+
sitemap_change_frequency?: string | null;
|
|
15
|
+
/** Valid values range from 0.0 to 1.0. This value does not affect how your pages are compared to pages on other sites, it only lets the search engines know which pages you deem most important for the crawlers. */
|
|
16
|
+
sitemap_priority?: number | null;
|
|
17
|
+
/** This entries title, defaults to title. Max 70 characters including the site name. */
|
|
18
|
+
title?: string | null;
|
|
19
|
+
}
|
package/dist/meta/seo.js
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import type { User } from '../system';
|
|
2
|
+
import type { OrganizationContact, OsDealContact, OsActivityContact } from '.';
|
|
3
|
+
export interface Contact {
|
|
4
|
+
id?: string;
|
|
5
|
+
/** Is this an active contact? */
|
|
6
|
+
status?: string | null;
|
|
7
|
+
user_created?: (string | User) | null;
|
|
8
|
+
date_created?: string | null;
|
|
9
|
+
user_updated?: (string | User) | null;
|
|
10
|
+
date_updated?: string | null;
|
|
11
|
+
first_name?: string | null;
|
|
12
|
+
last_name?: string | null;
|
|
13
|
+
user?: (string | User) | null;
|
|
14
|
+
email?: string | null;
|
|
15
|
+
phone?: string | null;
|
|
16
|
+
job_title?: string | null;
|
|
17
|
+
contact_notes?: string | null;
|
|
18
|
+
organizations?: (string | OrganizationContact)[];
|
|
19
|
+
os_deals?: (string | OsDealContact)[];
|
|
20
|
+
activity?: string;
|
|
21
|
+
activities?: (string | OsActivityContact)[];
|
|
22
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import type { User } from '../system';
|
|
2
|
+
export interface Conversation {
|
|
3
|
+
date_created?: string | null;
|
|
4
|
+
date_updated?: string | null;
|
|
5
|
+
id?: string;
|
|
6
|
+
status?: string;
|
|
7
|
+
title?: string | null;
|
|
8
|
+
visitor_id?: string | null;
|
|
9
|
+
item?: string | null;
|
|
10
|
+
collection?: string | null;
|
|
11
|
+
messages?: (string | Message)[];
|
|
12
|
+
}
|
|
13
|
+
export interface Message {
|
|
14
|
+
conversation?: (string | Conversation) | null;
|
|
15
|
+
date_created?: string | null;
|
|
16
|
+
date_updated?: string | null;
|
|
17
|
+
id?: string;
|
|
18
|
+
text?: string | null;
|
|
19
|
+
user_created?: (string | User) | null;
|
|
20
|
+
user_updated?: (string | User) | null;
|
|
21
|
+
visitor_id?: string | null;
|
|
22
|
+
contact_id?: string | null;
|
|
23
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|